@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);
  }
}

html {
  scroll-padding-top: var(--header-height);
}

*,
*::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);
}

.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);
  border-bottom: 2px solid #cf9d4e;
}
@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;
}
@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;
  border-top: 2px solid #cf9d4e;
}
@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: 1140px;
  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(1140 / 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: 532px;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-content {
    width: calc(532 / 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: grid;
  grid-template-columns: repeat(5, 100px);
  gap: 10px 8px;
  justify-content: start;
  width: 532px;
}
@media screen and (max-width: 1439px) {
  .p-feature__services-list {
    grid-template-columns: repeat(5, calc(100 / 1440 * 100vw));
    gap: calc(10 / 1440 * 100vw) calc(8 / 1440 * 100vw);
    width: calc(532 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__services-list {
    grid-template-columns: repeat(3, calc(100 / 375 * 100vw));
    gap: calc(10 / 375 * 100vw) calc(8 / 375 * 100vw);
    padding-left: calc(8 / 375 * 100vw);
    width: auto;
  }
}
.p-feature__services-item:nth-child(5) {
  grid-column-start: 1;
}
@media screen and (max-width: 767px) {
  .p-feature__services-item:nth-child(5) {
    grid-column-start: auto;
  }
}

.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;
  }
}

/*260306*/

.p-feature__merit-title {
  position: relative;
  text-align: center;
  font-size: 3.3rem;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .p-feature__merit-title {
    font-size: calc(24 / 375 * 100vw);
    line-height: 1.4;
    margin-bottom: calc(35 / 375 * 100vw);
  }
}

.br-sp {
  display: none;
}

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

.p-feature__merit-title::after {
  background-image: url(../images/line.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 7.6rem;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
}

.p-feature__merit-area {
  padding-inline: 2%;
}

.p-feature__merit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 8px;
}

@media screen and (max-width: 767px) {
  .p-feature__merit-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.p-feature__merit-list-item {
  margin-bottom: 20px;
  padding: 3% 3%;
  border: 1px solid #e0e0e0;
}

@media screen and (max-width: 767px) {
  .p-feature__merit-list-item {
    width: 100%;
    padding: 4%;
  }
}

/*ttl*/

.c-meritBox__content__textBox__titleGroup {
  align-items: center;
  display: flex;
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .c-meritBox__content__textBox__titleGroup {
    justify-content: center;
  }
}

.c-meritBox__content__textBox__titleGroup__icon {
  margin-right: 10px;
  width: 39px;
}

.c-meritBox__content__textBox__titleGroup__titleBox__title {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  span {
    color: #b4861d;
  }
}

@media screen and (max-width: 767px) {
  .c-meritBox__content__textBox__titleGroup__titleBox__title {
    font-size: calc(16 / 375 * 100vw);
  }
}

.c-meritBox__content__imageBoxes {
  display: flex;
  align-items: center;
  gap: calc(15 / 1440 * 100vw);
  margin-top: calc(18 / 1440 * 100vw);
}

@media screen and (max-width: 767px) {
  .c-meritBox__content__imageBoxes {
    margin-top: calc(18 / 375 * 100vw);
    gap: calc(15 / 375 * 100vw);
  }
}

.c-meritBox__content__imageBoxes__image {
  width: calc(110 / 1440 * 100vw);
  max-width: 173px;
}

@media screen and (max-width: 767px) {
  .c-meritBox__content__imageBoxes__image {
    width: calc(110 / 375 * 100vw);
    max-width: none;
  }
}

.c-meritBox__content__imageBoxes p {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 1439px) {
  .c-meritBox__content__imageBoxes p {
    font-size: calc(14 / 1440 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .c-meritBox__content__imageBoxes p {
    font-size: calc(18 / 375 * 100vw);
  }
}

.c-meritBox__content__textBox__text {
  color: #2c2f31;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 13px;
}

@media screen and (max-width: 767px) {
  .c-meritBox__content__textBox__text {
    color: #2c2f31;
    font-size: calc(13 / 375 * 100vw);
    line-height: 1.5;
    margin-top: calc(13 / 375 * 100vw);
  }
}

.p-mv__info {
  margin-top: 0px;
}

@media screen and (max-width: 767px) {
  .p-mv__info {
    margin-top: 0px;
  }
}

/*202605 add*/

.c-acrd-mf {
  width: 100%;
  position: relative;
  padding-left: calc(15 / 375 * 100vw);
  padding-right: calc(15 / 375 * 100vw);
  max-width: 1440px;
  margin-inline: auto;
  padding-bottom: calc(32 / 375 * 100vw);
}

.c-acrd-mf::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #f7f7f7;
  z-index: -1;
}

.c-acrd-mf__wrapper {
  /* padding-top: calc(8 / 375 * 100vw); */
  /* padding-bottom: calc(32 / 375 * 100vw); */
}

.c-acrd-mf__toggle {
  width: 100%;
  display: block;
  padding-inline: 0;
  cursor: pointer;
  border: none;

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

.c-acrd-mf__contents__sectionList__section__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 / 375 * 100vw);
  color: #816116;
  text-align: center;
  font-size: max(16px, 3vw);
  border: 1px solid #816116;
  padding-block: calc(15 / 375 * 100vw);
  padding-inline: calc(10 / 375 * 100vw);
  margin-bottom: calc(24 / 375 * 100vw);
  font-weight: bold;
  background-color: #fff;

  img {
    height: auto;
    display: block;

    &:first-child {
      width: calc(22 / 375 * 100vw);
      aspect-ratio: 22/22;
    }

    &:last-child {
      width: calc(114 / 375 * 100vw);
      aspect-ratio: 114/11;
    }
  }
}

.c-acrd-mf__contents {
  border: 1px solid #e6e6e6;
  border-top: none;
  padding-block: calc(32 / 375 * 100vw);
  padding-inline: calc(20 / 375 * 100vw);
  background-color: #fff;
}
.c-acrd-mf__contents img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.c-acrd-mf__contents__banner {
  display: block;
}

.c-acrd-mf__text-area {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  padding-block: calc(32 / 375 * 100vw);
  margin-inline: auto;
}

main .c-acrd-mf__text-image {
  display: block;
  width: calc(96 / 375 * 100vw);
  flex: 0 0 auto;
  max-width: 96px;
}

.c-arcd-mf__plus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
  background-color: #b4861d;
  border-radius: 50%;
  position: relative;
}
.c-arcd-mf__plus::after {
  content: "+";
  font-size: 20px;
  font-weight: 500;
  color: white;
  font-family: sans-serif;
  line-height: 1;
  margin-top: -2px;
  text-align: center;
}

.c-acrd-mf__contents__closeBtn {
  width: min(100%, 400px);
  margin-inline: auto;
  margin-block: calc(32 / 375 * 100vw);
  background-color: #5f5f5f;
}

.c-acrd-mf__contents__closeBtn > button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: block;
  width: 100%;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  padding-block: calc(12 / 375 * 100vw);
  padding-inline: calc(12 / 375 * 100vw);
  position: relative;
}

.c-acrd-mf__contents__closeBtn > button::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: transparent;
  border: 1px solid #fff;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 6.6em;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center top;
}

/* p-campain2026 */

.p-campain2606__inner {
  padding-top: calc(40 / 375 * 100vw);
}
.c-arcd-mf__plus--bottom {
  margin-inline: auto;
  width: 48px;
  height: 48px;
  margin-bottom: calc(40 / 375 * 100vw);
}

.c-arcd-mf__plus--bottom::after {
  font-size: 32px;
  margin-top: -4px;
}

.p-campain2606__wrapper {
  background-color: #fdf2e8;
}

.p-campain2606__bnr {
  margin-bottom: calc(24 / 375 * 100vw);
  display: block;
}

.p-campain2606__bnr img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-campain2606__container {
  width: min(96%, 1048px);
  margin-inline: auto;
}

.p-campain2606__mini-ttl {
  color: #816116;
  text-align: center;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 600;
  margin-bottom: calc(24 / 375 * 100vw);
}

.c-acrd-mf__contents__sectionList__section:last-child {
  margin-bottom: calc(24 / 375 * 100vw);
}

.p-campain2606__price-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(16 / 375 * 100vw);
  margin-bottom: 24px;
}

.p-campain2606__price-item {
  padding-bottom: calc(16 / 375 * 100vw);
  flex: 1 0 auto;
  background-color: #fff;
  width: 100%;
  border: 3px solid #fff;
}

.p-campain2606__price-head {
  width: 100%;
  font-size: min(22px, 6vw);
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding-block: calc(8 / 375 * 100vw);
  padding-inline: calc(16 / 375 * 100vw);
  background-color: #b4861d;
}
.p-campain2606__price-head > span {
  font-size: 60%;
  font-weight: 500;
}
.p-campain2606__price-head span > span {
  color: #5d4201;
}

.p-campain2606__price-gift {
  padding-top: calc(16 / 375 * 100vw);
  padding-inline: calc(19 / 375 * 100vw);

  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: flex-end;
}

.p-campain2606__price-left {
  display: block;
  color: #222222;
  flex: 0 1 auto;
  font-size: max(14px, 3.6vw);
  font-weight: 600;
  line-height: 1.3;
}
.p-campain2606__price-right {
  display: block;
  color: #bf0d21;
  font-size: max(48px, 12vw);
  font-family: serif;
  flex: 1;
  letter-spacing: -0.02em;
  font-weight: bold;
  flex: 1 0 auto;
}
.p-campain2606__price-right > span {
  font-size: 36%;
  font-family: sans-serif;
  font-weight: 600;
  padding-left: 0.3em;
}

.p-campain2606__price-info {
  text-align: center;
  display: block;
  padding-top: 8px;
}

.p-campain2606__notes-area {
  margin-bottom: 32px;
}

.p-campain2606__notes-ttl {
  width: 100%;
  background-color: #fff;
  padding-block: calc(8 / 375 * 100vw);
  padding-inline: calc(8 / 375 * 100vw);
  text-align: center;
  margin-bottom: calc(24 / 375 * 100vw);
  font-size: 16px;
}

.p-campain2606__notes-sub-ttl {
  font-weight: bold;
  font-size: clamp(14px, 3vw, 16px);
  margin-bottom: calc(24 / 375 * 100vw);
}

.p-campain2606__notes-list-area {
  margin-bottom: 24px;
}

.p-campain2606__notes-list {
  display: flex;
  gap: 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}

.p-campain2606__notes-head {
  font-weight: 400;
}
.p-campain2606__notes-body {
  letter-spacing: 0.09em;
}

.p-campain2606__quotation {
  display: flex;
  gap: 7px;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.6;
  color: #5f5f5f;
  margin-bottom: 8px;
}

.p-campain2606__quotation-head {
  font-weight: 400;
}

/* p-campain2606__points  */

.p-campain2606__points {
  display: flex;
  flex-direction: column;
  gap: calc(24 / 375 * 100vw);
}

.p-campain2606__points-ttl {
  padding: calc(8 / 375 * 100vw);
  text-align: center;
  border: 2px solid #e6e6e6;
  color: #222222;
  font-weight: bold;
  margin-bottom: calc(24 / 375 * 100vw);
  font-size: max(14px, 3vw);
}

.p-campain2606__points-desc {
  font-size: max(11px, 3vw);
  line-height: 1.59;
  margin-bottom: calc(4 / 375 * 100vw);

  padding-left: 1em;
  position: relative;
}
.p-campain2606__points-desc::before {
  content: "・";
  font-size: max(11px, 3vw);
  display: inline;
  position: absolute;
  left: 0;
}

.p-campain2606__points-desc a {
  color: #0387c9;
}

.p-campain2606__points-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 1em;
  font-size: max(12px, 3vw);
  font-weight: bold;
  padding-top: calc(12 / 375 * 100vw);
  margin-bottom: calc(12 / 375 * 100vw);
}

.p-campain2606__mini-text {
  display: block;
  font-size: 11px;
  color: #5f5f5f;
  line-height: 2;
  position: relative;
  padding-left: 1em;
}

.p-campain2606__mini-text::before {
  content: "*";
  font-size: max(12px);
  display: inline;
  position: absolute;
  left: 0;
}

.c-acrd-mf__contents__sectionList__section:last-child {
  padding-bottom: calc(2 / 375 * 100vw);
  margin-bottom: calc(24 / 375 * 100vw);
}

/* ============================================
   c-acrd-mf アコーディオン開閉
   ============================================ */
.c-acrd-mf__contents {
  max-height: 0;
  overflow: hidden;
  padding-block: 0;
  border-bottom: none;
  transition:
    max-height 0.3s,
    padding-block 0.3s;
}

.c-acrd-mf.is-open .c-acrd-mf__contents {
  max-height: 1200px;
  padding-block: calc(32 / 375 * 100vw);
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 767px) {
  .c-acrd-mf__contents {
    max-height: 0;
    overflow: hidden;
    padding-block: 0;
    border-bottom: none;
    transition:
      max-height 0.3s,
      padding-block 0.3s;
  }
  .c-acrd-mf.is-open .c-acrd-mf__contents {
    max-height: 1200px;
    padding-block: min(calc(80 / 1440 * 100vw), 80px);
    border-bottom: 1px solid #e6e6e6;
  }
}

/* ============================================ */

@media screen and (min-width: 768px) {
  .c-acrd-mf {
    margin: 0 auto;
    padding-left: min(calc(120 / 1440 * 100vw), 120px);
    padding-right: min(calc(120 / 1440 * 100vw), 120px);
    width: min(calc(1440 / 1440 * 100vw), 1440px);
    padding-block: min(calc(120 / 1440 * 100vw), 120px);
  }
  .c-acrd-mf__wrapper {
    /* padding-top: min(calc(8 / 1440 * 100vw), 8px); */
    /* padding-bottom: min(calc(56 / 1440 * 100vw), 56px); */
  }

  .c-acrd-mf__contents__sectionList__section__heading {
    font-size: clamp(16px, 5vw, 18px);
    gap: calc(6 / 375 * 100vw);
    padding-block: min(calc(8 / 1440 * 100vw), 8px);
    padding-inline: min(calc(12 / 1440 * 100vw), 12px);
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
  }

  .c-acrd-mf__contents__sectionList__section__heading > img {
    height: auto;
    display: block;

    &:first-child {
      width: min(calc(22 / 1440 * 100vw), 22px);
      aspect-ratio: 22/22;
    }

    &:last-child {
      width: min(calc(114 / 1440 * 100vw), 114px);
      aspect-ratio: 114/11;
    }
  }

  .c-acrd-mf__contents {
    border: 1px solid #e6e6e6;
    border-bottom: none;
    border-top: none;
    padding-inline: min(calc(130 / 1440 * 100vw), 130px);
  }

  .c-acrd-mf.is-open .c-acrd-mf__contents {
    padding-block: min(calc(80 / 1440 * 100vw), 80px);
  }

  .c-acrd-mf__text-area {
    padding-block: min(calc(32 / 1440 * 100vw), 32px);
  }

  main .c-acrd-mf__text-image {
    width: min(calc(111 / 1440 * 100vw), 111px);
    max-width: none;
  }

  .c-acrd-mf__contents__closeBtn {
    margin-top: min(calc(48 / 1440 * 100vw), 48px);
    margin-bottom: 0;
  }

  .c-acrd-mf__contents__closeBtn > button {
    padding-block: min(calc(12 / 1440 * 100vw), 12px);
  }

  .c-arcd-mf__plus--bottom {
    margin-bottom: min(calc(40 / 1440 * 100vw), 40px);
  }

  .p-campain2606__inner {
    padding-top: min(calc(40 / 1440 * 100vw), 40px);
  }

  .p-campain2606__bnr {
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
  }

  .p-campain2606__mini-ttl {
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
  }

  .p-campain2606__price-list {
    width: 100%;
    gap: min(calc(16 / 1440 * 100vw), 16px);
    flex-direction: row;
  }

  .p-campain2606__price-item {
    padding-bottom: min(calc(16 / 1440 * 100vw), 16px);
    min-width: 0;
    width: min(calc(338 / 1440 * 100vw), 338px);
    aspect-ratio: 338 / 181;
    flex: 0 1 auto;
  }

  .p-campain2606__price-head {
    font-size: clamp(13px, 1.8vw, 24px);
    padding-block: min(calc(16 / 1440 * 100vw), 16px);
    padding-inline: min(calc(16 / 1440 * 100vw), 16px);
  }

  .p-campain2606__price-gift {
    padding-block: min(calc(16 / 1440 * 100vw), 16px);
    padding-bottom: min(calc(10 / 1440 * 100vw), 10px);
    padding-inline: min(calc(8 / 1440 * 100vw), 8px);
    width: min(22vw, 290px);
    margin-inline: auto;
  }

  .p-campain2606__price-left {
    font-size: clamp(8px, 1vw, 12px);
    letter-spacing: -0.03em;
  }
  .p-campain2606__price-right {
    font-size: clamp(21px, 3.4vw, 48px);
    letter-spacing: -0.03em;
  }

  .p-campain2606__price-info {
    font-size: clamp(10px, 1vw, 14px);
    padding-top: 0px;
  }

  .p-campain2606__notes-area {
    margin-bottom: 24px;
  }

  .p-campain2606__notes-ttl {
    width: max(400px, 100%);
    padding-block: min(calc(4 / 1440 * 100vw), 4px);
    padding-inline: min(calc(8 / 1440 * 100vw), 8px);
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
    text-align: center;
  }
  .p-campain2606__notes-sub-ttl {
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
    font-size: min(5vw, 14px);
  }

  .p-campain2606__notes-head {
    font-size: clamp(12px, 3vw, 14px);
    margin-bottom: min(calc(2 / 1440 * 100vw), 2px);
  }

  .p-campain2606__notes-list-area {
    margin-bottom: 48px;
  }

  .p-campain2606__quotation-area {
    padding-bottom: min(calc(8 / 1440 * 100vw), 8px);
  }

  .c-acrd-mf__contents__closeBtn > button::after {
    right: 9.5em;
  }

  /* .p-campain2606__container {
    padding-bottom: min(calc(24 / 1440 * 100vw), 24px);
  } */

  .p-campain2606__points {
    gap: min(calc(24 / 1440 * 100vw), 24px);
  }

  .p-campain2606__points-ttl {
    padding: min(calc(8 / 1440 * 100vw), 8px);
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
    font-size: min(5vw, 18px);
  }

  .p-campain2606__points-desc {
    font-size: min(4vw, 14px);
    margin-bottom: min(calc(4 / 1440 * 100vw), 4px);
  }
  .p-campain2606__points-desc::before {
    font-size: min(4vw, 14px);
  }

  .p-campain2606__points-list {
    font-size: min(4vw, 14px);
    padding-top: min(calc(14 / 1440 * 100vw), 14px);
    margin-bottom: min(calc(32 / 1440 * 100vw), 32px);
  }

  .p-campain2606__points-desc--bottom {
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
  }

  .c-acrd-mf__contents__sectionList__section:last-child {
    padding-bottom: min(calc(2 / 1440 * 100vw), 2px);
    margin-bottom: min(calc(24 / 1440 * 100vw), 24px);
  }

  .c-acrd-mf__contents__sectionList__section:last-child
    .p-campain2606__price-item {
    padding-bottom: 0;
    aspect-ratio: 338 / 143;
  }

  .c-acrd-mf__contents__sectionList__section:last-child
    .p-campain2606__price-gift {
    padding-block: min(calc(16 / 1440 * 100vw), 16px);
    width: min(22vw, 260px);
  }
  .c-acrd-mf__contents__sectionList__section:last-child
    .p-campain2606__price-left {
    padding-bottom: 4px;
  }
}

/*20260624 add*/
.p-campain2606__wrapper.p-campain2606__wrapper--mitosel-uid6 {
  background-color: #fff;
}

.p-campain2606__container.p-campain2606__container--mitosel-uid06 {
  width: min(100%, 1048px);
}

.c-acrd-mf__contents__sectionList__section--misotel.c-acrd-mf__contents__sectionList__section--mitosel-uid6
  > .c-acrd-mf__contents__sectionList__section__heading {
  color: #222;
  border: 2px solid #e6e6e6;
}

.c-acrd-mf__contents__sectionList__section__desc {
  padding-left: 1em;
  position: relative;
  line-height: 1.6;
}
.c-acrd-mf__contents__sectionList__section__desc::before {
  content: "・";
  position: absolute;
  left: 0em;
}
.c-acrd-mf__contents__sectionList__section__link {
  color: blue;
}

.c-meritBox__mitosel {
}

.c-meritBox__mistol-outer {
  box-shadow: 0px calc(3 / 1440 * 100vw) calc(8 / 1440 * 100vw)
    rgba(0, 0, 0, 0.3);
}

.c-meritBox__mistol-outer > ul,
.c-meritBox__mistol-outer > ul > li {
  width: 100%;
  display: block;
}

.c-meritBox__inner__mistol {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: calc(56 / 1440 * 100vw);
  padding: calc(30 / 1440 * 100vw);
}

.c-meritBox__mitosel:first-child {
  width: calc(560 / 1440 * 100vw);
}
.c-meritBox__mitosel:last-child {
  width: calc(380 / 1440 * 100vw);
}

@media screen and (max-width: 767px) {
  .c-meritBox__mitosel:first-child {
    width: 100%;
  }
  .c-meritBox__mitosel:last-child {
    width: 100%;
  }
}

.c-meritBox__mitosel__logo > img {
  display: block;
  margin-inline: 0 auto;
  width: 100%;
  max-width: 247px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .c-meritBox__mitosel__logo > img {
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .c-meritBox__inner__mistol {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: calc(20 / 375 * 100vw);
  }
}

.c-meritBox__mitosel__text {
  font-weight: bold;
  line-height: 1.6;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .c-meritBox__mitosel__text {
    font-weight: bold;
    line-height: 1.6;
    font-size: 18px;
  }
}

.c-meritBox__mitosel__text > a {
  font-weight: normal;
  color: #0387c9;
  text-decoration: underline;
  display: block;
  padding-top: 8px;
}
.c-meritBox__mitosel__text > a::after {
  background-image: url(../images/icon_external_link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 18px;
  margin-left: 6px;
  width: 18px;
}

@media screen and (max-width: 1439px) {
  .c-meritBox__mitosel__text > a::after {
    height: calc(13 / 1440 * 100vw);
    margin-left: calc(6 / 1440 * 100vw);
    width: calc(15 / 1440 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .c-meritBox__mitosel__text > a::after {
    height: calc(11 / 375 * 100vw);
    margin-left: calc(6 / 375 * 100vw);
    width: calc(13 / 375 * 100vw);
  }
}

@media screen and (max-width: 1439px) {
  .c-meritBox__mitosel__text {
    font-size: calc(18 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .c-meritBox__mitosel__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.65;
    margin-top: calc(15 / 375 * 100vw);
  }
}

/*img*/

.c-meritBox__mitosel__mock img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/*調整用*/

.p-campaign {
  background-color: #faf6f0;
}

.c-acrd-mf {
  width: 100%;
  position: relative;
  padding-left: calc(15 / 375 * 100vw);
  padding-right: calc(15 / 375 * 100vw);
  max-width: 1440px;
  margin-inline: auto;
  padding-block: calc(32 / 375 * 100vw);
}

@media screen and (min-width: 768px) {
  .c-acrd-mf {
    margin: 0 auto;
    padding-left: min(calc(120 / 1440 * 100vw), 120px);
    padding-right: min(calc(120 / 1440 * 100vw), 120px);
    width: min(calc(1440 / 1440 * 100vw), 1440px);
    padding-block: min(calc(40 / 1440 * 100vw), 120px);
  }
}

.c-acrd-mf__contents .c-acrd-mf__text-image {
  display: block;
  width: calc(96 / 375 * 100vw);
  flex: 0 0 auto;
  max-width: 96px;
}

@media screen and (min-width: 767px) {
  .c-acrd-mf__contents .c-acrd-mf__text-image {
    width: min(calc(111 / 1440 * 100vw), 111px);
    max-width: none;
  }
}

.p-campain2606__bnr {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 767px) {
  .p-campain2606__bnr {
    width: 100%;
  }
}

.p-campain2606__wrapper.p-campain2606__wrapper--mitosel-uid8-houjin {
  background-color: transparent;
}

.p-campain2606__wrapper--mitosel-uid8-houjin
  .c-acrd-mf__contents__sectionList__section__heading {
  background-color: transparent;
  font-size: 18px;
  width: min(90%, 1200px);
  margin-inline: auto;
}

@media screen and (min-width: 767px) {
  .p-campain2606__wrapper--mitosel-uid8-houjin
    .c-acrd-mf__contents__sectionList__section__heading {
    width: 100%;
  }
}

.p-campain2606__wrapper--mitosel-uid8-houjin
  .c-acrd-mf__contents__sectionList__section__desc {
  font-size: 14px;
  color: #222;
  font-weight: 300;
  width: min(90%, 1200px);
  margin-inline: auto;
}

@media screen and (min-width: 767px) {
  .p-campain2606__wrapper--mitosel-uid8-houjin
    .c-acrd-mf__contents__sectionList__section__desc {
    width: 100%;
  }
}

.c-acrd-mf__contents__sectionList__section__link {
  color: #0387c9;
  text-decoration: underline;
}

.c-modal__link--mitosel {
  position: relative;
  color: #6bb374;
  text-decoration: underline;
}

.c-modal__link--mitosel::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.1em;
  height: 1.3em;
  background-image: url("../images/modal-mitosel-external-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
}
