@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-size: 1.6rem;
  font-family: "M PLUS 1p", "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  color: #333333;
  background-color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

li {
  list-style: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__inner {
  padding: 0 2.4rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 1.2rem;
  }
}

.header__upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0 1.6rem;
}
@media (max-width: 1024px) {
  .header__upper {
    padding: 1.2rem 0;
  }
}

.header__logo img {
  width: 245px;
  height: auto;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__logo img {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    width: 150px;
  }
}

@media (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}

.header-gnav {
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .header-gnav {
    display: none;
  }
}

.header-gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0 0.8rem;
}

.header-gnav__item {
  position: relative;
  padding: 0 clamp(0.8rem, 2vw, 2.7rem);
}

.header-gnav__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #333333;
}

.header-gnav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.3s ease;
}

.header-gnav__link:hover {
  transform: scale(1.08);
}

.header-gnav__link img {
  width: clamp(3.4rem, 2.73vw, 4rem);
  height: auto;
}

.header-gnav__link span {
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
}

.header__menu-button {
  display: none;
}

@media (max-width: 1024px) {
  .header__menu-button {
    position: fixed;
    top: 2.4rem;
    right: 2.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 30px;
    height: 26px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .header__menu-button {
    top: 1.8rem;
    right: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .header__menu-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0CC0DF;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .header__menu-button.is-active {
    z-index: 2000;
  }
  .header__menu-button.is-active .header__menu-icon:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header__menu-button.is-active .header__menu-icon:nth-child(2) {
    opacity: 0;
  }
  .header__menu-button.is-active .header__menu-icon:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
.footer__inner {
  padding: 4rem 0 0;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 3rem 0 0;
  }
}

.footer__content-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 10rem;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__content-wrap {
    width: 100%;
    padding: 0 2rem;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .footer__content-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.footer__shop-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__shop-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
@media (max-width: 768px) {
  .footer__shop-tel {
    display: none;
  }
}

.footer__telephone {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer__telephone > img {
  width: 42px;
  height: auto;
  transform: translateY(-4px);
}

.footer__tel-number {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: #0CC0DF;
}

.footer__logo {
  display: flex;
  height: 106px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer__logo {
    margin: 0 auto;
    height: auto;
    width: 100%;
  }
}

.footer__logo-link img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer__logo-link img {
    width: 100%;
  }
}

.footer__legal {
  margin-top: 0.8rem;
  font-size: 1rem;
}

.footer-under {
  margin-top: 4rem;
  padding: 4rem 1.2rem;
  background-color: #DCEEF2;
}
@media (max-width: 1024px) {
  .footer-under {
    margin-top: 2.4rem;
    padding: 2rem 0 0;
  }
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin-top: 2.4rem;
}
@media (max-width: 1024px) {
  .footer-nav__list {
    display: none;
  }
}

.footer-nav__item {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-nav__item:not(:first-child)::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -2.2rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.footer-nav__item--sub {
  font-weight: 400;
}

.footer-nav__item--sub::before {
  content: none !important;
}

.footer__copyright {
  margin-top: 1.6rem;
  font-size: 1.2rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer__copyright {
    font-size: 1.4rem;
    margin-top: 0;
	padding-bottom: 1.2rem
  }
}

.sp-menu {
  display: none;
}
@media (max-width: 1024px) {
  .sp-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #DCEEF2;
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
    z-index: 1001;
  }
}

@media (max-width: 1024px) {
  .sp-menu.panel-open {
    transform: translateX(0);
    opacity: 1;
  }
}

.sp-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  margin: 0 auto;
  padding: 2.4rem 1.2rem;
}

.sp-menu__shop-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.sp-menu__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-top: 6rem;
  width: 80%;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .sp-menu__btn-wrap {
    width: 100%;
  }
}

.sp-menu__contact {
  width: 100%;
  max-width: 460px;
}

.sp-menu__contact-link.c-cta-btn__link {
  display: inline-block;
  width: 100%;
  height: 6rem;
}

.sp-menu .sp-menu__contact-tag {
  padding: 0.2rem 0.8rem;
}

.sp-menu__contact-tag > img {
  width: 2.4rem;
}

.sp-menu__contact-link.c-cta-btn--line {
  width: 100%;
}

.sp-menu__telephone {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.sp-menu__telephone > img {
  width: 42px;
  height: auto;
  transform: translateY(-4px);
}

.sp-menu__tel-number {
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 10vw, 4rem);
  line-height: 1;
  color: #0CC0DF;
}

.sp-menu-gnav {
  width: 100%;
  margin: 4rem auto 0;
}

.sp-menu-gnav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.6rem;
  justify-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0 0.8rem;
}
@media (max-width: 360px) {
  .sp-menu-gnav__list {
    grid-gap: 0;
  }
}

.sp-menu-gnav__item {
  min-width: 160px;
}

.sp-menu-gnav__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.sp-menu-gnav__link img {
  width: 4rem;
  height: auto;
}

.sp-menu-gnav__link span {
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  font-size: 1.6rem;
}
@media (max-width: 360px) {
  .sp-menu-gnav__link span {
    font-size: 1.4rem;
  }
}

.sp-menu-gnav__list--sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.sp-menu-gnav__link,
.sp-menu-gnav__link--sub {
  font-size: 1.4rem;
}

/* iphoneSE 対応 */
@media (max-width: 500px) {
  .sp-menu__btn-wrap {
    margin-top: 0;
    gap: 2rem;
  }
  .sp-menu__contact .c-cta-btn__body {
    font-size: 1.8rem;
  }
  .sp-menu__contact-link.c-cta-btn__link {
    transform: scale(0.8);
  }
  .sp-menu__text {
    font-size: 1.3rem;
  }
  .sp-menu__telephone > img {
    width: 32px;
  }
  .sp-menu__shop-tel {
    gap: 0.8rem;
    margin-top: 1.4rem;
  }
  .sp-menu-gnav {
    margin-top: 1.4rem;
  }
  .sp-menu-gnav__list--sub {
    margin-top: 0;
  }
  .header__menu-button {
    top: 1.8rem;
    right: 1rem;
  }
}

.bottom-cta {
  display: none;
}
@media (max-width: 768px)  {
  .bottom-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0.4s;
    z-index: 1000;
  }
  .bottom-cta.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .bottom-cta__button-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
  }
  .bottom-cta__button-item {
    width: 100%;
  }
}

.c-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10rem 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-section-inner {
    padding: 10rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .c-section-inner {
    padding: 4rem 1.2rem;
  }
}

.c-section-heading {
  text-align: center;
}

.c-section-heading__title {
  width: 100%;
  margin: 0 auto;
}

.c-section-heading__title img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 49px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .c-section-heading__title img {
    max-height: 40px;
  }
}

.c-section-heading__lead {
  margin-top: 1.6rem;
  font-family: "M PLUS 1p";
  font-size: 2.4rem;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-section-heading__lead {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .c-section-heading__lead {
    font-size: 1.6rem;
  }
}

.c-cta-box {
  padding: 4rem;
  background: linear-gradient(135deg, #FCD1FF 24%, #C2F7FF 80%);
}
@media (max-width: 768px) {
  .c-cta-box {
    padding: 1.2rem;
  }
}

.c-cta-box--only-sp {
  display: none;
}
@media (max-width: 768px) {
  .c-cta-box--only-sp {
    display: block;
  }
}

.c-cta-box--only-pc {
  display: block;
}
@media (max-width: 768px) {
  .c-cta-box--only-pc {
    display: none;
  }
}

.c-cta-box__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .c-cta-box__inner {
    padding: 1.2rem;
  }
}

.c-cta-box__content {
  padding: 8px;
  background: linear-gradient(135deg, #FCD1FF 24%, #C2F7FF 80%);
}
@media (max-width: 768px) {
  .c-cta-box__content {
    padding: 6px;
  }
}

.c-cta-box__content-inner {
  background-color: #fff;
  padding: 4.6rem;
}
@media (max-width: 1024px) {
  .c-cta-box__content-inner {
    padding: 1.6rem 0;
  }
}

.c-cta-box__intro {
  margin-top: 8px;
  font-family: "M PLUS 1p";
  font-size: 2.8rem;
  text-align: center;
}

.c-cta-box__pop {
  font-weight: 700;
  color: #B572FA;
}
@media (max-width: 1024px) {
  .c-cta-box__pop {
    font-size: 2rem;
  }
}

.c-cta-box__lead {
  color: #0CC0DF;
}
@media (max-width: 1024px) {
  .c-cta-box__lead {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.c-cta-box__lead--emphasis {
  font-weight: 700;
}

.c-cta-box__lead--primary {
  position: relative;
}

.c-cta-box__lead--primary::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 5px;
  background-color: #E8B931;
}

.c-cta-box__lead--price {
  font-size: 4rem;
}
@media (max-width: 1024px) {
  .c-cta-box__lead--price {
    font-size: 2.4rem;
  }
}

.c-cta-box__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}
@media (min-width: 600px) and (max-width: 1023px) {
  .c-cta-box__actions {
    flex-direction: row;
    padding: 0 0.8rem;
  }
}
@media (max-width: 599px) {
  .c-cta-box__actions {
    flex-direction: column;
    padding: 0 1.2rem;
  }
}

.c-cta-box__note-list {
  margin: 1.6rem auto 0;
  width: fit-content;
  font-family: "M PLUS 1p";
  font-size: 1.4rem;
  text-indent: -2.2em;
  padding-left: 2em;
}
@media (max-width: 1024px) {
  .c-cta-box__note-list {
    text-indent: -1.6em;
    padding-left: 2.4em;
    font-size: 1.2rem;
  }
}

.c-cta-btn__link {
  position: relative;
  display: inline-block;
  padding: 1.2rem 3.2rem 0.6rem 3.2rem;
  background: linear-gradient(90deg, #FCD1FF 24%, #C2F7FF 80%);
  color: #0CC0DF;
  border: 3px solid #0CC0DF;
  border-radius: 9999px;
  box-shadow: 0.5px 0.5px 1px 0px #037184;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.c-cta-btn__link:hover {
  color: #fff;
  background: #0CC0DF;
  transform: translateY(4px);
  box-sizing: none;
}

.c-cta-btn__tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 0.8rem;
  font-weight: 700;
  color: #0CC0DF;
  background-color: #fff;
  border: 3px solid #0CC0DF;
  border-radius: 9999px;
  white-space: nowrap;
  min-width: max-content;
}

.c-cta-btn__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(2.2rem, 6.8vw, 2.4rem);
  font-weight: 700;
}

.c-cta-btn__arrow {
  font-size: 2rem;
}

@media (max-width: 1024px) {
  .c-cta-btn--c-cta-box {
    width: 100%;
    max-width: 320px;
  }
}
.c-cta-btn--c-cta-box .c-cta-btn__link {
  display: inline-block;
  padding: 3rem 4.2rem 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 1024px) {
  .c-cta-btn--c-cta-box .c-cta-btn__link {
    width: 100%;
    margin: 0 auto;
    padding: 1.4rem 2rem 1.2rem;
  }
}
.c-cta-btn--c-cta-box .c-cta-btn__tag {
  padding: 0 2.4rem;
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .c-cta-btn--c-cta-box .c-cta-btn__tag {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .c-cta-btn--c-cta-box .c-cta-btn__icon--line {
    display: inline-block;
    width: 2.4rem !important;
    height: auto;
  }
}
.c-cta-btn--c-cta-box .c-cta-btn__body {
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
  line-height: 1;
}
@media (max-width: 1024px) {
  .c-cta-btn--c-cta-box .c-cta-btn__body {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }
}
.c-cta-btn--c-cta-box .c-cta-btn__arrow {
  font-size: 2.4rem;
}

.c-cta-btn--line .c-cta-btn__link {
  padding: 2rem 4.2rem 1rem;
  background: #4CC764;
  border-color: #4cc764;
}
@media (max-width: 1024px) {
  .c-cta-btn--line .c-cta-btn__link {
    padding: 1.2rem 2rem 0.2rem;
  }
}
.c-cta-btn--line .c-cta-btn__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  height: 4.2rem;
  padding: 0.4rem 2.4rem;
  color: #4CC764;
  background-color: #fff;
  border-color: #4CC764;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 1024px) {
  .c-cta-btn--line .c-cta-btn__tag {
    padding: 0.2rem 0.8rem;
    height: auto;
  }
}
.c-cta-btn--line .c-cta-box__contact-tag > img {
  width: 3rem;
  height: auto;
}
@media (max-width: 1024px) {
  .c-cta-btn--line .c-cta-box__contact-tag > img {
    width: 2rem;
  }
}
.c-cta-btn--line .c-cta-btn__body {
  color: #fff;
}
.c-cta-btn--line .cta-btn-percentage {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
}
@media (max-width: 768px) {
  .c-cta-btn--line .cta-btn-percentage {
    font-size: 1.8rem;
  }
}
.c-cta-btn--line .cta-btn-number {
  font-size: clamp(2.4rem, 4.2vw, 5.6rem);
}
@media (max-width: 1024px) {
  .c-cta-btn--line .cta-btn-number {
    font-size: 3.6rem;
    line-height: 1.2;
  }
}

.c-cta-btn--line:hover .c-cta-btn__link {
  background-color: #fff;
}
.c-cta-btn--line:hover .c-cta-btn__body {
  color: #4CC764;
}
.c-cta-btn--line:hover .c-cta-btn__tag {
  color: #fff;
  background-color: #4cc764;
}

.c-btn {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .c-btn {
    margin-top: 2rem;
  }
}

.c-btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 2rem 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0CC0DF;
  background-color: #fff;
  border: 3px solid #0CC0DF;
  border-radius: 9999px;
  box-shadow: 2px 2px 4.1px 0px #6FC2D0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .c-btn__link {
    width: 100%;
    max-width: 36rem;
    padding: 1.2rem;
    font-size: 2.2rem;
  }
}

.c-btn__link:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.c-btn__arrow {
  font-size: 2rem;
}

.c-gradient-border {
  position: relative;
  background: #fff;
  border-radius: 20px;
  z-index: 0;
}
.c-gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  background: linear-gradient(180deg, #B572FA, #0CC0DF);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  mask-composite: exclude;
  z-index: -1;
}

#howto, #reason, #voice, #faq {
  scroll-margin-top: 146px;
}
@media (max-width: 768px) {
  #howto, #reason, #voice, #faq {
    scroll-margin-top: 60px;
  }
}

#targetGroup, #targetItem {
  scroll-margin-top: 200px;
}
@media (max-width: 768px) {
  #targetGroup, #targetItem {
    scroll-margin-top: 90px;
  }
}

.fv {
  overflow: hidden;
  background-image: url("../img/fv-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
@media (max-width: 1024px) {
  .fv {
    background-image: none;
    background: linear-gradient(135deg, #FCD1FF 24%, #C2F7FF 80%);
  }
}

.fv__inner {
  padding: 8.2rem 0 6.6rem;
}
@media (max-width: 1024px) {
  .fv__inner {
    padding: 13.7rem 1.2rem;
  }
}

.fv__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15rem;
}
@media (max-width: 1024px) {
  .fv__content {
    padding-top: 0;
  }
}

.fv__badge {
  width: 509px;
}
@media (max-width: 1024px) {
  .fv__badge {
    width: 85%;
    max-width: 600px;
  }
}

.fv__subcatch {
  margin-top: 1.4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #0CC0DF;
}
@media (max-width: 1024px) {
  .fv__subcatch {
    font-size: clamp(1.2rem, 3.4vw, 2.2rem);
  }
}

.fv__catch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__catch-sub {
  margin-top: 0.8rem;
  width: 612px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fv__catch-sub {
    width: 90%;
    max-width: 680px;
  }
}

.fv__catch-main {
  margin-top: 0.4rem;
  width: 654px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fv__catch-main {
    width: 90%;
    max-width: 680px;
  }
}

.fv__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.8rem;
  font-size: 2rem;
  font-weight: 700;
}

.fv__message-line {
  color: rgba(51, 51, 51, 0.8117647059);
}
@media (max-width: 1024px) {
  .fv__message-line {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
  }
}

.fv__message-highlight {
  position: relative;
  color: #B572FA;
}
@media (max-width: 1024px) {
  .fv__message-highlight {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
  }
}

.fv__message-highlight::before,
.fv__message-highlight::after {
  content: "";
  position: absolute;
  top: -0.3rem;
  display: inline-block;
  width: 2px;
  height: 30px;
  background-color: #B572FA;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fv__message-highlight::before,
  .fv__message-highlight::after {
    top: 0.5rem;
    width: 1px;
    height: 20px;
  }
}

.fv__message-highlight::before {
  left: -2.6rem;
  transform: rotate(-20deg);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fv__message-highlight::before {
    left: -0.6rem;
  }
}

.fv__message-highlight::after {
  right: -2.6rem;
  transform: rotate(20deg);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fv__message-highlight::after {
    right: -0.6rem;
  }
}

.fv__image-md {
  display: none;
}
@media (max-width: 1024px) {
  .fv__image-md {
    width: 90%;
    height: auto;
    display: block;
    max-width: 800px;
  }
}

.fv__cta {
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .fv__cta {
    width: 100%;
    padding: 0 1.2rem;
  }
}

.fv__cta-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.8rem 9.2rem;
  color: #B572FA;
  background-color: #FCE6FE;
  border-radius: 9999px;
  border: 2px solid #B572FA;
  box-shadow: 1px 1px 0 #9CA2FF;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  .fv__cta-button {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
  }
}

.fv__cta-button:hover {
  color: #FFF4FC;
  background-color: #B572FA;
  transform: translateY(4px);
  box-shadow: none;
}

.fv__cta-button-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .fv__cta-button-text {
    font-size: 1.8rem;
  }
}

.fv__cta-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  padding-left: 0.2rem;
  padding-bottom: 0.2rem;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #B572FA;
  border-radius: 50%;
  color: #B572FA;
}

.fv__note-list {
  max-width: 1004px;
  margin: 18px auto 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fv__note-list {
    max-width: 90%;
  }
}

.fv__note-item {
  font-family: "M PLUS Rounded 1c";
  font-size: 1.3rem;
}

.campaign__banner {
  display: block;
  width: 100%;
  margin-top: 6rem;
}
@media (max-width: 1024px) {
  .campaign__banner {
    margin-top: 2rem;
  }
}

.campaign__banner--first-banner {
  margin-top: 0;
}

.campaign__detail-btn {
  margin: 6rem 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .campaign__detail-btn {
    margin: 2rem 0;
  }
}

.campaign__detail-link {
  display: inline-block;
  padding: 16px 32px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #0CC0DF;
  border-radius: 9999px;
}
@media (max-width: 1024px) {
  .campaign__detail-link {
    width: 100%;
    max-width: 40rem;
    padding: 0.8rem;
    font-size: 2.2rem;
  }
}

.campaign__banner-note {
  display: block;
  margin-top: 8px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .campaign__banner-note {
    font-size: 1.4rem;
  }
}

.campaign__note-list {
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.5;
  text-indent: -2.2em;
  padding-left: 2em;
}
@media (max-width: 1024px) {
  .campaign__note-list {
    font-size: 1.4rem;
  }
}

.campaign__bonus-note-item {
  text-indent: -1em;
  padding-left: 1em;
}

.campaign__bonus-range {
  width: 50%;
}

/* キャンペーンボーナス表 */
.js-target-box--table-area {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.js-target-box--table-area.is-open {
  max-height: 1000px;
  opacity: 1;
}

.campaign__table-area {
  margin-top: 1.6rem;
}

.campaign__bonus-table {
  width: 100%;
  border-collapse: collapse;
}

.campaign__bonus-range,
.campaign__bonus-amount {
  padding: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
  color: #0CC0DF;
  border: 1px solid #ccc;
}
@media (max-width: 1024px) {
  .campaign__bonus-range,
  .campaign__bonus-amount {
    font-size: 2rem;
  }
}

.campaign__bonus-amount {
  background-color: #DCEEF2;
}

.campaign__bonus-note {
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .campaign__bonus-note {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.campaign__bonus-note-title {
  font-weight: 700;
}

.campaign__banner--clickable {
  border: 10px solid #0CC0DF;
  background-color: #F5FDFF;
}
.campaign__banner--clickable .campaign__banner-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  margin: 1.2rem;
  padding: 4rem 2rem;
  border: 2px solid #0CC0DF;
}
@media (max-width: 768px) {
  .campaign__banner--clickable .campaign__banner-wrap {
    flex-direction: column;
    gap: 4rem;
  }
}
.campaign__banner--clickable .campaign__banner-img-wrap {
  width: 80%;
  text-align: center;
}
.campaign__banner--clickable .campaign__banner-img {
  display: block;
  width: 100%;
  height: auto;
}
.campaign__banner--clickable .campaign__banner-img--10per {
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .campaign__banner--clickable .campaign__banner-img--10per {
    max-width: 400px;
  }
}
.campaign__banner--clickable .campaign__banner-link {
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.campaign__banner--clickable .campaign__banner-link:hover {
  opacity: 0.8;
  transform: translateY(4px);
}

@media (max-width: 768px) {
  .howto__title img {
    max-height: 72px;
  }
}

.howto__step-wrap {
  margin: 7.4rem auto 1.8rem;
}

.howto__step-list {
  display: flex;
  gap: 3.8rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .howto__step-list {
    gap: 1.6rem;
  }
}
@media (max-width: 768px) {
  .howto__step-list {
    flex-direction: column;
    justify-content: center;
    gap: 5.8rem;
  }
}

.howto__step-item {
  flex: 1;
  border: 2px solid #DCEEF2;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .howto__step-item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

.howto__step-heading {
  position: relative;
  padding: 4.8rem 3.8rem 1.6rem;
  text-align: center;
  color: #0CC0DF;
  background-color: #DCEEF2;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .howto__step-heading {
    padding: 2.4rem 0.8rem 1.6rem;
  }
}

.howto__step-number {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 600;
  color: #0CC0DF;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #DCEEF2;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .howto__step-number {
    top: -2.6rem;
    width: 5rem;
    height: 5rem;
    font-size: 3.2rem;
  }
}

.howto__step-title {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .howto__step-title {
    font-size: 2.2rem;
  }
}

.howto__step-body {
  max-height: 35.6rem;
  padding: 2.4rem 0 3rem;
}

.howto__step-image-wrap {
  text-align: center;
}

.howto__step-image {
  width: auto;
  height: 150px;
  margin: 0 auto;
}

.howto__step-description {
  margin-top: 2.4rem;
  padding: 1.6rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .howto__step-description {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .howto__step-description {
    margin-top: 2.4rem;
    text-align: center;
  }
}

.reason {
  background-color: #DCEEF2;
}

.reason__title img {
  max-height: 128px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .reason__title img {
    max-height: 96px;
  }
}
@media (max-width: 768px) {
  .reason__title img {
    max-height: 72px;
  }
}

.reason__list-wrap {
  margin-top: 4rem;
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.reason__item {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 6.4rem 4rem;
  background-color: #fff;
  border: 5px solid #0CC0DF;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .reason__item {
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.2rem;
  }
}

.reason__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .reason__item:nth-child(even) {
    flex-direction: column;
  }
}

.reason__image-area {
  width: 230px;
  height: 230px;
  flex-shrink: 0;
}

.reason__item-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #0CC0DF;
}
@media (max-width: 768px) {
  .reason__item-title {
    font-size: 2.4rem;
    text-align: center;
  }
}

.reason__title-highlight {
  display: inline-block;
  background: linear-gradient(transparent calc(100% - 9px), #ffeb91 calc(100% - 9px), #ffeb91 100%);
  padding-bottom: 4px;
}

.reason__item-description {
  margin-top: 1.6rem;
}

.service {
  background-color: #F2F0FF;
}

.service__title img {
  max-height: 128px;
}

.service__content {
  margin: 4rem 0 0;
  padding: 6rem 4rem;
  background-color: #fff;
  border: 5px solid #FFD0F3;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .service__content {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .service__content {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .service__content-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}

.service__content-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2rem 4rem;
}
@media (max-width: 1024px) {
  .service__content-item {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .service__content-item {
    flex-direction: column;
    gap: 1.6rem;
    padding: 0;
  }
}

.service__item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 230px;
  height: 230px;
  background-color: #FFF4FC;
  border-radius: 50%;
}

.service__item-image img {
  max-width: 130px;
  max-height: 130px;
  height: auto;
}

.service__item-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.44;
  color: #FF9FE7;
}
@media (max-width: 768px) {
  .service__item-title {
    font-size: 2.2rem;
    text-align: center;
  }
}

.service__item-description {
  margin-top: 0.8rem;
  text-align: justify;
}

.service__item-note {
  margin-top: 0.8rem;
  font-size: 1.4rem;
}

.service__item-note-item,
.service__item-note-text {
  padding-left: 1em;
  text-indent: -1em;
}

.service__content-item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service__content-item:nth-child(2n) {
    flex-direction: column;
  }
}
.service__content-item:nth-child(2n) .service__item-image {
  background-color: #F2F0FF;
}
.service__content-item:nth-child(2n) .service__item-title {
  color: #B572FA;
}

.compare__inner {
  padding-bottom: 0;
}

.compare__title img {
  max-height: 128px;
}
@media (max-width: 768px) {
  .compare__title img {
    max-height: 72px;
  }
}

.compare__table {
  margin: 8rem auto 0;
  text-align: center;
  font-family: "Noto Sans JP";
  border-collapse: collapse;
}
@media (max-width: 1024px) {
  .compare__table {
    margin: 4rem auto 0;
  }
}

.compare__brand {
  width: 230px;
  height: 70px;
  font-size: 2.4rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media (max-width: 1024px) {
  .compare__brand {
    width: auto;
    height: 48px;
    font-size: 1.6rem;
  }
}

.compare__brand--main {
  color: #fff;
  background-color: #0CC0DF;
}

.compare__brand--sub-a {
  background-color: #fff5cd;
}

.compare__brand--sub-b {
  background-color: #d3cefa;
}

.compare__table-area {
  width: 100%;
}
@media (max-width: 768px) {
  .compare__table-area {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.compare__table {
  width: 100%;
}
@media (max-width: 1024px) {
  .compare__table {
    min-width: 630px;
    width: 100%;
  }
}

.compare__table tbody th,
.compare__table tbody td {
  padding: 1.6rem 0;
  font-size: 1.8rem;
  border: 1px solid #bbb;
}
@media (max-width: 1024px) {
  .compare__table tbody th,
  .compare__table tbody td {
    min-width: 14.6rem;
    padding: 0.8rem;
    font-size: 1.4rem;
  }
}

.compare__table tbody th {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media (max-width: 1024px) {
  .compare__table tbody th {
    max-width: 16rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    font-size: 1.4rem;
  }
}

.compare__janipara {
  background-color: #DCEEF2;
}

.compare__td-primary {
  font-weight: 700;
  color: #ff3131;
}

@media (max-width: 1024px) {
  .compare__table .compare__note {
    font-size: 1.2rem;
  }
}

.compare__note-wrap {
  margin-top: 5.6rem;
}
@media (max-width: 1024px) {
  .compare__note-wrap {
    margin-top: 2.4rem;
  }
}

.compare__note-text {
  font-family: "Noto Sans JP";
  line-height: 1.2;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 1024px) {
  .compare__note-text {
    font-size: 1.2rem;
  }
}

.benefits__inner {
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 1.6rem 10rem;
}

.benefits__content-list {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding: 2.4rem 0;
  border: 5px solid #ECDAFF;
  border-radius: 20px;
  border-radius: 20px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits__content-list {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .benefits__content-list {
    flex-direction: column;
    gap: 4rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

.benefits__content-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.benefits__item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  background-color: #F2F0FF;
  border-radius: 50%;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits__item-image {
    width: 180px;
    height: 180px;
  }
}

.benefits__item-image img {
  max-width: 150px;
  max-height: 120px;
  height: auto;
}

.benefits__item-text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem;
  gap: 1rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits__item-text-area {
    padding: 1.6rem;
  }
}

.benefits__item-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #B572FA;
  text-align: center;
  min-height: 8.4rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .benefits__item-title {
    font-size: 2rem;
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .benefits__item-title {
    min-height: auto;
  }
}

.benefits__item-description {
  font-weight: 400;
  text-align: justify;
}

.target-item {
  background-color: #DCEEF2;
}

.target-item__lead {
  text-align: center;
}

.target-item__sub-title {
  margin-top: 4rem;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .target-item__sub-title {
    margin-top: 2rem;
    font-size: 2rem;
  }
}

.target-item__box {
  margin-top: 1rem;
  padding: 4rem;
  background-color: #fff;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .target-item__box {
    padding: 2rem 1.2rem;
  }
}

.target-item__box.is-open {
  max-height: 1000px;
  opacity: 1;
}

.target-item__box-title {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  color: #0CC0DF;
}
@media (max-width: 768px) {
  .target-item__box-title {
    font-size: 2.2rem;
  }
}

.target-item__box-content {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .target-item__box-content {
    margin-top: 2rem;
  }
}

.target-item__category-def-term {
  font-weight: 700;
}

.target-item__category-def-term:not(:first-child) {
  margin-top: 0.8rem;
}

.target-item__note {
  margin-top: 2.4rem;
}

.target-item__note-title {
  font-weight: 700;
}

.target-item__note-text {
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
}

.target-item__heading--item {
  margin-top: 10rem;
}

.target-item__box--item {
  margin-top: 4rem;
  padding: 4rem 2.2rem;
}
@media (max-width: 768px) {
  .target-item__box--item {
    margin-top: 2rem;
    padding: 2rem 0;
  }
}

.target-item__goods-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.2rem;
}
@media (max-width: 768px) {
  .target-item__goods-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

.target-item__goods-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
}
@media (max-width: 768px) {
  .target-item__goods-item {
    gap: 0.8rem;
    padding: 0.8rem;
  }
}

@media (max-width: 768px) {
  .target-item__goods-item img {
    width: 80%;
    max-width: 280px;
  }
}

.target-item__goods-label {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .target-item__goods-label {
    font-size: 1.5rem;
  }
}

.js-target-box--item {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.target-item__box--others {
  margin-top: 4rem;
  padding: 4rem;
  border: 3px solid #0CC0DF;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .target-item__box--others {
    margin-top: 2rem;
  }
}
.target-item__box--others .target-item__content {
  margin-top: 0;
}
.target-item__box--others .target-item__category-def-term:not(:first-child) {
  margin-top: 2.4rem;
}
.target-item__box--others .target-item__note {
  margin-top: 0;
}

.js-target-box--item.is-open {
  max-height: 1000px;
  opacity: 1;
}

.target-item__box--note.c-gradient-border::before {
  padding: 1px;
}

.target-item__box--note {
  margin-top: 4rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .target-item__box--note {
    margin-top: 2rem;
  }
}

.target-item__note-title {
  font-weight: 400;
}

.target-item__sub-section {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .target-item__sub-section {
    margin-top: 2rem;
  }
}

.target-item__sub-section-content {
  margin-top: 4rem;
}

.target-item__box--high-price {
  margin-top: 2rem;
}

.target-item__sub-section-title {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  color: #0CC0DF;
}
@media (max-width: 768px) {
  .target-item__sub-section-title {
    font-size: 2.4rem;
  }
}

.target-item__sub-section-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .target-item__sub-section-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

.target-item__sub-section-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  background-color: #F2F0FF;
  padding: 0.8rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .target-item__sub-section-item {
    font-size: clamp(1.5rem, 1.9vw, 2rem);
  }
}
@media (max-width: 768px) {
  .target-item__sub-section-item {
    min-height: 5rem;
    padding: 0.4rem;
    font-size: clamp(1.2rem, 3.75vw, 1.4rem);
  }
}

.voice__inner {
  max-width: 100vw;
}

.voice__title img {
  max-height: 72px;
}

.voice__content {
  max-width: 775px;
  margin: 4rem auto;
  padding: 2.4rem;
  font-family: "M PLUS 1p", sans-serif;
  border: 5px solid #0CC0DF;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .voice__content {
    width: 90vw;
    max-width: 60rem;
    padding: 1.2rem;
  }
}

.voice__body {
  display: grid !important;
  grid-template-columns: fit-content(150px) fit-content(200px) fit-content(600px);
  grid-template-rows: repeat(4, fit-content(200px));
  align-items: flex-start;
  gap: 0;
}
@media (max-width: 600px) {
  .voice__body {
    grid-template-columns: fit-content(150px) fit-content(600px);
    grid-template-rows: repeat(5, fit-content(200px));
    margin-top: 0;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .voice__body {
    grid-template-columns: 1fr 1.3fr 1.7fr;
    grid-template-rows: repeat(4, fit-content(200px));
    margin-top: 0;
  }
}

.voice__text-area {
  grid-column: 1/3;
  grid-row: 1/2;
  margin: 0;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .voice__text-area {
    grid-column: 1/-1;
    grid-row: 3/4;
    margin-bottom: 8px;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .voice__text-area {
    grid-column: 2/4;
    grid-row: 1/2;
    margin-bottom: 8px;
    margin-top: 8px;
  }
}

.voice__stars {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-start;
}
@media (max-width: 600px) {
  .voice__stars {
    grid-row: 3/4;
    justify-content: center;
  }
}

.voice__stars-icon {
  width: auto;
  height: 30px;
}
@media (max-width: 768px) {
  .voice__stars-icon {
    height: 24px;
  }
}

.voice__stars-icon img {
  height: 100%;
  object-fit: contain;
}

.voice__card-title {
  grid-column: 1/-1;
  grid-row: 2/3;
  margin: 0;
  font-size: 2.8rem;
  text-align: left;
  margin-bottom: 2.4rem;
  font-weight: 400;
  color: #0CC0DF;
}
@media (max-width: 600px) {
  .voice__card-title {
    grid-column: 1/-1;
    grid-row: 4/5;
    max-width: 42rem;
    margin: 0 auto;
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
    text-align: center;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .voice__card-title {
    grid-column: 2/4;
    grid-row: 2/3;
    margin-bottom: 0.8rem;
  }
}

.voice__comment {
  grid-column: 2/4;
  grid-row: 3/5;
  margin-left: 2.4rem;
}
@media (max-width: 600px) {
  .voice__comment {
    grid-column: 1/-1;
    grid-row: 5/6;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .voice__comment {
    grid-column: 1/-1;
    grid-row: 4/5;
    margin-left: 0;
  }
}

.voice__image-area {
  grid-column: 1/2;
  grid-row: 3/4;
  display: flex;
  justify-content: center;
  margin: 0;
  margin-bottom: 0.8rem;
}
@media (max-width: 600px) {
  .voice__image-area {
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-items: center;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .voice__image-area {
    grid-column: 1/2;
    grid-row: 1/4;
    margin-bottom: 1.6rem;
    margin-right: 1.6rem;
  }
}

.voice__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background-color: #dceef2;
  border-radius: 50%;
}

.voice__image-wrapper img {
  width: 80px;
  height: auto;
}

.voice__user-info {
  grid-column: 1/2;
  grid-row: 4/5;
  margin: 0;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 600px) {
  .voice__user-info {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .voice__user-info {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-top: 3.2rem;
    margin-bottom: 0.7rem;
    text-align: center;
  }
}

.voice__user-info span {
  display: block;
}

.splide__slide:nth-child(even) .voice__content {
  border: 5px solid #B572FA;
  border-radius: 20px;
}
.splide__slide:nth-child(even) .voice__card-title {
  color: #B572FA;
}
.splide__slide:nth-child(even) .voice__image-wrapper {
  background-color: #F2F0FF;
}

.splide__pagination__page {
  background: #ccc;
  transition: background 0.3s;
}

.splide__pagination__page.is-active {
  background: #1B85FB !important;
}

.region {
  background-color: #FFFCE0;
}

.region__lead--note {
  margin-top: 4.8rem;
}
@media (max-width: 768px) {
  .region__lead--note {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }
}

.region__list-wrap {
  margin-top: 4rem;
  padding: 4rem;
  background-color: #fff;
  border: 5px solid #0CC0DF;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .region__list-wrap {
    padding: 2rem 1.2rem 0;
  }
}

.region__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 4rem;
}
@media (max-width: 768px) {
  .region__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.region__item {
  padding: 1.6rem;
}

.region__category {
  padding-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #0CC0DF;
  border-bottom: 2px solid #000;
}

.region__prefectures {
  display: flex;
  min-height: 8rem;
  align-items: center;
  margin-top: 0.8rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .region__prefectures {
    min-height: 3rem;
  }
}

.prepare {
  background-color: #DCEEF2;
}

.prepare__list-wrap {
  margin: 4rem auto;
}
@media (max-width: 768px) {
  .prepare__list-wrap {
    margin: 2rem auto;
  }
}

.prepare__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 83rem;
  margin: 0 auto;
  padding: 4rem 2.4rem;
  background-color: #fff;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .prepare__list {
    max-width: 60rem;
    padding: 2rem 1.2rem 4rem;
  }
}

.prepare__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  max-height: 23.2rem;
  padding: 1.6rem 0;
}
@media (max-width: 768px) {
  .prepare__item {
    gap: 0;
    width: 50%;
  }
}

.prepare__image-area img {
  width: 165px;
  max-width: 20rem;
  height: auto;
}

.prepare__text-area {
  max-width: 14rem;
}
@media (max-width: 768px) {
  .prepare__text-area {
    max-width: 100%;
  }
}

.prepare__item-description {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  text-align: center;
}

.prepare__item-name {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6rem;
  text-align: center;
}

.prepare__note {
  max-width: 83rem;
  margin: 4rem auto;
  padding: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  border-radius: 2rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .prepare__note {
    margin: 2rem auto;
    padding: 2rem 1.2rem;
  }
}

.prepare__note-title {
  font-size: 2.4rem;
  font-weight: bold;
}

.prepare__note-title:not(:first-child) {
  margin-top: 1.6rem;
}

.prepare__note-item {
  margin-top: 0.8rem;
  line-height: 1.2;
  text-indent: -1em;
  padding-left: 1em;
}

.flow__title img {
  max-height: 124px;
}
@media (max-width: 768px) {
  .flow__title img {
    max-height: 72px;
  }
}

.flow__step-wrap {
  margin-top: 4rem;
}

.flow__step-list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .flow__step-list {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}

.flow__step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.6rem;
  text-align: center;
  width: 29.2%;
  border: 3px solid #B572FA;
  border-radius: 20px;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .flow__step-item {
    width: 100%;
    max-width: 600px;
  }
}

.flow__step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -4rem;
  display: block;
  width: 2rem;
  height: 3.2rem;
  transform: translateY(-50%);
  background-image: url("../img/step-arrow.svg");
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .flow__step-item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -2.4em;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.flow__step-number {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #B572FA;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.flow__step-title {
  margin-top: 3.2rem;
  padding: 0 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  color: #B572FA;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .flow__step-title {
    margin-top: 1.6rem;
  }
}

.flow__step-image {
  margin-top: 1.6rem;
}

.flow__step-image img {
  width: 150px;
  margin: 0 auto;
  height: auto;
  border-radius: 1rem;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .flow__step-image img {
    width: 120px;
  }
}

.flow__step-desc {
  width: 100%;
  margin-top: 1.6rem;
  padding: 0 1.6rem;
  text-align: left;
}

.faq__faq-wrap {
  margin: 4rem auto 0;
  max-width: 86rem;
}

.faq__faq-question {
  position: relative;
  margin-bottom: 1.6rem;
  padding: 2rem 4rem;
  font-size: 2rem;
  font-weight: 700;
  background-color: #ECDAFF;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__faq-question {
    padding: 0.8rem 4rem 0.8rem 1.6rem;
    font-size: 1.8rem;
  }
}

.faq__faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-right: 4px solid #B572FA;
  border-bottom: 4px solid #B572FA;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faq__faq-question::after {
    right: 1.6rem;
    width: 1.2rem;
    height: 1.2rem;
    border-right: 3px solid #B572FA;
    border-bottom: 3px solid #B572FA;
  }
}

.faq__faq-question.is-open::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq__faq-answer {
  max-height: 0;
  padding: 0 4rem;
  overflow: hidden;
  opacity: 0.5;
  transition: max-height 0.3s ease, padding 0.3s ease 0s, opacity 0.3s ease;
}
@media (max-width: 768px) {
  .faq__faq-answer {
    padding: 0 1.6rem;
  }
}

.faq__faq-answer.is-open {
  max-height: 30rem;
  padding: 2.4rem 4rem 4rem 4rem;
  opacity: 1;
}
@media (max-width: 768px) {
  .faq__faq-answer.is-open {
    max-height: 50rem;
    padding: 0 1.6rem 1.6rem;
  }
}

.faq__address-wrap address {
  font-style: normal;
}

.faq__answer-note,
.faq__answer-note-list,
.faq__answer-text {
  margin-top: 0.8rem;
}

.faq__answer-note,
.faq__answer-note-list {
  font-size: 1.4rem;
}

.faq__answer-note-item {
  text-indent: -1em;
  padding-left: 1em;
}

.faq__answer-note-item--with-number {
  text-indent: -2.2em;
  padding-left: 3rem;
}

/* お申し込みフォーム cf7 */
.form__heading-tag {
  position: relative;
  display: inline-block;
  height: 5.2rem;
  margin-bottom: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  color: #0CC0DF;
}
@media (max-width: 768px) {
  .form__heading-tag {
    height: 2.6rem;
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}

.form__heading-tag::before,
.form__heading-tag::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  width: 5px;
  height: 100%;
  background-color: #0CC0DF;
  z-index: -1;
}
@media (max-width: 768px) {
  .form__heading-tag::before,
  .form__heading-tag::after {
    width: 3px;
  }
}

.form__heading-tag::before {
  left: -4rem;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .form__heading-tag::before {
    left: -2rem;
  }
}

.form__heading-tag::after {
  right: -4rem;
  transform: rotate(20deg);
}
@media (max-width: 768px) {
  .form__heading-tag::after {
    right: -2rem;
  }
}

.form__content {
  max-width: 86rem;
  margin: 0 auto;
}

/* フォーム共通 */
/*　プレースホルダー */
input::placeholder,
.wpcf7-form-control::placeholder {
  color: #8E8E93;
  opacity: 1; /* サファリ対策：薄すぎるのを防ぐ */
}

/* フォーカス時のスタイル */
input:focus,
textarea:focus {
  outline: 2px solid #0CC0DF;
  background-color: #F5FDFF !important;
  transition: all 0.2s;
}

/* ラジオボタン本体を非表示 */
input[type=radio] {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

/* チェックボックス本体を非表示 */
input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

.form__section-form-choices-area {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.form__content label {
  display: block;
  font-weight: 700;
}

.form__section {
  margin-top: 4rem;
}

.form__section-title {
  padding: 1.6rem 4rem;
  font-size: 2rem;
  font-weight: 700;
  background-color: #DCEEF2;
}
@media (max-width: 600px) {
  .form__section-title {
    padding: 1.6rem 1.6rem;
  }
}

.form__section-content,
.form__child-section {
  padding: 2.4rem 1.6rem 4rem;
}
@media (max-width: 600px) {
  .form__section-content,
  .form__child-section {
    padding: 2.4rem 1.2rem 4rem;
  }
}

@media (max-width: 600px) {
  .form__child-section {
    padding: 2.4rem 1.2rem 0;
  }
}

/* form__section--box-choice「ダンボールはお持ちですか？」 */
.form__section--box-choice {
  /* チェック状態（レ点チェック） */
}
.form__section--box-choice .form__section-content {
  padding-top: 4rem;
}
.form__section--box-choice .wpcf7-list-item {
  margin: 0;
  flex-grow: 1;
}
.form__section--box-choice .wpcf7-form-control {
  display: flex;
  gap: 2.8rem;
}
@media (max-width: 600px) {
  .form__section--box-choice .wpcf7-form-control {
    flex-direction: column;
  }
}
.form__section--box-choice label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 2rem;
  padding: 1.8rem 1.6rem 1.8rem 5.6rem;
  max-width: 400px;
}
@media (max-width: 600px) {
  .form__section--box-choice label {
    max-width: 100%;
  }
}
.form__section--box-choice label::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid #000;
}
.form__section--box-choice input[type=radio]:checked ~ .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 2.3rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.8rem;
  height: 1.4rem;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  z-index: 2;
  display: block;
}
.form__section--box-choice .wpcf7-list-item-label {
  font-size: 2rem;
}

/* 分岐１「自分の箱で送る」 */
.form__doc-DL-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
  margin-top: 1.6rem;
}

.btn-doc {
  position: relative;
  display: inline-block;
  padding: 0.4rem 3.6rem 0.4rem 1.6rem;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 9999px;
}

.btn-doc::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 1.6rem;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(-45deg);
}

.form__child-section .form__note {
  margin-top: 1.6rem;
}

.form__address-box {
  width: 100%;
  margin-top: 1.6rem;
  padding: 3.2rem;
  background-color: #F5FDFF;
}

.form__address-box address {
  margin-top: 1.6em;
  font-style: normal;
}

.form__address-box address p {
  line-height: 1;
}

.form__address-box address p + p {
  margin-top: 0.8em;
}

.form__note-list {
  margin-top: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

/* 1-「用意した箱は何箱ですか？」 */
.form__section--mybox-count .form__counter-wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.form__section--mybox-count .form__counter-wrap label {
  font-size: 2rem;
  font-weight: 700;
}
.form__section--mybox-count .form__counter-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form__section--mybox-count .form__counter-box button {
  font-size: 2.4rem;
  font-weight: 700;
}
.form__section--mybox-count .form__counter-box .wpcf7-form-control-wrap {
  display: inline-block;
  width: 6.4rem;
  height: 4rem;
  background-color: rgba(174, 174, 178, 0.4);
  overflow: hidden;
}
.form__section--mybox-count .form__counter-box input[type=number].counter-input {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 2rem;
  text-align: center;
  background: transparent;
  border: none;
  outline: none;
  box-sizing: border-box;
}

/* 分岐２「宅配キットを使う」 */
/* 2-「どのサイズがいくつ必要ですか」 */
.form__section--kit-detail {
  /* kit-size__size */
  /* 箱サイズのラジオボタン PC */
  /* 箱サイズのラジオボタン SP */
  /* kit-size__count：箱数 */
  /* 箱サイズのラジオボタンと箱数で共通のスタイル */
}
.form__section--kit-detail .kit-size__list {
  display: flex;
  margin-bottom: 1.6rem;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .form__section--kit-detail .kit-size__list {
    display: none;
  }
}
.form__section--kit-detail .kit-size__item {
  flex: 1;
  text-align: center;
}
.form__section--kit-detail .kit-size__caption {
  font-size: 1.4rem;
  font-weight: 700;
}
.form__section--kit-detail .kit-size__caption span {
  font-size: 1.2rem;
  font-weight: 400;
}
.form__section--kit-detail .kit-size__size {
  margin-top: 1.6rem;
}
@media (max-width: 600px) {
  .form__section--kit-detail .kit-size__size {
    margin-top: 0;
  }
}
.form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size] {
  display: block;
}
@media (max-width: 1024px) {
  .form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size] {
    display: none;
  }
}
.form__section--kit-detail .wpcf7-radio {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
  margin-bottom: 1.6rem;
}
.form__section--kit-detail .wpcf7-list-item {
  width: 100%;
  margin-left: 0;
  padding: 0.8rem 1.6rem;
  text-align: center;
  border: 1px solid #333;
  border-radius: 9999px;
}
.form__section--kit-detail .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
  padding-left: 0;
}
.form__section--kit-detail .wpcf7-list-item label::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 2px solid #333;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
.form__section--kit-detail .wpcf7-list-item label:has(input[type=radio]:checked)::after {
  content: "";
  position: absolute;
  left: 6.7rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 1rem;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
}
.form__section--kit-detail input[type=radio]:checked ~ .wpcf7-list-item-label::after {
  left: 9999px !important;
}
.form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size_sp] {
  display: none;
}
@media (max-width: 1024px) {
  .form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size_sp] {
    display: block;
    margin-top: 0.8rem;
    padding: 0.8rem 1.6rem;
    border: 1px solid #333;
  }
}
.form__section--kit-detail .kit-size__sp-img {
  display: none;
  margin-top: 1.6rem;
}
@media (max-width: 1024px) {
  .form__section--kit-detail .kit-size__sp-img {
    display: block;
  }
}
.form__section--kit-detail .kit-size__count {
  margin-top: 1.6rem;
}
.form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size_sp],
.form__section--kit-detail .wpcf7-form-control-wrap[data-name=kitbox_num] {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 16rem;
  height: 4rem;
  margin-top: 0.8rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid #333;
  background-color: #fff;
  cursor: pointer;
}
.form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size_sp] {
  display: none;
}
@media (max-width: 1024px) {
  .form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size_sp] {
    display: block;
  }
}
.form__section--kit-detail select.wpcf7-form-control {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 1em;
  z-index: 2;
  cursor: pointer;
  transform: translateY(-50%);
}
.form__section--kit-detail .wpcf7-form-control[data-name=kit_size_sp],
.form__section--kit-detail .wpcf7-form-control[data-name=kitbox_num] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.form__section--kit-detail .wpcf7-form-control-wrap[data-name=kit_size_sp]::after,
.form__section--kit-detail .wpcf7-form-control-wrap[data-name=kitbox_num]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(-66%) rotate(45deg);
}
.form__section--kit-detail .kit-size__count select {
  font-weight: 700;
}
.form__section--kit-detail .kit-size-section .form__note {
  margin-top: 1.6rem;
}

/* 2-「お届け希望日はありますか？」 */
.form__section--delivery-date label {
  display: block;
}
.form__section--delivery-date .form__section-content {
  overflow: visible;
}
.form__section--delivery-date .wpcf7-date,
.form__section--delivery-date .wpcf7-select {
  width: 240px;
  margin-top: 0.8rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid #000;
  background-color: #fff;
  font-weight: 700;
}
.form__section--delivery-date .wpcf7-validates-as-date {
  margin-bottom: 1.6rem;
}
.form__section--delivery-date .wpcf7-form-control-wrap[data-name=kit_delivery_time] {
  position: relative;
  display: inline-block;
}
.form__section--delivery-date .wpcf7-form-control-wrap[data-name=kit_delivery_time]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.form__section--delivery-date .form__note {
  margin-top: 0.8rem;
}

/* 分岐ここまで */
.form__section--customer-info label {
  display: block;
  margin-top: 0.8rem;
}
.form__section--customer-info label:first-child {
  margin-top: 0;
}
.form__section--customer-info label span {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 16px;
  color: #ff3B30;
}
.form__section--customer-info .wpcf7-text,
.form__section--customer-info .wpcf7-select {
  display: block;
  width: 100%;
  max-width: 650px;
  margin-top: 0.4rem;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #8E8E93;
}
.form__section--customer-info .wpcf7-form-control-wrap[data-name=birth_year] .wpcf7-select,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=birth_month] .wpcf7-select,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=birth_day] .wpcf7-select,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=your-postcode] .wpcf7-text,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=your-prefecture] .select-prefecture,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=your-job] .wpcf7-select {
  display: inline-block;
  max-width: 12.6rem;
  position: relative;
  width: 152px;
}
.form__birth-wrap {
	display: flex;
	gap: 1.6rem;
}
@media (max-width: 600px) {
  .form__birth-wrap {
    flex-direction: column;
  }
}
.form__section--customer-info .wpcf7-form-control-wrap[data-name=birth_year] .wpcf7-select,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=birth_month] .wpcf7-select,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=birth_day] .wpcf7-select {
  margin-right: 1.6rem;
}
.form__section--customer-info .wpcf7-form-control-wrap[data-name="birth_year"],
.form__section--customer-info .wpcf7-form-control-wrap[data-name="birth_month"],
.form__section--customer-info .wpcf7-form-control-wrap[data-name="birth_day"] {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.form__section--customer-info .wpcf7-form-control-wrap[data-name=your-prefecture]::after,
.form__section--customer-info .wpcf7-form-control-wrap[data-name=your-job]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 2;
}

.form__section--id {
  /* チェックボックス */
  /* チェックマーク（レ点） */
}
.form__section--id .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 5.4rem;
  cursor: pointer;
}
.form__section--id .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #333;
  background: #fff;
  box-sizing: border-box;
}
.form__section--id input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.8rem;
  height: 1.6rem;
  border-bottom: 2.5px solid #333;
  border-right: 2.5px solid #333;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 495px) {
  .form__section--id input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
    top: 15%;
    transform: translateY(-30%) rotate(45deg);
  }
}
.form__section--id .wpcf7-list-item-label {
  position: relative;
  font-weight: 400;
}
.form__section--id .wpcf7-list-item {
  display: block;
  margin: 8px 0 0 0;
}
.form__section--id .form__file-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.6rem;
}

.form__section--bank-info .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.form__section--bank-info .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.form__section--bank-info .wpcf7-radio .wpcf7-list-item-label {
  font-weight: 400;
}
.form__section--bank-info .form__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.form__section--bank-info .form__note--file-size {
  margin-top: 0.8rem;
}
.form__section--bank-info .form__note--bank-name {
  margin-top: 1.6rem;
}
.form__section--bank-info input {
  margin-top: 1.6rem;
}
.form__section--bank-info .transfer-textbox-wrap textarea{
  margin-top: 1.6rem;
  border: 1px solid #333;
  padding: 0.8rem;
  width: 100%;
  max-width: 650px;
}

/* ラジオボタン */
.form__section--bank-info .wpcf7-list-item label,
.form__section--has-box .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 5.4rem;
  cursor: pointer;
}

.form__section--bank-info .wpcf7-list-item label::before,
.form__section--has-box .wpcf7-list-item label::before,
.form__section--agree .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #333;
  background: #fff;
  box-sizing: border-box;
}

/* agreeセクションのチェックボックス位置調整 */
.form__section--agree .wpcf7-list-item-label::before {
  top: 14px;
  left: 0;
}

.form__section--bank-info .wpcf7-list-item-label,
.form__section--has-box .wpcf7-list-item-label,
.form__section--agree .wpcf7-list-item-label {
  position: relative;
  font-weight: 400;
}

/* チェックマーク（レ点）を描く */
input[type=radio]:checked ~ .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: -4rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.8rem;
  height: 1.6rem;
  border-bottom: 2.5px solid #333;
  border-right: 2.5px solid #333;
  z-index: 2;
  pointer-events: none;
}

input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 14px;
  transform: translateY(-60%) rotate(45deg);
  width: 0.8rem;
  height: 1.6rem;
  border-bottom: 2.5px solid #333;
  border-right: 2.5px solid #333;
  z-index: 2;
  pointer-events: none;
}

.form__section--has-box .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.form__section--has-box .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.form__section--has-box .wpcf7-radio .wpcf7-list-item-label {
  font-weight: 400;
}
.form__section--has-box .form__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

.form__section--other label {
  display: block;
  margin-top: 0.8rem;
}
.form__section--other .wpcf7-text {
  display: block;
  width: 100%;
  max-width: 650px;
  margin-top: 0.4rem;
  padding: 1rem;
  color: #8E8E93;
  background-color: #fff;
  border: 1px solid #8E8E93;
}

.form__section--agree .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}
.form__section--agree .wpcf7-list-item-label {
  padding-left: 2em;
}
.form__section--agree .form__policy-links {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #8E8E93;
}
.form__section--agree .form__link {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid #8E8E93;
  opacity: 1;
  transition: opacity 0.2s;
}
.form__section--agree .form__link:first-child {
  margin-top: 0;
}
.form__section--agree .form__link:hover {
  opacity: 0.6;
}

.form__submit-btn-wrap {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.wpcf7-submit {
  display: inline-block;
  width: 100%;
  max-width: 25.6rem;
  padding: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  background-color: #0CC0DF;
  border: 2px solid transparent;
  border-radius: 9999px;
  transition: background-color 0.3s, color 0.3s, border 0.3s, transform 0.3s;
}

.wpcf7-submit:hover {
  background-color: #fff;
  color: #0CC0DF;
  border: 2px solid #0CC0DF;
  transform: translateY(4px);
}

/* 送信時のスピナー表示位置調整 */
.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  margin: 0;
  z-index: 10;
  pointer-events: none;
}
.form__submit-btn-wrap {
  position: relative;
}

.page-hero {
  margin-top: 11.6rem;
  background: linear-gradient(90deg, #FCD1FF 24%, #C2F7FF 80%);
}
@media (max-width: 1024px) {
  .page-hero {
    margin-top: 4.2rem;
  }
}
@media (max-width: 768px) {
  .page-hero {
    margin-top: 1.6rem;
  }
}

.page-hero__inner {
  padding: 10rem 0;
  display: flex;
  justify-content: center;
}

.page-hero__title {
  font-size: clamp(3rem, 9.375vw, 3.6rem);
  font-weight: 700;
  color: #0CC0DF;
}

.breadcrumb {
  margin: 10rem auto 0;
  max-width: 1000px;
}
@media (max-width: 1024px) {
  .breadcrumb {
    margin: 6rem auto 0;
    padding: 0 1.2rem;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 4rem;
  }
}

.terms__content {
  padding: 4rem 0;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
}
@media (max-width: 1024px) {
  .terms__content {
    padding: 4rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .terms__content {
    padding: 2rem 1.2rem;
  }
}

.terms__block {
  margin-top: 3em;
}

.terms__title {
  font-size: 1.6rem;
  font-weight: 400;
}

.terms__footer {
  margin-top: 3em;
}

.privacy__content {
  padding: 4rem 0;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
}
@media (max-width: 1024px) {
  .privacy__content {
    padding: 4rem 1.2rem;
  }
}
@media (max-width: 768px) {
  .privacy__content {
    padding: 2rem 1.2rem;
  }
}

.privacy__block {
  margin-top: 3em;
}

.privacy__title {
  font-size: 1.6rem;
  font-weight: 400;
}

.privacy__footer {
  margin-top: 3em;
}

.privacy__address {
  font-style: normal;
}

.thanks__content {
  text-align: center;
}

.thanks__title,
.thanks__subtitle {
  font-size: clamp(1.6rem, 4.3vw, 2.8rem);
  font-weight: 400;
}
@media (max-width: 600px) {
  .thanks__title,
  .thanks__subtitle {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }
}

.thanks__notice {
  margin-top: 3.2rem;
}

.thanks__notice-title {
  font-weight: 700;
}

.thanks__notice-text {
  margin-top: 0.8rem;
}

.thanks__link {
  margin-top: 3.2rem;
}

.under600-only {
  display: none;
}
@media (max-width: 600px) {
  .under600-only {
    display: block;
  }
}

.notfound__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.notfound {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 11.6rem;
  padding: 5rem 1.5rem;
}
@media (max-width: 1024px) {
  .notfound {
    margin-top: 4.2rem;
  }
}
@media (max-width: 768px) {
  .notfound {
    margin-top: 1.6rem;
  }
}

.notfound__inner {
  max-width: 800px;
  width: 100%;
}

.notfound__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.notfound__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.notfound__btn {
  display: inline-block;
  background-color: #0CC0DF;
  color: #fff;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.notfound__btn:hover {
  opacity: 0.8;
  transform: translateY(4px);
}/*# sourceMappingURL=style.css.map */