*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color: #333333;
  background-color: #f8f7f3;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

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

img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.header {
  display: none;
}
@media (max-width: 768px) {
  .header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 71px;
    background-color: transparent;
    z-index: 100;
    transition: background-color 0.2s ease;
  }
  .admin-bar .header {
    top: 46px;
  }
}
.header.header--open {
  background-color: #f8f7f3;
}
.header__logo {
  display: flex;
  align-items: center;
  margin: 16px 0 0 16px;
  flex-shrink: 0;
  padding-top: 0;
}
.header__logo-img {
  display: block;
  width: 70px;
  height: 70px;
  background-color: #005bac;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  height: 71px;
  flex-shrink: 0;
}
.header--open .header__menu-btn {
  align-self: flex-start;
}
.header__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 14px;
}
.header__menu-label {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #333333;
  letter-spacing: 0.04em;
  line-height: 1;
}
.header__nav {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  width: 100%;
  padding: 0 24px;
  transition: max-height 0.2s ease, opacity 0.2s ease, padding-block 0.2s ease;
}
.header--open .header__nav {
  max-height: 500px;
  opacity: 1;
  padding-top: 80px;
  padding-bottom: 32px;
  background-color: #f8f7f3;
}
.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
  margin-inline: auto;
}
.header__nav-link {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.5;
  display: block;
}
.header__nav-link:hover {
  opacity: 0.7;
}

.fv-wrap {
  width: 100%;
  background-color: #f8f7f3;
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv-wrap {
    overflow: hidden;
  }
}

.fv {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .fv {
    padding-top: 48px;
  }
}
.fv {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv {
    min-height: 672px;
  }
}
.fv::before, .fv::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8%, 160px);
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 768px) {
  .fv::before, .fv::after {
    display: none;
  }
}
.fv::before {
  left: 0;
  background: linear-gradient(to right, #f8f7f3 0%, rgba(248, 247, 243, 0) 100%);
}
.fv::after {
  right: 0;
  background: linear-gradient(to left, #f8f7f3 0%, rgba(248, 247, 243, 0) 100%);
}
.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/fv/fv-bg-pc.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 960px) {
  .fv__bg {
    background-image: url("../images/fv/fv-bg-tab.png");
  }
}
@media (max-width: 420px) {
  .fv__bg {
    background-image: url("../images/fv/fv-bg-sp.png");
    background-size: 390px auto;
    background-position: center top;
  }
}
.fv__bg-cutout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 411px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .fv__bg-cutout {
    height: 161px;
  }
}
.fv__bg-cutout__pc {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .fv__bg-cutout__pc {
    display: none;
  }
}
.fv__bg-cutout__sp {
  display: none;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .fv__bg-cutout__sp {
    display: block;
  }
}
.fv__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px 80px;
  min-height: inherit;
}
@media (max-width: 768px) {
  .fv__content {
    padding-top: 80px;
    padding-bottom: 14px;
    min-height: 672px;
  }
}
.fv__logo {
  position: absolute;
  top: 12px;
  left: 25%;
  width: 78px;
  height: 78px;
  background-color: #005bac;
  z-index: 4;
}
@media (max-width: 960px) {
  .fv__logo {
    left: 16px;
  }
}
@media (max-width: 768px) {
  .fv__logo {
    display: none;
  }
}
.fv__logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.fv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .fv__title {
    gap: 4px;
  }
}
.fv__title-eyebrow {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin: 0;
  margin-top: 8px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .fv__title-eyebrow {
    white-space: normal;
  }
}
.fv__title-eyebrow-left {
  font-size: 24px;
  color: #333333;
  letter-spacing: 0.87px;
}
@media (max-width: 768px) {
  .fv__title-eyebrow-left {
    font-size: 18px;
  }
}
.fv__title-eyebrow-right {
  font-size: 28px;
  color: #005baf;
  letter-spacing: 0.87px;
}
@media (max-width: 768px) {
  .fv__title-eyebrow-right {
    font-size: 20px;
  }
}
.fv__title-sub {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #005baf;
  letter-spacing: 0.84px;
  text-align: center;
  line-height: 1;
  margin: 0;
  margin-top: 6px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .fv__title-sub {
    white-space: normal;
    font-size: 20px;
  }
}
.fv__title-coffee-icon {
  width: 32px;
  height: 75px;
  margin-top: 4px;
}
.fv__title-office-wrap {
  align-self: stretch;
  height: 52px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 768px) {
  .fv__title-office-wrap {
    height: 34px;
    background: none;
  }
}
.fv__title-office-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #333333;
  letter-spacing: 0.09em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .fv__title-office-text {
    white-space: normal;
    font-size: 22px;
  }
}
.fv__title-office-deco {
  flex-shrink: 0;
  fill: #333333;
  display: block;
}
.fv__title-office-deco--left {
  width: 21.318px;
  height: 22.196px;
  margin-right: 10px;
}
.fv__title-office-deco--right {
  width: 22.204px;
  height: 23.975px;
  margin-left: 10px;
}
.fv__title-key-coffee {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 67px;
  letter-spacing: -0.01em;
  color: #643417;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .fv__title-key-coffee {
    white-space: normal;
    font-size: 45px;
    line-height: 1;
  }
}
.fv__title-teikibin {
  display: inline-flex;
  gap: 2.5px;
  margin: 8px 0 0;
  z-index: 3;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1;
}
.fv__title-teikibin-char {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74.46px;
  height: 74.46px;
  line-height: 1;
  background-color: #643417;
  color: #ffffff;
  font-size: 60px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .fv__title-teikibin-char {
    width: 47px;
    height: 46px;
    font-size: 36px;
  }
}
.fv__bubble {
  margin-top: 38px;
  position: relative;
  max-width: 411px;
  width: 100%;
  aspect-ratio: 411/66;
  z-index: 3;
}
@media (max-width: 768px) {
  .fv__bubble {
    margin-top: 16px;
    max-width: 318px;
    container-type: inline-size;
  }
}
.fv__bubble-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fv__bubble-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  padding-top: 8px;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .fv__bubble-text {
    white-space: nowrap;
    font-size: clamp(12px, 4.7cqw, 16px);
    padding-top: 4px;
  }
}
.fv__bubble-text--small {
  font-size: 17px;
}
.fv__cta {
  max-width: 511px;
  width: 100%;
  aspect-ratio: 511/112;
  display: block;
  text-decoration: none;
  z-index: 3;
  position: relative;
  top: -12px;
}
.fv__cta img {
  display: block;
  width: 100%;
  height: auto;
}
.fv__cta:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .fv__cta {
    max-width: 358px;
    top: 0;
    margin-top: -8px;
  }
}
.fv__emblems {
  position: absolute;
  top: 290px;
  left: calc(50% + 154px);
  width: 277px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .fv__emblems {
    display: none;
  }
}
.fv__emblems-sp {
  display: none;
}
@media (max-width: 960px) {
  .fv__emblems-sp {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    margin-bottom: 16px;
  }
}
.fv__emblem {
  width: 133px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.fv__emblem-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.fv__woman {
  position: absolute;
  left: 63%;
  bottom: 0;
  height: 793px;
  min-width: 420px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .fv__woman {
    height: 420px;
    min-width: 220px;
    bottom: 15%;
    left: unset;
    right: -60px;
  }
}
.fv__woman-img {
  display: block;
  height: 100%;
  width: auto;
}
.fv__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media (max-width: 768px) {
  .fv {
    min-height: 672px;
  }
  .fv__title-coffee-icon {
    margin-top: 32px;
    width: 24px;
    height: 56px;
  }
}
@media (max-width: 420px) {
  .fv__title-coffee-icon {
    margin-top: 12px;
    width: 24px;
    height: 56px;
  }
}

.first-message {
  width: 100%;
  background-color: #f8f7f3;
  position: relative;
  width: 100%;
}

.first-message-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .first-message-wrap {
    padding-top: 48px;
  }
}
.first-message-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 4.1666666667vw, 80px) 24px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .first-message-wrap {
    padding-top: 48px;
    padding-inline: 16px;
    overflow: visible;
  }
}

.first-message__title-wrap {
  position: relative;
  width: 100%;
  max-width: 887px;
  margin-inline: auto;
  text-align: center;
}
.first-message__title {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  display: inline-block;
}
.first-message__title::before, .first-message__title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 67px;
  height: 48px;
  background-image: url("../images/first-message/accent-slash.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.first-message__title::before {
  left: -95px;
}
.first-message__title::after {
  right: -95px;
  transform: scaleX(-1);
}
.first-message__title-base {
  display: inline;
  font-size: clamp(16px, 1.25vw, 24px);
  color: #333333;
  letter-spacing: 0;
}
.first-message__title-base .comma {
  letter-spacing: -9.6px;
}
.first-message__title-emph {
  display: inline-block;
  font-size: clamp(20px, 1.875vw, 36px);
  color: #005baf;
  position: relative;
}
.first-message__title-emph::before {
  content: "";
  position: absolute;
  left: -6.32%;
  right: -46.32%;
  bottom: -10px;
  height: 55%;
  background-image: url("../images/first-message/accent-brush-yellow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-0.8deg);
  z-index: -1;
}
.first-message__photos {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: clamp(32px, 3.3333333333vw, 64px) auto 0;
  aspect-ratio: 1220/500;
}
.first-message__photo {
  position: absolute;
  box-sizing: border-box;
  overflow: hidden;
  border: 11px solid #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
.first-message__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.first-message__photo--left {
  left: 2%;
  top: 19.59%;
  width: 35.93%;
  aspect-ratio: 487/419;
  transform: rotate(-5deg);
  z-index: 3;
}
.first-message__photo--center {
  left: 35.26%;
  top: 4.07%;
  width: 33.58%;
  aspect-ratio: 455/407;
  transform: rotate(3.3deg);
  z-index: 1;
}
.first-message__photo--right {
  left: 68.75%;
  top: 16.81%;
  width: 29.62%;
  aspect-ratio: 401/360;
  transform: rotate(-4.16deg);
  z-index: 3;
}
.first-message__bubble {
  position: relative;
  top: -100px;
  right: -10%;
  width: 59.02%;
  max-width: 720px;
  margin: clamp(-32px, -2.9166666667vw, -56px) auto 0;
  background-image: url("../images/first-message/bubble-beige.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 4;
  padding: clamp(28px, 1.6666666667vw, 32px) clamp(40px, 8%, 70px);
  min-height: clamp(180px, 13.9583333333vw, 268px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.first-message__bubble-sp-bg {
  display: none;
}
.first-message__lead {
  width: 100%;
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
  text-align: center;
}
.first-message__lead--sp {
  display: none;
}
.first-message__lead-line {
  margin: 0;
  padding: clamp(0.25px, 0.0260416667vw, 0.5px) 0;
  background-image: url("../images/first-message/lead-line.svg");
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 1.5px;
  text-wrap: nowrap;
}
.first-message__lead-line:last-child {
  background-image: url("../images/first-message/lead-line.svg"), url("../images/first-message/lead-line.svg");
  background-repeat: repeat-x, repeat-x;
  background-position: top left, bottom left;
  background-size: auto 2px, auto 2px;
}
@media (max-width: 960px) {
  .first-message__title-base {
    font-size: clamp(16px, 1.25vw, 24px);
  }
  .first-message__title-emph {
    font-size: clamp(20px, 1.875vw, 36px);
  }
}
@media (max-width: 768px) {
  .first-message .is-sp {
    display: inline;
  }
}

.is-sp {
  display: none;
}

@media (max-width: 768px) {
  .first-message__title-base {
    font-size: 20px;
  }
  .first-message__title-emph {
    font-size: 30px;
    width: 100%;
  }
  .first-message__title-emph::before {
    width: 100%;
    max-width: 280px;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-0.8deg);
  }
  .first-message__title::before {
    top: 38px;
    left: 22px;
    width: 33px;
    height: 24px;
  }
  .first-message__title::after {
    top: 38px;
    width: 33px;
    height: 24px;
    right: 22px;
  }
  .first-message__lead {
    font-size: 16px;
  }
  .first-message__photos {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    height: auto;
    margin-top: 48px;
  }
  .first-message__photo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .first-message__photo--center {
    order: 1;
    width: 62.3%;
    aspect-ratio: 223/163;
    align-self: flex-start;
    margin-left: 12.4%;
    z-index: 1;
    transform: rotate(8.3deg);
  }
  .first-message__photo--right {
    order: 2;
    width: 49.4%;
    aspect-ratio: 177/127;
    align-self: flex-end;
    margin-right: 4%;
    margin-top: -15%;
    z-index: 5;
    transform: rotate(-4.5deg);
  }
  .first-message__photo--left {
    order: 3;
    width: 68.7%;
    aspect-ratio: 246/175;
    align-self: flex-start;
    margin-left: 4%;
    margin-top: -15%;
    z-index: 1;
    transform: rotate(-5deg);
  }
  .first-message__bubble {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    max-width: 100%;
    min-height: unset;
    margin-top: -24px;
    padding: 0;
    background-image: none;
    display: block;
  }
  .first-message__bubble-sp-bg {
    display: block;
    width: 100%;
    height: auto;
  }
  .first-message__lead--pc {
    display: none;
  }
  .first-message__lead--sp {
    display: flex;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 48px 22px;
    z-index: 1;
    font-size: clamp(13px, 4.29vw - 0.71px, 20px);
    line-height: 1.9375;
  }
  .first-message__lead-line {
    width: 100%;
    text-wrap: nowrap;
  }
  .first-message__lead-line:first-child {
    background-image: none;
  }
  .first-message__lead-line:last-child {
    background-image: url("../images/first-message/lead-line.svg");
    background-repeat: repeat-x;
    background-position: top left;
    background-size: auto 1.5px;
  }
}

.why {
  width: 100%;
  background-color: #f5efe8;
  position: relative;
  width: 100%;
}
.why__bg-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f5efe8 0%, rgba(245, 239, 232, 0) 8%, rgba(245, 239, 232, 0) 92%, #f5efe8 100%), url("../images/why/why-bg.png") center/cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
.why__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .why__inner {
    padding-inline: 16px;
  }
}
.why__inner {
  padding-block: clamp(64px, 7vw, 100px);
}
@media (max-width: 768px) {
  .why__inner {
    padding-top: 48px;
  }
}
.why__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.why__heading-icon {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto;
}
.why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: "Afacad Flux", "Afacad", system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #643417;
  line-height: 1;
}
@media (max-width: 768px) {
  .why__eyebrow {
    font-size: 20px;
  }
}
.why__eyebrow {
  margin: 0;
  margin-top: 16px;
}
.why__eyebrow-slash {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #643417;
  flex-shrink: 0;
}
.why__eyebrow-slash--left {
  transform: rotate(60deg);
}
.why__eyebrow-slash--right {
  transform: rotate(-60deg);
}
.why__title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .why__title {
    font-size: 20px;
    margin-top: 16px;
  }
}
.why__title {
  margin-top: 24px;
}
.why__title--normal {
  font-size: 36px;
  letter-spacing: 2.88px;
  color: #333333;
}
.why__title--emph {
  font-size: 46px;
  letter-spacing: 3.68px;
  color: #005baf;
}
.why__grid {
  margin-top: 40px;
  max-width: 1099px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 357px);
  justify-content: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 15px;
}
.why__card {
  width: 357px;
  height: 229px;
  max-width: 100%;
  background: #ffffff;
  border: 2px solid #a78e80;
  border-radius: 12px;
  box-shadow: 0 0 9.625px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.why__card-icon-wrap {
  display: flex;
  justify-content: center;
}
.why__card-icon {
  display: block;
  width: 122px;
  height: 122px;
}
.why__card-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.44px;
  color: #643417;
  text-align: center;
  line-height: 1.4;
  margin: 9px 0 0;
  white-space: pre-line;
}
@media (max-width: 1100px) {
  .why__title--normal {
    font-size: 32px;
  }
  .why__title--emph {
    font-size: 40px;
  }
  .why__grid {
    max-width: 728px;
    grid-template-columns: repeat(2, 357px);
  }
}
@media (max-width: 960px) {
  .why__grid {
    max-width: 357px;
    grid-template-columns: 357px;
  }
  .why__title--normal {
    font-size: 28px;
  }
  .why__title--emph {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .why__bg-image {
    background: none;
  }
  .why__bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 239px;
    height: 169px;
    background: url("../images/why/why-bg-sp-top.png") top right/contain no-repeat;
    mask-image: linear-gradient(to right, transparent 0%, black 45%), linear-gradient(to top, transparent 0%, black 45%);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 45%), linear-gradient(to top, transparent 0%, black 45%);
    -webkit-mask-composite: destination-in;
    opacity: 0.72;
    pointer-events: none;
  }
  .why__bg-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 289px;
    height: 207px;
    background: url("../images/why/why-bg-sp-bottom.png") bottom left/contain no-repeat;
    mask-image: linear-gradient(to left, transparent 0%, black 45%), linear-gradient(to bottom, transparent 0%, black 45%);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 45%), linear-gradient(to bottom, transparent 0%, black 45%);
    -webkit-mask-composite: destination-in;
    opacity: 0.66;
    pointer-events: none;
  }
  .why__grid {
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
  .why__title--normal {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
  .why__title--emph {
    display: block;
    font-size: 30px;
    letter-spacing: 2px;
  }
  .why__card {
    flex-direction: row;
    height: 126px;
    padding: 0 0 0 20px;
    align-items: center;
    max-width: 450px;
    width: 100%;
    margin-inline: auto;
  }
  .why__card-icon-wrap {
    flex-shrink: 0;
  }
  .why__card-icon {
    width: 86px;
    height: 86px;
  }
  .why__card-label {
    flex: 1;
    font-size: 20px;
    margin: 0;
  }
}

.why-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .why-wrap {
    padding-top: 48px;
  }
}
.why-wrap {
  position: relative;
  overflow: hidden;
}

.value {
  width: 100%;
  background-color: #ffffff;
  width: 100%;
}
.value__inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .value__inner {
    padding-inline: 16px;
  }
}
.value__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}
.value__heading-icon {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto;
}
.value__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: "Afacad Flux", "Afacad", system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #643417;
  line-height: 1;
}
@media (max-width: 768px) {
  .value__eyebrow {
    font-size: 20px;
  }
}
.value__eyebrow-slash {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #643417;
  flex-shrink: 0;
}
.value__eyebrow-slash--left {
  transform: rotate(60deg);
}
.value__eyebrow-slash--right {
  transform: rotate(-60deg);
}
.value__title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .value__title {
    font-size: 20px;
    margin-top: 16px;
  }
}
.value__title {
  line-height: 1.4;
}
.value__title-emph {
  color: #005baf;
  font-size: 46px;
}
@media (max-width: 768px) {
  .value__title-emph {
    font-size: 30px;
  }
}
.value__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 74px;
  justify-content: center;
}
.value__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.7109375%;
}
.value__card-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2132701422;
}
.value__card-cream {
  position: absolute;
  top: 0;
  left: 20.703125%;
  width: 79.296875%;
  aspect-ratio: 1.1032608696;
  background: #feedd2;
  border-radius: 22px;
  padding: 34px 34px 0;
  box-sizing: border-box;
  z-index: 1;
}
.value__card-eyebrow {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.08px;
  color: #643417;
  margin: 0 0 8px;
}
.value__card-heading {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #005baf;
  line-height: 1.3;
  margin: 0;
}
.value__card-photo {
  position: absolute;
  top: 29.3838862559%;
  left: 0;
  width: 86.71875%;
  aspect-ratio: 1.4899328859;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 2;
}
.value__card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.value__card-num {
  position: absolute;
  top: 4.2654028436%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #643417;
  z-index: 3;
}
.value__card-num-digit {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 57px;
  font-weight: 700;
  color: #643417;
  line-height: 1;
}
.value__card-num-label {
  font-family: "Afacad Flux", "Afacad", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #643417;
  letter-spacing: 1.44px;
  line-height: 1;
  margin-top: 4px;
}
.value__card-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #333333;
  margin: 0;
}
@media (max-width: 1100px) {
  .value__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 48px);
    justify-content: stretch;
    width: 100%;
  }
  .value__card {
    width: 100%;
    min-width: 0;
  }
  .value__card-cream {
    padding: clamp(20px, 1.7708333333vw, 34px) clamp(20px, 1.7708333333vw, 34px) 0;
  }
  .value__card-num-digit {
    font-size: clamp(36px, 2.96875vw, 57px);
  }
  .value__card-num-label {
    font-size: clamp(14px, 0.9375vw, 18px);
  }
  .value__card-eyebrow {
    font-size: clamp(14px, 0.9375vw, 18px);
  }
  .value__card-heading {
    font-size: clamp(18px, 1.3541666667vw, 26px);
  }
  .value__card-text {
    font-size: clamp(14px, 0.9375vw, 18px);
  }
}
@media (max-width: 960px) {
  .value__card {
    width: 100%;
  }
  .value__card-heading {
    font-size: 20px;
  }
  .value__card-text {
    font-size: 15px;
  }
  .value__title {
    font-size: 28px;
  }
  .value__title-emph {
    font-size: 36px;
  }
}
@media (max-width: 420px) {
  .value__card-heading {
    font-size: 18px;
  }
  .value__card-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .value__title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
  .value__title-emph {
    display: block;
    font-size: 30px;
    letter-spacing: 2px;
  }
  .value__card-eyebrow {
    font-size: 16px;
  }
  .value__card-num-digit {
    font-size: 37px;
  }
  .value__card-num-label {
    font-size: 12px;
  }
  .value__card-text {
    font-size: 16px;
  }
  .value__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-content: stretch;
  }
  .value__card {
    gap: 22px;
  }
  .value__card-main {
    aspect-ratio: auto;
    height: calc(100px + (100vw - 32px) * 0.6711711712);
  }
  .value__card-cream {
    width: calc(79.296875% + 16px);
    border-radius: 22px 0 0 22px;
  }
  .value__card-photo {
    top: min(29.3838862559%, 90px);
    width: 100%;
  }
}

.value-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .value-wrap {
    padding-top: 48px;
  }
}
.value-wrap {
  padding-block: clamp(42px, 5.1041666667vw, 98px);
}
@media (max-width: 768px) {
  .value-wrap {
    padding-top: 48px;
  }
}

.benefits {
  position: relative;
  width: 100%;
  background-color: #f8f7f3;
  width: 100%;
}
.benefits__inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .benefits__inner {
    padding-inline: 16px;
  }
}
.benefits__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits__heading-icon {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .benefits__heading-icon {
    width: 24px;
    height: 27px;
  }
}
.benefits__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: "Afacad Flux", "Afacad", system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #643417;
  line-height: 1;
}
@media (max-width: 768px) {
  .benefits__eyebrow {
    font-size: 20px;
  }
}
.benefits__eyebrow-slash {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #643417;
  flex-shrink: 0;
}
.benefits__eyebrow-slash--left {
  transform: rotate(60deg);
}
.benefits__eyebrow-slash--right {
  transform: rotate(-60deg);
}
.benefits__title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .benefits__title {
    font-size: 20px;
    margin-top: 16px;
  }
}
.benefits__title-conn {
  font-size: 36px;
  color: #333333;
}
.benefits__title-emph {
  font-size: 46px;
  color: #005baf;
  letter-spacing: 0.08em;
}
.benefits__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 22px;
  margin-top: 64px;
}
@media (max-width: 1100px) {
  .benefits__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .benefits__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .benefits__list {
    margin-top: 48px;
  }
}
.benefits__card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 7px 7px 32px;
}
@media (max-width: 1100px) {
  .benefits__card {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .benefits__card {
    width: 100%;
    max-width: 360px;
  }
}
.benefits__media {
  position: relative;
  aspect-ratio: 338/191;
}
.benefits__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}
.benefits__circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #a78e80;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #ffffff;
  z-index: 2;
}
.benefits__icon {
  width: 38px;
  height: auto;
}
.benefits__num {
  font-family: "Afacad", "Afacad Flux", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #a78e80;
  letter-spacing: -0.02em;
  text-align: left;
  line-height: 1;
  margin: 0;
  margin-top: 56px;
  padding-left: 35px;
}
.benefits__card-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  line-height: 1.625;
  text-align: center;
  padding-inline: 16px;
  margin: 8px 0 0;
}
.benefits__divider {
  max-width: 284px;
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid #a78e80;
  margin: 24px auto 0;
}
.benefits__body {
  flex: 1;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 18px;
  color: #333333;
  line-height: 1.778;
  margin: 11px 0 0;
  padding-inline: 28px;
}
.benefits__summary {
  text-align: center;
  margin-top: 50px;
}
.benefits__catch {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #643417;
  letter-spacing: 0.06em;
  line-height: 1.5;
  isolation: isolate;
  margin: 0;
}
.benefits__catch-inner {
  position: relative;
  display: inline-block;
}
.benefits__catch-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 898px;
  min-width: 100%;
  max-width: calc(100vw - 24px);
  height: 16px;
  background: #efc300;
  transform: translateX(-50%);
  z-index: -1;
}
.benefits__lead {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.778;
  color: #333333;
  letter-spacing: 0.06em;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .benefits__title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
  .benefits__title-conn {
    font-size: 20px;
  }
  .benefits__title-emph {
    display: block;
    font-size: 30px;
    letter-spacing: 2px;
  }
  .benefits__catch {
    font-size: 22px;
  }
  .benefits__card-title {
    font-size: 20px;
  }
  .benefits__body {
    font-size: 16px;
  }
  .benefits__lead {
    font-size: 16px;
  }
  .benefits__catch-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .benefits__catch-inner::after {
    display: none;
  }
  .benefits__catch-phrase {
    display: inline-block;
    position: relative;
  }
  .benefits__catch-phrase::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 100%;
    height: 16px;
    background: #efc300;
    transform: translateX(-50%);
    z-index: -1;
  }
}
@media (max-width: 420px) {
  .benefits__catch {
    font-size: 24px;
  }
  .benefits__circle {
    width: 64px;
    height: 64px;
  }
  .benefits__icon {
    width: 28px;
  }
}

.benefits-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .benefits-wrap {
    padding-top: 48px;
  }
}
.benefits-wrap {
  z-index: 2;
  padding-block: clamp(80px, 6.6666666667vw, 128px) 0;
}
@media (max-width: 768px) {
  .benefits-wrap {
    padding-top: 48px;
  }
}

.plan {
  position: relative;
  width: 100%;
  background-color: #eeebe6;
  width: 100%;
  margin-top: calc(-1 * clamp(60px, 6.25vw, 120px));
}
.plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background-color: #f8f7f3;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  pointer-events: none;
  z-index: 1;
}
.plan::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/cta-footer/office-bg-faint.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.plan__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .plan__inner {
    padding-inline: 16px;
  }
}
.plan__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.plan__heading-icon {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto;
}
.plan__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: "Afacad Flux", "Afacad", system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #643417;
  line-height: 1;
}
@media (max-width: 768px) {
  .plan__eyebrow {
    font-size: 20px;
  }
}
.plan__eyebrow-slash {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #643417;
  flex-shrink: 0;
}
.plan__eyebrow-slash--left {
  transform: rotate(60deg);
}
.plan__eyebrow-slash--right {
  transform: rotate(-60deg);
}
.plan__title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .plan__title {
    font-size: 20px;
    margin-top: 16px;
  }
}
.plan__title {
  margin-top: 24px;
  margin-bottom: 16px;
}
.plan__title--em {
  font-size: 46px;
  color: #005baf;
  letter-spacing: 3.68px;
}
@media (max-width: 768px) {
  .plan__title--em {
    font-size: 30px;
  }
}
.plan__lead {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7777777778;
  letter-spacing: 1.08px;
  color: #333333;
  text-align: center;
}
.plan__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.plan__card {
  min-width: 0;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.plan__media {
  position: relative;
  width: 100%;
  aspect-ratio: 263/197;
  flex-shrink: 0;
  overflow: visible;
}
.plan__media > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 4px 1px rgba(100, 52, 23, 0.16);
}
.plan__media-icon {
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #f6f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.plan__media-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.plan__body {
  padding: 44px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.plan__name {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.625;
  color: #643417;
  text-align: center;
  margin-bottom: 12px;
}
.plan__catch {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  text-align: center;
  white-space: pre-line;
  margin-bottom: 36px;
}
.plan__divider {
  max-width: 220px;
  width: 100%;
  height: 1px;
  background-color: #b29380;
  margin: 0 auto 13px;
  border: none;
}
.plan__specs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.plan__spec {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan__spec-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f6f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan__spec-icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.plan__spec-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 46px;
}
.plan__spec-label {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #643417;
  line-height: 1.8333333333;
}
.plan__spec-value {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 1.4;
  white-space: nowrap;
}
.plan__spec-value--price {
  font-size: 24px;
  font-weight: 700;
}
.plan__spec-value--tilde {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -7.68px;
}
.plan__spec-value--note {
  font-size: 16px;
  font-weight: 400;
}
.plan__spec-value--note-paren {
  font-weight: 700;
}
.plan__sub-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan__sub-plan {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan__sub-plan-pill {
  max-width: 220px;
  width: 100%;
  min-height: 55px;
  background-color: #897676;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-inline: 12px;
  color: #ffffff;
}
.plan__sub-plan-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}
.plan__sub-plan-subtitle {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2857142857;
  color: #ffffff;
  text-align: center;
}
.plan__cta-wrap {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
.plan__cta {
  position: relative;
  display: block;
  max-width: 218px;
  width: 100%;
  min-height: 53px;
  background-color: #efc300;
  border-radius: 60px;
  box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.plan__cta:hover {
  transform: translateY(-2px);
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.2);
}
.plan__cta-ribbon {
  position: absolute;
  top: -18px;
  left: -2px;
  width: 28px;
  height: 17px;
  transform: rotate(-15deg);
  transform-origin: center center;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan__cta-ribbon img {
  width: 26px;
  height: 11px;
  display: block;
}
.plan__cta-label {
  position: absolute;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #005baf;
  white-space: nowrap;
  text-align: center;
}
.plan__cta-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  pointer-events: none;
}
.plan__cta-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1280px) {
  .plan__list {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .plan::before {
    top: 0;
    height: 130px;
    clip-path: polygon(0 0, 100% 0, 100% 90px, 50% 100%, 0 90px);
    top: -16px;
  }
  .plan::after {
    background-image: url("../images/plan/sp-plan-bg.png");
    background-position: top center;
    opacity: 1;
  }
  .plan__title {
    font-size: 20px;
  }
  .plan__title--em {
    display: block;
    font-size: 30px;
    letter-spacing: 2px;
  }
  .plan__title--accent {
    font-size: 36px;
  }
  .plan__lead {
    font-size: 16px;
  }
  .plan__list {
    grid-template-columns: minmax(0, 263px);
  }
  .plan__specs {
    align-items: flex-start;
    width: 220px;
    margin-inline: auto;
  }
}

.plan-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .plan-wrap {
    padding-top: 48px;
  }
}
.plan-wrap {
  position: relative;
  padding-block: clamp(220px, 9vw, 220px);
}
@media (max-width: 768px) {
  .plan-wrap {
    padding-top: 48px;
  }
}
@media (max-width: 768px) {
  .plan-wrap {
    padding-top: 160px;
    padding-bottom: 48px;
  }
}

.diagnosis-cta {
  width: 100%;
  background-color: #ffffff;
}

.diagnosis-cta-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .diagnosis-cta-wrap {
    padding-top: 48px;
  }
}
.diagnosis-cta-wrap {
  padding-block: clamp(80px, 9vw, 120px);
}
@media (max-width: 768px) {
  .diagnosis-cta-wrap {
    padding-top: 48px;
  }
}

.diagnosis-cta__inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .diagnosis-cta__inner {
    padding-inline: 16px;
  }
}

.diagnosis-cta__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(32px, 2.5vw, 48px);
}

.diagnosis-cta__heading-icon {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto;
}

.diagnosis-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: "Afacad Flux", "Afacad", system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #643417;
  line-height: 1;
}
@media (max-width: 768px) {
  .diagnosis-cta__eyebrow {
    font-size: 20px;
  }
}
.diagnosis-cta__eyebrow {
  margin-top: 16px;
}

.diagnosis-cta__eyebrow-slash {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #643417;
  flex-shrink: 0;
}
.diagnosis-cta__eyebrow-slash--left {
  transform: rotate(60deg);
}
.diagnosis-cta__eyebrow-slash--right {
  transform: rotate(-60deg);
}

.diagnosis-cta__title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .diagnosis-cta__title {
    font-size: 20px;
    margin-top: 16px;
  }
}
.diagnosis-cta__title {
  margin-top: 24px;
}
.diagnosis-cta__title--normal {
  font-size: clamp(28px, 1.875vw, 36px);
  letter-spacing: 0.08em;
  color: #333333;
}
.diagnosis-cta__title--emph {
  font-size: clamp(36px, 2.3958333333vw, 46px);
  letter-spacing: 0.08em;
  color: #005baf;
}

.diagnosis-cta__title-deco-line {
  display: block;
  width: clamp(200px, 40%, 330px);
  height: 3px;
  margin-top: 8px;
  background-image: url("../images/diagnosis-cta/title-deco-line.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}

.diagnosis-cta__banner {
  position: relative;
  width: 100%;
  max-width: 747px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 2.0833333333vw, 40px);
  background-image: url("../images/diagnosis-cta/banner-ribbon.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  aspect-ratio: 747/158;
}

.diagnosis-cta__banner-text {
  position: absolute;
  top: 36.4%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.3958333333vw, 46px);
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.diagnosis-cta__card {
  background-color: #f2f0e7;
  background-image: url("../images/diagnosis-cta/bg-deco.svg"), url("../images/diagnosis-cta/bg-beans.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: right 5% top 55%, right 20px top 50%;
  background-size: clamp(280px, 42vw, 520px) auto, clamp(60px, 9vw, 114px) auto;
  border-radius: 24px;
  border: 4px solid #fff;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
  padding: clamp(24px, 2.0833333333vw, 40px) clamp(24px, 2.5vw, 48px) clamp(28px, 2.2916666667vw, 44px);
  overflow: hidden;
}

.diagnosis-cta__steps {
  margin-bottom: clamp(16px, 1.4583333333vw, 28px);
}

.diagnosis-cta__step-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 763px;
  margin-inline: auto;
}

.diagnosis-cta__step {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.diagnosis-cta__step:not(:last-child) {
  flex: 1;
}
.diagnosis-cta__step:not(:last-child)::after {
  content: "";
  display: block;
  flex: 1;
  height: 5px;
  background-image: url("../images/diagnosis-cta/step-line.svg");
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto 5px;
  margin-inline: 6px;
}

.diagnosis-cta__step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.diagnosis-cta__step-icon {
  display: block;
  width: 60%;
  height: auto;
}
.diagnosis-cta__step-icon--goal {
  width: 54px;
  height: auto;
  max-width: 100%;
}

.diagnosis-cta__step--done .diagnosis-cta__step-icon:not(.diagnosis-cta__step-icon--goal),
.diagnosis-cta__step--pending .diagnosis-cta__step-icon:not(.diagnosis-cta__step-icon--goal) {
  display: none;
}

.diagnosis-cta__step--done .diagnosis-cta__step-circle,
.diagnosis-cta__step--current .diagnosis-cta__step-circle {
  background: #c08e71;
}

.diagnosis-cta__step--pending .diagnosis-cta__step-circle {
  background: #d9d9d9;
}

@keyframes diagConnectorFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.diagnosis-cta__step--done:not(:last-child)::after {
  background-image: none;
  background-color: #c08e71;
  margin-inline: 6px;
  transform-origin: left center;
  animation: diagConnectorFill 0.4s ease forwards;
}

.diagnosis-cta__step--goal::after {
  display: none;
}

.diagnosis-cta__question-area {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6666666667vw, 32px);
  margin-bottom: clamp(20px, 1.6666666667vw, 32px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.diagnosis-cta__question-area[hidden] {
  display: none;
}
.diagnosis-cta__question-area.is-exiting {
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
}

.diagnosis-cta__eyecatch {
  flex-shrink: 0;
  width: clamp(130px, 16vw, 216px);
  aspect-ratio: 216/230;
}

.diagnosis-cta__eyecatch-inner {
  width: 100%;
  height: 100%;
}
.diagnosis-cta__eyecatch-inner img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.diagnosis-cta__question {
  flex: 1;
  min-width: 0;
  padding-bottom: 8px;
}

.diagnosis-cta__question-label {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
  line-height: 1;
}

.diagnosis-cta__q-mark {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.71875vw, 33px);
  color: #643417;
  line-height: 1;
}

.diagnosis-cta__q-number {
  font-family: "Amiri", "Georgia", serif;
  font-weight: 700;
  font-size: clamp(32px, 2.7083333333vw, 52px);
  color: #643417;
  line-height: 1;
}

.diagnosis-cta__question-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6666666667vw, 32px);
  color: #333333;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 0;
}

.diagnosis-cta__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.0416666667vw, 20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.diagnosis-cta__choices[hidden] {
  display: none;
}
.diagnosis-cta__choices.is-exiting {
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
}

.diagnosis-cta__choice-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(80px, 10vw, 158px);
  padding-inline: clamp(20px, 2.5vw, 48px);
  background: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.diagnosis-cta__choice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.diagnosis-cta__choice-btn:focus-visible {
  outline: 2px solid #643417;
  outline-offset: 3px;
}

.diagnosis-cta__choice-label {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6666666667vw, 32px);
  color: #643417;
  letter-spacing: 0.04em;
}

.diagnosis-cta__choice-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.diagnosis-cta__choice-arrow img {
  width: clamp(28px, 3vw, 38px);
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .diagnosis-cta__question-area {
    gap: 16px;
  }
  .diagnosis-cta__choices {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .diagnosis-cta__title--normal {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
  .diagnosis-cta__title--normal:first-child {
    display: block;
  }
  .diagnosis-cta__title--emph {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .diagnosis-cta__question {
    text-align: center;
  }
  .diagnosis-cta__question-label {
    justify-content: center;
  }
  .diagnosis-cta__choices {
    grid-template-columns: 1fr;
  }
  .diagnosis-cta__choice-btn {
    justify-content: center;
    position: relative;
  }
  .diagnosis-cta__choice-arrow {
    position: absolute;
    right: 20px;
  }
  .diagnosis-cta__question-area {
    flex-direction: column;
    align-items: center;
  }
  .diagnosis-cta__step:not(:last-child)::after {
    height: 1px;
    background-size: auto 1px;
  }
  .diagnosis-cta__step--done:not(:last-child)::after {
    height: 1px;
  }
  .diagnosis-cta__step-circle {
    width: 26px;
    height: 26px;
  }
  .diagnosis-cta__step-icon {
    width: 16px;
  }
  .diagnosis-cta__step-icon--goal {
    width: 26px;
  }
}
@media (max-width: 420px) {
  .diagnosis-cta__question-area {
    flex-direction: column;
    align-items: center;
  }
  .diagnosis-cta__eyecatch {
    width: clamp(100px, 40vw, 150px);
    align-self: center;
  }
  .diagnosis-cta__question {
    width: 100%;
    text-align: center;
    padding-bottom: 0;
  }
  .diagnosis-cta__question-label {
    justify-content: center;
  }
  .diagnosis-cta__choices {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .diagnosis-cta__choice-btn {
    min-height: 72px;
    padding-inline: 20px;
  }
  .diagnosis-cta__step:not(:last-child)::after {
    width: clamp(24px, 6vw, 60px);
  }
  .diagnosis-cta__step-circle {
    width: 26px;
    height: 26px;
  }
  .diagnosis-cta__step-icon--goal {
    width: 26px;
  }
}
@keyframes diagFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.diagnosis-cta__result {
  display: none;
  animation: diagFadeIn 0.4s ease forwards;
}
.diagnosis-cta__result:not([hidden]) {
  display: block;
}

.diagnosis-cta__result-header {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6666666667vw, 32px);
  margin-bottom: clamp(20px, 1.6666666667vw, 32px);
}

.diagnosis-cta__result-eyecatch {
  flex-shrink: 0;
  width: clamp(100px, 14vw, 160px);
}
.diagnosis-cta__result-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.diagnosis-cta__result-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.3958333333vw, 46px);
  color: #333333;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.4;
}

.diagnosis-cta__result-cards {
  display: grid;
  gap: clamp(16px, 1.25vw, 24px);
  grid-template-columns: 1fr;
}
.diagnosis-cta__result-cards[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}
.diagnosis-cta__result-cards[data-count="3"], .diagnosis-cta__result-cards[data-count="4"], .diagnosis-cta__result-cards[data-count="5"], .diagnosis-cta__result-cards[data-count="6"] {
  grid-template-columns: 1fr 1fr;
}

.diagnosis-cta__result-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.diagnosis-cta__result-card-header {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.0416666667vw, 20px);
  padding: clamp(14px, 1.25vw, 24px) clamp(20px, 1.6666666667vw, 32px);
  background: #ffffff;
  border-bottom: 11px solid #c7c0a3;
}

.diagnosis-cta__result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #571519;
  color: #ffffff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.1458333333vw, 22px);
  padding: clamp(8px, 0.625vw, 12px) clamp(16px, 1.4583333333vw, 28px);
  border-radius: 30px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.diagnosis-cta__result-label {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 51px;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0;
}

.diagnosis-cta__result-card-body {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.diagnosis-cta__result-img {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
          mask-image: linear-gradient(to right, black 70%, transparent 100%);
}
.diagnosis-cta__result-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.diagnosis-cta__result-card .plan__cta-wrap {
  flex: 0 0 54%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.0416666667vw, 20px);
  margin-top: 0;
}
.diagnosis-cta__result-card .plan__cta {
  max-width: 100%;
  width: 100%;
  border: 2px solid #005baf;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.5208333333vw, 10px);
  padding: clamp(8px, 0.625vw, 12px) clamp(16px, 1.25vw, 24px);
}
.diagnosis-cta__result-card .plan__cta-label {
  position: static;
  transform: none;
  flex: 1;
  text-align: center;
  left: auto;
  top: auto;
}
.diagnosis-cta__result-card .plan__cta-arrow {
  position: static;
  transform: none;
  flex-shrink: 0;
}

.diagnosis-cta__result-card--no-img .plan__cta-wrap {
  flex: 1;
}

.diagnosis-cta__result-cards[data-count="1"] .diagnosis-cta__result-card {
  height: 338px;
}
.diagnosis-cta__result-cards[data-count="1"] .diagnosis-cta__result-card-header {
  padding: clamp(14px, 1.25vw, 24px) clamp(20px, 1.6666666667vw, 32px);
  border-bottom-width: 11px;
}
.diagnosis-cta__result-cards[data-count="1"] .diagnosis-cta__result-badge {
  font-size: clamp(14px, 1.1458333333vw, 22px);
  padding: clamp(8px, 0.625vw, 12px) clamp(16px, 1.4583333333vw, 28px);
}
.diagnosis-cta__result-cards[data-count="1"] .diagnosis-cta__result-label {
  font-size: 51px;
}
.diagnosis-cta__result-cards[data-count="1"] .plan__cta {
  min-height: clamp(50px, 6vw, 70px);
}
.diagnosis-cta__result-cards[data-count="1"] .plan__cta-label {
  font-size: clamp(14px, 1.0416666667vw, 20px);
}

.diagnosis-cta__result-cards:not([data-count="1"]) .diagnosis-cta__result-card-header {
  padding: clamp(8px, 0.7291666667vw, 14px) clamp(12px, 1.0416666667vw, 20px);
  border-bottom-width: 6px;
  gap: clamp(8px, 0.625vw, 12px);
}
.diagnosis-cta__result-cards:not([data-count="1"]) .diagnosis-cta__result-badge {
  font-size: clamp(14px, 0.7291666667vw, 14px);
  padding: clamp(4px, 0.4166666667vw, 8px) clamp(10px, 0.8333333333vw, 16px);
  border-radius: 20px;
}
.diagnosis-cta__result-cards:not([data-count="1"]) .diagnosis-cta__result-label {
  font-size: 28px;
}
.diagnosis-cta__result-cards:not([data-count="1"]) .diagnosis-cta__result-card-body {
  max-height: 133px;
}
.diagnosis-cta__result-cards:not([data-count="1"]) .diagnosis-cta__result-img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.diagnosis-cta__result-cards:not([data-count="1"]) .plan__cta {
  min-height: clamp(36px, 5vw, 56px);
}
.diagnosis-cta__result-cards:not([data-count="1"]) .plan__cta-label {
  font-size: clamp(16px, 0.8333333333vw, 16px);
}
.diagnosis-cta__result-cards:not([data-count="1"]) .plan__cta-ribbon {
  top: -18px;
}

@media (max-width: 768px) {
  .diagnosis-cta__eyecatch {
    display: block;
    margin-inline: auto;
  }
  .diagnosis-cta__result-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .diagnosis-cta__result-card {
    border-radius: 16px;
    height: auto;
  }
  .diagnosis-cta__result-cards .diagnosis-cta__result-card .diagnosis-cta__result-card-header {
    border-bottom-width: 2px;
    padding: 12px;
    gap: 8px;
    height: 58px;
  }
  .diagnosis-cta__result-cards .diagnosis-cta__result-card-body,
  .diagnosis-cta__result-cards:not([data-count="1"]) .diagnosis-cta__result-card-body {
    flex-direction: column;
    height: auto;
    max-height: none;
  }
  .diagnosis-cta__result-img {
    flex: none;
    height: clamp(130px, 42vw, 175px);
    -webkit-mask-image: none;
            mask-image: none;
    padding-top: 12px;
  }
  .diagnosis-cta__result-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .diagnosis-cta__result-card .plan__cta-wrap {
    flex: none;
    margin: 0 auto;
    width: 100%;
    max-width: 259px;
    padding: 22px 16px;
  }
  .diagnosis-cta__result-cards[data-count="2"], .diagnosis-cta__result-cards[data-count="3"], .diagnosis-cta__result-cards[data-count="4"], .diagnosis-cta__result-cards[data-count="5"], .diagnosis-cta__result-cards[data-count="6"] {
    grid-template-columns: 1fr;
  }
  .diagnosis-cta__result-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
  .diagnosis-cta__result-cards .diagnosis-cta__result-card .diagnosis-cta__result-label {
    font-size: 20px;
  }
  .diagnosis-cta__result-cards .diagnosis-cta__result-card .plan__cta {
    min-height: 43px;
    border-width: 2px;
  }
  .diagnosis-cta__result-cards .diagnosis-cta__result-card .plan__cta-label {
    font-size: 18px;
  }
}
.diagnosis-cta__result-fallback {
  width: 100%;
  padding: clamp(28px, 2.0833333333vw, 40px);
  text-align: center;
  color: #999;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  letter-spacing: 0.04em;
}

@media (max-width: 420px) {
  .diagnosis-cta__result-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .diagnosis-cta__result-eyecatch {
    width: clamp(80px, 30vw, 120px);
  }
  .diagnosis-cta__result-cards {
    grid-template-columns: 1fr;
  }
  .diagnosis-cta__result-cards[data-count="2"], .diagnosis-cta__result-cards[data-count="3"], .diagnosis-cta__result-cards[data-count="4"], .diagnosis-cta__result-cards[data-count="5"], .diagnosis-cta__result-cards[data-count="6"] {
    grid-template-columns: 1fr;
  }
}
.faq {
  width: 100%;
  background-color: #f8f7f3;
  width: 100%;
}
.faq__inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .faq__inner {
    padding-inline: 16px;
  }
}
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.faq__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq__heading-icon {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto;
}
.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: "Afacad Flux", "Afacad", system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #643417;
  line-height: 1;
}
@media (max-width: 768px) {
  .faq__eyebrow {
    font-size: 20px;
  }
}
.faq__eyebrow-slash {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #643417;
  flex-shrink: 0;
}
.faq__eyebrow-slash--left {
  transform: rotate(60deg);
}
.faq__eyebrow-slash--right {
  transform: rotate(-60deg);
}
.faq__title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 20px;
    margin-top: 16px;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  overflow: hidden;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 16px 24px;
  background: #411d07;
  border: 0;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  text-align: left;
}
.faq__question:focus-visible {
  outline: 2px solid #b67a3d;
  outline-offset: 2px;
}
.faq__q-mark {
  display: inline-flex;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.125;
  color: #333333;
}
.faq__q-text {
  flex: 1;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}
.faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
}
.faq__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  background: #ffffff;
  transform: translateY(-50%);
}
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 16px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}
.faq__answer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  background: #ffffff;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-block 0.3s ease;
}
.faq__a-mark {
  display: inline-flex;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #b67a3d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.125;
  color: #ffffff;
}
.faq__a-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #333333;
}
.faq__item--open .faq__answer {
  max-height: 800px;
  opacity: 1;
  padding-block: 16px;
}
.faq__item--open .faq__toggle::after {
  opacity: 0;
}
@media (max-width: 420px) {
  .faq__question {
    font-size: 16px;
    padding: 16px 12px;
  }
  .faq__q-mark {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .faq__answer {
    font-size: 14px;
    padding: 0 12px;
  }
  .faq__a-mark {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .faq__a-text {
    font-size: 14px;
  }
}

.faq-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .faq-wrap {
    padding-top: 48px;
  }
}
.faq-wrap {
  padding-block: clamp(80px, 9vw, 128px);
}
@media (max-width: 768px) {
  .faq-wrap {
    padding-top: 48px;
  }
}
.faq-wrap {
  padding-bottom: 0;
}

.faq-banner-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .faq-banner-wrap {
    padding-top: 48px;
  }
}
.faq-banner-wrap {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .faq-banner-wrap {
    padding-top: 32px;
  }
}
.faq-banner__inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .faq-banner__inner {
    padding-inline: 16px;
  }
}
.faq-banner__link {
  display: block;
  width: 100%;
  text-decoration: none;
}
.faq-banner__img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  max-width: 1100px;
  transition: filter 0.3s ease;
}
.faq-banner__img:hover {
  filter: brightness(1.08);
}

.footer-cta {
  width: 100%;
  background-color: #efeeec;
  position: relative;
  width: 100%;
}
.footer-cta__top {
  position: relative;
  padding: 80px 0;
  text-align: center;
  z-index: 1;
}
.footer-cta__top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/cta-footer/footer-bg.png");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .footer-cta__top {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .footer-cta__top::before {
    background-image: url("../images/cta-footer/footer-bg-sp.png");
    background-size: cover;
    background-position: center;
  }
}
.footer-cta__inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .footer-cta__inner {
    padding-inline: 16px;
  }
}
.footer-cta__inner {
  position: relative;
  z-index: 2;
}
.footer-cta__lead {
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 1.95;
  letter-spacing: 0.08em;
  color: #000000;
  margin-bottom: 22px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-cta__lead {
    margin-bottom: 128px;
  }
}
.footer-cta__button {
  display: block;
  width: 100%;
  max-width: clamp(280px, 32.3958333333vw, 622px);
  aspect-ratio: 622/132;
  margin-inline: auto;
  text-decoration: none;
  transition: transform 0.18s ease;
}
.footer-cta__button img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-cta__button:hover {
  transform: translateY(-2px);
}
.footer-cta__bottom {
  background: #463a33;
  color: #ffffff;
  padding-block: clamp(56px, 5vw, 96px);
}
.footer-cta__bottom-inner {
  width: 100%;
  max-width: calc(1100px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .footer-cta__bottom-inner {
    padding-inline: 16px;
  }
}
.footer-cta__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.footer-cta__main-frame {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-cta__brand {
  flex: 0 1 591px;
}
.footer-cta__brand h3 {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.footer-cta__nav {
  flex-shrink: 0;
}
.footer-cta__nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-cta__nav a {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.footer-cta__nav a:hover {
  color: #ffdc3f;
}
.footer-cta__footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-cta__policy {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta__policy a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.footer-cta__policy a:hover {
  color: #ffdc3f;
}
.footer-cta__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .footer-cta__main-frame {
    flex-direction: column;
    gap: 48px;
  }
  .footer-cta__brand {
    flex: none;
  }
  .footer-cta__nav a {
    white-space: normal;
  }
  .footer-cta__bottom-inner {
    gap: 40px;
  }
  .footer-cta__footer-links {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-cta__copyright {
    white-space: normal;
  }
}

.footer-cta-wrap {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .footer-cta-wrap {
    padding-top: 48px;
  }
}
.footer-cta-wrap {
  position: relative;
  overflow: hidden;
  padding-top: unset;
}

body.lp-page {
  max-width: none;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #f8f7f3;
}
