@charset "UTF-8";
/* ======================================================================
  🌎 Root Variables
====================================================================== */
:root {
  /* Layout
  ================================= */
  --l-max-width: 110rem;
  --l-content-width: 90%;
  --l-min-width: 32rem;
  --l-border-radius: .8rem;
  /* Typography
  ================================= */
  --f-font-primary: "Shippori Mincho";
  --f-font-noto: "Noto Sans JP";
  --f-font-montser: "Montserrat";
  --f-font-size-base: 1.6rem;
  --f-font-size-sm: 1.4rem;
  --f-font-size-lg: 1.8rem;
  --f-font-weight-normal: 400;
  --f-font-weight-bold: 700;
  /* Colors
  ================================= */
  --f-color-primary: #469896;
  --f-color-secondary: #cfbca4;
  --f-color-tertiary: #83a986;
  --f-color-btn: #c8b398;
  --f-color-text: #000;
  --f-color-link: #222;
  --f-color-border: #ddd;
  --f-color-background: #fff;
  /* Effects
  ================================= */
  --f-transition: all .3s ease;
  --f-shadow-sm: 0 .2rem .4rem rgba(0, 0, 0, .1);
  --f-shadow-md: 0 .4rem .8rem rgba(0, 0, 0, .15);
}

/* ======================================================================
  Foundation
====================================================================== */
/* =================================
 Reset & Box Model
================================= */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-y: auto;
  font-size: 10px;
  line-height: normal;
}

body {
  background: var(--f-color-background);
  color: var(--f-color-text);
  font-size: var(--f-font-size-base);
  font-family: var(--f-font-primary), var(--f-font-noto), sans-serif;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: var(--f-font-size-base);
  }
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* =================================
 Typography
================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--f-font-weight-bold);
  line-height: 1.8;
}

p,
li,
pre,
td,
th,
dt,
dd {
  line-height: 2;
}

/* =================================
 Links
================================= */
a {
  color: var(--f-color-link);
  text-decoration: underline;
  -webkit-transition: var(--f-transition);
  transition: var(--f-transition);
}
a:hover {
  text-decoration: none;
}
a[href*="tel:"] {
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}

/* =================================
 Images
================================= */
img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  border: 0;
  vertical-align: top;
  -webkit-transition: var(--f-transition);
  transition: var(--f-transition);
}

/* ======================================================================
  Layout
====================================================================== */
/* =================================
 🏗️ Structure
================================= */
#l-wrapper {
  position: relative;
  overflow: hidden;
  min-width: var(--l-min-width);
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media only screen and (min-width: 768px) {
  #l-wrapper {
    min-width: var(--l-max-width);
  }
}

.l-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: var(--l-max-width);
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .l-container {
    padding: 0;
  }
}

/* =================================
 🏗️ Header
================================= */
.l-header {
  position: fixed;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .l-header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
    min-width: var(--l-max-width);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .l-header.is-active {
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.l-header.is-active .l-header__logo {
  width: 8rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media only screen and (min-width: 768px) {
  .l-header.is-active .l-header__logo {
    width: 10rem;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}
.l-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.5rem;
}
.l-header__booking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: #83a986;
}
@media only screen and (min-width: 768px) {
  .l-header__booking {
    display: none;
  }
}
.l-header__booking img {
  height: 3.5rem;
}
.l-header__logo {
  position: relative;
  top: -1rem;
  left: -1rem;
  display: block;
  width: 12rem;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .l-header__logo {
    top: 0;
    left: 0;
    width: 20rem;
  }
}
.l-header__logo.is-active {
  opacity: 1;
}
.l-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  overflow: auto;
  padding-top: 8rem;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
@media only screen and (min-width: 768px) {
  .l-header__nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    width: auto;
    height: auto;
    background: none;
    -webkit-transform: none;
    transform: none;
  }
}
.l-header__nav.is-active {
  opacity: 1;
}
.l-header__nav.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 768px) {
  .l-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7rem;
    margin-right: 4rem;
  }
}
.l-header__nav-link {
  display: block;
  padding: 1rem 0;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .l-header__nav-link:after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--f-color-primary);
    content: "";
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }
  .l-header__nav-link:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
}
.l-header__nav-btn-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  background: var(--f-color-tertiary);
  color: #fff;
  text-align: center;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .l-header__nav-btn-link {
    width: 18.5rem;
    height: 10rem;
  }
  .l-header__nav-btn-link:hover {
    background: var(--f-color-primary);
  }
}

/* =================================
 🏗️ Footer
================================= */
.l-footer {
  padding: 4rem 0;
  background: url(../images/common_img/f_bg_sp.webp) no-repeat center center/cover;
}
@media only screen and (min-width: 768px) {
  .l-footer {
    padding-top: 12rem;
    background: url(../images/common_img/f_bg_pc.webp) no-repeat center center/cover;
  }
}
.l-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 3rem;
  width: 12rem;
}
@media only screen and (min-width: 768px) {
  .l-footer__logo {
    margin-bottom: 6rem;
    width: 18rem;
  }
}
.l-footer__nav {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .l-footer__nav {
    margin-bottom: 15rem;
  }
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem 2rem;
}
@media only screen and (min-width: 768px) {
  .l-footer__nav-list {
    gap: 7rem;
  }
}
.l-footer__nav-link {
  color: #fff;
  text-align: center;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .l-footer__nav-link:after {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    content: "";
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }
  .l-footer__nav-link:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
}
.l-footer__copy {
  color: #fff;
  text-align: center;
}

/* ======================================================================
  Component Styles
====================================================================== */
/* =================================
 Menu Button
================================= */
.c-menu {
  position: relative;
  z-index: 11;
  overflow: hidden;
  margin-left: 5px;
  width: 60px;
  height: 60px;
  background: none;
  background: #469896;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media only screen and (min-width: 768px) {
  .c-menu {
    display: none;
  }
}
.c-menu.is-active {
  opacity: 1;
}
.c-menu__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-menu__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  pointer-events: none;
}
.c-menu__line--1 {
  top: 0;
}
.c-menu__line--2 {
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-menu__line--3 {
  bottom: 0;
}
.c-menu--close5 .c-menu__line--4, .c-menu--close5 .c-menu__line--5 {
  top: 9px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.c-menu--close5 .c-menu__line--1 {
  width: 100%;
  -webkit-transition: width 0.2s ease-in-out 0.4s;
  transition: width 0.2s ease-in-out 0.4s;
}
.c-menu--close5 .c-menu__line--2 {
  width: 100%;
  -webkit-transition: width 0.2s ease-in-out 0.3s;
  transition: width 0.2s ease-in-out 0.3s;
}
.c-menu--close5 .c-menu__line--3 {
  width: 100%;
  -webkit-transition: width 0.2s ease-in-out 0.2s;
  transition: width 0.2s ease-in-out 0.2s;
}
.c-menu--close5 .c-menu__line--4 {
  -webkit-transition: opacity 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
  -webkit-transform: rotate(45deg) translate3d(-30px, 0, 0);
  transform: rotate(45deg) translate3d(-30px, 0, 0);
}
.c-menu--close5 .c-menu__line--5 {
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: rotate(-45deg) translate3d(30px, 0, 0);
  transform: rotate(-45deg) translate3d(30px, 0, 0);
}
.c-menu--close5.is-open {
  background: var(--f-color-secondary);
}
.c-menu--close5.is-open .c-menu__icon {
  height: 20px;
}
.c-menu--close5.is-open .c-menu__line--1 {
  width: 0;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
.c-menu--close5.is-open .c-menu__line--2 {
  width: 0;
  -webkit-transition: width 0.2s ease-in-out 0.1s;
  transition: width 0.2s ease-in-out 0.1s;
}
.c-menu--close5.is-open .c-menu__line--3 {
  width: 0;
  -webkit-transition: width 0.2s ease-in-out 0.2s;
  transition: width 0.2s ease-in-out 0.2s;
}
.c-menu--close5.is-open .c-menu__line--4 {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0.2s;
  transition: opacity 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
  transform: rotate(45deg) translate3d(0, 0, 0);
}
.c-menu--close5.is-open .c-menu__line--5 {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out 0.4s, -webkit-transform 0.2s ease-in-out 0.4s;
  transition: opacity 0.2s ease-in-out 0.4s, -webkit-transform 0.2s ease-in-out 0.4s;
  transition: opacity 0.2s ease-in-out 0.4s, transform 0.2s ease-in-out 0.4s;
  transition: opacity 0.2s ease-in-out 0.4s, transform 0.2s ease-in-out 0.4s, -webkit-transform 0.2s ease-in-out 0.4s;
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0);
  transform: rotate(-45deg) translate3d(0, 0, 0);
}

/* =================================
  Menu Button
================================= */
.c-menu-btn {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 0.4rem;
  background: var(--f-color-primary);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .c-menu-btn {
    display: none;
  }
}
.c-menu-btn:hover {
  background: var(--f-color-primary-dark);
}
.c-menu-btn__lines {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2px;
  background: var(--f-color-background);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-menu-btn__lines::before, .c-menu-btn__lines::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--f-color-background);
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-menu-btn__lines::before {
  top: -8px;
}
.c-menu-btn__lines::after {
  top: 8px;
}
.c-menu-btn.is-active {
  background: var(--f-color-danger);
}
.c-menu-btn.is-active .c-menu-btn__lines {
  background: transparent;
}
.c-menu-btn.is-active .c-menu-btn__lines::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-menu-btn.is-active .c-menu-btn__lines::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* =================================
  Menu Navigation
================================= */
.c-menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .c-menu-nav {
    position: static;
    visibility: visible;
    width: auto;
    height: auto;
    background: none;
    opacity: 1;
  }
}
.c-menu-nav.is-active {
  visibility: visible;
  opacity: 1;
}
.c-menu-nav__list {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .c-menu-nav__list {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: none;
    transform: none;
  }
}
.c-menu-nav__item {
  margin: 2rem 0;
}
@media only screen and (min-width: 768px) {
  .c-menu-nav__item {
    margin: 0 2rem;
  }
}
.c-menu-nav__link {
  display: block;
  padding: 1rem;
  color: var(--f-color-background);
  text-decoration: none;
  font-weight: bold;
  font-size: 2rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .c-menu-nav__link {
    color: var(--f-color-text);
    font-size: 1.6rem;
  }
}
.c-menu-nav__link:hover {
  color: var(--f-color-primary);
}

/* =================================
  Overlay Hover
================================= */
.c-ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* =================================
 🔝 Back to Top Button
================================= */
.c-page-up {
  position: fixed;
  right: -550px;
  bottom: 10%;
  z-index: 999;
  width: 12%;
}
@media only screen and (min-width: 768px) {
  .c-page-up {
    bottom: 120px;
    width: auto;
  }
}
.c-page-up a {
  display: block;
}

/* =================================
 Heading
================================= */
.c-title-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-title-1 {
    margin-bottom: 4rem;
  }
}
.c-title-1--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-title-1--center .c-title-1__en {
  margin-right: 0;
  text-align: center;
}
.c-title-1--center .c-title-1__jp {
  margin-left: 0;
  text-align: center;
  font-size: 1.4rem;
}
.c-title-1__en {
  margin-right: 2rem;
  padding-left: 2rem;
  width: 100%;
  background: url(../images/common_img/icon_green.webp) no-repeat left top 1.3rem;
  color: var(--f-color-primary);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .c-title-1__en {
    font-size: 4rem;
  }
}
.c-title-1__jp {
  margin-left: 2rem;
  color: var(--f-color-text);
  font-weight: 200;
  font-size: 1.6rem;
}
.c-title-1--white .c-title-1__en {
  background: url(../images/common_img/icon_white.webp) no-repeat left top 1.3rem;
  color: var(--f-color-background);
}
.c-title-1--white .c-title-1__jp {
  color: var(--f-color-background);
}

.c-title-2 {
  margin-bottom: 2rem;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .c-title-2 {
    font-size: 3rem;
  }
}

.c-title-3 {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  background: url(../images/concept/icon1.webp) no-repeat center bottom;
  text-align: center;
  font-weight: normal;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-title-3 {
    margin-bottom: 6rem;
    font-size: 2.4rem;
  }
}

.c-title-4 {
  margin-bottom: 2rem;
  color: #7b4403;
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .c-title-4 {
    font-size: 2.8rem;
  }
}

.c-title-5 {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-title-5 {
    font-size: 2.8rem;
  }
}
.c-title-5__en {
  display: block;
  margin-bottom: 1rem;
  color: #7b4403;
  font-weight: normal;
  font-size: 3rem;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .c-title-5__en {
    margin-bottom: 0;
    font-size: 4rem;
    line-height: 1;
  }
}
.c-title-5__jp {
  color: #7b4403;
  font-weight: normal;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .c-title-5__jp {
    font-size: 1.8rem;
  }
}

.c-title-6 {
  margin-bottom: 1rem;
  font-weight: normal;
  font-size: 1.8rem;
}

/* =================================
 Button
================================= */
.c-btn-1 {
  position: relative;
  display: inline-block;
  padding-right: 2rem;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .c-btn-1:after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--f-color-primary);
    content: "";
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }
  .c-btn-1:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
}
.c-btn-1:before {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  border-radius: 1px;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(-40%) rotate(-45deg);
  transform: translateY(-40%) rotate(-45deg);
}

.c-btn-2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  max-width: 32rem;
  background: var(--f-color-secondary);
  color: #fff;
  text-align: center;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .c-btn-2 {
    padding: 2.5rem 2rem;
    min-width: 37rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-btn-2 {
    margin-left: 0;
  }
  .c-btn-2:hover {
    background: var(--f-color-tertiary);
  }
}
.c-btn-2:after {
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  z-index: 3;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 5rem;
  background: var(--f-color-btn) url(../images/common_img/arrow_white.webp) no-repeat center center;
  content: "";
}
.c-btn-2--green {
  background: var(--f-color-tertiary);
}
@media only screen and (min-width: 768px) {
  .c-btn-2--green:hover {
    background: #469896;
  }
}
.c-btn-2--green:after {
  background: #739e76 url(../images/common_img/arrow_white.webp) no-repeat center center;
}

.c-arrow-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 5rem;
  background: var(--f-color-secondary);
}

/* =================================
  c-salon
================================= */
.c-salon {
  padding: 4rem 0;
}
@media only screen and (min-width: 768px) {
  .c-salon {
    padding: 20rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .c-salon__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-salon__content-left {
  margin-bottom: 5rem;
}
@media only screen and (min-width: 768px) {
  .c-salon__content-left {
    margin-right: 6rem;
    min-width: 42rem;
  }
}
.c-salon__content-left-text {
  margin-bottom: 3rem;
}
.c-salon__content-left-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .c-salon__content-left-list {
    margin-bottom: 7.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-salon__content-right {
    min-width: 100.6rem;
  }
}
.c-salon__content-right iframe {
  margin-bottom: 3rem;
  height: 30rem;
}
@media only screen and (min-width: 768px) {
  .c-salon__content-right iframe {
    height: 48rem;
  }
}

/* =================================
  Animation
================================= */
.animatiton {
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.11, 0.41, 0.46, 0.93);
  transition: all 1s cubic-bezier(0.11, 0.41, 0.46, 0.93);
  -webkit-transform: translateY(67px);
  transform: translateY(67px);
}

.animatiton.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* =================================
  Breadcrumb
================================= */
.c-breadcrumb {
  display: none;
  padding: 15px 0;
}
@media only screen and (min-width: 768px) {
  .c-breadcrumb {
    display: block;
    padding: 10px 0;
  }
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-breadcrumb__item {
  color: #333;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 8px;
}
.c-breadcrumb__item:not(:last-child)::after {
  display: inline-block;
  margin-bottom: 0.2rem;
  margin-left: 8px;
  padding: 2.5px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  content: "";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .c-breadcrumb__item:not(:last-child)::after {
    -ms-flex-item-align: center;
    align-self: center;
  }
}
.c-breadcrumb__link {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
}

/* =================================
  Second MV
================================= */
.c-mv--concept {
  background: url(../images/concept/mv.webp) no-repeat center top/cover;
}
.c-mv--course {
  background: url(../images/course/mv.webp) no-repeat center top/cover;
}
.c-mv--news {
  background: url(../images/news/mv.webp) no-repeat center top/cover;
}
.c-mv--products {
  background: url(../images/products/mv.webp) no-repeat center top/cover;
}
.c-mv--therapist {
  background: url(../images/therapist/mv.webp) no-repeat center top/cover;
}
.c-mv--faq {
  background: url(../images/faq/mv.webp) no-repeat center top/cover;
}
.c-mv__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0;
  -webkit-transition: all 1.2s cubic-bezier(0.11, 0.41, 0.46, 0.93);
  transition: all 1.2s cubic-bezier(0.11, 0.41, 0.46, 0.93);
  -webkit-transition-delay: 0.42s;
  transition-delay: 0.42s;
  -webkit-transform: translateY(65px);
  transform: translateY(65px);
}
.c-mv__title.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.c-mv .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 20rem;
}
@media only screen and (min-width: 768px) {
  .c-mv .l-container {
    height: 55rem;
  }
}
.c-mv .l-container .c-title-1__en {
  margin-right: 0;
  width: auto;
  font-size: 3.4rem;
}
@media only screen and (min-width: 768px) {
  .c-mv .l-container .c-title-1__en {
    font-size: 4rem;
  }
}
.c-mv .l-container .c-title-1__ja {
  padding-left: 2rem;
  font-weight: normal;
  font-size: 1.6rem;
}

/* =================================
  Loading
================================= */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
}

body {
  opacity: 0;
  -webkit-transition: all 1.2s cubic-bezier(0.11, 0.41, 0.46, 0.93);
  transition: all 1.2s cubic-bezier(0.11, 0.41, 0.46, 0.93);
}

body.loaded {
  opacity: 1;
}

.indent {
  display: block;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}