@charset "UTF-8";

/* ==================================================
   Variables
   ================================================== */
:root {
  --mh--breakpoint--min: 375px;
  --mh--breakpoint--sm: 640px;
  --mh--breakpoint--md: 768px;
  --mh--breakpoint--lg: 1100px;
  --mh--breakpoint--xl: 1024px;
  --mh--breakpoint--x2l: 1480px;
  --mh--breakpoint--x3l: 1760px;
  --mh--breakpoint--x4l: 1920px;

  --mh--font-family--base: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", meiryo, sans-serif;
  --mh--font-family--en: "Outfit", sans-serif;

  --mh--header--height: 65px;
  --mh--header-mv--height: 93px;
  --mh--sidebar--width: 240px;

  --mh--contents--width: 1400px;
  --mh--contents--wide-width: 1400px;
  --mh--contents--max-width: 1440px;
  --mh--contents--padding--side: 20px;
  --mh--contents--width-with-padding: calc(var(--mh--contents--width) + var(--mh--contents--padding--side) * 2);

  --mh--color--primary-100: rgb(216,229,230);
  --mh--color--primary-200: rgb(192,217,226);
  --mh--color--primary-300: rgb(170,218,238);
  --mh--color--primary-400: rgb(69,149,199);
  --mh--color--primary-500: rgb(60,105,156);
  --mh--color--primary-800: rgb(36,78,109);
  --mh--color--secondary-500: rgb(244,244,240);
  --mh--color--secondary-600: rgb(229,229,217);
  --mh--color--grayscale-100: rgb(255,255,255);
  --mh--color--grayscale-400: rgba(0,0,0,0.3);
  --mh--color--grayscale-500: rgba(0,0,0,0.5);
  --mh--color--grayscale-800: rgb(77,77,77);
  --mh--color--grayscale-900: rgb(0,0,0);

  --mh--easing: ease;
  --mh--duration: 0.3s;

  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 8px;

  --mh--font-size--xs: 1.2rem;
  --mh--font-size--sm: 1.3rem;
  --mh--font-size--md: 1.4rem;
  --mh--font-size--lg: 1.5rem;
  --mh--font-size--xl: 1.6rem;
  --mh--font-size--x2l: 1.7rem;
  --mh--font-size--x4l: 2rem;
  --mh--font-size--x6l: 2.4rem;
  --mh--font-size--x7l: 2.6rem;
  
  --mh--line-height--xs: 1.1;
  --mh--line-height--sm: 1.5;
  
  --mh--letter-spacing--lg: 0.1em;
}

@media (width >= 768px ) {
  html body {
    --mh--font-size--xs: 1.4rem;
    --mh--font-size--sm: 1.5rem;
    --mh--font-size--md: 1.6rem;
    --mh--font-size--lg: 1.8rem;
    --mh--font-size--xl: 2rem;
    --mh--font-size--x2l: 2.3rem;
    --mh--font-size--x4l: 2.9rem;
    --mh--font-size--x7l: 4.2rem;
  }
  
  :root {
    --mh--contents--padding--side: 40px;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 40px;
  }
}

@media (width >= 1280px ) {
  :root {
    --mh--header--height: 80px;
    --mh--header-mv--height: 93px;
  }
}
@media (width >= 1280px) {
  .u-hidden-xl-up {
    display: none !important;
  }
}
@media (width >= 1480px ) {
  :root {
    --mh--header-mv--height: 93px;
  }
}

/* ==================================================
   Base
   ================================================== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  background: transparent;
}
*::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: var(--mh--font-family--base);
  color: var(--mh--color--grayscale-800);
  background-color: var(--mh--color--secondary-500);
}
img, svg {
  max-inline-size: 100%;
  block-size: auto;
}
a[class] {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}

/* ==================================================
   Component: .c-cv-btn
   ================================================== */
.c-cv-btn {
  width: 100%;
}
.c-cv-btn.is-sm .c-cv-btn__in {
  gap: 5px;
  min-height: 40px;
}
.c-cv-btn.is-sm .c-cv-btn__ico::after {
  width: 16px !important;
  height: 16px !important;
}
.c-cv-btn.is-sm.is-tel .c-cv-btn__in {
  gap: 3px;
  min-height: 38px;
  font-size: var(--mh--font-size--xl);
}
.c-cv-btn.is-sm.is-tel .c-cv-btn__ico::after {
  width: 17px !important;
  height: 17px !important;
}
.c-cv-btn.is-primary .c-cv-btn__link {
  background-color: var(--mh--color--primary-500);
  color: var(--mh--color--grayscale-100);
}
.c-cv-btn.is-primary.is-tel .c-cv-btn__link {
  border-color: var(--mh--color--grayscale-900);
  color: var(--mh--color--grayscale-900);
}
.c-cv-btn.is-primary.is-tel .c-cv-btn__ico {
  color: var(--mh--color--primary-500);
}
.c-cv-btn.is-tel .c-cv-btn__link {
  background: none;
  border: 1px solid var(--mh--color--grayscale-100);
  color: var(--mh--color--grayscale-100);
}
.c-cv-btn.is-tel .c-cv-btn__in {
  min-height: 58px;
  padding-block: 8px 7px;
  font-size: var(--mh--font-size--x6l);
  line-height: var(--mh--line-height--xs);
  gap: 6px;
}
.c-cv-btn.is-tel .c-cv-btn__ico {
  padding-top: 0.083em;
}
.c-cv-btn.is-hd:not(.is-tel) .c-cv-btn__txt {
  font-size: var(--mh--font-size--lg);
}
.c-cv-btn__link {
  display: block;
  background-color: var(--mh--color--grayscale-100);
  border-radius: 100vmax;
  color: var(--mh--color--primary-500);
}
.c-cv-btn__in {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 60px;
  padding: 8px 8px 9px;
  font-weight: 500;
  letter-spacing: var(--mh--letter-spacing--lg);
  line-height: var(--mh--line-height--sm);
}
.c-cv-btn_txt {
  display: flex;
  align-items: center;
}

@media (width >= 768px ) {
  .c-cv-btn:not(.is-hd).is-sm .c-cv-btn__in {
    gap: 8px;
    min-height: 46px;
  }
  .c-cv-btn:not(.is-hd).is-sm .c-cv-btn__ico::after {
    width: 21px !important;
    height: 22px !important;
  }
  .c-cv-btn:not(.is-hd).is-sm.is-tel .c-cv-btn__in {
    gap: 3px;
    min-height: unset;
    font-size: var(--mh--font-size--x4l);
  }
  .c-cv-btn:not(.is-hd).is-sm.is-tel .c-cv-btn__ico {
    padding-top: 0;
  }
  .c-cv-btn:not(.is-hd).is-sm.is-tel .c-cv-btn__ico::after {
    width: 21px !important;
    height: 22px !important;
  }
  .c-cv-btn:not(.is-hd).is-tel .c-cv-btn__link {
    border: 0;
  }
  .c-cv-btn:not(.is-hd).is-tel .c-cv-btn__in {
    justify-content: flex-start;
    min-height: unset;
    padding: 0;
    font-size: var(--mh--font-size--x7l);
  }
  .c-cv-btn:not(.is-hd).is-tel .c-cv-btn__ico::after {
    width: 32px !important;
    height: 33px !important;
  }
  .c-cv-btn:not(.is-hd).is-line .c-cv-btn__ico::after {
    width: 25px !important;
    height: 26px !important;
  }
  .c-cv-btn:not(.is-hd) .c-cv-btn__in {
    min-height: 66px;
  }
  .c-cv-btn:not(.is-hd) .c-cv-btn__ico::after {
    width: 25px !important;
    height: 25px !important;
  }
}

@media (width < 1280px) {
  .c-cv-btn.is-hd .c-cv-btn__link {
    background-color: var(--mh--color--grayscale-100);
    color: var(--mh--color--primary-500);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  }
  .c-cv-btn.is-hd .c-cv-btn__link:hover {
    background-color: var(--mh--color--primary-100);
    box-shadow: 0 6px 20px rgba(60, 105, 156, 0.35);
  }
  .c-cv-btn.is-hd.is-tel .c-cv-btn__link {
    background: none;
    border-color: var(--mh--color--grayscale-900);
    color: var(--mh--color--grayscale-900);
  }
  .c-cv-btn.is-hd.is-tel .c-cv-btn__ico {
    color: var(--mh--color--primary-500);
  }
}

@media (width >= 1280px ) {
  .c-cv-btn.is-hd .c-cv-btn__link {
    background-color: var(--mh--color--grayscale-100);
    color: var(--mh--color--primary-500);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  .c-cv-btn.is-hd .c-cv-btn__link:hover {
    background-color: var(--mh--color--primary-100);
    box-shadow: 0 6px 20px rgba(60, 105, 156, 0.35);
    transform: translateY(-2px);
  }
  .c-cv-btn.is-hd:not(.is-tel) .c-cv-btn__txt {
    font-size: var(--mh--font-size--sm);
  }
  .c-cv-btn.is-hd .c-cv-btn__in {
    min-height: 45px;
    padding-top: 10px;
  }
  .c-cv-btn.is-hd .c-cv-btn__ico::after {
    width: 21px !important;
    height: 22px !important;
  }
  .c-cv-btn.is-hd.is-tel .c-cv-btn__link {
    border: 0;
  }
  .c-cv-btn.is-hd.is-tel .c-cv-btn__in {
    justify-content: flex-start;
    gap: 4px;
    min-height: unset;
    padding: 0;
    font-size: 1.6rem;
    color: var(--mh--color--grayscale-100);
    transition: color 0.48s var(--mh--easing);
  }
  .c-cv-btn.is-hd.is-tel .c-cv-btn__ico {
    padding-top: 0;
    transition: color 0.48s var(--mh--easing);
  }
  .c-cv-btn.is-hd.is-tel .c-cv-btn__ico::after {
    width: 21px !important;
    height: 22px !important;
  }
}

/* ==================================================
   Layout: .l-header
   ================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-width: 320px;
  opacity: 0;
  transform: translateY(-20rem);
  transition: opacity 0.48s var(--mh--easing), transform 0.48s var(--mh--easing);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.l-header.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.l-header::before, .l-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transition: top 0.48s var(--mh--easing), height 0.48s var(--mh--easing), opacity 0.48s var(--mh--easing);
  z-index: -1;
}
.l-header::before {
  left: 0;
  height: 86px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20554%2086%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M118.03%2069.5812C162.077%2046.7558%20189.13%2038.7512%20230.816%2034.0617C236.13%2033.3745%20242.986%2033.133%20250.532%2033.0587C271.66%2032.8823%20325.266%2048.9102%20390.081%2035.9839C411.018%2033.3002%20458.839%2011.1991%20460%200H0V84.9684C34.1389%2088.1164%2089.5159%2084.3555%20118.03%2069.5812Z%22%20fill%3D%22%23C0D9E2%22%2F%3E%3Cpath%20d%3D%22M314.875%200H0V70.7299C37.9333%2076.7651%2099.616%2080.873%20156.712%2064.1519C226%2043.8567%20231.286%2017.7707%20377.045%2017.7707C385.403%2017.1645%20396.186%2016.9383%20408.061%2016.884C441.291%2016.7302%20447.901%2018.4765%20470.136%2016.1149C503.059%2013.7352%20526.342%209.28347%20554%200H314.886H314.875Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
}
.l-header::after {
  right: 0;
  height: 76px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20149%2076%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M134.045%200H0C19.9014%200.250559%2036.1098%205.26175%2050.4284%2015.2456C77.0118%2033.7773%2070.9469%2047.3268%2095.0811%2064.4998C108.464%2074.0596%20129.561%2076.6712%20149%2075.8617V0H134.045Z%22%20fill%3D%22%233C699C%22%2F%3E%3C%2Fsvg%3E");
  background-position: right 0;
}
.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--mh--header--height);
  padding-inline: 15px;
  transition: height 0.48s var(--mh--easing), padding 0.48s var(--mh--easing);
  z-index: 11;
}

@media (width >= 768px ) {
  .l-header {
    width: 100%;
  }
}

@media (width >= 1280px ) {
  .l-header::before {
    top: 0;
    height: 154px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%201201%20180%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M265.302%20148.399C364.32%2099.7295%20425.116%2082.6496%20518.822%2072.6496C530.774%2071.1896%20546.17%2070.6596%20563.154%2070.5196C610.651%2070.1496%20731.146%20104.329%20876.842%2076.7496C923.889%2071.0196%201031.38%2023.8999%201034%200.0100098H0V177.249C76.732%20183.969%20201.211%20179.899%20265.302%20148.399Z%22%20fill%3D%22%23C0D9E2%22%2F%3E%3Cpath%20d%3D%22M682.62%200.01H0V145.19C82.24%20157.57%20215.95%20166.01%20339.72%20131.69C489.92%2090.04%20501.39%2036.49%20817.38%2036.49C835.51%2035.24%20858.87%2034.79%20884.62%2034.67C956.67%2034.35%20970.98%2037.94%201019.19%2033.09C1090.56%2028.19%201141.05%2019.06%201201%200H682.62V0.01Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  }
  .l-header::after {
    top: 0;
    height: 135px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%201320%20153%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M484.16%200H0C67.4002%207.9504%20130.098%2014.2587%20177.784%2031.5913C266.345%2063.7834%20273.981%2082.2075%20354.373%20112.037C428.676%20139.733%20574.499%20133.875%20646.782%20122.861C782.617%20102.154%20905.069%20115.962%201031.21%20142.556C1145.19%20164.275%201246.78%20150.136%201320%20118.415V0H484.16Z%22%20fill%3D%22%233C699C%22%2F%3E%3C%2Fsvg%3E");
  }
  .l-header .l-header__inner {
    padding-block: 27px 0;
    padding-inline: 30px;
    height: var(--mh--header-mv--height);
  }
}
@media (width >= 1480px ) {
  .l-header::before {
    height: 150px;
  }
  .l-header::after {
    height: 150px;
  }
  .l-header .l-header__inner {
    padding-block: 32px 0;
    padding-inline: 40px;
    height: var(--mh--header-mv--height); /* height should also be consistent */
  }
  .l-header .l-header-logo {
    width: 325px;
    flex: 0 0 325px;
  }
  .l-header .l-nav {
    gap: 30px;
  }
  .l-header .l-nav-list {
    gap: 25px;
  }
}

/* ==================================================
   Layout: .l-header-logo
   ================================================== */
.l-header-logo {
  flex-shrink: 0;
  transition: width 0.48s var(--mh--easing);
}
.l-header-logo__link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.l-header-logo__img {
  flex-shrink: 0;
  line-height: 0;
}
.logo-image {
  display: block;
  height: 36px;
  width: auto;
}
.l-header-logo__titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.l-header-logo__txt {
  font-family: "Noto Serif JP", serif;
  color: var(--mh--color--grayscale-800);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
  transition: color 0.48s var(--mh--easing);
}
.l-header-logo__site-name {
  font-family: "Noto Serif JP", serif;
  color: var(--mh--color--primary-500);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff;
}

@media (width >= 1280px ) {
  .l-header-logo {
    width: 264px;
    flex: 0 0 264px;
  }
  .logo-image {
    height: 46px;
  }
  .l-header-logo__txt {
    font-size: 1.3rem;
  }
  .l-header-logo__site-name {
    font-size: 2.2rem;
  }
}

/* ==================================================
   Layout: .l-nav-btn
   ================================================== */
.l-nav-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 40px;
  border: 0;
  transition: gap var(--mh--duration) var(--mh--easing);
  cursor: pointer;
}
.l-nav-btn::before {
  content: "";
  position: absolute;
  top: -13px;
  right: -15px;
  display: block;
  width: 100vw;
  height: 100svh;
  background-color: var(--mh--color--grayscale-100);
  transition: visibility 0.33s var(--mh--easing), opacity 0.33s var(--mh--easing);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.l-nav-btn__line {
  width: 30px;
  height: 1px;
  background-color: var(--mh--color--grayscale-100);
  transition: background-color var(--mh--duration) var(--mh--easing), transform var(--mh--duration) var(--mh--easing);
}
.l-nav-btn.is-open {
  gap: 0px;
}
.l-nav-btn.is-open::before {
  visibility: visible;
  opacity: 1;
}
.l-nav-btn.is-open .l-nav-btn__line {
  background-color: var(--mh--color--grayscale-900);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  transform: rotate(45deg);
}

@media (width >= 768px ) {
  .l-nav-btn::before {
    min-width: var(--mh--contents--width-with-padding);
  }
}

@media (width >= 1280px ) {
  .l-nav-btn {
    display: none;
  }
}

/* ==================================================
   Layout: .l-nav
   ================================================== */
.l-nav {
  position: fixed;
  top: var(--mh--header--height);
  left: 0;
  width: 100%;
  min-width: 320px;
  max-height: calc(100dvh - var(--mh--header--height));
  padding: 30px 40px calc(60px + env(safe-area-inset-bottom));
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}
@media (width < 1280px) {
  .l-nav {
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: visibility var(--mh--duration) var(--mh--easing), opacity var(--mh--duration) var(--mh--easing);
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    visibility: visible;
    opacity: 1;
  }
}
@media (width >= 1280px ) {
  .l-nav {
    position: static;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 0;
    transition: gap var(--mh--duration) var(--mh--easing);
  }
}

/* ==================================================
   Layout: .l-nav-list
   ================================================== */
.l-nav-list__item-link, .l-nav-list__item-en, .l-nav-list__item-txt {
  display: block;
}
.l-nav-list__item-en::first-letter {
  text-transform: uppercase;
}
.l-nav-list__item-txt {
  font-family: var(--mh--font-family--base);
  font-weight: 500;
  line-height: var(--mh--line-height--sm);
  letter-spacing: var(--mh--letter-spacing--lg);
}

@media (width < 1280px) {
  .l-nav-list {
    max-width: 500px;
    margin-inline: auto;
  }
  .l-nav-list__item {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--mh--color--grayscale-500);
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-top: 20px;
  }
  .l-nav-list__item-link {
    position: relative;
    padding-right: 54px;
  }
  .l-nav-list__item-txt {
    margin-top: 0;
    font-size: var(--mh--font-size--xs);
  }
  .l-nav-list__item-ico {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
}

@media (width >= 1280px ) {
  .l-nav-list__item-txt {
    font-size: 2rem;
    font-weight: 500;
  }
  .l-nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: gap var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__item {
    position: relative;
  }
  .l-nav-list__item-link {
    color: var(--mh--color--grayscale-100);
  }
  .l-nav-list__item-txt {
    transition: color 0.48s var(--mh--easing);
    color: var(--mh--color--grayscale-100);
    position: relative;
    padding-bottom: 4px;
  }
  .l-nav-list__item-txt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--mh--color--primary-300);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .l-nav-list__item-link:hover .l-nav-list__item-txt {
    color: var(--mh--color--primary-300);
  }
  .l-nav-list__item-link:hover .l-nav-list__item-txt::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .l-nav-list__item-txt:is(button) {
    position: relative;
    padding-right: 16px;
    border: 0;
    color: var(--mh--color--grayscale-100);
  }
  .l-nav-list__item-txt:is(button)::before, .l-nav-list__item-txt:is(button)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 2px;
    background-color: var(--mh--color--primary-300);
    transition: transform var(--mh--duration) var(--mh--easing);
  }
  .l-nav-list__item-link.is-active .l-nav-list__item-txt {
    color: var(--mh--color--primary-300);
  }
  .l-nav-list__item-link.is-active .l-nav-list__item-txt::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* ==================================================
   Layout: .l-nav-cv
   ================================================== */
.l-nav-cv {
  display: flex;
  gap: 15px 0;
}
@media (width < 1280px) {
  .l-nav-cv {
    flex-direction: column;
    max-width: 320px;
    margin: 40px auto 0;
  }
}
@media (width >= 1280px ) {
  .l-nav-cv {
    justify-content: flex-end;
    align-items: center;
    width: fit-content;
  }
  .l-nav-cv__btn {
    width: fit-content;
  }
}

/* .l-nav-overlay */
.l-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: none;
}
@media (width < 1280px) {
  .l-nav-overlay {
    background-color: var(--mh--color--grayscale-100);
  }
}
/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: baseline;
}
.c-ico svg {
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-arw01
================================================== */
.c-ico.is-arw01::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  color: currentColor;
  content: "";
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7.53 1L6.21 2.32L10.27 6.08H0V7.92H10.26L6.2 11.68L7.52 13L13.99 7L7.53 1Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7.53 1L6.21 2.32L10.27 6.08H0V7.92H10.26L6.2 11.68L7.52 13L13.99 7L7.53 1Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all var(--mh--duration) var(--mh--easing);
}
.c-ico-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 24px;
  background-color: var(--mh--color--primary-500);
  border-radius: 100vmax;
  color: var(--mh--color--grayscale-100);
  line-height: 0;
}
.is-white .c-ico-wrap {
  background-color: var(--mh--color--grayscale-100);
  color: var(--mh--color--primary-500);
}
@media (width >= 768px ) {
  .c-ico-wrap {
    width: 52px;
    height: 28px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-ico-link .c-ico-wrap {
    transition: background-color var(--mh--duration) var(--mh--easing);
  }
  .c-ico-link:hover .c-ico-wrap {
    background-color: var(--mh--color--primary-400);
  }
  .c-ico-link.is-white:hover .c-ico-wrap {
    background-color: var(--mh--color--primary-300);
  }
  .is-white .c-ico-link:hover .c-ico-wrap {
    background-color: var(--mh--color--primary-300);
  }
}
/* .c-ico.is-arw02
================================================== */
.c-ico.is-arw02 {
  margin-left: 5px;
  color: green;
}
.c-ico.is-arw02::after {
  display: inline-block;
  width: 6px;
  height: 10px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.516 9.032"><path d="M0,8.032a1,1,0,0,1-.707-.293,1,1,0,0,1,0-1.414L2.1,3.516-.707.707a1,1,0,0,1,0-1.414,1,1,0,0,1,1.414,0L4.223,2.809a1,1,0,0,1,0,1.414L.707,7.739A1,1,0,0,1,0,8.032Z" transform="translate(1 1)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-arw03
================================================== */
.c-ico.is-arw03 {
  margin-left: 5px;
}
.c-ico.is-arw03::after {
  display: inline-block;
  width: 22px;
  height: 11px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.917 10.727"><path d="M14.812,9.212l3.014-2.848H0v-2H17.827L14.812,1.515,16.261,0l5.656,5.363-5.656,5.363Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.917 10.727"><path d="M14.812,9.212l3.014-2.848H0v-2H17.827L14.812,1.515,16.261,0l5.656,5.363-5.656,5.363Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
  background: linear-gradient(to right, rgb(34, 193, 195) 0%, rgb(253, 187, 45) 100%);
}
/* .c-ico.is-blank01
================================================== */
.c-ico.is-blank01 {
  margin-left: 5px;
  color: red;
}
.c-ico.is-blank01::after {
  display: inline-block;
  width: 10px;
  height: 9px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.004 8.998"><path d="M7566,22026v-5.334h1.78v.891h-.89v3.553h3.56v-.889h.885V22026Zm2.67-2.67V22018H7574v5.328Zm.89-.885h3.554v-3.559h-3.554Z" transform="translate(-7565.498 -22017.502)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-blank02
================================================== */
.c-ico.is-blank02 {
  margin-left: 5px;
  color: green;
}
.c-ico.is-blank02::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.435 13.434"><path d="M15333.549,2248.428a.56.56,0,0,1-.559-.562V2237.79a.559.559,0,0,1,.559-.558h4.479a.56.56,0,1,1,0,1.121h-3.917v8.955h8.954v-3.917a.561.561,0,1,1,1.121,0v4.475a.56.56,0,0,1-.562.562Zm5.2-5.762a.562.562,0,0,1,0-.793l5.762-5.762h-3.686a.558.558,0,1,1,0-1.117h5.038a.559.559,0,0,1,.559.559v5.038a.559.559,0,0,1-1.117,0V2236.9l-5.762,5.762a.568.568,0,0,1-.794,0Z" transform="translate(-15332.99 -2234.994)"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.435 13.434"><path d="M15333.549,2248.428a.56.56,0,0,1-.559-.562V2237.79a.559.559,0,0,1,.559-.558h4.479a.56.56,0,1,1,0,1.121h-3.917v8.955h8.954v-3.917a.561.561,0,1,1,1.121,0v4.475a.56.56,0,0,1-.562.562Zm5.2-5.762a.562.562,0,0,1,0-.793l5.762-5.762h-3.686a.558.558,0,1,1,0-1.117h5.038a.559.559,0,0,1,.559.559v5.038a.559.559,0,0,1-1.117,0V2236.9l-5.762,5.762a.568.568,0,0,1-.794,0Z" transform="translate(-15332.99 -2234.994)"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-blank03
================================================== */
.c-ico.is-blank03 {
  margin-left: 5px;
}
.c-ico.is-blank03::after {
  background: linear-gradient(to right, rgb(34, 193, 195) 0%, rgb(253, 187, 45) 100%);
}
/* .c-ico.is-mail01
================================================== */
.c-ico.is-mail01 {
  margin-right: 5px;
  color: skyblue;
}
.c-ico.is-mail01::after {
  display: inline-block;
  width: 17px;
  height: 13px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12.147"><path d="M16.19,1.415v9.923H.81V1.415L8.5,8.29ZM1.348.81h14.3L8.5,7.2ZM0,12.147H17V0H0Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 12.147"><path d="M16.19,1.415v9.923H.81V1.415L8.5,8.29ZM1.348.81h14.3L8.5,7.2ZM0,12.147H17V0H0Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-map01
================================================== */
.c-ico.is-map01 {
  line-height: 0;
}
.c-ico.is-map01::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  color: currentColor;
  content: "";
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2023%22%3E%20%3Cpath%20d%3D%22M11.5%2023C11.2%2023%2010.92%2022.87%2010.73%2022.64C9.94%2021.7%203%2013.28%203%208.5C3%203.72%206.57%200%2011.5%200C16.43%200%2020%203.57%2020%208.5C20%2013.43%2013.06%2021.7%2012.27%2022.64C12.08%2022.87%2011.8%2023%2011.5%2023ZM11.5%202C7.67%202%205%204.67%205%208.5C5%2011.56%209.16%2017.46%2011.5%2020.41C13.84%2017.45%2018%2011.56%2018%208.5C18%204.67%2015.33%202%2011.5%202Z%22%20fill%3D%22%233C699C%22%2F%3E%20%3Cpath%20d%3D%22M11.5%2010.5C12.6046%2010.5%2013.5%209.60457%2013.5%208.5C13.5%207.39543%2012.6046%206.5%2011.5%206.5C10.3954%206.5%209.5%207.39543%209.5%208.5C9.5%209.60457%2010.3954%2010.5%2011.5%2010.5Z%22%20fill%3D%22%233C699C%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2023%22%3E%20%3Cpath%20d%3D%22M11.5%2023C11.2%2023%2010.92%2022.87%2010.73%2022.64C9.94%2021.7%203%2013.28%203%208.5C3%203.72%206.57%200%2011.5%200C16.43%200%2020%203.57%2020%208.5C20%2013.43%2013.06%2021.7%2012.27%2022.64C12.08%2022.87%2011.8%2023%2011.5%2023ZM11.5%202C7.67%202%205%204.67%205%208.5C5%2011.56%209.16%2017.46%2011.5%2020.41C13.84%2017.45%2018%2011.56%2018%208.5C18%204.67%2015.33%202%2011.5%202Z%22%20fill%3D%22%233C699C%22%2F%3E%20%3Cpath%20d%3D%22M11.5%2010.5C12.6046%2010.5%2013.5%209.60457%2013.5%208.5C13.5%207.39543%2012.6046%206.5%2011.5%206.5C10.3954%206.5%209.5%207.39543%209.5%208.5C9.5%209.60457%2010.3954%2010.5%2011.5%2010.5Z%22%20fill%3D%22%233C699C%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-map02
================================================== */
.c-ico.is-map02 {
  line-height: 0;
}
.c-ico.is-map02::after {
  display: inline-block;
  width: 17px;
  height: 24px;
  color: currentColor;
  content: "";
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2024%22%3E%20%3Cpath%20d%3D%22M8.76452%200.554199C4.2162%200.554199%200.529053%204.77512%200.529053%209.98039C0.529053%2015.1857%207.00183%2023.4459%208.76452%2023.4459C10.5266%2023.4459%2017%2015.1857%2017%209.98039C17%204.77512%2013.3129%200.554199%208.76452%200.554199ZM8.76452%2014.3068C6.67651%2014.3068%204.9846%2012.3696%204.9846%209.98039C4.9846%207.59049%206.67651%205.65395%208.76452%205.65395C10.8519%205.65395%2012.5444%207.59049%2012.5444%209.98039C12.5444%2012.3696%2010.8519%2014.3068%208.76452%2014.3068Z%22%20fill%3D%22%233C699C%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2024%22%3E%20%3Cpath%20d%3D%22M8.76452%200.554199C4.2162%200.554199%200.529053%204.77512%200.529053%209.98039C0.529053%2015.1857%207.00183%2023.4459%208.76452%2023.4459C10.5266%2023.4459%2017%2015.1857%2017%209.98039C17%204.77512%2013.3129%200.554199%208.76452%200.554199ZM8.76452%2014.3068C6.67651%2014.3068%204.9846%2012.3696%204.9846%209.98039C4.9846%207.59049%206.67651%205.65395%208.76452%205.65395C10.8519%205.65395%2012.5444%207.59049%2012.5444%209.98039C12.5444%2012.3696%2010.8519%2014.3068%208.76452%2014.3068Z%22%20fill%3D%22%233C699C%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-search01
================================================== */
.c-ico.is-search01 {
  margin-right: 5px;
  color: red;
}
.c-ico.is-search01::after {
  display: inline-block;
  width: 19px;
  height: 19px;
  color: currentColor;
  content: "";
  background-color: currentcolor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.814 18.814"><path d="M12491.646,13519.027l-4.409-4.409,0,0a7.6,7.6,0,1,1,1.386-1.387l4.409,4.413a.979.979,0,0,1,0,1.381.975.975,0,0,1-1.384,0Zm-14.97-10.43a5.922,5.922,0,1,0,5.921-5.921A5.926,5.926,0,0,0,12476.677,13508.6Z" transform="translate(-12474.751 -13500.751)" stroke-width="0.5"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.814 18.814"><path d="M12491.646,13519.027l-4.409-4.409,0,0a7.6,7.6,0,1,1,1.386-1.387l4.409,4.413a.979.979,0,0,1,0,1.381.975.975,0,0,1-1.384,0Zm-14.97-10.43a5.922,5.922,0,1,0,5.921-5.921A5.926,5.926,0,0,0,12476.677,13508.6Z" transform="translate(-12474.751 -13500.751)" stroke-width="0.5"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-tel01
================================================== */
.c-ico.is-tel01 {
  line-height: 0;
}
.c-ico.is-tel01::after {
  display: inline-block;
  width: 22px;
  height: 23px;
  color: currentColor;
  content: "";
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2233%22%20viewBox%3D%220%200%2032%2033%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M24.4452%2031.1501C24.3617%2031.1501%2024.2643%2031.1501%2024.1809%2031.1501C22.7617%2031.0527%2021.6348%2030.8997%2020.8417%2030.691C16.7513%2029.6336%2012.5496%2027.0875%209.01565%2023.5536C5.48174%2020.0196%202.92174%2015.7901%201.85044%2011.7136C1.64174%2010.9205%201.4887%209.79356%201.39131%208.37443C1.29391%206.92748%201.98957%205.52226%203.18609%204.7153L6.63652%202.41965C7.38783%201.91878%208.32%201.76574%209.19652%201.98835C10.073%202.21095%2010.8104%202.80921%2011.2278%203.60226L14.0104%208.97269C14.7061%2010.3362%2014.3443%2011.9918%2013.1478%2012.9379L11.5617%2014.1762C12.327%2015.4979%2013.1617%2016.6527%2014.5252%2018.0162C15.847%2019.3379%2017.0017%2020.1727%2018.2817%2020.9379L19.5339%2019.3379C20.4661%2018.1414%2022.1357%2017.7657%2023.4991%2018.4753L28.8974%2021.2718C29.6904%2021.6753%2030.2748%2022.4127%2030.5113%2023.2753C30.7478%2024.1379%2030.5948%2025.0701%2030.1078%2025.8075L27.8678%2029.2857C27.1165%2030.4544%2025.8226%2031.1501%2024.4452%2031.1501ZM8.40348%204.67356C8.40348%204.67356%208.26435%204.68748%208.18087%204.74313L4.74435%207.03878C4.3687%207.28921%204.14609%207.73443%204.17391%208.19356C4.25739%209.404%204.38261%2010.4057%204.54957%2011.0179C5.49565%2014.6353%207.76348%2018.3918%2010.9635%2021.5779C14.1635%2024.764%2017.92%2027.0597%2021.5235%2027.9918C22.1357%2028.1588%2023.1235%2028.284%2024.3478%2028.3675C24.807%2028.3953%2025.2522%2028.1727%2025.5165%2027.7831L27.7565%2024.3049C27.84%2024.1797%2027.8261%2024.0544%2027.8122%2023.9849C27.7983%2023.9153%2027.7426%2023.804%2027.6174%2023.7344L22.2191%2020.9379C22.0522%2020.8544%2021.8435%2020.8962%2021.7322%2021.0492L19.7426%2023.5953C19.3252%2024.124%2018.5878%2024.291%2017.9896%2023.957C16.0974%2022.9414%2014.4557%2021.8701%2012.5635%2019.9779C10.6296%2018.044%209.58609%2016.4301%208.54261%2014.4544C8.22261%2013.8562%208.38957%2013.1188%208.91826%2012.7014L11.4365%2010.7396C11.5896%2010.6283%2011.6313%2010.4197%2011.5478%2010.2527L8.76522%204.88226C8.69565%204.75704%208.59826%204.70139%208.51478%204.68748C8.48696%204.68748%208.45913%204.68748%208.41739%204.68748L8.40348%204.67356Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2233%22%20viewBox%3D%220%200%2032%2033%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M24.4452%2031.1501C24.3617%2031.1501%2024.2643%2031.1501%2024.1809%2031.1501C22.7617%2031.0527%2021.6348%2030.8997%2020.8417%2030.691C16.7513%2029.6336%2012.5496%2027.0875%209.01565%2023.5536C5.48174%2020.0196%202.92174%2015.7901%201.85044%2011.7136C1.64174%2010.9205%201.4887%209.79356%201.39131%208.37443C1.29391%206.92748%201.98957%205.52226%203.18609%204.7153L6.63652%202.41965C7.38783%201.91878%208.32%201.76574%209.19652%201.98835C10.073%202.21095%2010.8104%202.80921%2011.2278%203.60226L14.0104%208.97269C14.7061%2010.3362%2014.3443%2011.9918%2013.1478%2012.9379L11.5617%2014.1762C12.327%2015.4979%2013.1617%2016.6527%2014.5252%2018.0162C15.847%2019.3379%2017.0017%2020.1727%2018.2817%2020.9379L19.5339%2019.3379C20.4661%2018.1414%2022.1357%2017.7657%2023.4991%2018.4753L28.8974%2021.2718C29.6904%2021.6753%2030.2748%2022.4127%2030.5113%2023.2753C30.7478%2024.1379%2030.5948%2025.0701%2030.1078%2025.8075L27.8678%2029.2857C27.1165%2030.4544%2025.8226%2031.1501%2024.4452%2031.1501ZM8.40348%204.67356C8.40348%204.67356%208.26435%204.68748%208.18087%204.74313L4.74435%207.03878C4.3687%207.28921%204.14609%207.73443%204.17391%208.19356C4.25739%209.404%204.38261%2010.4057%204.54957%2011.0179C5.49565%2014.6353%207.76348%2018.3918%2010.9635%2021.5779C14.1635%2024.764%2017.92%2027.0597%2021.5235%2027.9918C22.1357%2028.1588%2023.1235%2028.284%2024.3478%2028.3675C24.807%2028.3953%2025.2522%2028.1727%2025.5165%2027.7831L27.7565%2024.3049C27.84%2024.1797%2027.8261%2024.0544%2027.8122%2023.9849C27.7983%2023.9153%2027.7426%2023.804%2027.6174%2023.7344L22.2191%2020.9379C22.0522%2020.8544%2021.8435%2020.8962%2021.7322%2021.0492L19.7426%2023.5953C19.3252%2024.124%2018.5878%2024.291%2017.9896%2023.957C16.0974%2022.9414%2014.4557%2021.8701%2012.5635%2019.9779C10.6296%2018.044%209.58609%2016.4301%208.54261%2014.4544C8.22261%2013.8562%208.38957%2013.1188%208.91826%2012.7014L11.4365%2010.7396C11.5896%2010.6283%2011.6313%2010.4197%2011.5478%2010.2527L8.76522%204.88226C8.69565%204.75704%208.59826%204.70139%208.51478%204.68748C8.48696%204.68748%208.45913%204.68748%208.41739%204.68748L8.40348%204.67356Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all var(--mh--duration) var(--mh--easing);
}
/* .c-ico.is-reserve01
================================================== */
.c-ico.is-reserve01 {
  line-height: 0;
}
.c-ico.is-reserve01::after {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: currentColor;
  content: "";
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226%22%20height%3D%2226%22%20viewBox%3D%220%200%2026%2026%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M19.8696%2015.4022L16.9131%2017.9565L15.8478%2016.8913C15.4239%2016.4674%2014.7391%2016.4674%2014.3152%2016.8913C13.8913%2017.3152%2013.8913%2018%2014.3152%2018.4239L16.0978%2020.2065C16.3044%2020.413%2016.587%2020.5217%2016.8696%2020.5217C17.1196%2020.5217%2017.3804%2020.4348%2017.5761%2020.2609L21.3044%2017.0435C21.7609%2016.6522%2021.8044%2015.9674%2021.413%2015.5109C21.0217%2015.0543%2020.337%2015%2019.8804%2015.4022H19.8696Z%22%20fill%3D%22%233C699C%22%2F%3E%20%3Cpath%20d%3D%22M17.8261%2010.1522C13.5978%2010.1522%2010.1522%2013.5978%2010.1522%2017.8261C10.1522%2019.1848%2010.5109%2020.4565%2011.1304%2021.5652H5.52175C5.15218%2021.5652%204.84783%2021.2609%204.84783%2020.8913V5.97826C4.84783%205.6087%205.15218%205.30435%205.52175%205.30435H7.73914V6.84783C7.73914%207.44565%208.22827%207.93478%208.82609%207.93478C9.42392%207.93478%209.91305%207.44565%209.91305%206.84783V5.30435H16.5217V6.84783C16.5217%207.44565%2017.0109%207.93478%2017.6087%207.93478C18.2065%207.93478%2018.6957%207.44565%2018.6957%206.84783V5.30435H20.913C21.2826%205.30435%2021.587%205.6087%2021.587%205.97826V8.80435C21.587%209.40217%2022.0761%209.8913%2022.6739%209.8913C23.2717%209.8913%2023.7609%209.40217%2023.7609%208.80435V5.97826C23.7609%204.41304%2022.4891%203.13043%2020.913%203.13043H18.6957V1.58696C18.6957%200.98913%2018.2065%200.5%2017.6087%200.5%2017.0109%200.5%2016.5217%200.98913%2016.5217%201.58696V3.13043H9.91305V1.58696C9.91305%200.98913%209.42392%200.5%208.82609%200.5%208.22827%200.5%207.73914%200.98913%207.73914%201.58696V3.13043H5.52175C3.95653%203.13043%202.67392%204.40217%202.67392%205.97826V20.9022C2.67392%2022.4674%203.94566%2023.75%205.52175%2023.75H12.9565C14.2826%2024.8478%2015.9891%2025.5109%2017.837%2025.5109C22.0652%2025.5109%2025.5109%2022.0652%2025.5109%2017.837C25.5109%2013.6087%2022.0652%2010.163%2017.837%2010.163L17.8261%2010.1522ZM17.8261%2023.3261C14.7935%2023.3261%2012.3261%2020.8587%2012.3261%2017.8261C12.3261%2014.7935%2014.7935%2012.3261%2017.8261%2012.3261C20.8587%2012.3261%2023.3261%2014.7935%2023.3261%2017.8261C23.3261%2020.8587%2020.8587%2023.3261%2017.8261%2023.3261Z%22%20fill%3D%22%233C699C%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* ==================================================
   Common Layout
   ================================================== */
.container {
  width: 100%;
  max-width: var(--mh--contents--width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--mh--contents--padding--side);
  padding-right: var(--mh--contents--padding--side);
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header.is-left {
  text-align: center; /* 左寄せから中央寄せに変更 */
  margin-bottom: 30px;
}

.section-label {
  font-family: var(--mh--font-family--en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--mh--color--primary-400);
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--mh--font-family--base);
  font-size: 2.4rem;
  color: var(--mh--color--primary-800);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.2rem;
  }
}

/* ==================================================
   Hero Section
   ================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--mh--color--primary-800);
  background-color: #fff;
}

.hero-bg {
  position: relative;
  width: 55%;
  min-height: 100%;
  order: 2;
  clip-path: url(#hero-wave-clip);
  background-color: transparent;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s var(--mh--easing);
}
.hero-bg.is-shown {
  opacity: 1;
  transform: scale(1);
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 2;
}

.hero-bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.8s ease-in-out, transform 5s ease-out;
}

.hero-bg__inner img.is-active {
  opacity: 1;
  transform: scale(1.14);
}

.hero-content {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 120px var(--mh--contents--padding--side) 60px;
  order: 1;
  background-color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s var(--mh--easing), transform 1.2s var(--mh--easing);
}
.hero-content.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.hero-inner-content {
  max-width: 600px;
  margin-left: auto;
  padding-right: 60px;
}

/* Hero Title Wrapper with Accent Line */
.hero-title-wrapper {
  display: flex;
  align-items: stretch;
  gap: 25px;
  margin-bottom: 35px;
}

.hero-accent-line {
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--mh--color--primary-400) 0%,
    var(--mh--color--primary-200) 100%
  );
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-title-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-subtitle {
  display: block;
  font-family: var(--mh--font-family--en);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--mh--color--primary-400);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
}

.hero-subtitle::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--mh--color--primary-300);
  margin-left: 15px;
  vertical-align: middle;
}

.hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}

.hero-title__blue {
  display: block;
  color: var(--mh--color--primary-500);
  position: relative;
}

.hero-title__black {
  display: block;
  color: var(--mh--color--grayscale-900);
  position: relative;
}

.hero-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 35px;
  color: var(--mh--color--grayscale-800);
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.6rem;
  }
}

@media (min-width: 1280px) {
  .hero-text {
    font-size: 1.7rem;
    line-height: 2.1;
  }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-info-btn {
  width: auto;
  min-width: 220px;
  flex: 0 0 auto;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 20px 14px 32px !important;
}

@media (max-width: 767px) {
  .hero-info-btn {
    width: 100%;
    flex: none;
    min-width: 0;
  }
}

.hero-info-btn__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 10px;
}

.hero-info-btn__icon::before,
.hero-info-btn__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.hero-info-btn__icon::before {
  width: 12px;
  height: 2px;
}

.hero-info-btn__icon::after {
  width: 2px;
  height: 12px;
}

.hero-info-btn.is-active .hero-info-btn__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.hero-info-btn.is-active.btn-primary {
  background-color: var(--mh--color--primary-500);
  border: none;
}

.hero-info-btn.is-active.btn-outline {
  background-color: var(--mh--color--primary-100);
  border-color: var(--mh--color--primary-400);
  color: var(--mh--color--primary-800);
}

.hero-info-panel {
  margin-top: 15px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-info-content {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.hero-info-content.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes heroInfoFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-info-inner {
  padding: 15px 0;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--mh--color--primary-500);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  box-shadow: none;
}

@media (max-width: 767px) {
  .hero-info-inner {
    padding: 10px 0;
    font-size: 1.4rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100vmax;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  border: none;
  outline: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--mh--color--primary-500);
  color: #fff !important;
  padding: 14px 32px;
}

.btn-primary:hover,
.btn-outline:hover {
  background-color: var(--mh--color--primary-400);
  border-color: var(--mh--color--primary-400);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--mh--color--primary-500) !important;
  color: var(--mh--color--primary-500);
  background: #fff;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
}

.wave-divider .shape-fill {
  fill: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.hero-scroll__text {
  font-family: var(--mh--font-family--en);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--mh--color--primary-500);
  text-transform: uppercase;
}

.hero-scroll__icon {
  width: 24px;
  height: 24px;
  color: var(--mh--color--primary-500);
  animation: hero-scroll-down 2s infinite;
}

.hero-scroll__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes hero-scroll-down {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* Hero responsive - mobile first */
@media (max-width: 767px) {
  .hero {
    flex-direction: column;
  }
  .hero-content {
    width: 100%;
    padding: 120px var(--mh--contents--padding--side) 40px;
    order: 1;
  }
  .hero-inner-content {
    max-width: none;
    margin-left: 0;
    padding-right: 0;
  }
  .hero-bg {
    width: 100%;
    height: 300px;
    order: 2;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-title-wrapper {
    gap: 18px;
    margin-bottom: 25px;
  }
  .hero-accent-line {
    width: 2px;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .hero-subtitle::after {
    width: 20px;
    margin-left: 10px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .wave-divider svg {
    height: 120px;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.8rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
  .hero-subtitle::after {
    width: 40px;
  }
  .hero-title-wrapper {
    gap: 30px;
  }
  .hero-accent-line {
    width: 4px;
  }
}

/* ==================================================
   News Section Layout
   ================================================== */
.news-section {
  background-color: #fff;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}

/* 
.news-section .wave-divider {
  position: absolute;
  top: -119px; 
  left: 0;
  width: 100%;
  height: 120px;
  line-height: 0;
  transform: rotate(180deg); 
}

.news-section .wave-divider svg {
  width: 100%;
  height: 100%;
}

.news-section .wave-divider .shape-fill {
  fill: #fff; 
}
*/

@media (min-width: 768px) {
  .news-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.news-flex-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 1100px) {
  .news-flex-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

.news-left {
  flex: 1;
  min-width: 0;
}

.news-right {
  flex: 0 0 100%;
}

.news-section .container {
  max-width: var(--mh--contents--width);
}

@media (min-width: 1100px) {
  .news-left {
    flex: 1; /* 残りのスペースをすべて使う */
    min-width: 0;
  }
  .news-right {
    flex: 0 0 600px; /* 急患診療の幅は固定 */
  }
}

/* ==================================================
   News List
   ================================================== */
.news-list {
  width: 100%;
}

.news-item {
  border-bottom: 1px solid var(--mh--color--primary-200);
}

.news-item:first-child {
  border-top: 1px solid var(--mh--color--primary-200);
}

.news-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  transition: opacity 0.3s;
}

.news-item__header:hover {
  opacity: 0.7;
}

.news-item__main {
  flex: 1;
}

.news-item__meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.news-date {
  color: var(--mh--color--primary-500);
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 15px;
}

.news-category {
  display: inline-block;
  background: var(--mh--color--primary-100);
  color: var(--mh--color--primary-500);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
}

.news-item__title {
  color: var(--mh--color--grayscale-900);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0;
  line-height: 1.5;
}

.news-item__icon {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-item__icon::before,
.news-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: var(--mh--color--primary-500);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.news-item__icon::after {
  width: 2px;
  height: 14px;
}

/* Open State icon animation */
.news-item.is-active .news-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.news-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.news-item__inner {
  padding: 0 0 25px 0;
  color: var(--mh--color--grayscale-800);
  font-size: 1.5rem;
  line-height: 1.8;
}

/* ==================================================
   Medical Hours Table
   ================================================== */
.medical-hours {
  background: transparent;
  padding: 0;
}

.medical-hours__title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--mh--color--primary-800);
  margin-bottom: 25px;
  font-weight: 700;
}

.medical-hours__title-icon {
  width: 24px;
  height: 24px;
  background-color: #ef4444; /* Emergency Red */
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
}

.medical-hours__title-icon::before,
.medical-hours__title-icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.medical-hours__title-icon::before { width: 12px; height: 3px; }
.medical-hours__title-icon::after { width: 3px; height: 12px; }

.medical-hours__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.medical-hours__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 1.6rem; /* 少し小さく調整 */
}

.medical-hours__table th,
.medical-hours__table td {
  border: 1px solid var(--mh--color--primary-200);
  padding: 12px 8px; /* パディングを絞って幅を節約 */
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.medical-hours__table td {
  font-weight: 500;
}

.medical-hours__table th {
  background-color: var(--mh--color--primary-100);
  color: var(--mh--color--primary-800);
  font-weight: 700;
  font-size: 1.5rem; /* ヘッダーも少し小さく */
  vertical-align: middle;
}

.medical-hours__table .td-subject {
  background-color: var(--mh--color--secondary-500);
  font-weight: 700;
  width: 120px; /* 十分な幅を確保 */
  vertical-align: middle;
}

.medical-hours__note {
  font-size: 1.5rem;
  color: var(--mh--color--primary-500);
  font-weight: 500;
  line-height: 1.6;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .news-item__header {
    padding: 20px 0;
  }
  
  .news-item__title {
    font-size: 1.5rem;
  }
}

/* ==================================================
   Wave Dividers
   ================================================== */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
}

.wave-divider .shape-fill {
  fill: #fff;
}

.wave-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(0deg); /* 180degから変更：新しいパスは上部を塗りつぶすため */
  z-index: 10; /* 大幅に増加させて、上のセクションの ::before（z-index: 1）より前に来るようにする */
}

.wave-divider-top svg {
  width: 100%;
  height: 60px;
}

.wave-divider-top .shape-fill {
  fill: #fff;
}

.wave-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}

.wave-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

@media (min-width: 768px) {
  .wave-divider svg,
  .wave-divider-top svg {
    height: 120px;
  }
}

/* ==================================================
   Services Section (Horizontal Card Layout)
   ================================================== */
.services-section {
  background-color: var(--mh--color--secondary-500);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

@media (min-width: 768px) {
  .services-section {
    padding-top: 160px;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 80px;
}

.service-card:nth-child(even) {
  direction: rtl;
}

.service-card:nth-child(even) .service-card__left,
.service-card:nth-child(even) .service-card__body {
  direction: ltr;
}

.service-card__left {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-right: none;
  position: relative;
}

.service-card__head {
  padding: 0 0 30px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card__number {
  font-family: var(--mh--font-family--en);
  font-size: 5rem;
  line-height: 0.8;
  font-weight: 800;
  color: var(--mh--color--primary-200);
  opacity: 0.6;
  letter-spacing: -0.05em;
  border: none;
  width: auto;
  height: auto;
  display: block;
}

.service-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--mh--color--primary-800);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.service-card__subtitle {
  font-size: 1.2rem;
  color: var(--mh--color--primary-500);
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-weight: 700;
  margin-top: 8px;
}

.service-card__illu-wrap {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

.service-card__illu-bg {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 70% 30% / 30% 70% 30% 70%;
  opacity: 0.12;
  filter: blur(50px);
  z-index: 0;
}

.service-card__illu-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__illu-content img {
  width: 100%;
  max-width: 520px;
  height: 380px;
  object-fit: cover;
  border-radius: 40px;
  filter: drop-shadow(0 12px 24px rgba(60, 105, 156, 0.15));
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-card__illu-content img {
  transform: translateY(-10px) scale(1.02);
}

.service-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__main-lead {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--mh--color--primary-800);
  line-height: 1.4;
  position: relative;
}

.service-card__main-lead::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--mh--color--primary-300);
  border-radius: 2px;
}

.service-card:nth-child(even) .service-card__main-lead::after {
  left: auto;
  right: 0;
}

.service-card__description {
  font-size: 1.6rem;
  color: #444;
  line-height: 2.2;
  margin-bottom: 45px;
}

.service-card__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}

.service-card__feature {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.service-card__feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: #3b699c;
}

.service-card__feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #3b699c;
}

.service-card__feature-line {
  width: 35px;
  height: 4px;
  background: #ffd966;
  margin-bottom: 15px;
  border-radius: 2px;
}

.service-card__feature-text {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
}

.service-card__more {
  margin-top: 20px;
  text-align: left; /* 左寄せに変更してボディのテキストフローに合わせる */
}

.service-card__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 18px 45px;
  border-radius: 100vmax;
  background: var(--mh--color--primary-500);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(59, 105, 156, 0.2);
}

.service-card__more-btn span {
  color: #fff !important;
}

.service-card__more-btn:hover {
  background: var(--mh--color--primary-400);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 105, 156, 0.3);
}

.service-card__more-btn--reserve {
  background: #fff !important;
  color: var(--mh--color--primary-500) !important;
  border: 2px solid var(--mh--color--primary-500);
  box-shadow: 0 10px 25px rgba(59, 105, 156, 0.1);
}

.service-card__more-btn--reserve span {
  color: var(--mh--color--primary-500) !important;
}

.service-card__more-btn--reserve:hover {
  background: var(--mh--color--primary-100) !important;
  border-color: var(--mh--color--primary-400);
}

.service-card__more {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.service-card:nth-child(even) .service-card__more {
  text-align: right;
  justify-content: flex-end;
}

@media (max-width: 1400px) {
  .service-card {
    grid-template-columns: 480px 1fr;
    gap: 50px;
  }
}

@media (max-width: 1100px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr !important;
  }
  .service-card__head,
  .service-card__body,
  .service-card__more {
    text-align: center !important;
  }
  .service-card__head {
    justify-content: center;
  }
  .service-card__main-lead::after {
    left: 0 !important;
    right: auto !important;
    transform: none;
  }
  .service-card__illu-content img {
    height: 300px;
    max-width: 100%;
  }
  .service-card__illu-wrap {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .service-card__features {
    grid-template-columns: 1fr;
  }
  .service-card__description {
    font-size: 1.2rem;
  }
  .service-card__main-lead {
    font-size: 1.5rem;
  }
  .service-card__title {
    font-size: 1.8rem;
  }
}

/* ==================================================
   Message Section
   ================================================== */

/* ==================================================
   Message Section
   ================================================== */
.about-section {
  background-color: #fff;
  padding-bottom: 100px;
}

.about-intro {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

@media (min-width: 900px) {
  .about-intro {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  
  .about-intro__image {
    flex: 0 0 28%;
    max-width: 320px;
    position: relative;
  }
  
  .about-intro__content {
    flex: 1;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--mh--color--primary-500);
  }
}

.about-intro__image img {
  width: 100%;
  border-radius: 62% 38% 46% 54% / 44% 58% 42% 56%;
  box-shadow: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: drop-shadow(0 12px 28px rgba(60, 105, 156, 0.18));
}

.about-intro__text {
  font-size: 1.7rem;
  line-height: 2.2;
  color: var(--mh--color--grayscale-800);
  margin: 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (min-width: 1000px) {
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
  }
  .about-history {
    flex: 1.5;
  }
  .about-business {
    flex: 1;
  }
}

.about-sub-title {
  font-size: 2.2rem;
  color: var(--mh--color--primary-700);
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--mh--color--primary-100);
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-sub-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 24px;
  background-color: var(--mh--color--primary-500);
  border-radius: 4px;
}

/* History List */
.history-list {
  display: flex;
  flex-direction: column;
}

.history-item {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  border-bottom: 1px solid var(--mh--color--grayscale-200);
  gap: 15px;
}

.history-item:first-child {
  padding-top: 0;
}

@media (min-width: 600px) {
  .history-item {
    flex-direction: row;
    gap: 40px;
  }
}

.history-date {
  font-weight: 700;
  color: var(--mh--color--primary-500);
  font-size: 1.8rem;
  flex: 0 0 150px;
  padding-top: 2px;
}

.history-desc {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--mh--color--grayscale-800);
}

/* Business Grid */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

@media (min-width: 1000px) {
  .business-grid {
    grid-template-columns: 1fr;
  }
}

.business-item {
  background-color: var(--mh--color--primary-50);
  padding: 25px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s var(--mh--easing), background-color 0.3s;
  text-decoration: none;
}

.business-item:hover {
  background-color: var(--mh--color--primary-100);
  transform: translateX(10px);
}

.business-item__icon {
  width: 44px;
  height: 44px;
  background-color: var(--mh--color--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.business-item__icon svg {
  width: 24px;
  height: 24px;
}

.business-item__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mh--color--primary-900);
}

/* ==================================================
   Facility Section (Splide)
   ================================================== */
.facility-section {
  background-color: var(--mh--color--primary-100);
  padding-bottom: 120px;
}

.facility-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

/* ページャーをスライド下部に表示 */
#facility-splide .splide__pagination {
  position: static;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

#facility-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mh--color--primary-200);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

#facility-splide .splide__pagination__page.is-active {
  background: var(--mh--color--primary-500);
  transform: scale(1.3);
}

/* ==================================================
   Access Section
   ================================================== */
.access-section {
  background-color: #fff;
}

.access-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .access-wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}

.access-info {
  flex: 1;
  padding: 0 60px 0 0;
}

.access-info h3.access-info__name {
  font-size: 2.8rem;
  color: var(--mh--color--primary-500);
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  padding-left: 0;
  border-left: none;
  line-height: 1.4;
}

.access-detail {
  display: flex;
  margin-bottom: 0;
  border-top: 1px solid var(--mh--color--primary-100);
  padding: 25px 0;
}

.access-detail:last-child {
  border-bottom: 1px solid var(--mh--color--primary-100);
}

.access-detail dt {
  flex: 0 0 120px;
  font-weight: 500;
  color: var(--mh--color--primary-500);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.access-detail dd {
  flex: 1;
  margin-left: 0;
  line-height: 1.8;
  font-size: 1.6rem;
  color: var(--mh--color--grayscale-800);
}

.access-sub-item {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.access-sub-item:last-child {
  margin-bottom: 0;
}

.access-label {
  flex: 0 0 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  background: var(--mh--color--primary-500);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  font-weight: 500;
}

.u-text-bold { font-weight: 700; }
.u-text-primary { color: var(--mh--color--primary-500); }
.u-text-lg { font-size: 1.8rem; }

@media (max-width: 767px) {
  .access-info {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .access-detail {
    flex-direction: column;
    gap: 10px;
  }
  .access-detail dt {
    flex: none;
  }
  .access-sub-item {
    flex-direction: column;
    gap: 5px;
  }
  .access-label {
    flex: none;
    width: 60px;
  }
}

.access-map {
  flex: 1;
  display: flex;
  min-height: 600px;
}

.access-map iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--border-radius-md);
}

/* ==================================================
   Footer
   ================================================== */
.footer {
  background-color: var(--mh--color--primary-500);
  color: #fff;
  padding: 50px 0 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-about {
    max-width: 300px;
  }
}

.footer-about {
  max-width: 360px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  white-space: nowrap;
}

.footer-text {
  font-size: 1.4rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 0;
  white-space: nowrap;
}

.footer-tel {
  color: #fff;
  text-decoration: none;
}
.footer-tel:hover {
  text-decoration: underline;
}

.footer-reserve-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--mh--color--grayscale-100);
  color: var(--mh--color--primary-800) !important;
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 100vmax;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.footer-reserve-btn:hover {
  background-color: var(--mh--color--primary-100);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.footer-navs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-nav h4 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  border-left: 3px solid var(--mh--color--primary-300);
  padding-left: 10px;
  letter-spacing: 0.05em;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}

.footer-nav li {
  margin-bottom: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.75;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 14px 0;
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ==================================================
   Calendar Section
   ================================================== */
.calendar-section {
  background-color: var(--mh--color--secondary-500);
}

.calendar-wrapper {
  display: flex;
  gap: 32px;
}

.calendar-item {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(60, 105, 156, 0.1);
}

.calendar-item iframe,
.calendar-item img {
  display: block;
  width: 100%;
}

@media (max-width: 767px) {
  .calendar-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

/* ==================================================
   Inner Page - Page Hero
   ================================================== */
.page-hero {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: var(--mh--color--primary-800);
  display: flex;
  align-items: flex-end;
}

/* パーティクルヒーロー */
.page-hero--particle .page-hero__bg { display: none; }
.page-hero--particle {
  background: linear-gradient(
    135deg,
    #b3d4e8 0%,
    #5090b8 50%,
    #244e6e 100%
  );
}

.page-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-width: 768px) {
  .page-hero {
    height: 310px;
  }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 48px;
}

.page-hero__label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--mh--color--primary-300);
  margin-bottom: 8px;
}

.page-hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (min-width: 768px) {
  .page-hero__title {
    font-size: 4.8rem;
  }
}

.page-hero__container {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.page-hero__heading {
  flex-shrink: 0;
}

.page-hero__container {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.page-hero__container .page-hero__title {
  flex-shrink: 0;
  white-space: nowrap;
}

.page-hero__sub {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #fff;
  margin: 0;
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.35);
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

@media (max-width: 767px) {
  .page-hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .page-hero__sub {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid rgba(255,255,255,0.35);
    padding-top: 16px;
  }
}

/* ==================================================
   Inner Page - Breadcrumb
   ================================================== */
.breadcrumb {
  background-color: var(--mh--color--secondary-500);
  padding: 12px 0;
  border-bottom: 1px solid var(--mh--color--primary-100);
}

.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 1.3rem;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '›';
  margin-right: 4px;
  opacity: 0.4;
}

.breadcrumb__item a {
  color: var(--mh--color--primary-500);
  text-decoration: none;
}

.breadcrumb__item a:hover {
  text-decoration: underline;
}

/* ==================================================
   Inner Page - Section Lead
   ================================================== */
.section-lead {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--mh--color--grayscale-700);
  margin-bottom: 48px;
  text-align: center;
}

@media (max-width: 767px) {
  .section-lead br {
    display: none;
  }
}

/* ==================================================
   Screening List
   ================================================== */
.screening-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .screening-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .screening-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.screening-item {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--mh--color--primary-400);
  box-shadow: 0 2px 12px rgba(60, 105, 156, 0.08);
}

.screening-item__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--mh--color--primary-500);
  margin-bottom: 10px;
}

.screening-item__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--mh--color--grayscale-700);
  margin: 0;
}

/* ==================================================
   Page Tab Navigation
   ================================================== */
.page-tab-nav {
  background: #fff;
  border-bottom: 1px solid var(--mh--color--primary-100);
  position: sticky;
  top: 72px;
  z-index: 80;
  box-shadow: 0 2px 8px rgba(60,105,156,0.07);
}

.page-tab-nav__list {
  list-style: none;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.page-tab-nav__list::-webkit-scrollbar { display: none; }

.page-tab-nav__link {
  display: block;
  padding: 16px 22px;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--mh--color--grayscale-800);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.page-tab-nav__link:hover,
.page-tab-nav__link.is-active {
  color: var(--mh--color--primary-500);
  border-bottom-color: var(--mh--color--primary-400);
}

/* ==================================================
   Screening Category Sections
   ================================================== */
/* ==================================================
   自動セクション塗り分け (White -> Beige -> White -> Blue 4テップループ)
   ヒーローセクション(1番目)を考慮したカウント
   ================================================== */
.screening-category {
  position: relative;
  background-color: #fff;
}

/*偶数番目 (2, 4, 6, 8...): 白 */
.screening-category:nth-of-type(2n) {
  background-color: #fff;
}

/* 4n+3 番目 (3, 7, 11...): ベージュ */
.screening-category:nth-of-type(4n+3) {
  background-color: var(--mh--color--secondary-500);
}

/* 4n+1 番目の2回目以降 (5, 9, 13...): 水色 */
.screening-category:nth-of-type(4n+1):not(:first-of-type) {
  background-color: var(--mh--color--primary-100);
}

/* 2番目(コンテンツ1つ目)以降のセクションに自動で波形を追加 */
/* ただし、ヒーロー直後の2番目には波を表示しない */
.screening-category:not(:first-of-type):not(:nth-of-type(2)) {
  padding-top: 100px;
}
@media (min-width: 768px) {
  .screening-category:not(:first-of-type):not(:nth-of-type(2)) {
    padding-top: 160px;
  }
}

.screening-category:not(:first-of-type):not(:nth-of-type(2))::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

/* 波の色調整（前のセクションの色を引き継ぐ） */
/* 白の後の「ベージュ」セクション(3, 7, 11...)の波を「白」に */
.screening-category:nth-of-type(4n+3)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 L1200,0 L1200,20 C1000,50 800,-10 600,40 C400,90 200,30 0,110 Z" fill="%23ffffff"/></svg>');
}
/* ベージュの後の「白」セクション(4, 8, 12...)の波を「ベージュ」に */
.screening-category:nth-of-type(4n)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 L1200,0 L1200,20 C1000,50 800,-10 600,40 C400,90 200,30 0,110 Z" fill="%23f4f4f0"/></svg>');
}
/* 白の後の「水色」セクション(5, 9, 13...)の波を「白」に */
.screening-category:nth-of-type(4n+1):not(:first-of-type)::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 L1200,0 L1200,20 C1000,50 800,-10 600,40 C400,90 200,30 0,110 Z" fill="%23ffffff"/></svg>');
}
/* 水色の後の「白」セクション(6, 10, 14...)の波を「水色」に */
.screening-category:nth-of-type(4n+2):not(:nth-of-type(2))::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 L1200,0 L1200,20 C1000,50 800,-10 600,40 C400,90 200,30 0,110 Z" fill="%23d8e5e6"/></svg>');
}


/* 以前の個別クラス定義を上書き/無効化 */
.screening-category--alt,
.screening-category--blue {
  background-color: transparent;
}



.screening-service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .screening-service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .screening-service-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.screening-service {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px 26px;
  box-shadow: 0 2px 16px rgba(60,105,156,0.08);
  border-top: 3px solid var(--mh--color--primary-300);
  transition: box-shadow 0.25s, transform 0.25s;
}
.screening-service:hover {
  box-shadow: 0 8px 28px rgba(60,105,156,0.14);
  transform: translateY(-3px);
}

.screening-category--alt .screening-service {
  background: #fff;
}

.screening-service__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.screening-service__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--mh--color--primary-100), var(--mh--color--primary-200));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mh--color--primary-500);
}
.screening-service__icon svg {
  width: 22px;
  height: 22px;
}

.screening-service__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mh--color--primary-800);
  line-height: 1.4;
}

.screening-service__text {
  font-size: 1.4rem;
  line-height: 1.85;
  color: var(--mh--color--grayscale-800);
  margin: 0;
}

/* ドットリスト variant (A2-③) */
.screening-service-list--dot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 80px;
  border-top: none;
}

.screening-service-list--dot .screening-service {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid var(--mh--color--primary-100);
  border-bottom: 1px solid var(--mh--color--primary-100);
  margin-bottom: -1px;
  width: 100%;
}
@media (min-width: 640px) {
  .screening-service-list--dot .screening-service {
    width: calc((100% - 80px) / 2);
  }
}
@media (min-width: 960px) {
  .screening-service-list--dot .screening-service {
    width: calc((100% - 160px) / 3);
  }
}
.screening-service-list--dot .screening-service:hover {
  box-shadow: none;
  transform: none;
}

.screening-service__dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--mh--color--primary-400);
  border-radius: 50%;
  margin-top: 10px;
}

.screening-service__body {
  flex: 1;
  min-width: 0;
}

.screening-service-list--dot .screening-service__title {
  margin-bottom: 0;
  padding-bottom: 8px;
  position: relative;
}
.screening-service-list--dot .screening-service__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--mh--color--primary-300);
  border-radius: 1px;
}
.screening-service-list--dot .screening-service__text {
  margin-top: 10px;
  word-break: break-all;
  overflow-wrap: break-word;
}

/* ==================================================
   人間ドック
   ================================================== */
.dock-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 960px) {
  .dock-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }
  .dock-card--basic {
    flex: 1;
    min-width: 0;
  }
  .dock-side {
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.dock-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 20px rgba(36,78,109,0.07);
}

.dock-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.dock-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mh--color--primary-800);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dock-card__title::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 18px;
  background: var(--mh--color--primary-400);
  border-radius: 2px;
}

.dock-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mh--color--primary-500);
  white-space: nowrap;
}
.dock-card__price small {
  font-size: 1.3rem;
  color: #aaa;
  margin-left: 2px;
}

.dock-exam-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0;
}
.dock-exam-cat {
  padding: 10px 20px 10px 0;
  border-bottom: 1px solid var(--mh--color--primary-100);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--mh--color--primary-400);
  line-height: 1.6;
  white-space: nowrap;
}
.dock-exam-val {
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--mh--color--primary-100);
  font-size: 1.2rem;
  color: var(--mh--color--primary-800);
  line-height: 1.7;
  border-left: 1px solid var(--mh--color--primary-100);
}
.dock-exam-list span:nth-child(-n+2) {
  border-top: 1px solid var(--mh--color--primary-100);
}

.dock-option-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dock-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--mh--color--primary-100);
}

.dock-option__body { flex: 1; min-width: 0; }
.dock-option__name {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--mh--color--primary-800);
  margin-bottom: 2px;
}
.dock-option__detail {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--mh--color--primary-800);
  line-height: 1.5;
}
.dock-option__price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mh--color--primary-500);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.dock-note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 16px;
}
@media (min-width: 960px) {
  .dock-exam-cat {
    font-size: 1.4rem;
  }
  .dock-exam-val {
    font-size: 1.4rem;
  }
  .dock-option__name {
    font-size: 1.5rem;
  }
  .dock-option__detail {
    font-size: 1.5rem;
  }
  .dock-option__price {
    font-size: 1.6rem;
  }
}

.dock-info-card {
  padding: 40px 0 0;
  text-align: center;
}
.dock-info-card--full {
  margin-top: 20px;
}
.dock-info-card--full .dock-info-rows {
  width: fit-content;
  margin: 0 auto;
  gap: 24px;
}
.dock-info-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--mh--color--primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mh--color--primary-200);
}
@media (min-width: 768px) {
  .dock-info-card__title {
    font-size: 3.2rem;
  }
}
.dock-info-card__title::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 18px;
  background: var(--mh--color--primary-400);
  border-radius: 2px;
}
.dock-info-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dock-info-row {
  display: flex;
  gap: 16px;
  font-size: 2.0rem;
  line-height: 1.6;
  color: var(--mh--color--grayscale-800);
  align-items: center;
  justify-content: flex-start;
}
.dock-info-row__label {
  flex-shrink: 0;
  background: var(--mh--color--primary-500);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  line-height: 1.6;
}
.dock-info-row__time-label {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mh--color--primary-800);
  line-height: 1.6;
}
.dock-info-row__time {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}
.dock-info-row small {
  display: block;
  font-size: 1.7rem;
  color: #666;
  margin-top: 6px;
  line-height: 1.6;
}
.dock-contact-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.dock-contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--mh--color--primary-800);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
}
.dock-contact-tel svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.dock-contact-tel:hover {
  color: var(--mh--color--primary-500);
}
.dock-contact-web-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mh--color--grayscale-100);
  color: var(--mh--color--primary-500);
  font-size: 1.7rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 100vmax;
  text-decoration: none;
  border: 2px solid var(--mh--color--primary-500);
  box-shadow: 0 10px 25px rgba(59, 105, 156, 0.15);
  transition: all 0.4s ease;
}
.dock-contact-web-btn:hover {
  background: var(--mh--color--primary-500);
  color: #fff;
  border-color: var(--mh--color--primary-500);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 105, 156, 0.25);
}
.dock-contact-web-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==================================================
   Reserve Section (CTA)
   ================================================== */
.reserve-section {
  background-color: var(--mh--color--primary-800);
}

.reserve-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

@media (min-width: 768px) {
  .reserve-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.reserve-text .section-label {
  color: var(--mh--color--primary-300);
}

.reserve-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 12px;
}

.reserve-desc {
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.reserve-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--mh--color--grayscale-100);
  color: var(--mh--color--primary-800);
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 100vmax;
  text-decoration: none;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.reserve-btn:hover {
  background-color: var(--mh--color--primary-100);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Page Top Button */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--mh--color--primary-500);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(60, 105, 156, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 100;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover {
  background-color: var(--mh--color--primary-400);
  box-shadow: 0 6px 20px rgba(60, 105, 156, 0.45);
  transform: translateY(-2px);
}

/* Animation utilities from script */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   お知らせ本文（entry-content）: 改行・段落スタイル
   ================================================== */
.entry-content p {
  margin-bottom: 1.8em;
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content br {
  display: block;
  content: '';
  margin-top: 0.5em;
}


