@charset "utf-8";

.logo a {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo a img {
    width: 180px;
    height: auto;
}
.logo {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 11111111;
}
.header_h {
    padding-top: 100px;
}



#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 100px;
    right: -120%;
    width: 30%;
    height: 100vh;/*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}
body.panelactive{
    height: 100%;
    overflow: hidden;
}



/*ナビゲーション*/
#g-nav ul.nav_ul {
    /*ナビゲーション天地中央揃え*/
    width: 100%;
    padding-top: 80px;
}

/*リストのレイアウト設定*/

#g-nav li.nav_ul{
	list-style: none;
    text-align: center; 
}

#g-nav li.nav_ul a , #g-nav li.nav_ul div{
	color: #333;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 18px;
	padding-bottom: 20px;
	padding-top: 20px;
	font-weight: 300;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top: 120px;
	right: 20px;
	cursor: pointer;
	width: 110px;
	height: 50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    /* border-radius: 2px; */
    background-color: #000;
    width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top: 10px;
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top: 36px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
#g-nav ul li {
    position: relative;
}
#g-nav ul li.has-child::before{
	content:'';
	position: absolute;
	left: 30px;
	top: 28px;
	width:6px;
	height:6px;
	border-bottom: 2px solid #000;
	border-left: 2px solid #000;
	transform: rotate(45deg);
    pointer-events: none;
}

/*3階層目を持つliの矢印の設定*/
#g-nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:21px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
#g-nav li.has-child ul{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -160%;
    right: 100%;
    width: 100%;
    height: 100vh;/*ナビの高さ*/
    background: #ecedee;
    /*動き*/
    transition: all 0.6s;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-top: 100px;
}

/*hoverしたら表示*/
#g-nav li.has-child:hover > ul,
#g-nav li.has-child ul li:hover > ul,
#g-nav li.has-child:active > ul,
#g-nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
#g-nav li.has-child ul li:last-child a{
	border-bottom:none;
	color: #333;
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

#g-nav li.has-child ul li a:hover,
#g-nav li.has-child ul li a:active{
	background:#c1c1c2;
}

/*==3階層目*/

/*3階層目の位置*/
#g-nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

#g-nav li.has-child ul ul li a:hover,
#g-nav li.has-child ul ul li a:active{
	background:#448ED3;
}

.nav_soon{
    opacity: 0.4;
    pointer-events: none;
}


.header_sns_box{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.header_sns_box > p{
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 7px;
}
.header_sns{
    display: flex;
    justify-content: space-between;
    width: 140px;
}
.header_sns li{
    width: 29%;
    max-width: 40px;
    transition-duration: 0.6s;
    list-style: none;
}
.header_sns li:hover{
    opacity: 0.6;
}
.header_sns li a{
    height: auto;
}
.header_sns li img{
    width: 100% !important;
}

@media screen and (max-width:1000px){
    #g-nav {
        width: 50%;
    }
}
/*==650px以下の形状*/

@media screen and (max-width:650px){
	#g-nav{
		background: #ffffff;
		width: 100%;
		height: auto;
        top: 60px;
	}
	
	#g-nav li.has-child ul,
	#g-nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}

#g-nav ul li a , #g-nav ul li div{
	border-bottom:1px solid #bfbfbf;
	color: #fff;
}

/*矢印の向き*/
#g-nav ul li.has-child::before,
#g-nav ul ul li.has-child::before{
    transform: rotate(135deg);
    border-bottom: none;
    border-left: none;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    right: 30px;
    top: 20px;
}
    
#g-nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}


#g-nav li.has-child ul {
    padding-top: 0;
    height: 100%;
}
#g-nav li.has-child ul li:last-child a {
    color: #000;
    border-bottom: solid 1px #bfbfbf;
}

.openbtn {
    top: 70px;
    right: 0px;
    width: 90px;
}
#g-nav ul.nav_ul {
    padding-top: 50px;
    padding-bottom: 150px;
}

#g-nav li.nav_ul a , #g-nav li.nav_ul div {
    font-size: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
}

.header_h {
    padding-top: 60px;
}
.logo a {
    height: 60px;
}
.logo a img {
    width: 130px;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width:100%;
    height: calc(100vh - 60px);/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
}


.header_sns{
    width: 90px;
}
.header_sns_box > p {
    font-size: 10px;
    letter-spacing: 0.05em;
}
.header_sns_box{
    right: 10px;
}
	
}










.footer {
    background: #f7f7f4;
    padding-top: 80px;
    padding-bottom: 60px;
    margin-top: 60px;
}
.logo_flex {
    display: flex;
    align-items: flex-end;
}
.logo_flex_in_left {width: 100%;max-width: 210px;padding-bottom: 25px;}
.logo_flex_in_right {padding-bottom: 15px;padding-left: 20px;}
.logo_flex_in_right p {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.logo_flex_in_contact {
    padding-bottom: 15px;
    margin-left: auto;
}
.contact_button {
    background-color: #a49676;
    max-width: 240px;
    width: 100%;
    margin: 0 auto 0;
    transition: all 0.6s;
    border: solid 1px #a49676;
}
.contact_button a {
    width: 240px;
    height: 47px;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    letter-spacing: 0.2em;
    font-weight: 300;
}
.contact_button:hover {
    background-color: #fff;
}
.contact_button:hover a {
    color: #a49676;
}

.link_flex_bottom {
    display: flex;
    white-space: nowrap;
}
.privacy {
    font-size: 12px;
    color: #000;
    letter-spacing: 0.2em;
    /* width: 100%; */
    display: block;
    text-align: right;
}
.privacy.toushi{
    margin-right: 40px;
}
.foot_nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.foot_nav li {
    width: 100%;
    margin-bottom: 20px;
}
.foot_nav li a {
    font-size: 16px;
    color: #000;
    letter-spacing: 0.2em;
}

.sns_flex ul{
    display: flex;
    margin: 25px 0 0;
}
.sns_flex ul li{
    max-width: 35px;
    transition-duration: 0.6s;
}
.sns_flex ul li:nth-of-type(n + 2){
    margin: 0 0 0 15px;
}
.sns_flex ul li:hover{
    opacity: 0.6;
}

/* 20250610追加 */
.logo_flex_in_right p span {
    font-size: 1.2em;
}


/* 20260116追加 */
.foot_member_flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto 35px;
}
.foot_member_bnr{
    max-width: 270px;
    width: 100%;
}
.foot_member_flex .foot_nav{
    margin-bottom: 0;
}

@media screen and (max-width:1100px){
    .link_flex_bottom{
        display: block;
    }
    .privacy{
        margin-top: 10px;
    }
    .privacy.toushi{
        margin-right: 0;
    }
}

@media screen and (max-width:1000px){
    .logo_flex_in_contact {
        width: 100%;
    }
    .logo_flex {
        justify-content: center;
        flex-wrap: wrap;
    }
    .foot_nav li {
        text-align: center;
    }
    .sns_flex ul{
        justify-content: center;
        margin: 20px 0;
    }
    .privacy{
        text-align: center;
    }

    
    /* 20260116追加 */
    .foot_member_flex{
        flex-wrap: wrap;
    }
    .foot_member_bnr{
        max-width: 270px;
        width: 100%;
        order: -1;
        margin: 0 auto 35px;
    }
    .foot_member_flex .foot_nav {
        width: 100%;
    }

}
@media screen and (max-width:650px){
    .logo_flex_in_left {
        max-width: 160px;
        margin: 0 auto 15px;
    }
    .logo_flex_in_right {
        padding-bottom: 0;
        padding-left: 0;
        margin: 0 auto;
    }
    .logo_flex_in_right p {
        text-align: center;
    }
    .foot_nav li a {
        font-size: 13px;
    }
    .foot_nav li {
        margin-bottom: 15px;
    }
    .foot_nav {
        margin-bottom: 25px;
    }
    .footer {
        margin-top: 40px;
        padding-top: 60px;
    }
    .sns_flex ul{
        margin: 20px 0 0;
    }

    /* 20260116追加 */
    .foot_member_flex{
        margin: 0 auto 25px;
    }
}

/* 20250610追加 */
@media screen and (max-width:438px){
    .logo_flex_in_left {
        padding-bottom: 0;
    }
}


#page-top {
	position: fixed;
	bottom: 45px;
	right: 20px;
	font-size: 14px;
	z-index: 99;
	width: 60px;
	height: 60px;
	cursor: pointer;
	/* border: 1px solid #0f345b;
    background: rgba(255,255,255,0.8); */
	opacity: 0.85;
}
#page-top a{
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#page-top a img{
	width: 60px;
	height: auto;
}

@media screen and (max-width:850px){
    #page-top {
        bottom: 90px;
    }

}
@media screen and (max-width:650px){
    #page-top a img {
        width: 40px;
    }
    #page-top a {
        width: 40px;
        height: 40px;
    }
    #page-top {
        /* bottom: 55px; */
        bottom: 25px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}


#copyright {
    background-color: #ac9874;
    color: #fff;
    height: 40px;
    line-height: 40px;
    letter-spacing: 0.02em;
    font-size: 13px;
}
@media screen and (max-width:1000px){
    #copyright {
        font-size: 12px;
    }
}
@media screen and (max-width:650px){
    #copyright {
        padding-bottom: 110px;
        /* margin-bottom: 40px; */
    }
}



#bottom_button {
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 40px;
    background-color: #a49676;
    z-index: 1000;
}
#bottom_button a {
    width: 100%;
    height: 100%;
    color: #fff;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
}




.gaibu_b::after {
    content: url(../img/common/link_black.svg);
    width: 13px;
    height: 13px;
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
}
.gaibu_w::after {
    content: url(../img/common/link_white.svg);
    width: 13px;
    height: 13px;
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
}