body {
  margin: 0;
  color: #736357;
  background: #fff;
  font-family: 'Zen Old Mincho', "Hiragino Mincho ProN", "游明朝", serif;
}


img {
  max-width: 100%;
}
/* コンテナ */
.c-wrapper {
  position: relative; 
  max-width:600px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: none; 
  padding-right: 0;
  padding-left: 0;
 background: #ffffff;
}
.c-wrapper::before,
.c-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10px; /* 影の幅 */
  height: 100%;
  filter: blur(8px);
  opacity: 0.3;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.c-wrapper::before {
  left: -10px; /* 左側に影 */
}
.c-wrapper::after {
  right: -10px; /* 右側に影 */
}
.c-inner {
  padding-top: 0;
  padding-bottom: 0;
    background: #fff;
}
/* リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   Typography System
========================= */
:root {
  --h3: clamp(22px, 5.3vw, 34px);
  --h4: clamp(20px, 4.8vw, 30px);
  --h5: clamp(18px, 4.3vw, 26px);
  --p_large: clamp(16px, 3.8vw, 22px);
  --p: clamp(14px, 3.5vw, 20px);
  --p-small: clamp(12px, 3vw, 16px);
  --space-8:  clamp(8px,  1.5vw + 4px,  12px);
  --space-16: clamp(16px, 3vw + 8px,    24px);
  --space-24: clamp(24px, 4vw + 12px,   36px);
  --space-32: clamp(32px, 5vw + 16px,   48px);
  --space-40: clamp(40px, 6vw + 20px,   64px);
  --space-80: clamp(80px, 17.78vw + 13.33px, 120px);
  --section-gap: var(--space-40);
}
h3{
    font-size: var(--h3);
}
h4{
    font-size: var(--h4);
}
h5{
    font-size: var(--h5);
    font-weight: 700;
}
.p_l{
    font-size: var(--p_large);
}
.p_s{
    font-size: var(--p_small);
}


/* =========================
   コンテンツ毎の余白
========================= */
#section-4 .c-inner.c-inner--vertical{
    padding: 0;
}
#section-9 .c-inner.c-inner--vertical,
#section-10 .c-inner.c-inner--vertical,
#section-16 .c-inner.c-inner--vertical,
#section-19 .c-inner.c-inner--vertical,
#section-20 .c-inner.c-inner--vertical,
#section-22 .c-inner.c-inner--vertical,
#section-25 .c-inner.c-inner--vertical
{
    padding: var(--space-24) 0 var(--space-24);
}

h4{
    font-size: var(--h4););
}

#section-12 .c-inner.c-inner--vertical,
#section-13 .c-inner.c-inner--vertical,
#section-15 .c-inner.c-inner--vertical,
#section-23 .c-inner.c-inner--vertical,
#section-24 .c-inner.c-inner--vertical,
#section-26 .c-inner.c-inner--vertical,
#section-27 .c-inner.c-inner--vertical,
#section-28 .c-inner.c-inner--vertical,
#section-29 .c-inner.c-inner--vertical,
#section-34 .c-inner.c-inner--vertical
{
    padding:0 var(--space-24) var(--space-24);
    margin: 0;
}

/* =========================
   コンテンツ
========================= */

/* 固定ボタン */
.fixed-contact {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  padding: 16px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  overflow: hidden;
  color: #fff;
  font-size: var(--h5);
  letter-spacing: 0.08em;
  font-weight: 600;
    background: linear-gradient(135deg, #ff1a00, #b81400);
}

/* テキスト */
.btn-text {
  position: relative;
  z-index: 2;
}

/* 矢印 */
.arrow {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
}

/* 矢印先 */
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* ホバーで軽く動く */
.fixed-contact:hover .arrow {
  animation: arrowMove 0.6s ease;
}

@keyframes arrowMove {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}



/* ナビ（初期非表示） */
.global-nav {
  display: none;
}

/* Swiper */

[data-structure=b-img-slider--small] .swiper-container::before {
    padding-top: var(--space-24);
}


.swiper-pagination,
.swiper-button-prev,
.swiper-button-next{
    display: none!important;
}

/* 黒グラデ */
.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

#section-20 .swiper {
    width: 600px;
    max-width: 100%;
  height: auto;
    aspect-ratio: 4 / 5;
}

#section-20 .swiper-slide img {
     width: 600px;
    max-width: 100%;
     height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}


footer{
  background-color: #736357;
  text-align: center;
   color: #fff;
}

.footer_text{
    padding: var(--space-40);
}

.footer_text p{
    font-size: var(--p);
}

.footer_text .tel{
border: 1px solid #fff;
  padding: 10px 24px;
  display: inline-block;
  font-size: 32px !important;
    margin-bottom: var(--space-24);
    font-family: 'EB Garamond', serif;
    width: 300px;
    max-width:100%;
    letter-spacing: 0.1em;
}

.footer_text .tel a{
     color: #fff !important;
}

.p-footer__inner{
    padding-top:10px !important;
}


/* PC */
@media screen and (min-width: 768px) {

  body {
    background: #eee;
  }

  .container {
    background: #fff;
  }

  .global-nav {
    display: block;
    position: fixed;
    top: 50%;
    left: calc(50% - 350px);
    transform: translateY(-50%);
  }

  .global-nav ul {
    list-style: none;
    padding: 0;
  }

  .global-nav li {
    margin-bottom: 16px;
  }

  .global-nav a {
    font-size: 11px;
    color: #aaa;
    writing-mode: vertical-rl;
    text-decoration: none;
  }

  .global-nav a:hover {
    color: #000;
  }
}