@charset "UTF-8";
:root {
  --color_how-to-purchase: #be917c;
  --color_how-to-purchase_arrow: var(--color_how-to-purchase);
  --space_layout_large: var(--space_2xl);
  --space_layout_small: var(--space_default);
  --color_red: #ea574f;
  --color_pastel-red: #ff8078;
  --color_pink: #ffd9d6;
  --color_green: #409e1e;
  --color_lightgreen: #8ec548;
  --color_yellow: #ffeb86;
  --color_orange: #ffcb7a;
  --color_beige: #ffe7aa;
  --color_brown: #604200;
  --color_black: #231815;
}
@media screen and (min-width: 768px) {
  :root {
    --space_layout_large: var(--space_4xl);
    --space_layout_small: var(--space_default);
  }
}

body {
  width: 100%;
  height: 100%;
  color: var(--color_black);
  font-size: 16px;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
}

main {
  background-color: unset;
}

/* リンク */
a {
  color: #0066ff;
}

a:hover {
  color: var(--color_brown);
  opacity: 0.8;
}

/* ios対策 背景固定 */
.bg {
  position: relative;
}

.bg::after {
  content: "";
  width: 100vw;
  height: 100vh;
  background: url(../image/bg_beige.webp) 0 0/cover;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .bg::after {
    background-image: url(../image/bg_beige-sp.webp);
  }
}
.contents-area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .contents-area {
    max-width: unset;
  }
}
.bg-img--red {
  background-image: url(../image/bg_red.webp);
}

.bg-img--green {
  background-image: url(../image/bg_green.webp);
}

.bg-img--yellow {
  background: url(../image/bg-dot-yellow.webp) #fff9db 0 0/3px 3px repeat;
}

.bg--red {
  background-color: var(--color_red);
}

.bg--pastel-red {
  background-color: var(--color_pastel-red);
}

.bg--lightgreen {
  background-color: var(--color_lightgreen);
}

.font--bold {
  font-weight: bold;
}

.font--red {
  color: var(--color_red);
}

.font--pastel-red {
  color: var(--color_pastel-red);
}

.font--green {
  color: var(--color_green);
}

.text--edge-1 {
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
}

.text--edge-2 {
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff, 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 2px 1px 0 #fff, -2px 1px 0 #fff, 2px -1px 0 #fff, -2px -1px 0 #fff, 1px 2px 0 #fff, -1px 2px 0 #fff, 1px -2px 0 #fff, -1px -2px 0 #fff, 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}

.linear--yellow {
  background: linear-gradient(transparent 60%, var(--color_yellow) 60%);
}

.linear--red {
  background: linear-gradient(transparent 60%, var(--color_pink) 60%);
}

.none-pc {
  display: none;
}

.none-tab {
  display: none;
}

.none-sp {
  display: block;
}

/* 米印の注釈 */
.notes,
.notes--number,
.notes--disc,
.notes--block {
  line-height: 1.3;
  position: relative;
}

.notes--number {
  counter-reset: notes-number;
}

.notes__item::before {
  content: "※";
}

.notes__item {
  font-size: 1.2rem;
}

.notes__item + .notes__item {
  margin-top: 0.5em;
}

.notes--block .notes__item {
  display: block;
  padding-left: 1.2em;
  position: relative;
}

.notes--block .notes__item::before {
  position: absolute;
  top: 0;
  left: 0;
}

.notes--number .notes__item {
  counter-increment: notes-number;
}

.notes--number .notes__item::before {
  content: "※" counter(notes-number, decimal);
}

.notes--number.notes--block .notes__item {
  padding-left: 2em;
}

.notes--disc .notes__item::before {
  content: "・";
}

@media screen and (max-width: 1024px) {
  .none-pc {
    display: block;
  }
  .none-tab {
    display: none;
  }
  .none-sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .none-pc {
    display: block;
  }
  .none-tab {
    display: block;
  }
  .none-sp {
    display: none;
  }
}
.hamburger-button {
  border-radius: var(--border-radius_s);
}

.contact-top .cta-button,
.contact .cta-button {
  --cta-button_background: var(--color_yellow);
  --cta-button_background_emphasis: var(--color_yellow);
  --cta-button_color: var(--color_black);
  border: 1px solid #fff;
  box-shadow: 0 10px 10px -5px rgba(181, 163, 72, 0.5);
}
.contact-top .cta-button__icon,
.contact .cta-button__icon {
  display: none;
}
.contact-top .cta-button__text,
.contact .cta-button__text {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.contact-top .cta-button__text::after,
.contact .cta-button__text::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 17" ><path fill="%23231815" fill-rule="evenodd" clip-rule="evenodd" d="M0.585786 1.08579C1.36683 0.304738 2.63317 0.304738 3.41421 1.08579L9.41421 7.08579C10.1953 7.86684 10.1953 9.13317 9.41421 9.91421L3.41421 15.9142C2.63317 16.6953 1.36683 16.6953 0.585786 15.9142C-0.195262 15.1332 -0.195262 13.8668 0.585786 13.0858L5.17157 8.5L0.585786 3.91421C-0.195262 3.13317 -0.195262 1.86683 0.585786 1.08579Z"/></svg>') center center/0.5em auto no-repeat;
}
.contact-top .cta-button__text::before,
.contact .cta-button__text::before {
  content: "";
  display: block;
  height: 1.6em;
  width: 2em;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 25" ><path fill="%23ff4742" d="M12.4972 15.9632C13.1837 15.9632 13.8344 15.6951 14.3191 15.2073L24.9704 4.55901C24.8469 3.85134 24.2296 3.31531 23.4887 3.31531H1.50571C0.764886 3.31531 0.147601 3.85134 0.0240173 4.55901L10.6723 15.2073C11.1601 15.6951 11.8077 15.9632 12.4972 15.9632Z"/><path fill="%23ff4742" d="M25 7.09421L24.9944 7.09958V7.08875L15.599 16.4842C14.7678 17.3123 13.6687 17.77 12.4972 17.77C11.3258 17.77 10.2236 17.3123 9.39541 16.4842L3.88613 10.9763L0.0078125 7.09158V7.09939L0 7.09158V20.1792C0 21.0102 0.674512 21.6847 1.50571 21.6847H23.4888C24.3198 21.6847 24.9945 21.0102 24.9945 20.1792V12.515L25 7.09421Z"/></svg>') center center/1.6em auto no-repeat;
}
.contact-top .cta-button--emphasis .cta-button__text::before,
.contact .cta-button--emphasis .cta-button__text::before {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 25 25"><path fill="%23ff4742" d="M8.8,21.6c1.6,1.1,3.2,2.1,5,2.9.9.4,1.5.6,1.8.6h0c1.2,0,2.8-2.3,3-3,.2-.9,0-1.8-.8-2.4l-1.6-1.3c-.4-.3-.9-.5-1.4-.5s-1.1.2-1.6.6c-.3.2-.6.6-.8.8,0,0,0,0,0,0-.7,0-3.1-2.1-3.7-2.8-.7-.7-2.8-3.1-2.8-3.7,0,0,0,0,0,0,.2-.2.6-.5.8-.8.8-.8.8-2.1.1-3l-1.3-1.6c0-.1-.2-.2-.4-.4,0,0-.1,0-.2-.2-.3-.2-.6-.3-1-.3,0,0-.2,0-.3,0-.2,0-.4,0-.5,0C2.4,6.6,0,8.2,0,9.4c0,.3.2.9.6,1.8.8,1.7,1.7,3.4,2.9,5,1.5,2,3.3,3.8,5.3,5.3Z" stroke-width="0"/><path fill="%23ff4742" d="M25,13c0-3.4-1.5-6.6-3.9-9.1C18.7,1.5,15.6.2,12.2,0c0,0-.1,0-.2,0h0s0,0,0,0v2c2.9,0,5.6,1.3,7.7,3.3,2.1,2.1,3.2,4.8,3.3,7.7h2Z" stroke-width="0"/><path fill="%23ff4742" d="M21.1,13c0-2.4-1.1-4.6-2.8-6.3-1.6-1.6-3.8-2.6-6.1-2.7,0,0-.1,0-.2,0h0s0,0,0,0v2c1.9,0,3.6.9,4.9,2.2,1.3,1.3,2.1,3,2.2,4.9h2Z" stroke-width="0"/><path fill="%23ff4742" d="M12.2,7.9s0,0-.1,0h0s0,0,0,0v2c.8,0,1.5.4,2.1,1,.6.6.9,1.3,1,2.1h2s0,0,0,0h0c0-1.3-.7-2.6-1.6-3.5-.9-.9-2.1-1.5-3.4-1.6Z" stroke-width="0"/></svg>') center center/1.5em 1.5em no-repeat;
}
.contact-top .contact-top .cta-button__text,
.contact-top .contact .cta-button__text {
  font-size: clamp(0.813rem, 0.411rem + 1.79vw, 1.75rem);
}

.cta-number__text {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color_green);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-number__icon {
  width: 48px;
  height: 28px;
}

.cta-unit__heading {
  display: none;
}

.global-navigation {
  --global-navigation_background: var(--color_yellow);
  --global-navigation_icon-color: var(--color_orange);
  --global-navigation_icon-background: var(--color_base);
  --global-navigation_hamburger-button_border: 2px solid var(--color_orange);
}
.bottom-fixed {
  --bottom-fixed_campaign_color: var(--color_campaign);
  --bottom-fixed_campaign_color_base: #ffe5d8;
  --bottom-fixed_cta_button_tel: var(--color_red);
}

.footer {
  --footer_inner_background: var(--color_base);
  --footer_copyright_color: var(--color_black);
}
.footer__copyright {
  background-color: var(--color_orange);
}

.section {
  padding-top: var(--space_layout_large);
  padding-bottom: var(--space_layout_large);
}
.section__inner {
  margin-inline: auto;
  max-width: 1200px;
}
.section__title {
  margin-bottom: var(--space_sm);
  font-size: min(6.5vw, 1.75em);
  font-weight: bold;
  line-height: 1.3;
}
@media print, screen and (min-width: 992px) {
  .section__title {
    font-size: 2em;
  }
}
.section__title-text--small {
  font-size: 0.66em;
}
.section__overview, .section__overview--center {
  margin-bottom: var(--space_sm);
}
@media print, screen and (min-width: 768px) {
  .section__overview, .section__overview--center {
    margin-bottom: var(--space_md);
  }
}
.section__overview--center {
  text-align: center;
}
.section__overview-unit + .section__overview-unit {
  margin-top: 1em;
}

.contact__main {
  padding: unset;
  background: unset;
}
.contact__title {
  font-size: clamp(0.875rem, 0.071rem + 3.57vw, 2.75rem);
  line-height: 1.8;
}
.contact__lead--large {
  font-size: clamp(0.938rem, -0.107rem + 4.64vw, 3.375rem);
}
.contact-notes__item {
  font-size: var(--font-size_sm);
}

.contact-section {
  --contact-section_background: var(--color_pastel-red);
}
.contact-section .contact-section__inner {
  padding: 20px 5%;
  background-color: var(--color_base);
  border-radius: var(--border-radius_s);
}
@media screen and (min-width: 768px) {
  .contact-section .contact-section__inner {
    padding: 40px 20px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-section .contact-section__inner {
    padding: 40px 40px 60px;
  }
}

.contact-top {
  --contact-top_background: linear-gradient(180deg, rgba(253, 242, 225, 1) 0%, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 1) 95%, rgba(255, 255, 255, 0) 100%);
}
.contact-top__title {
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(transparent 60%, var(--color_yellow) 60%);
}

.contact-area-mini {
  display: flex;
  width: 100%;
  padding: 30px 40px 0;
  column-gap: 40px;
}

.contact-area-mini .cta-area {
  display: grid;
  width: 100%;
  padding: 1vw 10px;
  border: solid 1px var(--color_red);
  border-radius: 10px;
  text-align: center;
}

.contact-area-mini .cta-button__text {
  font-size: clamp(1rem, 1vw, 1.3rem);
}

.contact-area-mini .cta-area__heading {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 0 10px;
  column-gap: 20px;
  border-bottom: 1px solid var(--color_pastel-red);
  color: var(--color_pastel-red);
  font-size: clamp(0.7rem, 1vw, 1.3rem);
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.contact-area-mini .cta-area--tel .cta-area__heading::before,
.contact-area-mini .cta-area--mail .cta-area__heading::before {
  width: 30px;
  height: 30px;
  margin: 0;
}

.contact-area-mini .cta-area--tel > .cta-area__heading::before {
  background-image: url(../img/icon_tel-r.svg);
}

.contact-area-mini .cta-area--mail > .cta-area__heading::before {
  background-image: url(../img/icon_mail-r.svg);
}

.contact-area-mini .cta-number {
  padding-top: 2vh;
}
@media screen and (min-width: 1024px) {
  .contact-area-mini .cta-number {
    padding-top: unset;
  }
}
.contact-area-mini .cta-number__icon {
  width: 2em;
  height: 100%;
}

.contact-area-mini .cta-number__text {
  height: 70px;
  font-size: min(2vw, 2em);
  font-weight: bold;
}

.contact-area-mini .cta-area__information-text {
  font-size: 0.75rem;
  padding: 0 0 10px;
}

.contact-area-mini .cta-button {
  width: auto;
  margin: 15px auto;
  text-align: center;
}

.contact-area-mini .cta-area--mail > a {
  display: grid;
  align-items: center;
}

.contact-area-mini .cta-area--mail .cta-button {
  display: grid;
  height: min-content;
  margin: 5% 0;
  align-content: center;
}

@media screen and (max-width: 1024px) {
  .contact-area-mini {
    padding: 30px 20px 0;
    column-gap: 20px;
  }
  .contact-area-mini .cta-area__heading {
    padding: 0 0 1vw;
    column-gap: 10px;
  }
  .contact-area-mini .cta-area--tel .cta-area__heading::before,
  .contact-area-mini .cta-area--mail .cta-area__heading::before {
    width: 32px;
    height: 32px;
    margin-left: 5px;
  }
  .contact-area-mini .cta-number__text {
    height: auto;
    font-size: min(3vw, 1.1rem);
  }
  .contact-area-mini .cta-area__information-text {
    padding: 0 0 25px;
  }
  .contact-area-mini .cta-button {
    margin: 15px auto;
    text-align: center;
  }
  .contact-area-mini .cta-button__text {
    font-size: clamp(0.7rem, 1vw, 1.1rem);
  }
}
@media screen and (max-width: 767px) {
  .contact-area-mini {
    display: block;
    padding: 25px 0 0;
  }
  .contact-area-mini .cta-area {
    margin-bottom: 15px;
    grid-template-rows: auto auto;
  }
  .contact-area-mini .cta-area__heading {
    height: auto;
    min-height: 52px;
    text-align: left;
  }
  .contact-area-mini .cta-area__heading .cta-area__heading-text {
    font-size: min(3vw, 1rem);
  }
  .contact-area-mini .cta-area--mail .cta-area__heading {
    font-size: min(3vw, 1rem);
  }
  .contact-area-mini .cta-area--tel .cta-area__heading::before,
  .contact-area-mini .cta-area--mail .cta-area__heading::before {
    width: 25px;
    height: 25px;
  }
  .contact-area-mini .cta-number__text {
    height: auto;
    padding: 15px 0 0;
    font-size: 1.6rem;
  }
  .contact-area-mini .cta-area__information-text {
    padding: 0 0 15px;
    font-size: 0.65rem;
  }
  .contact-area-mini .cta-button {
    width: 100%;
    margin: 15px auto;
    text-align: center;
  }
  .contact-area-mini .cta-button__text {
    font-size: min(2.8vw, 1.5rem);
  }
  .contact-area-mini .cta-button__text--sub > br {
    display: none;
  }
}
.main-visual img {
  width: 100%;
  height: auto;
}

.user-voice {
  padding: 100px 0;
}

.user-voice__title--wrap {
  display: flex;
  column-gap: 40px;
  color: var(--color_green);
  align-items: center;
  justify-content: center;
}

.user-voice__title--wrap::before {
  background: url(../image/border-l.svg);
}

.user-voice__title--wrap::after {
  background: url(../image/border-r.svg);
}

.user-voice__title--wrap::before, .user-voice__title--wrap::after {
  content: "";
  display: block;
  width: 40px;
  height: 100px;
  background-size: 100% 100%;
}

.user-voice__title {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.user-voice__title--large {
  font-size: 3rem;
}

.user-voice__unit {
  margin-top: 50px;
  border: solid 1px var(--color_lightgreen);
  border-radius: 50px;
  overflow: hidden;
}

.user-voice__unit-title {
  padding: 5px 50px;
  background-color: var(--color_lightgreen);
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.user-voice__unit-item {
  padding: 15px 30px 20px;
  background-color: #fff;
}

.user-voice__unit-item-inner--wrap {
  display: grid;
  grid-template-columns: auto min-content;
  grid-template-rows: auto auto;
  gap: 0 30px;
  grid-template-areas: "text img" "data data";
}

.user-voice__unit-item-text {
  grid-area: text;
  padding: 0 10px 10px;
  font-size: 0.9rem;
  line-height: 2;
}

.user-voice__unit-item-img {
  grid-area: img;
  display: flex;
  width: 130px;
  height: auto;
  margin-right: 15px;
  align-items: flex-end;
}

.user-voice__unit-item-footer {
  grid-area: data;
  padding-top: 5px;
  border-top: solid 2px var(--color_green);
  text-align: right;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .user-voice {
    padding: 80px 0;
  }
  .user-voice__title--wrap {
    column-gap: 50px;
  }
  .user-voice__title--wrap::before, .user-voice__title--wrap::after {
    height: 105px;
  }
  .user-voice__title {
    font-size: 1.5rem;
  }
  .user-voice__title--large {
    font-size: 2rem;
  }
  .user-voice__unit {
    margin: 40px 40px 0;
  }
  .user-voice__unit-title {
    padding: 12px 25px;
    font-size: 1.25rem;
  }
  .user-voice__unit-item-inner--wrap {
    gap: 0;
  }
  .user-voice__unit-item-text {
    font-size: 1rem;
  }
  .user-voice__unit-item-img {
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .user-voice {
    padding: 50px 0 80px;
  }
  .user-voice__title--wrap {
    column-gap: 20px;
  }
  .user-voice__title--wrap::before, .user-voice__title--wrap::after {
    width: 30px;
    height: 70px;
  }
  .user-voice__title {
    font-size: 1rem;
  }
  .user-voice__title--large {
    font-size: 1.25rem;
  }
  .user-voice__unit {
    margin: 30px 15px 0;
  }
  .user-voice__unit-title {
    display: grid;
    font-size: 1rem;
    align-items: center;
  }
  .user-voice__unit-item {
    padding: 15px 20px 20px;
  }
  .user-voice__unit-item-inner--wrap {
    grid-template-columns: auto 80px;
    grid-template-rows: auto auto;
    gap: 0;
    grid-template-areas: "text text" "data img";
  }
  .user-voice__unit-item-text {
    line-height: 1.8;
    font-size: 0.9rem;
    padding: 0 0 10px;
  }
  .user-voice__unit-item-img {
    grid-area: img;
    width: 80px;
    height: auto;
  }
  .user-voice__unit-item-footer {
    grid-area: data;
    display: grid;
    padding: 0 15px 10px 0;
    border-top: 0;
    text-align: right;
    font-size: 0.9rem;
    align-items: flex-end;
  }
}
.faq {
  padding: 70px 0 100px;
}

.faq__title {
  padding: 20px 0;
  margin-bottom: 75px;
  background-color: var(--color_orange);
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.faq__title > img {
  width: 130px;
  height: auto;
  position: absolute;
  top: -25%;
  right: 65%;
}

.faq__unit {
  display: grid;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
  border: solid 1px var(--color_orange);
  border-radius: 10px;
  overflow: hidden;
  gap: unset;
}

.faq__unit:last-child {
  margin-bottom: 0;
}

.faq__q-item--wrap {
  display: flex;
  background-color: var(--color_beige);
}

.faq__a-item--wrap {
  display: grid;
  padding: 12px 0;
  grid-template-columns: 70px auto;
  background-color: #fff;
}

.faq__icon { /* Q・A アイコン部分共通 */
  display: grid;
  align-items: start;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.faq__q-icon {
  width: 70px;
  padding: 12px 0;
  background-color: var(--color_orange);
  color: #fff;
}

.faq__a-icon {
  color: var(--color_orange);
  border-right: solid 1px var(--color_orange);
}

.faq__text { /* Q・A テキスト部分共通 */
  display: grid;
  font-size: 1.25rem;
  text-align: left;
  align-items: center;
}

.faq__q-text {
  padding: 12px 20px;
  font-weight: bold;
}

.faq__a-text {
  padding: 0 20px;
}

@media screen and (max-width: 1024px) {
  .faq {
    padding: 70px 0 80px;
  }
  .faq__title {
    margin-bottom: 50px;
    font-size: 1.5rem;
  }
  .faq__title > img {
    top: -38%;
    left: 18%;
  }
  .faq__unit--wrap {
    padding: 0 40px;
  }
  .faq__text { /* Q・A テキスト部分共通 */
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 50px 0;
  }
  .faq__title {
    padding: 10px 20px 10px 120px;
    font-size: 1.25rem;
  }
  .faq__title > img {
    width: 90px;
    top: -45%;
    left: 10%;
  }
  .faq__unit {
    width: auto;
    margin: 0 20px 30px;
    border-radius: 5px;
  }
  .faq__unit--wrap {
    padding: 0;
  }
  .faq__a-item--wrap {
    grid-template-columns: 50px auto;
  }
  .faq__icon { /* Q・A アイコン部分共通 */
    font-size: 1.25rem;
  }
  .faq__q-icon {
    width: 50px;
  }
  .faq__q-text {
    width: calc(100% - 50px);
    padding: 12px 15px;
  }
  .faq__a-text {
    padding: 0 15px;
    font-size: 0.9rem;
  }
}
.all-categories {
  --all-categories__background: unset;
  --all-categories__item-background: var(--color_base);
  --all-categories__item-icon: var(--color_pastel-red);
  padding: unset;
}
.all-categories__title, .all-categories__lead {
  display: none;
}
.all-categories__list {
  margin-top: unset;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 449.98px) {
  .all-categories__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 640px) {
  .all-categories__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .all-categories__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.all-categories__item {
  background-color: var(--color_base);
  border: 2px solid var(--color_pastel-red);
  border-radius: var(--border-radius);
  padding: var(--space_2xs);
}
@media screen and (min-width: 640px) {
  .all-categories__item {
    padding: unset;
  }
}
.all-categories__item-icon {
  background: unset;
  box-shadow: unset;
}
.all-categories__item-icon svg {
  height: 100%;
}
.all-categories__item-name {
  font-weight: normal;
  font-size: 0.9em;
}
@media screen and (min-width: 640px) {
  .all-categories__item-name {
    font-size: 1em;
  }
}
.all-categories__item-detail {
  display: none;
}
.all-categories__button {
  gap: unset;
}

.categories-modal {
  --categories-modal_main-color: var(--color_pastel-red);
  --categories-modal_sub-color: #fff9db;
}

.primary {
  width: 100%;
  text-align: center;
}
.primary__title {
  font-weight: bold;
  padding: 50px 0;
  font-size: 0.9rem;
  line-height: 2;
  background: linear-gradient(180deg, rgb(253, 242, 225) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 768px) {
  .primary__title {
    padding: 100px 0;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .primary__title {
    font-size: 1.5rem;
  }
}
.primary__title--large {
  color: var(--color_red);
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .primary__title--large {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .primary__title--large {
    font-size: 2.25rem;
  }
}
.primary__inner--wrap {
  padding: 0 40px;
  display: block;
}
@media screen and (min-width: 768px) {
  .primary__inner--wrap {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .primary__inner--wrap {
    padding: unset;
  }
}
@media screen and (min-width: 768px) {
  .primary__inner-img {
    width: 70vw;
    max-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .primary__inner-img {
    width: 55vw;
    max-width: 450px;
    height: auto;
  }
}
.primary__inner-img > img {
  width: 90vw;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .primary__inner-img > img {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .primary__inner-img > img {
    border-radius: unset;
  }
}
.primary__inner-item {
  display: grid;
  width: 100%;
  margin: auto 0;
  row-gap: 35px;
}
@media screen and (min-width: 768px) {
  .primary__inner-item {
    row-gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .primary__inner-item {
    row-gap: 50px;
  }
}
.primary__text {
  padding-top: 50px;
  font-size: 0.9rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .primary__text {
    padding-top: unset;
    font-size: 1rem;
    line-height: 2.5;
  }
}
@media screen and (min-width: 1024px) {
  .primary__text {
    font-size: 1.25rem;
  }
}
.primary__inner-logo {
  margin-inline: auto;
  display: block;
  width: auto;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .primary__inner-logo {
    font-size: 3rem;
  }
}
.primary__inner-logo :where(.bg-img--red, .bg-img--green) {
  padding: 5px 10px;
  margin: 0 10px;
  border-radius: 10px;
  background-size: contain;
  box-shadow: 5px 5px 7px #fff, 5px -5px 7px #fff, -5px -5px 7px #fff, -5px 5px 7px #fff;
  color: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: max(4vw, 1.3rem);
}
@media screen and (min-width: 768px) {
  .primary__inner-logo :where(.bg-img--red, .bg-img--green) {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .primary__inner-logo :where(.bg-img--red, .bg-img--green) {
    padding: 10px 15px;
    margin: 0 15px;
    font-size: 2.5rem;
  }
}
.primary__question {
  padding: 50px 10px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 30%);
  border-bottom-left-radius: 300% 200%;
  border-bottom-right-radius: 300% 200%;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .primary__question {
    padding: 80px 50px 50px;
    border-bottom-left-radius: 1000px 200px;
    border-bottom-right-radius: 1000px 200px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .primary__question {
    padding: 100px 100px 80px;
    line-height: 2;
    font-size: 2rem;
  }
}
.primary__question--large {
  color: var(--color_red);
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .primary__question--large {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .primary__question--large {
    font-size: 2.5rem;
  }
}
.primary__answer {
  padding: 40px 10px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .primary__answer {
    padding: 80px 0;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .primary__answer {
    padding: 80px 0 130px;
    line-height: 2;
    font-size: 2rem;
  }
}
.primary__answer--large {
  font-size: 1.4rem;
  color: var(--color_green);
}
@media screen and (min-width: 768px) {
  .primary__answer--large {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .primary__answer--large {
    font-size: 3rem;
  }
}
.primary__answer > img {
  padding-top: 30px;
  width: 8.5vw;
  max-width: 80px;
  height: auto;
  margin: 0 auto;
  position: static;
  top: 210px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .primary__answer > img {
    width: 9vw;
    padding-top: unset;
    position: absolute;
  }
}
@media screen and (min-width: 1024px) {
  .primary__answer > img {
    width: 5.5vw;
    top: 320px;
  }
}

.cost {
  padding: 100px 0;
  background-color: var(--color_beige);
  text-align: center;
}

.cost__body {
  padding: 50px 0;
  border-radius: 10px;
  background: #fff;
}

.cost__title {
  padding-bottom: 5px;
  border-bottom: solid 2px var(--color_lightgreen);
  font-size: 2rem;
}

.cost__graph-img > img {
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 60px auto 0;
}

.cost__footer {
  width: 700px;
  padding: 15px 0 5px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: var(--color_green);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.cost__footer--large {
  font-size: 2.5rem;
  position: relative;
}

.cost__footer--large::before {
  content: "";
  display: block;
  width: 30px;
  height: 26px;
  background: url(../image/cost_point.svg) 0 0/contain no-repeat;
  position: absolute;
  top: -20px;
  left: -7px;
}

@media screen and (max-width: 1024px) {
  .cost {
    padding: 80px 40px;
  }
  .cost__title {
    font-size: 1.8rem;
  }
  .cost__graph-img > img {
    width: 80%;
  }
  .cost__footer {
    width: 80vw;
    font-size: 1.5rem;
  }
  .cost__footer--large {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .cost {
    padding: 0;
  }
  .cost__body {
    padding: max(4vw, 20px) 0 25px;
    border-radius: 0;
  }
  .cost__title {
    font-size: max(4vw, 1.2rem);
  }
  .cost__graph-img > img {
    margin: 5.5vw auto 0;
  }
  .cost__footer {
    width: 85vw;
    padding: 10px 0 0;
    font-size: 1rem;
  }
  .cost__footer--large {
    font-size: 1.7rem;
  }
  .cost__footer--large::before {
    width: 22px;
    top: -13px;
  }
}
.user-record {
  padding: 100px 0;
}

.user-record__title--wrap {
  display: flex;
  column-gap: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color_green);
}

.user-record__title--wrap::before {
  background: url(../image/border-l.svg);
}

.user-record__title--wrap::after {
  background: url(../image/border-r.svg);
}

.user-record__title--wrap::before, .user-record__title--wrap::after {
  content: "";
  display: block;
  width: 40px;
  height: 100px;
  background-size: 100% 100%;
}

.user-record__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.user-record__title--large {
  font-size: 3rem;
}

@media screen and (max-width: 1024px) {
  .user-record {
    padding: 80px 0;
  }
  .user-record__title--wrap::before, .user-record__title--wrap::after {
    height: 80px;
  }
  .user-record__title {
    font-size: 1.5rem;
  }
  .user-record__title--large {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .user-record {
    padding: 60px 0 100px;
  }
  .user-record__title--wrap {
    column-gap: 20px;
  }
  .user-record__title--wrap::before, .user-record__title--wrap::after {
    width: 30px;
    height: 70px;
  }
  .user-record__title {
    font-size: 1rem;
  }
  .user-record__title--large {
    font-size: 1.25rem;
  }
}
/*
	スワイパー
-------------------------- */
.swiper-button-prev, .swiper-button-next {
  width: 25px !important;
  padding: 40px 6px;
  background-color: var(--color_lightgreen);
  top: 47% !important;
}

.swiper [class^=swiper-button-]::after {
  font-size: 25px;
  color: #fff;
}

.swiper-button-prev {
  border-radius: 10px 0 0 10px;
}

.swiper-button-next {
  border-radius: 0 10px 10px 0;
}

.swiper-pagination {
  display: flex;
  column-gap: 15px;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background-color: var(--color_lightgreen) !important;
}

/*スライドが非アクティブのときは矢印ボタンを非表示にする*/
.swiper:not(.swiper-initialized) .swiper-button-prev,
.swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}

/*スライドが非アクティブのとき,スライドレイアウトを変更*/
.swiper:not(.swiper-initialized) .swiper-wrapper {
  display: block;
}

/*
	事例
-------------------------- */
.user-record__unit {
  padding-top: 60px;
}

.user-record__unit-title {
  display: grid;
  padding: 22px 22% 22px 20px;
  background-color: var(--color_yellow);
  border-radius: 50px 50px 0 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  align-items: center;
  position: relative;
}

.user-record__unit-title > img {
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: 0;
  right: 10%;
}

.user-record__unit-item--wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  padding: 30px;
  background-color: #fff;
  border-radius: 0 0 50px 50px;
  align-items: center;
}

.user-record__unit-item { /* 3ボックス共通レイアウト */
  min-height: 130px;
  border: 3px solid var(--color_orange);
  border-radius: 20px;
}

.user-record__unit-symbol {
  padding: 0 15px;
}

.user-record__unit-symbol > picture {
  display: flex;
  align-items: center;
}

.user-record__unit-item-first { /* 1個目のボックスレイアウト */
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: auto min-content;
  gap: 0px 0px;
  grid-template-areas: "icon data" "money money";
  overflow: hidden;
}

.user-record__unit-item-first-icon {
  grid-area: icon;
  display: grid;
  width: 90px;
  height: auto;
  padding: 10px 0 0 20px;
  align-items: end;
}

.user-record__unit-item-first-data {
  grid-area: data;
  display: grid;
  padding: 10px 20px 0 0;
  align-content: center;
  text-align: center;
}

.user-record__unit-item-first-money {
  grid-area: money;
  text-align: center;
  background-color: var(--color_yellow);
  font-weight: bold;
  line-height: 1.5;
}

.user-record__unit-item-inner { /* 2・３個目のボックスレイアウト */
  display: grid;
  padding: 0 20px;
  grid-template-columns: min-content 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 10px;
  grid-template-areas: "icon data" "icon money";
  align-items: center;
}

.user-record__unit-item-inner-icon {
  grid-area: icon;
  width: 6.5vw;
  max-width: 70px;
}

.user-record__unit-item-inner-data {
  grid-area: data;
  display: grid;
  height: 100%;
  border-bottom: solid 3px var(--color_orange);
  box-sizing: content-box;
  align-items: center;
  text-align: center;
  font-weight: bold;
}

.user-record__unit-item-inner-money {
  grid-area: money;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: bold;
  line-height: 1;
}

.user-record__unit-item--green {
  border-color: var(--color_lightgreen);
  background: url(../image/bg-dot-lightgreen.webp) #f6ffd2 0 0/3px 3px repeat;
}

.user-record__unit-item-inner-data--green {
  border-color: var(--color_lightgreen);
}

.user-record__unit-item--small {
  font-size: 0.9rem;
}

.user-record__unit-item--large {
  font-size: 2rem;
}

@media screen and (max-width: 1024px) {
  .user-record__unit {
    padding: 60px 40px 0;
  }
  .user-record__unit-title {
    padding: 15px 22% 15px 20px;
    font-size: 1.3rem;
  }
  .user-record__unit-title > img {
    width: 100px;
    height: 100px;
  }
  .user-record__unit-item--wrap {
    padding: 20px;
  }
  .user-record__unit-item { /* 3ボックス共通レイアウト */
    min-height: 110px;
  }
  .user-record__unit-symbol {
    padding: 0 10px;
  }
  .user-record__unit-item-first-icon {
    width: 7.5vw;
    padding-left: 10px;
  }
  .user-record__unit-item-first-data {
    padding-right: 10px;
    font-size: 0.9rem;
  }
  .user-record__unit-item-first-money {
    padding: 0 10px;
    font-size: max(1.7vw, 0.8rem);
    line-height: 2;
  }
  .user-record__unit-item-inner { /* 2・３個目のボックスレイアウト */
    padding: 1vw;
    gap: 0px 1vw;
  }
  .user-record__unit-item-inner-data {
    font-size: 1.65vw;
  }
  .user-record__unit-item--small {
    font-size: 0.65rem;
  }
  .user-record__unit-item--large {
    font-size: max(2vw, 1rem);
  }
}
@media screen and (max-width: 767px) {
  .user-record__unit {
    padding: 15px 40px 40px;
  }
  .user-record__unit-title {
    display: flex;
    padding: 20px max(30%, 90px) 10px 8%;
    font-size: 1rem;
    text-align: left;
  }
  .user-record__unit-title > br {
    display: none;
  }
  .user-record__unit-title > img {
    width: 70px;
    height: 70px;
    right: 8%;
  }
  .user-record__unit-item--wrap {
    display: block;
    padding: 25px 20px 20px;
    border-radius: 0 0 30px 30px;
  }
  .user-record__unit-symbol {
    padding: 15px 0;
  }
  .user-record__unit-symbol > picture {
    justify-content: center;
  }
  .user-record__unit-item-first-icon {
    width: 70px;
    padding-left: 10px;
  }
  .user-record__unit-item-first-data {
    display: block;
    padding: 0 10px;
    margin: auto 0;
    text-align: center;
  }
  .user-record__unit-item-inner { /* 2・３個目のボックスレイアウト */
    padding: 15px 20px;
    grid-template-columns: min-content auto;
    grid-template-rows: auto min-content;
    gap: 0 5px;
  }
  .user-record__unit-item-inner-icon {
    width: 70px;
  }
  .user-record__unit-item-inner-data {
    font-size: 0.9rem;
  }
  .user-record__unit-item-inner-money {
    padding-top: 10px;
    font-size: 0.9rem;
  }
  .user-record__unit-item--small {
    font-size: 0.8rem;
  }
  .user-record__unit-item--large {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 550px) {
  .user-record__unit-title > br {
    display: block;
  }
  .user-record__unit-item-inner-data > br {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  .user-record__unit-item-first-data > br {
    display: block;
  }
  .user-record__unit-item-inner {
    padding: 4vw 5.5vw;
  }
  .user-record__unit-item-inner-icon {
    width: 18vw;
  }
}
.point {
  padding: 200px 0 50px;
}

.point__body {
  padding: 110px 150px 50px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.point__title {
  width: 100%;
  position: absolute;
  top: -30px;
  left: 0;
}

.point__title-inner {
  width: 850px;
  padding: 10px 10px 10px 13%;
  margin: 0 auto;
  background-color: var(--color_yellow);
  border-radius: 40px;
  font-size: 2rem;
  position: relative;
}

.point__title-inner::after {
  content: "";
  display: block;
  width: 190px;
  height: 190px;
  background: url(../image/point-human1.webp) center center/contain no-repeat;
  position: absolute;
  top: -130%;
  left: 2%;
}

.point__head-text {
  padding-bottom: 60px;
  font-size: 1.25rem;
  line-height: 2;
}

.point__sub-title {
  width: 100%;
  padding: 100px 0 10px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color_green);
}

.point__list {
  display: grid;
  width: 100%;
  padding: 70px 0;
  gap: 70px 15px;
  grid-template-columns: 150px auto;
  border-top: double 8px var(--color_green);
  border-bottom: double 8px var(--color_green);
}

.point__list-img > img {
  height: 16vh;
  max-height: 150px;
}

.point__list-item {
  display: grid;
}

.point__list-title {
  width: 100%;
  height: min-content;
  background-color: var(--color_yellow);
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: bold;
}

.point__list-text {
  font-size: 1.25rem;
  line-height: 1.75;
}

.point__list-text--small {
  width: 100%;
  font-size: 0.75rem;
  text-align: right;
}

.point__footer-text {
  padding: 70px 0;
  line-height: 2;
}

.point__footer-message {
  display: grid;
  padding: 10px 50px;
  grid-template-columns: auto 11vw;
  border: solid 1px var(--color_orange);
  border-radius: 10px;
  font-size: 1.25rem;
  line-height: 1.75;
  align-items: center;
}

.point__footer-message--large {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color_red);
}

.point__footer-message > img {
  width: 11vw;
  max-width: 170px;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .point {
    padding: 130px 0 20px;
  }
  .point__body {
    padding: 120px 40px 50px;
    margin: 0 40px;
  }
  .point__title-inner {
    width: 85%;
    padding: 10px 10px 10px 8%;
    border-radius: 50px;
    font-size: 1.5rem;
  }
  .point__title-inner::after {
    width: 160px;
    height: 160px;
    top: -50%;
    left: 5%;
  }
  .point__footer-text {
    font-size: 1.25rem;
  }
  .point__footer-message {
    grid-template-columns: auto 18vw;
    font-size: 1rem;
  }
  .point__footer-message--large {
    font-size: 1.25rem;
  }
  .point__footer-message > img {
    width: 18vw;
  }
}
@media screen and (max-width: 767px) {
  .point {
    padding: 100px 15px 0;
  }
  .point__body {
    padding: max(15vw, 80px) 15px 30px;
    margin: 0;
  }
  .point__title-inner {
    width: 75vw;
    padding: 10px 20px 10px 100px;
    border-radius: 50px;
    font-size: max(3vw, 1rem);
  }
  .point__title-inner::after {
    width: 20vw;
    min-width: 100px;
    height: 20vw;
    min-height: 100px;
    top: -4vw;
  }
  .point__head-text {
    padding-bottom: 40px;
    font-size: 0.9rem;
  }
  .point__sub-title {
    padding: 50px 0 0;
    font-size: 1.25rem;
  }
  .point__list {
    padding: 40px 0;
    gap: 40px 10px;
    grid-template-columns: 100px auto;
  }
  .point__list-img > img {
    width: 100px;
    height: auto;
  }
  .point__list-title {
    padding: 3px 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  .point__list-text {
    font-size: 0.9rem;
  }
  .point__list-text--small {
    font-size: 0.6rem;
  }
  .point__footer-text {
    padding: 40px 0;
    font-size: 0.9rem;
  }
  .point__footer-message {
    padding: 10px;
    grid-template-columns: auto auto;
    column-gap: 5px;
    font-size: 0.8rem;
  }
  .point__footer-message--large {
    font-size: 0.8rem;
  }
  .point__footer-message > img {
    width: 26vw;
    max-width: 95px;
  }
}
@media screen and (max-width: 375px) {
  .point__message-text > br, .point__footer-message--large > br {
    display: none;
  }
}
@media screen and (max-width: 309px) {
  .point__body {
    padding-top: 110px;
  }
  .point__title-inner::after {
    top: 5%;
  }
}
.flow {
  padding: 100px 0 50px;
}

.flow__title {
  padding-bottom: 70px;
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
}

.flow__title-sub {
  width: fit-content;
  padding: 0 25px;
  margin: 0 auto 10px;
  border-radius: 25px;
  background-color: var(--color_red);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.flow__sub-title {
  padding: 10px 0;
  margin-bottom: 50px;
  border-radius: 5px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  text-align: center;
}

.flow__list {
  display: grid;
  padding-bottom: 20px;
  grid-template-columns: 80px auto;
  column-gap: 30px;
}

.flow__list-left-item {
  text-align: center;
}

.flow__list-left-item :where(.flow__list-icon--red, .flow__list-icon--lightgreen) {
  height: 100%;
}

.flow__list-icon--red::after {
  background: url(../img/flow_border-red.svg);
}

.flow__list-icon--lightgreen::after {
  background: url(../img/flow_border-lightgreen.svg);
}

.flow__list-icon--red::after, .flow__list-icon--lightgreen::after {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 94px);
  margin: 7px auto;
}

.flow__list-right-item {
  padding: 20px 20px 30px;
  margin-bottom: 50px;
  background-color: #fff;
  border: solid 1px;
  border-radius: 20px;
}

.flow__list-purchase-last {
  margin-bottom: 80px;
}

.flow__list-organize-last {
  margin-bottom: 0;
}

.flow__item-title {
  background-color: #ffd7d5;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  text-align: center;
}

.flow__list-item--lightgreen > .flow__item-title {
  background-color: #d1f0a9;
}

.flow__list-item--red {
  border-color: var(--color_red);
}

.flow__list-item--lightgreen {
  border-color: var(--color_green);
}

.flow__list-notes {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}

.flow__caution {
  font-size: 0.875rem;
  color: #545142;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .flow__caution {
    font-size: 0.7rem;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .flow {
    padding: 80px 40px 20px;
  }
  .flow__title {
    padding-bottom: 40px;
    font-size: 2rem;
  }
  .flow__title-sub {
    font-size: 1rem;
  }
  .flow__sub-title {
    padding: 5px 0;
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
  .flow__list {
    padding-bottom: 10px;
  }
  .flow__list-icon--red::after, .flow__list-icon--lightgreen::after {
    display: block;
    width: 2px;
    height: calc(100% - 94px);
    margin: 7px auto;
    background-size: 100% auto;
    background-repeat: no-repeat repeat;
  }
  .flow__list-right-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 10px 0;
  }
  .flow__title {
    padding-bottom: 40px;
    font-size: 1.6rem;
  }
  .flow__title-sub {
    font-size: 0.9rem;
  }
  .flow__sub-title {
    padding: 5px 0;
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 0.3rem;
  }
  .flow__list {
    padding-bottom: 0;
    grid-template-columns: 50px auto;
    column-gap: 15px;
  }
  .flow__list-icon--red::after, .flow__list-icon--lightgreen::after {
    width: 1px;
    height: calc(100% - 65px);
  }
  .flow__list-right-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  .flow__list-right-item:last-child {
    margin-bottom: 30px;
  }
  .flow__item-title {
    padding: 0;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .flow__list-text {
    font-size: 0.85rem;
  }
}
.about {
  text-align: center;
  padding: 100px 0;
}

.about__title {
  padding-bottom: 70px;
  font-size: 3rem;
  font-weight: bold;
}

.about__title-sub {
  width: fit-content;
  padding: 0 25px;
  margin: 0 auto 10px;
  border-radius: 25px;
  background-color: var(--color_red);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.about__tab-wrap {
  display: flex;
  align-items: flex-end;
  column-gap: 30px;
}

.about__tab {
  width: 100%;
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  cursor: pointer;
}

.about__tab-active {
  padding: 20px 0;
}

.about__body {
  display: none;
  padding: 30px;
  border-radius: 0 0 10px 10px;
}

.about__body-active {
  display: block;
}

.about__body-inner {
  padding-bottom: 50px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.about__purchase-body-title {
  padding: 90px 280px 120px 30px;
  background: url(../image/about_japan.webp) 95% 0/auto 110% no-repeat;
}

.about__body :where(.about__purchase-title--text, .about__organize-title--text) {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}

.about__purchase-title--text {
  color: var(--color_red);
  border-bottom: solid 2px var(--color_red);
}

.about__purchase-money {
  padding: 40px 30px 50px;
  background-color: #fff9db;
}

.about__body-sub-title {
  width: 400px;
  padding: 5px 0;
  margin: 0 auto 50px;
  background-color: var(--color_pastel-red);
  border-radius: 30px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.about__purchase-money--wrap {
  display: flex;
  padding: 0 4vw;
  justify-content: space-around;
}

.about__purchase-money-item {
  display: grid;
  width: 180px;
  height: 180px;
  background-color: var(--color_yellow);
  border-radius: 90px;
  font-size: 1.75rem;
  line-height: 1.15;
  align-content: center;
  justify-items: center;
  position: relative;
}

.about__purchase-money-item::before {
  content: "";
  display: block;
  width: 75px;
  height: 60px;
  background: url(../image/about_point.svg) 0 0/contain no-repeat;
  position: absolute;
  top: -25px;
  left: -20px;
}

.about__purchase-money-item--large {
  font-size: 4rem;
  font-weight: bold;
  color: var(--color_red);
}

.about__purchase-money-item--medium {
  font-size: 2.5rem;
}

.about__purchase-money-item--small {
  font-size: 1.5rem;
}

.about__purchase-catch {
  display: flex;
  width: 100%;
  height: 530px;
  background: url(../image/about_catch.webp) center top/cover no-repeat;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  align-items: flex-end;
  justify-content: center;
}

.about__purchase-catch--large {
  font-size: 2.5rem;
  color: var(--color_red);
}

.about__purchase-catch-text {
  padding: 15px;
  margin: 60px 30px 30px;
  background-color: var(--color_pink);
  border-radius: 10px;
  font-size: 1.5rem;
}

.about__purchase-item {
  display: grid;
  padding: 30px 30px 40px;
  margin: 80px 30px 0;
  row-gap: 30px;
  border-radius: 20px;
}

.about__purchase-item-title {
  width: fit-content;
  margin: 0 auto;
  border-bottom: solid 3px var(--color_red);
  font-size: 2rem;
  font-weight: bold;
  color: var(--color_red);
}

.about__purchase-item-icon {
  width: 100%;
}

.about__etc-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 30px;
}

.about__etc-list > li {
  display: grid;
  width: 119px;
  padding: 13px 5px;
  margin: 0 2.5% 2.5% 0;
  row-gap: 5px;
  align-items: center;
  border-radius: 15px;
  border: 2px solid var(--color_pastel-red);
  background-color: #fff;
  font-size: 0.9rem;
}

.about__etc-list-name {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  text-decoration: underline;
}

.about__etc-list-name::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  background-color: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="white" d="M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm6.1 10.9-5.2 5.2c-.5.4-1.2.4-1.7 0-.5-.5-.6-1.3-.1-1.8l3-3H4.8c-.7 0-1.2-.6-1.3-1.3 0-.7.5-1.3 1.3-1.3H12l-3-3v-.1c-.5-.5-.4-1.3.1-1.8s1.4-.4 1.8.1l5.2 5.2c.5.5.5 1.3 0 1.8z"/></svg>') no-repeat center/contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="white" d="M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm6.1 10.9-5.2 5.2c-.5.4-1.2.4-1.7 0-.5-.5-.6-1.3-.1-1.8l3-3H4.8c-.7 0-1.2-.6-1.3-1.3 0-.7.5-1.3 1.3-1.3H12l-3-3v-.1c-.5-.5-.4-1.3.1-1.8s1.4-.4 1.8.1l5.2 5.2c.5.5.5 1.3 0 1.8z"/></svg>') no-repeat center/contain;
}

.about__etc-list > li:nth-child(6n) {
  margin-right: 0;
}

.about__etc-list-icon {
  width: 60px;
  height: auto;
  max-height: 64px;
  margin: 0 auto;
  color: var(--color_pastel-red);
}

.about__etc-list-icon path {
  fill: var(--color_pastel-red);
}

.about__purchase-other-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 10px;
}

.about__purchase-other-item {
  text-align: left;
}

.about__organize-body-title {
  padding: 50px 250px 50px 30px;
  background: url(../image/about_organize.webp) center 0/auto 100% no-repeat;
  font-weight: bold;
  color: var(--color_green);
}

.about__organize-title--text {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--color_green);
}

.about__organize-point {
  padding: 40px 30px 50px;
  background-color: #fff9db;
  font-weight: bold;
  font-size: 1.25rem;
}

.about__organize-point--large {
  font-size: 1.5rem;
}

.about__organize-point--wrap {
  display: flex;
  padding: 25px 0;
  column-gap: 30px;
}

.about__organize-point--wrap > span {
  width: 100%;
  padding: 5px 0;
  background-color: var(--color_lightgreen);
  color: #fff;
  font-size: 1.5rem;
}

.about__organize-catch--wrap {
  display: grid;
  padding: 40px 0 30px;
  grid-template-columns: auto clamp(127px, 40vw, 390px);
}

.about__organize-catch {
  height: fit-content;
  padding-bottom: 10px;
  margin: auto 5px;
  border-bottom: 2px solid var(--color_green);
  font-size: 2rem;
  font-weight: bold;
}

.about__organize-lead {
  padding: 0 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.about__organize-lead--large {
  font-size: 2rem;
  color: var(--color_red);
}

.about__organize-text {
  padding: 15px;
  margin: 60px 30px 0;
  background-color: #e4f1d3;
  border-radius: 10px;
  font-size: 1.25rem;
}

.about__organize-text--large {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .about__title {
    padding-bottom: 40px;
    font-size: 2rem;
  }
  .about__title-sub {
    font-size: 1.5rem;
  }
  .about__tab-wrap {
    padding: 0 40px;
  }
  .about__tab {
    padding: 7px 0;
    font-size: 1.5rem;
  }
  .about__tab-active {
    padding: 15px 0;
  }
  .about__body {
    padding: 30px 40px;
    border-radius: 0;
  }
  .about__body-active {
    display: block;
  }
  .about__body-inner {
    padding-bottom: 30px;
  }
  .about__purchase-money--wrap {
    padding: 0 3vw;
  }
  .about__purchase-money-item {
    width: 150px;
    height: 150px;
    font-size: 1.5rem;
  }
  .about__purchase-money-item--large {
    font-size: 3rem;
  }
  .about__purchase-money-item--medium {
    font-size: 2rem;
  }
  .about__purchase-money-item--small {
    font-size: 1.25rem;
  }
  .about__purchase-catch {
    height: 480px;
  }
  .about__purchase-catch-text {
    margin: 60px 30px;
    font-size: 1.25rem;
  }
  .about__purchase-item {
    margin: 50px 30px 0;
  }
  .about__purchase-item-title {
    font-size: 1.5rem;
  }
  .about__etc-list {
    width: 569px;
    margin: 30px auto 0;
  }
  .about__etc-list > li {
    margin: 0 30px 3vw 0;
  }
  .about__etc-list > li:nth-child(6n) {
    margin: 0 auto 3vw 0;
  }
  .about__etc-list > li:nth-child(4n) {
    margin-right: 0;
  }
  .about__etc-list-icon {
    width: 60px;
  }
  .about__purchase-other-item-title {
    font-size: 1.25rem;
  }
  .about__organize-catch--wrap {
    padding: 40px 0;
  }
  .about__organize-catch {
    font-size: 1.5rem;
  }
  .about__organize-lead {
    font-size: 1.5rem;
  }
  .about__organize-lead--large {
    font-size: 1.75rem;
  }
  .about__organize-text {
    margin: 40px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
  .about__title {
    padding-bottom: 30px;
    font-size: 1.6rem;
  }
  .about__title-sub {
    font-size: 0.9rem;
  }
  .about__tab-wrap {
    column-gap: 20px;
    padding: 0 20px;
  }
  .about__tab {
    padding: 7px 0 2px;
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
  .about__tab-active {
    padding: 12px 0 7px;
  }
  .about__body {
    padding: 20px 15px;
  }
  .about__body-inner {
    padding-bottom: 0;
    font-size: 0.85rem;
  }
  .about__purchase-body-title {
    padding: 70px 25% 70px 15px;
  }
  .about__body :where(.about__purchase-title--text, .about__organize-title--text) {
    font-size: 1.25rem;
  }
  .about__purchase-title--text {
    border-bottom: solid 1px var(--color_red);
  }
  .about__purchase-money {
    padding: 50px 10px 30px;
    position: relative;
  }
  .about__body-sub-title {
    width: calc(100% - 60px);
    margin: 0 30px 50px;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
  }
  .about__purchase-money--wrap {
    padding: 1vw 0;
    column-gap: 10px;
  }
  .about__purchase-money-item {
    width: 15vw;
    min-width: 80px;
    height: 15vw;
    min-height: 80px;
    font-size: max(3vw, 0.9rem);
    line-height: 1.2;
  }
  .about__purchase-money-item:last-child {
    line-height: 1.3;
  }
  .about__purchase-money-item::before {
    width: 36px;
    height: 31px;
    top: -13px;
    left: -10px;
  }
  .about__purchase-money-item--large {
    font-size: 1.5rem;
  }
  .about__purchase-money-item--medium {
    font-size: 0.9rem;
  }
  .about__purchase-money-item--small {
    font-size: max(2.1vw, 0.7rem);
  }
  .about__purchase-catch {
    height: max(54vw, 220px);
    font-size: 1rem;
  }
  .about__purchase-catch--large {
    font-size: 1.25rem;
  }
  .about__purchase-catch-text {
    margin: 25px 15px 25px;
    font-size: 0.9rem;
  }
  .about__purchase-item {
    padding: 30px 20px;
    margin: 35px 0 0;
    border-radius: 0;
  }
  .about__purchase-item-title {
    font-size: 1.25rem;
  }
  .about__etc-list {
    width: 500px;
  }
  .about__etc-list > li {
    width: 110px;
    padding: 8px 5px;
    margin: 0 20px 20px 0;
    row-gap: 0;
    font-size: 0.75rem;
  }
  .about__etc-list > li:nth-child(5n) {
    margin: 0 20px 20px 0;
  }
  .about__etc-list > li:nth-child(4n) {
    margin-right: 0;
  }
  .icon {
    width: 60px;
  }
  .about__purchase-other-item-title {
    font-size: 1rem;
  }
  .about__organize-body-inner {
    padding-bottom: 30px;
  }
  .about__organize-body-title {
    padding: 40px 100px 35px 15px;
    background: url(../image/about_organize.webp) right bottom/auto 90% no-repeat;
    font-size: 0.65rem;
  }
  .about__organize-point {
    padding: 30px 15px;
    font-size: 0.9rem;
  }
  .about__organize-point--large {
    font-size: 1.25rem;
  }
  .about__organize-point--wrap {
    padding: 15px 0;
    column-gap: 10px;
  }
  .about__organize-point--wrap > span {
    font-size: 0.85rem;
  }
  .about__organize-catch--wrap {
    grid-template-columns: auto max(127px, 33vw);
  }
  .about__organize-catch {
    border-bottom: 1px solid var(--color_green);
    font-size: max(3vw, 0.85rem);
  }
  .about__organize-lead {
    font-size: 1rem;
  }
  .about__organize-lead--large {
    font-size: 1.25rem;
  }
  .about__organize-text {
    margin: 30px 15px 0;
    font-size: 0.9rem;
  }
  .about__organize-text--large {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 590px) {
  .about__etc-list {
    width: 90%;
    max-width: 430px;
    margin: 30px auto 0;
  }
  .about__etc-list > li {
    display: grid;
    grid-template-rows: auto;
    width: 30%;
    margin: 0 auto 5vw 0;
    font-size: 0.75rem;
    align-items: center;
  }
  .about__etc-list > li:nth-child(4n) {
    margin: 0 auto 5vw 0;
  }
  .about__etc-list > li:nth-child(5n) {
    margin: 0 auto 5vw 0;
  }
  .about__etc-list > li:nth-child(6n) {
    margin: 0 auto 5vw 0;
  }
  .about__etc-list > li:nth-child(3n) {
    margin-right: 0;
  }
  .about__etc-list-icon {
    width: 10vw;
  }
  .about__etc-list > li > p {
    padding-top: 0;
  }
}
@media screen and (max-width: 400px) {
  .about__purchase-body-title {
    background-position: right center;
    background-size: auto 90%;
    padding: 70px 5%;
  }
  .about__etc-list {
    width: 100%;
    margin-top: 30px;
  }
  .about__etc-list > li {
    grid-template-rows: min-content 10vw;
  }
  .about__organize-body-title {
    padding: 40px 5%;
    background-size: auto 55%;
  }
}
@media screen and (max-width: 370px) {
  .about__purchase-money--wrap {
    display: grid;
    row-gap: 15px;
  }
  .about__organize-catch > br {
    display: none;
  }
}
.trouble__body {
  padding: 50px;
  margin: 100px auto 0;
  row-gap: 70px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}

.trouble__title {
  padding-bottom: 70px;
  font-size: 3rem;
  font-weight: bold;
}

.trouble__item {
  display: grid;
  padding: 50px;
  grid-template-columns: 30px auto;
  gap: 40px 15px;
  border: solid 15px var(--color_yellow);
  font-weight: bold;
  font-size: 1.5rem;
  text-align: left;
  align-items: center;
}

.trouble__item--large {
  font-size: 2rem;
  color: var(--color_red);
}

.trouble__arrow {
  width: 78px;
  height: auto;
  padding: 50px 0;
  margin: 0 auto;
}

.trouble__body-text--large {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color_red);
}

.trouble__footer {
  padding: 30px 40px;
  margin-top: 70px;
  border-radius: 10px;
}

.trouble__footer-inner--wrap {
  display: grid;
  grid-template-columns: auto min-content;
  grid-template-rows: auto auto;
  row-gap: 27px;
  grid-template-areas: "text img" "lead lead";
}

.trouble__footer-inner-text {
  padding: 0 20px;
  grid-area: text;
  line-height: 2.5;
}

.trouble__footer-inner-img {
  grid-area: img;
  width: 140px;
  height: auto;
}

.trouble__footer-text--large {
  grid-area: lead;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color_red);
}

.trouble__footer-inner-text--large {
  font-size: 1.25rem;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .trouble__body {
    margin: 80px 40px 0;
  }
  .trouble__title {
    padding-bottom: 40px;
    font-size: 2rem;
  }
  .trouble__item {
    align-items: start;
  }
  .trouble__arrow {
    padding: 30px 0;
  }
  .trouble__body-text--large {
    font-size: 2rem;
  }
  .trouble__footer {
    padding: 30px;
    margin-top: 50px;
  }
  .trouble__footer-inner--wrap {
    grid-template-columns: auto min-content;
    row-gap: 15px;
    grid-template-areas: "text text" "lead img";
  }
  .trouble__footer-inner-text {
    padding: 0;
    line-height: 1.5;
  }
  .trouble__footer-inner-img {
    margin: 0 2vw;
  }
  .trouble__footer-text--large {
    display: grid;
    font-size: 1.75rem;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .trouble__body {
    padding: 30px 20px 50px;
    margin: 80px 0 0;
    border-radius: 0;
  }
  .trouble__title {
    padding-bottom: 30px;
    font-size: 1.25rem;
  }
  .trouble__item {
    width: min(100%, 400px);
    padding: 20px;
    margin: 0 auto;
    grid-template-columns: 16px auto;
    gap: 20px 10px;
    border: solid 10px var(--color_yellow);
    font-size: 0.9rem;
  }
  .trouble__item--large {
    font-size: 1.25rem;
  }
  .trouble__arrow {
    width: 50px;
    padding: 20px 0;
  }
  .trouble__body-text--large {
    font-size: 1.5rem;
  }
  .trouble__footer {
    width: min(100%, 600px);
    margin: 0 auto;
    padding: 15px;
    margin-top: 30px;
  }
  .trouble__footer-inner--wrap {
    grid-template-columns: auto min-content;
    row-gap: 10px;
    grid-template-areas: "text text" "lead img";
  }
  .trouble__footer-inner-text {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.8;
  }
  .trouble__footer-inner-img {
    width: 110px;
    margin: 0 max(5vw, 10px);
  }
  .trouble__footer-text--large {
    padding: 0 10px;
    font-size: max(3.5vw, 1rem);
    align-items: center;
    justify-content: center;
  }
  .trouble__footer-inner-text--large {
    font-size: 1rem;
  }
}
@media screen and (max-width: 455px) {
  .trouble__footer-inner-img {
    margin: auto 0;
  }
  .trouble__footer-text--large > br {
    display: none;
  }
}