@charset "UTF-8";

/* ===========================
main
============================*/
.main {
	overflow: hidden;
}

/* mainTopics */
.mainTopics::before {
	content: "";
	background-image: url(../images/topLeaves01sp.svg);
	display: block;
	width: 72vw;
	min-width: 266px;
	height: 40.5vw;
	background-repeat: no-repeat;
	position: absolute;
	left: 0px;
	top: -1%;
	z-index: 70;
}

.mainTopics {
	display: flex;
	padding: 90px 0px 50px;
	flex-direction: column;
	align-items: center;
	background: var(--maingreen,linear-gradient(123deg,rgba(27, 118, 83, 0.3) 18.55%,rgba(77, 144, 82, 0.27) 27.69%,rgba(177, 195, 80, 0.2) 98.99%));
	position: relative;
}

.mainTopics::after {
	content: "";
	background-image: url(../images/topLeaves02sp.svg);
	display: block;
	width: 201px;
    height: 118px;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 41%;
	z-index: 70;
}

/* logo loading*/
#splash {
	position: absolute;
	width: 67.4vw;
    height: 37.7vw;
	z-index: 50;
	text-align: center;
	background: rgba(255, 255, 255, 0.7);
	margin: 90px 16.2% 0;
	border-radius: 18px;
}

.container {
	margin: 0 auto;
	display: inline-flex;
	flex-direction: column;
}

#splash_logo {
	position: absolute;
	top: 49.5%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash_logo img {
	width: 65vw;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* logo loading */

.mainVideo {
	width: 67vw;
	border-radius: 20px;
	box-shadow: 2px 4px 5px 0px rgba(232, 224, 219, 0.9);
}

.video__wrapper::after {
	position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 8;
	width: 67vw;
    height: 37.7vw;
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.video__wrapper {
	display: flex;
	justify-content: center;
	position: relative;
}

.mainCaption {
	text-shadow: 2px 4px 5px #c9bfb8;
	font-family: "Hina Mincho";
	font-size: 1.8rem;
	letter-spacing: 10.8px;
	margin: 64px auto 0;
}

.mainCaptiontop {
	margin-left: 16px;
}

.mainCaptionmiddle {
	margin-left: 90px;
}

.mainCaptionunder {
	margin-left: 113px;
}

/* mainTopics pc */
@media screen and (min-width: 769px) {
	.mainTopics::before {
		background-image: url(../images/topLeaves01pc.svg);
		width: 49.4vw;
        height: 23.3vw;
        top: -2%;
        z-index: 70;
        background-size: cover;
    }

	.mainTopics::after {
		background-image: url(../images/topLeaves02pc.svg);
		width: 43vw;
        height: 23.3vw;
        top: 48%;
        z-index: 70;
        background-size: cover;
	}

	#splash {
		width: 58.1vw;
        height: 32.7vw;
        margin: 119px 20.6% 0;
        border-radius: 20px;
	}

	#splash_logo img {
		width: 24vw;
	}

	.mainTopics {
		padding: 120px 0px 60px;
	}

	.video__wrapper::after {
		width: 58vw;
        height: 32.8vw;
	}	

	.mainVideo {
		width: 58vw;
	}

	.mainCaption {
		font-size: 3.2rem;
		line-height: 1.6;
		letter-spacing: 19.2px;
		margin: 60px auto 0;
	}

	.mainCaptiontop {
		margin-left: 0;
	}

	.mainCaptionmiddle {
		margin-left: 234px;
	}

	.mainCaptionunder {
		margin-left: 0;
	}
} /* pc 769px */

/* Section */
.fadeInTrigger{
	opacity: 0;
}

.section__img {
	width: 235px;
	height: 156px;
	margin: 0 18%;
}

.section__aboutSalon,
.section__menu {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.section__topic--abousSalon,
.section__topic--menu {
	font-family: "Hina Mincho";
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 2px;
	margin: 28px 24% 0;
	text-transform: uppercase;
	position: relative;
}

.section__topic--abousSalon::after {
	left: -21%;
}

.section__topic--menu::after {
	left: -111%;
}

.subCatch {
	width: 290px;
    margin: 30px auto 0;
}

.subCatch--menu {
	margin: 30px auto 0;
}

/* img animation */
.img-wrap {
	overflow: hidden;
	position: relative;
}
	
.img-wrap::before {
	animation: img-wrap 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	background: #fff;
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
	
@keyframes img-wrap {
	100% {
		transform: translateX(100%);
	}
}

.img-wrap {
	opacity: 0;
}
	
.img-animation {
	animation: img-opacity 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	overflow: hidden;
	position: relative;
	margin-top: 3px;
}
	
.img-animation::before {
	animation: img-animation 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	background: #fff;
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
	
@keyframes img-opacity {
	100% {
		opacity: 1;
	}
}
	
@keyframes img-animation {
	100% {
		transform: translateX(100%);
	}
}	  
/* /img animation */

.section__description--aboutSalon {
	position: relative;
}

.section__description {
	text-align: center;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 1.2px;
	margin-top: 32px;
}

.more__wrapper {
	width: 119px;
	height: 27px;
	display: inline-flex;
	padding-left: 8px;
	justify-content: center;
	border-radius: 5px;
	background: rgba(177, 195, 80, 0.34);
	margin: 48px 34% 0;
}

.btn__more {
	text-align: center;
	font-size: 1.5rem;
	letter-spacing: 1.2px;
}

.btn__more::after {
	content: " 》";
}

.btn__more:hover {
	color: rgba(79, 98, 72, 0.6)
}

.section__topic--menu {
	margin: 28px 38.2% 0;
}

.section__description--menu {
	position: relative;
}

/* section pc */
@media screen and (min-width: 769px) {
	.section__topic--abousSalon::after,
	.section__topic--menu::after {
		left: calc(50% - 16vw);
	}
	
	.section--menu {
		padding: 110px 8.3% 110px 0;
		flex-direction: row;
		justify-content: space-between;
	}

	.section--aboutSalon {
		padding: 110px 0 110px 8.3%;
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.section__img {
		width: 44vw;
		height: auto;
	}

	.section__img--aboutSalon {
		margin: 116px 0 20px auto;
	}

	.section__img--menu {
		margin: 116px auto 20px 0;
	}

	.section__aboutSalon,
	.section__menu {
		text-align: center;
		padding: 0 43px;
	}

	.section__topic--abousSalon,
	.section__topic--menu {
		font-size: 3.2rem;
		letter-spacing: 3.2px;
		/* kari */
		margin: 0;
	}

	.subCatch {
		width: 389px;
		margin: 39px 0 0 -7%;
	}

	.subCatch--aboutSalon {
		margin: 45px 0 0 0;
        width: 384px;
	}

	.section__description {
		font-size: 1.8rem;
		line-height: 1.8;
		letter-spacing: 1.44px;
	}

	.section__description--aboutSalon{
		margin-top: 52px;
	}

	.section__description--menu {
		margin-top: 48px;
	}

	.more__wrapper {
		width: 137px;
		height: 32px;
		margin: 32px auto 0;
	}

	.btn__more {
		font-size: 18px;
		letter-spacing: 1.44px;
	}

	.btn__more::after {
		font-size: 1.6rem;
		letter-spacing: 1px;
	}
} /* pc 769px */

/* aboutMassage */
.massageDescription__wrapper {
	padding-left: 5px;
	background: rgba(76, 169, 182, 0.4);
	margin: 34px 0 0 20%;
}

.massage__description {
	font-family: "Hina Mincho";
	font-size: 1.6rem;
	line-height: 1.5;
}

.btnDescription__wrapper {
	height: 23px;
	padding-left: 5px;
	background: rgba(76, 169, 182, 0.55);
	margin: 4px 0 34px 33.3%;
}

.btn__description {
	font-family: "Hina Mincho";
	font-size: 1.5rem;
	line-height: 1.5;
	cursor: pointer;
}

.btn__description:hover {
    color: rgba(79, 98, 72, 0.6)
}

.btn__description::after {
	content: " 》";
}

/* aboutMassage pc */
@media screen and (min-width: 769px) {
	.massageDescription__wrapper {
		margin: 102px 0 0 39.2%;
		padding-left: 20px;
	}

	.btnDescription__wrapper {
		height: auto;
		padding-left: 20px;
		background: rgba(76, 169, 182, 0.55);
		margin: 4px 0 52px 47.8%;
	}

	.massage__description {
		font-size: 2.4rem;
	}

	.btn__description {
		font-size: 2rem;
	}
} /* pc 769px */

/* sectionCustomerVoice */
.section--customersVoice {
	padding-top: 40px;
	padding-bottom: 90px;
	background: var(--forest,linear-gradient(98deg,rgba(27, 118, 83, 0.3) 21.49%,rgba(40, 125, 83, 0.29) 39.93%,rgba(177, 195, 80, 0.2) 93.97%));
	gap: 60px;
	position: relative;
}

.section--customersVoice::before {
	content: "";
	background-image: url(../images/voiceLeavesSp.svg);
	display: block;
	width: 275px;
	height: 132px;
	position: absolute;
	left: 0px;
    top: 6%;
    z-index: 1;
}

.topic__customersVoice {
	font-family: "Hina Mincho";
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 2px;
}

.review__contents {
	width: 91%;
	height: 540px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	padding: 35px 12.5% 42px;
	position: relative;
}

.customersVoice__img {
	width: 176px;
	height: 132px;
}

.review__customer {
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 18.5px;
}

.review__purpose {
	display: flex;
	padding: 10px 4%;
	margin-top: 9px;
	flex-direction: column;
	border-radius: 5px;
	background: rgba(177, 195, 80, 0.15);
}

.purpose__title {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8rem;
	letter-spacing: 0.96px;
}

.purpose__txt {
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 4px;
}

.review__description {
	font-size: 1.4rem;
	letter-spacing: 0.56px;
	margin-top: 20px;
}

.spanBold {
	font-weight: 700;
}

/* for slider */
.slider {
	width: 100%;
	height: 52vh;
}

.slider-item {
	/* width: 100%;各スライダー全体の横幅を画面の高さいっぱい（100%）にする */
	/* width: 100%; */
	/* width: 300px !important; */
	/* width: 54.92537313vw; */
	width: 65vw;
	height: 351px;
}

.slick-track {
	display: flex;
	gap: 20px;
}

.slick-arrow {
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	width: 33px;
	height: 66px;
	z-index: 1000;
	position: absolute;
	top: 25%;
	translate: 0% -50%;
	cursor: pointer;
}

.slick-arrow--prev {
	background-image: url(../images/arrowLeft.svg);
	left: -19.1%;
	/* Released under the MIT license
	   https://opensource.org/license/mit
	   Copyright WeUI Icon
	 */
}

.slick-arrow--next {
	background-image: url(../images/arrowRignt.svg);
	right: -19.1%;
	/* Released under the MIT license
	   https://opensource.org/license/mit
	   Copyright WeUI Icon
	 */
}

.slick-dots {
	position: relative;
	width: fit-content;
	left: 50%;
    top: 45px;
    translate: -50% 0;
    display: flex !important;
    align-items: center;
    gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.slick-dots li {
	position: relative;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
}

.slick-dots li button {
	font-size: 0;
	border: none;
	background: none;
}

.slick-dots li button:before {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.85);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 9999px;
	border: none;
	content: "" !important;
	width: 10px;
	height: 10px;
}

.slick-dots .slick-active button:before {
	background-color: rgba(27, 118, 83, 0.28);;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
	position: absolute;
	z-index: 3;
	top: 13%;
	cursor: pointer;
	/* outline: none;クリックをしたら出てくる枠線を消す */
	height: 66px;
}

.topic__customersVoice {
	/*戻る矢印の位置と形状*/
	left: 0%;
}

.slick-next {
	/*次へ矢印の位置と形状*/
	right: 0%;
}

/*ドットナビゲーションの設定*/
.slick-dots li {
	display: inline-block;
	margin: 0px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width: 10px;
	height: 10px;
	display: block;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
}

.slick-dots .slick-active button {
	background: rgba(27, 118, 83, 0.28);
}

/* sectionCustomerVoice pc */
@media screen and (min-width: 769px) {
	.section--customersVoice {
		padding: 60px 0 120.5px;
		gap: 48px;
		display: flex;
		flex-direction: column;
	}

	.section--customersVoice::before {
		background-image: url(../images/voiceLeaves.svg);
		width: 69.3vw;
		max-width: 1600px;
        height: 19.7vw;
        left: 0;
        top: 0;
        background-size: contain;
        background-repeat: no-repeat;
	}

	.topic__customersVoice {
		font-size: 3.2rem;
		letter-spacing: 3.2px;
		margin: 0;
	}

	.review__contents {
		width: 60.5%;
		height: 442px;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 21.5px 0;
		max-width: 1000px;
		min-width: 800px;
	}

	.customersVoice__img {
		width: 200px;
		height: 150px;
	}

	.review__customer {
		font-size: 1.8rem;
		line-height: 1.8;
		letter-spacing: 1.44px;
		margin-top: 16px;
	}

	.review__purpose {
		padding: 0;
		margin-top: 16px;
		border-radius: 0;
		align-items: center;
		width: 603px;
		margin: 16px auto 0;
	}

	.purpose__title {
		display: none;
	}

	.purpose__txt {
		font-size: 1.8rem;
		line-height: 1.8;
		letter-spacing: 1.44px;
	}

	.review__description {
		text-align: center;
		font-size: 1.6rem;
		letter-spacing: 0.96px;
		width: 603px;
        margin: 20px auto 0;
	}

	.slick-arrow {
		width: 49px;
		height: 99px;
		top: 16%;
	}

	.slick-arrow--next  {
		right: 0;
	}

	.slick-arrow--prev {
		left: 0;
	}

	.slick-prev,
	.slick-next {
		top: 15%;
		height: 99px;
	}

	.slider-item {
		height: 270px;
		width: 60.4vw;
        max-width: 1000px;
		min-width: 800px;
	}

	.slick-dots {
		top: 6%;
	}

} /* pc 769px */
