@charset "UTF-8";

/* =================================
base
================================= */

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-gold: #caa954;
  --color-gold-light: #f6ebad;
  --gradient-gold: linear-gradient(90deg, #caa954 0%, #f6ebad 50%, #caa954 100%);
  --gradient-gold-reverse: linear-gradient(90deg, #f6ebad 0%, #caa954 50%, #f6ebad 100%);

  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "Cormorant Garamond", serif;

  --inner: 1200px;
  --section-pc: 100px;
  --section-sp: 80px;

  --header-height: 80px;
  --header-height-sp: 70px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
  text-align: justify;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../img/common/bg-base.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

body.is-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  padding: 0;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.section {
  padding-block: var(--section-pc);
}

.section-inner {
  max-width: var(--inner);
  margin-inline: auto;
}

@media screen and (max-width: 1200px) {
  .section-inner {
    padding-inline: 4%;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding-block: var(--section-sp);
  }
}

@media screen and (max-width: 500px) {
  .section-inner {
    padding-inline: 6%;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.br-600 {
  display: none;
}

@media screen and (max-width: 600px) {
  .br-600 {
    display: block;
  }
}
.br-430 {
  display: none;
}

@media screen and (max-width: 430px) {
  .br-430 {
    display: block;
  }
}
.br-380 {
  display: none;
}

@media screen and (max-width: 380px) {
  .br-380 {
    display: block;
  }
}

/* =================================
common title
================================= */

.c-ttl {
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}

.c-ttl__en {
  display: block;
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}

.c-ttl__ja {
  display: block;
  margin-top: 3px;
  line-height: 1.5;
  font-family: var(--font-serif);
}

/* =================================
common button
================================= */

.c-btn {
  width: 300px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
}

.c-btn:hover {
  opacity: 0.75;
}

.c-btn--gold {
  background: var(--gradient-gold-reverse);
}

.c-btn--white {
  background: var(--color-white);
  overflow: hidden;
}

.c-btn--white::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-gold-reverse);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* =================================
reserve
================================= */

.reserve__txt {
  margin-top: 30px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.reserve__links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reserve .c-btn--white {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .reserve__txt {
    margin-top: 20px;
  }

  .reserve__links {
    margin-top: 20px;
  }

  .reserve .c-btn--white {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .reserve {
    display: none;
  }
}


/* =================================
header
================================= */

.header {
  width: 100%;
  height: 90px;
  background: rgba(17, 17, 17, 0.95);
  color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__inner {
  max-width: var(--inner);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.header__logo {
  width: 180px;
}

.header__logo-link {
  display: block;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-link {
  display: block;
  text-align: center;
  transition: opacity 0.3s;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-en {
  display: block;
  font-family: var(--font-en);
  font-size: 2.4rem;
  line-height: 1;
}

.header__nav-ja {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.header__reserve {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__tel {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1;
  white-space: nowrap;
}

.header__line {
  display: block;
  min-width: 200px;
  padding: 15px 25px;
  background: var(--gradient-gold-reverse);
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  transition: opacity 0.3s;
}

.header__line:hover {
  opacity: 0.75;
}

.header__hamburger {
  display: none;
}

.header__drawer {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header__inner {
    justify-content: space-between;
    padding-inline: 4%;
  }

  .header__logo {
    width: 160px;
  }

  .header__nav,
  .header__reserve {
    display: none;
  }

  .header__nav-list {
    gap: 20px;
  }

  .header__reserve {
    margin-left: 25px;
    gap: 20px;
  }

  .header__tel {
    font-size: 2rem;
  }

  .header__line {
    min-width: 180px;
    padding: 15px 20px;
  }

  .header__hamburger {
    width: 30px;
    height: 25px;
    display: block;
    position: relative;
    z-index: 1100;
  }

  .header__hamburger span {
    width: 30px;
    height: 2px;
    background: var(--color-white);
    border-radius: 999px;
    position: absolute;
    left: 0;
    transition: transform .3s, opacity .3s, top .3s;
  }

  .header__hamburger span:nth-child(1) {
    top: 0;
  }

  .header__hamburger span:nth-child(2) {
    top: 11px;
  }

  .header__hamburger span:nth-child(3) {
    top: 22px;
  }

  .header__hamburger.is-open span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }

  .header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-open span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
  }

  .header__drawer {
    width: 100%;
    height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--color-black);
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .header__drawer.is-open {
    opacity: 1;
    visibility: visible;
  }

  .header__drawer-inner {
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
  }

  .header__drawer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .header__drawer-link {
    display: block;
    color: var(--color-white);
    text-align: center;
  }

  .header__drawer-en {
    display: block;
    font-family: var(--font-en);
    font-size: 3.2rem;
    line-height: 1;
  }

  .header__drawer-ja {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    font-family: var(--font-serif);
  }

  .header__drawer-reserve {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .header__drawer-tel {
    display: block;
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 2.4rem;
    line-height: 1;
  }

  .header__drawer-line {
    display: block;
    min-width: 260px;
    padding: 15px 25px;
    background: var(--gradient-gold-reverse);
    color: var(--color-black);
    font-family: var(--font-serif);
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }

  .header__logo {
    width: 120px;
  }

}


/* =================================
lower-mv
================================= */

.lower-mv {
  height: 350px;
  margin-top: 90px;
  background-image: url("../img/common/lower-mv-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--color-white);
  position: relative;
}

.lower-mv__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.lower-mv__ttl {
  text-align: center;
  line-height: 1;
}

.lower-mv__ttl-en {
  display: block;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 500;
}

.lower-mv__ttl-ja {
  display: block;
  margin-top: 15px;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .lower-mv {
    height: 220px;
    margin-top: 70px;
  }

  .lower-mv__ttl-en {
    font-size: 3.4rem;
  }

  .lower-mv__ttl-ja {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}


/* =================================
fixed-reserve
================================= */

.fixed-reserve {
  width: 100%;
  height: 60px;
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 900;
}

.fixed-reserve__link {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.fixed-reserve__link--tel {
  background: var(--color-white);
  color: var(--color-black);
  position: relative;
  overflow: hidden;
}

.fixed-reserve__link--tel::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: var(--gradient-gold-reverse);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.fixed-reserve__link--line {
  background: var(--gradient-gold-reverse);
  color: var(--color-black);
}

@media screen and (max-width: 1000px) {
  .fixed-reserve {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .fixed-reserve {
    height: 50px;
  }

  .fixed-reserve__link {
    font-size: 1.7rem;
  }

  body {
    padding-bottom: 50px;
  }
}


/* =================================
footer
================================= */

.footer {
  padding: 60px 0 30px;
  background: var(--color-black);
  color: var(--color-white);
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  width: 280px;
  margin-inline: auto;
}

.footer__info {
  margin-top: 30px;
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
}

.footer__copy {
  margin-top: 30px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer__logo {
    width: 280px;
  }

  .footer__info {
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .footer {
    padding: 30px 0 20px;
  }

  .footer__logo {
    width: 230px;
  }
}


/* =================================
common
================================= */
.profile__schedule-time {
	display: block;
}