@charset "UTF-8";
.wrap {
  display: flex;
  flex-flow: column;
  justify-content: stretch;
  align-items: stretch;
  min-height: 100dvh;
}

.site-main {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .site-main {
    margin-bottom: -11.5rem;
  }
}

.article {
  padding-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .article {
    padding-top: 5rem;
  }
}

.article-block:not(:last-of-type) {
  margin-bottom: 8rem;
}
.article-block > * {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.article-block > *:first-child {
  margin-top: 0;
}
.article-block > *:last-child {
  margin-bottom: 0;
}

.flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}
.flex-item {
  flex: 0 0 calc((100% - 4rem) / 3);
}

.maru {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Helvetica, Arial, Verdana, sans-serif;
}

.headline__title {
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .headline__title {
    gap: 1rem;
  }
}
.headline__title::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .headline__title::before {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.headline__title span {
  font-size: 5.4rem;
  color: var(--themeColor);
}
@media only screen and (max-width: 767px) {
  .headline__title span {
    font-size: 3.6rem;
  }
}

.section-howto .headline__title::before {
  background-image: url(../img/top/icon-howto.png);
}

.section-product .headline__title::before {
  background-image: url(../img/top/icon-product.png);
}

.section-faq .headline__title::before {
  background-image: url(../img/top/icon-faq.png);
}

.section-entry .headline__title::before {
  background-image: url(../img/top/icon-entry.png);
}

.article-entry .article-block-form {
  background: var(--themeColor);
  border-radius: 13rem 0 13rem 0;
  padding-top: 11.1rem;
  padding-bottom: 9.3rem;
}
@media only screen and (max-width: 767px) {
  .article-entry .article-block-form {
    border-radius: 7.8rem 0 7.8rem 0;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .article-entry .article-block-form .headline {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.article-entry .article-block-form .headline__title {
  align-items: flex-start;
}
.article-entry .article-block-form .headline__title::before {
  background-image: url(../img/top/icon-entry.png);
}
@media only screen and (max-width: 767px) {
  .article-entry .article-block-form .headline__title::before {
    margin-top: 0.7rem;
  }
}
.article-entry .article-block-form .headline__title span {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .article-entry .article-block-form .headline__title span {
    text-align: left;
    line-height: 1.2;
    flex: 1;
  }
}
@media only screen and (max-width: 767px) {
  .article-entry .article-block-form .headline__title span.center {
    flex: none;
  }
}
.article-entry .article-block-form .lead {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 6.5rem;
}
@media only screen and (min-width: 768px) {
  .article-entry .article-block-form .lead {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .article-entry .article-block-form .lead {
    margin-top: 2.5rem;
    font-size: 1.4rem;
  }
}
.article-entry .article-block-form .embedcode {
  background: #FFFFFF;
  border: 0.2rem solid #221814;
  border-radius: 3.2rem;
  padding: 3.2rem 0;
  margin-top: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .article-entry .article-block-form .embedcode {
    border-radius: 2.8rem;
  }
}

.inview {
  opacity: 0;
}
.inview.slideIn {
  transform: translate(0px, 6rem);
  transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.inview.slideIn.bottom {
  transition: all 1600ms cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0px, 12rem);
}
.inview.slideIn.animate {
  opacity: 1;
  transform: translate(0, 0);
}
.inview.fadeIn {
  transition: opacity 1500ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inview.fadeIn.animate {
  opacity: 1;
}

.entry {
  font-weight: 400;
  letter-spacing: 0;
}
.entry > * {
  margin: 2.4rem 0;
}
@media only screen and (max-width: 767px) {
  .entry > * {
    margin: 1.6rem 0;
  }
}
.entry > *:first-child {
  margin-top: 0;
}
.entry > *:last-child {
  margin-bottom: 0;
}
.entry.small > *:first-child {
  margin-top: -2em;
}
.entry small {
  font-size: 0.935em;
}
.entry img {
  display: block;
}
.entry a {
  text-decoration: underline;
  color: var(--themeColor);
}
@media only screen and (min-width: 768px) {
  .entry a:hover {
    text-decoration: none;
  }
}
.entry strong.bold {
  border-bottom: 4px solid #FFD800;
}
.entry ul {
  padding-left: 1em;
}
.entry ul li:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.entry ul li::before {
  margin-left: -1em;
  display: inline-block;
  content: "・";
}
.entry ul.color {
  padding-left: 1.5em;
}
.entry ul.color li:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.entry ul.color li::before {
  margin-left: -1.5em;
  display: inline-block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50vw;
  background: var(--themeColor);
  margin-right: 1.5rem;
}
.entry ol {
  padding-left: 1.5em;
}
.entry ol li {
  counter-increment: entry-ol;
}
.entry ol li:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.entry ol li::before {
  text-indent: -1.5em;
  display: inline-block;
  content: counter(entry-ol);
  font-size: 1em;
  color: var(--themeColor);
  font-weight: 700;
}
.entry ol.def li::before {
  color: #333;
  font-weight: normal;
}

.headline-2,
.entry h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 4.8rem 0 2.4rem;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
  padding-bottom: 1rem;
  letter-spacing: 0;
  line-height: 1.4 !important;
}
@media only screen and (max-width: 767px) {
  .headline-2,
  .entry h2 {
    font-size: 2.2rem;
    margin: 3.6rem 0 1.6rem;
  }
}
.headline-2::after,
.entry h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.4rem;
  background: var(--themeColor);
  position: absolute;
  bottom: -0.4rem;
  left: 0;
}

.headline-3,
.entry h3 {
  font-size: 3rem;
  font-weight: 700;
  margin: 4.8rem 0 2.4rem;
  border-left: 0.4rem solid var(--themeColor);
  padding-bottom: 0.5rem;
  padding-left: 1.6rem;
  line-height: 1.4 !important;
}
@media only screen and (max-width: 767px) {
  .headline-3,
  .entry h3 {
    font-size: 1.8rem;
    border-width: 0.3rem;
    padding-left: 1rem;
    padding-bottom: 0.3rem;
    line-height: 1.3;
    margin-bottom: 1.6rem;
  }
}

.headline-2 + .headline-3 {
  margin: 2.4rem 0;
}

.headline-4,
.entry h4 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 4.8rem 0 2.4rem;
  position: relative;
  padding-left: 2.4rem;
  line-height: 1.4 !important;
}
@media only screen and (max-width: 767px) {
  .headline-4,
  .entry h4 {
    font-size: 1.6rem;
    padding-left: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.headline-4::before,
.entry h4::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.2rem;
  background: var(--themeColor);
  position: absolute;
  top: 2rem;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .headline-4::before,
  .entry h4::before {
    top: 1.2rem;
    width: 1rem;
  }
}

.headline-5,
.entry h5 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1em 0 0.7em;
  line-height: 1.4 !important;
}
@media only screen and (max-width: 767px) {
  .headline-5,
  .entry h5 {
    font-size: 1.5rem;
  }
}
.headline-5 + p,
.entry h5 + p {
  margin-top: -1rem;
}

.headline-6,
.entry h6 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1em 0 0.5em;
  line-height: 1.4 !important;
}
@media only screen and (max-width: 767px) {
  .headline-6,
  .entry h6 {
    font-size: 1.4rem;
  }
}
.headline-6 + p,
.entry h6 + p {
  margin-top: 0;
}

.table-main,
.entry table {
  width: 100%;
  border-collapse: collapse;
}
@media only screen and (max-width: 767px) {
  .table-main,
  .entry table {
    display: block;
    overflow: auto;
    width: 100%;
  }
}
.table-main.bg-none tbody tr,
.entry table.bg-none tbody tr {
  background: none !important;
}
@media only screen and (min-width: 768px) {
  .table-main.fixed,
  .entry table.fixed {
    table-layout: fixed;
  }
}
.table-main.fixed tr > *:first-child,
.entry table.fixed tr > *:first-child {
  width: 13.8rem;
}
.table-main.equal tr > *:first-child,
.entry table.equal tr > *:first-child {
  width: auto;
}
@media only screen and (max-width: 767px) {
  .table-main.sp-nowrap,
  .entry table.sp-nowrap {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .table-main.sp-nowrap tbody td,
  .entry table.sp-nowrap tbody td {
    min-width: auto;
  }
}
.table-main.sp-nowrap,
.entry table.sp-nowrap {
  min-width: 24rem;
}
.table-main tr > *:first-child,
.entry table tr > *:first-child {
  padding-left: 2.4rem;
  padding-right: 1.2rem;
}
.table-main tr > *:last-child,
.entry table tr > *:last-child {
  padding-right: 2.4rem;
  padding-left: 1.2rem;
}
.table-main thead th,
.entry table thead th {
  text-align: left;
  padding: 2.4rem 1.8rem;
  background: #333;
  color: #fff;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .table-main thead th,
  .entry table thead th {
    padding: 1rem;
  }
}
.table-main thead + tbody,
.entry table thead + tbody {
  border-top: none;
}
@media only screen and (max-width: 767px) {
  .table-main thead + tbody,
  .entry table thead + tbody {
    display: table-row-group;
  }
}
.table-main tbody,
.entry table tbody {
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .table-main tbody,
  .entry table tbody {
    display: table;
    width: 100%;
  }
}
.table-main tbody tr,
.entry table tbody tr {
  border-bottom: 1px solid #ccc;
}
.table-main tbody tr:nth-of-type(even),
.entry table tbody tr:nth-of-type(even) {
  background: #F1EFE8;
}
.table-main tbody th,
.entry table tbody th {
  vertical-align: top;
  text-align: left;
  padding: 2.4rem 1.8rem;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .table-main tbody th,
  .entry table tbody th {
    width: 13.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .table-main tbody th,
  .entry table tbody th {
    padding: 1rem;
    white-space: nowrap;
  }
}
.table-main tbody td,
.entry table tbody td {
  padding: 2.4rem 1.8rem;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .table-main tbody td,
  .entry table tbody td {
    padding: 1rem;
    min-width: 18rem;
  }
}
@media only screen and (max-width: 767px) {
  .table-main tbody td:last-of-type,
  .entry table tbody td:last-of-type {
    width: 100%;
  }
}
.table-main tbody td > *:first-child,
.entry table tbody td > *:first-child {
  margin-top: 0;
}
.table-main tbody td > *:last-child,
.entry table tbody td > *:last-child {
  margin-bottom: 0;
}
.table-main tbody td a,
.entry table tbody td a {
  color: var(--themeColor);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .table-main tbody td a:hover,
  .entry table tbody td a:hover {
    text-decoration: none;
  }
}
.table-main tbody td ul,
.entry table tbody td ul {
  padding-left: 1em;
}
.table-main tbody td ul li,
.entry table tbody td ul li {
  padding-left: 0;
}
.table-main tbody td ul li::before,
.entry table tbody td ul li::before {
  content: "・";
  display: inline-block;
  text-indent: -1em;
  margin-left: 0;
  width: auto;
  height: auto;
  border-radius: 50vw;
  background: none;
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .page--top .site-header {
    position: fixed;
  }
}
@media only screen and (max-width: 767px) {
  /* .page--top .site-header .masthead {
    display: none;
  } */
  .page--top .site-header .masthead {
    opacity:0;
    transition: all 0.3s;
  }
  .page--top .site-header.is-down .masthead {
    opacity:1;
  }
}

.section-mainvisual {
  position: relative;
}
.section-mainvisual .bg img {
  width: 100%;
}
.section-mainvisual .prize {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section-mainvisual .prize {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translate(-50%, 0%);
    gap: 9rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-mainvisual .prize {
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 2.1rem;
    margin-top: -14rem;
  }
}
.section-mainvisual .prize-item {
  display: block;
  filter: drop-shadow(0 0.6rem 0.6rem rgba(0, 0, 0, 0.2));
}
@media only screen and (min-width: 768px) {
  .section-mainvisual .prize-item {
    width: 34.8rem;
  }
}
.section-mainvisual .prize-item img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section-mainvisual .btn {
    position: absolute;
    top: 46.4rem;
    left: 14.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-mainvisual .btn {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1;
  }
}
.section-mainvisual + .section-entry {
  margin-top: 6rem;
}

.section-howto {
  padding-top: 11.7rem;
  padding-bottom: 12.7rem;
}
@media only screen and (max-width: 767px) {
  .section-howto {
    padding-top: 9rem;
    padding-bottom: 5.7rem;
  }
}
.section-howto .step-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media only screen and (min-width: 768px) {
  .section-howto .step-list {
    gap: 7rem;
    margin-top: 7.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-howto .step-list {
    gap: 9rem;
    margin-top: 6rem;
  }
}
.section-howto .step-list__item {
  border: 0.3rem solid var(--themeColor);
  border-radius: 3.5rem;
  position: relative;
  padding: 2.2rem;
  padding-top: 4.4rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1607843137);
}
@media only screen and (min-width: 768px) {
  .section-howto .step-list__item {
    flex: 0 0 calc((100% - 14rem) / 3);
  }
}
@media only screen and (max-width: 767px) {
  .section-howto .step-list__item {
    border-radius: 2.8rem;
    border-width: 0.2rem;
  }
}
.section-howto .step-list__item:not(:last-of-type) {
  position: relative;
}
.section-howto .step-list__item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url(../img/top/howto-arrow.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 3.3rem;
}
@media only screen and (min-width: 768px) {
  .section-howto .step-list__item:not(:last-of-type)::after {
    position: absolute;
    top: calc(50% - 1rem);
    right: -5.6rem;
    transform: translate(0%, -50%);
  }
}
@media only screen and (max-width: 767px) {
  .section-howto .step-list__item:not(:last-of-type)::after {
    position: absolute;
    bottom: -6.5rem;
    left: 50%;
    transform: translate(-50%, 0%) rotate(90deg);
  }
}
.section-howto .step-list__label {
  background: var(--themeColor);
  color: #fff;
  width: 13.5rem;
  min-height: 5.2rem;
  border-radius: 0.2rem 4rem 0.2rem 4rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  position: absolute;
  top: 0.2rem;
  left: 0;
  transform: translateY(-50%);
}
.section-howto .step-list__label span {
  font-size: 2rem;
}
.section-howto .step-list__label em {
  font-size: 3.2rem;
  font-style: normal;
  line-height: 1;
}
.section-howto .step-list__img img {
  width: 100%;
}
.section-howto .step-list__body {
  margin-top: 1.7rem;
}
.section-howto .step-list__title {
  color: var(--themeColor);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.section-howto .step-list__title small {
  font-size: 75%;
}
.section-howto .step-list__txt {
  margin-top: 0.5rem;
}
.section-howto .step-list__txt p {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .section-howto .step-list__txt p {
    font-size: 1.6rem;
  }
}
.section-howto .step-list__txt p a {
  color: var(--themeColor);
  font-weight: 900;
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .section-howto .step-list__txt p a:hover {
    text-decoration: none;
  }
}
.section-howto .step-list__txt p strong {
  font-weight: 900;
}
.section-howto .note {
  margin-top: 2.3rem;
  letter-spacing: 0;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .section-howto .note {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}
.section-howto .note::before {
  content: "※";
  color: var(--themeColor);
  font-weight: 900;
}
.section-howto .btn {
  text-align: center;
  margin-top: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .section-howto .btn {
    margin-top: 3.5rem;
  }
}
.section-howto .caution {
  border: 0.2rem solid #000;
  border-radius: 3rem;
  padding: 4.8rem 3rem 3rem;
  position: relative;
  margin-top: 9.2rem;
}
@media only screen and (max-width: 767px) {
  .section-howto .caution {
    border-radius: 2.8rem;
    padding: 4.8rem 2.1rem 3rem;
    margin-top: 8rem;
  }
}
.section-howto .caution__title {
  text-align: center;
  position: absolute;
  top: -0.2rem;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-howto .caution__title span {
  background: #000;
  color: #fff;
  border-radius: 50vw;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-width: 19.5rem;
  min-height: 6rem;
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .section-howto .caution__title span {
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 767px) {
  .section-howto .caution__title span {
    min-width: 17rem;
    min-height: 5rem;
  }
}
.section-howto .caution__list {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
  .section-howto .caution__list {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.section-howto .caution__list::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  background: repeating-linear-gradient(to right, #000 0 4px, transparent 4px 8px) 0 0/8px 4px repeat-x, repeating-linear-gradient(to right, #000 0 4px, transparent 4px 8px) 0 100%/8px 4px repeat-x, repeating-linear-gradient(to bottom, #000 0 4px, transparent 4px 8px) 0 0/4px 8px repeat-y, repeating-linear-gradient(to bottom, #000 0 4px, transparent 4px 8px) 100% 0/4px 8px repeat-y;
  margin: 1.6rem 0 2.2rem;
}
@media only screen and (max-width: 767px) {
  .section-howto .caution__list::after {
    height: 0.1rem;
    margin: 1.6rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-howto .caution__list li:not(:last-of-type) {
    margin-bottom: 0.3rem;
  }
}
.section-howto .caution__list li::before {
  content: "※";
}
.section-howto .photo-guide__title {
  text-align: center;
}
.section-howto .photo-guide__title span {
  background: #E4E4E4;
  border-radius: 50vw;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-width: 26.4rem;
  min-height: 4.9rem;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .section-howto .photo-guide__title span {
    min-width: 21.4rem;
    min-height: 3.9rem;
    font-size: 1.4rem;
  }
}
.section-howto .photo-guide__list {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .section-howto .photo-guide__list {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.section-howto .photo-guide__list li:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
.section-howto .photo-guide__list li::before {
  content: "●";
}
.section-howto .photo-guide__example {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .section-howto .photo-guide__example {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 2.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-howto .photo-guide__example {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .section-howto .photo-guide__good {
    width: 27.2rem;
  }
}
.section-howto .photo-guide__good img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section-howto .photo-guide__bad {
    width: 76.8rem;
  }
}
.section-howto .photo-guide__bad img {
  width: 100%;
}
.section-product {
  background: #FFF100;
  border-radius: 13rem 0 13rem 0;
  padding-top: 11.1rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .section-product {
    border-radius: 7.8rem 0 7.8rem 0;
    padding-top: 7.1rem;
  }
}
.section-product .product-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 9.6rem;
  gap: 3rem 0;
}
@media only screen and (max-width: 767px) {
  .section-product .product-list {
    margin-top: 3.6rem;
    gap: 4rem 0.4rem;
  }
}
.section-product .product-list__item {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .section-product .product-list__item {
    width: 17rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-product .product-list__item {
    flex: 0 0 calc((100% - 0.8rem) / 3);
  }
}
.section-product .product-list__img {
  background: #fff;
  border-radius: 50vw;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-product .product-list__img {
    width: 14.7rem;
    height: 14.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-product .product-list__img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.section-product .product-list__img img {
  width: 14.7rem;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}
@media only screen and (max-width: 767px) {
  .section-product .product-list__img img {
    width: 11.4rem;
  }
}
.section-product .product-list__name {
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.4;
  margin-top: 0.7rem;
}
@media only screen and (max-width: 767px) {
  .section-product .product-list__name {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

.section-faq {
  padding-top: 11rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .section-faq {
    padding-top: 7rem;
    padding-bottom: 6rem;
  }
}
.section-faq .faq-list {
  margin-top: 7rem;
}
.section-faq .faq-list__item {
  border: 0.2rem solid var(--themeColor);
  border-radius: 3.2rem;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.02em;
  box-shadow: 0px 6px 1px rgba(0, 0, 0, 0.1607843137);
  padding: 2rem 3.6rem 2rem 4.3rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-list__item {
    font-size: 1.6rem;
    padding: 1.5rem 4.5rem 1.5rem 2rem;
  }
}
.section-faq .faq-list__item:nth-of-type(odd) {
  background: #F5FFDE;
}
.section-faq .faq-list__item:nth-of-type(even) {
  background: #E7FFC1;
}
.section-faq .faq-list__item:not(:last-of-type) {
  margin-bottom: 5.4rem;
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-list__item:not(:last-of-type) {
    margin-bottom: 4.5rem;
  }
}
.section-faq .faq-list__question {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.section-faq .faq-list__question::after {
  content: "";
  position: absolute;
  top: 3.8rem;
  right: 3.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-right: 0.3rem solid var(--themeColor);
  border-bottom: 0.3rem solid var(--themeColor);
  transform: translate(0%, -50%) rotate(45deg);
  transition: transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-list__question::after {
    top: 2.8rem;
    right: 2rem;
  }
}
.section-faq .faq-list__question.is-open::after {
  transform: translate(0%, -50%) rotate(-135deg);
}
.section-faq .faq-list__question .faq-list__label {
  background: var(--themeColor);
  position: absolute;
  top: -0.2rem;
  left: 0;
  width: 10.8rem;
  height: 4.2rem;
  border-radius: 0.2rem 3rem;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-list__question .faq-list__label {
    width: 8.4rem;
    height: 3.3rem;
    border-radius: 0.2rem 2.4rem 0.2rem 2.4rem;
  }
}
.section-faq .faq-list__answer {
  display: none;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-list__answer {
    margin-right: -2rem;
  }
}
.section-faq .faq-list__answer .text {
  position: relative;
  margin-top: 2.8rem;
  padding-bottom: 1rem;
  padding-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .section-faq .faq-list__answer .text {
    padding-left: 10.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-list__answer .text {
    margin-top: 1.5rem;
  }
}
.section-faq .faq-list__answer .text p {
  line-height: 1.45;
}
.section-faq .faq-list__answer .faq-list__label {
  background: #FF8115;
  width: 9rem;
  height: 4.2rem;
  margin-right: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .section-faq .faq-list__answer .faq-list__label {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-list__answer .faq-list__label {
    width: 7.4rem;
    height: 3.3rem;
    margin-bottom: 1rem;
  }
}
.section-faq .faq-list__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 2.8rem;
  border-radius: 50vw;
  font-size: 2.4rem;
  letter-spacing: 0;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  flex-shrink: 0;
}
dt .section-faq .faq-list__label {
  background-color: #f39800;
}
dd .section-faq .faq-list__label {
  background-color: #8dc21f;
}

.section-entry {
  background: var(--themeColor);
  border-radius: 13rem 0 13rem 0;
  padding-top: 11.1rem;
  padding-bottom: 9.3rem;
}
@media only screen and (max-width: 767px) {
  .section-entry {
    border-radius: 7.8rem 0 7.8rem 0;
    padding-top: 8rem;
    padding-bottom: 6.3rem;
  }
}
.section-entry .headline__title span {
  color: #fff;
}
.section-entry .lead {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 6.5rem;
}
@media only screen and (min-width: 768px) {
  .section-entry .lead {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .section-entry .lead {
    margin-top: 3.2rem;
    font-size: 1.6rem;
  }
}
.section-entry .terms {
  background: #fff;
  border: 2px solid #221814;
  border-radius: 3.2rem;
  padding: 3.2rem;
  margin-top: 6.5rem;
  position: relative;
  padding-top: 2.9rem;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .section-entry .terms {
    margin-top: 4.5rem;
    padding: 2rem;
    font-size: 1.6rem;
  }
}
.section-entry .terms__title {
  color: #fff;
  width: 19.4rem;
  height: 5.8rem;
  background: #221814;
  border: 0.2rem solid #221814;
  border-radius: 50vw;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .section-entry .terms__title {
    width: 14.5rem;
    height: 4.3rem;
    font-size: 1.8rem;
  }
}
.section-entry .terms__body {
  margin-top: 2rem;
  max-height: 48rem;
  overflow: auto;
  font-weight: 500;
  line-height: 1.5;
}
.section-entry .terms__body .block {
  padding-left: 2rem;
}
.section-entry .terms__body .block + .block {
  margin-top: 3rem;
}
.section-entry .terms__body .block.first {
  padding: 0;
}
.section-entry .terms__body a {
  color: #E60213;
  font-weight: 800;
}
.section-entry .terms__subtitle {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .section-entry .terms__subtitle {
    margin-bottom: 2rem;
  }
}
.section-entry .terms__subtitle span {
  background: #fff;
  border: 0.2rem solid #000;
  border-radius: 50vw;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-width: 18rem;
  min-height: 4.9rem;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .section-entry .terms__subtitle span {
    min-width: 14.7rem;
    min-height: 4.3rem;
  }
}
.section-entry .terms__subtitle__child {
  font-weight: bold;
  margin-left: -2rem;
}
.section-entry .agree {
  margin-top: 3.2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section-entry .agree {
    margin-top: 2.8rem;
  }
}
.section-entry .agree__label {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .section-entry .agree__label {
    font-size: 1.8rem;
  }
}
.section-entry .agree__label {
  cursor: pointer;
}
.section-entry .agree__label .check-block {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: #FFFFFF;
  border: 0.1rem solid #FFFFFF;
  border-radius: 4px;
  margin-right: 1rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-entry .agree__label .check-block {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.section-entry .agree__label .check-block::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.9rem;
  border-bottom: 0.3rem solid var(--themeColor);
  border-left: 0.3rem solid var(--themeColor);
  position: absolute;
  top: calc(50% - 0.2rem);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}
.section-entry .agree__checkbox {
  display: none;
}
.section-entry .agree__checkbox:checked + .check-block::before {
  opacity: 1;
}
.section-entry .btn {
  text-align: center;
  margin-top: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .section-entry .btn {
    margin-top: 2.4rem;
  }
}
.section-entry .btn.is-false > span {
  cursor: not-allowed;
}
.section-entry .btn.is-false a {
  background: #B2B2B2;
  pointer-events: none;
}