@charset "UTF-8";
/* =============================================================================
   Variables & Settings
   - Colors
   - Typography / Placeholder
   - Breakpoints
   - Units
   - Animation / Effects
============================================================================= */
/* ---------------- Colors ---------------- */
/* ---------------- Gradients & Shadows ---------------- */
/* ---------------- Typography ---------------- */
/* ---------------- Breakpoints ---------------- */
/* ---------------- Units ---------------- */
/* ---------------- Transitions ---------------- */
/* =============================================================================
   Mixins & Utilities
   - Placeholders / Typography helpers
   - Media queries
   - Gradients / Shadows
   - Fluid sizing (clamp with vw) + shorthands
============================================================================= */
/* --------------------------------
 * Placeholder color
 * -------------------------------- */
/* --------------------------------
 * @font-face quick helper
 * --------------------------------
 * Usage:
 *   @include fontFace('MyFont', 600, 'fonts/MyFont/MyFont-SemiBold', woff2, 'woff2');
 */
/* --------------------------------
 * Media queries
 * -------------------------------- */
/* --------------------------------
 * Gradients / Shadow
 * -------------------------------- */
/* =============================================================================
   Fluid sizing utilities (clamp with vw)
   - Locks between 375px (default) and $bp-sp, then fixes at max
============================================================================= */
/* Strip unit if present (px/number both OK) */
/* clamp(px, vw, max) generator
 * Example:
 *   fluid-lock(60) → 375px時:60px / 640px時:102.4px / それ以上は102.4px固定
 */
/* Typography / sizing shorthands */
/* 1〜4値の margin / padding を fluid-lock で展開 */
/* Individual margins */
/* Individual paddings */
/* Absolute positioning helpers */
/* =============================================================================
   Swiper 11.2.10 Core CSS
   - https://swiperjs.com
   - MIT License (© Vladimir Kharlampidi 2014–2025)
============================================================================= */
/* ------------------------------
   Font
------------------------------ */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64,...省略...") format("woff");
  font-weight: 400;
  font-style: normal;
}
/* ------------------------------
   Root variables
------------------------------ */
:root {
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
}

/* ------------------------------
   Container / Wrapper / Slide
------------------------------ */
.swiper {
  position: relative;
  overflow: hidden;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  z-index: 1;
}

.swiper-slide {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

/* ------------------------------
   Orientation
------------------------------ */
.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ------------------------------
   Auto height
------------------------------ */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* ------------------------------
   Effects (3D / Fade / Flip / Cube / Cards / Creative)
   ※ 必要なもののみ残すのがおすすめ
------------------------------ */
.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ・・・ここに 3D / cube / flip / fade / creative / cards の各ブロック ... */
/* ------------------------------
   Lazy Loader
------------------------------ */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
  -webkit-animation: swiper-preloader-spin 1s linear infinite;
          animation: swiper-preloader-spin 1s linear infinite;
}

/* ------------------------------
   Navigation Buttons
------------------------------ */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  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;
  cursor: pointer;
  z-index: 10;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev:after {
  content: "prev";
  font-family: swiper-icons;
}

.swiper-button-next:after {
  content: "next";
  font-family: swiper-icons;
}

/* ------------------------------
   Pagination
------------------------------ */
.swiper-pagination {
  position: absolute;
  text-align: center;
  z-index: 10;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

/* bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: inline-block;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-theme-color);
  opacity: 1;
}

/* fraction / progressbar は必要に応じて */
/* ------------------------------
   Scrollbar
------------------------------ */
.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-drag {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* ------------------------------
   Keyframes
------------------------------ */
@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* =============================================================================
  Base / Reset (PC first)
  - Consolidated & de-duplicated
  - Inherits typography to form controls
  - Aligns with .wrapper (not #wrapper)
============================================================================= */
/* ---------------- Typography & Colors ---------------- */
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../font/ZenOldMincho-Regular.woff2") format("woff2"), url("../font/ZenOldMincho-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../font/ZenOldMincho-Medium.woff2") format("woff2"), url("../font/ZenOldMincho-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../font/ZenOldMincho-SemiBold.woff2") format("woff2"), url("../font/ZenOldMincho-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  font-size: 16px;
}

html {
  background: #fff;
  color: #333;
  line-height: 1.6;
  word-break: break-word;
  /* better than break-all for JP */
  -webkit-text-size-adjust: 100%;
}

body,
input,
textarea,
select,
button {
  font-family: "Zen Old Mincho", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #614A1E;
}

.gothic {
  font-family: "Zen Old Mincho", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

/* ---------------- Structural resets ---------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  vertical-align: top;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

/* ---------------- Forms ---------------- */
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

/* IE/Edge (legacy) */
button {
  cursor: pointer;
}

label {
  cursor: pointer;
}

/* ---------------- Layout helpers ---------------- */
.outer-block {
  /* min width on SP below */
}

.inner-block {
  position: relative;
  width: auto;
  max-width: 1240px;
  padding: 0 20px;
}

.wrapper {
  position: relative;
}

/* Definition list reset */
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

/* SVG sprite helper */
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* ---------------- PC-only rules ---------------- */
/* =============================================================================
  SP tweaks
============================================================================= */
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.paging-area {
  font-size: 0;
  padding: 50px 0 0;
  text-align: center;
  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;
}

.paging-area > * {
  border: 1px solid blue;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  line-height: 1;
  color: blue;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin: 0 5px 5px;
  padding: 0 4px;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.paging-area .back {
  padding: 0 32px;
}

.paging-area .page-numbers.current {
  background: blue;
  color: #fff;
}

.paging-area .page-numbers.dots {
  border-color: transparent;
  min-width: 1px;
  margin: 0;
}

.paging-area .next.page-numbers,
.paging-area .prev.page-numbers {
  position: relative;
}

.paging-area .next.page-numbers:before,
.paging-area .prev.page-numbers:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../img/common/ico-arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.paging-area .next.page-numbers:hover:before,
.paging-area .prev.page-numbers:hover:before {
  background-image: url("../img/common/ico-arrow-wt.svg");
}

.paging-area .prev.page-numbers:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pagetop {
  z-index: 100;
}
#pagetop a {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 62px;
  background-color: #e9a2af;
}
#pagetop img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: 2px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
 * home Module (SCSS) — Updated to new HTML
 * - Class names aligned to refactored markup
 * - Kept your mixins/variables as-is
 * - Consolidated & de-duplicated
 -------------------------------------------------- */
/* ========== Base ==========
-------------------------------- */
body {
  background: url(../img/concern-bg.png) no-repeat center/cover;
}

.wrapper {
  max-width: 640px;
  margin: auto;
  padding-bottom: clamp(82px, 21.8666666667vw, 139.9466666667px);
}

/* ========== Header ==========
-------------------------------- */
.header {
  max-width: 640px;
  margin: auto;
  position: fixed;
  inset: 0 auto auto 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  padding: clamp(14px, 3.7333333333vw, 23.8933333333px);
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  /* Open state (toggle this class in JS) */
}
.header__logo {
  width: clamp(104px, 27.7333333333vw, 177.4933333333px);
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__btn-item a {
  width: clamp(60px, 16vw, 102.4px);
  height: clamp(34px, 9.0666666667vw, 58.0266666667px);
  display: block;
}
.header__btn-item + .header__btn-item {
  margin-left: clamp(6px, 1.6vw, 10.24px);
}
.header__menu-btn {
  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-left: clamp(15px, 4vw, 25.6px);
  width: clamp(20px, 5.3333333333vw, 34.1333333333px);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header__menu-btn--close {
  display: none;
}
.header__nav {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #ECDCC7;
  top: clamp(64px, 17.0666666667vw, 109.2266666667px);
}
.header__nav .inner-block {
  padding: clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.header__nav[hidden] {
  display: none;
}
.header__nav-list {
  display: block;
}
.header__nav-item a {
  display: block;
  font-size: clamp(16px, 4.2666666667vw, 27.3066666667px);
}
.header__nav-item + .header__nav-item {
  margin-top: clamp(10px, 2.6666666667vw, 17.0666666667px);
}
.header.is-open {
  background-color: #ECDCC7;
}
.header.is-open .header__menu-btn {
  display: none;
}
.header.is-open .header__menu-btn--close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header.is-open .header__nav {
  display: block;
}
.header.is-scroll {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ========== Common Utilities ==========
-------------------------------- */
.case-text {
  line-height: 2;
  margin: clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(0px, 0vw, 0px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(0px, 0vw, 0px);
  font-size: clamp(10px, 2.6666666667vw, 17.0666666667px);
}
.case-text--white {
  color: #fff;
}

.bold {
  font-weight: 600;
}

.mt0 {
  margin-top: 0;
}

/* ========== Hero ==========
-------------------------------- */
.hero {
  /* uses <h1><img></h1> only; layout handled by image asset */
}

/* ========== Showcase (旧 section02) ==========
-------------------------------- */
.showcase .inner-block {
  padding: clamp(0px, 0vw, 0px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(40px, 10.6666666667vw, 68.2666666667px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.showcase__case img {
  display: block;
  width: 100%;
  height: auto;
}
.showcase__monitor {
  margin: clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(-15px, -4vw, -25.6px) clamp(-15px, -4vw, -25.6px) clamp(-15px, -4vw, -25.6px);
}

/* ========== CTA Button Section (bands & shared list) ==========
-------------------------------- */
.btn-section {
  position: relative;
}
.btn-section__list {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: clamp(25px, 6.6666666667vw, 42.6666666667px);
}
.btn-section__item a {
  width: clamp(107px, 28.5333333333vw, 182.6133333333px);
  height: clamp(44px, 11.7333333333vw, 75.0933333333px);
  display: block;
}
.btn-section__item + .btn-section__item {
  margin-left: clamp(6px, 1.6vw, 10.24px);
}

/* CTA band (full-width banner with buttons) */
.cta-band {
  position: relative;
}
.cta-band__bg img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Concern (旧 section03) ==========
-------------------------------- */
.concern {
  background: url(../img/concern-bg.png) no-repeat center/cover;
}
.concern__doctor {
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.concern__text-block {
  padding: clamp(0px, 0vw, 0px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.concern__text-box {
  margin-top: clamp(30px, 8vw, 51.2px);
}
.concern__title {
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border-bottom: 1px solid #614A1E;
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: clamp(5px, 1.3333333333vw, 8.5333333333px);
  margin: clamp(0px, 0vw, 0px) clamp(-25px, -6.6666666667vw, -42.6666666667px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(-25px, -6.6666666667vw, -42.6666666667px);
}
.concern__title .text01 {
  font-size: clamp(26px, 6.9333333333vw, 44.3733333333px);
}
.concern__title .text02 {
  font-size: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.concern__text {
  line-height: 2;
  color: #614A1E;
  font-size: clamp(12px, 3.2vw, 20.48px);
}
.concern__text span {
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffe28a));
  background: linear-gradient(transparent 60%, #ffe28a 60%);
}
.concern__text--white {
  color: #fff;
}
.concern__text--white span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #BF6924));
  background: linear-gradient(transparent 60%, #BF6924 60%);
}
.concern__text .dot {
  font-weight: 600;
  position: relative;
}
.concern__text .dot::before {
  content: "・";
  position: absolute;
  top: clamp(-3px, -0.8vw, -5.12px);
  left: clamp(-10px, -2.6666666667vw, -17.0666666667px);
}
.concern__btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.concern__btn {
  margin-bottom: clamp(8px, 2.1333333333vw, 13.6533333333px);
  width: clamp(163px, 43.4666666667vw, 278.1866666667px);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.concern__btn:hover {
  opacity: 0.7;
}
.concern__btn--full {
  width: 100%;
}
.concern__subtitle {
  font-weight: 600;
  margin-top: clamp(10px, 2.6666666667vw, 17.0666666667px);
  font-size: clamp(14px, 3.7333333333vw, 23.8933333333px);
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  padding-left: clamp(15px, 4vw, 25.6px);
}
.concern__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  width: clamp(8px, 2.1333333333vw, 13.6533333333px);
  height: clamp(1px, 0.2666666667vw, 1.7066666667px);
  top: clamp(12px, 3.2vw, 20.48px);
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
}
.concern__subtitle span {
  font-size: clamp(10px, 2.6666666667vw, 17.0666666667px);
}
.concern__subtitle--white {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  font-size: clamp(16px, 4.2666666667vw, 27.3066666667px);
}
.concern__subtitle--white::before {
  background: #fff;
}
.concern__graph img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Modal ==========
-------------------------------- */
.modal {
  max-width: 640px;
  margin: auto;
  position: fixed;
  inset: 0;
  background: url(../img/concern-bg.png) no-repeat center/cover;
  z-index: 999;
  /* <div hidden> で非表示。念のための保険 */
}
.modal[hidden] {
  display: none;
}
.modal__inner {
  overflow: auto;
  height: 100vh;
  padding: clamp(35px, 9.3333333333vw, 59.7333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(35px, 9.3333333333vw, 59.7333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.modal__content {
  position: relative;
}
.modal__close {
  position: absolute;
  top: clamp(12px, 3.2vw, 20.48px);
  right: clamp(12px, 3.2vw, 20.48px);
  cursor: pointer;
  width: clamp(20px, 5.3333333333vw, 34.1333333333px);
  background: transparent;
  border: none;
  padding: 0;
}
.modal__title {
  font-size: clamp(24px, 6.4vw, 40.96px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.modal__title span {
  font-size: clamp(16px, 4.2666666667vw, 27.3066666667px);
}
.modal__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Reasons (旧 section04) ==========
-------------------------------- */
.reasons {
  background: url(../img/reason-bg.png) no-repeat center/cover;
}
.reasons .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.reasons__title-image {
  width: clamp(155px, 41.3333333333vw, 264.5333333333px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(0px, 0vw, 0px);
}
.reasons__title {
  margin-top: clamp(30px, 8vw, 51.2px);
}
.reasons__image {
  margin-top: clamp(20px, 5.3333333333vw, 34.1333333333px);
}

/* ========== Cases (旧 section05) ==========
-------------------------------- */
.cases .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(0px, 0vw, 0px) clamp(30px, 8vw, 51.2px) clamp(0px, 0vw, 0px);
}
.cases__title {
  font-size: clamp(28px, 7.4666666667vw, 47.7866666667px);
  font-weight: 500;
  text-align: center;
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.cases .case-text {
  margin-left: clamp(20px, 5.3333333333vw, 34.1333333333px);
  margin-right: clamp(20px, 5.3333333333vw, 34.1333333333px);
}

.case-slider {
  position: relative;
  overflow: hidden;
  /* ======= ナビ矢印 ======= */
}
.case-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.case-slider .swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.case-slider__image {
  overflow: hidden;
  background: #f5f5f5;
  margin-left: clamp(30px, 8vw, 51.2px);
  margin-right: clamp(30px, 8vw, 51.2px);
}
.case-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.case-slider .case-nav {
  position: absolute;
  top: 25%;
  z-index: 5;
  width: clamp(46px, 12.2666666667vw, 78.5066666667px);
  height: clamp(46px, 12.2666666667vw, 78.5066666667px);
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
}
.case-slider .case-nav img {
  height: auto;
  display: block;
}
.case-slider .case-prev {
  left: clamp(8px, 2.1333333333vw, 13.6533333333px);
}
.case-slider .case-next {
  right: clamp(8px, 2.1333333333vw, 13.6533333333px);
}

.case-btn {
  display: block;
  margin: clamp(0px, 0vw, 0px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(0px, 0vw, 0px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}

.showcase-slider {
  position: relative;
  overflow: hidden;
  /* ======= ナビ矢印 ======= */
}
.showcase-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.showcase-slider .swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.showcase-slider__image {
  overflow: hidden;
  background: #f5f5f5;
}
.showcase-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.showcase-slider .showcase-nav {
  position: absolute;
  top: 46%;
  z-index: 5;
  width: clamp(40px, 10.6666666667vw, 68.2666666667px);
  height: clamp(40px, 10.6666666667vw, 68.2666666667px);
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
}
.showcase-slider .showcase-nav img {
  height: auto;
  display: block;
}
.showcase-slider .showcase-prev {
  left: clamp(0px, 0vw, 0px);
}
.showcase-slider .showcase-next {
  right: clamp(0px, 0vw, 0px);
}

.showcase-btn {
  display: block;
  margin: clamp(0px, 0vw, 0px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(0px, 0vw, 0px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}

/* ========== Doctor (旧 section06) ==========
-------------------------------- */
.doctor {
  background: url(../img/concern-bg.png) no-repeat center/cover;
}
.doctor .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(50px, 13.3333333333vw, 85.3333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.doctor__title {
  font-size: clamp(28px, 7.4666666667vw, 47.7866666667px);
  font-weight: 500;
  text-align: center;
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.doctor__image01 img, .doctor__image02 img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Flow (旧 section07) ==========
-------------------------------- */
.flow {
  background: url(../img/flow-bg.png) no-repeat center/cover;
}
.flow .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(50px, 13.3333333333vw, 85.3333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.flow__title {
  font-size: clamp(28px, 7.4666666667vw, 47.7866666667px);
  font-weight: 500;
  text-align: center;
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.flow__step-title {
  margin-left: clamp(-50px, -13.3333333333vw, -85.3333333333px);
}
.flow__box {
  padding-left: clamp(50px, 13.3333333333vw, 85.3333333333px);
}
.flow__box + .flow__box {
  margin-top: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.flow__box-inn {
  position: relative;
}
.flow__box-inn::before {
  content: "";
  display: block;
  width: clamp(1px, 0.2666666667vw, 1.7066666667px);
  height: 100%;
  background-color: #614A1E;
  position: absolute;
  bottom: 0;
  left: clamp(-30px, -8vw, -51.2px);
}

/* ========== Banner (旧 section08) ==========
-------------------------------- */
.banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Price (旧 section09) ==========
-------------------------------- */
.price {
  background: url(../img/reason-bg.png) no-repeat center/cover;
}
.price .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(50px, 13.3333333333vw, 85.3333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.price__title {
  font-size: clamp(28px, 7.4666666667vw, 47.7866666667px);
  font-weight: 500;
  text-align: center;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
  color: #fff;
}
.price__subtitle {
  font-size: clamp(22px, 5.8666666667vw, 37.5466666667px);
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
  border-bottom: 1px solid #fff;
  display: block;
}
.price__subtitle div {
  margin-left: auto;
  margin-right: auto;
  width: clamp(290px, 77.3333333333vw, 494.9333333333px);
}
.price__desc {
  text-align: center;
  color: #fff;
}
.price__desc span {
  font-weight: 600;
  font-size: clamp(14px, 3.7333333333vw, 23.8933333333px);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #BF6924));
  background: linear-gradient(transparent 60%, #BF6924 60%);
}
.price__graph {
  margin-top: clamp(30px, 8vw, 51.2px);
}

/* ========== FAQ (旧 section10) ==========
-------------------------------- */
.faq {
  background: url(../img/qa-bg.png) no-repeat center/cover;
}
.faq .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(50px, 13.3333333333vw, 85.3333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.faq__title {
  font-size: clamp(28px, 7.4666666667vw, 47.7866666667px);
  font-weight: 500;
  text-align: center;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq__item {
  border: 1px solid #614A1E;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  /* accordion open state (JS: toggle aria-expanded/hidden) */
}
.faq__item + .faq__item {
  margin-top: clamp(15px, 4vw, 25.6px);
}
.faq__item.is-open .faq__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__item.is-open .faq__a {
  display: block !important;
}
.faq__q {
  width: 100%;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.faq__q .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(10px, 2.6666666667vw, 17.0666666667px);
}
.faq__big {
  width: 10%;
  font-size: clamp(24px, 6.4vw, 40.96px);
}
.faq__text {
  width: 90%;
  text-align: left;
  font-size: clamp(12px, 3.2vw, 20.48px);
  line-height: 2;
  padding-right: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.faq__a {
  display: none;
}
.faq__a .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #FFF8ED;
  padding: clamp(10px, 2.6666666667vw, 17.0666666667px);
}
.faq__a[hidden] {
  display: none;
}
.faq__arrow {
  position: absolute;
  width: clamp(8px, 2.1333333333vw, 13.6533333333px);
  height: clamp(3.5px, 0.9333333333vw, 5.9733333333px);
  top: clamp(20px, 5.3333333333vw, 34.1333333333px);
  right: clamp(10px, 2.6666666667vw, 17.0666666667px);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

/* ========== Details (旧 section11) ==========
-------------------------------- */
.details {
  background: url(../img/detail-bg.png) no-repeat center/cover;
}
.details .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(50px, 13.3333333333vw, 85.3333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.details__title {
  font-size: clamp(28px, 7.4666666667vw, 47.7866666667px);
  font-weight: 500;
  text-align: center;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.details__graph img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Access (旧 section12) ==========
-------------------------------- */
.access {
  background: url(../img/access-bg.png) no-repeat center/cover;
}
.access .inner-block {
  padding: clamp(30px, 8vw, 51.2px) clamp(20px, 5.3333333333vw, 34.1333333333px) clamp(50px, 13.3333333333vw, 85.3333333333px) clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.access__title {
  font-size: clamp(28px, 7.4666666667vw, 47.7866666667px);
  font-weight: 500;
  text-align: center;
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
  background: linear-gradient(135deg, #A7781F 0%, #211808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.access__list {
  margin-bottom: clamp(20px, 5.3333333333vw, 34.1333333333px);
}
.access__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #614A1E;
  padding: clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(10px, 2.6666666667vw, 17.0666666667px);
}
.access__th {
  font-size: clamp(12px, 3.2vw, 20.48px);
  width: 20%;
}
.access__td {
  font-size: clamp(12px, 3.2vw, 20.48px);
  width: 80%;
}
.access__map img {
  display: block;
  width: 100%;
  height: auto;
}
.access__map-link {
  text-align: right;
  margin-top: clamp(3px, 0.8vw, 5.12px);
  font-size: clamp(10px, 2.6666666667vw, 17.0666666667px);
}

/* ========== Footer ==========
-------------------------------- */
.footer {
  font-size: clamp(10px, 2.6666666667vw, 17.0666666667px);
  text-align: center;
}

/* ========== Floating CTA ==========
-------------------------------- */
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ECDCC7;
  z-index: 2;
  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;
  max-width: 640px;
  margin: auto;
  padding: clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(0px, 0vw, 0px) clamp(10px, 2.6666666667vw, 17.0666666667px) clamp(0px, 0vw, 0px);
  height: clamp(82px, 21.8666666667vw, 139.9466666667px);
}
.floating__text {
  width: clamp(168px, 44.8vw, 286.72px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(5px, 1.3333333333vw, 8.5333333333px);
}
.floating .btn-section__list {
  position: static;
}
.floating .btn-section__item {
  width: clamp(107px, 28.5333333333vw, 182.6133333333px);
  height: clamp(41px, 10.9333333333vw, 69.9733333333px);
}
@media (min-width: 641px) {
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  /* tel links not clickable on PC */
  a[href^="tel:"] {
    pointer-events: none;
  }
  .paging-area > * {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .paging-area > *:not(.dots):hover {
    background: blue;
    color: #fff;
  }
  #pagetop a {
    padding: 14.5px 21px;
  }
  #pagetop:hover a {
    background-color: #e1647b;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 10px;
    width: auto;
  }
  .wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  /* Prevent zoom on iOS Safari form controls */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
  #pagetop a {
    padding: 16px 21px;
  }
  #pagetop img {
    margin-top: 1px;
  }
}
/*# sourceMappingURL=style.css.map */