﻿@charset "utf-8";
/* CSS Document */

@import url(layout.css);
@import url(font-awesome.min.css);
@import url(all.min.css);


* {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

i{
	font-family: Font Awesome\ 5 Free;
	font-style:normal;
}

/*----------------------------------------
共通項目は最下部▼
-----------------------------------------*/
:root {
  --min-width: 1300px;
  /*--base-width: 1300px;*/
}


/*====================================
PC版
=====================================*/
@media print, screen and (min-width: 521px) {

.sp_box {
	display: none !important;
}

body {
	font-size: 18px;
    /*font-size: 16px;*/
	line-height: 1.76;
	margin: 0;
    padding: 0;
	/*background: #F6E2FF;*/
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;

}

main {
    position: relative;
	min-width: var(--min-width);
}


/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    min-width: var(--min-width);
    padding: 0 50px;
    margin: 0 auto;
    box-sizing: border-box;
    /*background: #EEE;*/
}

.wrap {
	position: relative;
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	/*background: #DDD;*/
}

.row {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /*background-color: #EEE;*/
}

.row96 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    /*background-color: #EEE;*/
}



/*--------------------------------------------
　画像
---------------------------------------------*/
img {
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	/*width: 100%;
	height: auto;*/
}

.img_auto {
    width: 100%;
    height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    /*line-height: 1.2;*/
    position: relative;
    margin: 0;
}

h1 {
  	font-size: 36px;
    font-weight: bold;
    color: #555555;
    text-align: center;
}

h2 {
	font-size: 24px;
    font-weight: bold;
    color: #000000;
    text-align: center;
}

h3 {
    font-size: 28px;
    font-weight: bold;
    color: #555555;
    border-bottom: 1px solid #888888;
    line-height: 26px;
}



/*--------------------------------------------
　ヘッダー
--------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-width: 1325px;
    padding-top: 14px;
    padding-left: 20px;
    z-index: 10;
}

.head_menu {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
}

.head_menu_link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    background-color: #222222;
}

.head_menu li {
    position: relative;
}

.head_menu li a {
    opacity: 1;
    transition: .3s;
}

.head_menu li a:hover {
    opacity: .7;
    transition: .3s;
}


.head_menu li a,
.head_menu li p {
    position: relative;
    display: block;
    text-align: center;
    height: 38px;
    padding: 0 45px;
    color: #FFF;
    font-size: 16px;
    line-height: 38px;
    cursor: pointer;
}

.head_menu li:before {
    position: absolute;
    top: 6px;
    left: 0;
    content: "";
    display: block;
    width: 1px;
    height: 26px;
    background-color: #FFF;
}

.head_menu li:first-of-type:before {
    display: none !important;
}

.head_menu_back {
    display: block;
    width: 110px;
    height: 38px;
    background: linear-gradient(to right, rgba(34,34,34,0), rgba(34,34,34,1));
}

/*カーコーティングマウスオーバー*/
.has_child {
    position: relative;
}

.has_child ul {
    position: absolute;
    top: 38px;
    display: flex;
    flex-flow: column;
    gap: 1px;
    width: 218px;
    padding-top: 1px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
    border-radius: 10px;
    z-index: 11;
    box-sizing: border-box;
}

.has_child ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 218px;
    height: 34px;
    color: #FFF;
    background-color: #7a7a7a;
}

.has_child ul li a:before {
    display: none !important;
}

/*hoverしたら表示*/
.has_child:hover > ul,
.has_child ul li:hover > ul,
.has_child:active > ul,
.has_child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
    



/*------------------------------------------
　フッター
-------------------------------------------*/
footer {
    display: block;
    width: 100%;
    min-width: var(--min-width);
}

.foot_line {
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: #f3f1ed;
}

.foot_line_title {
    padding-bottom: 40px;
}

.foot_line_com {
    text-align: center;
    line-height: 24px;
}

.foot_line_icon {
    display: block;
    width: 242px;
    height: auto;
    margin: 0 auto;
    margin-top: 17px;
    transition: .3s;
}

.foot_line_icon:hover {
    opacity: .7;
    transition: .3s;
}

.foot_content {
    display: block;
    width: 100%;
    padding-top: 55px;
    background-color: #222222;
}

.foot_logo {
    display: block;
    margin: 0 auto;
}

.foot_sec_box {
    display: block;
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid #ba9953;
}

.foot_sec_title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
}

.foot_sec_box p {
    text-align: center;
    color: #FFF;
}

.foot_sec_com {
    font-size: 16px;
    line-height: 26px;
}

.foot_copy {
    padding-top: 30px;
    padding-bottom: 12px;
    font-size: 14px;
    color: #888888;
    text-align: center;
}



/*----------------------------------------------
エラー表示
----------------------------------------------*/
.error {
    width: 100%;
    margin: 0 auto;
    border: 2px solid #DD4548;
    background: #FFFF33;
    border-radius: 4px;
    padding: 10px 20px;
}

.error p {
    font-size: 14px;
    line-height: 1.6;
    color: #C00;
}


/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 50;
}

.page_top:hover {
    opacity: 0.6;
    transition: .3s;
}


/*------------------------------------------
公式LINE
-------------------------------------------*/
.line_fix {
    position: fixed;
    top: 380px;
    left: 0;
    transition: .3s;
    border-left: 1px solid #00bb00;
    z-index: 10;
}

.line_fix:hover {
    transition: .3s;
    border-left: 9px solid #00bb00;
}



}   /*  PC版ここまで  */






/*===================================
スマホ版
===================================*/
@media only screen and (max-width : 520px ) {

.pc_box {
	display: none !important;
}

.sp_non {
	display: none;
}


body {
	margin: 0;
	padding: 0;
    /*font-size: 0.875rem;*/
	/*font-size: 16px;*/
    /*font-size: 3.8vw;*/
	line-height: 1.74;
}

main {
	/*margin-top: 70px;*/
}


/*------------------------------------------------
　ヘッダー&ナビ
------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 17px;
    padding-left: 5%;
    z-index: 100;
}

.head_menu_sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 5%;
    background-color: #FFF;
    z-index: 2000;
}

.head_logo {
    display: block;
    width: 75%;
    max-width: 300px;
}

.head_logo img {
    display: block;
    width: 100%;
    height: auto;
}

/* ------------- ハンバーガーメニュー ------------- */
.head_menu {
    position: fixed;
    right: 5%;
    top: 30px;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    cursor: pointer;
    z-index: 1005;
}

.head_menu span:first-of-type,
.head_menu span:nth-of-type(2) {
    margin-bottom: 5px;
}

.head_menu span:first-of-type {
    width: 36px;
}

.head_menu span:nth-of-type(2) {
    width: 28px;
}

.head_menu span:nth-of-type(3) {
    width: 20px;
}

.head_menu span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000000;
    transition: all .4s;
}

.head_menu.active span:nth-of-type(1) {
    width: 38px;
    transform: translateY(7px) rotate(-45deg);
    background-color: #FFF;
}

.head_menu.active span:nth-of-type(2) {
    opacity: 0;
}

.head_menu.active span:nth-of-type(3) {
    width: 38px;
    transform: translateY(-7px) rotate(45deg);
    background-color: #FFF;
}

.menu_img_area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

.menu_img_area img {
    position: relative;
    z-index: 1002;
    pointer-events: none;
}

#g_nav {
    position: fixed;
    top: -120%;
    right: 0;
    display: block;
    width: 100%;
    z-index: 1000;
    transition: all .3s;
    transition-delay: .1s;
}

.g_nav_wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    background-color: rgba(34,34,34,.95);
    z-index: 1000;
}

#g_nav.panelactive {
    top: 0;
}

.g_nav_menu {
    display: flex;
    flex-flow: column;
    overflow-y: auto;
}

.g_nav_menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid #FFF;
}

.g_nav_menu li:first-of-type {
    border-top: 1px solid #FFF;
}

.g_nav_menu li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 20px;
    color: #FFF;
    text-align: center;
    font-weight: bold;
}

/*アコーディオンタイトル*/
.title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    color: #FFF;
    transition: all .3s ease;
    font-size: 20px;
    font-weight: bold;
}

ul li section {
    position: relative;
    width: 100%;
}

ul li section:after {
    content: "";
    position: absolute;
    top: 0;
    right: 60px;
    display: block;
    width: 1px;
    height: 60px;
    background-color: #9d9d9d;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content:'';
    width: 22px;
    height: 2px;
    top: 50%;
    right: 20px;
    background-color: #FFF;
    transition: all .3s ease;
    
}

.title::before {
    transform: rotate(0deg);
    transition: all .3s ease;
    
}

.title::after {    
    transform: rotate(90deg);
    transition: all .3s ease;
}

.title.close::before {
   transition: all .3s ease;
}

.title.close::after {
    opacity: 0;
    transition: all .3s ease;
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
}

#g_nav li .box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px !important;
    line-height: 28px;
    font-size: 20px;
    color: #FFF;
    background-color: rgba(255,255,255,0.15);
    border-top: 1px solid #FFF;
}


/*スマホ版マージン調整用*/
.header_margin {
    position: relative !important;
    opacity: 0;
    pointer-events: none;
}


/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    margin: 0 auto;
}

.wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 5%;
	/*background: #C0D1FF;*/
}

.row {
    width: 100%;
    position: relative;
    margin: 0;
    /*background-color: #EEE;*/
}




/*--------------------------------------------
　画像
---------------------------------------------*/
img {
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	width: 100%;
	height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    line-height: 1.2;
    position: relative;
    margin: 0;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    color: #555555;
    text-align: center;
}

h2 {
	font-size: 20px;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    color: #555555;
    border-bottom: 1px solid #888888;
    line-height: 26px;
}


/*------------------------------------------
　フッター
-------------------------------------------*/
footer {
    display: block;
    width: 100%;
}

.foot_line {
    padding-top: 40px;
    padding-bottom: 50px;
    background-color: #f3f1ed;
}

.foot_line_title {
    padding-bottom: 30px;
    line-height: 30px;
}

.foot_line_com {
    font-size: 14px;
    text-align: center;
    line-height: 24px;
}

.foot_line_icon {
    display: block;
    width: 180px;
    height: auto;
    margin: 0 auto;
    margin-top: 17px;
}

.foot_content {
    display: block;
    width: 100%;
    padding-top: 55px;
    background-color: #222222;
}

.foot_logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto;
}

.foot_sec_box {
    display: block;
    margin: 0 5%;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid #ba9953;
}

.foot_sec_title {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
}

.foot_sec_box p {
    text-align: center;
    color: #FFF;
}

.foot_sec_com {
    font-size: 14px;
    line-height: 24px;
}

.foot_copy {
    padding-top: 30px;
    padding-bottom: 12px;
    font-size: 12px;
    color: #888888;
    text-align: center;
}

.fix_margin {
    padding-top: 3px;
    background-color: #FFF;
}

.fix_margin img {
    opacity: 0;
}


/*----------------------------------------------
エラー表示
----------------------------------------------*/
.error {
    width: 100%;
    margin: 0 auto;
    border: 2px solid #DD4548;
    background: #FFFF33;
    border-radius: 4px;
    padding: 8px 16px;
}

.error p {
    font-size: 90%;
    line-height: 1.6;
    color: #C00;
}


/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top {
    position: fixed;
    right: 10px;
    bottom: 60px;
    width: 50px;
    z-index: 50;
}


/*------------------------------------------
公式LINE
-------------------------------------------*/
.line_fix {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
}



}  /*  スマホ版ここまで  */










/*---------------------------------------
　共通
---------------------------------------*/


input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

#textarea,
#textfield,
#textfield1,
#textfield2,
#textfield3 {
    border-radius: 4px;
    border: 1px solid #999999;
    padding: 0.32rem 0.4rem 0.2rem 0.4rem;
    font-size: 16px;
    font-family:'メイリオ', 'Meiryo', sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}

#select {
    border-radius: 4px;
    border: 1px solid #999999;
    padding: 0.32rem 0.4rem 0.2rem 0.4rem;
    font-size: 16px;
    font-family:'メイリオ', 'Meiryo', sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}




body {
	font-family:'メイリオ', 'Meiryo', sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
}

textarea,input {
	font-family:'メイリオ', 'Meiryo', sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
}

p, ul, li {
	padding: 0;
	margin: 0;
	list-style: none;
}

p, ul, li {
	text-align: justify;
}

dl, dt, dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
	color: #111;
	text-decoration: none;
	transition: 0.3s;
}

table {
    -webkit-appearance: none;
	border-collapse: collapse;
}


span,
div {
	margin: 0;
	padding: 0;
}

.order01 {
	order: 1;
}

.order02 {
	order: 2;
}

.order03 {
	order: 3;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
}

.none {
    display: none;
}

