@charset "utf-8";
/* ==========================================================================
   common.css
   全ページ共通のスタイル設定（変数・基本設定・ボタン・アニメーション等）
   ========================================================================== */

:root {
  --bg: #fcfaf8;
  --bg-beige: #f7f3ee;

  --beige-100: #f2ece5;
  --beige-200: #e8ded2;
  --beige-300: #dcc9b6;
  --beige-400: #cdb9a3;
  --beige-500: #b99e84;

  --text: #3a3633;
  --text-light: #766c63;

  --line: #e8e1d9;

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Cormorant Garamond", "Noto Serif JP", serif;

  --header-height-pc: 96px;
  --header-height-sp: 68px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  /*  background: var(--bg);*/
  color: var(--text);
  font-family: var(--font-jp);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

img {
  height: auto;
  width: 100%;
  vertical-align: middle;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.l-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

main {
  display: block;
}

p {
  color: #766c63;
  font-size: 0.9rem;
}

@media (max-width: 1560px) {
  .l-container {
    max-width: 1300px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1200px) {
  p {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  main {
    overflow: hidden;
    /*    padding-top: var(--header-height-sp);*/
  }
}

/* ---------------------------------
   見出し・パーツ共通
--------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--beige-500);
  font-weight: 600;
}

.section-lead {
  margin-top: 14px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.6;
}

.section {
  padding: 110px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
}

/* ---------------------------------
   ボタン
--------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
  white-space: nowrap;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-beige);
  flex-shrink: 0;
  position: relative;
}

.btn-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(-45deg) translate(-1px, -1px);
}

.btn-dark {
  background: #8b5b27db;
  color: var(--bg);
  box-shadow: 0 8px 20px rgba(58, 54, 51, 0.18);
}

.btn-dark:hover {
  color: #8b5b27db;
  background: var(--beige-100);
  box-shadow: 0 12px 26px rgba(58, 54, 51, 0.25);
}

.btn-dark span {
  display: block;
  background: url("../img/icon/scissor-wh.png") center no-repeat;
  background-size: cover;
  width: 30px;
  aspect-ratio: 1/1;
  transition: 0.3s ease-in-out;
}

.hasami-box {
  background: #8b5b27db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hasami {
  display: block;
  background: url("../img/icon/scissor-wh.png") center no-repeat;
  background-size: cover;
  width: 20px;
  aspect-ratio: 1/1;
  transition: 0.3s ease-in-out;
}

.btn-dark:hover span {
  background: url("../img/icon/scissor-br.png") center no-repeat;
  background-size: cover;
  margin-left: 5px;
  width: 30px;
  aspect-ratio: 1/1;
}

.btn-outline {
  background: #8b5b27db;
  color: #fff;
  border: 1px solid var(--line);
}

.btn-outline:hover {
  background: var(--beige-100);
  color: #8b5b27db;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .l-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .btn {
    gap: 8px;
    padding: 10px 30px;
    font-size: 13px;
  }

  .btn-dark span {
    width: 20px;
  }
}

@media (max-width: 600px) {
  .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ---------------------------------
   スクロールアニメーション
   ※ JSが実行されない・失敗した場合でもコンテンツが
     非表示のままにならないよう、隠す処理はJS実行後
     （html.js-reveal付与後）にのみ適用する。
--------------------------------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 1;
  transform: none;
}

html.js-reveal .reveal,
html.js-reveal .reveal-left,
html.js-reveal .reveal-right,
html.js-reveal .reveal-zoom {
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  will-change: opacity, transform;
}

html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(48px);
  text-align: center;
}

html.js-reveal .reveal-left {
  opacity: 0;
  transform: translateX(-56px);
}

html.js-reveal .reveal-right {
  opacity: 0;
  transform: translateX(56px);
}

html.js-reveal .reveal-zoom {
  opacity: 0;
  transform: scale(0.94);
}

html.js-reveal .reveal.is-visible,
html.js-reveal .reveal-left.is-visible,
html.js-reveal .reveal-right.is-visible,
html.js-reveal .reveal-zoom.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible > * {
  transition-delay: calc(var(--stagger-index, 0) * 0.09s);
}

/* ---------------------------------
   汎用
--------------------------------- */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block;
  }
}

/* ---------------------------------
   背景
--------------------------------- */

.curve-bk-top {
  width: 100%;
  height: 50px;
  position: relative;
}

.curve-bk-top span {
  display: block;
  background: url("../img/bk/beige-top.png") no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: relative;
  bottom: -2px;
}

/* ---------------------------------
   ホットペッパー
--------------------------------- */

.hot-pepper-beauty {
  background: url("../img/icon/hotpepper.gif") center;
  background-size: cover;
  aspect-ratio: 270/90;
  width: 150px;
  display: block;
  border: 1px solid #9f1547;
}

@media (max-width: 1200px) {
  .hot-pepper-beauty {
    width: 120px;
  }
}

/* ---------------------------------
   white wave
--------------------------------- */
.white-wave {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 7vw;
  background: url(../img/bk/beigu-bk.jpg) repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: flex-end;
}

.white-wave span {
  display: block;
  background: url("../img/bk/white-wave.png") center;
  background-size: cover;
  width: 100vw;
  aspect-ratio: 20/1;
}

/* ---------------------------------
  leaves
--------------------------------- */
.leaves {
  position: absolute;
}

.leaves span {
  display: block;
  z-index: 1;
  background: url(../img/decoration/herb-2.png) center;
  background-size: cover;
  width: 20vw;
  aspect-ratio: 1 / 1;
  opacity: 0.5;
}

/* ---------------------------------
   電話リンク（PC幅では発信させない）
   スマホ・タブレットでのみ tel: リンクとして機能させる
--------------------------------- */
@media (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
