@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  display: block;
}
body {
  font-family: heisei-kaku-gothic-std, "Yu Gothic",
YuGothic,sans-serif;
  font-style: normal;
  color: #151515;
  background: #efefef;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
}
body.is-fixed {
  overflow: hidden;
}
html, body {
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  width: min(100% - 60px, 1140px);
  margin-inline: auto;
}
.legal .container {
  width: min(100% - 32px, 1000px);
  margin-inline: auto;
}
/* =========================
  UTILITY
========================= */
.u-text-center {
  text-align: center;
}
.u-mt-sm {
  margin-top: 20px;
}
.u-mt-md {
  margin-top: 40px;
}
.u-mb-sm {
  margin-bottom: 20px;
}
.u-mb-md {
  margin-bottom: 40px;
}
/* =========================
  HERO
========================= */
.hero {
  background: #efe9de;
  padding: 20px 0 20px;
  position: relative;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero__content {
  width: 48%;
}
.hero__logo {
  width: 280px;
  height: auto;
  display: block;
  max-width: none;
  margin: 0 auto 60px;
}

.hero__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
  white-space: nowrap;
}
.hero__title span {
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}
.hero__period {
    color: #c43e2b;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    display: block;
    padding: 20px;
    border: 1px solid #c43e2b;
    width: 1140px;
    margin: 0 auto 30px;
}
}
.hero__image {
  width: 48%;
  max-width: 800px;
}
.hero__image img {
  width: 100%;
    height: auto;
  object-fit: contain;
}
.menu-btn {
  position: fixed;
  top: 24px;
  right: 12px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 32px;
  height: 2px;
  background: #222;
}
.menu-btn span:nth-child(1) {
  top: 0;
}
.menu-btn span:nth-child(2) {
  top: 8px;
}
.menu-btn span:nth-child(3) {
  bottom: 0;
}
/* =========================
drawer
========================= */
.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .4s ease;
  overflow-y: auto;
}
.drawer-menu.active {
  transform: translateX(0);
}
.drawer-menu__inner {
  padding: 120px 40px 60px;
}
.drawer-menu__close {
  position: absolute;
  top: 32px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  background-color: transparent;
  background-image: url("../img/icon-close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  cursor: pointer;
  transition: opacity .3s ease;
}
.drawer-menu__close:hover {
  opacity: .7;
}
.drawer-menu__logo {
  display: block;
  width: 180px;
  margin: 0 auto 60px;
}
.hifumilogo {
  display: block;
  width: 180px;
  margin: 60px auto 0;
}
.drawer-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.drawer-menu__list li {
  border-bottom: 1px solid #cfcfcf;
}
.drawer-menu__list a {
  position: relative;
  display: block;
  padding: 20px 32px 20px 0;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.drawer-menu__list a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 24px;
}
.menu-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* =========================
  CTA
========================= */
.cta-bar {
  background: #9c7222;
  padding: 20px 0 20px;
}
.cta-bar__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 10px 10px 8px;
  border-radius: 999px;
  font-weight: 700;
  transition: .3s;
}
.btn--black {
  background: #111;
  color: #fff;
}
.btn--gold {
  background: #FCEF94;
  color: #333;
}
@media (hover: hover) {
  .btn:hover {
    opacity: .5;
  }
}
/* =========================
  INTRO
========================= */
.intro {
  background: #efe9de;
  padding: 36px 0;
  text-align: center;
}
.intro p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.5;
}
/* =========================
  SECTION
========================= */
.section {
  padding: 80px 0;
  background: #fff;
}
.section--sm {
  padding: 50px 0;
}
.section--lg {
  padding: 120px 0;
}
.section--cream {
  background: #efe9de;
}
.section-title--center {
  text-align: center;
}
.section-title--lg {
  font-size: 42px;
}
.section-title--md {
  font-size: 32px;
}
/* =========================
  FEATURES
========================= */
.feature-title {
  font-size: 42px;
  text-align: center;
  font-weight: 900;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid #333;
}
.feature-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #333;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.feature-card__icon {
  width: 60%;
  margin: 0 auto 20px;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.feature-card p {
  font-size: 16px;
  text-align: left;
  flex-grow: 1;
}
.feature-card__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  margin: 20px auto 0;
}
/* =========================
  CONTENT
========================= */
.content-block {
  max-width: 800px;
  margin-inline: auto;
}
.content-block .notes {
  font-size: 12px;
}
.number-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px;
}
.number-title__num {
  width: 42px;
  height: 42px;
  background: #b07c1e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.policy17 {
  margin-top: 48px;
  padding: 40px 40px;
  border: 1px solid #6e8e95;
  border-radius: 24px;
  background: #f5f5f5;
}
.policy17__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #19525B;
}
picture {
  display: block;
  max-width: 720px;
  margin: 0 auto 40px;
}
picture img {
  width: 100%;
  display: block;
}
.policy17__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.company-category {
  background: #22737F;
  color: #fff;
  padding: 5px 20px 3px;
  margin: 20px 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.company-item {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.company-item__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
.company-item__text {
  font-size: 14px;
  line-height: 1.8;
}
  .company-item__image img {
  width: 100%;
  height: auto;
  display: block;
  }
.category-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-column li {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: #114455;
}
.content-image {
  margin: 48px auto;
  overflow: hidden;
}
.content-block h3 {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
  margin: 40px auto 20px;
}
.content-block h3::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #b07c1e;
}
/* =========================
  TEAM
========================= */
.team-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin:
    48px 0 64px;
  align-items: center;
}
.team-profile__image img {
  width: 100%;
    height: auto;
  display: block;
}
.team-profile__position {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 700;
}
.team-profile__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
.team-profile__text {
  font-size: 14px;
  line-height: 1.8;
}
.manager-message p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.manager-message__link {
  display: inline-flex;
  align-items: center;
  color: #a8771d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #a8771d;
  padding-bottom: 6px;
}
.manager-message__link::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.youtube-wrap {
  position: relative;
  width: 100%;
  margin-top: 40px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}
.youtube-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* =========================
  FEE
========================= */
.fee-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}
.fee-card {
  background: #FBF6E1;
  border: 1px solid #8f8f8f;
  border-radius: 16px;
  height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fee-card__label {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.fee-card__value {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 5px;
}
.fee-card__value span {
  font-size: 0.4em;
}
.fee-card__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.fee-cards__plus {
  color: #9c7222;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
/* =========================
  ACCORDION
========================= */
.accordion {
  margin: 40px 0 40px;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.accordion__button {
  position: relative;
  width: 100%;
  padding: 20px 40px 20px 40px;
  border: none;
  background: transparent;
  text-align: left;
  color: #9c7222;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.accordion-image-scroll::-webkit-scrollbar,
.accordion-image-scroll2::-webkit-scrollbar,
.formula-table__scroll::-webkit-scrollbar {
  height: 6px;
}

.accordion-image-scroll::-webkit-scrollbar-track,
.accordion-image-scroll2::-webkit-scrollbar-track,
.formula-table__scroll::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 999px;
}

.accordion-image-scroll::-webkit-scrollbar-thumb,
.accordion-image-scroll2::-webkit-scrollbar-thumb,
.formula-table__scroll::-webkit-scrollbar-thumb {
  background: #9c7222;
  border-radius: 999px;
}

.accordion-image-scroll::-webkit-scrollbar-thumb, .accordion-image-scroll2::-webkit-scrollbar-thumb {
  background: #9c7222;
  border-radius: 999px;
}
.accordion__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform:
    translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.accordion.active .accordion__button::after {
  transform:
    translateY(-30%) rotate(-135deg);
}
.accordion__content {
  display: none;
  padding: 0 40px 30px;
}
.accordion.active .accordion__content {
  display: block;
}
.accordion__content img {
  margin: 20px auto;
}
.accordion-image-scroll2 {
  overflow-x: auto;
  margin: 30px 0 0;
  -webkit-overflow-scrolling: touch;
}
.formula-table {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}


.formula-table__fixed img {
  width: 100%;
  display: block;
}

.formula-table__scroll-inner img {
  width: auto;
    height: auto;

  max-width: none;
  display: block;
}
.formula-table__fixed {
  flex-shrink: 0;
  width: 162.3px;

  display: flex;
  align-items: flex-start;
}

.formula-box {
  background: #FBF6E1;
  border: 1px solid #8f8f8f;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 10px;
}
.formula-box__formula {
  color: #CB5237;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
.formula-box__note {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}
.formula-box__note2 {
  font-size: 13px;
  line-height: 1.5;
}
.formula-box__note + .formula-box__note {
  margin-top: 8px;
}
.accent-red {
  color: #CB5237;
  font-weight: 700;
}
.schedule-item {
  padding: 20px 0;
}
.schedule-item + .schedule-item {
  border-top: 1px solid #8f8f8f;
}
.schedule-item:first-child {
  border-top: none;
}
.schedule-item__date {
  font-size: 16px;
  font-weight: 700;
}
.schedule-item__text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}
.highlight {
  background: #efe1d0;
  font-weight: 700;
  padding: 2px 4px;
}
.schedule-point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  background: #f9ebe4;
  border-radius: 8px;
  padding: 10px 15px;
}
.schedule-point__label {
  color: #CB5237;
  font-size: 14px;
  font-weight: 700;
}
.schedule-point__text {
  font-size: 14px;
  font-weight: 700;
}
/* =========================
  FAQ
========================= */
.faq {
  max-width: 800px;
  margin-inline: auto;
}
.faq__title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 20px;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.faq-question {
  position: relative;
  width: 100%;
  padding: 24px 60px 24px 24px;
  border: none;
  background: transparent;
  text-align: left;
  color: #151515;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform:
    translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.faq-item.active .faq-question::after {
  transform:
    translateY(-30%) rotate(-135deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 24px;
  font-size: 16px;
  color: #151515;
  line-height: 1.5;
}
.faq-answer span {
  display: block;
  font-size: 12px;
  color: #151515;
  text-align: left;
  margin-top: 10px
}
.faq-item.active .faq-answer {
  display: block;
}
/* =========================
  LEGAL
========================= */
.legal {
  background: #fff;
  padding: 80px 0;
}
.legal p {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 300;
}
.legal h2 {
  font-size: 18px;
  margin: 40px 0 20px 0;
}
.legal h3 {
  font-size: 16px;
  font-weight: 700;
}
.legal-list__title {
  display: block;
  margin: 12px auto;
  font-weight: 700;
}
.legal-table-wrap {
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}
.scroll-shadow {
  position: relative;
}

.legal-fee-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}
.legal-fee-table th, .legal-fee-table td {
  border: 1px solid #333;
  padding: 14px 12px;
  text-align: center;
}
.legal-fee-table th {
  background: #eceaea;
  font-weight: 700;
}
.legal-fee-table td {
  background: #fff;
}
.legal h2.credit {
  font-size: 18px;
  margin: 40px 0 0px 0;
}
.legal-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.legal-table-wrap::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 999px;
}

.legal-table-wrap::-webkit-scrollbar-thumb {
  background: #9c7222;
  border-radius: 999px;
}
.line{border-top: 1px solid #ccc;
padding-top: 80px}

.sponly {
  display: none;
}
/* =========================
  RESPONSIVE
========================= */
@media (max-width: 768px) {
  .sponly {
    display: block;
  }
  .pconly {
    display: none;
  }
  .menu-btn {
    right: 12px;
    top: 12px;
  }
  .container {
    width: min(100% - 50px, 1140px);
  }
  .legal .container {
    width: 80%;
    margin-inline: auto;
  }
  .hero {
    padding-top: 60px;
  }
  .hero__inner {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .hero__content, .hero__image {
    margin-top: 20px;
    width: 100%;
  }
  .hero__logo {
    margin: 20px auto 30px;
    width: 220px;
  }
  .hero__period {
    width: 85%;
    margin: 0 auto;
    display: block;
    padding: 20px;
    border: 1px solid #c43e2b;
    margin: 0 auto 40px;
  }
  .hero__title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
    text-wrap: balance;
  }
  .hero__title span {
    font-size: 18px;
    font-weight: 700;
    text-wrap: balance;
  }
  .intro p {
    margin-inline: auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    text-align: left;
  }
  .section {
    padding: 70px 0;
  }
  .feature-title {
    font-size: 32px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .feature-card {
    position: relative;
    border-right: none;
    border-bottom: 1px solid #bdb7ad;
    padding: 32px 24px;
    text-align: left;
  }
  .feature-card:first-child {
    border-top: 1px solid #bdb7ad;
  }
  .feature-card__icon {
    width: 120px;
    margin: 0 auto 16px;
  }
  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }
  .feature-card p {
    font-size: 14px;
    line-height: 1.9;
  }
  .feature-card__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    margin: 0;
    border-right: 1.5px solid #222;
    border-bottom: 1.5px solid #222;
    transform: translateY(-50%) rotate(-45deg);
  }
  .number-title {
    flex-direction: column;
    gap: 8px;
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
  }
  .policy17 {
    padding: 32px 20px;
  }
  .policy17__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .policy17__image {
    margin: 0 auto 48px;
  }
  .policy17 picture {
    width: 100%;
    max-width: 100%;
  }
  .policy17 picture img {
    width: 100%;
    height: auto;
  }
  #team.section {
    padding-top: 40px;
  }
  #team .number-title {
    margin-bottom: 24px;
  }
  #team .team-profile {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-box {
    grid-template-columns: 1fr;
  }
  .manager-message__link {
    display: inline-flex;
    align-items: center;
    color: #a8771d;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #a8771d;
    padding-bottom: 6px;
  }
  .manager-message__link::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 5px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .company-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .company-item__image img {
  width: 100%;
  height: auto;
  display: block;
  }
  .company-item__content {
    width: 100%;
  }
  .company-item__name {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .company-category {
    background: #22737F;
    color: #fff;
    padding: 5px 20px 3px;
    margin: 20px 0 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .fee-cards {
    grid-template-columns: 1fr;
  }
  .fee-cards__plus {
    margin: 0 auto;
  }
  .accordion__content {
    display: none;
    padding: 20px;
  }
  .accordion__content > p {
    font-size: 14px;
    line-height: 1.8;
  }
  .accordion__button {
    padding: 18px;
    font-size: 16px;
  }
  .accordion__text {
    font-size: 14px;
  }
  .accordion-image-scroll {
  overflow-x: auto;
  margin: 24px 0;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.accordion-image-scroll2 {
  overflow-x: auto;
  margin: 30px 0;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

  .accordion-image-scroll img {
  width: 700px;
  height: auto;
  max-width: none;
}
.accordion-image-scroll2 img {
  width: 650px;
    height: auto;
  max-width: none;
}
.formula-table.sponly {
  display: flex;
}
  .formula-box__formula {
    color: #CB5237;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .formula-box__note {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
  }
  .formula-box__note2 {
    font-size: 11px;
    line-height: 1.5;
  }
  .formula-box__note + .formula-box__note {
    margin-top: 8px;
  }
.formula-table-wrap {
  position: relative;
  padding-bottom: 12px;
}

.formula-table {
  display: flex;
  align-items: flex-start;
  padding-bottom: 12px;
  position: relative;
}

.formula-table__fixed {
  flex-shrink: 0;
  width: 162px;
}

.formula-table__scroll {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.scroll-shadow {
  overflow: hidden;
}
.formula-table__scroll-inner {
  width: max-content;
  min-width: 579px;
  display: flex;
}

.formula-table__scroll-inner img {
  width: 579px;
  max-width: none;
  height: auto;
  display: block;
}
  .faq__title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
  }
  .btn {
    width: 100%;
    min-width: auto;
  }
  .cta-bar__buttons {
    flex-direction: column;
  }
  .legal {
    background: #fff;
    padding: 40px 0;
  }
.legal h2.credit {
  font-size: 16px;
  margin: 40px 0 0px 0;
}
}
/* =========================
  ipad対策
========================= */
@media (min-width: 768px) and (max-width: 1024px) {
  .policy17 picture {
    max-width: 100%;
  }
  .policy17 {
    padding: 40px 24px;
  }
  .policy17__columns {
    gap: 24px;
  }
  .category-column li {
    font-size: 13px;
    line-height: 1.9;
  }
}