@charset "utf-8";

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 62.5%;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  color: #333;
}

/* ----------------------------------------- */
/* position */
/* ----------------------------------------- */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
iframe{
  border:0; vertical-align: bottom;
}

/* ----------------------------------------- */
/* upper */
/* ----------------------------------------- */
.box {
  max-width: 1440px;
  padding-left: min(17rem, 21rem);
  padding-right: min(17rem, 21rem);
  margin: 0 auto;
  position:relative;
}
@media screen and (max-width: 1200px){
  .box {
    padding-left: min(5vw, 17rem);
    padding-right: min(5vw, 17rem);
  }
}
@media screen and (max-width: 680px) {
  .box {
    padding-left: min(3vw, 17rem);
    padding-right: min(3vw, 17rem);
  }
}

/* ----------------------------------------- */
/* column */
/* ----------------------------------------- */
.flex {
  display: flex;
}
.sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.rev {
  flex-direction: row-reverse;
}
.jcc {
  justify-content: center;
}
.jcs {
  justify-content: space-between;
}
.jce {
  justify-content: flex-end;
}
.aic {
  align-items: center;
}
.ais {
  align-items: flex-start;
}
.aie {
  align-items: flex-end;
}
.fwrap {
  flex-wrap: wrap;
}
.block {
  display: block;
}
.iblock {
  display: inline-block;
}
.wfit {
  width: fit-content;
}

/* ----------------------------------------- */
/* margin,padding */
/* ----------------------------------------- */
.mb24 {
  margin-bottom: 2.4rem;
}
.mb30 {
  margin-bottom: 3.0rem;
}
.mb36 {
  margin-bottom: 3.6rem;
}
.mb40 {
  margin-bottom: 4.0rem;
}
.mb64 {
  margin-bottom: 6.4rem;
}
.mb72 {
  margin-bottom: 7.2rem;
}
.mb96 {
  margin-bottom: 9.6rem;
}
.mb100 {
  margin-bottom: 10rem;
}
.mb120 {
  margin-bottom: 12rem;
}
.mb190 {
  margin-bottom: 19rem;
}
.pt120 {
  padding-top: 12rem;
}
@media screen and (max-width: 768px){
  .mb24 {
    margin-bottom: 1.6rem;
  }
  .mb36 {
    margin-bottom: 2rem;
  }
  .mb64 {
    margin-bottom: 3.6rem;
  }
  .mb72 {
  margin-bottom: 4.8rem;
  }
  .mb96 {
    margin-bottom: 5.6rem;
  }
  .mb100 {
    margin-bottom: 3rem;
  }
  .mb120 {
    margin-bottom: 6.4rem;
  }
  .mb190 {
    margin-bottom: 9rem;
  }
  .pt120 {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 576px){
  .mb120 {
    margin-bottom: 4rem;
  }
  .mb30 {
    margin-bottom: 1.5rem;
  }
}


/* ----------------------------------------- */
/* text */
/* ----------------------------------------- */
p {
  font-size: clamp(15px, 2vw, 17px);
}
.title-h2 {
  font-size: clamp(24px, 2.5vw, 3.6rem);
  font-weight: 500;
  background: var(--green);
	-webkit-background-clip:text;
	-webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6.4rem;
}
.title-h2:before {
    content: "";
    display: block;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    margin-bottom: 12px;
}
i {
  font-style: normal;
}
.shippori {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.fw-medium {
  font-weight: 500;
}
.fs32 {
  font-size: 3.2rem;
}
.fs16 {
  font-size: 1.6rem;
}
.fs14 {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px){
  .fs32 {
    font-size: clamp(21px, 3.6vw, 28px);
  }
  .title-h2 {
    margin-bottom: 3.4rem;
    line-height: 1.5;
  }
}

/* 文字揃え */
.tac {
  text-align:center;
}
.tar {
  text-align:right;
}
.tal {
  text-align:left;
}

/* 縦書き */
.wmrl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}


/* ----------------------------------------- */
/* section-line */
/* ----------------------------------------- */
.section-line_right {
  display: flex;
  justify-content: end;
  padding-left: 5vw;
}
.section-line_left {
  display: flex;
  justify-content: start;
  padding-right: 5vw;
}
@media screen and (max-width: 576px){
  .section-line_left {
  margin-bottom: 0 !important;
}
}



/* ----------------------------------------- */
/* color */
/* ----------------------------------------- */
:root{
  --green: linear-gradient(90deg, #75C9BD 0%, #0E9DA8 100%);
  --black: rgba(51,51,51);
	--lgreen: rgba(175,175,175);
  --dgreen: rgba(14,157,168);
}
.green {
  color: var(--green);
}
.dgreen {
  color: var(--dgreen);
}
.black {
  color: var(--black);
}
.lgreen {
  color: var(--lgreen);
}
.white {
  color: #fff;
}

/* ----------------------------------------- */
/* header */
/* ----------------------------------------- */
#header {
  width: 100%;
  padding: 36px 72px 0;
  /* position: fixed; */
  top: 0;
  background: #fff;
  z-index: 100;
}
#header .header-logo{
  max-width: 120px;
  width: 9.3%;
}
.header-nav_pc {
  z-index: 1;
}
#header-nav_pc ul {
  padding: 25px 0;
  gap: 4.8rem;
}
#header-nav_pc ul li:nth-child(4) {
  margin-right: 1.2rem;
}
#header-nav_pc ul li a {
  font-size: 1.6rem;
}
#header-nav_pc ul li a:hover {
  color: var(--dgreen);
  border-bottom: 1px solid var(--dgreen);
  padding-bottom: 1.5em;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
#header-nav_pc .header-contact {
  position: relative;
  z-index: 1;
}
#header-nav_pc .header-contact a {
  display: inline-block;
  background: var(--green);
  background-size: 200% 100%;
  padding: 1.5em;
  width: 250px;
  color: #fff;
  border: none;
}
#header-nav_pc .header-contact a:hover {
  color: #fff;
  border: none;
  background-position: 100% 0;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

#header-nav_sp {
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 70%;
  background: var(--green);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
#header-nav_sp ul {
  flex-direction: column;
  padding: 15rem 0;
  gap: 4.5rem;
}
#header-nav_sp ul li a {
  color: #fff;
  font-size: 1.6rem;
}
#header-nav_sp ul li:last-child a {
  background: #fff;
  padding: 1.5em;
  color: var(--dgreen);
}
/* .open #header-nav_pc {
  left: -300px;
  opacity: 0;
} */
.open #header-nav_sp {
  left: 0;
  opacity: 1;
}

/* ----------------------------------------- */
/* hamburger */
/* ----------------------------------------- */
.hamburger-btn {
  width: 80px;
  height: 80px;
  cursor: pointer;
  background: var(--green);
  border-radius: 100px;
}
.hamburger-btn span {
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.hamburger-btn,
.hamburger-btn span {
  /* display: inline-block; */
  transition: all .5s;
  box-sizing: border-box;
}
.hamburger-btn span:nth-of-type(1) {
  top: 40%;
}
.hamburger-btn span:nth-of-type(2) {
  top: 50%;
}
.hamburger-btn span:nth-of-type(3) {
  top: 60%;
}
#hamburger-btn::after {
  position: absolute;
  top: 54%;
  left: 54%;
  display: block;
  content: '';
  width: 84px;
  height: 84px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  border: 2px solid var(--dgreen);
  transition: all .75s;
  opacity: 0;
}
#hamburger-btn.active {
  background: #fff;
}
#hamburger-btn.active span {
  background: var(--green);
}
#hamburger-btn.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%,50%) rotate(45deg);
}
#hamburger-btn.active span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-btn17-bar02 .8s forwards;
}
@-webkit-keyframes active-btn17-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn17-bar02 {
  100% {
    height: 0;
  }
}
#hamburger-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%,50%) rotate(-45deg);
}
#hamburger-btn.active::after {
  border: 2px solid var(--dgreen);
  opacity: 1;
}
.hamburger-btn,
.hamburger-bg {
  display: none;
}
@media screen and (max-width: 1200px) {
  #header {
    padding: 2.5% 5% 0;
  }
  .hamburger-btn,
  .hamburger-btn span {
    display: inline-block;
    z-index: 1;
  }
  #header-nav_pc {
    display: none;
  }
}
@media screen and (max-width: 992px){
  #header .header-logo {
    width: 15%;
  }
}
@media screen and (max-width: 768px){
  #header .header-logo {
    width: 25%;
  }
}
@media screen and (max-width: 480px){
  .hamburger-btn {
    width: 70px;
    height: 70px;
  }
  .hamburger-btn span {
    width: 30px;
  }
  #hamburger-btn::after {
    top: 67%;
    left: 64%;
    width: 70px;
    height: 70px;
  }
  #header-nav_sp ul li a {
    font-size: 1.4rem;
  }
  #header-nav_sp ul li:last-child a {
    padding: 1.3em;
    width: 15em;
  }
}



/* ----------------------------------------- */
/* main */
/* ----------------------------------------- */
main {
  padding-top: 5.4rem;
}
.mv-header:after {
  content: "";
  display: inline-block;
  background-image: url(../img/header-bg_logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 420px;
  height: 260px;
  margin-right: 0.2em;
  position: absolute;
  right: 10%;
  top: 10%;
  transform: translateY(-50%);
  z-index: 0;
}
#blog-header.mv-header:after,
#faq-header.mv-header:after {
  top: 40%;
}
@media screen and (max-width: 1200px) {
  .mv-header:after {
    right: 3%;
    top: 3%;
  }
}
@media screen and (max-width: 992px) {
  .mv-header:after {
    width: 38vw;
    height: 22vw;
  }
  .blog-cate {
    display: block !important;
  }
  .article .container {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 680px) {
  #single-header.mv-header:after {
    display: none;
  }
}


/* ----------------------------------------- */
/* footer */
/* ----------------------------------------- */
.footer-left {
  flex: 1;
  margin-right: 2%;
}
.footer-left .wrap {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 4.8rem;
  margin-bottom: 4.8rem;
}
.footer-logo {
  max-width: 180px;
}
.footer-logo img {
  max-width: 100%;
}
.footer-left .wrap p span {
  font-size: clamp(12px, 1vw, 14px);
}
.footer-left .wrap p {
  font-size: clamp(14px, 2vw, 16px);
}
.footer-ig img:hover {
  filter: brightness(1);
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.footer-tel {
  font-size: clamp(18px, 1.5vw, 21px);
}
.footer-tel span {
  font-size: clamp(14px, 2vw, 16px);
}
.footer-left .wrap small {
  font-size: 12px;
}
.footer-train:before {
  content: "";
  display: inline-block;
  background-image: url(../img/train-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
}
.footer-left a:last-child {
  border-bottom: 1px solid #333;
  line-height: 1.7;
  letter-spacing: 0.06em;
  gap: 8px;
  display: inline-flex;
  font-size: clamp(14px, 2vw, 16px);
}
.footer-left a:last-child:after {
  content: "";
  display: inline-block;
  background-image: url(../img/map-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
}
.footer-left a:last-child:hover {
  color: var(--dgreen);
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.footer-right {
  width: 62%;
}
.footer-table_wrap {
  border:1px solid var(--lgreen);
  border-radius: 0.625rem;
  overflow:hidden;
  background: #fff;
  max-width: 680px;
}
.footer-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  /* table-layout:fixed; */
  font-size:1.6rem;
  line-height:1.6;
}
.footer-table th,
.footer-table td{
  padding:1.2em 0.8em 1.3em;
  text-align:center;
  vertical-align:middle;
  font-size: clamp(13px, 1.5vw, 16px);
}
.footer-table thead th{
  font-weight:500;
  letter-spacing:.08em;
  padding:1.2em 0.8em 1.3em;
}
.footer-table thead tr th{
  border-bottom:1px solid var(--lgreen);
}
.footer-table .time{
  width: 180px;
  text-align:center;
  font-weight:500;
  white-space:nowrap;
}
.footer-table td.open{
  position:relative;
  height:44px;
}
.footer-table td.open::after{
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background:var(--dgreen);
}
.footer-right small {
  font-size: clamp(14px, 2vw, 16px);
  margin-top: 1em;
}
.footer-map iframe {
  width: 100%;
  aspect-ratio: 720 / 376;
}
.footer-contact {
  width: 60%;
  margin: 0 auto;
  background: var(--green);
  border-radius: 5px;
  text-align: center;
  padding: 7.2rem 2em 4.6rem;
  margin-bottom: 12px;
}
.footer-contact h2 {
  margin-bottom: 0.5em;
  font-size: clamp(24px, 2.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.footer-contact h2:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/Reservation.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 37px;
}
.footer-contact a {
  background: #fff;
  color: var(--dgreen);
  width: 78.2%;
  margin: 0 auto;
  padding: 0.7em;
  font-size: clamp(18px, 2vw, 24px);
  border-radius: 5px;
}
.footer-beauty {
  margin-bottom: 1em !important;
}
.footer-beauty img {
  width: 120px;
}
.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06c755 !important;
  color: #fff !important;
}
.footer-line img {
  width: 2em;
  margin-right: 0.3em;
}
.footer-tel_a {
  background: none !important;
  color: #fff !important;
}
.copyright {
  font-size: clamp(12px, 1.5vw, 14px);
  background: linear-gradient(180deg, #1e959c 0%, #249a9f 100%);
  padding: 2em;
  margin-top: -1px;
}
@media screen and (max-width: 992px){
  .footer-table .time {
    width: 130px;
  }
  .footer-contact {
    width: 80%;
  }
}
@media screen and (max-width: 768px){
  .footer-inner {
    flex-direction: column;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }
  .footer-left {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 0 0 5.4rem 0;
  }
  .footer-left .wrap {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
}
@media screen and (max-width:680px){
  .footer-contact {
    width: 95%;
    padding: 6.2rem 2em 3.6rem;
  }
}
@media screen and (max-width:576px){
  .footer-left {
    display: block;
  }
  .footer-left .wrap {
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .footer-contact p br {
    display: none;
  }
  .footer-contact a {
    width: 90%;
    padding: 0.5em;
  }
}
@media screen and (max-width:480px){
  .footer-table .time {
    width: 90px;
  }
  .footer-table thead th {
    padding: 0.8em 0.2em 0.8em;
  }
  .footer-table thead th{
    letter-spacing:-0.2em;
  }
  .footer-contact a {
    width: 100%;
  }
}


/*----- menu -----*/
#sp-menu {
    display: none;
}
#sp-menu ~ label {
    display: none;
}


/*----- btn -----*/
.more-green_btn a {
  width: 100%;
}
.more-green_btn:hover {
  filter: brightness(1.1);
}

/* slider */
.slider {
  position:relative;
	z-index: 1;
  flex: 1;
}
.slider-item {
  width: 100%;
}
.slick-prev, 
.slick-next,
.slick-arrow {
  display: none !important;
}
/*ドットナビゲーションの設定*/
.slick-dots {
	position: relative;
	z-index: 3;
  text-align:center;
	margin:0.3em 0 0 0;/*ドットの位置*/
}
.slick-dots li {
  display:inline-block;
	margin:0 5px;
}
.slick-dots li button {
  color: transparent;
  outline: none;
  width:8px;
  height:8px;
  display:block;
  border-radius:50%;
  background:#D9D9D9;
}
.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}



/* --------------------------------------
iPad Pro
--------------------------------------- */
@media screen and (max-width: 1024px){
  .m_box {
    padding-left: min(4.91vw, 9rem);
    padding-right: min(4.91vw, 9rem);
  }


}


.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 1.5s;
}
.fadein.fadein-left{
  transform: translate(-30px,0);
}
.fadein.fadein-right{
  transform: translate(30px,0);
}
.fadein.fadein-up{
  transform: translate(0,-30px);
}
.fadein.fadein-bottom{
  transform: translate(0,30px);
}
.fadein.scrollin{
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* main {
  display: none;
} */