@charset "UTF-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

:root {
  --color-primary: #BF0D21;
  --color-gold: #D4AF37;
  --color-gold-dark: #B4861D;
  --color-gold-light: #F5E6C8;
  --color-gold-bg: #C9A83E;
  --color-text: #3B332A;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-black: #222222;
  --color-bg-light: #F5F5F5;
  --color-bg-beige: #FAF6F0;
  --color-border: #E0E0E0;
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-family-mincho: "Shippori Mincho", serif;
  --font-family-castoro: "Castoro", serif;
  --max-width: 1200px;
  --header-height: 80px;
}
@media screen and (max-width: 1439px) {
  :root {
    --max-width: calc(1200 / 1440 * 100vw);
    --header-height: calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  :root {
    --max-width: calc(375 / 375 * 100vw);
    --header-height: calc(63 / 375 * 100vw);
  }
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

/* Header
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.l-header--scroll,
.l-header--active {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-header--scroll .l-header__cta,
  .l-header--active .l-header__cta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  padding-left: 24px;
}
@media screen and (max-width: 1439px) {
  .l-header__inner {
    padding-left: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-left: calc(15 / 375 * 100vw);
  }
}

.l-header__logo {
  width: 123px;
}
@media screen and (max-width: 1439px) {
  .l-header__logo {
    width: calc(123 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: calc(95 / 375 * 100vw);
  }
}

.l-header__logo a {
  display: block;
  display: flex;
  align-items: center;
}

.l-header__logo img {
  width: 100%;
}

.l-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
}
@media screen and (max-width: 1439px) {
  .l-header__right {
    gap: calc(36 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__right {
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav {
    background-image: url(../images/bg_nav_sp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vh - var(--header-height));
    position: fixed;
    top: var(--header-height);
    left: 0;
    z-index: 999;
    transform: translateX(101%);
    transition: transform 0.3s ease;
    overflow: auto;
  }

  .l-header__nav--active {
    transform: translateX(0);
  }
}

.l-header__nav-list {
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 1439px) {
  .l-header__nav-list {
    gap: calc(36 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    padding-top: calc(50 / 375 * 100vw);
    padding-bottom: calc(50 / 375 * 100vw);
    flex-direction: column;
    align-items: center;
    gap: calc(30 / 375 * 100vw);
  }
}

.l-header__nav-item a {
  font-family: var(--font-family-mincho);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-text);
  transition: color 0.3s ease;
}
@media screen and (max-width: 1439px) {
  .l-header__nav-item a {
    font-size: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item a {
    font-size: calc(16 / 375 * 100vw);
    font-weight: 600;
  }
}

.l-header__nav-item a:hover {
  color: var(--color-gold-dark);
}

.l-header__cta {
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .l-header__cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, pointer-events 0.3s ease;
  }
}

.l-header__cta .c-btn {
  display: inline-block;
  width: 160px;
  height: 50px;
  background-image: url(../images/cta_header_pc.png);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  text-indent: 150vw;
}
@media screen and (max-width: 1439px) {
  .l-header__cta .c-btn {
    width: calc(160 / 1440 * 100vw);
    height: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__cta .c-btn {
    width: calc(90 / 375 * 100vw);
    height: calc(63 / 375 * 100vw);
    background-image: url(../images/cta_header_sp.png);
  }
}

.l-header__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__toggle {
    display: block;
    width: calc(70 / 375 * 100vw);
    height: calc(63 / 375 * 100vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .l-header__toggle-line {
    position: relative;
    width: calc(35 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
  }

  .l-header__toggle-line div {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }

  .l-header__toggle-line div:nth-child(1) {
    top: 0;
  }

  .l-header__toggle-line div:nth-child(2) {
    top: 50%;
  }

  .l-header__toggle-line div:nth-child(3) {
    top: 100%;
  }

  .l-header__toggle-line--active div:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .l-header__toggle-line--active div:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .l-header__toggle-line--active div:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .l-header__toggle-text {
    font-family: var(--font-family-mincho);
    font-weight: 700;
    font-size: calc(13 / 375 * 100vw);
    color: var(--color-text);
    text-align: center;
    margin-top: calc(7 / 375 * 100vw);
    letter-spacing: 0.02em;
    line-height: 1;
  }
}

/* Footer
   ========================================================================== */
.l-footer {
  margin-top: auto;
}

.l-footer__contact {
  padding: 48px 0;
  background-color: #A0824A;
}
@media screen and (max-width: 1439px) {
  .l-footer__contact {
    padding: calc(48 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__contact {
    padding: calc(24 / 375 * 100vw) 0;
  }
}

.l-footer__contact-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__contact-inner {
    flex-direction: column;
    align-items: center;
    gap: calc(10 / 375 * 100vw);
  }
}

.l-footer__company {
  width: 358px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .l-footer__company {
    width: calc(358 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    width: 100%;
  }
}

.l-footer__company-name {
  font-family: var(--font-family-mincho);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-white);
}
@media screen and (max-width: 1439px) {
  .l-footer__company-name {
    font-size: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__company-name {
    font-size: calc(16 / 375 * 100vw);
  }
}

.l-footer__company-address {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-top: 4px;
}
@media screen and (max-width: 1439px) {
  .l-footer__company-address {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__company-address {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(2 / 375 * 100vw);
  }
}

.l-footer__inquiry {
  width: 362px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .l-footer__inquiry {
    width: calc(362 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inquiry {
    width: 100%;
  }
}

.l-footer__inquiry-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-white);
}
@media screen and (max-width: 1439px) {
  .l-footer__inquiry-title {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inquiry-title {
    font-size: calc(12 / 375 * 100vw);
  }
}

.l-footer__inquiry-tel {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .l-footer__inquiry-tel {
    font-size: calc(16 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inquiry-tel {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(2 / 375 * 100vw);
  }
}

.l-footer__inquiry-hours {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .l-footer__inquiry-hours {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inquiry-hours {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(2 / 375 * 100vw);
  }
}

.l-footer__inquiry-note {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-top: 4px;
  line-height: 1;
}
@media screen and (max-width: 1439px) {
  .l-footer__inquiry-note {
    font-size: calc(12 / 1440 * 100vw);
    margin-top: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inquiry-note {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(2 / 375 * 100vw);
  }
}

.l-footer__bottom {
  padding: 40px 0;
  background-color: var(--color-black);
}
@media screen and (max-width: 1439px) {
  .l-footer__bottom {
    padding: calc(40 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    padding: calc(46 / 375 * 100vw) 0 calc(12 / 375 * 100vw);
  }
}

.l-footer__bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.l-footer__nav {
  display: flex;
  justify-content: center;
  gap: 68px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1439px) {
  .l-footer__nav {
    gap: calc(68 / 1440 * 100vw);
    margin-bottom: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    gap: calc(24 / 375 * 100vw);
    margin-bottom: calc(32 / 375 * 100vw);
  }
}

.l-footer__nav-item {
  position: relative;
}

.l-footer__nav-item::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1439px) {
  .l-footer__nav-item::after {
    right: calc(-34 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item::after {
    right: calc(-12 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
}

.l-footer__nav-item:last-child::after {
  display: none;
}

.l-footer__nav-item a {
  font-size: 1.4rem;
  color: var(--color-white);
}
@media screen and (max-width: 1439px) {
  .l-footer__nav-item a {
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item a {
    font-size: calc(12 / 375 * 100vw);
  }
}

.l-footer__nav-item a:hover {
  text-decoration: underline;
}

.l-footer__copyright {
  font-size: 1.2rem;
  color: #AAAAAA;
}
@media screen and (max-width: 1439px) {
  .l-footer__copyright {
    font-size: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: calc(12 / 375 * 100vw);
  }
}

/* ==========================================================================
   Component
   ========================================================================== */

/* Button
   ========================================================================== */
.c-btn {
  display: inline-flex;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: box-shadow 0.3s ease;
}
.c-btn:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3.75px 12.5px 0px;
}

/* Text Side Line
   ========================================================================== */
.c-text-side-line {
  position: relative;
}

.c-text-side-line .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #816116 0%, rgba(129, 97, 22, 0) 100%);
  vertical-align: super;
}
@media screen and (max-width: 1439px) {
  .c-text-side-line .line {
    width: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-text-side-line .line {
    width: calc(40 / 375 * 100vw);
  }
}

.c-text-side-line .line--white {
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.c-text-side-line .line--left {
  transform: rotate(180deg);
  margin-right: 16px;
}
@media screen and (max-width: 1439px) {
  .c-text-side-line .line--left {
    margin-right: calc(16 / 1440 * 100vw);
  }
}

.c-text-side-line .line--right {
  margin-left: 16px;
}
@media screen and (max-width: 1439px) {
  .c-text-side-line .line--right {
    margin-left: calc(16 / 1440 * 100vw);
  }
}

/* CTA Button
   ========================================================================== */
.c-cta-button {
  width: 390px;
  height: 60px;
  background-image: url(../images/cta_pc.png);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  text-indent: 150vw;
}
@media screen and (max-width: 1439px) {
  .c-cta-button {
    width: calc(390 / 1440 * 100vw);
    height: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-cta-button {
    width: calc(325 / 375 * 100vw);
    height: calc(53 / 375 * 100vw);
    background-image: url(../images/cta_sp.png);
  }
}

/* Modal
   ========================================================================== */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-modal--active {
  opacity: 1;
  visibility: visible;
}

.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.c-modal__content {
  position: relative;
  width: 580px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--color-white);
  border-radius: 2px;
  padding: 32px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-modal__content {
    width: calc(346 / 375 * 100vw);
    max-width: none;
    padding: calc(32 / 375 * 100vw) calc(20 / 375 * 100vw);
    border-radius: calc(2 / 375 * 100vw);
  }
}

.c-modal--active .c-modal__content {
  transform: translateY(0);
}

.c-modal__close {
  position: absolute;
  top: 44px;
  right: 32px;
  width: 32px;
  height: 32px;
  background: #F5F2ED;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    top: calc(44 / 375 * 100vw);
    right: calc(20 / 375 * 100vw);
    width: calc(32 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
  }
}

.c-modal__close span::before,
.c-modal__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: var(--color-gold-dark);
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-modal__close span::before,
  .c-modal__close span::after {
    width: calc(14 / 375 * 100vw);
  }
}

.c-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-modal__header {
    gap: calc(12 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.c-modal__icon {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
}

.c-modal__icon img {
  width: 100%;
  height: auto;
  transform-origin: center top;
  transform: scale(2.0);
}

.c-modal__category {
  font-size: 1.4rem;
  font-family: var(--font-family-mincho);
  font-weight: 800;
  color: #B4861D;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .c-modal__category {
    font-size: calc(12 / 375 * 100vw);
    margin-bottom: calc(4 / 375 * 100vw);
  }
}

.c-modal__title {
  font-family: var(--font-family-mincho);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .c-modal__title {
    font-size: calc(20 / 375 * 100vw);
  }
}


.c-modal__text {
  font-size: 1.6rem;
  line-height: calc(24 / 16);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .c-modal__text {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
    line-height: 1.6;
  }
}

.c-modal__table {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-modal__table {
    margin-bottom: calc(16 / 375 * 100vw);
  }
}

.c-modal__table-row {
  display: flex;
  border: 1px solid var(--color-gold-dark);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-modal__table-row {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .c-modal__table-row.is-sp-row {
    flex-direction: row;
  }
  .c-modal__table-row.is-sp-row .c-modal__table-label {
    width: 50%;
  }
  .c-modal__table-row.is-sp-row .c-modal__table-value {
    width: 50%;
  }
}

.c-modal__table-label {
  width: 50%;
  flex-shrink: 0;
  padding: 8px 20px;
  background: #B4861D;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-modal__table-label {
    width: 100%;
    padding: calc(6 / 375 * 100vw) calc(16 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
}

.c-modal__table-value {
  flex: 1;
  padding: 8px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-black);
  background-color: #F5F2ED;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-modal__table-value {
    padding: calc(6 / 375 * 100vw) calc(16 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
}

.c-modal__table-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-modal__table-grid {
    grid-template-columns: 1fr;
    gap: calc(20 / 375 * 100vw);
  }
}


.c-modal__section:first-child {
  padding-top: 0;
  border-top: none;
}

.c-modal__section + .c-modal__section {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .c-modal__section + .c-modal__section {
    margin-top: calc(38 / 375 * 100vw);
  }
}

.c-modal__section-label {
  font-size: 1.4rem;
  color: #B4861D;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-modal__section-label {
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-modal__section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (max-width: 767px) {
  .c-modal__section-title {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
  }
}

.c-modal__section .c-modal__text {
  margin-bottom: 0;
}

.c-modal__heading {
  font-family: var(--font-family-mincho);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-modal__heading {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(16 / 375 * 100vw);
  }
}

.c-modal__note {
  font-size: 1.4rem;
  line-height: calc(24 / 14);
  color: #817978;
}
@media screen and (max-width: 767px) {
  .c-modal__note {
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-modal__service-name {
  font-family: var(--font-family-mincho);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-modal__service-name {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(6 / 375 * 100vw);
  }
}

.c-modal__service-provider {
  font-size: 1.4rem;
  color: var(--color-gold-dark);
}
@media screen and (max-width: 767px) {
  .c-modal__service-provider {
    font-size: calc(12 / 375 * 100vw);
  }

  .c-modal__service-provider.c-text-side-line {
    display: block;
  }
  .c-modal__service-provider.c-text-side-line .line--left,
  .c-modal__service-provider.c-text-side-line .line--right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .c-modal__service-provider.c-text-side-line .line--left {
    left: calc(20 / 375 * 100vw);
  }
  .c-modal__service-provider.c-text-side-line .line--right {
    right: calc(20 / 375 * 100vw);
  }
}

.c-modal__check-list {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-modal__check-list {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.c-modal__check-list li {
  font-family: var(--font-family-mincho);
  font-weight: 700;
  position: relative;
  padding-left: 28px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #5A5454;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-modal__check-list li {
    padding-left: calc(28 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(24 / 16);
    margin-bottom: calc(8 / 375 * 100vw);
  }
}

.c-modal__check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 23px;
  height: 24px;
  background-image: url('../images/icon_check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-modal__check-list li::before {
    width: calc(23 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
    top: calc(2 / 375 * 100vw);
  }
}

.c-modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .c-modal__gallery {
    grid-template-columns: 1fr;
    gap: calc(8 / 375 * 100vw);
  }
}

.c-modal__gallery-item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-modal__gallery-item {
    display: flex;
    align-items: center;
  }
}

.c-modal__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-modal__gallery-item img {
    width: calc(152 / 375 * 100vw);
    margin-right: calc(16 / 375 * 100vw);
  }
}

.c-modal__gallery-item span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #5A5454;
}
@media screen and (max-width: 767px) {
  .c-modal__gallery-item span {
    text-align: left;
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #6BB374;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-modal__link {
    font-size: calc(13 / 375 * 100vw);
    gap: calc(4 / 375 * 100vw);
  }
}

.c-modal__link:hover {
  opacity: 0.7;
}

.c-modal__link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .c-modal__link svg {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
  }
}

.c-modal__box {
  padding: 24px;
  background-color: #F5F2ED;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .c-modal__box {
    padding: calc(20 / 375 * 100vw);
    border-radius: calc(8 / 375 * 100vw);
  }
}

.c-modal__box-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-align: center;
  margin-bottom: 10px;
  text-underline-offset: 4px;
}
@media screen and (max-width: 767px) {
  .c-modal__box-title {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}

.c-modal__box-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #5A5454;
}
@media screen and (max-width: 767px) {
  .c-modal__box-text {
    font-size: calc(14 / 375 * 100vw);
  }
}

/* CTA Link
   ========================================================================== */
.c-cta-link {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #6BB374;
  text-decoration: underline;
}
@media screen and (max-width: 1439px) {
  .c-cta-link {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-cta-link {
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-cta-link:hover {
  text-decoration: none;
}

.c-cta-link--mt {
  margin-top: 16px;
}
@media screen and (max-width: 1439px) {
  .c-cta-link--mt {
    margin-top: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-cta-link--mt {
    margin-top: calc(16 / 375 * 100vw);
  }
}

/* Main Title
   ========================================================================== */
.c-maintitle {
  font-family: var(--font-family-mincho);
  font-size: 4.4rem;
  font-weight: 800;
  color: #444;
}
@media screen and (max-width: 1439px) {
  .c-maintitle {
    font-size: calc(44 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-maintitle {
    font-size: calc(26 / 375 * 100vw);
  }
}

.c-maintitle--white {
  color: #FFF;
}

/* Sub Title
   ========================================================================== */
.c-subtitle {
  font-family: var(--font-family-castoro);
  font-size: 2.2rem;
  margin-top: 16px;
  font-weight: 400;
  color: #B4861D;
}
@media screen and (max-width: 1439px) {
  .c-subtitle {
    margin-top: calc(16 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-subtitle {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(12 / 375 * 100vw);
  }
}

.c-subtitle--white {
  color: #FFF;
}

/* ==========================================================================
  Project
========================================================================== */

/* Main Visual
   ========================================================================== */
.p-mv {
  padding: 186px 0 133px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/bg_kv_pc.webp);
}
@media screen and (max-width: 1439px) {
  .p-mv {
    padding: calc(186 / 1440 * 100vw) 0 calc(133 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: calc(75 / 375 * 100vw) 0 calc(54 / 375 * 100vw);
    background-image: url(../images/bg_kv_sp.webp);
  }
}

.p-mv__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1439px) {
  .p-mv__content {
    gap: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    text-align: center;
  }
}

.p-mv__text {
  width: 570px;
}
@media screen and (max-width: 1439px) {
  .p-mv__text {
    width: calc(570 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__title {
    order: 1;
  }
}

.p-mv__title-main {
  display: block;
  font-family: var(--font-family-mincho);
  font-size: 5.2rem;
  font-weight: 700;
  color: #3B332A;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1439px) {
  .p-mv__title-main {
    font-size: calc(52 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title-main {
    font-size: calc(28.3 / 375 * 100vw);
  }
}

.p-mv__title-sub {
  display: block;
  font-family: var(--font-family-mincho);
  font-size: 3.2rem;
  color: #3B332A;
}
@media screen and (max-width: 1439px) {
  .p-mv__title-sub {
    font-size: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title-sub {
    font-size: calc(17.5 / 375 * 100vw);
    line-height: 1;
  }
}

.p-mv__product {
  margin-top: 24px;
}
@media screen and (max-width: 1439px) {
  .p-mv__product {
    margin-top: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__product {
    order: 2;
    margin-top: calc(12/ 375 * 100vw);
  }
}

.p-mv__product-ruby {
  display: block;
  font-size: 1.8rem;
  color: #816116;
  font-family: var(--font-family-mincho);
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 1439px) {
  .p-mv__product-ruby {
    font-size: calc(18 / 1440 * 100vw);
    letter-spacing: calc(1 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__product-ruby {
    font-size: calc(10 / 375 * 100vw);
  }
}

.p-mv__product-name {
  display: block;
  font-family: var(--font-family-castoro);
  font-size: 4.5rem;
  color: #816116;
}
@media screen and (max-width: 1439px) {
  .p-mv__product-name {
    font-size: calc(45 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__product-name {
    font-size: calc(24 / 375 * 100vw);
  }
}

.p-mv__bottom {
  width: 390px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-mv__bottom {
    width: calc(390 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__bottom {
    order: 5;
    width: 100%;
    margin-top: calc(-5 / 375 * 100vw);
  }
}

.p-mv__target-text {
  display: block;
  font-size: 2.5rem;
  color: var(--color-gold-dark);
  font-family: var(--font-family-mincho);
  font-weight: 700;
}
@media screen and (max-width: 1439px) {
  .p-mv__target-text {
    font-size: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__target-text {
    font-size: calc(20.83 / 375 * 100vw);
  }
}

.p-mv__target-text .line--left {
  margin-right: 5px;
}
@media screen and (max-width: 1439px) {
  .p-mv__target-text .line--left {
    margin-right: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__target-text .line--left {
    margin-right: calc(4 / 375 * 100vw);
  }
}

.p-mv__target-text .line--right {
  margin-left: 5px;
}
@media screen and (max-width: 1439px) {
  .p-mv__target-text .line--right {
    margin-left: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__target-text .line--right {
    margin-left: calc(4 / 375 * 100vw);
  }
}

.p-mv__target-desc {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-family-mincho);
  font-weight: 700;
  color: #3B332A;
  margin-top: 8px;
  line-height: 1.0;
}
@media screen and (max-width: 1439px) {
  .p-mv__target-desc {
    font-size: calc(18 / 1440 * 100vw);
    margin-top: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__target-desc {
    font-size: calc(15 / 375 * 100vw);
    margin-top: calc(6 / 375 * 100vw);
  }
}

.p-mv__cta {
  margin-top: 16px;
  font-size: 0;
}
@media screen and (max-width: 1439px) {
  .p-mv__cta {
    margin-top: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__cta {
    margin-top: calc(18 / 375 * 100vw);
  }
}

.p-mv__visual {
  padding-top: 30px;
  width: 405.5px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-mv__visual {
    padding-top: calc(30 / 1440 * 100vw);
    width: calc(405.5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__visual {
    padding-top: 0;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__card {
    order: 3;
    width: calc(246 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}

.p-mv__card img {
  width: 100%;
}

.p-mv__info {
  margin-top: -58px;
}
@media screen and (max-width: 1439px) {
  .p-mv__info {
    margin-top: calc(-58 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__info {
    order: 4;
    margin-top: calc(-68 / 375 * 100vw);
    width: calc(246 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}

.p-mv__info img {
  width: 100%;
}

.p-mv--small {
  padding-top: 95px;
  padding-bottom: 32px;
}
@media screen and (max-width: 1439px) {
  .p-mv--small {
    padding-top: calc(95 / 1440 * 100vw);
    padding-bottom: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small {
    padding-top: calc(40 / 375 * 100vw);
    padding-bottom: calc(46 / 375 * 100vw);
  }
}

.p-mv--small .p-mv__title-main {
  font-size: 32px;
}
@media screen and (max-width: 1439px) {
  .p-mv--small .p-mv__title-main {
    font-size: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__title-main {
    font-size: calc(28.3 / 375 * 100vw);
  }
}

.p-mv--small .p-mv__title-sub {
  font-size: 24px;
}
@media screen and (max-width: 1439px) {
  .p-mv--small .p-mv__title-sub {
    font-size: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__title-sub {
    font-size: calc(17.5 / 375 * 100vw);
    line-height: 1.4;
  }
}

.p-mv--small .p-mv__product {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-mv--small .p-mv__product {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__product {
    margin-top: calc(12 / 375 * 100vw);
  }
}

.p-mv--small .p-mv__product-ruby {
  font-size: 22.05px;
}
@media screen and (max-width: 1439px) {
  .p-mv--small .p-mv__product-ruby {
    font-size: calc(22.05 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__product-ruby {
    font-size: calc(13 / 375 * 100vw);
  }
}

.p-mv--small .p-mv__product-name {
  font-size: 55.13px;
}
@media screen and (max-width: 1439px) {
  .p-mv--small .p-mv__product-name {
    font-size: calc(55.13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__product-name {
    font-size: calc(32 / 375 * 100vw);
  }
}

.p-mv--small .p-mv__bottom {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-mv--small .p-mv__bottom {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__bottom {
    margin-top: calc(20 / 375 * 100vw);
  }
}

.p-mv--small .p-mv__target-text {
  font-size: 16px;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__target-text {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mv--small .p-mv__target-text {
    font-size: calc(16 / 375 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .p-mv__target-desc {
    display: block;
    width: calc(296 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}

/* Campaign Banner
   ========================================================================== */
.p-campaign-banner {
  border-top: 2px solid #CF9D4E;
  border-bottom: 2px solid #CF9D4E;
  padding: 80px 0;
  background-image: url(../images/bg_campaign_pc.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FCF7EA;
}
@media screen and (max-width: 1439px) {
  .p-campaign-banner {
    padding: calc(80 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-banner {
    padding: calc(45 / 375 * 100vw) 0;
    background-image: url(../images/bg_campaign_sp.webp);
  }
}

.p-campaign-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.p-campaign-banner__content {
  text-align: center;
}

.p-campaign-banner__lead {
  font-size: 2.8rem;
  font-family: var(--font-family-mincho);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
@media screen and (max-width: 1439px) {
  .p-campaign-banner__lead {
    font-size: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-banner__lead {
    font-size: calc(20 / 375 * 100vw);
  }
}

.p-campaign-banner__title {
  width: 751.5px;
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1439px) {
  .p-campaign-banner__title {
    width: calc(751.5 / 1440 * 100vw);
    margin-top: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-banner__title {
    width: calc(330 / 375 * 100vw);
    margin-top: calc(12 / 375 * 100vw);
  }
}

.p-campaign-banner__cta {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-campaign-banner__cta {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-banner__cta {
    margin-top: calc(20 / 375 * 100vw);
  }
}

/* Worry Section
   ========================================================================== */
.p-worry {
  padding: 120px 0 160px;
  background-color: #F5F2ED;
  background-image: url(../images/bg_worry.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1439px) {
  .p-worry {
    padding: calc(120 / 1440 * 100vw) 0 calc(160 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry {
    padding: calc(50 / 375 * 100vw) 0 calc(120 / 375 * 100vw);
  }
}

.p-worry__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-worry__inner {
    max-width: calc(1200 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry__inner {
    max-width: calc(325 / 375 * 100vw);
  }
}

.p-worry__header {
  position: relative;
  margin-bottom: 56px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-worry__header {
    margin-bottom: calc(56 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry__header {
    margin-bottom: calc(24 / 375 * 100vw);
    text-align: left;
    padding-left: calc(14 / 375 * 100vw);
  }
}

.p-worry__image {
  position: absolute;
  width: 94px;
  right: 144px;
  top: -11px;
}
@media screen and (max-width: 1439px) {
  .p-worry__image {
    right: calc(144 / 1440 * 100vw);
    top: calc(-11 / 1440 * 100vw);
    width: calc(94 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry__image {
    width: calc(80 / 375 * 100vw);
    right: calc(31 / 375 * 100vw);
    top: calc(-12 / 375 * 100vw);
  }
}

.p-worry__image img {
  width: 100%;
}

.p-worry__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1439px) {
  .p-worry__list {
    gap: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry__list {
    grid-template-columns: 1fr;
    gap: calc(24 / 375 * 100vw);
  }
}

.p-worry__item {
  padding: 24px 18px 36px;
  border: 1px solid var(--color-gold-dark);
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1439px) {
  .p-worry__item {
    padding: calc(24 / 1440 * 100vw) calc(18 / 1440 * 100vw) calc(36 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry__item {
    padding: calc(24 / 375 * 100vw) calc(40 / 375 * 100vw);
  }
}

.p-worry__item-title {
  display: block;
  width: 234px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto 5px;
  font-size: 2.7rem;
  font-family: var(--font-family-mincho);
  font-weight: 800;
  color: #856B30;
  text-align: center;
  background-image: url(../images/bg_worry_title.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1439px) {
  .p-worry__item-title {
    width: calc(234 / 1440 * 100vw);
    height: calc(40 / 1440 * 100vw);
    line-height: calc(40 / 1440 * 100vw);
    font-size: calc(27 / 1440 * 100vw);
    margin-bottom: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry__item-title {
    width: calc(234 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
    font-size: calc(22 / 375 * 100vw);
    margin-bottom: calc(6 / 375 * 100vw);
  }
}

.p-worry__item-text {
  font-family: var(--font-family-mincho);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: calc(24 / 16);
  color: var(--color-black);
  width: 193px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-worry__item-text {
    font-size: calc(16 / 1440 * 100vw);
    width: calc(193 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worry__item-text {
    width: 100%;
    font-size: calc(16 / 375 * 100vw);
  }
}

/* Solution Section
   ========================================================================== */
.p-solution {
  position: relative;
  z-index: 1;
  margin-top: -60px;
  margin-bottom: -103px;
}
@media screen and (max-width: 1439px) {
  .p-solution {
    margin-top: calc(-60 / 1440 * 100vw);
    margin-bottom: calc(-103 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution {
    margin-top: calc(-60 / 375 * 100vw);
    margin-bottom: calc(-78 / 375 * 100vw);
  }
}

.p-solution__inner {
  max-width: 716px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-solution__inner {
    max-width: calc(716 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-solution__inner {
    max-width: calc(326 / 375 * 100vw);
  }
}

/* Merit Section
   ========================================================================== */
.p-merit {
  padding: 150px 0 120px;
  background-image: url(../images/bg_merit.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1439px) {
  .p-merit {
    padding: calc(150 / 1440 * 100vw) 0 calc(120 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit {
    padding: calc(110 / 375 * 100vw) 0 calc(56 / 375 * 100vw);
  }
}

.p-merit__inner {
  max-width: 1074px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-merit__inner {
    max-width: calc(1074 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__inner {
    max-width: calc(346 / 375 * 100vw);
  }
}

.p-merit__header {
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 1439px) {
  .p-merit__header {
    margin-bottom: calc(52 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__header {
    margin-bottom: calc(21 / 375 * 100vw);
  }
}

.p-merit__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1439px) {
  .p-merit__list {
    gap: calc(27 / 1440 * 100vw);
    margin-bottom: calc(56 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__list {
    grid-template-columns: 1fr;
    gap: calc(16 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }
}

.p-merit__item {
  padding: 24px;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-merit__item {
    padding: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__item {
    padding: calc(24 / 375 * 100vw) calc(24 / 375 * 100vw) calc(32 / 375 * 100vw);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: calc(16 / 375 * 100vw) calc(4 / 375 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .p-merit__item-icon {
    width: calc(64 / 375 * 100vw);
  }
}

.p-merit__item-icon img {
  width: 112px;
  height: 112px;
}
@media screen and (max-width: 1439px) {
  .p-merit__item-icon img {
    width: calc(112 / 1440 * 100vw);
    height: calc(112 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__item-icon img {
    width: calc(64 / 375 * 100vw);
    height: calc(64 / 375 * 100vw);
  }
}

.p-merit__item-title {
  font-family: var(--font-family-mincho);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-gold-dark);
  margin-bottom: 10px;
}
@media screen and (max-width: 1439px) {
  .p-merit__item-title {
    font-size: calc(24 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__item-title {
    width: calc(224 / 375 * 100vw);
    font-size: calc(24 / 375 * 100vw);
    margin-bottom: 0;
    text-align: left;
  }
}

.p-merit__item-text {
  font-size: 1.4rem;
  line-height: calc(21.6 / 14);
  color: var(--color-black);
  text-align: left;
}
@media screen and (max-width: 1439px) {
  .p-merit__item-text {
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__item-text {
    font-size: calc(14 / 375 * 100vw);
  }
}

.p-merit__infra {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-merit__infra {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(24 / 375 * 100vw);
  }
}

.p-merit__infra-image {
  width: calc(1024px / 2);
}
@media screen and (max-width: 1439px) {
  .p-merit__infra-image {
    width: calc((1024 / 2) / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__infra-image {
    width: calc(100% + (10 / 375 * 100vw));
    margin-right: calc(-10 / 375 * 100vw);
  }
}

.p-merit__infra-image img {
  width: 100%;
}

.p-merit__infra-content {
  width: 538px;
}
@media screen and (max-width: 1439px) {
  .p-merit__infra-content {
    width: calc(538 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__infra-content {
    width: 100%;
  }
}

.p-merit__infra-title {
  font-family: var(--font-family-mincho);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: calc(40 / 32);
  margin-bottom: 20px;
}
@media screen and (max-width: 1439px) {
  .p-merit__infra-title {
    font-size: calc(32 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__infra-title {
    font-size: calc(24 / 375 * 100vw);
    text-align: center;
  }
}

.p-merit__infra-text {
  font-size: 1.6rem;
  color: var(--color-white);
  line-height: calc(24 / 16);
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 1439px) {
  .p-merit__infra-text {
    font-size: calc(16 / 1440 * 100vw);
    letter-spacing: calc(1 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__infra-text {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    text-align: left;
  }
}

/* Feature Section
   ========================================================================== */
.p-feature {
  padding: 110px 0 110px;
  background-color: var(--color-white);
}
@media screen and (max-width: 1439px) {
  .p-feature {
    padding: calc(110 / 1440 * 100vw) 0 calc(110 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding: calc(42 / 375 * 100vw) 0 calc(52 / 375 * 100vw);
  }
}

.p-feature__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-feature__inner {
    max-width: calc(1200 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    max-width: calc(325 / 375 * 100vw);
  }
}

.p-feature__header {
  text-align: center;
  margin-bottom: 42px;
}
@media screen and (max-width: 1439px) {
  .p-feature__header {
    margin-bottom: calc(42 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__header {
    margin-bottom: calc(24 / 375 * 100vw);
  }
}

.p-feature__lead {
  font-size: 1.8rem;
  color: var(--color-text);
  margin-top: 24px;
  line-height: 1.8;
}
@media screen and (max-width: 1439px) {
  .p-feature__lead {
    font-size: calc(18 / 1440 * 100vw);
    margin-top: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__lead {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}

.p-feature__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1439px) {
  .p-feature__cards {
    gap: calc(24 / 1440 * 100vw);
    margin-bottom: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__cards {
    grid-template-columns: 1fr;
    margin-bottom: calc(20 / 375 * 100vw);
    gap: calc(24 / 375 * 100vw);
  }
}

.p-feature__card {
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.p-feature__card-label {
  display: inline-block;
  width: 100%;
  height: 49px;
  line-height: 49px;
  font-family: var(--font-family-castoro);
  font-size: 2.2rem;
  color: var(--color-white);
  text-align: center;
  background-color: #B4861D;
}
@media screen and (max-width: 1439px) {
  .p-feature__card-label {
    height: calc(49 / 1440 * 100vw);
    line-height: calc(49 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-label {
    height: calc(40 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }
}

.p-feature__card-content {
  display: flex;
  flex-direction: column;
  padding: 32px 40px 50px;
}
@media screen and (max-width: 1439px) {
  .p-feature__card-content {
    padding: calc(32 / 1440 * 100vw) calc(40 / 1440 * 100vw) calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-content {
    padding: calc(30 / 375 * 100vw) calc(16 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
}

.p-feature__card-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}
@media screen and (max-width: 1439px) {
  .p-feature__card-header {
    margin-bottom: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-header {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.p-feature__card-icon {
  width: 92px;
}
@media screen and (max-width: 1439px) {
  .p-feature__card-icon {
    width: calc(92 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-icon {
    width: calc(60 / 375 * 100vw);
  }
}

.p-feature__card-accordion-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #F5F2ED;
  border-radius: 50%;
  cursor: pointer;
}

.p-feature__card-accordion-toggle::before,
.p-feature__card-accordion-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 4px;
  background-color: var(--color-gold-dark);
}

.p-feature__card-accordion-toggle.is-plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-feature__card-icon img {
  width: 92px;
  height: 92px;
}
@media screen and (max-width: 1439px) {
  .p-feature__card-icon img {
    width: calc(92 / 1440 * 100vw);
    height: calc(92 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-icon img {
    width: calc(60 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
  }
}

.p-feature__card-title {
  font-family: var(--font-family-mincho);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-black);
  line-height: calc(31 / 24);
}
@media screen and (max-width: 1439px) {
  .p-feature__card-title {
    font-size: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-title {
    font-size: calc(24 / 375 * 100vw);
  }
}

.p-feature__card-text {
  font-size: 1.4rem;
  line-height: calc(32 / 14);
  color: var(--color-black);
}
@media screen and (max-width: 1439px) {
  .p-feature__card-text {
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(26 / 14);
  }
}

.p-feature__card-note {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-top: 12px;
}
@media screen and (max-width: 1439px) {
  .p-feature__card-note {
    font-size: calc(12 / 1440 * 100vw);
    margin-top: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__card-note {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(12 / 375 * 100vw);
    text-indent: -3em;
    padding-left: 3%;
  }
}

.p-feature__point-exchange {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 28px;
}
@media screen and (max-width: 1439px) {
  .p-feature__point-exchange {
    gap: calc(40 / 1440 * 100vw);
    margin-top: calc(40 / 1440 * 100vw);
    margin-bottom: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__point-exchange {
    flex-direction: column;
    gap: calc(40 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.p-feature__point-exchange-item {
  flex: 1;
}

.p-feature__notes {
  margin-top: 13px;
  font-size: 1.3rem;
  color: var(--color-text-light);
  line-height: calc(16 / 13);
}
@media screen and (max-width: 1439px) {
  .p-feature__notes {
    font-size: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__notes {
    font-size: calc(10 / 375 * 100vw);
  }
}

.p-feature__notes li {
  margin-bottom: 4px;
  color: #817978;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 1439px) {
  .p-feature__notes li {
    margin-bottom: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__notes li {
    margin-bottom: calc(4 / 375 * 100vw);
  }
}

/* Feature Services */
.p-feature__services {
  max-width: 1048px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 1439px) {
  .p-feature__services {
    max-width: calc(1048 / 1440 * 100vw);
    margin-top: calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services {
    max-width: calc(326 / 375 * 100vw);
    flex-direction: column-reverse;
    margin-top: calc(30 / 375 * 100vw);
  }
}

.p-feature__services-content {
  width: 424px;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-content {
    width: calc(424 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-content {
    width: 100%;
  }
}

.p-feature__services-title {
  font-family: var(--font-family-mincho);
  font-size: 2.4rem;
  font-weight: 800;
  color: #B4861D;
  line-height: calc(32 / 24);
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-title {
    font-size: calc(24 / 1440 * 100vw);
    margin-bottom: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-title {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.p-feature__services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 8px;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-list {
    gap: calc(10 / 1440 * 100vw) calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-list {
    gap: calc(10 / 375 * 100vw) calc(8 / 375 * 100vw);
    padding-left: calc(8 / 375 * 100vw);
    justify-content: flex-start;
  }
}

.p-feature__services-item {
  padding-top: 8px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
  width: 100px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px #00000029;
}
.p-feature__services-item::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 6px;
  height: 6px;
  background: #B4861D;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);

}
@media screen and (max-width: 1439px) {
  .p-feature__services-item {
    width: calc(100 / 1440 * 100vw);
    padding-top: calc(8 / 1440 * 100vw);
    padding-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-item {
    width: calc(100 / 375 * 100vw);
    padding-top: calc(8 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }
  .p-feature__services-item::before {
    width: calc(6 / 375 * 100vw);
    height: calc(6 / 375 * 100vw);
  }
}

.p-feature__services-item:hover > * {
  opacity: 0.6;
}

.p-feature__services-icon {
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-icon {
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-icon {
    margin-bottom: calc(6 / 375 * 100vw);
  }
}

.p-feature__services-icon img {
  width: 100%;
  height: auto;
}

.p-feature__services-name {
  display: block;
  font-size: 1.4rem;
  color: var(--color-black);
  font-weight: 700;
  line-height: calc(16 / 14);
  text-align: center;
  white-space: nowrap;
  margin-top: -48px;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-name {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(-48 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-name {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(-48 / 375 * 100vw);
  }
}

.p-feature__services-image {
  width: 566px;
  flex-shrink: 0;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-image {
    width: calc(566 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-image {
    width: 100%;
    height: auto;
  }
}

.p-feature__services-image img {
  width: 100%;
  height: auto;
}

/* Voice Section
   ========================================================================== */
.p-voice {
  padding: 110px 0 120px;
  background-color: #F5F2ED;
}
@media screen and (max-width: 1439px) {
  .p-voice {
    padding: calc(110 / 1440 * 100vw) 0 calc(120 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding: calc(40 / 375 * 100vw) 0 calc(60 / 375 * 100vw);
    overflow: hidden;
  }
}

.p-voice__inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-voice__inner {
    max-width: calc(1100 / 1440 * 100vw);
  }
}

.p-voice__header {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1439px) {
  .p-voice__header {
    margin-bottom: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__header {
    margin-bottom: calc(22 / 375 * 100vw);
  }
}

.p-voice__item {
  padding: 18px 24px 32px;
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1439px) {
  .p-voice__item {
    padding: calc(18 / 1440 * 100vw) calc(24 / 1440 * 100vw) calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    padding: calc(20 / 375 * 100vw) calc(16 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
}

.p-voice__item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1439px) {
  .p-voice__item-header {
    gap: calc(10 / 1440 * 100vw);
    margin-bottom: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item-header {
    gap: calc(14 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
  }
}

.p-voice__item-avatar img {
  width: 76px;
  height: auto;
}
@media screen and (max-width: 1439px) {
  .p-voice__item-avatar img {
    width: calc(76 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item-avatar img {
    width: calc(76 / 375 * 100vw);
  }
}

.p-voice__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  line-height: calc(25 / 18);
}
@media screen and (max-width: 1439px) {
  .p-voice__item-title {
    font-size: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item-title {
    font-size: calc(16 / 375 * 100vw);
  }
}

.p-voice__item-category {
  font-size: 1.3rem;
  color: var(--color-black);
  margin-top: 8px;
  font-weight: 700;
}
@media screen and (max-width: 1439px) {
  .p-voice__item-category {
    font-size: calc(13 / 1440 * 100vw);
    margin-top: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item-category {
    font-size: calc(13 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
  }
}

.p-voice__item-text {
  font-size: 1.4rem;
  line-height: calc(24 / 14);
  color: var(--color-black);
}
@media screen and (max-width: 1439px) {
  .p-voice__item-text {
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item-text {
    font-size: calc(14 / 375 * 100vw);
  }
}

/* Voice Slider */
.p-voice__slider {
  position: relative;
  visibility: visible;
}

.p-voice__arrows {
  display: none;
}

/* PC: Splideのスタイルをリセットして通常表示 */
@media screen and (min-width: 768px) {
  .p-voice__slider .splide__track {
    overflow: visible !important;
    position: static !important;
  }

  .p-voice__slider .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    transform: none !important;
  }

  .p-voice__slider .splide__slide {
    visibility: visible !important;
    width: auto !important;
    margin: 0 !important;
  }
}

/* SP: スライダー表示 */
@media screen and (max-width: 767px) {
  .p-voice__list {
    display: block;
  }

  .p-voice .splide__track {
    overflow: visible !important;
  }

  .p-voice__item {
    margin: 0 auto;
    width: calc(315 / 375 * 100vw);
    padding: calc(24 / 375 * 100vw);
  }

  .p-voice__arrows {
    display: flex;
    justify-content: center;
    gap: calc(10 / 375 * 100vw);
    margin-top: calc(30 / 375 * 100vw);
  }

  .p-voice__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(32 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    background-color: transparent;
    cursor: pointer;
    border: none;
    appearance: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .p-voice__arrow--prev {
    background-image: url(../images/slide_prev.svg);
  }

  .p-voice__arrow--next {
    background-image: url(../images/slide_next.svg);
  }

  .p-voice__arrow span {
    font-size: calc(18 / 375 * 100vw);
    color: var(--color-gold-dark);
    line-height: 1;
  }

  .p-voice__arrow:hover {
    background-color: var(--color-gold-dark);
  }

  .p-voice__arrow:hover span {
    color: var(--color-white);
  }

  .p-voice__arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}

/* Flow Section
   ========================================================================== */
.p-flow {
  padding: 110px 0 64px;
}
@media screen and (max-width: 1439px) {
  .p-flow {
    padding: calc(110 / 1440 * 100vw) 0 calc(64 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: calc(42 / 375 * 100vw) 0 calc(30 / 375 * 100vw);
  }
}

.p-flow__inner {
  max-width: 923px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-flow__inner {
    max-width: calc(923 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    max-width: calc(345 / 375 * 100vw);
  }
}

.p-flow__header {
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1439px) {
  .p-flow__header {
    margin-bottom: calc(45 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__header {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.p-flow__lead {
  margin-top: 30px;
  font-size: 1.6rem;
  color: #2C2F31;
  line-height: 1.9;
}
@media screen and (max-width: 1439px) {
  .p-flow__lead {
    font-size: calc(16 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
    line-height: 1.7;
  }
}

.p-flow__lead strong {
  color: var(--color-gold-dark);
  font-weight: 700;
}

.p-flow__steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 38px;
}
@media screen and (max-width: 1439px) {
  .p-flow__steps {
    margin-bottom: calc(38 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__steps {
    margin-bottom: calc(30 / 375 * 100vw);
    flex-direction: column;
    align-items: center;
    gap: calc(82 / 375 * 100vw);
  }
}

.p-flow__step {
  width: 187.5px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-flow__step {
    width: calc(187.5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__step {
    width: calc(187.5 / 375 * 100vw);
  }
}

.p-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px;
  right: -64px;
  width: 72px;
  height: 72px;
  background-image: url(../images/icon_flow_arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1439px) {
  .p-flow__step:not(:last-child)::after {
    top: calc(58 / 1440 * 100vw);
    right: calc(-64 / 1440 * 100vw);
    width: calc(72 / 1440 * 100vw);
    height: calc(72 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__step:not(:last-child)::after {
    top: auto;
    bottom: calc(-78 / 375 * 100vw);
    right: 50%;
    transform: translateX(50%) rotate(90deg);
    width: calc(55 / 375 * 100vw);
    height: calc(55 / 375 * 100vw);
  }
}

.p-flow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-flow__step-icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-flow__step-icon img {
    width: calc(120 / 375 * 100vw);
  }
}

.p-flow__step-name {
  font-family: var(--font-family-mincho);
  font-weight: 800;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
}
@media screen and (max-width: 1439px) {
  .p-flow__step-name {
    font-size: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__step-name {
    font-size: calc(16 / 375 * 100vw);
    text-align: center;
    margin-top: calc(10 / 375 * 100vw);
  }
}

.p-flow__step-note {
  font-size: 1.3rem;
  color: #817978;
  margin-top: 8px;
  line-height: 1.4;
}
@media screen and (max-width: 1439px) {
  .p-flow__step-note {
    font-size: calc(13 / 1440 * 100vw);
    margin-top: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__step-note {
    width: calc(200 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

.p-flow__notes {
  font-size: 1.3rem;
  color: #817978;
  line-height: 1.45;
}
@media screen and (max-width: 1439px) {
  .p-flow__notes {
    font-size: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__notes {
    font-size: calc(12 / 375 * 100vw);
  }
}

.p-flow__notes li {
  margin-bottom: 4px;
}
@media screen and (max-width: 1439px) {
  .p-flow__notes li {
    margin-bottom: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__notes li {
    margin-bottom: calc(4 / 375 * 100vw);
  }
}

/* Documents Section
   ========================================================================== */
.p-documents {
  padding: 0 0 120px;
}
@media screen and (max-width: 1439px) {
  .p-documents {
    padding: 0 0 calc(120 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-documents {
    padding: 0 0 calc(30 / 375 * 100vw);
  }
}

.p-documents__inner {
  background-color: #F5F2ED;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 1439px) {
  .p-documents__inner {
    padding: calc(40 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-documents__inner {
    max-width: calc(345 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) calc(10 / 375 * 100vw);
  }
}

.p-documents__title {
  font-family: var(--font-family-mincho);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--color-black);
  margin-bottom: 34px;
}
@media screen and (max-width: 1439px) {
  .p-documents__title {
    font-size: calc(24 / 1440 * 100vw);
    margin-bottom: calc(34 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-documents__title {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }
}
.p-documents__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1439px) {
  .p-documents__list {
    gap: calc(40 / 1440 * 100vw);
    margin-bottom: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-documents__list {
    flex-direction: column;
    align-items: center;
    gap: calc(10 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }
}

.p-documents__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1439px) {
  .p-documents__item {
    gap: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-documents__item {
    gap: calc(6 / 375 * 100vw);
  }
}
.p-documents__item-number {
  display: inline-block;
  width: 49px;
  height: 31px;
  line-height: 35px;
  text-align: center;
  font-family: var(--font-family-castoro);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-gold-dark);
  border-radius: 99px;
}
@media screen and (max-width: 1439px) {
  .p-documents__item-number {
    width: calc(49 / 1440 * 100vw);
    height: calc(31 / 1440 * 100vw);
    line-height: calc(35 / 1440 * 100vw);
    font-size: calc(22 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-documents__item-number {
    width: calc(43 / 375 * 100vw);
    height: calc(22 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}

.p-documents__item-name {
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--color-gold-dark);
  line-height: 1.2;
}
@media screen and (max-width: 1439px) {
  .p-documents__item-name {
    font-size: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-documents__item-name {
    font-size: calc(18 / 375 * 100vw);
  }
}

.p-documents__note {
  font-size: 1.3rem;
  color: #817978;
}
@media screen and (max-width: 1439px) {
  .p-documents__note {
    font-size: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-documents__note {
    font-size: calc(12 / 375 * 100vw);
    text-indent: calc(-10 / 375 * 100vw);
    padding-left: calc(10 / 375 * 100vw);
    text-align: left;
  }
}

/* Page Top
   ========================================================================== */
.p-page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #B4861D;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0px 3px 8px 0px #0000004D;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.p-page-top.is-show {
  opacity: 1;
}
.p-page-top svg {
  width: 18.30900001525879px;
  height: 18.30599975585937px;
}
@media screen and (max-width: 1439px) {
  .p-page-top {
    width: calc(44 / 1440 * 100vw);
    height: calc(44 / 1440 * 100vw);
  }
  .p-page-top svg {
    width: calc(18.309 / 1440 * 100vw);
    height: calc(18.305 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-page-top {
    right: calc(9 / 375 * 100vw);
    bottom: calc(20 / 375 * 100vw);
    width: calc(40 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
  }
  .p-page-top svg {
    width: calc(16.78 / 375 * 100vw);
    height: calc(16.78 / 375 * 100vw);
  }
}
/* Campaign Section
   ========================================================================== */
.p-campaign {
  padding: 100px 0;
  background-image: url(../images/bg_campaign.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1439px) {
  .p-campaign {
    padding: calc(100 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign {
    padding: 0 0 calc(30 / 375 * 100vw);
    background-image: none;
  }
}

.p-campaign__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.p-campaign__box {
  padding: 60px;
  background-color: var(--color-bg-beige);
  box-shadow: 0px 3px 8px 0px #0000004D;
}
@media screen and (max-width: 1439px) {
  .p-campaign__box {
    padding: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign__box {
    box-shadow: none;
    padding: 0;
  }
}

.p-campaign__note {
  margin-top: 40px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1439px) {
  .p-campaign__note {
    margin-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign__note {
    margin-top: calc(20 / 375 * 100vw);
    width: calc(345 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
}

.p-campaign__note-title {
  display: block;
  width: 100%;
  height: 43px;
  line-height: 43px;
  font-size: 1.8rem;
  color: var(--color-white);
  font-weight: 700;
  background-color: #5F5F5F;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-campaign__note-title {
    height: calc(43 / 1440 * 100vw);
    line-height: calc(43 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign__note-title {
    font-size: calc(14 / 375 * 100vw);
    height: calc(36 / 375 * 100vw);
    line-height: calc(36 / 375 * 100vw);
  }
}

.p-campaign__note-list {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1439px) {
  .p-campaign__note-list {
    padding: calc(30 / 1440 * 100vw);
    gap: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign__note-list {
    padding: calc(20 / 375 * 100vw) calc(15 / 375 * 100vw);
    gap: calc(12 / 375 * 100vw);
  }
}

.p-campaign__note-item {
  line-height: 1;
  font-size: 1.2rem;
}
@media screen and (max-width: 1439px) {
  .p-campaign__note-item {
    font-size: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign__note-item {
    font-size: calc(11 / 375 * 100vw);
    line-height: 1.4;
  }
}

.p-campaign__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-campaign__button {
    margin-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign__button {
    margin-top: calc(15 / 375 * 100vw);
  }
}

.p-campaign__button-link {
  display: inline-block;
  width: 402.5px;
  height: 60px;
  background-image: url(../images/btn_campaign.png);
}
@media screen and (max-width: 1439px) {
  .p-campaign__button-link {
    width: calc(402.5 / 1440 * 100vw);
    height: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign__button-link {
    width: calc(347 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    background-image: url(../images/btn_campaign_sp.png);
  }
}

/* Product Info Section
   ========================================================================== */
.p-product-info {
  padding: 110px 0 120px;
}
@media screen and (max-width: 1439px) {
  .p-product-info {
    padding: calc(110 / 1440 * 100vw) 0 calc(120 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product-info {
    padding: calc(40 / 375 * 100vw) 0 calc(60 / 375 * 100vw);
  }
}

.p-product-info__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.p-product-info__header {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1439px) {
  .p-product-info__header {
    margin-bottom: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product-info__header {
    margin-bottom: calc(28 / 375 * 100vw);
  }
}

.p-product-info__table-wrap {
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-product-info__table-wrap {
    max-width: calc(750 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product-info__table-wrap {
    max-width: calc(325 / 375 * 100vw);
  }
}

.p-product-info__table {
  width: 100%;
  background-color: var(--color-white);
  overflow: hidden;
}

.p-product-info__table th,
.p-product-info__table td {
  padding: 20px 24px;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  border: 1px solid #E6E6E6;
}
@media screen and (max-width: 1439px) {
  .p-product-info__table th,
  .p-product-info__table td {
    padding: calc(20 / 1440 * 100vw) calc(24 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product-info__table th,
  .p-product-info__table td {
    padding: calc(18 / 375 * 100vw) calc(8 / 375 * 100vw);
    font-size: calc(12 / 375 * 100vw);
  }
}

.p-product-info__table th {
  width: 210px;
  font-weight: 700;
  color: var(--color-text);
  background-color: #F5F2ED;
}
@media screen and (max-width: 1439px) {
  .p-product-info__table th {
    width: calc(210 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product-info__table th {
    width: calc(94 / 375 * 100vw);
    line-height: 1.4;
    padding-right: calc(13 / 375 * 100vw);
  }
}

.p-product-info__table td {
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-product-info__table td {
    line-height: 1.4;
    padding-left: calc(10 / 375 * 100vw);
    padding-right: calc(5 / 375 * 100vw);
    letter-spacing: -0.01em;
  }
}

.p-product-info__list li {
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 1439px) {
  .p-product-info__list li {
    padding-left: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product-info__list li {
    padding-left: calc(13 / 375 * 100vw);
  }
  .p-product-info__list li + li {
    margin-top: calc(8 / 375 * 100vw);
  }
}

.p-product-info__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ==========================================================================
   Modal Solo
   ========================================================================== */
.c-modal-solo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-modal-solo--active {
  opacity: 1;
  visibility: visible;
}

.c-modal-solo--active .c-modal-solo__content {
  transform: translateY(0);
}

.c-modal-solo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.c-modal-solo__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.c-modal-solo__content {
  position: relative;
  width: 1010px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--color-white);
  border-radius: 2px;
  padding: 32px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1439px) {
  .c-modal-solo__content {
    width: calc(100vw - 80px);
    max-width: 1010px;
  }
}
@media screen and (max-width: 767px) {
  .c-modal-solo__content {
    width: calc(346 / 375 * 100vw);
    max-width: none;
    padding: calc(32 / 375 * 100vw) calc(20 / 375 * 100vw);
    border-radius: calc(2 / 375 * 100vw);
  }
}

.c-modal-solo__close {
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  margin-right: -8px;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__close {
    width: 32px;
    height: 32px;
    margin-bottom: calc(8 / 375 * 100vw);
    margin-right: 0;
  }
}

.c-modal-solo__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}
.c-modal-solo__close span::before,
.c-modal-solo__close span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 2px;
  background-color: var(--color-white);
}
.c-modal-solo__close span::before {
  transform: translate(-50%, -50%) rotate(40deg);
}
.c-modal-solo__close span::after {
  transform: translate(-50%, -50%) rotate(-40deg);
}
@media screen and (max-width: 767px) {
  .c-modal-solo__close span {
    width: calc(40 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
  }
  .c-modal-solo__close span::before,
  .c-modal-solo__close span::after {
    width: calc(40 / 375 * 100vw);
  }
}

.c-modal-solo__inner {
  max-width: 710px;
  margin: 0 auto;
}

.c-modal-solo__label {
  font-family: var(--font-family-mincho);
  font-size: 2.5rem;
  font-weight: 800;
  color: #B4861D;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.c-modal-solo__label::before,
.c-modal-solo__label::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 1px;
  background: linear-gradient(to right, transparent, #B4861D, transparent);
}
.c-modal-solo__label::before {
  right: 0;
}
.c-modal-solo__label::after {
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__label {
    font-size: calc(25 / 375 * 100vw);
    margin-bottom: calc(16 / 375 * 100vw);
  }
  .c-modal-solo__label::before,
  .c-modal-solo__label::after {
    display: none;
  }
}

.c-modal-solo__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__header {
    flex-direction: column;
  }
}

.c-modal-solo__body {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__body {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.c-modal-solo__columns {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__columns {
    flex-direction: column;
    gap: 0;
  }
}

.c-modal-solo__column {
  flex: 1;
}

.c-modal-solo__list {
  margin-bottom: 0;
}

.c-modal-solo__row {
  padding: 8px 0;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__row {
    padding: calc(10 / 375 * 100vw) 0;
  }
}

.c-modal-solo__term {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #B4861D;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__term {
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-modal-solo__desc {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__desc {
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-modal-solo__section {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__section {
    margin-bottom: calc(16 / 375 * 100vw);
  }
}

.c-modal-solo__section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__section-title {
    font-size: calc(12 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
}

.c-modal-solo__section-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #5A5454;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__section-text {
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-modal-solo__doc-list {
  padding-left: 0;
  list-style: none;
}
.c-modal-solo__doc-list li {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--color-black);
}
.c-modal-solo__doc-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .c-modal-solo__doc-list li {
    font-size: calc(14 / 375 * 100vw);
  }
}

.c-modal-solo__doc-note {
  font-size: 1.3rem;
  color: #817978;
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__doc-note {
    font-size: calc(12 / 375 * 100vw);
  }
}

.c-modal-solo__cta {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__cta {
    margin-top: calc(24 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
  }

  .c-modal-solo__cta .c-btn {
    width: calc(275 / 375 * 100vw);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.c-modal-solo__note {
  font-size: 1.3rem;
  color: #817978;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-modal-solo__note {
    font-size: calc(13 / 375 * 100vw);
  }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.u-text-accent {
  color: var(--color-primary);
}

.u-text-red {
  color: var(--color-primary);
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}
