@charset "UTF-8";

/* 共通スタイル */
:root {
  /* Design tokens */
  --mp-color-white: #ffffff;
  --mp-color-black: #000000;
  --mp-color-neutral-950: #1d1212;
  --mp-color-neutral-800: #4b4b4b;
  --mp-color-neutral-600: #7a7a7a;
  --mp-color-neutral-300: #d9d9d9;
  --mp-color-neutral-200: #e9ebec;
  --mp-color-neutral-100: #f7f8f8;
  --mp-color-brand-700: #0063af;
  --mp-color-brand-500: #48a8e0;
  --mp-color-brand-100: #f1f5ff;
  --mp-color-purple-500: #9c7eb2;
  --mp-color-purple-100: #f5f1fe;
  --mp-color-line: #04c755;
  --mp-color-danger: #bf363a;
  --mp-color-menopause-brown: #634546;
  --mp-color-menopause-orange: #D38F3F;
  --mp-color-menopause-orange-dark: #d38f3f;
  --mp-color-menopause-gold: #c3a71a;
  --mp-color-menopause-gold-light: #d6be49;
  --mp-color-menopause-dark: #040000;

  --mp-space-0: 0;
  --mp-space-1: 4px;
  --mp-space-2: 8px;
  --mp-space-3: 12px;
  --mp-space-4: 16px;
  --mp-space-5: 20px;
  --mp-space-6: 24px;
  --mp-space-7: 28px;
  --mp-space-8: 32px;
  --mp-space-10: 40px;
  --mp-space-12: 48px;
  --mp-space-15: 60px;
  --mp-space-16: 64px;
  --mp-space-20: 80px;
  --mp-space-24: 96px;
  --mp-space-30: 120px;

  --mp-radius-none: 0;
  --mp-radius-control: 5px;
  --mp-radius-sm: 8px;
  --mp-radius-md: 10px;
  --mp-radius-lg: 12px;
  --mp-radius-cta: 18px;
  --mp-radius-card: 20px;
  --mp-radius-panel: 24px;
  --mp-radius-large: 40px;
  --mp-radius-pill: 60px;
  --mp-radius-full: 9999px;

  --mp-font-size-2xs: 10px;
  --mp-font-size-xs: 12px;
  --mp-font-size-sm: 14px;
  --mp-font-size-caption: 15px;
  --mp-font-size-body: 16px;
  --mp-font-size-body-lg: 18px;
  --mp-font-size-title-sm: 20px;
  --mp-font-size-title-md: 21px;
  --mp-font-size-title-lg: 24px;
  --mp-font-size-heading-sm: 28px;
  --mp-font-size-heading-md: 30px;
  --mp-font-size-heading-lg: 35px;
  --mp-font-size-display-sm: 40px;
  --mp-font-size-display-md: 45px;
  --mp-font-size-display-lg: 50px;
  --mp-font-size-display-xl: 55px;
  --mp-font-weight-regular: 400;
  --mp-font-weight-medium: 500;
  --mp-font-weight-semibold: 600;
  --mp-font-weight-bold: 700;
  --mp-font-weight-extrabold: 800;

  --mp-shadow-sm: 0 4px 4px rgb(0 0 0 / 25%);
  --mp-shadow-hard: 0 4px 0 rgb(0 0 0 / 25%);
  --mp-shadow-offset: 6px 6px 4px rgb(0 0 0 / 25%);
  --mp-shadow-brand: 0 9px 22px rgb(0 104 183 / 12%);
  --mp-shadow-lg: 0 12px 32px rgb(0 0 0 / 18%);

  --mp-container-max: 1200px;
  --mp-container-legacy: 1170px;
  --mp-container-compact: 880px;
  --mp-container-reading: 600px;
  --mp-container-gutter: 48px;
  --mp-container-gutter-mobile: 22px;

  --mp-blue: #0063AF;
  --mp-blue-dark: #0063AF;
  --mp-blue-light: #F1F5FF;
  --mp-blue-pale: #dbe9ff;
  --mp-green: #06c755;
  --mp-text: #0063AF;
  --mp-muted: #3f82bd;
  --mp-white: #ffffff;
  --mp-shadow: var(--mp-shadow-brand);
  --mp-content-max: 1170px;
  --mp-content-gutter: 48px;
  --mp-content-width: min(var(--mp-content-max), calc(100% - (var(--mp-content-gutter) * 2)));
  --mp-content-side: max(var(--mp-content-gutter), calc((100% - var(--mp-content-max)) / 2));
}

.mp-prescription-consult {
  width: min(1194px, calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

.mp-prescription-consult {
  display: grid;
  grid-template-columns: minmax(250px, 410px) minmax(0, 1fr);
  grid-template-areas:
    "title title"
    "image text";
  gap: 48px 58px;
  margin-top: 54px;
  margin-bottom: 60px;
  min-height: 474px;
  padding: 44px 112px 63px;
  color: var(--mp-blue);
  background: #eef4ff;
  border-radius: 20px;
}

.mp-prescription-consult h2 {
  grid-area: title;
  margin: 0;
  color: var(--mp-blue);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.mp-prescription-consult__label {
  font-family: "Noto Serif JP", serif;
  font-size: 45px;
  font-weight: 500;
}

.mp-prescription-consult__image {
  grid-area: image;
  display: block;
}

.mp-prescription-consult__image img {
  display: block;
  width: 100%;
  aspect-ratio: 410 / 220;
  object-fit: cover;
  object-position: 42% 54%;
}

.mp-prescription-consult div {
  grid-area: text;
  align-self: start;
}

.mp-prescription-consult h3 {
  margin: 0 0 18px;
  color: var(--mp-blue);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.45;
}

.mp-prescription-consult p {
  margin: 0;
  color: var(--mp-blue);
  font-size: 15px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .mp-prescription-consult {
        width: 100%;
      }

  .mp-prescription-consult {
        grid-template-columns: 1fr;
        grid-template-areas:
          "title"
          "image"
          "text";
        gap: 17px;
        width: var(--mp-content-width);
        margin-top: 24px;
        margin-bottom: 49px;
        min-height: 0;
        padding: 23px 22px 28px;
        border-radius: 20px;
      }

  .mp-prescription-consult h2 {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 8px;
        font-size: 24px;
        line-height: 1.65;
        text-align: left;
      }

  .mp-prescription-consult__label {
        font-size: 40px;
        line-height: 1;
      }

  .mp-prescription-consult__image img {
        aspect-ratio: 268 / 180;
      }

  .mp-prescription-consult h3 {
        margin-bottom: 11px;
        font-size: 24px;
        text-align: left;
      }

  .mp-prescription-consult p {
        font-size: 15px;
        line-height: 1.9;
      }
}

.mp-site {
  margin: 0;
  padding-top: 50px;
  color: var(--mp-text);
  background: var(--mp-white);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 2;
  letter-spacing: 0;
}

.mp-site * {
  box-sizing: border-box;
}

.mp-site a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mp-site a:hover {
  opacity: 0.75;
}

body.mp-site .mp-header a,
body.mp-site .mp-header a:visited,
body.mp-site .mp-legal__content a,
body.mp-site .mp-legal__content a:visited {
  color: var(--mp-blue);
}

body.mp-site .mp-footer a,
body.mp-site .mp-footer a:visited {
  color: var(--mp-white);
}

body.mp-site .mp-header .mp-nav a.mp-nav__cta,
body.mp-site .mp-header .mp-nav a.mp-nav__cta:visited,
body.mp-site .mp-header .mp-nav a.mp-nav__cta:hover,
body.mp-site .mp-header .mp-nav a.mp-nav__cta:focus-visible {
  color: var(--mp-white);
}

.mp-site img {
  display: block;
  width: 100%;
  height: auto;
}

.pc-none {
  display: none !important;
}

.mp-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 16px 9.4%;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid #d7e8f8;
}

.mp-footer__brand {
  display: grid;
  gap: 2px;
  color: var(--mp-blue);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1;
}

.mp-footer__brand small {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.mp-footer__brand span {
  font-size: 31px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.mp-header__logo {
  display: block;
  width: 242px;
}

.mp-header__logo img {
  width: 100%;
  height: auto;
}

.mp-footer__brand b {
  font-weight: 800;
}

.mp-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--mp-blue);
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}

.mp-nav__banners,
.mp-nav__legal {
  display: none;
}

.mp-nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 43px;
  padding: 0 24px;
  color: var(--mp-white);
  background: var(--mp-green);
  border-radius: 0;
}

.mp-nav__cta::before {
  width: 19px;
  height: 18px;
  margin-right: 9px;
  content: "";
  background: url("../images/line-icon-cta.png") center / contain no-repeat;
}

.mp-header__line {
  display: none;
}

.mp-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--mp-green);
  border: 0;
}

.mp-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--mp-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mp-main {
  overflow: hidden;
}

.mp-sp-break {
  display: none;
}

.mp-section {
  width: var(--mp-content-width);
  margin: 0 auto;
  padding: 66px 0 55px;
}

.mp-heading {
  margin-bottom: 38px;
  text-align: center;
}

.mp-heading h1,
.mp-heading h2,
.mp-legal__content h1 {
  margin: 0;
  color: var(--mp-blue);
  font-size: 30px;
  font-weight: normal;
  line-height: 1.55;
}

.mp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  min-height: 56px;
  margin: 36px auto 14px;
  color: var(--mp-white);
  background: var(--mp-blue);
  font-size: 14px;
  font-weight: 700;
}

.mp-faq {
  padding-top: 94px;
  width: min(900px, calc(100% - 96px));
  padding-bottom: 119px;
}

.mp-faq .mp-heading {
  margin-bottom: 34px;
}

.mp-faq__list {
  display: grid;
  gap: 16px;
}

.mp-faq__item {
  overflow: hidden;
  background: #f0f5ff;
  border-radius: 8px;
}

.mp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 17px 28px;
  color: var(--mp-blue);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.mp-faq__question span::before {
  font-family: "Noto Serif JP", serif;
  margin-right: 5px;
  content: "Q.";
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}

.mp-faq__question i {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.mp-faq__question i::before,
.mp-faq__question i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--mp-blue);
}

.mp-faq__question i::after {
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

.mp-faq__item.is-open .mp-faq__question i::after {
  transform: rotate(0deg);
}

.mp-faq__item.is-open .mp-faq__question {
  border-bottom: 2px solid #fff;
}

.mp-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
}

.mp-faq__answer p {
  margin: 0;
  padding: 24px 30px 24px 29px;
  color: var(--mp-muted);
  font-size: 16px;
}

.mp-line-cta {
  position: relative;
  width: var(--mp-content-width);
  margin: 0px auto 80px;
  overflow: hidden;
  border-radius: 14px;
  color: var(--mp-white);
}

.mp-line-cta__picture,
.mp-line-cta__bg {
  display: block;
  width: 100%;
}

.mp-line-cta__bg {
  min-height: 386px;
  object-fit: cover;
}

.mp-line-cta__content {
  position: absolute;
  z-index: 2;
  top: 64px;
  left: 100px;
  width: min(522px, calc(100% - 140px));
}

.mp-line-cta__logo-wrap {
  position: relative;
  display: block;
  width: 522px;
  margin-bottom: 12px;
}

.mp-line-cta__logo {
  display: block;
  width: 100%;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.mp-line-cta h2 {
  margin: 0 0 18px;
  color: var(--mp-white);
  font-family: "Yu Mincho", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.mp-line-cta p {
  margin: 0 0 56px;
  font-family:  "Yu Mincho", serif;
  font-size: 16px;
  line-height: 35px;
  /*letter-spacing: 0.08em;*/
}

.mp-line-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  min-height: 88px;
  padding: 0 34px;
  background: var(--mp-green);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-top: 49px;
}

.mp-line-cta a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 18px;
}

.mp-line-cta a span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mp-footer {
  padding: 38px 0 22px;
  color: var(--mp-white);
  background: var(--mp-blue-dark);
}

.mp-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  grid-template-areas:
    "brand banners"
    ". nav"
    "copy copy";
  gap: 18px 56px;
  align-items: center;
  width: var(--mp-content-width);
  margin: 0 auto;
}

.mp-footer__brand {
  grid-area: brand;
  position: relative;
  display: block;
  width: 278px;
}

.mp-footer__brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.mp-footer__banners {
  grid-area: banners;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.mp-footer__banners a {
  overflow: hidden;
  border-radius: 8px;
}

.mp-footer__banners img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mp-footer__banners a:nth-child(2) img {
  object-position: 62% 50%;
}

.mp-footer__nav {
  grid-area: nav;
  display: grid;
  gap: 12px;
  color: var(--mp-white);
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.mp-footer__nav-main,
.mp-footer__nav-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: flex-start;
}

.mp-footer__copy {
  grid-area: copy;
  margin: 24px 0 0;
  color: var(--mp-white);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

#to_top_scrollup {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .mp-footer__nav {
        justify-items: start;
      }

  .mp-footer__nav-legal {
        font-size: 12px;
      }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mp-line-cta__bg {
        height: clamp(310px, 33vw, 386px);
        min-height: 0;
        object-fit: cover;
      }

  .mp-line-cta__content {
        top: 12%;
        left: 7%;
        width: 44%;
      }

  .mp-line-cta__logo-wrap {
        width: min(100%, 300px);
        margin-bottom: 6px;
      }

  .mp-line-cta h2 {
        margin-bottom: 8px;
        font-size: clamp(22px, 3vw, 30px);
      }

  .mp-line-cta p {
        margin-bottom: 0;
        font-size: 13px;
        line-height: 1.7;
      }

  .mp-line-cta a {
        min-width: 280px;
        min-height: 64px;
        margin-top: 18px;
        padding: 0 24px;
        font-size: 20px;
      }

  .mp-line-cta a span {
        width: 34px;
        height: 34px;
        margin-right: 12px;
      }
}

/* Tablet-only layout. Keep desktop (>=1024px) and mobile (<=767px) unchanged. */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .mp-site {
    padding-top: 72px;
  }

  .mp-header {
    min-height: 72px;
    padding: 12px 24px;
  }

  .mp-header__logo {
    flex: 0 0 auto;
    width: 180px;
  }

  .mp-nav {
    gap: 14px;
    min-width: 0;
    font-size: 14px;
  }

  .mp-nav__desktop-only {
    display: none;
  }

  .mp-nav__cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .mp-nav__cta::before {
    width: 17px;
    height: 16px;
    margin-right: 7px;
  }

  .mp-prescription-consult {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "text";
    gap: 24px;
    width: min(704px, calc(100% - 64px));
    min-height: 0;
    padding: 36px 48px 44px;
  }

  .mp-prescription-consult h2 {
    font-size: 30px;
    line-height: 1.5;
  }

  .mp-prescription-consult__image {
    width: min(410px, 100%);
    margin: 0 auto;
  }

  .mp-prescription-consult div {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .mp-prescription-consult h3 {
    font-size: 28px;
  }

  .mp-prescription-consult p {
    font-size: 15px;
    line-height: 1.9;
  }
}

@media screen and (max-width: 767px) {
  .pc-none {
        display: revert !important;
      }

  .sp-none {
        display: none !important;
      }

  :root {
        --mp-content-gutter: 23px;
      }

  .mp-site {
        padding-top: 51px;
      }

  .mp-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        min-height: 64px;
        padding: 10px var(--mp-content-gutter);
        background: transparent;
        border-bottom: 0;
      }

  .mp-header::before {
        position: absolute;
        z-index: 2;
        inset: 0;
        content: "";
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid #d7e8f8;
      }

  .mp-header__logo {
        position: relative;
        z-index: 3;
        width: min(242px, calc(100% - 106px));
      }

  .mp-header__line {
        position: relative;
        z-index: 3;
        display: block;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        margin-left: auto;
        background: var(--mp-green) url("../images/line-icon-cta.png") center / 28px 27px no-repeat;
        border-radius: 5px;
      }

  .mp-header__toggle {
        position: relative;
        z-index: 3;
        display: block;
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        margin-left: 16px;
        background: transparent;
      }

  .mp-header__toggle span {
        position: absolute;
        left: 3px;
        width: 30px;
        height: 2.5px;
        margin: 0;
        background: var(--mp-blue);
      }

  .mp-header__toggle span:nth-child(1) {
        top: 8px;
      }

  .mp-header__toggle span:nth-child(2) {
        top: 17px;
      }

  .mp-header__toggle span:nth-child(3) {
        top: 26px;
      }

  .mp-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        height: 100vh;
        height: 100dvh;
        padding: 83px var(--mp-content-gutter) 36px;
        overflow-y: auto;
        color: var(--mp-white);
        font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
        font-size: 17px;
        line-height: 1.4;
        white-space: normal;
        background: #5fa5d5 url("../images/menu-background.png") center / cover no-repeat;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
      }

  .mp-nav a {
        padding: 12px 0;
        color: var(--mp-white);
        border: 0;
      }

  .mp-nav a.mp-nav__primary {
        font-size: 15px;
      }

  body.mp-site .mp-header .mp-nav a,
      body.mp-site .mp-header .mp-nav a:visited {
        color: var(--mp-white);
      }

  .mp-nav__banners {
        display: grid;
        gap: 24px;
        margin: 0 0 12px;
      }

  .mp-nav__banners a {
        display: block;
        padding: 0;
        overflow: hidden;
        border-radius: 20px;
      }

  .mp-nav__banners img {
        width: 100%;
      }

  .mp-nav__desktop-only {
        display: none;
      }

  .mp-nav__cta {
        justify-content: center;
        min-height: 82px;
        margin: 18px 0 8px;
        padding: 12px 18px;
        font-size: 24px;
        background: #00c853;
        border-radius: 20px;
      }

  .mp-nav__cta::before {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        margin-right: 15px;
        background-image: url("../images/line-icon-cta.png");
      }

  .mp-nav__legal {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
        margin-top: 6px;
        font-size: 12px;
      }

  .mp-nav__legal a {
        padding: 7px 0;
      }

  .mp-site.is-menu-open .mp-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
      }

  .mp-site.is-menu-open {
        overflow: hidden;
      }

  .mp-site.is-menu-open .mp-header::before {
        background: transparent;
        border-color: transparent;
      }

  .mp-site.is-menu-open .mp-header__logo img {
        filter: brightness(0) invert(1);
      }

  .mp-site.is-menu-open .mp-header__line {
        visibility: hidden;
      }

  .mp-site.is-menu-open .mp-header__toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }

  .mp-site.is-menu-open .mp-header__toggle span:nth-child(2) {
        opacity: 0;
      }

  .mp-site.is-menu-open .mp-header__toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }

  .mp-site.is-menu-open .mp-header__toggle span {
        background: var(--mp-white);
      }

  .mp-sp-break {
        display: inline;
      }

  .mp-heading {
        margin-bottom: 26px;
      }

  .mp-button {
        width: 100%;
      }

  .mp-faq {
        padding-top: 69px;
        padding-bottom: 46px;
      }

  .mp-faq .mp-heading h2 {
        margin-bottom: 36px;
      }

  .mp-faq__question {
        min-height: 58px;
        padding: 14px 15px;
        font-size: 18px;
      }

  .mp-faq__question span {
        display: flex;
        flex: 1 1 auto;
        align-items: center;
        min-width: 0;
        line-height: 1.65;
      }

  .mp-faq__question span::before {
        flex: 0 0 auto;
        align-self: flex-start;
        margin-right: 12px;
        line-height: 1;
      }

  .mp-faq__answer p {
        padding: 18px 15px 18px 15px;
        font-size: 16px;
      }

  .mp-line-cta {
        width: var(--mp-content-width);
        margin: 0px auto 49px;
        padding: 0;
        border-radius: 18px;
      }

  .mp-line-cta__bg {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: 60% 50%;
      }

  .mp-line-cta__content {
        top: 35px;
        bottom: 30px;
        left: 20px;
        width: calc(100% - (20px * 2));
      }

  .mp-line-cta__logo-wrap {
        width: 270px !important;
        margin-bottom: 13px;
      }

  .mp-line-cta h2 {
        margin-bottom: 13px;
        font-size: 28px;
        line-height: 1.35;
      }

  .mp-line-cta p {
        margin-bottom: 0;
        font-size: 15px;
        line-height: 1.85;
      }

  .mp-line-cta a {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 28px);
        min-width: 0;
        min-height: 61px;
        padding: 0 8px;
        font-size: clamp(17px, 5.5vw, 24px);
        white-space: nowrap;
      }

  .mp-line-cta a span {
        flex: 0 0 clamp(34px, 11vw, 46px);
        width: clamp(34px, 11vw, 46px);
        height: clamp(34px, 11vw, 46px);
        margin-right: clamp(8px, 4vw, 20px);
        font-size: 12px;
      }

  .mp-footer {
        padding: 47px 0 25px;
        background: #006da8;
      }

  .mp-footer__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
          "brand"
          "banners"
          "nav"
          "copy";
        gap: 36px;
        max-width: none;
      }

  .mp-footer__brand {
        width: 100%;
        max-width: 450px;
      }

  .mp-footer__banners {
        grid-template-columns: 1fr;
        gap: 26px;
      }

  .mp-footer__banners a {
        border-radius: 20px;
      }

  .mp-footer__banners img {
        aspect-ratio: 448 / 142;
      }

  .mp-footer__nav {
        display: grid;
        gap: 26px;
        font-size: 12px;
        line-height: 1.2;
      }

  .mp-footer__nav-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 26px;
        font-size: 15px;
      }

  .mp-footer__nav-legal {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 34px;
      }

  .mp-footer__copy {
        margin-top: 3px;
        font-size: 14px;
      }
}

/* home page */
body.mp-site .mp-pickup-card a,
body.mp-site .mp-pickup-card a:visited,
body.mp-site .mp-category-card,
body.mp-site .mp-category-card:visited,
body.mp-site .mp-faq a,
body.mp-site .mp-faq a:visited {
  color: var(--mp-blue);
}

body.mp-site .mp-button,
body.mp-site .mp-button:visited,
body.mp-site .mp-line-cta a,
body.mp-site .mp-line-cta a:visited,
body.mp-site .mp-pickup-card__cta,
body.mp-site .mp-pickup-card__cta:visited,
body.mp-site .mp-nav__cta,
body.mp-site .mp-nav__cta:visited {
  color: var(--mp-white);
}

.mp-pickup-card__body p,
.mp-pickup-card__body ul li,
.mp-pickup-card__price,
.mp-note {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

.mp-pickup-card__body p,
.mp-note {
  margin: 0;
  color: var(--mp-muted);
  font-size: 12px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .mp-section,
      .mp-pickup,
      .mp-category,
      .mp-system,
      .mp-flow,
      .mp-faq {
        width: 100%;
        padding: 48px var(--mp-content-gutter);
      }
}
