@charset "UTF-8";

/* #header
-------------------------------------------------- */
#header{
  width: 100%;
  padding: 0 30px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
}

#header .logo{
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 4px;
	position: relative;
}

#header .logo h1 a{
	display: block;
	color: #333;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1;
}

#header .logo h1 a::before {
	content:"";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	pointer-events:auto;
	background-color:rgba(0,0,0,0);
}

#header .logo .img{
	width: 150px;
  display: block;
	aspect-ratio: 651 / 199;
	background: linear-gradient(10deg, #005285 0%, #44cffd 100%);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-image: url(../img/logo.svg);
	mask-size: contain;
}

#hamburger{
	display: none;
}

#nav{
	display: flex;
	align-items: center;
}

.gnav{
	display: flex;
	align-itens: center;
	margin-right: 30px;
}

.gnav li a{
	display: block;
	font-size: 1.6rem;
	padding: 0 15px;
}

.header_res{
	margin-left: 15px;
}

.header_res a{
	padding: 0 20px;
	color: #fff;
	background: #ff7702!important;
	border: 2px solid #ff7702;
}

.header_res a:hover{
	color: #ff7702;
	background: #fff!important;
}

.btn_header{
	display: grid;
	grid-template-columns: 32px 32px;
	gap: 15px;
	align-itens: center;
}

.btn_header li a span{
	display: none;
}

@media screen and (max-width: 767px) {
	#header{
		padding: 0 5vw;
	  height: 60px;
	  box-shadow: 0 16px 15px -15px rgba(53, 47, 47, 0.15);
	}
	#header .logo{
		gap: 3px;
	}
	#header .logo h1 a{
		font-size: 2vw;
	}
	#header .logo .img{
		width: 110px;
	}
	#hamburger {
		display: block;
	  width: 38px;
	  height: 38px;
	  background-color: transparent;
	  border-color: transparent;
	  position: fixed;
	  top: 10px;
	  right: 10px;
		cursor: pointer;
	  z-index: 9999;
	}
	#hamburger span {
	  width: 38px;
	  height: 2px;
	  background-color: #02599e;
	  position: relative;
	  transition: ease .4s;
	  display: block;
	}
	#hamburger span:nth-child(1) {
	  top: 0;
	}
	#hamburger span:nth-child(2) {
	  margin: 8px 0;
	}
	#hamburger span:nth-child(3) {
	  top: 0;
	}
	#nav.active {
	  transform: translateX(0);
	}
	#hamburger.active span:nth-child(1) {
	  top: 5px;
	  transform: rotate(45deg);
	}
	#hamburger.active span:nth-child(2) {
	  opacity: 0;
	}
	#hamburger.active span:nth-child(3) {
	  top: -15px;
	  transform: rotate(-45deg);
	}
	#nav{
		display: block;
	  position: absolute;
	  right: 0;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100vh;
 		 min-height: 100svh;
		text-align: center;
  	padding: 30vw 5vw 10vw 5vw;
	  transform: translateX(100%);
	  background-color: #fff;
	  transition: ease .4s;
	}
	.gnav{
		display: block;
		margin-right: 0;
	}
	.gnav li{
		margin: 10px 0;
	}
	.gnav li a{
		font-size: 2rem;
		padding: 15px;
	}
	.gnav li.header_res{
		width: 240px;
		margin: 30px auto 0 auto;
	}
	.gnav li.header_res a{
		border-radius: 5px;
	}
	.btn_header{
		margin-top: 60px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
		gap: 30px;
	}
	.btn_header li{
		flex: 0 1 50px;
	}
}

/* #footer
-------------------------------------------------- */
#footer{
	padding: 10px;
	text-align: center;
	color: #fff;
	background: linear-gradient(to right, #06a3b4, #02599e);
}

#footer small{
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}

#footer_fit{
	display: none;
}

@media screen and (max-width: 767px){
	#footer{
		padding: 5px;
		margin-bottom: 50px;
	}
	#footer small{
		font-size: 3vw;
		letter-spacing: 0;
	}
	#footer_fit{
		width: 100%;
		display: grid;
		grid-template-columns: 30vw 1fr 60px 60px;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 100;
		border-top: 1px solid #02599e;
		border-bottom: 1px solid #02599e;
	}
	#footer_fit > *:nth-child(2){
		border-left: 1px solid #02599e;
		border-right: 1px solid #02599e;
	}
	#footer_fit > * a{
		height: 50px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
		text-align: center;
		padding: 0 17px 0 12px;
		font-size: 4vw;
		color: #02599e;
		background: #fff;
	}
	#footer_fit > * a img{
		width: 7vw;
		max-width: 40px!important;
		display: inline-block;
		vertical-align: middle;
		margin: 0 8px 0 0;
	}
	#footer_fit > *.sns_icon a{
		padding: 0 5px;
	}
	#footer_fit > *.sns_icon a img{
		width: 90%;
		display: block;
		margin: 0 auto;
	}
}

/* 
-------------------------------------------------- */
.sec{
	text-align: center;
	padding: 80px 40px;
}

.bg{
	background: #f1f2f6;
}

.bg2{
	background: rgba(2,89,158,0.3);
}


.inner{
	width: min(100%, 1200px);
	margin: 0 auto;
}

.page_body{
	padding: 80px 40px;
}

.page_body .ttl{
	text-align: center;
	line-height: 1;
	margin: 0 0 50px 0;
}

.ttl span{
	letter-spacing: 0.05em;
	font-size: 3.4rem;
	color: #005285;
	display: inline-block;
  background: linear-gradient(10deg, #005285 0%, #44cffd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec h2{
	margin: 0 0 50px 0;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.05em;
	font-size: 3.4rem;
	color: #005285;
	display: inline-block;
  background: linear-gradient(10deg, #005285 0%, #44cffd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px){
	.page_body,
	.sec{
		padding: 20vw 5.3vw;
	}
	.page_body .ttl span{
		font-size: 2.4rem;
	}
	.sec h2{
		margin: 0 0 50px 0;
		font-size: 2.4rem;
	}
	.sp_l{
		text-align: left;
	}
}

/* TOPページ
-------------------------------------------------- */
#mv{
	max-width: 1000px;
	margin: 0 auto;
}@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}

.top_information{
	width: min(100%, 500px);
	text-align: center;
	margin: 30px auto;
}

.top_information a{
	display: block;
	padding: 20px;
	border: 2px solid #025d98;
	position: relative;
}

.top_information a::before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-top: 1px solid #025d98;
  border-right: 1px solid #025d98;
  transform: rotate(45deg);
}

.menu_information{
	width: min(100%, 700px);
	text-align: left;
	margin: 0 auto 40px auto;
}

.menu_information .tt{
	text-align: center;
	color: #fff;
	background: #025d98;
	border-radius: 10px 10px 0 0;
}

.menu_information .box{
	padding: 20px;
	border: 1px solid #025d98;
}

.info_note{
	color: #dc004c;
	margin-top: 15px;

}

@media screen and (max-width: 767px){
	.top_information{
		width: auto;
		margin: 20px ;
	}
	.top_information a{
		padding: 10px;
	}
}

#concept{
	padding: 100px 40px; 
	background: linear-gradient(to right, #06a3b4, #02599e);
}

#concept .txt{
	text-align: center;
	font-weight: bold;
	line-height: 2.6;
	padding: 0;
	color: #fff;
}

#concept .img{
	display: block;
	width: min(100%, 800px);
	margin: 60px auto 0 auto;
}

@media screen and (max-width: 767px) {
	#concept{
		padding: 0;
	}
	#concept .txt{
		font-size: 4vw;
		padding: 10vw 5.3vw;
	}
	#concept .img{
		margin: 0;
	}
}

#menu{
	position: relative;
	overflow: hidden;
}

#menu::before,
#menu::after{
	content: "";
	display: block;
	aspect-ratio: 195 / 246;
	background: url(../img/bg_line2.svg) no-repeat 0 0 / contain;
	position: absolute;
	z-index: -1;
	opacity: 0.2;
}

#menu::before{
	width: 300px;
	aspect-ratio: 195 / 246;
	background: url(../img/bg_line2.svg) no-repeat 0 0 / contain;
	bottom: -2%;
	left: -2vw;
}

#menu::after{
	width: 300px;
	top: -2%;
	right: -2vw;
	transform: rotate(180deg);
}

@media screen and (max-width: 1500px){
	#menu::before,
	#menu::after{
		width: 25vw;
	}
}
@media screen and (max-width: 767px){
	#menu::before{
		width: 60vw;
		left: -5vw;
		bottom: -6vw;
	}
	#menu::after{
		width: 80vw;
		opacity: 0.1;
		top: -2%;
		right: -4vw;
	}
}

.tb{
  width: min(100%, 600px);
  line-height: 1.5;
	margin: 0 auto;
	border-top: 1px dashed #A3A3A3;
}

.tb th, .tb td{
  padding: 30px;
	font-weight: normal;
  text-align: left;
  vertical-align: middle;
  background: #fff;
  border-bottom: 1px dashed #A3A3A3;
}

.tb th{
  white-space: nowrap;
}

.tb td{
	text-align: right;
}

@media screen and (max-width: 767px) {
	.tb{
		border-top: none;
		width: 100%;
		font-size: 1.8rem;
		text-align: center;
	}
	.tb tr{
		display: block;
	}
  .tb tr + tr {
		margin-top: 5vw;
	}
  .tb th, .tb td{
		display: block;
		width: auto;
		border: none;
		text-align: center;
	}
	.tb th{
		background: #f4f4ed;
		padding: 10px;
	}
	.tb td{
		font-size: 2.4rem;
		padding: 20px 2vw 20px 2vw;
		border: 3px solid #f4f4ed;
	}
}

.business_hours{
	font-size: 2rem;
	font-weight: bold;
	margin: 20px 0 60px 0;
}

.business_hours span{
	display: block;
	font-size: 5rem;
}
@media screen and (max-width: 767px){
	.business_hours span{
		font-size: 7vw;
	}
}
.btn_list{
	width: min(100%, 600px);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
  gap: 6%;
  text-align: center;
}

.btn_list li a{
	display: block;
	line-height: 1;
	padding: 20px 10px;
	color: #444;
	background: #fff;
	border-radius: 10px;
	transition: 0.2s ease-in-out;
	box-shadow: 0 8px 15px -3px rgb(0 0 0 / 15%), 0 0 3px rgb(0 0 0 / 10%);
}

.btn_list li a:hover{
	box-shadow: 0 8px 15px -3px rgb(0 0 0 / 15%), 0 0 3px rgb(0 0 0 / 10%);
	transform: translateY(-4px);
}

.btn_list li a img{
	display: block;
	width: 60px;
	margin: 0 auto;
}

.btn_list li a span{
	display: block;
	font-size: 1.6rem;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.business_hours{
		font-size: 1.8rem;
		margin: 20px 0 60px 0;
	}
	.btn_list{
		width: 100%;
	  gap: 3%;
	}
	.btn_list li a{
		padding: 15px 10px;
	transform: translateY(0)!important;
	}
	.btn_list li a img{
		width: 40px;
	}
	.btn_list li a span{
		font-size: 1.5rem;
	}
}

/* Alelia
------------------------------------------------------------- */
.amelia-app-booking #amelia-booking-wrap #am-step-booking .am-confirm-booking .am-confirm-booking-form .am-confirmation-booking-details, .amelia-app-booking #amelia-booking-wrap .am-step-booking-catalog .am-confirm-booking .am-confirm-booking-form .am-confirmation-booking-details {
	justify-content: flex-start!important;
}
.am-confirmation-booking-details div{
		margin-right: 20px!important;
		padding: 10px 20px!important;
		font-weight: bold!important;
		border: 1px solid #0454a2!important;
		border-radius: 5px;
}
.am-confirmation-booking-details div p.am-semi-strong{
	font-size: 2rem!important;
	font-weight: bold!important;
}
.am-confirmation-booking-details div:nth-child(1),
.am-confirmation-booking-details div:nth-child(4){
	display: none!important;
}
.am-confirmation-booking-cost{
	display: none!important;
}
.am-front-texarea.el-textarea::after{
	content: "「よもぎ蒸し＋マッサージ」「よもぎ蒸し＋治療」も可能です。\Aご希望の場合はこちらに内容をご記入ください。";
	display: block;
	white-space: pre;
	line-height: 1.4;
	color: red;
	margin-top: 15px;
}






