@charset "UTF-8";

/*
Theme Name : WEBSITE
Author: clovergraphic
Description: corporate website
Version: 1.0
*/

/*=======================================================
Common
=======================================================*/
:root {
  --color_1: #fff;
  --color_2: #333; /*メイン文字*/
  --color_3: #D8C755; /*ベースカラー1*/
  --color_4: #836B0B; /*ベースカラー2*/
  --color_5: #EB5591; /*アクセント*/
  --color_6: #FFF9FB; /*ピンク背景*/
}

html {
  scroll-behavior: smooth;
  font-size: calc(0.69444 * var(--vw));
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 11.11px;
  }
}
@media screen and (max-width: 896px) {
  html {
    font-size: calc(1.11731 * var(--vw));
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

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

body {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-weight: 600;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color_2);
}

@media screen and (max-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}

body p {
  text-align: justify;
}

body img.scaled-image {
  border: none;
  margin: 0;
}

.inner__1600 {
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  margin: auto;
}

/*inner__1600内の幅80%制御*/
.content__wrap {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 896px) {
  .content__wrap {
    width: 96%;
  }
}
@media screen and (max-width: 600px) {
  .content__wrap {
    width: 100%;
  }
}

/*h2共通*/
.section__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.section__ttl-en {
  margin: 0.8rem 0 4.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 80%;
  text-align: center;
  color: var(--color_3);
}

@media screen and (max-width: 600px) {
  .section__ttl-en {
    margin: 0.8rem 0 3.2rem;
}
}

.f-n {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

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

/*=======================================================
Header
=======================================================*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 3rem;
  align-content: center;
  line-height: 1em;
  background-color: var(--color_1);
  box-shadow: 0 5px 10px #99999980;
  z-index: 5000;
}

.header__logo {
  width: 8%;
  max-width: 100px;
  min-width: 80px;
  transition: 0.3s;
}
#header .header__logo:hover {
  opacity: 0.6;
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.global__list {
  display: flex;
  gap: 2rem;
}

.global__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem;
  font-size: 75%;
  font-weight: bold;
  transition: color 0.2s;
}
.global__item a:hover {
  color: var(--color_5);
}

/*予約*/
.global__item.-contact a {
  padding: 0.5rem 2rem;
  font-weight: 600;
  color: var(--color_1);
  background-color: var(--color_5);
  border-radius: 5px;
  transition: opacity 0.2s;
}
.global__item.-contact a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 1600px) {
  .header__logo {
    width: 7%;
  }
}

@media screen and (max-width: 896px) {
  .header__logo {
    min-width: 70px;
  }
  .global__list {
    gap: 1rem;
  }
}

@media screen and (max-width: 600px) {
  #header {
    top: -2px;
    padding: 0 10px;
  }
  .global__nav {
    display: none;
  }
}

/*=======================================================
toggle(sp)
=======================================================*/
.sp__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 6000;
  position: relative;
}

.sp__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color_3);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* 開いた状態（body.sp__open時） */
body.sp__open .sp__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.sp__open .sp__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.sp__open .sp__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* オーバーレイ */
.sp__nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 4800;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.sp__open .sp__nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* SPナビ本体（右からスライドイン）*/
.sp__nav {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 75vw;
  max-width: 30rem;
  height: 100dvh;
  padding: 8rem 2.4rem 4rem;
  background: var(--color_1);
  z-index: 4900;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
body.sp__open .sp__nav {
  transform: translateX(0);
}

/* ナビ */
.sp__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.sp__nav-list li {
  border-bottom: 1px solid #efefef;
}

.sp__nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 0.4rem;
  letter-spacing: 0.06em;
  color: var(--color_2, #333);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.sp__nav-link::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color_5);
  flex-shrink: 0;
}
.sp__nav-link:hover,
.sp__nav-link:focus,
.sp__nav-link:active {
  color: var(--color_5);
  padding-left: 6px;
}

/* LINE予約ボタン */
.sp__nav-cta {
  margin-top: 3.2rem;
}

.sp__nav-line-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.4rem;
  background: var(--color_3);
  color: var(--color_1);
  border-radius: 50rem;
  font-size: 1.4rem;
  text-align: center;
  transition: opacity 0.2s;
}
.sp__nav-line-btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 600px) {
  .sp__toggle {
    display: flex;
  }
  .sp__nav-overlay {
    display: block;
  }
}



/* Main
=======================================================*/
body:not(.home) main {
}


@media screen and (max-width: 896px) {
}

@media screen and (max-width: 600px) {
}


/*=======================================================
Footer
=======================================================*/
#footer {
  padding: 2rem 0 0;
}

.footer__logo {
  width: 10rem;
  margin: 0 auto;
}

.footer__logo a {
  display: block;
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  list-style: none;
  margin: 3rem auto;
}

.footer__list a {
  font-size: 1.4rem;
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--color_5);
}

.copyright {
  font-size: 1.2rem;
  text-align: center;
  color: #ccc;
}

@media screen and (max-width: 600px) {
  #footer {
    padding: 2rem 0 7rem;
  }
  .footer__list {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__list li {
    text-align: center;
  }
}

/***** sp__sticky *****/
.sp__sticky {
  position: fixed;
  left: 50%;
  bottom: 8px;
  width: 90%;
  transform: translateX(-50%);
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sp__sticky.is-show {
  opacity: 1;
  visibility: visible;
}

.sp__sticky a {
  display: block;
  width: 100%;
  height: 100%;
}

.sp__sticky {
  display: none;
}

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