@charset "UTF-8";

/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer{
	display: block;
}
ul li,
ol li{
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}
body{
	line-height: 1;
}
a{
	text-decoration: none;
}
img{
	vertical-align: middle;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
select,option,input,textarea,button{
	font: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}
input[type=radio]{
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}
input[type=checkbox]{
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
blockquote::before,blockquote::after,q::before,q::after{
	content: '';
	content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
	cursor: pointer;
}
:focus{
	outline: none;
}
html{
	font-size: 62.5%;
}
body{
	font-family: "Shippori Mincho", "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	color: #2c2c2c;
}
a {
	color: #006d9e;
	-webkit-tap-highlight-color: rgba(238, 223, 227, 0.2);
}
sup,
sub{
	font-size: xx-small;
}

/*--------------------------------
common
--------------------------------*/
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.en-font{
	font-family: "baskerville-display-pt", serif;
}
.garamond{
	font-family: "adobe-garamond-pro", serif;
	font-weight: 400;
	font-style: normal;
}
.small-text {
	font-size: 75%;
}
.mid-text{
	font-size: 125%;
}
.large-text{
	font-size: 150%;
}
.vertical-text {
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}
.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.has-max {
	height: auto;
	max-width: 100%;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.flex-nowrap{
	flex-wrap: nowrap;
}
.align-center{
	align-items: center;
}
.has-gap{
	gap: 16px;
}
.col-2{
	width: 50%;
}
.col-3{
	width: calc(100% / 3);
}
.col-4{
	width: calc(100% / 3);
}
.has-gap .col-2{
	width: calc(50% - 8px);
}
.has-gap .col-3{
	width: calc(100% / 3 - 11px);
}
.has-gap .col-4{
	width: calc(100% / 4 - 12px);
}
@media screen and (max-width: 767px){
	.col-2,
	.has-gap .col-2,
	.col-3,
	.has-gap .col-3{
		width: 100%;
	}
	.has-gap .col-4{
		width: calc(50% - 8px);
	}
	.has-gap .sp-col-3{
		width: 100%;
	}
}
.img-wrapper{
	position: relative;
}
.img-wrapper .caption{
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}
.img-wrapper .caption.has-bg{
	left: auto;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	padding: .4em .6em;
	margin: 0;
}
.img-wrapper .caption.has-bg.left{
	left: 0;
	right: auto;
}
.inline-block{
	display: inline-block;
}
.grid-wrapper{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 940px){
	.grid-wrapper{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px){
	.grid-wrapper{
		grid-template-columns: 1fr;
	}
}
.nav-link{
	color: #444;
}
.nav-link.none{
	position: relative;
}

/*--------------------------------
componet
--------------------------------*/

.primary-heading{
	margin-bottom: .8em;
	font-size: 4.4rem;
	font-weight: 400;
	line-height: 1.3;
}
.secondary-heading{
	margin-bottom: .4em;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.3;
}
.secondary-heading.line-wide{
	line-height: 1.7;
}
.tertiary-heading{
	margin-bottom: .8em;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1.4;
}
.page-heading{
	margin-bottom: .8em;
	font-size: 3rem;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: .2em;
	text-indent: .1em;
}
@media screen and (max-width: 767px){
	.primary-heading{
		font-size: 2.6rem;
	}
	.secondary-heading{
		margin-bottom: .8em;
		font-size: 2rem;
	}
	.tertiary-heading{
		font-size: 1.6rem;
	}
	.page-heading{
		font-size: 2.4rem;
	}
}
.note{
	margin: 1em 0;
	font-size: 1.4rem;
	line-height: 1.8;
}
.lead{
	margin: 1em 0;
	font-size:clamp(1.4rem, 2vw ,2rem);
	line-height: 1.6;
}
@media screen and (max-width: 767px){
	.note{
		font-size: 1.2rem;
	}
	.lead{
		font-size: 1.4rem;
	}
}
.caption{
	margin: .4em 0;
	font-size: 1.2rem;
	line-height: 1.4;
}
.btn{
	padding: 8px 16px;
	display: inline-block;
	position: relative;
	background: #2c2c2c;
	color: #fff;
	font-size: 1.6rem;
	transition: all .3s ease-out;
}
.general-btn{
	padding: 0 16px;
	width: 100%;
	max-width: 480px;
	height: 64px;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #223c3d;
	font-size: 1.8rem;
	color: #fff;
}
.general-btn:hover{
	filter: brightness(.8);
}
@media screen and (max-width: 767px){
	.caption{
		font-size: 1rem;
	}
	.general-btn{
		width: calc(100% - 16px);
		height: 54px;
		font-size: 1.8rem;
		line-height: 54px;
	}
}
.btn span{
	position: relative;
	z-index: 1;
}
.submit-btn{
	margin: 8px;
	padding: 0 16px;
	width: 100%;
	max-width: 300px;
	height: 60px;
	position: relative;
	background: #456254;
	font-size: 2rem;
	line-height: 60px;
	border-radius: 30px;
}
.cancel-btn{
	margin: 8px;
	padding: 0 16px;
	width: 100%;
	max-width: 200px;
	height: 60px;
	position: relative;
	background: #aaa;
	font-size: 2rem;
	line-height: 60px;
	border-radius: 30px;
}
.reserve-btn{
	background: #fff;
	border:  solid 1px #000;
	color: #000;
}
.request-btn{
	background: #c69c6d;
	color: #fff;
}
.icon-mail{
	width: 2rem;
}
.tel-btn{
	background: #c69c6d;
}
.reserve-btn:hover{
	filter: brightness(.8);
}
.request-btn:hover{
	filter: brightness(.8);
}
.tel-btn:hover{
	background: #333;
}
.more-btn::after{
	width: 10px;
	height: 10px;
	display: block;
	content: "";
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.more-btn.coming-soon{
	opacity: .8;
}
.more-btn.coming-soon::after{
	display: none;
}
.bg-base{
	background: #f4f2ec;
}
.bg-lighten{
	background: url(../images/common/texture.webp), #f4f2ec;
	background-size: cover;
}
.bg-light{
	background: #fffef7;
}
.bg-gray {
	background-color: #faf9f2;
}
.bg-dark{
	background-color: #333;
	color: #fff;
}
.video-wrapper{
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}
.video-wrapper iframe,
.video-wrapper video{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.loading{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	content: "";
}
.general-table{
	margin: 48px 0;
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.4;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}
.general-table th,
.general-table td{
	padding: 16px;
	border-bottom: 1px solid #ddd;
}
.general-table th{
	width: 260px;
	position: relative;
	background: #eee;
	font-weight: 500;
	text-align: right;
}
@media screen and (max-width: 767px){
	.general-table{
		margin: 24px 0;
	}
	.general-table th,
	.general-table td{
		width: 100%;
		display: block;
	}
	.general-table th{
		text-align: left;
	}
}
.is-dummy{
	padding: 8px;
	position: absolute;
	bottom: 32px;
	left: 32px;
	z-index: 1;
	background: #595e64;
	color: #fff;
	font-size: 1.4rem;
}
.banner-area{
	margin: 32px auto;
	width: calc(100% - 48px);
	max-width: 1000px;
	display: flex;
	justify-content: center;
	gap: 32px;
}
.banner-item{
	max-width: 600px;
}
.page-mv{
  position: relative;
}
.page-mv .img-wrapper .caption{
  bottom: 80px;
}
.page-mv-title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(14, 119, 65, .7);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.page-mv-text{
  font-size: 4rem;
  letter-spacing: .15em;
}

@media screen and (min-width: 1001px){
	.page-mv-title.over-text br{
		display: none;
	}
}
@media screen and (max-width: 1000px){
	.page-mv-title.over-text{
		height: 110px;
		line-height: 1.3;
	}
	.page-mv-title.over-text + .caption{
		bottom: 110px;
	}
}
@media screen and (max-width: 767px){
	.page-mv .img-wrapper .caption{
    bottom: 48px;
  }
  .page-mv-title{
    height: 48px;
  }
  .page-mv-text{
    font-size: 2.4rem;
  }
	.page-mv-title.over-text{
		height: 84px;
	}
	.page-mv-title.over-text + .caption{
		bottom: 84px;
	}
}

/*--------------------------------
layout
--------------------------------*/
.hero{
	position: relative;
}
.brand .note{
	font-size: 1.8rem;
}
.brand .secondary-heading {
	color: #5C6774;
}
@media screen and (max-width: 767px){
	.brand .note{
		font-size: 1.6rem;
	}
}
.brand .container{
	overflow: hidden;
}
.hero .lead{
	position: absolute;
	top: 5%;
	left: 0;
	right: 0;
	text-align: center;
}
@media screen and (max-width: 767px){
	.hero .lead{
		font-size: 3.8vw;
	}
}
.hero-image{
	overflow: hidden;
}
.hero-image .fit-img{
	transform: scale(1.2);
	transition: transform 7s ease-out 1.4s;
}
.hero video{
	width: 100%;
}
.hero-image.wow-finished .fit-img{
	transform: scale(1);
}
@media screen and (max-width: 767px){
	.hero-image.wow-finished .fit-img{
		transform: translateX(0);
	}
}
.brand-mv{
	background: url(../images/brand/go-bg.jpg) no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 767px){
	.brand-mv{
		margin-top: 50px;
		text-align: center;
	}
}
.brand-mv-grid{
	padding: 80px 0;
	text-align: center;
	line-height: 1.5;
	font-weight: 600;
	font-feature-settings: "palt";
	letter-spacing: 1.4px;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.brand .duo-logo{
	max-width: 400px;
	width: 90%;
	margin: 0 auto;
}
.brand-mv-item{
	margin: 0 auto;
}
.brand-mv-copy{
	margin: 30px auto;
	font-size: 3.4vw;
}
.brand-mv-note{
	font-size: 2vw;
}
@media screen and (max-width: 767px){
	.brand-mv-grid{
		margin: 0 auto;
		padding: 60px 0;
		width: 90%;
	}
	.brand-mv-copy{
		margin: 20px auto;
		font-size: 8.8vw;
	}
	.brand-mv-note{
		font-size: 7.6vw;
	}
	.brand-mv-item{
		margin: 0 auto;
	}
}
.brand-go-wrap{
	background: url(../images/brand/go-bg.jpg) no-repeat center center;
	background-size: cover;
}
.brand-go-grid{
	padding: 80px 0;
	margin: 0 auto;
	text-align: center;
	font-weight: 600;
	font-feature-settings: "palt";
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px){
	.brand-go-grid{
		padding: 40px 0;
		text-align: left;
		width: 85%;
	}
}
.brand-go-copy{
	margin-bottom: 30px;
	font-size: 2.2vw;
	line-height: 1.6;
}
.brand-go-copy span{
	font-size: 125%;
	position: relative;
}
.brand-go-copy sup{
	position: absolute;
	top: 0;
	right: -12%;
	font-size: .6vw;
}
.brand-go-note{
	font-weight: 400;
	font-size: .9vw;
	line-height: 1.7;
}
@media screen and (max-width: 767px){
	.brand-go-copy{
		font-size: 7.4vw;
	}
	.brand-go-note{
		margin-top: 8%;
		font-size: 4vw;
		padding-bottom: 10px;
	}
	.brand-go-copy sup{
		font-size: 1rem;
	}
}
.index-wrapper{
	flex-wrap: nowrap;
	align-items: center;
	text-align: center;
}
.index-heading{
	margin-top: -150px;
	width: 16%;
	font-family: "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 4rem;
	font-weight: 400;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	letter-spacing: .5em;
	transform: translateX(-50%);
}
.index-item{
	flex: 1;
}
.index-item .img-wrapper{
	overflow: hidden;
}
.index-item .fit-img{
	transition: all .3s ease-out;
}
.index-item :hover .fit-img{
	transform: scale(1.2);
	filter: brightness(0.6);
}
.index-title{
	margin: 1em 0;
	font-family: "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.5vw;
	font-weight: 400;
	color: #2c2c2c;
}
.index-num{
	padding: .8em 32px 0;
	display: inline-block;
	font-family: "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 2.6rem;
	font-weight: 400;
	color: #2c2c2c;
	border-top: 1px solid #707070;
}
@media screen and (max-width: 900px){
	.index-wrapper{
		padding: 0 16px;
	}
	.index-heading{
		display: none;
	}
	.index-title{
		font-size: 1.8vw;
	}
}
@media screen and (max-width: 767px){
	.index-wrapper{
		flex-wrap: wrap;
	}
	.index-item{
		margin-bottom: 16px;
		width: calc(50% - 8px);
		flex: none;
	}
	.index-title{
		font-size: 3.6vw;
	}
	.index-num{
		font-size: 1.8rem;
	}
}

.content-wrap{
	align-items: center;
}
.thumb-item{
	width: 38vw;
	height: 100vh;
	top: 0;
	left: 0;
	transition: opacity .4s ease-out;
}
.thumb-item .fit-img{
	height: 100%;
	object-fit: cover;
}
.content-item{
	padding: 0 5vw;
	flex: 1;
}
@media screen and (min-width: 901px){
	.content-wrap{
		min-height: 100vh;
	}
	.content-wrap.is-fixed{
		padding-left: 38vw;
	}
	.is-hidden{
		opacity: 0;
	}
	.is-fixed .thumb-item{
		position: fixed;
		z-index: 2;
		opacity: 1;
	}
	.index2 .is-fixed .thumb-item{
		left: 160px;
	}
	.over-scroll .thumb-item{
		opacity: 1;
	}
}
@media screen and (max-width: 900px){
	.thumb-item{
		margin: 16px auto;
		width: calc(100% - 32px);
		max-width: 400px;
		height: auto;
	}
	.content-item{
		padding: 16px;
		width: 100%;
		flex: none;
	}
}
.slide-loop{
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
}
.slide-loop-wrap{
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
}
.slide-loop-item,
.slide-loop-img{
	width: auto;
	height: 300px;
}
.slide-loop-item{
	display: flex;
}
@media screen and (max-width: 900px){
	.slide-loop,
	.slide-loop-item,
	.slide-loop-img{
		height: 200px;
	}
}

#sec-01,
#sec-02,
#sec-03,
#sec-04{
	margin-top: -70px;
	padding-top: 70px;
}
@media screen and (max-width: 767px){
	#sec-03{
		margin-top: -20px;
		padding-top: 20px;
	}
}
.content-item .secondary-heading{
	margin-bottom: 4vw;
}
.section-header{
	margin-top: 7vw;
	position: relative;
}
.section-heading{
	padding: 16px 32px;
	display: inline-block;
	position: absolute;
	top: -.5em;
	left: 5vw;
	z-index: 1;
	font-family: "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	background: #fff;
}
.heading-num{
	margin-right: 32px;
	display: inline-block;
}
@media screen and (max-width: 767px){
	.section-heading{
		padding: 8px 16px;
		top: -1em;
	}
	.heading-num{
		display: block;
	}
}
.has-border-bottom{
	padding: 0 0 .8em;
	display: inline-block;
	border-bottom: 1px solid #707070;
}
.has-side-padding{
	padding-left: 1em;
	padding-right: 1em;
}
.col-2 .note:first-child{
	margin-top: 0;
}
.senior-section{
	padding-top: 6.7vw;
	padding-bottom: 12vw;
	background-image: url(../images/brand/duoscene-wh.png), url(../images/brand/section-foot.png);
	background-repeat: no-repeat;
	background-position: right top, center bottom;
	background-size: 60% auto, 100% auto;
}
.light-section{
	padding-bottom: 12vw;
	background-image: url(../images/brand/section-foot-2.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}
.gray-section{
	padding-bottom: 12vw;
	background-image: url(../images/brand/section-foot.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}
@media screen and (max-width: 767px){
	.senior-section{
		background-size: 100% auto, 100% auto;
	}
}
.illust-wrap{
	justify-content: center;
	gap: 20px;
	text-align: center;
}
.illust-wrap.max-3{
	gap: 40px;
}
.illust-wrap > .flex-item{
	width: calc(100% / 4 - 15px);
}
.illust-wrap .lead{
	padding-top: 16px;
	border-top: 1px dotted #535353;
}
@media screen and (max-width: 767px){
	.illust-wrap{
		gap: 24px;
		justify-content: flex-start;
	}
	.illust-wrap.max-3{
		gap: 24px;
	}
	.illust-wrap > .flex-item{
		width: calc(100% / 2 - 12px);
	}
	.over-scroll{
		overflow-x: auto;
	}
	.over-scroll > img{
		min-width: 600px;
	}
}
.general-section .right-fit{
	margin-right: 0;
	width: calc(100% - 16px);
}
.slick-item{
	margin: 0 8px;
	text-align: center;
	transform: translateX(20%);
}
.slide-loop{
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
}
.slide-loop-wrap{
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
}
.slide-loop-item,
.slide-loop-img{
	width: auto;
	height: 300px;
}
.slide-loop-item{
	display: flex;
}
@media screen and (max-width: 900px){
	.slide-loop,
	.slide-loop-item,
	.slide-loop-img{
		height: 200px;
	}
}
.area-wrapper{
	gap: 8px;
	text-align: center;
	justify-content: flex-start;
}
.general-section .inner-area{
	max-width: 1568px;
}
.area-item{
	margin-bottom: 32px;
	width: calc(100% / 4 - 6px);
}
.count{
	margin-top: -.8em;
	font-size: 1.8rem;
	font-weight: 400;
}
.area-item{
	counter-increment: count;
}
.area-item .img-wrapper::before{
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #456254;
	content: counter(count);
	color: #fff;
	line-height: 30px;
}
@media screen and (max-width: 900px){
	.area-item{
		width: calc(100% / 4 - 6px);
	}
}
@media screen and (max-width: 767px){
	.count{
		font-size: 1.4rem;
	}
	.area-wrapper{
		width: 2072px;
		flex-wrap: nowrap;
	}
	.area-item{
		margin-bottom: 16px;
		width: 200px;
	}
}

.go-grid{
	display: grid;
	grid-template-columns: 40% 1fr;
	align-items: center;
	font-family: "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.go-item:last-child{
	padding: 32px 0;
}
.go-grid .lead-main-copy {
    font-size: 3.2rem;
    color: #000;
    margin: 32px 0 20px;
}
.duo-logo{
	max-width: 400px;
}
@media screen and (max-width: 1375px){
	.go-grid{
		align-items: flex-end;
	}
}
@media screen and (max-width: 767px){
	.go-grid{
		grid-template-columns: 1fr;
	}
	.go-item:first-child{
		margin: 0 auto;
		order: 2;
		width: 80%;
	}
	.go-item:first-child .page-btn{
		margin-top: 20px;
	}
	.go-item:last-child{
		order: 1;
		padding: 0;
	}
	.duo-logo{
		width: 80%;
	}
	.go-grid .lead-main-copy {
		font-size: 4.8vw;
		margin: 16px 0 16px;
	}
}

.has-navigation .container{
	margin-top: 124px;
}
@media screen and (max-width: 900px){
	.has-navigation .container{
		margin-top: 50px;
	}
}
.general-section .inner{
	margin: 0 auto;
	padding: 80px 0;
	width: calc(100% - 64px);
	max-width: 1000px;
}
@media screen and (max-width: 767px){
	.general-section .inner{
		padding: 32px 0;
		width: calc(100% - 32px);
	}
	.general-section .inner.sp-inner-fit{
		width: 100%;
	}
}
.general-section .inner-min{
	padding: 40px 0;
}
@media screen and (max-width: 767px){
	.general-section .inner-min{
		padding: 24px 0;
	}
}
.general-section .inner-wide{
	max-width: 1400px;
}
.general-section .inner-mid{
	max-width: 1100px;
}
.general-section .inner-fit{
	width: 100%;
	max-width: none;
}
.general-section .inner-full{
	max-width: none;
}
.general-section .inner + .inner{
	padding-top: 0;
}
.general-parts{
	margin-bottom: 32px;
}
.btn-space{
	margin: 16px 0;
	text-align: center;
}
.btn-space:last-child{
	margin-bottom: 0;
}
.section-border,
.general-section .inner + .section-border{
	padding-top: 48px;
	border-top: 1px solid #D1D1D1;
}

/*--------------------------------
header
--------------------------------*/
.new-header{
	height: 124px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	background: rgba(255,255,255,.8);
	transition: height .4s ease-out;
}
.new-header .inner{
	padding: 16px;
}
.new-header .logo{
	width: calc(100% - 316px);
	max-width: 550px;
	height: 28px;
	background: url(../images/common/logo.png) no-repeat left center;
	background-size: contain;
	transition: height .4s ease-out;
}
.logo a{
	height: 100%;
	display: block;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
}
.icon-insta{
	width: 30px;
	height: 30px;
	background: url(../images/common/instagram.png) no-repeat center center;
	background-size: 100%;
	transition: .4s;
}
.icon-line{
	background: url(../images/common/line.png) no-repeat center center;
	background-size: contain;
}
.icon-youtube{
	background: url(../images/common/youtube.png) no-repeat center center;
	background-size: contain;
}
.insta-wrap{
	padding: 2px 6px;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #aaa;
	box-sizing: border-box;
	background: #fff;
	font-size: 1.2rem;
	height: 34px;
	position: relative;
}
.icon-tel{
	margin-right: 2px;
	width: 22px;
	vertical-align: middle;
}
.tel-num{
	display: block;
	font-weight: 600;
}
.hamburger{
	width: 50px;
	height: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 6;
	background: #c69c6d;
	text-align: center;
	transition: all .3s ease-out;
	cursor: pointer;
}
.hamburger i{
	margin: 3px 0;
	height: 2px;
	width: 30px;
	display: block;
	content: "";
	/* background: #333; */
	background: #fff;
	transition: all .3s ease-out;
}
.is-menu-open .hamburger{
	background: #2c2c2c;
	color: #fff;
}
.is-menu-open .hamburger i{
	background: #fff;
}
.is-menu-open .hamburger i:nth-child(1){
	transform: translateY(8px) rotate(45deg);
}
.is-menu-open .hamburger i:nth-child(2){
	opacity: 0;
}
.is-menu-open .hamburger i:nth-child(3){
	transform: translateY(-8px) rotate(-45deg);
}
.pc-drawer-menu{
	display: none;
}
@keyframes fUp{ 
	0% {
		opacity: 0;
		transform: translate(0, 20px);
	} 
	100% {
		opacity: 1;
		transform: translate(0, 0);
	} 
}
@media screen and (max-width: 900px){
	.new-header .gnav .nav-list{
		opacity: 0;
	}
}
.drawer-gnav .gnav .nav-list{
	opacity: 0;
}
.is-menu-open .gnav .nav-list:first-child{
	animation: fUp .2s .2s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(2){
	animation: fUp .2s .25s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(3){
	animation: fUp .2s .3s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(4){
	animation: fUp .2s .35s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(5){
	animation: fUp .2s .4s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(6){
	animation: fUp .2s .45s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(7){
	animation: fUp .2s .5s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(8){
	animation: fUp .2s .55s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(9){
	animation: fUp .2s .6s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:nth-of-type(10){
	animation: fUp .2s .65s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav .nav-list:last-child{
	animation: fUp .2s .7s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav.under-nav .nav-list:first-child{
	animation: fUp .2s .75s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .gnav.under-nav .nav-list:last-child{
	animation: fUp .2s .8s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .salon-name, .is-menu-open .tel{
	opacity: 0;
}
.is-menu-open .salon-name{
	animation: fUp .2s .95s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .tel{
	animation: fUp .2s .95s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .upper-nav .nav-list{
	opacity: 0;
}
.is-menu-open .upper-nav .nav-list:first-child{
	animation: fUp .2s .75s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .upper-nav .nav-list:nth-of-type(2){
	animation: fUp .2s .8s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.drawer-nav .request-btn ,.drawer-nav .reserve-btn {
	opacity: 0;
}
.is-menu-open .drawer-nav .request-btn{
	animation: fUp .2s .1s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.is-menu-open .drawer-nav .reserve-btn{
	animation: fUp .2s .2s 1 ease-in-out;
	animation-fill-mode: forwards;
}
.nav-list,
.btn-list,
.request-btn,
.reserve-btn,
.btn-label{
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS 明朝", serif;
}
.bnr-nav{
	margin-top: 40px;
	padding: 26px 32px 24px 32px;
	background: #FAFAFA;
	align-items: center;
	gap: 8px;
}
@media screen and (max-width: 767px){
	.bnr-nav{
		margin-top: 40px;
		padding: 24px 16px 32px;
		align-items: flex-start;
		width: 100%;
	}
	.bnr-nav .nav-list{
		width: calc(50% - 5px);
	}
	.bnr-nav .nav-list.other{
    padding-left: 1.4em;
    text-indent: -1.4em;
		line-height: 1.3;
		font-feature-settings: "palt";
		font-size: 1.1rem;
	}
	.bnr-nav .nav-sub-list .nav-list{
		width: 100%;
	}
}
@media screen and (max-width: 375px){
	.bnr-nav .nav-list.other{
		font-size: 1rem;
	}
}
.bnr-nav .nav-link{
	margin-right: 36px;
	margin: 6px 36px 6px 0 ;
}
@media screen and (max-width: 767px){
	.bnr-nav .nav-link{
		margin: 0 ;
	}
	.bnr-nav .nav-list.other .nav-link{
		text-indent: -6px;
		line-height: 1.5;
	}
}
.bnr-nav .nav-link:hover{
	color: #c00;
}
.bnr-nav .nav-link::before{
	margin-top: -2px;
    margin-right: 4px;
    width: 6px;
    height: 6px;
    display: inline-block;
    background: #bbb;
    content: "";
    border-radius: 3px;
    vertical-align: middle;
}
.bnr-nav .has-insta .nav-link::before{
	content: none;
}
.bnr-nav .has-insta .nav-link{
	display: block;
	margin: 0;
	box-sizing: border-box;
}
.bnr-nav .has-insta .nav-link .icon-insta{
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	right: 4px;
	transform: translateY(-50%);
}
.bnr-nav .nav-link:hover::before {
    background: #c00;
}
.new-header .bnr-nav{
	display: none;
}
.bnr-sub-nav{
	width: 100%;
}
.nav-sub-list{
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
}
@media screen and (max-width: 767px){
	.nav-sub-list{
		margin-top: 12px;
	}
}
@media screen and (max-width: 375px){
	.nav-sub-list{
		grid-template-columns: 1fr;
	}
}
.insta-wrap{
	justify-content: center;
	text-align: center;
}

.gnav .nav-link{
	line-height: 1.2;
}
@media screen and (min-width: 901px){
	.is-conpact .new-header{
		height: 48px;
	}
	.is-conpact .new-header .logo{
		height: 25px;
	}
	.gnav{
		margin-top: 42px;
		justify-content: flex-start;
		transition: opacity .4s ease-out, transform .4s ease-out;
	}
	.is-conpact .new-header .gnav{
		opacity: 0;
		transform: translateY(-20px);
		pointer-events: none;
	}
	.is-conpact .tel-btn-list{
		display: none;
	}
	.is-conpact .upper-nav{
		padding-right: 70px;
	}
	.gnav .nav-list{
		flex: 1;
		border-right: 1px solid #ddd;
	}
	.gnav .nav-list:nth-of-type(10){
		border-right: none;
	}
	.is-menu-open .gnav.under-nav .nav-list:first-child{
		animation: fUp .2s .75s 1 ease-in-out;
		animation-fill-mode: forwards;
	}
	.is-menu-open .gnav.under-nav .nav-list:last-child{
		animation: fUp .2s .8s 1 ease-in-out;
		animation-fill-mode: forwards;
	}
	.gnav .nav-link{
		padding: 12px;
		display: block;
		position: relative;
		white-space: nowrap;
		text-align: center;
		text-overflow: ellipsis;
		overflow: hidden;
	}
	.new-header .gnav .nav-link{
		font-size: .9vw;
		padding:0 12px;
		height: 34px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.new-header .gnav .nav-link.new::before {
    position: absolute;
    top: -2px;
    left: 4px;
    content: "NEW";
    font-size: 1rem;
    color: #FE5A1D;
	}
	.gnav .nav-link::after{
		width: 0;
		max-width: 80px;
		height: 2px;
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		content: "";
		background: #FE5A1D;
		transform: translateX(-50%);
		transition: width .3s ease-out;
	}
	.gnav .nav-link:hover{
		color: #FE5A1D;
	}
	.gnav .nav-link:hover::after{
		width: 80%;
	}
	.upper-nav{
		position: absolute;
		right: 0;
		top: 6px;
		align-items: center;
		justify-content: flex-end;
	}
	.upper-nav .nav-list{
		margin-right: 32px;
	}
	.upper-nav .btn-list{
		margin-right: 8px;
	}
	.upper-nav .btn-list:last-child{
		margin-top: 6px;
		margin-right: 0;
		margin-left: calc(100% - 300px);
		width: 300px;
	}
	.upper-nav .btn-list:last-child .cta-btn.tel-btn{
		justify-content: center;
		height: 32px;
		font-size: 1.6rem;
	}
	.upper-nav .btn-list:last-child .cta-btn.tel-btn .tel-num{
		display: inline-block;
	}

	.upper-nav .nav-list.has-insta a{
		/* padding: 6px;
		display: block;
		background:radial-gradient(at 20% 120%,orange, #f15a4d 25%, #f13f79 55%, #9933ff 100%) no-repeat;
		box-sizing: border-box;
		border-radius: 8px; */
	}
	.upper-nav .nav-link::before{
		margin-top: -2px;
		margin-right: 4px;
		width: 6px;
		height: 6px;
		display: inline-block;
		background: #bbb;
		content: "";
		border-radius: 3px;
		vertical-align: middle;
		transition: background .3s ease-out;
	}
	.upper-nav .has-insta .nav-link::before{
		content: none;
	}
	.upper-nav .nav-link:hover{
		color: #FE5A1D;
	}
	.upper-nav .nav-link:hover::before{
		background: #FE5A1D;
	}
	.cta-btn{
		padding: 0 24px;
		height: 36px;
		display: flex;
		align-items: center;
	}
	.cta-btn.tel-btn{
		font-size: 2rem;
	}
	.hamburger,
	.sp-tel-btn{
		display: none;
	}
	.is-conpact .hamburger{
		width: 70px;
		height: 48px;
		display: flex;
	}
	.pc-drawer-menu{
		display: block;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 5;
		/* background: url(../images/common/menu-bg.jpg) no-repeat center #fff; */
		background: #fff;
		background-size: cover;
		overflow-y: auto;
		transform: translate(0, -100%);
		transition: transform .2s ease-in-out;
	}
	.is-menu-open .pc-drawer-menu{
		transform: translate(0, 0);
	}
	.pc-drawer-menu{
		padding: 100px 10vw;
	}
	.pc-drawer-menu .logo{
		margin: 0 auto 80px;
		max-width: 600px;
		height: 40px;
		background: url(../images/common/logo.png) no-repeat center center;
		background-size: contain;
	}
	.drawer-nav .btn-space{
		margin: 0 40px 0 0;
		width: 30%;
	}
	.drawer-gnav{
		width: calc(70% - 40px);
	}
	.pc-drawer-menu .gnav{
		margin-top: 0;
		gap: 0 16px;
	}
	.pc-drawer-menu .gnav .nav-list{
		width: 48%;
		flex: none;
		border-bottom: 1px solid #ddd;
		border-right: none;
	}
	.pc-drawer-menu .gnav .nav-list:first-child,
	.pc-drawer-menu .gnav .nav-list:nth-child(2){
		border-top: 1px solid #ddd;
		border-left: none;
	}
	.pc-drawer-menu .gnav.under-nav .nav-list:first-child,
	.pc-drawer-menu .gnav.under-nav .nav-list:nth-child(2){
		border-top: none;
	}
	.pc-drawer-menu .gnav .nav-link{
		padding: 18px 16px;
		display: block;
		position: relative;
		font-size: 1.8rem;
		text-align: left;
	}
	.pc-drawer-menu .gnav .nav-link .small-text{
		display: inline-block;
		margin-right: .6em;
	}
	.pc-drawer-menu .gnav .nav-link:not(.none) {
		background: url(../images/common/nav-arrow.svg) no-repeat 98% 50%;
		background-size: 5px;
	}
	.pc-drawer-menu .gnav .nav-link::after{
		max-width: 100%;
		left: 0;
		transform: translateX(0);
	}
	.pc-drawer-menu .salon-name{
		margin-top: 40px;
		margin-bottom: 8px;
	}
	.pc-drawer-menu .tel{
		justify-content: flex-start;
	}
	.pc-drawer-menu .salon-status{
		width: 100%;
	}
	.pc-drawer-menu .general-btn{
		margin: 0;
		height: 150px;
		line-height: 150px;
		border-radius: 0;
		box-shadow: 1px 1px 8px rgb(0,0,0,.2);
	}
	.pc-drawer-menu .general-btn + .general-btn{
		margin-top: 24px;
	}
	.gnav .nav-list{
		opacity: 1;
	}
	.pc-drawer-menu .gnav .nav-link:hover::after {
		width: 100%;
	}
	.pc-drawer-menu .bnr-nav{
		width: calc(96% + 16px);
		margin: 40px auto 0;
		opacity: 0;
	}
	.is-menu-open .pc-drawer-menu .bnr-nav{
		animation: fUp .2s .85s 1 ease-in-out;
		animation-fill-mode: forwards;
	}
	.pc-drawer-menu .gnav .nav-link.none {
		opacity: .9;
	}
	.pc-drawer-menu .gnav .nav-link.none::before {
		position: absolute;
		top: 50%;
		right: 16px;
		content: "COMING SOON";
		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans CJK JP", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
		font-size: 1.1rem;
		color: #aaa;
		transform: translateY(-50%);
	}
	.nav-sub-list{
		grid-template-columns: repeat(3,1fr);
	}
	.insta-wrap{
		font-size: 1.6rem;
		height: 34px;
		position: relative;
	}
}
.w1570{
	display: none;
}
@media screen and (max-width: 1570px){
	.new-header .w1570{
		display: block;
	}
}
@media screen and (max-width: 768px){
	.footer-container  .w1570{
		display: block;
	}
}
@media screen and (min-width: 901px) and (max-width: 1218px){
	.gnav{
		margin-top: 42px;
	}
	.new-header .gnav .nav-link{
		padding: 8px 9px;
	}
}
@media screen and (min-width: 901px) and (max-width: 1260px){
	.new-header .logo {
		width: 25%;
	}
	.upper-nav .nav-list {
    margin-right: 12px;
		font-size: 1.2rem;
	}
	.cta-btn {
		font-size: 1.2rem;
    padding: 0 8px;
	}
}
@media screen and (min-width: 1500px) {
	.new-header .gnav .nav-link{
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 900px){
	.new-header{
		height: 50px;
		transition: background .3s ease-out;
	}
	.new-header .inner{
		padding: 0;
	}
	.new-header .logo{
		margin: 8px 16px 6px;
		width: 154px;
		height: 36px;
		background-image: url(../images/common/logo-sp.png);
		background-size: contain;
		transition: opacity .4s ease-out;
	}
	.is-scroll .new-header{
		background: transparent;
	}
	.is-scroll .new-header .logo{
		opacity: 0;
	}
	.nav-container{
		display: none;
		max-height: calc(100vh - 62px);
		overflow-y: auto;
	}
	.new-header.has-bg{
		background: #fff;
	}
	.is-menu-open .new-header{
		height: 100vh;
		background: #fff;
	}
	.is-menu-open .nav-container{
		padding-bottom: 54px;
		display: block;
		/* background: url(../images/common/menu-bg.jpg) no-repeat center #fff; */
		background-size: cover;
	}
	.new-header .gnav{
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
	.new-header .gnav .nav-list{
		border-top: 1px solid #ddd;
	}
	.gnav .nav-list:nth-of-type(10){
		/* border-bottom: 1px solid #ddd; */
	}
	.new-header .gnav .nav-list:nth-of-type(odd) {
		border-right: 1px solid #ddd;
	}
	.new-header .nav-link{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 0 16px;
		height: 54px;
		font-size: 1.4rem;
		text-align: center;
		position: relative;
	}
	.upper-nav .nav-list{
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
	}
	.upper-nav .nav-list:nth-of-type(odd) {
		border-right: 1px solid #ddd;
	}
	.new-header .nav-link:not(.none){
		background: url(../images/common/nav-arrow.svg) no-repeat 95% 50%;
    background-size: 5px;
	}
	.upper-nav .has-insta {
		display: none;
	}
	.upper-nav{
		padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
	}
	.new-header .btn-list{
		/* margin-top: 16px; */
		width: 50%;
	}
	.new-header .cta-btn{
		padding: 0;
		height: 50px;
		display: block;
		text-align: center;
		line-height: 50px;
	}
	.tel-btn-list{
		display: none;
	}
	.sp-tel-btn{
		width: 45px;
		height: 49px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		position: absolute;
		top: 0;
		right: 56px;
		color: #2c2c2c;
		text-align: center;
		transition: all .3s ease-out;
	}
	.sp-tel-btn .btn-label{
		color: #2c2c2c;
	}
	.icon-tel-btn {
		width: 17px;
		margin: 0 0 -2px;
	}
	.new-header .request-btn,
	.new-header .reserve-btn{
		display: none;
	}
	.new-header .bnr-nav{
		display: flex;
		width: 100%;
		margin: 0 auto 0;
		padding: 24px 16px 32px;
		opacity: 0;
	}
	.is-menu-open .new-header .bnr-nav{
		animation: fUp .2s .85s 1 ease-in-out;
		animation-fill-mode: forwards;
	}
	.new-header .bnr-nav .nav-link:not(.none){
		background: none;
	}
	.new-header .bnr-nav .other .nav-link:not(.none){
		padding: 0;
		align-items: flex-start;
		height: auto;
		text-align: left;
		padding-left: 1.4em;
		text-indent: -1.4em;
		display: block;
	}
	.new-header .bnr-nav .nav-list.other{
		padding-left: 0;
		text-indent: 0;
	}
	.new-header .bnr-nav .nav-sub-list{
		grid-template-columns: repeat(2,1fr);
		gap: 10px;
	}
	.new-header .bnr-nav .nav-sub-list .nav-link{
		height: auto;
		padding: 0;
		margin-block: 0;
	}
	.new-header .gnav .nav-link.none {
		opacity: .9;
		padding-bottom: .8em;
	}
	.new-header .gnav .nav-link.none::before {
		position: absolute;
		bottom: 7px;
		left: 50%;
		content: "COMING SOON";
		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans CJK JP", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
		font-size: 1.1rem;
		color: #aaa;
		transform: translateX(-50%);
		width: 100%;
	}
	.new-header .gnav .nav-link.new::before {
    position: absolute;
    top: 4px;
    left: 4px;
    content: "NEW";
    font-size: 1.1rem;
    color: #c00;
	}
}
@media screen and (max-width: 375px){
	.new-header .nav-link {
		font-size: 1.2rem;
	}
	.new-header .bnr-nav .nav-sub-list{
		grid-template-columns: 1fr;
	}
}
.btn-label{
	font-size: 10px;
	font-feature-settings: 'palt';
	margin-top: 3px;
	color: #fff;
}

/*--------------------------------
footer
--------------------------------*/
.footer-container{
	padding-top: 32px;
}
.index2 .footer-container{
	margin-left: 160px;
}
.footer-container .inner{
	margin: 0 auto;
	padding: 32px 0;
	width: calc(100% - 32px);
}
@media screen and (max-width: 767px){
	.footer-container{
		padding-top: 0;
	}
	.index2 .footer-container{
		margin-left: 0;
	}
	.footer-nav{
		margin-bottom: 0;
	}
	.footer-container .inner{
		padding: 28px 0;
		width: calc(100% - 32px);
	}
	.footer-container .gnav{
		/* display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr; */
		/* border-top: 1px solid rgba(0,0,0,.1); */
		display: block;
	}
	.footer-container .gnav .nav-list{
		border-bottom: 1px solid rgba(0,0,0,.1);
		float: left;
		width: 50%;
	}
	.footer-container .gnav .nav-list.pc-none{
		border-bottom: none;
	}
	.footer-container .gnav .nav-list:nth-child(odd){
		border-right: 1px solid rgba(0,0,0,.1);
	}
	/* .footer-container .gnav .nav-list:nth-of-type(2){
		border-right: 1px solid rgba(0,0,0,.1);
	} */
	.footer-container .gnav.sp-footer-item .nav-list:nth-child(2){
		border-right: 1px solid rgba(0,0,0,.1);
	}
	.footer-container .gnav .nav-link{
		padding: 0 24px;
		height: 60px;
		display: -ms-grid;
		/* display: grid; */
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		letter-spacing: .1em;
		font-feature-settings: 'palt';
		text-align: center;
		font-size: 1.3rem;
	}
	.footer-container .gnav .nav-link.none{
		padding-bottom: 9px;
		position: relative;
		opacity: .9;
	}
	
	.footer-container .gnav .nav-link.none::before{
		position: absolute;
		bottom: 6px;
		left: 50%;
		content: "COMING SOON";
		font-size: 1.1rem;
		color: #000;
		white-space: nowrap;
		transform: translateX(-50%);
	}
	
	.footer-gnav{
		width: 100%;
		border-top: 1px solid rgba(0,0,0,.1);
		/* border-bottom: 1px solid rgba(0,0,0,.1); */
	}
	.sp-fixed-btn{
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 5;
		transition: transform .4s ease-out;
	}
	.is-scroll .sp-fixed-btn{
		transform: translateY(50px);
	}
	.sp-fixed-btn .btn-list{
		flex: 1;
	}
	.sp-fixed-btn .btn-list .cta-btn.limited-btn{
		line-height: 1.3;
		font-size: 1rem;
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.sp-fixed-btn .cta-btn{
		padding: 0;
		height: 50px;
		display: block;
		text-align: center;
		line-height: 50px;
	}
	.sp-fixed-btn .btn-list .limited-btn span::before{
		margin: 0 auto;
		left: 0;
		right: 0;
		top: -19px;
		margin-top: 0;
		width: 13px;
		height: 20px;
	}
}
@media screen and (max-width: 375px){
	.footer-container .gnav .nav-link{
		font-size: 1.2rem;
	}
}
.footer-container .gnav .nav-link:not(.none){
	background: url(../images/common/nav-arrow.svg) no-repeat 95% 50%;
	background-size: 5px;
}
.footer-container .gnav .nav-link::after{
	left: 0;
	transform: translate(0,0);
	max-width:100%;
	transition: width .2s ease-out;
}
.footer-container .gnav .nav-link:hover::after{
	width: 100%;
}
@media screen and (min-width: 768px){
	.footer-nav{
		padding: 40px 0 0;
		margin: 0 auto;
		width: calc(100% - 32px);
		max-width: 1100px;
		justify-content: center;
	}
	.footer-container .tel{
		align-items: flex-start;
	}
	.footer-container .tel .salon-name{
		padding-bottom: 8px;
	}
	.sp-fixed-btn{
		margin-right: 40px;
		width: 30%;
	}
	.sp-fixed-btn > .flex-wrapper{
		flex-direction: column;
	}
	.footer-gnav{
		width: calc(70% - 40px);
	}
	.sp-fixed-btn .btn-list + .btn-list{
		margin-top: 16px;
	}
	.sp-fixed-btn .cta-btn{
		height: 124px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		font-size: 2rem;
		box-shadow: 1px 1px 8px rgba(0,0,0,.2);
	}
	.sp-fixed-btn .cta-btn.limited-btn{
		box-shadow: none;
	}
	.sp-fixed-btn .cta-btn:hover{
		box-shadow: 0 0 2px rgba(0,0,0,.6);
	}
	.footer-container .gnav{
		margin: 0 -16px;
		display: block;
	}
	.footer-container .gnav::after{
		content: "";
		display: block;
		clear: both;
	}
	.footer-container .gnav .nav-list{
		margin: 0 16px;
		width: calc(50% - 32px);
		float: left;
		border: none;
		border-bottom: 1px solid #ccc;
	}
	.footer-container .gnav .nav-link{
		padding: 19px 12px;
		display: block;
		position: relative;
		white-space: nowrap;
		text-align: left;
		text-overflow: ellipsis;
		overflow: hidden;
	}
	.footer-container .gnav .nav-link .small-text{
		margin-right: .6em;
	}
	.footer-container .gnav .nav-link.none{
		opacity: .9;
	}
	.footer-container .gnav .nav-link.none::before{
		position: absolute;
		top: 50%;
		right: 12px;
		content: "COMING SOON";
		font-size: 1.1rem;
		color: #000;
		transform: translateY(-50%);
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.sp-fixed-btn .cta-btn {
		font-size: 1.4rem;
	}
}
.bottom-nav{
	justify-content: space-between;
	align-items: center;
}
.bottom-nav .nav-list{
	margin: 8px 0;
	text-align: right;
}
.bottom-nav .nav-link::before{
	margin-top: -2px;
	margin-right: 4px;
	width: 0;
	height: 0;
	display: inline-block;
	content: "";
	border-style: solid;
	border-width: 4.5px 0 4.5px 7px;
	border-color: transparent transparent transparent #9B8C1B;
	vertical-align: middle;
}
.bottom-nav .nav-link:hover{
	color: #c00;
}
.salon-name{
	font-size: 1.4rem;
	line-height: 1.4;
}
.tel{
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
.tel a{
	font-family: 'Times New Roman', serif;
	font-size: 5rem;
	color: #2c2c2c;
	white-space: nowrap;
}
.tel-wrap-inner{
	display: flex;
	align-items: center;
	gap: 16px;
}
.salon-status{
	font-size: 1.2rem;
	line-height: 1.4;
}
.call-btn{
	padding: 0 16px;
	max-width: 450px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #a67c52;
	border: 1px solid #a67c52;
	border-radius: 50px;
	color: #fff;
	font-size: 3rem;
	transition: .4s;
	text-align: center;
	position: relative;
}
.call-btn:hover{
	color: #a67c52;
	background: #fff;
}
.call-btn:hover .cls-1{
	stroke: #a67c52;
	fill: #a67c52;
}
.call-btn:hover .cls-2{
	fill: #a67c52;
}
.call-btn.center{
	margin-left: auto;
	margin-right: auto;
}
.call-btn.has-mt{
	margin-top: 48px;
}
@media screen and (max-width: 767px){
	.call-btn.has-mt{
		margin-top: 32px;
	}
	.tel-wrap-inner{
		justify-content: center;
	}
}
.call-btn img{
	width: 50px;
}
.call-btn svg{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -48px;
	width: 24px;
	aspect-ratio: 21 / 28;
	fill: #fff;
	stroke: #fff;
}
.call-btn .cls-1{
	fill: #fff;
	stroke: #fff;
}


@media screen and (max-width: 767px){
	.call-btn{
		height: 68px;
		font-size: 2.4rem;
		padding: 0 12px 0 32px;
		max-width: 350px;
	}
	.call-btn img{
		width: 40px;
	}
}
@media screen and (max-width: 767px){
	.salon-name{
		width: 100%;
		font-size: 1.4rem;
		font-feature-settings: "palt";
	}
	.salon-status {
    font-size: 1.4rem;
	}
	.tel{
		gap: 8px;
		text-align: center;
		justify-content: center;
		font-size: 4.4rem;
	}
	.tel a{
		font-size: 4.4rem;
	}
	.free-dial{
		width: 48px;
	}
	.bottom-nav .nav-list{
		text-align: left;
	}
	.bottom-nav .flex-item:first-child{
		order: 2;
	}
	.bottom-nav .flex-item:last-child{
		padding: 0 16px 16px;
		margin: 0 -16px 16px;
		width: calc(100% + 32px);
		border-bottom: 1px solid rgba(0,0,0,.2);
	}
}
@media screen and (max-width: 375px){
	.tel a{
		font-size: 4rem;
	}
	.free-dial{
		width: 40px;
	}
}
.address-wrap{
	padding: 16px;
	justify-content: center;
	align-items: flex-end;
	gap: 16px;
	border-top: 1px solid #ddd;
}
.foot-logo{
	justify-content: center;
	gap: 16px;
	font-size: 1rem;
	line-height: 1.5;
}
.foot-logo li a{
	margin-top: 8px;
	display: block;
  }
.copyright{
	font-style: normal;
	font-size: 1rem;
}
@media screen and (max-width: 767px){
	.address-wrap{
		margin-bottom: 50px;
	}
}
.foot-banner {
	display: flex;
	align-items: center;
}


/*--------------------------------
teaser
--------------------------------*/
.teaser-lead{
	margin-bottom: .6em;
	font-size: 6rem;
	white-space: nowrap;
}
.teaser-title{
	margin-bottom: .6em;
	font-size: 7rem;
	font-weight: 700;
	white-space: nowrap;
	letter-spacing: .05em;
}
.teaser-note{
	font-size: 4rem;
	font-weight: 500;
	color: #a00;
	white-space: nowrap;
	letter-spacing: .05em;
}
.teaser .general-section .inner{
	width: calc(100vw - 32px);
}
@media screen and (max-width: 930px){
	.teaser-lead{
		font-size: 7vw;
	}
	.teaser-title{
		font-size: 7vw;
	}
	.teaser-note{
		font-size: 6vw;
	}
}

/*--------------------------------
home
--------------------------------*/
.mv .img-wrapper{
	overflow: hidden;
}
.mv-video-wrap{
	aspect-ratio: 16 / 9;
	position: relative;
}
.skip-btn{
	position: absolute;
	top: 32px;
	right: 32px;
	/* color: #fff;
	background: rgba(0, 0, 0, 0.7); */
	color: #000;
	background: rgb(255 255 255 / 70%);
	padding: 0 18px 0 16px;
	height: 40px;
	/* width: 120px; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.6rem;
	gap: 12px;
	cursor: pointer;
}
.skip-icon{
	width:0;
	height:0;
	border-style:solid;
	border-width: 7px 0 7px 12.1px;
	/* border-color: transparent transparent transparent #fff; */
	border-color: transparent transparent transparent #000;
	position: relative;
	display: inline-block;
}
.skip-icon::after{
	content: '';
	display: block;
	height: 16px;
	width: 2px;
	/* background: #fff; */
	background: #000;
	position: absolute;
	top: -7.5px;
	right: -4px;
}
/* .mv-video-wrap .mv-video{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
} */
@media screen and (max-width: 767px){
	.mv-video-wrap{
		aspect-ratio: 1 / 1;
	}
	.skip-btn{
		top: 16px;
		right: 16px;
	}
}
.video-btn{
    position: absolute;
    z-index: 10;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.video-btn img{
	width: 100%;
}
.top-links-lists{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
}
.top-links-section{
	padding-top: 80px;
}
.top-links-link{
	display: block;
	position: relative;
	color: #fff;
	background: #fff;
}
.top-links-thumb .img-wrapper .fit-img{
	transition: .4s;
}
.top-links-thumb .img-wrapper .caption{
	color: #fdfdfd;
}
.top-links-link:hover .top-links-thumb .img-wrapper .fit-img{
	opacity: .4;
}
.top-links-body{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 40px;
	background: linear-gradient(0deg, #231815 20% , rgba(35, 24, 21, 0) 100%);
	text-align: center;
}
.top-links-copy{
	font-size: 1.6rem;
	line-height: 1.7;
	margin-bottom: .6em;
	font-feature-settings: "palt";
	letter-spacing: .075em;
}
.top-links-btn{
	padding-left: 10px;
	font-size: 1.3rem;
	display: flex;
	justify-content: center;
	gap: 12px;
}
.top-links-btn::after{
	content: '';
	display: block;
	width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
}
.info-section .secondary-heading.has-bar::after{
	content: '';
	display: block;
	width: 1px;
	height: 40px;
	background: #000;
	margin: 12px auto;
}
.info-section .info-wrap{
	display: grid;
	grid-template-columns: 50% 1fr;
	gap: 40px;
}
.info-request{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #42210b;
	height: 56px;
	font-size: 2.4rem;
	font-weight: 600;
	background: #c69c6d;
	border: 1px solid #999999;
	position: relative;
}
.info-request svg{
	width: 32px;
	position: absolute;
	right: 24px;
	top: 50%;
	margin-top: -16px;
}
.info-request svg .cls-1 {
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: 1.42px;
}

.info-request svg .cls-1, .info-request svg .cls-2 {
	fill: #42210b;
}

.info-request svg .cls-2 {
	stroke-width: 0px;
}
.info-request-copy{
	margin: 1.4em 0;
	padding: .8em 1.2em;
	font-size: 1.2rem;
	line-height: 1.7;
	border: 1px solid #000;
}
.info-request-text{
	margin-bottom: .8rem;
	font-size: 1.2rem;
	line-height: 1.3;
}
.info-item .tel{
	justify-content: flex-start;
}
.info-item .secondary-heading{
	line-height: 1.7;
	font-size: 3.6rem;
}
.info-item .secondary-heading + .lead{
	padding: 1.2em 2em;
	font-size: 1.6rem;
	display: inline-block;
	background: linear-gradient(135deg,#c7b299 ,rgba(199, 178, 153, 0.7));
}
@media screen and (max-width: 767px){
	.info-item .secondary-heading + .lead{
		margin-top: 0;
		padding: 1.2em 1.6em;
		font-size: 1.4rem;
		margin-bottom: 2em;
	}
}
.top-concept-img{
	margin-bottom: 0;
}
.top-concept{
	padding-bottom: 80px;
}
.top-concept-lead{
	position: absolute;
	top: 8%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 1;
}
.top-concept-copy{
	position: absolute;
	top: calc(8% + 204px);
	left: 0;
	right: 0;
	text-align: center;
	z-index: 1;
}
.top-concept-copy img{
	max-width: 900px;
	width: 70%;
}
.top-concept-wrap{
	padding: 100px 0;
	display: flex;
	align-items: center;
}
.top-concept-wrap .top-concept-item .tertiary-heading{
	line-height: 2;
}
.top-concept-wrap .top-concept-item:first-child{
	width: calc(100% - 610px);
}
.top-concept-wrap .top-concept-item:last-child{
	width: 610px;
	padding: 48px 24px;
}
.top-cards-section{
	margin-bottom: 160px;
}
.top-cards{
	margin-top: 80px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}
.top-cards-copy{
	position: absolute;
	display: inline-block;
	background: #000;
	color: #fff;
	z-index: 1;
	font-size: 1.6vw;
	padding: .3em .8em;
}
.top-cards-card{
	position: relative;
	overflow: hidden;
}
.top-cards-card:first-child{
	width: calc(60.6% - 9px);
}
.top-cards-card:first-child .top-cards-copy{
	top: 10%;
	left: 0;
}
.top-cards-card:nth-of-type(2){
	width: calc(39.4% - 9px);
}
.top-cards-card:nth-of-type(2) .top-cards-copy{
	top: 46%;
	right: 0;
}
.top-cards-card:nth-of-type(3){
	width: calc(100% / 3 - 13px);
}
.top-cards-card:nth-of-type(3) .top-cards-copy{
	top: 60%;
	right: 0;
}
.top-cards-card:nth-of-type(4){
	width: calc(100% / 3 - 13px);
}
.top-cards-card:nth-of-type(4) .top-cards-copy{
	top: 10%;
	left: 0;
}
.top-cards-card:nth-of-type(5){
	width: calc(100% / 3 - 13px);
}
.top-cards-card:nth-of-type(5) .top-cards-copy{
	top: 36%;
	left: 0;
}
.corner-button {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  background: #2e2b2a;
  color: white;
  font-family: 'Hannari', serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.corner-button::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-top: 40px solid white; /* 三角部分のサイズ */
  border-left: 40px solid transparent;
  transition: border-top-width 0.3s ease;
}

.corner-button:hover {
  transform: translateY(-3px);
}

.corner-button:hover::after {
  border-top-width: 50px; /* 少しめくれが大きくなる */
}
.top-contents{
	overflow: hidden;
	margin-top: 80px;
}
.top-contents-thumb{
	overflow: hidden;
}
.top-contents-box{
	position: absolute;
    top: -1%;
    left: 0;
    right: auto;
    bottom: -1%;
    background: linear-gradient(-90deg, #c7b299 0, #c7b299 50%, rgba(255, 255, 255, 0) 100%);
    width: 202%;
    height: 102%;
    animation-name: gradationMaskWide;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    transform: translateX(-50%);
    visibility: visible !important;
		z-index: 2;
}
.top-contents-list:nth-child(even) .top-contents-box{
    background: linear-gradient(-90deg, #c69c6d 0, #c69c6d 50%, rgba(255, 255, 255, 0) 100%);
}
@keyframes gradationMaskWide {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(50%);
	}
}
.top-contents-list{
	background: #c7b299;
}
.top-contents-list:nth-child(even){
	background: #c69c6d;
}
.top-contents-wrap{
	display: grid;
	grid-template-columns: 65% 1fr;
	position: relative;
	overflow: hidden;
}
.top-contents-body{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 32px 24px;
}
.top-contents-num{
	padding: 0 .4em;
	font-size: clamp(2rem , 6vw , 8rem);
	padding-bottom: .1em;
	border-bottom: 1px solid #fff;
	margin-bottom: .5em;
	color: #603813;
}
.top-contents-copy{
	margin-bottom: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4em;
	font-size: clamp(1.6rem , 1.8vw , 2.6rem);
	line-height: 1.5;
	font-weight: 600;
}
.top-contents-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: #3e3a39; */
	max-width: 356px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding: 0 80px; */
	color: #fff;
	position: relative;
	height: 60px;
	font-size: 1.8rem;
	/* text-indent: -3em; */
	z-index: 0;
}
.top-contents-btn .inline-block{
	overflow: hidden;
	padding-right: 3.6em;
	position: relative;
}
.top-contents-btn:hover{
	color: #000;
}
.top-contents-btn:hover .top-contents-top{
	transform: translateY(0);
}
.top-contents-btn:hover .top-contents-btm{
	transform: translateY(1em);
}
.top-contents-btn:hover svg{
	transform: rotate(-90deg);
}
.top-contents-btn:hover::before{
	background: #fff;
}
.top-contents-btn::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: calc(100% - 72px);
	background: #3e3a39;
	border: 1px solid #b3b3b3;
	z-index: -1;
	transition: .4s;
}
.top-contents-top{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-1em);
	transition: .4s;
}
.top-contents-btm{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(0);
	transition: .4s;
}
.top-contents-base{
	opacity: 0;
}
.top-contents-btn svg{
	transition: .2s;
	position: absolute;
	bottom: -4px;
	right: 0;
	width: 72px;
}
.top-contents-btn svg .cls-1{
	fill: #fff;
	stroke: #b3b3b3;
	stroke-miterlimit: 10;
	stroke-width: 1.2px;
}
.top-contents-heading{
	position: absolute;
	top: 12%;
	left: 6%;
	font-size: 1.6vw;
	font-weight: bold;
}
.yakusho-section{
	margin-top: 160px;
}
.yakusho-head{
	margin: 0 auto 48px;
	max-width: 910px;
}
.yakusho-head .lead{
	margin-top: 2em;
}
.yakusho-wrap{
	padding: 16px;
	background: linear-gradient(30deg, #fbcf00 0, #fffcd1 25%, #cb9b0c 60%, #f3e18b 87%, #fffcd1 100%);
}
.yakusho-bg{
	background: #fff;
}
.yakusho-inner{
	padding: 80px 0;
	background: linear-gradient(90deg, rgba(235, 236, 237, 0.53) 0, rgba(255, 254, 234, 0.53) 25%, rgba(224, 218, 207, 0.53) 60%, rgba(244, 244, 244, 0.53) 79% , rgba(225, 222, 198, 0.53) 100%);
}
.yakusho-box{
	margin: 0 auto;
	max-width: 1000px;
	width: calc(100% - 48px);
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr calc(50% - 60px);
}
.yakusho-movies{
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.yakusho-movie .img-wrapper{
	margin-bottom: 16px;
	cursor: pointer;
}
.yakusho-movie-text{
	width: 95%;
}
.yakusho-item .secondary-heading{
	padding: 60px 0;
	line-height: 1.7;
}
@media screen and (max-width:1300px){
	.top-links-lists {
			gap: 24px;
	}
	.top-links-copy {
    font-size: 1.2vw;
	}
}
@media screen and (max-width:900px){
	.top-contents-btn {
		font-size: 1.6vw;
		padding-right: 2vw;
	}
	.top-links-lists {
		grid-template-columns: 1fr 1fr;
	}
	.top-links-copy {
		font-size: 2vw;
	}
	.top-concept-lead {
    position: absolute;
    top: 0%;
	}
	.top-concept-copy {
    top: 28%;
	}
	.yakusho-box {
    gap: 40px;
    grid-template-columns: 1fr;
	}
	.yakusho-item .secondary-heading {
    padding: 0px 0;
	}
}
@media screen and (min-width:768px) and (max-width:900px){
	.yakusho-item:first-child{
		text-align: center;
	}
	.yakusho-movies {
		display: grid;
		grid-template-columns: 1fr 1fr;
    gap: 24px;
	}
}
@media screen and (max-width:767px){
	.info-section .info-wrap{
		margin: 0 auto;
		max-width: 375px;
		width: 100%;
		grid-template-columns: 100%;
		gap: 0;
	}
	.info-item .tel .salon-status{
		font-size: 1.2rem;
		text-align: left;
	}
	.top-links-section{
		padding-top: 0;
	}
	.top-links-lists {
		margin-top: 40px;
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.top-links-link{
		display: grid;
		grid-template-columns: 1fr 48%;
		background: #231815;
	}
	.top-links-body {
		position: static;
		align-items: center;
		justify-content: center;
		background: transparent;
		padding-bottom: 0;
	}
	/* .top-links-list:nth-child(odd) .top-links-link{
		background: #00a89c;
	}
	.top-links-list:nth-child(even) .top-links-link{
		background: #5d3e81;
	} */
	 .top-concept-wrap {
		padding: 32px 0 0;
		flex-direction: column;
	}
	.top-concept-wrap .top-concept-item:first-child{
		width: 100%;
	}
	.top-concept-wrap .top-concept-item:last-child {
		width: 100%;
    padding: 32px 24px 16px;
	}
	.top-links-copy {
    font-size: 4.2vw;
		width: 100%;
	}
	.top-links-copy .large-text{
		font-size: 115%;
	}
	.top-links-btn {
		padding: .4em 0;
		width: 90%;
		background: #fff;
		color: #000;
		border-radius: 8px;
		font-size: 4.2vw;
	}
	.top-links-btn::after{
		border-top: 2vw solid transparent;
		border-bottom: 2vw solid transparent;
		border-left: 3vw solid #000;
	}
	.top-cards-card:first-child{
		width: 100%;
	}
	.top-cards-card:nth-of-type(2){
		width: 100%;
	}
	.top-cards-card:nth-of-type(3){
		width: 100%;
	}
	.top-cards-card:nth-of-type(4){
		width: 100%;
	}
	.top-cards-card:nth-of-type(5){
		width: 100%;
	}
	.top-cards {
		margin: 0 auto;
		width: calc(100% - 32px);
	}
	.top-cards-copy {
    font-size: 4vw;
	}
	.top-cards-card:first-child .top-cards-copy{
		top: 20%;
		left: 0;
	}
	.top-cards-card:nth-of-type(2) .top-cards-copy{
		top: 26%;
		right: 0;
	}
	.top-cards-card:nth-of-type(3) .top-cards-copy{
		top: 24%;
		right: 0;
	}
	.top-cards-card:nth-of-type(4) .top-cards-copy{
		top: 26%;
		left: 0;
	}
	.top-cards-card:nth-of-type(5) .top-cards-copy{
		top: 58%;
		right: 0;
		left: auto;
	}
	.top-cards-section{
		margin-bottom: 32px;
	}
	.top-contents {
    margin-top: 32px;
	}
	.top-contents-section .lead{
		padding: 0 16px;
	}
	.top-concept {
    padding-bottom: 0;
	}
	.top-concept-lead{
		position: static;
		margin-bottom: 2.2em;
		margin-top: 0;
	}
	.top-concept-btm {
		padding: 0 16px;
		margin-bottom: 0;
		margin-top: 0;
	}
	.top-concept-img {
    margin-bottom: 0;
	}
	.top-concept-copy{
		top: 14%;
	}
	.top-concept.general-section .inner{
		padding-top: 0;
	}
	.top-contents-wrap{
		display: block;
	}
	.top-contents-body{
		position: relative;
		padding-bottom: 40px;
	}
	.top-contents-num {
		position: absolute;
		top: 45px;
		left: 16px;
		font-size: 9vw;
		padding: 0 .2em .2em;
}
	.top-contents-btn{
		width: 220px;
		height: 40px;
    font-size: 1.4rem;
		/* padding: 0 50px; */
	}
	.top-contents-btn svg {
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 50px;
	}
	.top-contents-btn::before {
    width: 170px;
	}
	.top-contents-copy {
    margin-bottom: 1.4em;
		font-size: 1.8rem;
	}
	.top-contents-heading {
    left: 5%;
    font-size: 4vw;
	}
	.yakusho-section{
		margin-top: 64px;
	}
	.yakusho-wrap {
    padding: 10px;
	}
	.yakusho-inner {
    padding: 16px 0 48px;
	}
	.yakusho-box {
    gap: 32px;
    grid-template-columns: 1fr;
	}
	.yakusho-item .secondary-heading {
    padding: 0;
    line-height: 1.7;
		text-align: center;
	}
	.yakusho-head {
    margin: 0 auto 32px;
	}
	.info-item .secondary-heading {
    line-height: 1.7;
    font-size: 2.6rem;
	}
}
.modal{
	width: calc(100% - 64px);
	max-width: 900px;
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 121;
}
.modal-inner{
	max-height: 75vh;
	overflow: auto;
}
.modal-inner a:hover{
	opacity: 1;
}
.modal-inner a img:hover{
	opacity: 1;
}
.popup.modal{
	max-width: 1200px;
}
.popup a:hover,.popup a img:hover{
	opacity: 1;
}
.popup.modal .modal-inner{
  height: auto;
  max-height: 75vh;
  overflow: auto;
}
.modal.cp-pop .modal-inner .caption{
	margin: -2px 4px 0;
	padding: 16px;
	background: #fff;
	color: #333;
}
@media screen and (max-width:767px){
	.modal{
		width: calc(100% - 32px);
	}
	.modal.cp-pop .modal-inner .caption{
		margin: -1px 1px 0;
		padding: 16px;
		background: #fff;
		color: #333;
	}
}
.modal-inner .exp{
	color:#fff;
	font-size:10px;
	padding:5px 0;
	font-feature-settings: "palt";
}

.modal-close{
	width: 30px;
	fill: #fff;
	position: absolute;
	top: -34px;
	right: -8px;
	cursor: pointer;
}
@media (max-width: 767px) {
	.modal-close{
		right: 0;
		padding: 1px;
	}
}
.overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.6);
	z-index: 120;
}
.modal-info{
	padding: 60px 16px;
	background: #fff;
}
.modal-info .tel{
	margin-bottom: 32px;
	flex-direction: column;
	animation: none;
	opacity: 1;
}
.modal-info .salon-name {
	font-size: 2.4rem;
	line-height: 1.4;
	letter-spacing: .15em;
	animation: none;
	opacity: 1;
}
.modal-info .salon-status {
	margin-bottom: 0;
	font-size: 2rem;
	animation: none;
	opacity: 1;
}
.modal-info-text{
	font-size: 3.6rem;
	color: #a67c52;
}
.modal-info-text::after{
	content: '';
	margin: 32px auto 40px;
	display: block;
	width: 48px;
	height: 1px;
	background: #a67c52;
}
@media screen and (max-width: 767px){
	.modal-info{
		padding: 36px 16px 40px;
	}
	.modal-info-text{
		font-size: 2.4rem;
	}
	.modal-info-text::after {
    content: '';
    margin: 20px auto 28px;
    display: block;
    width: 32px;
	}
	.modal-info .salon-name {
		font-size: 1.4rem;
		line-height: 1.4;
		letter-spacing: .075em;
	}
	.modal-info .salon-status {
		font-size: 1.4rem;
	}
}




/*--------------------------------
plan
--------------------------------*/
.plan-tab-wrap{
	margin: 0 auto 60px;
}
@media screen and (max-width: 1350px){
	.plan-tab-wrap{
		width: 100%;
	}
}
@media screen and (max-width: 767px){
	.plan-tab-wrap{
		margin: 12px auto 32px;
		width: 100%;
	}
}
.plan-tab-wrap + .js-tab-field{
	background: #fff;
}
.plan-tab-wrap .mv-anker-lists{
	gap: 30px;
	justify-content: center;
}
.plan-tab-wrap .mv-anker-list{
	width: calc(100% / 3 - 20px);
}
@media screen and (max-width: 767px){
	.plan-tab-wrap .mv-anker-lists{
		gap: 1.2vw;
	}
	.plan-tab-wrap .mv-anker-list{
		width: calc(100% / 3 - .8vw);
	}
}
.plan-tab-wrap .mv-anker-btn{
	width: 100%;
	text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1350px){
	.plan-tab-wrap .mv-anker-btn{
		font-size: 1.4vw;
		padding: 16px 0;
	}
}
.mv-anker{
	margin-top: 80px;
	padding-left: 5%;
	padding-bottom: 80px;
}
.mv-anker-lists{
	gap: 20px;
}
.mv-anker-btn{
	display: inline-block;
	padding: 16px 32px;
	box-sizing: border-box;
	font-size: 1.8rem;
	color: #357546;
	background: #fff;
	border-radius: 16px;
	transition: .4s;
  box-shadow: 0 5px 0 #357546;
}
.mv-anker-btn::after{
	content: "";
	margin: 8px auto 0;
	display: block;
	width: 7px;
	height: 7px;
	border-top: solid 2px #357546;
	border-right: solid 2px #357546;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.mv-anker-btn:hover{
	background: #357546;
	color: #fff;
	transform: translate3d(0, 5px, 0);
  box-shadow: none;
}
.mv-anker-btn:hover::after{
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}
.mv-anker-num{
	display: inline-block;
    margin-right: 0.2em;
    font-size: 2rem;
    color: #7BB556;
}
.plan-mv-copy{
	position: absolute;
	bottom: 2vw;
	left: 2vw;
	font-size: 3vw;
	text-shadow: 0 0 3px #707070;
}
@media screen and (max-width: 767px){
	.plan-mv-copy{
		left: 24px;
		bottom: 12vw;
		width: 100%;
		font-size: 8vw;
	}
	.mv-anker{
		margin-top: 40px;
		padding-left: 0;
		padding-bottom: 40px;
		margin: 40px auto 0;
		width: 90%;
	}
	.mv-anker-lists{
		gap: 8px;
		align-items: center;
	}
	.mv-anker-list{
		width: calc(100% / 2 - 8px);
	}
	.mv-anker-btn{
		display: flex;
		flex-flow: column;
		align-items: center;
    padding: 4vw 4vw;
		box-sizing: border-box;
		font-size: 3.6vw;
		color: #51887D;
		border-radius: 16px;
		box-shadow: 0 3px 0 #51887d;
	}
	.mv-anker-btn:hover{
		background: #51887D;
		transform: translate3d(0, 3px, 0);
	}
	.mv-anker-btn::after{
		margin-top: 8px;
	}
	.mv-anker-num{
		display: block;
		margin-bottom: 8px;
		margin-right: 0;
		font-size: 3.8vw;
		color: #7BB556;
	}
}
.plan-senior{
	margin: 0 0 80px;
	justify-content: space-between;
}
.plan-senior .text-wrapper{
	width: 48%;
}
.plan-senior .img-wrapper{
	width: 48%;
}
.plan-heading{
	font-size: 4rem;
	padding-bottom: 30px;
	margin-bottom: 30px;
	color: #023B41;
	border-bottom: 1px solid #023B41;
}
.plan-sub-heading{
	font-size: 3rem;
	color: #000;
	line-height: 1.5;
	margin-bottom: 40px;
}
.plan-note{
	font-size: 2rem;
	line-height: 1.5;
}
.plan-bg{
	 background: url(../images/plan/plan-bg.webp) no-repeat center center;
	 background-size: cover;
}
@media screen and (max-width: 767px){
	.plan-senior{
		margin: 20px 0 30px;
	}
	.plan-senior .text-wrapper{
		width: 100%;
	}
	.plan-senior .img-wrapper{
		width: 100%;
	}
	.plan-heading{
		font-size: 3rem;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.plan-sub-heading{
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
}
.plan-point-list{
	justify-content: space-between;
}
.plan-point-item{
	width: 48%;
}
.plan-point-wide{
	margin-top: 80px;
	width: 100%;
}
@media screen and (max-width: 767px){
	.plan-point-item{
		width: 100%;
		margin-top: 40px;
	}
	.plan-point-wide{
		margin-top: 40px;
	}
}
.plan-point-heading{
	margin-bottom: 24px;
	padding-bottom: 24px;
	font-size: 4rem;
	color: #023B41;
	text-align: center;
	border-bottom: 3px solid #023B41;
}
.plan-point-heading .point-number{
	margin-right: 20px;
	width: 6.5vw;
	height: auto;
	vertical-align: baseline;
}
@media screen and (max-width: 767px){
	.plan-point-heading{
		font-size: 2rem;
	}
	.plan-point-heading .point-number{
		margin-right: 10px;
		width: 40px;
	}
}
.plan-grid{
	margin-top: 80px;
	/* display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 120px; */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 120px;
}
@media screen and (max-width: 950px){
	.plan-grid{
		margin-left: auto;
		margin-right: auto;
		max-width: 450px;
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
@media screen and (max-width: 767px){
	.plan-grid{
		margin-top: 40px;
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
.plan-btn{
	margin-bottom: 50px;
	padding: 16px 50px 16px 32px;
	display: block;
	background: url(../images/plan/plan-more.png) no-repeat right center #357546;
	background-size: auto 100%;
	color: #fff;
	font-size: 19px;
	background-image: none;
}
.plan-btn em{
	font-style: normal;
}
.type-layout{
	margin-bottom: 8px;
}
.type-name{
	font-size: 30px;
	margin-right: 10px;
}
.type-layout-p{
	font-size: 30px;
}
.type-area-num{
	font-size: 30px;
}
.unit{
	font-size: 16px;
}
@media screen and (max-width: 767px){
	.plan-btn{
		margin-bottom: 16px;
		padding: 16px 20px;
		font-size: 16px;
		background: url(../images/plan/plan-more.png) no-repeat right -10px center #357546;
		background-size: auto 100%;
		background-image: none;
	}
	.type-layout-p,
	.type-area-num{
		font-size: 26px;
	}
}


.plan-item {
	border: 1px solid #357545;
}

.plan-btn-min {
	background: #dd8d76;
	color: #fff;
	width: 340px;
	max-width: 90%;
	display: flex;
	height: 50px;
	font-size: 20px;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto 16px;
	gap: 17px;
	padding: 0 24px;
}

.plan-btn-min i {
	border: 2px solid #fff;
	width: 10px;
	height: 10px;
	border-left: 0;
	border-bottom: 0;
	/* margin-left: 40px; */
	transform: rotate(45deg);
}

.plan-btn-min span {
	width: 100%;
	text-align: center;
}

/*--------------------------------
detail-plan
--------------------------------*/
.detail-plan .large-text{
	margin: 0;
	font-size: 150%;
}
.detail-plan-heading{
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 20px;
	margin-bottom: 60px;
	border-bottom: 2px solid #357546;
	/* gap: 20px; */
}
.detail-plan-layout{
	position: relative;
	font-size: 2.4rem;
}
.detail-plan-layout + .detail-plan-layout{
	margin-left: 20px;
}
.detail-plan-layout .large-text{
	font-size: 200%;
	color: #357546;
}
.detail-plan .ml-item{
	margin-left: 10px;
}
.detail-plan-img{
	width: min(calc(100%),580px);
	margin: 0 auto;
}
.detail-plan .hanrei{
	margin-top: 80px;
	width: 100%;
	justify-content: center;
	font-size: 1.2rem;
	gap: 10px;
}
.hanrei img{
	height: 12px;
	width: auto;
	margin: 0 50px;
}
.detail-plan-caption{
	margin-top: 20px;
	text-align: center;
}
.plan-list-link{
	display: flex;
	justify-content: center;
	align-items: center;
	width: min(calc(100%),420px);
	margin: 40px auto 0;
	height: 60px;
	background: #357546;
	color: #fff;
	font-size: 2.8rem;
}
.detail-sub-caption{
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1.5;
}
.detail-plan .hanrei {
	margin-top: 80px;
	width: 100%;
	justify-content: center;
	font-size: 1.2rem;
	gap: 10px;
}
.hanrei img {
	height: 12px;
	width: auto;
	margin: 0 50px;
}
@media screen and (max-width: 767px){
	.detail-plan-heading{
		padding-bottom: 10px;
		margin-bottom: 30px;
		gap: 0px;
	}
	.detail-plan-layout{
		font-size: 1.6rem;
		width: 100%;
	}
	.detail-plan-layout > .small-text{
		margin-top: 10px;
	}
	.detail-plan .hanrei{
		margin-top: 40px;
		font-size: 1rem;
	}
	.hanrei img{
		height: 10px;
	}
	.detail-plan-caption{
		text-align: left;
	}
	.plan-list-link{
		font-size: 2.2rem;
	}
	.plan-sub-layout{
		font-size: 1.2rem;
	}
	.detail-plan-layout + .detail-plan-layout {
		margin-left: 0;
	}
	.detail-sub-caption{
		margin-top: 10px;
		font-size: 1.2rem;
	}
	.detail-plan .hanrei {
		margin-top: 40px;
		font-size: 1rem;
	}
	.hanrei img {
		height: 10px;
	}
}

.detail-plan .mv-anker-btn{
	display: inline-block;
	padding: 16px 0;
	box-sizing: border-box;
	font-size: 3rem;
	color: #357546;
	background: #fff;
	text-align: center;
	border-radius: 6px;
	transition: .4s;
  box-shadow: 0 5px 0 #357546;
}
.detail-plan .mv-anker-btn::after{
	content: "";
	margin: 8px auto 0;
	display: block;
	width: 7px;
	height: 7px;
	border-top: solid 2px #357546;
	border-right: solid 2px #357546;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.detail-plan .mv-anker-btn .inline-block{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 54px;
	line-height: 1.3;
}
.detail-plan .mv-anker-btn:hover{
	background: #357546;
	color: #fff;
	transform: translate3d(0, 5px, 0);
  box-shadow: none;
}
.detail-plan .mv-anker-btn:hover::after{
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}
@media screen and (max-width: 767px){
	.detail-plan .mv-anker-btn{
		display: flex;
		flex-flow: column;
		align-items: center;
   		padding: 4vw 0;
		font-size: 4vw;
		border-radius: 6px;
	}
	.detail-plan .mv-anker-btn .inline-block{
		height: 13vw;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1.3;
	}
	.detail-plan .mv-anker-btn:hover{
		transform: translate3d(0, 3px, 0);
	}
}
.casbee-img {
	margin: 0 auto 80px;
	max-width: 500px;
	width: 100%;
}
.plan .inner-big{
	max-width: 1200px;
	width: calc(100% - 64px);
}
@media screen and (max-width: 767px){
	.plan .inner-big{
		padding: 40px 0;
		width: calc(100% - 32px);
	}
}
/*--------------------------------
loan
--------------------------------*/
.loan-trouble{
	position: relative;
	 background: url(../images/loan/bg.webp) no-repeat center center;
	 background-size: cover;
}
.loan-trouble .inner-big{
	background: #fff;
}
.loan .inner-big {
    width: min(calc(100% - 140px),1480px);
}
.loan .loan-trouble .inner-big{
	padding: 80px 16px;
}
.loan-trouble-heading{
	width: min(100%,962px);
	margin: 70px auto 50px;
	padding: 40px 0;
	font-size: 5.3rem;
	border-top: 3px solid #36787E;
	border-bottom: 3px solid #36787E;
}
.loan-trouble-note{
	padding: 44px 16px;
	background: #36787E;
	width: min(100%,962px);
	margin: 0 auto 50px;
	font-size: 3.5rem;
	color: #fff;
	border-radius: 18px;
	line-height: 1.5;
}
.loan-trouble-note .small-text{
	display: block;
}
.loan-trouble .img-wrapper{
	width: min(calc(100% - 180px),1300px);
	margin: 0 auto;
}
.loan-trouble-copy{
	border-radius: 40px;
	padding: 30px 0;
	font-size: 4rem;
	background: #36787E;
	color: #fff;
	width: min(100%,962px);
	margin: 0 auto 70px;
	line-height: 1.5;
}
.loan-bg{
	padding: 120px 0;
	background: url(../images/loan/bg02.webp) no-repeat center center;
	background-size: cover;
}
.general-section.loan-bg .inner{
	max-width: 962px;
}
.loan-heading{
	display: inline-block;
	line-height: 1.5;
	font-size: 4rem;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #707070;
	color: #36787E;
	font-feature-settings: "palt";
}
.loan-note{
	font-size: 2rem;
	line-height: 2.5;
}
.loan-point-heading{
	padding: 40px 16px;
	margin: 70px 0 50px;
	background: #36787E;
	font-size: 4rem;
	color: #fff;
	line-height: 1.5;
}
.loan-point-heading .small-text{
	display: block;
}
.loan-point-text{
	margin: 30px 0 20px;
}
.loan-heading .small-text{
	display: block;
	font-size: 2rem;
}
.loan-feature{
	margin: 80px 0 200px;
}
.loan-feature-heading{
	border-bottom: none;
	color: #000;
}
.loan-point-note{
	margin: 40px 0 120px;
	background: #36787E;
	color: #fff;
	padding: 30px 0;
	font-size: 3rem;
	line-height: 1.2;
}
.loan-point-note .large-text{
	font-size: 4rem;
	margin: 0 0 200px;
}
.loan-life-img{
	margin-top: 87px;
}
.loan-voice{
	text-align: left;
}
.loan-voice-heaading{
	font-size: 3.5rem;
	color: #36787E;
	display: flex;
	align-items: center;
	gap: 28px;
	line-height: 1.2;
	margin-bottom: 37px;
}
.loan-voice-heaading img{
	width: 125px;
}
.loan-voice-note{
	font-size: 2.5rem;
	line-height: 2;
}
.loan-voice-item + .loan-voice-item{
	margin-top: 112px;
}
.loan-arrow{
	position: absolute;
	width: min(100%,170px);
	bottom: -144px;
	left: 50%;
	transform: translate(-50%,0);
}
@media screen and (max-width: 767px){
	.loan .inner-big {
		width: min(calc(100% - 32px),1480px);
	}
	.loan .loan-trouble .inner-big{
		padding: 32px 16px;
	}
	.loan-trouble-heading{
		margin: 40px auto 30px;
		padding: 15px 0;
		font-size: 2.4rem;
	}
	.loan-trouble-note{
		padding: 22px 0px;
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
	.loan-trouble-note .small-text{
		font-size: 1.4rem;
	}
	.loan-trouble .img-wrapper{
		min-width: 100%;
	}
	.loan-trouble-copy{
		padding: 15px 0;
		border-radius: 20px;
		font-size: 2rem;
		margin: 45px 0 60px;
	}
	.loan-arrow{
		width: min(100%,80px);
		bottom: -70px;
	}
	.loan-bg{
		padding: 50px 0 0;
	}
	.loan-heading{
		font-size: 2.7rem;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.loan-note{
		font-size: 1.6rem;
		text-align: justify;
		line-height: 2;
	}
	.loan-note .inline-block{
		display: inline;
	}
	.loan-point-heading{
		padding: 20px 0;
		margin: 30px 0;
		font-size: 2rem;
	}
	.loan-point-heading .small-text{
		font-size: 1.5rem;
	}
	.loan-feature{
		margin: 20px 0 50px;
	}
	.loan-heading .small-text{
		font-size: 1.2rem;
	}
	.loan-point-note{
		margin: 35px 0 40px;
		padding: 15px 0;
		font-size: 1.5rem;
	}
	.loan-point-note .large-text{
		font-size: 2.7rem;
	}
	.loan-life-img{
		margin-top: 40px;
	}
	.loan-life-img + .caption{
		text-align: left;
	}
	.loan-voice-heaading{
		flex-direction: column;
		font-size: 2rem;
		line-height: 1.5;
		text-align: center;
		margin-bottom: 15px;
		padding-bottom: 15px;
		border-bottom: 1px solid #707070;
		gap: 14px;
	}
	.loan-voice-note{
		font-size: 1.6rem;
	}
	.loan-voice-item + .loan-voice-item{
		margin-top: 30px;
	}
	.loan-point-img{
		margin-bottom: 20px;
	}
}
.inner-big {
	padding: 80px 0;
	margin: 0 auto;
	width: min(calc(100% - 32px), 1480px);
}
.plan-mv-copy {
	position: absolute;
	bottom: 2vw;
	left: 2vw;
	font-size: 3vw;
	text-shadow: 0 0 3px #707070;
}
@media screen and (max-width: 767px) {
	.plan-mv-copy {
			left: 24px;
			bottom: 12vw;
			width: 100%;
			font-size: 8vw;
	}
}
/*--------------------------------
video gallery
--------------------------------*/
.video-leaf-01{
	position: absolute;
	width: 7.5vw;
	max-width: 135px;
	left: 0;
	top: -10%;
}
.video-leaf-02{
	position: absolute;
	width: 17vw;
	max-width: 320px;
	right: -10%;
	bottom: 20%;
}
.video-leaf-03{
	position: absolute;
	width: 15vw;
	max-width: 300px;
	right: -13%;
	bottom: 20%;
}
.video-bg{
	background: url(../images/video/video-bg.webp) no-repeat center center;
	background-size: cover;
	border-bottom: 1px solid #ccc;
}
.video-bg .general-section .inner{
	background: #fff;
	max-width: 1480px;
	width: calc(100% - 140px);
}
.video-bg .min-inner{
	width: min(calc(100% - 32px),962px);
	margin: 0 auto;
}
.video-bg .page-btn{
	background: #0E7741;
	border-radius: 40px;
	box-shadow: none;
	color: #fff;
}
.first-button, .second-button {
	color: #FFF67F;
	padding-left: 20px;
	padding-right: 42px;
	transition: .4s;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	font-weight: normal;
}
.second-button {
	position: absolute;
	transform: translateY(100%);
}
.page-btn:hover .first-button {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(-100%);
}
.video-bg .first-button,
.video-bg .second-button,
.video-bg:hover .first-button{
	color: #fff;
	transform: translateY(0);
	padding: 0;
}
.video-bg .page-btn:hover{
	transform: translate(-50%, -50%) scale(1.1,1.1);
}
.gallery-container .video-item {
    counter-increment: num;
}
.section-sub-title {
	display: block;
	font-family: "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 3.4rem;
	position: relative;
	margin: 0 0 32px;
	padding: 0 0 10px;
	font-weight: 600;
	border-bottom: 1px solid;
	text-align: center;
}
@media screen and (max-width: 767px){
	.video-leaf-01{
		width: 11vw;
		top: -70%;
	}
	.video-leaf-02{
		width: 23vw;
		right: -5%;
		bottom: 18%;
	}
	.video-leaf-03{
		position: absolute;
		width: 15vw;
		right: 6%;
		bottom: 10%;
	}
	.video-bg .general-section .inner{
		width: calc(100% - 64px);
	}
	.video-bg .section-sub-title{
		font-size: 2rem;
		font-feature-settings: "palt";
	}
	.video-bg .secondary-heading{
		font-size: 2rem;
	}
}
/* .playlist + .playlist .inner{
	border-top: 1px solid #ccc;
} */
.video-title-label{
	margin-bottom: 20px;
	padding: 8px 16px;
	width: 100%;
	display: block;
	background: #D9924B;
	font-size: 1.8rem;
	color: #fff;
	text-align: center;
}
.full-video-wrap{
	padding-bottom: 32px;
	border-bottom: 3px solid #ccc;
}
.full-video{
	cursor: pointer;
	transition: all .2s ease-out;
}
.full-video .btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.full-video:hover{
	filter: brightness(1.1);
}
@media screen and (max-width: 767px){
	.full-video{
		width: 100%;;
	}
	.video-gallery .plan-mv-copy{
		font-size: 7vw;
		line-height: 1.5;
	}
}
.gallery-container{
	/* margin: 0 -16px; */
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3,1fr);
}
.video-item .note{
	padding-left: 18px;
	position: relative;
}
.video-item .note::before{
	width: 16px;
	height: 16px;
	position: absolute;
	top: .3em;
	left: 0;
	content: counter(num);
	border: 1px solid;
	border-radius: 30px;
	text-align: center;
	font-size: 1.3rem;
	line-height: 15.5px;
    text-indent: -0.5px;
}
.playlist-border{
	border-top: 3px solid #ccc;
}
@media screen and (max-width: 767px){
	.gallery-container{
		gap: 16px;
		grid-template-columns: 1fr;
	}
	.video-item .note{
		font-size: 1.4rem;
		line-height: 1.4;
	}
}
.youtube-wrap .secondary-heading{
	margin-bottom: 0;
	padding-bottom: .6em;
	display: inline-block;
	color: #0E7741;
	border-bottom: 1px solid #0E7741;
}
.youtube-logo{
	display: block;
	margin: 40px auto 0;
	max-width: 350px;
	width: 90%;
}
.chapter{
	cursor: pointer;
	transition: all .2s ease-out;
}
.chapter::before{
	width: 80px;
	height: 80px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	background: #7bb556;
	content: "";
	border-radius: 50px;
	transform: translate(-50%, -50%);
	transition: all .2s ease-out;
}
.chapter::after{
	width: 0;
	height: 0;
	display: block;
	position: absolute;
	top: 50%;
	left: 51%;
	z-index: 1;
	content: "";
	border-style: solid;
	border-width: 15px 0 15px 26.0px;
	border-color: transparent transparent transparent #fff;
	border-radius: 4px;
	transform: translate(-50%, -50%);
	transition: all .2s ease-out;
}
.chapter:hover{
	filter: brightness(1.2);
}
.chapter:hover::before,
.chapter:hover::after{
	transform: translate(-50%, -50%) scale(1.1);
}
.youtube-section{
	margin-top: -80px;
}
@media screen and (max-width: 767px){
	.chapter::before{
		width: 40px;
		height: 40px;
	}
	.chapter::after{
		border-width: 7px 0 7px 12px;
		border-radius: 2px;
	}
	.youtube-section{
		margin-top: -40px;
	}
	.youtube-section .note{
		font-size: 1.1rem;
	}
	.youtube-logo{
		margin-top: 10px;
		width: 50%;
	}
}

/*--------------------------------
map
--------------------------------*/
.sub-title{
	font-size: clamp(1.2rem, 1.4vw ,1.6rem);
}
.map-btn {
	margin: 32px auto 0;
	width: 300px;
	height: 50px;
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #357546;
	position: relative;
	gap: 12px;
}
.map-icon {
	display: inline-block;
	width: 14px;
}
@media screen and (max-width: 767px) {
	.map .primary-heading{
		font-size: 6.4vw;
	}
}
.map .station-box{
	position: relative;
}
@media screen and (max-width: 767px) {
	.map .station-box{
		margin-top: 14vw;
	}
}
.map .icon-station{
	position: absolute;
	top:-85px;
	left: -50px;
	max-width: 170px;
	width: 14vw;
	z-index: 3;
}
@media screen and (max-width: 1110px) {
	.map .icon-station{
		top:-60px;
		left: -20px;
		z-index: 3;
	}
}
@media screen and (max-width: 767px) {
	.map .icon-station{
		width: 30vw;
		max-width: none;
		top: -22vw;
        left: -2vw;
	}
}
.map .car-box{
	padding-top: 80px;
}
@media screen and (max-width: 767px) {
	.map .car-box{
		padding-top: 50px;
	}
}
@media screen and (max-width: 767px) {
	.map-slider-inner{
		z-index: 2;
	}
	.map .map-slide{
		position: relative;
		border: solid 1px #0E7741;
		border-top: none;
	}
	.map .map-slide{
		position: relative;
	}
	.map .station-ttl{
		position: absolute;
		top: 0;
		z-index: 1;
	}
	.map .map-list .slick-prev{
		right: auto;
		left: 8px;
		background: url(../images/map/prev.svg) no-repeat center center;
		background-size: contain;
	}
	.map .map-list .slick-next{
		background: url(../images/map/next.svg) no-repeat center center;
		background-size: contain;
	}
	.map .map-list .slick-prev,
	.map .map-list .slick-next{
		top: 44%;
		width: 9vw;
		height: 9vw;
	}
	.map .map-list .slick-prev:before,
	.map .map-list .slick-next:before{
		display: none;
	}
	.map .map-list .slick-disabled{
		opacity: 0;
	}
}

/*--------------------------------
state
--------------------------------*/
.gothic{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.disabled {
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}
.none{
	opacity: 0.3;
	cursor: default;
	pointer-events: none;
}
.is-none{
	display: none;
}
.coming-soon{
	box-shadow: none;
	pointer-events: none;
}
.is-fv {
	opacity: 0;
	animation-fill-mode: both;
	visibility: hidden;
}
.is-fixed{
	overflow: hidden;
}
.is-kerning {
	font-feature-settings: "palt";
}
.is-light{
	color: #fff;
}
.is-key{
	color: #0E7741;
}
.is-key2{
	color: #053F29;
}
.is-dark{
	color: #2c2c2c;
}
.is-gld{
	color: #B39B4E;
}
.is-bug{
	color: #5D161B;
}
.is-bug2{
	color: rgba(68, 0, 0, 0.56);
}
.is-red{
	color: #E6211A;
}
.is-shadow{
	text-shadow: 0 0 1px rgba(0,0,0,.8), 0 0 4px rgba(0,0,0,.4);
}
.has-border {
	box-shadow: 0 0 2px 0 rgb(0 0 0 / 40%);
}
.line-wide{
	line-height: 2.4;
}
.letter-wide{
	letter-spacing: .1em;
}
.is-alert{
	color: #c90000;
}
.unscrollable{
	overflow-y: hidden;
}
.mt-80{
	margin-top: 80px;
}
.common-bg{
	background: url(../images/common/common-bg.webp) no-repeat top center;
	background-size: cover;
}
@media screen and (max-width: 767px){
	.sp-none{
		display: none;
	}
	.slick-slide img.sp-none{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.pc-none{
		display: none;
	}
	.slick-slide img.pc-none{
		display: none;
	}
}