@charset "UTF-8";

/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFFAE9;
  color: #282C32;
  font-weight: 500;
  counter-reset: number 0;
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-mobile {
  display: block;
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.break-sp {
  display: inline;
}

@media screen and (min-width: 600px) {
  .break-sp {
    display: none;
  }
}

.break-tab {
  display: inline;
}

@media screen and (min-width: 768px) {
  .break-tab {
    display: none;
  }
}

.break-pc {
  display: none;
}

@media screen and (min-width: 600px) {
  .break-pc {
    display: inline;
  }
}

.inner-sp {
  padding-left: 15px;
  padding-left: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .inner-sp {
    padding: 0;
    padding: initial;
  }
}

html {
  font-size: 16px;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol,
li {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.about-button {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #fff;
  padding: 13px 0;
  padding: 0.8125rem 0;
  border: 4px solid;
  border: 0.25rem solid;
  display: inline-block;
  width: 100%;
  border-radius: 15px;
  text-align: center;
  position: relative;
  margin-top: 50px;
  margin-top: 3.125rem;
  font-weight: 900;
}

@media screen and (min-width: 600px) {
  .about-button {
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .about-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-button::after {
  content: "";
  position: absolute;
  right: 25px;
  right: 1.5625rem;
  top: 27%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 6px solid;
  border-top: 0.375rem solid;
  border-right: 6px solid;
  border-right: 0.375rem solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 600px) {
  .about-button::after {
    border-top: 0.5625rem solid;
    border-right: 0.5625rem solid;
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.about-button:hover {
  opacity: 0.3;
}

.about-button span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  display: block;
}

@media screen and (min-width: 768px) {
  .about-button span {
    display: inline;
    display: initial;
    padding-left: 1.25rem;
  }
}

.advantage__point.strong-page {
  counter-increment: point-counter;
}

.advantage__number.strong-page {
  position: absolute;
  background-color: #FFE62B;
  /* 背景色 */
  font-size: 20px;
  font-size: 1.25rem;
  /* テキストサイズの修正 */
  font-weight: 600;
  border: 4px solid;
  top: -38px;
  top: -2.375rem;
}

@media screen and (max-width: 375px) {
  .advantage__number.strong-page {
    top: -1.5rem;
    font-size: 0.75rem;
  }
}

.advantage__number.strong-page span::after {
  counter-increment: point-counter1;
  content: "0" counter(point-counter) "";
}

.advantage__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.25%;
}

@media screen and (max-width: 375px) {
  .advantage__content {
    display: block;
  }
}

.advantage__text {
  width: 51.83%;
}

.advantage__detail {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 21px;
  margin-top: 1.3125rem;
  line-height: 2;
}

.advantage__detail.strong-page {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

@media screen and (max-width: 375px) {
  .advantage__detail.strong-page {
    margin-top: 0.9375rem;
  }
}

.advantage__detail.strong-page span {
  display: block;
}

@media screen and (max-width: 375px) {
  .advantage__detail.strong-page span {
    white-space: nowrap;
  }
}

.advantage__img {
  width: 44.66%;
}

.advantage__img img {
  aspect-ratio: 500/350;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .advantage__list.advantage-page {
    margin-top: 8.125rem;
  }
}

.advantage__title.strong-page {
  margin-top: auto;
}

@media screen and (min-width: 768px) {
  .advantage__title.strong-page {
    margin-top: 3.25rem;
  }
}

.breadcrumbs-wrapper {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 12px;
  font-size: 0.75rem;
  display: none;
}

@media screen and (min-width: 600px) {
  .breadcrumbs-wrapper {
    font-size: 0.75rem;
    margin-top: 0.5625rem;
    display: block;
  }
}

.button-wrapper {
  margin-bottom: 72px;
  margin-bottom: 4.5rem;
}

.card-list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 600px) {
  .card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.8125rem;
    margin-top: 3.625rem;
  }
}

.card-list .card__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 600px) {
  .card-list .card__item:not(:first-child) {
    margin-top: 0;
  }
}

.card__item {
  border: 3px solid;
  border: 0.1875rem solid;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 600px) {
  .card__item {
    width: 45.8%;
  }
}

@media screen and (min-width: 768px) {
  .card__item {
    width: 30.53%;
    border: 0.25rem solid;
  }
}

.blog-card__item {
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.625rem #cccccc;
  box-shadow: 0.3125rem 0.3125rem 0.625rem #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-card__item:hover .card__content {
  color: #fff;
  background: #d2e1ea;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
  opacity: 1;
}

.blog-card__item:hover .card__content .card-category {
  color: 900;
}

.blog-card__item:hover .card__img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.blog-card__item:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 600px) {
  .blog-card__item:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .blog-card__item {
    width: calc(33.33% - 1.04167rem);
  }
}

.card__img {
  width: 100%;
  aspect-ratio: 370/200;
  border-radius: 6px 6px 0 0;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}

.card__img img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.card__img img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.card__content {
  background: #fff;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  padding: 20px;
  padding: 1.25rem;
  border-radius: 0 0 6px 6px;
}

.card__body {
  padding: 2px 21px 16px;
  padding: 0.125rem 1.3125rem 1rem;
}

@media screen and (min-width: 768px) {
  .card__body {
    padding: 0.25rem 1.375rem 1rem;
  }
}

.card__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.9;
  letter-spacing: 0.8px;
  letter-spacing: 0.05rem;
}

@media screen and (min-width: 768px) {
  .card__title {
    line-height: 2.1875rem;
    letter-spacing: 0.0625rem;
  }
}

.card__text {
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 6px;
  padding-top: 0.375rem;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .card__text {
    padding-top: 0.1875rem;
    letter-spacing: 0.0625rem;
    line-height: 1.9;
    margin-top: 0.5625rem;
  }
}

.card__footer {
  padding-top: 1px;
  padding-top: 0.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  padding: 0 20px 10px;
  padding: 0 1.25rem 0.625rem;
}

@media screen and (min-width: 768px) {
  .card__footer {
    padding-top: 0.8125rem;
  }
}

.card-category {
  position: relative;
  font-weight: 700;
  margin-right: auto;
  background: #FFE62B;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 6px 8px;
  padding: 0.375rem 0.5rem;
}

@media screen and (min-width: 768px) {
  .card-category {
    letter-spacing: 0.11875rem;
  }
}

.card-date {
  margin-left: auto;
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.4px;
  letter-spacing: 0.025rem;
}

.blog__list-footer {
  padding-top: 25px;
  padding-top: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .blog__list-footer {
    text-align: center;
    padding-top: 3rem;
  }
}

.detail-button {
  display: inline-block;
  background-color: #fff;
  color: #DD2E1E;
  text-align: center;
  border: 2px solid #DD2E1E;
  border-radius: 50px;
  font-size: 20px;
  font-size: 1.25rem;
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  padding: 10px 0;
  padding: 0.625rem 0;
  font-weight: 900;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
}

@media screen and (max-width: 375px) {
  .detail-button {
    font-size: 0.875rem;
    padding: 0.375rem 0;
    width: 100%;
  }
}

.detail-button a {
  display: inline-block;
  padding: 6px 0;
  padding: 0.375rem 0;
}

.detail-button:hover {
  background-color: #DD2E1E;
  color: #fff;
  opacity: 1;
}

.detail-button.p-formBtn {
  color: #E10029;
  width: 100%;
  border-radius: 15px;
  font-size: 19px;
  font-size: 1.1875rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .detail-button.p-formBtn {
    font-size: 1.875rem;
  }
}

.detail-button.p-formBtn::after {
  content: "";
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 38%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 4px solid;
  border-top: 0.25rem solid;
  border-right: 4px solid;
  border-right: 0.25rem solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .detail-button.p-formBtn::after {
    content: "";
    position: absolute;
    right: 2.875rem;
    top: 33%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 2.0625rem;
    height: 2.0625rem;
    margin: 0 0.625rem;
    border-top: 0.5625rem solid;
    border-right: 0.5625rem solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.detail-button.back-button {
  background-color: #fff;
  color: #DD2E1E;
  border-radius: 50px;
  font-size: 16px;
  font-size: 1rem;
  margin-right: 30px;
  margin-right: 1.875rem;
  width: 40%;
  -webkit-transition: background-color 0.5s ease, color 0.5s ease;
  transition: background-color 0.5s ease, color 0.5s ease;
}

@media screen and (min-width: 600px) {
  .detail-button.back-button {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 375px) {
  .detail-button.back-button {
    font-size: 0.875rem;
  }
}

.detail-button.back-button::after {
  right: 10px;
  border-top: 3px solid;
  border-right: 3px solid;
  width: 12px;
  height: 12px;
}

/*======================================
            テスト
=======================================*/
.detail-button-test {
  display: inline-block;
  background-color: #fff;
  color: #DD2E1E;
  text-align: center;
  border: 2px solid #DD2E1E;
  border-radius: 50px;
  font-size: 20px;
  font-size: 1.25rem;
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  padding: 10px 0;
  padding: 0.625rem 0;
  font-weight: 900;
}

@media screen and (max-width: 375px) {
  .detail-button-test {
    font-size: 0.875rem;
    padding: 0.375rem 0;
    width: 100%;
  }
}

.detail-button-test-2 {
  display: inline-block;
  background-color: #fff;
  color: #DD2E1E;
  text-align: center;
  border: 2px solid #DD2E1E;
  border-radius: 50px;
  font-size: 20px;
  font-size: 1.25rem;
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  padding: 10px 0;
  padding: 0.625rem 0;
  font-weight: 900;
}

@media screen and (max-width: 375px) {
  .detail-button-test-2 {
    font-size: 0.875rem;
    padding: 0.375rem 0;
    width: 100%;
  }
}

.detail-button-test a {
  display: inline-block;
  padding: 6px 0;
  padding: 0.375rem 0;
}

.detail-button-test.change {
  color: black;
}

.detail-button-test-2.change {
  color: black;
}

.drawer__button a {
  display: block;
  width: 100%;
  padding: 12px 0;
  padding: 0.75rem 0;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #282c32;
  font-weight: 500;
  background-image: linear-gradient(135deg, #fec721 25%, #ffcf39 25%, #ffcf39 50%, #fec721 50%, #fec721 75%, #ffcf39 75%, #ffcf39 100%);
  background-size: 28.28px 28.28px;
  position: relative;
}

.drawer__button a::before {
  content: "";
  position: absolute;
  right: 9px;
  right: 0.5625rem;
  top: 36%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 3px solid;
  border-top: 0.1875rem solid;
  border-right: 3px solid;
  border-right: 0.1875rem solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer__button.drawer__button--red a {
  background-image: linear-gradient(135deg, #de3728 25%, #dc2e1d 25%, #dc2e1d 50%, #de3728 50%, #de3728 75%, #dc2e1d 75%, #dc2e1d 100%);
  background-size: 28.28px 28.28px;
  color: #fff;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.drawer__button.drawer__button--orange a {
  background-image: linear-gradient(135deg, #fe9621 25%, #fd9420 25%, #fd9420 50%, #fe9621 50%, #fe9621 75%, #fd9420 75%, #fd9420 100%);
  background-size: 28.28px 28.28px;
  padding-left: 60px;
  padding-left: 3.75rem;
  text-align: left;
  text-align: initial;
}

.drawer__button a::after {
  content: "";
  position: absolute;
  left: 15px;
  left: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/common-icon1.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 34px;
  height: 2.125rem;
  width: 22px;
  width: 1.375rem;
}

.drawer__button a::after {
  content: "";
  position: absolute;
  left: 15px;
  left: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/common-icon1.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 34px;
  height: 2.125rem;
  width: 22px;
  width: 1.375rem;
}

.pdf-button a::after {
  background-image: none !important;
}

.drawer__button.drawer__button--red a::after {
  background-image: url(../images/common/common-ticon2.png);
  height: 27px;
  height: 1.6875rem;
  width: 23px;
  width: 1.4375rem;
  padding-left: 26px;
  padding-left: 1.625rem;
}

.drawer__button.drawer__button--orange a::after {
  background-image: url(../images/common/common-ticon3.png);
  height: 30px;
  height: 1.875rem;
  width: 41px;
  width: 2.5625rem;
}

.drawer__button.drawer__button--red a::before {
  border-top: 4px solid #fff;
  border-top: 0.25rem solid #fff;
  border-right: 4px solid #fff;
  border-right: 0.25rem solid #fff;
}

body.active {
  height: 100%;
  overflow: hidden;
}

.drawer__content-inner {
  padding: 52px 0;
  padding: 3.25rem 0;
}

body.home .drawer__icon {
  display: block;
}

@media screen and (min-width: 1024px) {
  body.home .drawer__icon {
    display: none;
  }
}

.drawer__icon {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 25px;
  width: 1.5625rem;
  height: 17px;
  height: 1.0625rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 1000;
  padding: 16px 13px;
  padding: 1rem 0.8125rem;
  background-color: #DD2E1E;
}

@media screen and (min-width: 768px) {
  .drawer__icon {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .drawer__icon {
    width: 2.5rem;
    height: 1.625rem;
  }
}

.drawer__icon.is-open {
  z-index: 900;
}

.drawer__icon.is-open .drawer__icon-bar1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
  top: 0.4375rem;
}

@media screen and (min-width: 600px) {
  .drawer__icon.is-open .drawer__icon-bar1 {
    top: 0.9375rem;
  }
}

.drawer__icon.is-open .drawer__icon-bar2 {
  display: none;
}

.drawer__icon.is-open .drawer__icon-bar3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 7px;
  top: 0.4375rem;
}

@media screen and (min-width: 600px) {
  .drawer__icon.is-open .drawer__icon-bar3 {
    top: 0.9375rem;
  }
}

.drawer__icon-bars {
  position: relative;
  width: 26px;
  width: 1.625rem;
  height: 14px;
  height: 0.875rem;
  top: -6px;
  top: -0.375rem;
}

@media screen and (max-width: 375px) {
  .drawer__icon-bars {
    top: -0.125rem;
  }
}

@media screen and (min-width: 600px) {
  .drawer__icon-bars {
    width: 2.3125rem;
  }
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  height: 0.125rem;
}

@media screen and (min-width: 600px) {

  .drawer__icon-bar1,
  .drawer__icon-bar2,
  .drawer__icon-bar3 {
    height: 0.25rem;
  }
}

.drawer__icon-bar1 {
  top: 0;
  background: #fff;
  border-radius: 0.9375rem;
}

@media screen and (min-width: 600px) {
  .drawer__icon-bar1 {
    top: 4px;
  }
}

.drawer__icon-bar2 {
  top: 9px;
  top: 0.5625rem;
  background: #fff;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.9375rem;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .drawer__icon-bar2 {
    top: 1.0625rem;
    height: 0.25rem;
  }
}

.drawer__icon-bar3 {
  top: 19px;
  top: 1.1875rem;
  background: #fff;
  height: 2px;
  height: 0.125rem;
  border-radius: 0.9375rem;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .drawer__icon-bar3 {
    top: 1.8125rem;
    height: 0.25rem;
  }
}

.drawer__content {
  overflow: scroll;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background: #fff;
  height: 720px;
  height: 45rem;
  width: 340px;
  width: 21.25rem;
  z-index: 800;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  display: block;
  height: 100vh;
}

.drawer__content-items {
  color: #282C32;
  line-height: 1.57;
  position: relative;
  list-style: none;
}

.drawer__content-items a {
  position: relative;
}

.drawer__content-items a .drawer__content-items::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  background: 900;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.drawer__content-item {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  letter-spacing: 1.6px;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid;
  position: relative;
  text-align: left;
}

.drawer__content-item a {
  display: block;
  padding: 12px 0 12px 71px;
  padding: 0.75rem 0 0.75rem 4.4375rem;
  position: relative;
  font-weight: 700;
}

.drawer__content-item.buy {
  padding: 13px 0px 19px 0;
  padding: 0.8125rem 0rem 1.1875rem 0;
}

.drawer__content-item p {
  display: block;
  padding-left: 71px;
  padding-left: 4.4375rem;
  position: relative;
}

.drawer__content-item.buy::before {
  display: none;
}

.drawer__content-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  right: 2.25rem;
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  border-top: 2px solid #000;
  border-top: 0.125rem solid #000;
  border-right: 2px solid #000;
  border-right: 0.125rem solid #000;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer__content-item.contact::after {
  content: none;
}

.drawer__nav-item {
  display: block;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.drawer__nav-modal .drawer__nav-item a {
  display: block;
  position: relative;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 0 0 0 70px;
  padding: 0 0 0 4.375rem;
  font-weight: 600;
}

.drawer__content-item p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  right: 2.25rem;
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  border-top: 2px solid #000;
  border-top: 0.125rem solid #000;
  border-right: 2px solid #000;
  border-right: 0.125rem solid #000;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer__content-item::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/common/ico-blog.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 22px;
  height: 1.375rem;
  width: 20px;
  width: 1.25rem;
}

.drawer__content-item.strong::after {
  background: url(../images/common/ico-strong.png);
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

.drawer__content-item.buy::after {
  background: url(../images/common/ico-package.png);
  position: absolute;
  left: 10%;
  top: 22%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  height: 22px;
  height: 1.375rem;
  width: 20px;
  width: 1.25rem;
}

.drawer__content-item.faq::after {
  background: url(../images/common/ico-faq.png);
  content: "";
  position: absolute;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.drawer__content-item.voice::after {
  background: url(../images/common/ico-voice.png);
  content: "";
  position: absolute;
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.drawer__content-item.blog::after {
  background: url(../images/common/ico-blog.png);
  content: "";
  position: absolute;
  height: 27px;
  height: 1.6875rem;
  width: 21px;
  width: 1.3125rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.drawer__content-item.company::after {
  background: url(../images/common/ico-company.png);
  content: "";
  position: absolute;
  height: 28px;
  height: 1.75rem;
  width: 20px;
  width: 1.25rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.drawer__content-item.shop::after {
  background: url(../images/common/ico-shop.png);
  content: "";
  position: absolute;
  height: 23px;
  height: 1.4375rem;
  width: 22px;
  width: 1.375rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.drawer__button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.drawer__button a {
  font-weight: 900;
}

.drawer__inner {
  padding: 0 35px;
  padding: 0 2.1875rem;
}

.footer {
  background-color: #decc91;
}

.footer__inner {
  padding: 39px 25px 30px;
  padding: 2.4375rem 1.5625rem 1.875rem;
}

@media screen and (max-width: 375px) {
  .footer__inner {
    padding: 1.1875rem 1.5625rem 1.875rem;
  }
}

.footer__wrapper {
  display: block;
}

@media screen and (min-width: 600px) {
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12%;
  }
}

.footer__company-name {
  font-size: clamp(15.008px, 11.36px + 0.971vw, 30px);
  font-size: clamp(0.938rem, 0.71rem + 0.971vw, 1.875rem);
  font-weight: 700;
}

.footer__address {
  margin-top: 11px;
  margin-top: 0.6875rem;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 375px) {
  .footer__address {
    font-size: 0.75rem;
    letter-spacing: 0.00625rem;
    margin-top: 0.1875rem;
  }
}

.footer__address span {
  white-space: nowrap;
  margin-top: 6px;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0;
}

@media screen and (max-width: 375px) {
  .footer__address span {
    font-size: 0.75rem;
  }
}

.registered-information {
  font-size: 12px;
  font-size: 0.75rem;
  white-space: nowrap;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

@media screen and (max-width: 375px) {
  .registered-information {
    font-size: 0.5rem;
    margin-top: 0.125rem;
  }
}

.footer__nav {
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 375px) {
  .footer__nav {
    margin-top: 1.625rem;
  }
}

.footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 9px;
  font-size: 0.5625rem;
  row-gap: 8px;
  row-gap: 0.5rem;
  gap: 2.5%;
  font-weight: 400;
  cursor: pointer;
}

@media screen and (min-width: 600px) {
  .footer__nav-items {
    gap: 2%;
    row-gap: 0.375rem;
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 375px) {
  .footer__nav-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__nav-items {
    font-size: 1rem;
    gap: 2%;
    row-gap: 1.25rem;
    font-size: 0.9375rem;
  }
}

.footer__nav-item :hover {
  opacity: 0.6;
}

.footer__nav .footer__nav-items:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (max-width: 375px) {
  .footer__nav .footer__nav-items:not(:first-child) {
    margin-top: 0;
  }
}

.footer__copyright {
  padding: 22px 0;
  padding: 1.375rem 0;
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
  background-color: white;
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

.header {
  top: 5px;
  top: 0.3125rem;
  left: 0;
  right: 0;
  margin-top: 13px;
  margin-top: 0.8125rem;
  position: fixed;
  width: 95%;
  margin: auto;
  border-radius: 24px;
  max-width: 100%;
  z-index: 900;
  height: clamp(67.008px, 38.336px + 3.73vw, 110px);
  height: clamp(4.188rem, 2.396rem + 3.73vw, 6.875rem);
}

@media screen and (min-width: 1024px) {
  .header {
    top: 1.0625rem;
  }
}

.active__header {
  background: 900;
  -webkit-transition: background 0.7s ease;
  transition: background 0.7s ease;
}

body.home .header__inner {
  display: none;
  background: #fff;
}

@media screen and (min-width: 1024px) {
  body.home .header__inner {
    height: inherit;
    padding: 0 0.9375rem;
    display: block;
  }
}

body:not(.home) .header__inner {
  display: none;
  background: #fff;
}

@media screen and (min-width: 768px) {
  body:not(.home) .header__inner {
    height: inherit;
    padding: 0 0.9375rem;
    display: block;
  }
}

.header__inner {
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .25);
  box-shadow: 0 10px 10px rgba(0, 0, 0, .25);
}

.header__logo {
  width: 70px;
  width: 4.375rem;
  height: inherit;
  padding-top: 10px;
  padding-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 5.875rem;
  }
}

.header__nav-list {
  display: none;
  height: inherit;
}

@media screen and (min-width: 768px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header__nav-item {
  height: inherit;
  position: relative;
}

.header__nav-item a {
  position: relative;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/*======================================
              hoverアクション
=======================================*/
.header__nav-item a::after {
  content: "";
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #DD2E1E;
  height: 2px;
  height: 0.125rem;
  width: 100%;
  bottom: 8px;
  bottom: 0.5rem;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.header__nav-modal-item a {
  position: relative;
  text-decoration: none;
  color: black;
}

@media screen and (min-width: 1024px) {
  .header__nav-modal-item a {
    font-size: 0.5625rem;
  }
}

@media screen and (min-width: 1440px) {
  .header__nav-modal-item a {
    font-size: 0.875rem;
  }
}

.header__nav-modal-item a::after {
  content: "";
  position: absolute;
  left: 2px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #DD2E1E;
  height: 1px;
  height: 0.0625rem;
  width: calc(100% - 0.3125rem);
  bottom: -2px;
  bottom: -0.125rem;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__nav-modal-item a:hover {
  color: #DD2E1E;
}

.no-hover a::after,
.no-hover a:hover::after {
  content: none;
}

.header__nav-home {
  font-size: 30px;
  font-size: 1.875rem;
  background: #DD2E1E;
  color: #fff;
  height: auto;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__nav-home:hover {
  opacity: 0.5;
}

.header__nav-home a {
  padding: 12px 54px;
  padding: 0.75rem 3.375rem;
}

.header__nav-item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__nav-item-img img {
  width: 33px;
  width: 2.0625rem;
  height: 38px;
  height: 2.375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__nav-item-img.faq img {
  width: 44px;
  width: 2.75rem;
  height: 38px;
  height: 2.375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__nav-item-img.voice img {
  width: 44px;
  width: 2.75rem;
  height: 38px;
  height: 2.375rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__nav-item-menu {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: clamp(10px, 0.864px + 0.89vw, 18px);
  font-size: clamp(0.625rem, 0.054rem + 0.89vw, 1.125rem);
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__nav-item-menu:hover {
  color: #DD2E1E;
}

.header__nav-item-menu.heder-contact--border:hover {
  color: white;
}

.header__nav-item-home {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 900;
}

.header__nav-item-menu.modal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__nav-item span {
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-left: 7px;
  margin-left: 0.4375rem;
  display: inline-block;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  border-top: 2px solid #DD2E1E;
  border-top: 0.125rem solid #DD2E1E;
  border-right: 2px solid #DD2E1E;
  border-right: 0.125rem solid #DD2E1E;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.header__nav-item:hover .header__nav-modal {
  display: block;
}

/*======================================
                  ヘッダーモーダル
    =======================================*/
.header__nav-modal {
  visibility: hidden;
  /*デフォルトでは非表示の状態にしておく*/
  opacity: 0;
  /*不透明度0*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__nav-item:hover .header__nav-modal {
  visibility: visible;
  /*Gナビメニューにホバーしたら表示*/
  opacity: 1;
}

.header__nav-item.header__contact {
  background-color: #DD2E1E;
  height: inherit;
}

.header__nav-contact {
  background-color: #DD2E1E;
  height: auto;
  padding: 5px 5px;
  padding: 0.3125rem 0.3125rem;
  font-size: 25px;
  font-size: 1.5625rem;
  border-radius: 5px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__nav-contact:hover {
  opacity: 0.5;
}

.header__contact-inner {
  height: inherit;
}

.header__nav-item-menu.heder-contact--border {
  padding: 5px 0;
  padding: 0.3125rem 0;
  margin-top: auto;
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  font-weight: 900;
  padding: 16px 10px;
  border-radius: 5px;
  font-size: clamp(10px, -7.136px + 1.67vw, 25.008px);
  font-size: clamp(0.625rem, -0.446rem + 1.67vw, 1.563rem);
}

/*======================================
            ヘッダーモーダル
  =======================================*/
.header__nav-modal-item {
  font-size: clamp(6px, 3.328px + 0.347vw, 10px);
  font-size: clamp(0.375rem, 0.208rem + 0.347vw, 0.625rem);
  background-color: #fff;
  display: block;
  position: relative;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}

.header__nav-modal-item span {
  width: clamp(5.008px, 1.664px + 0.434vw, 10px);
  width: clamp(0.313rem, 0.104rem + 0.434vw, 0.625rem);
  height: clamp(5.008px, 1.664px + 0.434vw, 10px);
  height: clamp(0.313rem, 0.104rem + 0.434vw, 0.625rem);
  border-top: 2px solid #DD2E1E;
  border-top: 0.125rem solid #DD2E1E;
  border-right: 2px solid #DD2E1E;
  border-right: 0.125rem solid #DD2E1E;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 9px;
  margin-right: 0.5625rem;
}

.header__nav-modal-item a {
  display: block;
}

.inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.top-flow {
  margin-top: 180px;
  margin-top: 11.25rem;
}

@media screen and (max-width: 375px) {
  .top-flow {
    margin-top: 3.125rem;
  }
}

.top-strong-page {
  margin-top: 108px;
  margin-top: 6.75rem;
}

@media screen and (min-width: 768px) {
  .top-product__wrapper {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 375px) {
  .top-product__wrapper {
    margin-top: 1.3125rem;
  }
}

.top-transfer {
  margin-top: 106px;
  margin-top: 6.625rem;
}

@media screen and (max-width: 375px) {
  .top-transfer {
    margin-top: 4.375rem;
  }
}

.package-product__wrapper {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .package-product__wrapper {
    margin-top: 9.875rem;
  }
}

.top-contact {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .top-contact {
    margin-top: 3.625rem;
  }
}

.top-cleat-page {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .top-cleat-page {
    margin-top: 3.625rem;
  }
}

@media screen and (max-width: 375px) {
  .top-footer {
    margin-top: 6.25rem;
  }
}

.top-corporation {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 375px) {
  .top-corporation {
    margin-top: 2.5rem;
  }
}

.mv {
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/sp/kasou-mv-sp.png);
  aspect-ratio: 375/180;
}

@media screen and (min-width: 768px) {
  .mv {
    background-image: url(../images/contact/create-account_mv-pc.png);
    aspect-ratio: 1920/516;
  }
}

@media screen and (min-width: 768px) {
  .strong-mv {
    background-image: url(../images/strong/strong_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .flow-mv {
    background-image: url(../images/flow/flow_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .faq-mv {
    background-image: url(../images/faq/faq_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .package-mv {
    background-image: url(../images/package/package_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .voice-mv {
    background-image: url(../images/voice/voice_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .blog-mv {
    background-image: url(../images/blog/blog_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .company-mv {
    background-image: url(../images/company/company_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .shop-mv {
    background-image: url(../images/shop/shop_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .contact-mv {
    background-image: url(../images/contact/contact_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .create-account-mv {
    background-image: url(../images/contact/create-account_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .form-parsonal-mv {
    background-image: url(../images/contact/form-parsonal_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .corporation-form-mv {
    background-image: url(../images/contact/corporation-form_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .privacy-mv {
    background-image: url(../images/privacy/privacy_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .regulation-mv {
    background-image: url(../images/regulation/regulation_mv-pc.png);
  }
}

@media screen and (min-width: 768px) {
  .rule-mv {
    background-image: url(../images/rule/rule_mv-pc.png);
  }
}

.mv__main-text-img {
  padding-top: 18px;
  padding-top: 1.125rem;
  width: 60%;
  margin: 0;
  margin: initial;
}

@media screen and (min-width: 768px) {
  .mv__main-text-img {
    padding-top: clamp(5rem, 1.792rem + 6.684vw, 9.813rem);
    width: 38%;
    margin: auto;
  }
}

.mv__main-text-img.privacy {
  padding-top: 40px;
  padding-top: 2.5rem;
  margin-left: -5px;
  margin-left: -0.3125rem;
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.privacy {
    padding-top: 9.375rem;
    padding-left: 0;
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.mv-width-1 {
    width: 43%;
  }
}

.mv__main-text-img.mv-width-2 {
  width: 65%;
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.mv-width-2 {
    width: 69%;
  }
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.voice {
    width: 44%;
  }
}

.mv__inner {
  position: relative;
}

.mv__main-text-img.site-map {
  width: 65%;
  padding-top: 80px;
  padding-top: 5rem;
}

@media screen and (max-width: 375px) {
  .mv__main-text-img.site-map {
    padding-top: 2.5rem;
    width: 65%;
  }
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.site-map {
    width: 45%;
    padding-top: 4.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .mv__main-text-img.site-map {
    padding-top: 7.3125rem;
  }
}

@media screen and (min-width: 1440px) {
  .mv__main-text-img.site-map {
    padding-top: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.mv-width-faq {
    width: 31%;
  }
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.mv-width-form_parsonal {
    width: 50%;
  }
}

@media screen and (min-width: 1440px) {
  .mv__main-text-img.mv-width-form_parsonal {
    width: 61%;
  }
}

.mv__main-text-img.mv-width-blog {
  width: 32%;
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.mv-width-blog {
    width: 26%;
  }
}

.mv__main-text-img.mv-width-shop {
  width: 43%;
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.mv-width-shop {
    width: 32%;
  }
}

@media screen and (min-width: 768px) {
  .corporation-form-mv-text-img {
    width: 72%;
  }
}

.mv__text {
  font-weight: 700;
  text-align: left;
  font-size: clamp(12px, 4.352px + 2.041vw, 20px);
  font-size: clamp(0.75rem, 0.272rem + 2.041vw, 1.25rem);
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (min-width: 768px) {
  .mv__text {
    font-size: clamp(0.875rem, 0.292rem + 1.22vw, 1.75rem);
    text-align: center;
    margin-top: 0;
    letter-spacing: 0.1rem;
  }
}

@media screen and (min-width: 1024px) {
  .mv__text {
    margin-top: 0;
  }
}

@media screen and (min-width: 1440px) {
  .mv__text {
    margin-top: 1.625rem;
  }
}

.mv__text span {
  display: block;
}

.mv__text.faq {
  margin-top: 26px;
  margin-top: 1.625rem;
}

@media screen and (min-width: 768px) {
  .mv__text.faq {
    white-space: nowrap;
    margin-top: 1.625rem;
    letter-spacing: 0.1rem;
  }
}

@media screen and (min-width: 1024px) {
  .mv__text.voice {
    margin-top: 0;
  }
}

@media screen and (min-width: 1440px) {
  .mv__text.voice {
    margin-top: 1.6875rem;
  }
}

@media screen and (min-width: 1440px) {
  .mv__text.confirm {
    margin-top: 0;
  }
}

@media screen and (min-width: 600px) {
  .mv__main-text-img.contact {
    width: 28%;
  }
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.mypage {
    width: 50%;
  }
}

.mv__main-text-img.rule-page {
  width: 40%;
  margin-left: -9px;
}

@media screen and (min-width: 768px) {
  .mv__main-text-img.rule-page {
    width: 24%;
    margin-left: auto;
  }
}



.registration-button {
  border: 4px solid;
  border: 0.25rem solid;
  display: inline-block;
  border-radius: 15px;
  background-image: linear-gradient(135deg, #fec721 25%, #ffcf39 25%, #ffcf39 50%, #fec721 50%, #fec721 75%, #ffcf39 75%, #ffcf39 100%);
  background-size: 28.28px 28.28px;
  padding: 38px 0 34px 0;
  padding: 2.375rem 0 2.125rem 0;
  position: relative;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .registration-button {
    width: 47.82%;
    height: 11.25rem;
    font-size: 1.875rem;
  }
}

.registration-button::before {
  content: "";
  position: absolute;
  left: 30px;
  left: 1.875rem;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/common/common-icon1.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 50%;
  width: 11%;
}

@media screen and (min-width: 1024px) {
  .registration-button::before {
    width: 15%;
  }
}

@media screen and (min-width: 768px) {
  .registration-button::before {
    left: 4.1875rem;
  }
}

.registration-button::after {
  content: "";
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 41%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 6px solid;
  border-top: 0.375rem solid;
  border-right: 6px solid;
  border-right: 0.375rem solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 600px) {
  .registration-button::after {
    border-top: 0.5625rem solid;
    border-right: 0.5625rem solid;
    width: 2.0625rem;
    height: 2.0625rem;
  }
}

.registration-button span {
  display: none;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .registration-button span {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.registration-button p {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
}

@media screen and (min-width: 600px) {
  .registration-button p {
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .registration-button p {
    text-align: center;
    position: absolute;
    left: 30%;
    top: 20%;
    font-size: 1.8125rem;
  }
}

.registration-button.registration-button--red p {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .registration-button.registration-button--red p {
    text-align: center;
    position: absolute;
    left: 21%;
    top: 17%;
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 600px) {
  .registration-button.registration-button--red p {
    font-size: 1.875rem;
  }
}

.registration-button.registration-button--red span {
  display: none;
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .registration-button.registration-button--red span {
    display: block;
    font-size: 1.3125rem;
    margin-bottom: 0.375rem;
  }
}

.registration-button.registration-button--red {
  background-image: linear-gradient(135deg, #de3728 25%, #dc2e1d 25%, #dc2e1d 50%, #de3728 50%, #de3728 75%, #dc2e1d 75%, #dc2e1d 100%);
  background-size: 28.28px 28.28px;
  position: relative;
}

.registration-button.registration-button--red::before {
  background-image: url(../images/common/common-ticon2.png);
  left: 17px;
  left: 1.0625rem;
}

@media screen and (min-width: 768px) {
  .registration-button.registration-button--red::before {
    top: 55%;
  }
}

.registration-button.registration-button--red::after {
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  border-top: 6px solid #fff;
  border-top: 0.375rem solid #fff;
  border-right: 6px solid #fff;
  border-right: 0.375rem solid #fff;
}

@media screen and (min-width: 600px) {
  .registration-button.registration-button--red::after {
    border-top: 0.5625rem solid #fff;
    border-right: 0.5625rem solid #fff;
    width: 1.875rem;
    height: 1.875rem;
    right: 1.5625rem;
  }
}

.registration-button--orange {
  background-size: auto auto;
  background-color: rgb(255, 163, 57);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 28.28px, rgb(254, 150, 33) 28.28px, rgb(254, 150, 33) 56.56px);
  background-image: linear-gradient(135deg, rgb(254, 150, 33) 25%, rgb(255, 163, 57) 25%, rgb(255, 163, 57) 50%, rgb(254, 150, 33) 50%, rgb(254, 150, 33) 75%, rgb(255, 163, 57) 75%, rgb(255, 163, 57) 100%);
  background-size: 28.28px 28.28px;
  width: 100%;
}

.registration-button.registration-button--orange span {
  display: none;
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .registration-button.registration-button--orange span {
    display: inline-block;
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    margin-top: 0.5625rem;
    display: block;
  }
}

.registration-button.registration-button--orange p {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (min-width: 600px) {
  .registration-button.registration-button--orange p {
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .registration-button.registration-button--orange p {
    text-align: center;
    position: absolute;
    left: 33%;
    top: 23%;
    font-size: 1.8125rem;
  }
}

.registration-button.registration-button--orange::before {
  background-image: url(../images/common/common-ticon3.png);
  width: 11%;
  height: 25%;
  left: 17px;
  left: 1.0625rem;
}

@media screen and (min-width: 768px) {
  .registration-button.registration-button--orange::before {
    height: 58%;
    left: 14.5rem;
  }
}

.registration-button--orange .sp-attention {
  display: none;
}

@media screen and (min-width: 600px) {
  .registration-button--orange .sp-attention {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .registration-button--orange .sp-attention {
    display: inline;
  }
}

.vendor-attention {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .vendor-attention {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-attention {
    margin-top: 3.875rem;
  }
}

.title {
  width: 59%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .title {
    width: 38%;
  }
}

.sp-fix-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-weight: 900;
}

@media screen and (min-width: 600px) {
  .sp-fix-button-wrapper {
    display: none;
  }
}

.sp-fix-button {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  width: 100%;
}

.sp-fix-button a {
  display: inline-block;
  padding-top: 9px;
  padding-top: 0.5625rem;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  width: 100%;
}

.sp-first-button {
  background-image: linear-gradient(135deg, #fec721 25%, #ffcf39 25%, #ffcf39 50%, #fec721 50%, #fec721 75%, #ffcf39 75%, #ffcf39 100%);
  background-size: 28.28px 28.28px;
}

.sp-second-button {
  color: #fff;
  background-image: linear-gradient(135deg, #de3728 25%, #dc2e1d 25%, #dc2e1d 50%, #de3728 50%, #de3728 75%, #dc2e1d 75%, #dc2e1d 100%);
  background-size: 28.28px 28.28px;
}

.sp-vendor-button {
  background-image: linear-gradient(135deg, #fe9621 25%, #fd9420 25%, #fd9420 50%, #fe9621 50%, #fe9621 75%, #fd9420 75%, #fd9420 100%);
  background-size: 28.28px 28.28px;
}

.step-number {
  display: inline-block;
  background-color: #ffe62b;
  /* 背景色 */
  font-size: 15px;
  font-size: 0.9375rem;
  /* テキストサイズの修正 */
  border: 1px solid;
  padding: 0 3px 0 17px;
  position: relative;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 375px) {
  .step-number {
    padding: 0 9px 0 17px;
  }
}

@media screen and (min-width: 768px) {
  .step-number {
    font-size: 15px;
    border: 2px solid;
  }
}

.step-number:hover {
  opacity: 0.5;
}

.step-number a {
  font-family: Arial;
  letter-spacing: 0px;
  font-size: 10px;
  font-size: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3px 0;
  padding: 0.1875rem 0;
}

@media screen and (max-width: 375px) {
  .step-number a {
    letter-spacing: 0px;
    font-size: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.1875rem 0;
  }
}

@media screen and (min-width: 768px) {
  .step-number a {
    font-size: 0.9375rem;
    padding: 0.125rem 0.1875rem;
  }
}


.step-button-wrapper .step-number:nth-child(n+4) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.step-number span {
  font-size: 10px;
  /* テキストサイズの修正 */
}

@media screen and (min-width: 768px) {
  .step-number span {
    font-size: 15px;
  }
}

.step-number::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 52%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 7px solid;
}

@media screen and (min-width: 768px) {
  .step-number::before {
    top: 52%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 11px solid;
  }
}

.step-number span::after {
  counter-increment: number 1;
  content: "." counter(number) "";
}

.step-button-wrapper {
  text-align: center;
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.step-button-wrapper .step-number:not(:last-child) {
  margin-right: 10px;
  margin-right: 0.625rem;
}

@media screen and (min-width: 768px) {
  .step-button-wrapper .step-number:not(:last-child) {
    margin-right: 1.875rem;
  }
}

.stripe-title {
  padding: 12px 0;
  padding: 0.75rem 0;
  font-size: clamp(24px, 22.544px + 0.388vw, 30px);
  font-size: clamp(1.5rem, 1.409rem + 0.388vw, 1.875rem);
  font-weight: 900;
  text-align: center;
  width: 100%;
  background-image: linear-gradient(134deg, #fffcf0 25%, #fce5a7 25%, #fce5a7 50%, #fffcf0 50%, #fffcf0 75%, #fce5a7 75%, #fce5a7 100%);
  background-size: 1.2275rem 1.259375rem;
}

@media screen and (min-width: 768px) {
  .stripe-title {
    padding: 1.1875rem 0;
  }
}

@media screen and (max-width: 375px) {
  .stripe-title {
    font-size: 1.625rem;
  }
}

.stripe-title.pwd-reset {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}

@media screen and (min-width: 768px) {
  .stripe-title.pwd-reset {
    margin-bottom: 3.125rem;
  }
}

.vertical-button-wrapper {
  display: none;
}

@media screen and (min-width: 768px) {
  .vertical-button-wrapper {
    display: block;
    width: 6.25rem;
    height: 510px;
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
  }
}

.vertical-button-wrapper .vertical-button:not(:first-child) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.vertical-number {
  -webkit-text-orientation: upright;
  text-orientation: upright;
  display: inline-block;
}

.vertical-button {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-image: linear-gradient(135deg, #de3728 25%, #dc2e1d 25%, #dc2e1d 50%, #de3728 50%, #de3728 75%, #dc2e1d 75%, #dc2e1d 100%);
  background-size: 28.28px 28.28px;
  display: inline-block;
  padding: 20px 13px 20px;
  padding: 1.25rem 0.8125rem 1.25rem;
  font-size: 23px;
  font-size: 1.4375rem;
  color: #fff;
  font-weight: 900;
  border-radius: 15px 0 0 15px;
  border: 4px solid #282c32;
}

.vertical-button-wrapper a:hover {
  opacity: 0.6;

}

.vertical-button .vertical {
  display: block;
}

.vertical-red-button.vertical-button {
  margin-top: 11%;
}

.vertical-yellow-button.vertical-button {
  color: #282c32;
  font-weight: 900;
  background-image: linear-gradient(135deg, #fec721 25%, #ffcf39 25%, #ffcf39 50%, #fec721 50%, #fec721 75%, #ffcf39 75%, #ffcf39 100%);
  background-size: 28.28px 28.28px;
}

.vertical-orange-button.vertical-button {
  background-image: linear-gradient(135deg, #ffa339 25%, #fe9621 25%, #fe9621 50%, #ffa339 50%, #ffa339 75%, #fe9621 75%, #fe9621 100%);
  margin-top: 22%;
  background-size: 28.28px 28.28px;
  color: #282c32;
}

/* 左側固定（左用wrapperにだけ適用） */
@media screen and (min-width: 768px) {
  .vertical-button-wrapper.vertical-button-wrapper--left {
    left: 0;
    right: auto;
    /* 既存の right:0 を無効化 */
  }
}

/* 左側に出すなら角丸を左右反転（任意：見た目を自然に） */
.vertical-button-wrapper--left .vertical-button {
  border-radius: 0 15px 15px 0;
}

.test-q-content {
  border: 4px solid;
  border: 0.25rem solid;
  font-size: 20px;
  font-size: 1.25rem;
  height: 100%;
}

.test-q {
  width: 5%;
  text-align: center;
  background-color: yellow;
  border-right: 4px solid;
  border-right: 0.25rem solid;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: Arial;
}

.test-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  padding-left: 32px;
  padding-left: 2rem;
  font-size: 20px;
  font-size: 1.25rem;
  padding-right: 6%;
}

.test-question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.blog-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
}

.blog-card {
  border: 2px solid;
  border-radius: 10px;
  width: 30%;
}

.blog-card__body {
  padding: 20px;
  padding: 1.25rem;
  background-color: #fff;
}

.blog-card__category {
  background-color: #FFE62B;
  padding: 8px 35px;
  padding: 0.5rem 2.1875rem;
  font-size: 15px;
  font-size: 0.9375rem;
}

.blog-card__date {
  display: block;
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 2px solid;
}

.card__body {
  height: 100%;
  background-color: #fff;
}

.card__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

.wp-pagenavi {
  text-align: center;
  margin-top: 50px;
}

.wp-pagenavi a {
  background-color: white;
}

.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .page {
  color: #282C32;
  display: inline-block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 49px;
  font-size: 22px;
  border: 3px solid #282C32 !important;
}

.wp-pagenavi .current {
  background-color: #282C32;
  color: white;
  margin-right: 10px;
}

.wp-pagenavi .page {
  margin-right: 10px;
}

@media screen and (max-width: 375px) {
  .company__information.company-page {
    margin-top: 3.75rem;
  }
}

.company__information.company-page table tbody {
  border: 2px solid;
  border: 0.125rem solid;
}

.company__content-wrapper {
  margin-top: 58px;
  margin-top: 3.625rem;
  margin-bottom: 114px;
  margin-bottom: 7.125rem;
}

@media screen and (min-width: 600px) {
  .company__information {
    margin-top: 2.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .company__information {
    margin-top: 3.625rem;
  }
}

@media screen and (min-width: 768px) {

  .company__information table,
  .company__information tr,
  .company__information td {
    border: 0.1875rem solid #282C32;
  }
}

.company__information table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  /* 適宜調整 */
  font-size: 18px;
  font-size: 1.125rem;
  border: 1px solid;
  border: 0.0625rem solid;
}

.company__information th,
td {
  border: 1px solid #ddd;
  text-align: left;
  color: black;
  padding: 20px 0;
  padding: 1.25rem 0;
}

@media screen and (min-width: 768px) {

  .company__information th,
  td {
    padding: 0.5rem;
  }
}

.company__information tr {
  display: grid;
}

@media screen and (min-width: 768px) {
  .company__information tr {
    display: table-row;
  }
}

.company__information td {
  font-weight: 500;
  border: 0 none;
  width: 100%;
}

.company__information td:nth-child(1) {
  background-color: #FFE62B;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .company__information td:nth-child(1) {
    width: 15.625rem;
  }
}

.company__information td:nth-child(2) {
  background-color: #fff;
  color: #282c32;
  line-height: 1.8;
  padding: 25px 0;
  padding: 1.5625rem 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .company__information td:nth-child(2) {
    width: calc(100% - 18.75rem);
    padding: 1.6875rem 2.8125rem 1.5625rem 2.8125rem;
    text-align: left;
  }
}

@media screen and (max-width: 375px) {
  .company__information td:nth-child(2) {
    padding: 1.5625rem 0.625rem;
  }
}

.map {
  margin-left: 31px;
  margin-left: 1.9375rem;
  color: #fff;
  background-color: black;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.map:hover {
  opacity: 0.6;
}

.company__td-center {
  text-align: center;
}

.company__td-center.rule-page {
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .company__td-center.rule-page {
    padding-top: 2rem;
    vertical-align: baseline;
    vertical-align: initial;
  }
}


.company__td-left {
  text-align: left;
}

.company__td-left span {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.company__td-left .nowrap {
  white-space: nowrap;
}

.company-page__table-2 {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .company-page__table-2 {
    margin-top: 5.875rem;
  }
}


.contact-complete-wrapper {
  background: white;
  text-align: center;
  padding: 50px 30px;
  padding: 3.125rem 1.875rem;
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
  padding: 50px 30px;
  padding: 3.125rem 1.875rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (min-width: 768px) {
  .contact-complete-wrapper {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem;
    padding: 4.375rem 1.875rem;
  }
}

.contact-complete {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .contact-complete {
    font-size: 2.5rem;
  }
}

.contact-complete-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .contact-complete-text {
    font-size: 1.5625rem;
  }
}

.contact-attention {
  display: block;
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 9px;
  font-size: 0.5625rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .contact-attention {
    margin-top: 0;
    text-align: center;
  }
}

@media screen and (min-width: 1440px) {
  .contact-attention {
    margin-top: 1.375rem;
    font-size: 1rem;
    text-align: center;
  }
}

.p-form__button-wrapper {
  margin: 30px auto 100px;
  margin: 1.875rem auto 6.25rem;
}

@media screen and (max-width: 375px) {
  .p-form__button-wrapper {
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .p-form__button-wrapper {
    width: 80%;
  }
}

@media screen and (min-width: 768px) {
  .p-form__button-wrapper {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-form__button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6rem;
    margin-bottom: 10rem;
  }
}

.p-form {
  background-color: #fff;
}

.p-form__item {
  display: block;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  border-bottom: 1px solid;
}

@media screen and (min-width: 768px) {
  .p-form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.9375rem 5.5rem 0.9375rem 6.0625rem;
  }
}

.p-form__item:first-of-type {
  border-top: 1px solid #B5B5B5;
}

.p-form__item.text-area {
  padding-top: 11px;
  padding-top: 0.6875rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-form__item.file {
  padding: 10px 35px 28px 35px;
  padding: 0.625rem 2.1875rem 1.75rem 2.1875rem;
}

@media screen and (min-width: 768px) {
  .p-form__item.file {
    padding: 0.625rem 5.5rem 1.75rem 4.6875rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p-form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-form__title {
    width: 24.75rem;
  }
}

@media screen and (min-width: 1440px) {
  .p-form__title {
    width: 396px;
  }
}

.p-form__title span {
  display: inline-block;
  background-color: #FFE62B;
  margin-left: 14px;
  margin-left: 0.875rem;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-form__title span {
    margin-left: 1.125rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-form__title label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-form__title label {
    font-size: 1.25rem;
  }
}

.p-form__title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__title--type03 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-form__title--aiStart {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 10px;
  padding-top: 0.625rem;
}

.p-form__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 768px) {
  .p-form__input {
    width: 100%;
    padding: 0 10px;
  }
}

.p-formInput input::-webkit-input-placeholder,
.p-formTextarea textarea::-webkit-input-placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 375px) {

  .p-formInput input::-webkit-input-placeholder,
  .p-formTextarea textarea::-webkit-input-placeholder {
    color: #707070;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {

  .p-formInput input::-webkit-input-placeholder,
  .p-formTextarea textarea::-webkit-input-placeholder {
    color: #707070;
    font-size: 1.25rem;
  }
}

.p-formInput input::-moz-placeholder,
.p-formTextarea textarea::-moz-placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 375px) {

  .p-formInput input::-moz-placeholder,
  .p-formTextarea textarea::-moz-placeholder {
    color: #707070;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {

  .p-formInput input::-moz-placeholder,
  .p-formTextarea textarea::-moz-placeholder {
    color: #707070;
    font-size: 1.25rem;
  }
}

.p-formInput input:-ms-input-placeholder,
.p-formTextarea textarea:-ms-input-placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 375px) {

  .p-formInput input:-ms-input-placeholder,
  .p-formTextarea textarea:-ms-input-placeholder {
    color: #707070;
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {

  .p-formInput input:-ms-input-placeholder,
  .p-formTextarea textarea:-ms-input-placeholder {
    color: #707070;
    font-size: 1.25rem;
  }
}

.p-formInput input::-ms-input-placeholder,
.p-formTextarea textarea::-ms-input-placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 375px) {

  .p-formInput input::-ms-input-placeholder,
  .p-formTextarea textarea::-ms-input-placeholder {
    color: #707070;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {

  .p-formInput input::-ms-input-placeholder,
  .p-formTextarea textarea::-ms-input-placeholder {
    color: #707070;
    font-size: 1.25rem;
  }
}

.p-formInput input::-webkit-input-placeholder,
.p-formTextarea textarea::-webkit-input-placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-formInput input::-moz-placeholder,
.p-formTextarea textarea::-moz-placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-formInput input::-ms-input-placeholder,
.p-formTextarea textarea::-ms-input-placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-formInput input::placeholder,
.p-formTextarea textarea::placeholder {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 375px) {

  .p-formInput input::-webkit-input-placeholder,
  .p-formTextarea textarea::-webkit-input-placeholder {
    color: #707070;
    font-size: 0.875rem;
  }

  .p-formInput input::-moz-placeholder,
  .p-formTextarea textarea::-moz-placeholder {
    color: #707070;
    font-size: 0.875rem;
  }

  .p-formInput input::-ms-input-placeholder,
  .p-formTextarea textarea::-ms-input-placeholder {
    color: #707070;
    font-size: 0.875rem;
  }

  .p-formInput input::placeholder,
  .p-formTextarea textarea::placeholder {
    color: #707070;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {

  .p-formInput input::-webkit-input-placeholder,
  .p-formTextarea textarea::-webkit-input-placeholder {
    color: #707070;
    font-size: 1.25rem;
  }

  .p-formInput input::-moz-placeholder,
  .p-formTextarea textarea::-moz-placeholder {
    color: #707070;
    font-size: 1.25rem;
  }

  .p-formInput input::-ms-input-placeholder,
  .p-formTextarea textarea::-ms-input-placeholder {
    color: #707070;
    font-size: 1.25rem;
  }

  .p-formInput input::placeholder,
  .p-formTextarea textarea::placeholder {
    color: #707070;
    font-size: 1.25rem;
  }
}

.p-formInput input {
  width: 100%;
  height: 44px;
  height: 2.75rem;
  padding-left: 14px;
  padding-left: 0.875rem;
  background-color: #EEEEEE;
  border-radius: 0;
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 5px;
}

@media screen and (max-width: 375px) {
  .p-formInput input {
    padding-left: 1rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-formInput input {
    width: 100%;
    height: 3.125rem;
    margin-left: 0;
    padding-left: 2.125rem;
    font-size: 1.25rem;
  }
}

.p-formInput select {
  width: 120%;
  height: 44px;
  height: 2.75rem;
  padding-left: 14px;
  padding-left: 0.875rem;
  background-color: #EEEEEE;
  border-radius: 0;
  border-radius: 5px;
}

@media screen and (max-width: 375px) {
  .p-formInput select {
    padding-left: 1rem;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-formInput select {
    width: 120%;
    height: 3.125rem;
    margin-left: 0;
    padding-left: 2.125rem;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-formInput input:focus,
.p-formTextarea textarea:focus {
  outline: 2px solid #B5B5B5;
}

.p-formInput--sm input {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .p-formInput--sm input {
    width: 100%;
  }
}

.p-formInput__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-formInput__post input {
  width: 320px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .p-formInput__post input {
    width: 100%;
  }
}

.p-formInput__address {
  margin-top: 10px;
}

.p-formInput__address input {
  width: 70%;
}

@media screen and (min-width: 768px) {
  .p-formInput__address input {
    width: 100%;
  }
}

.p-formInput--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-formInput--tel>* {
  min-width: 0;
}

.p-formInput--tel input {
  width: 150px;
  max-width: 100%;
}

.p-formSelect select {
  width: 100%;
  max-width: 100%;
  height: 44px;
  height: 2.75rem;
  padding-left: 20px;
  border: 1px solid #B5B5B5;
  border-radius: 0;
  font-size: 16px;
  background-color: #EEEEEE;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (min-width: 768px) {
  .p-formSelect select {
    width: 100%;
    height: 2.75rem;
    font-size: 1.25rem;
  }
}

.p-form__input.p-formSelect {
  position: relative;
}

.p-form__input.p-formSelect::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 27%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 2px solid;
  border-top: 0.125rem solid;
  border-right: 2px solid;
  border-right: 0.125rem solid;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.p-form__input.p-formSelect.confirmation-screen:after {
  content: none;
}

.p-form__input.p-formFile {
  padding-top: 10px;
  padding-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-form__input.p-formFile {
    padding: 0.5625rem 0 0 1.875rem;
  }
}

.p-formSelect select:focus {
  outline: 2px solid #B5B5B5;
}

.p-formSelect--selected select {
  color: #333;
}

.p-formDate__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-formDate__flex {
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-formDate__flex+.p-formDate__flex {
  margin-top: 20px;
}

.p-formDate__label {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .p-form__dataBlock {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.p-form__dataBlockFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__dataBlockFlex+.p-form__dataBlockFlex {
  margin-top: 20px;
}

.p-form__dataBlockLabel {
  width: 80px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .p-form__dataBlockLabel {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-form__dataBlockDate {
    width: 100%;
  }
}

.p-formCalendar {
  position: relative;
}

.p-formCalendar input {
  width: 200px;
  width: 12.5rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  height: 45px;
  height: 2.8125rem;
  padding-right: 5px;
  border: 1px solid #B5B5B5;
  border-radius: 0;
  color: lightgray;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  position: relative;
  background: url(../images/common/calendar.svg) right 8px center/15px no-repeat;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-formCalendar input {
    height: 3.125rem;
  }
}

.p-formCalendar input::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 30%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 3px solid;
  border-top: 0.1875rem solid;
  border-right: 3px solid;
  border-right: 0.1875rem solid;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.p-formCalendar input::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background: transparent;
  z-index: 1;
}

@-moz-document url-prefix() {
  .p-formCalendar input {
    background: none;
  }

  .p-formCalendar::after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M13.5 2H13V1c0-.6-.4-1-1-1s-1 .4-1 1v1H5V1c0-.6-.4-1-1-1S3 .4 3 1v1h-.5C1.1 2 0 3.1 0 4.5v9C0 14.9 1.1 16 2.5 16h11c1.4 0 2.5-1.1 2.5-2.5v-9C16 3.1 14.9 2 13.5 2zm0 12.5h-11c-.6 0-1-.4-1-1V6h13v7.5c0 .6-.4 1-1 1z"></path></svg>') no-repeat center center/contain;
    top: 50%;
    right: 10px;
    transform: translateY(-55%);
    pointer-events: none;
  }
}

.p-formCalendar input::-webkit-date-and-time-value {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .Android .p-formCalendar input {
    padding-left: 15px;
  }
}

.p-formCalendar input:focus {
  outline: 2px solid #B5B5B5;
}

@media screen and (min-width: 768px) {
  .p-form__dataBlockSelect {
    width: 100%;
  }
}

.p-form__dataBlockDate input:not(.p-formDate__default) {
  color: #333;
  background-color: #EEEEEE;
}

.p-formNumber__txt {
  font-size: 16px;
}

.p-formNumber__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-formNumber__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p-formNumber__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-formNumber__blockLabel01 {
  margin-right: 30px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .p-formNumber__blockLabel01 {
    width: 55px;
  }
}

.p-formNumber__blockLabel01 {
  font-size: 16px;
}

.p-formNumber__blockInput {
  width: 150px;
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .p-formNumber__blockInput {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 20px;
  }
}

.p-formCheckbox input {
  display: none;
}

.p-formCheckbox .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.p-formCheckbox .wpcf7-list-item {
  margin-left: 0;
}

.p-formCheckbox--vertical .wpcf7-checkbox {
  display: block;
}

.p-formCheckbox--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.p-formCheckbox--vertical .wpcf7-list-item+.wpcf7-list-item {
  margin-top: 20px;
}

.p-formCheckbox input+span {
  position: relative;
  display: inline-block;
  width: auto;
  padding-left: 17px;
  padding-left: 1.0625rem;
  font-size: 16px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .p-formCheckbox input+span {
    font-size: 1.5rem;
    padding: 0 0 0 35px;
  }
}

@media screen and (max-width: 375px) {
  .p-formCheckbox input+span {
    padding-left: 1.4375rem;
    font-size: 0.875rem;
  }
}

.p-formCheckbox input+span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  left: -0.875rem;
  display: block;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  border: 1px solid #B5B5B5;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 375px) {
  .p-formCheckbox input+span::before {
    left: -0.375rem;
  }
}



.p-formCheckbox input+span::after {
  content: "";
  position: absolute;
  top: 19%;
  left: 0;
  display: block;
  width: 14px;
  width: 0.875rem;
  height: 26px;
  height: 1.625rem;
  margin-top: -8px;
  border-right: 3px solid #DD2E1E;
  border-bottom: 3px solid #DD2E1E;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

label .bank-attention {
  color: red;
  background-color: initial !important;
  white-space: nowrap;
  margin-left: 0;
}


.p-formCheckbox input:checked+span::after {
  opacity: 1;
}

.p-formRadio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.p-formRadio--vertical .wpcf7-radio {
  display: block;
}

.p-formRadio .wpcf7-list-item {
  margin: 0;
}

.p-formRadio--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.p-formRadio--vertical .wpcf7-list-item+.wpcf7-list-item {
  margin-top: 20px;
}

.p-formRadio input+span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-size: 0.75rem;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .p-formRadio input+span {
    font-size: 1.25rem;
  }
}

.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 5px;
  padding-left: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .wpcf7-list-item label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-formRadio input+span::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: auto;
  margin-right: 0.5em;
  margin-bottom: auto;
  border: 1px solid #B5B5B5;
  border-radius: 100%;
  background: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.p-formRadio input:checked+span::before {
  background-color: blue;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.p-formFile .wpcf7-form-control-wrap {
  display: block;
}

.p-formFile .wpcf7-form-control-wrap+.wpcf7-form-control-wrap {
  margin-top: 20px;
}

.p-formFile input {
  max-width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  margin-top: 23px;
  margin-top: 1.4375rem;
}

@media screen and (min-width: 768px) {
  .p-formFile input {
    font-size: 1.4375rem;
  }
}

.p-formTextarea textarea {
  width: 100%;
  min-height: 350px;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border: 1px solid #B5B5B5;
  border-radius: 0;
  font-size: 16px;
  background-color: #EEEEEE;
}

@media screen and (min-width: 768px) {
  .p-formTextarea textarea {
    width: 100%;
    min-height: 300px;
    height: 21.5625rem;
    margin-left: 0;
    padding-left: 15px;
  }
}

.p-form__privacy {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  color: #DD2E1E;
}

@media screen and (min-width: 768px) {
  .p-form__privacy {
    font-size: 1.125rem;
    margin-top: -0.75rem;
  }
}

.p-form__privacy a {
  line-height: 1;
  text-decoration: underline;
}

.p-form__acceptance {
  margin-top: 30px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-form__acceptance {
    margin-top: 6rem;
  }
}

.p-form__acceptance .required {
  background-color: #ffe62b;
  padding: 3px 6px;
  padding: 0.1875rem 0.375rem;
}

.p-form__submit {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-form__submit {
    margin-top: 30px;
  }
}

.p-formBtn {
  position: relative;
  width: 100%;
}

.p-formBtn input:hover {
  background-color: #DD2E1E;
  color: #fff;
  border: 3px solid #dd2e1e;

}

.wpcf7-form-control.wpcf7-acceptance.optional label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-formBtn input {
  padding: 6px 0;
  padding: 0.375rem 0;
  width: 100%;
  color: #DD2E1E;
  background-color: #fff;
  border-color: red;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  padding: 10px 0;
  padding: 0.625rem 0;
  border: 3px solid;
  border: 0.1875rem solid;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: .5s;

}

@media screen and (min-width: 768px) {
  .p-formBtn input {
    border: 0.25rem solid;
    font-size: 1.875rem;
    padding: 1rem 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 3px solid #dd2e1e;


  }
}

@media screen and (min-width: 768px) {
  .p-formBtn input:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 3px solid #dd2e1e;
  }
}

.p-formBtn:after {
  content: "";
  position: absolute;
  right: 6%;
  top: 35%;
  display: inline-block;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 5px solid #DD2E1E;
  border-top: 0.3125rem solid #DD2E1E;
  border-right: 5px solid #DD2E1E;
  border-right: 0.3125rem solid #DD2E1E;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.5s;

}

@media screen and (min-width: 768px) {
  .p-formBtn:after {
    right: 5%;
    top: 31%;
    width: 2.125rem;
    height: 2.125rem;
    border-top: 0.625rem solid #DD2E1E;
    border-right: 0.625rem solid #DD2E1E;
    transition: 0.5s;

  }
}

.p-formBtn:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-formBtn.previous {
    margin-right: 1.875rem;
    width: 45%;
  }
}

@media screen and (max-width: 375px) {
  .p-formBtn.previous {
    margin: auto;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 15px 10px;
  border-color: #2C94DE;
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 15px 10px;
  border-color: red;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (min-width: 768px) {

  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 1.5rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: red;
  font-size: 14px;
  font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.p-formValidation .wpcf7-not-valid-tip {
  display: none;
}

.p-formValidation__error {
  display: none;
  margin-top: 10px;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form:not(.hide_error_message) .p-formValidation:has(.wpcf7-not-valid-tip) .p-formValidation__error {
  display: block;
}

.corporation__title {
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.cleat-page {
  margin-top: 58px;
  margin-top: 3.625rem;
}

#wpmem_reg {
  margin: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.div_text .textbox {
  background-color: red;
}

#wpmem_register_form {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.myform__wrap-row {
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .myform__wrap-row {
    padding: 1.5625rem 6.25rem;
  }
}

.myform__wrap-row:nth-of-type(14) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.myform__wrap-row label {
  display: inline-block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .myform__wrap-row label {
    width: 25rem;
  }
}

.myform__wrap-row input {
  background-color: #EEEEEE;
  width: 100%;
  padding: 12px 30px;
  padding: 0.75rem 1.875rem;
}

@media screen and (min-width: 768px) {
  .myform__wrap-row input {
    width: calc(100% - 25rem);
  }
}

.myform__wrap-row .text {
  position: relative;
}

.myform__wrap-row .div_multicheckbox {
  display: none;
}

.buttons {
  background-color: #fff;
  color: #DD2E1E;
  border-radius: 15px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  width: 100%;
  display: inline-block;
  border: 4px solid;
  border: 0.25rem solid;
  padding: 10px 0;
  padding: 0.625rem 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .buttons {
    padding: 1.25rem 0;
    font-size: 1.875rem;
  }
}

#wpmem_reg {
  width: 100% !important;
}

.myform__wrap-row input[type=radio] {
  width: 10px;
}

@media screen and (min-width: 600px) {
  .myform__wrap-row input[type=radio] {
    width: calc(100% - 29rem);
  }
}

@media screen and (min-width: 768px) {
  .myform__wrap-row input[type=radio] {
    width: calc(100% - 53rem);
  }
}

@media screen and (max-width: 375px) {
  .myform__wrap-row input[type=radio] {
    width: calc(100% - 18rem);
  }
}

@media screen and (min-width: 1440px) {
  .myform__wrap-row input[type=radio] {
    width: calc(100% - 59rem);
  }
}

#label_bank_1,
#label_bank_2 {
  font-size: 16px;
  font-size: 1rem;
}

#label_radio_1,
#label_radio_2 {
  font-size: 16px;
  font-size: 1rem;
}

#myform__wrap-row fieldset p {
  padding: 0 100px !important;
  padding: 0 6.25rem !important;
}

.detail__content {
  border: 4px solid;
  border-radius: 15px;
  background-color: #fff;
  padding: 23px 25px 100px;
  padding: 1.4375rem 1.5625rem 6.25rem;
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .detail__content {
    padding: 2.125rem 3.125rem 6.25rem;
    margin-top: 8.25rem;
  }
}

.detail__content img {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  aspect-ratio: 1110/600;
  -o-object-fit: cover;
  object-fit: cover;

}

.detail__content h1 {
  color: #DD2E1E;
  /*   font-size: 24px; */
  /*   font-size: 1.5rem; */
  margin-top: 21px;
  margin-top: 1.3125rem;

}

@media screen and (min-width: 768px) {
  .detail__content h1 {
    /*     font-size: 2.1875rem; */
  }
}

.detail__content h2 {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 375px) {
  .detail__content h2 {
    /*     font-size: 1.375rem; */
  }
}

.detail__content h3 {
  /*   font-size: 20px;
  font-size: 1.25rem; */
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.detail__content p {
  /*   font-size: 16px;
  font-size: 1rem; */
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .detail__content p {
    /*     font-size: 1.125rem; */
    margin-top: 1.25rem;
  }
}


.detail__content figure {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.detail-page__button {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

#toc_container {
  width: 100% !important;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 18px 28px;
  padding: 1.125rem 1.75rem;
}

@media screen and (min-width: 768px) {
  #toc_container {
    padding: 1.125rem 3rem;
    font-size: 1.5rem;
  }
}

.toc_list li {
  border-top: 1px solid #D4D2BD;
  border-bottom: 1px solid #D4D2BD;
  padding: 14px 0;
  padding: 0.875rem 0;
}

#toc_container li {
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
}

@media screen and (min-width: 768px) {
  #toc_container li {
    padding: 0.375rem 3rem;
  }
}

.faq__genre-wrapper {
  margin-top: 60px;
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
  row-gap: 1.25rem;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .faq__genre-wrapper {
    margin-top: 3.5625rem;
  }
}

.faq-genre {
  font-size: clamp(18px, 15.088px + 0.777vw, 30px);
  font-size: clamp(1.125rem, 0.943rem + 0.777vw, 1.875rem);
  background-color: #FFE62B;
  font-weight: 600;
  border: 4px solid;
  border: 0.25rem solid;
  display: inline-block;
  border-radius: 15px;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  width: 48%;
}

@media screen and (max-width: 375px) {
  .faq-genre {
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .faq-genre {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .faq-genre {
    font-size: 1.875rem;
    width: 31.33%;
  }
}

.faq-genre:hover {
  opacity: 0.6;
}

.faq-genre a {
  padding: 7px 0;
  padding: 0.4375rem 0;
  width: 100%;
  display: inline-block;
}

.faq-page-list__items {
  margin-top: 46px;
  margin-top: 2.875rem;
}

.faq-list__items {
  padding: 22px 0 74px;
  padding: 1.375rem 0 4.625rem;
  scroll-margin-top: 14.375rem;
}

@media screen and (min-width: 768px) {
  .faq-list__items {
    padding: 3.25rem 0 4.625rem;
  }
}

@media screen and (max-width: 375px) {
  .faq-list__items {
    scroll-margin-top: 5rem;
  }
}

.faq-list__items .faq-list__items:last-child {
  padding-bottom: 0;
}

.faq-list__items .faq-list__item:not(:first-child) {
  margin-top: 31px;
  margin-top: 1.9375rem;
}

@media screen and (min-width: 600px) {
  .faq__genre-wrapper .faq-genre:not(:first-child) {
    margin-top: auto;
  }
}

@media screen and (min-width: 768px) {
  .faq__genre-wrapper .faq-genre:not(:first-child) {
    margin-top: auto;
  }
}

.page-faq__to-top {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.page-faq__to-top a {
  position: relative;
}

.page-faq__to-top a::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-left: 0.375rem solid transparent;
  border-right: 6px solid transparent;
  border-right: 0.375rem solid transparent;
  border-bottom: 10px solid black;
  border-bottom: 0.625rem solid black;
}

.faq-list__item.is-open .faq-list__item-answer-content {
  opacity: 1;
  max-height: 200px;
  max-height: 12.5rem;
  overflow: hidden;
  -webkit-transition: opacity 0.4s, max-height 0.2s ease-in-out;
  transition: opacity 0.4s, max-height 0.2s ease-in-out;
}

.accordion__item.active .accordion__body {
  height: auto;
  padding: 10px;
}

.step-button-wrapper.flow-page {
  margin-top: 16px;
  margin-top: 1rem;
  cursor: pointer;
}

.flow__page-wrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
  border: 3px solid;
  border-radius: 4px;
  background-color: #fff;
  border-radius: 15px;
  padding: 36px;
  padding: 2.25rem;
}

@media screen and (max-width: 375px) {
  .flow__page-wrapper {
    padding: 1.25rem;
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .flow__page-wrapper {
    padding: 2.75rem;
    margin-top: 3.75rem;
  }
}

.flow__page-lists {
  margin-top: 33px;
  margin-top: 2.0625rem;
}

@media screen and (min-width: 768px) {
  .flow__page-lists {
    margin-top: 1.8125rem;
  }
}

.flow__page-list {
  scroll-margin-top: 200px;
}

.flow__page-list.third {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.flow__page-content {
  display: block;
}

@media screen and (min-width: 768px) {
  .flow__page-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13%;
    padding: 2.6875rem 0 3.125rem;
  }
}

.page-flow .product__list__inner {
  padding: 5px 5px 12px 40px;
  padding: 0.3125rem 0.3125rem 0.75rem 2.5rem;
}

@media screen and (min-width: 768px) {
  .page-flow .product__list__inner {
    padding: 1.625rem 0.3125rem 1.5rem 5.625rem;
  }
}

@media screen and (max-width: 375px) {
  .page-flow .product__list__inner .product__list-item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.flow__page-text {
  font-size: clamp(12px, 10.544px + 0.388vw, 18px);
  font-size: clamp(0.75rem, 0.659rem + 0.388vw, 1.125rem);
}

@media screen and (min-width: 768px) {
  .flow__page-text {
    width: 50%;
    line-height: 2.2;
  }
}

.flow__page-text span {
  color: #DD2E1E;
  display: block;
}

.flow__page-img {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .flow__page-img {
    width: 37%;
    margin-top: 0;
  }
}

.flow__page-img img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/240;
}

.flow__page-footer {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 94px;
  margin-bottom: 5.875rem;
}

@media screen and (min-width: 768px) {
  .flow__page-footer {
    margin-top: 4rem;
  }
}

.transfer__wrapper {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.bank-wrapper {
  display: block;
}

@media screen and (min-width: 600px) {
  .bank-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.4375rem;
  }
}

.bank-wrapper .bank:first-child {
  margin-right: auto;
}

@media screen and (min-width: 600px) {
  .bank-wrapper .bank:first-child {
    margin-right: 2.5rem;
  }
}

.bank-wrapper .bank:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 600px) {
  .bank-wrapper .bank:not(:first-child) {
    margin-top: auto;
  }
}

.bank {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .bank {
    width: 48%;
  }
}

.flow__page-list.flow-page:not(:first-child) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .flow__page-list.flow-page:not(:first-child) {
    margin-top: 6.4375rem;
  }
}

.product__wrapper.page-flow {
  margin-top: 59px;
  margin-top: 3.6875rem;
}

@media screen and (min-width: 768px) {
  .flow__page-button.detail-button {
    padding: 0.375rem 6rem;
  }
}

.wpcf7-list-item-label::before {
  display: none;
}

.option-button {
  padding: 8px 6px;
  padding: 0.5rem 0.375rem;
  width: 41.8%;
  color: #fff;
  background-color: #282C32;
  border-radius: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .option-button {
    width: 27.8%;
    font-size: 1.875rem;
  }
}

.option-button-2 {
  padding: 8px 17px;
  padding: 0.5rem 1.0625rem;
  color: #fff;
  background-color: #282C32;
  border-radius: 5px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
}

.form-number .option-button {
  padding: 8px 14px;
  padding: 0.5rem 0.875rem;
  width: 27.8%;
}

@media screen and (min-width: 768px) {
  .form-number .option-button {
    width: auto;
  }
}

.option-button.active {
  background-color: #DD2E1E;
}

.form-personal-page .p-formInput p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6%;
  padding: 10px 0;
  padding: 0.625rem 0;
}

@media screen and (min-width: 768px) {
  .form-personal-page .p-formInput p {
    padding: 0;
  }
}

.form-personal-page .p-form__input.form-number p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3%;
  row-gap: 10px;
}

.p-form__input.form-time p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1%;
  row-gap: 10px;
  row-gap: 0.625rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-form__input.form-time .option-button {
  font-size: 16px;
  font-size: 1rem;
  width: 47.8%;
}

@media screen and (max-width: 375px) {
  .p-form__input.form-time .option-button {
    width: 47.8%;
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__input.form-time .option-button {
    width: 30.8%;
  }
}

@media screen and (max-width: 375px) {
  .p-form__input.p-form__input--radio.p-formRadio.p-formRadio--vertical .kyakutyu {
    font-size: 12px;
    height: 10px;
    line-height: -1;
    display: inline-block;
    text-indent: -11px;
  }
}

.p-form__input.p-form__input--radio.p-formRadio.p-formRadio--vertical .wpcf7-form-control-wrap {
  margin-top: 10px;
  display: inline-block;
}

.form-personal__title {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .form-personal__title {
    margin-top: 6.25rem;
  }
}

@media screen and (max-width: 375px) {
  .form-personal__title {
    font-size: 1.25rem;
  }
}

.form-personal__title span {
  display: inline-block;
  background-color: #FFE62B;
  margin-left: 14px;
  margin-left: 0.875rem;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .form-personal__title span {
    margin-left: 1.125rem;
    padding: 0.375rem 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-form__list.form-personal-page .p-form__item {
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
}

.form-personal-page .p-formBtn:after {
  content: "";
  position: absolute;
  right: 6%;
  top: 24%;
  display: inline-block;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 5px solid #DD2E1E;
  border-top: 0.3125rem solid #DD2E1E;
  border-right: 5px solid #DD2E1E;
  border-right: 0.3125rem solid #DD2E1E;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .form-personal-page .p-formBtn:after {
    right: 5%;
    top: 25%;
    width: 2.125rem;
    height: 2.125rem;
    border-top: 0.625rem solid #DD2E1E;
    border-right: 0.625rem solid #DD2E1E;
  }
}

.form-personal-page .p-formBtn:hover:after {
  border-top: 5px solid white;
  border-top: .3125rem solid white;
  border-right: 5px solid white;
  border-right: .3125rem solid white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 768px) {
  .form-personal-page .p-formBtn:hover:after {
    border-top: 0.625rem solid white;
    border-right: 0.625rem solid white;
  }

}
}


.product__list-title.login-page .product__list-item {
  font-weight: 500;
}

.product__list-item.form__wrapper {
  font-weight: 500;
}

.about-button {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #fff;
  padding: 13px 0;
  padding: 0.8125rem 0;
  border: 4px solid;
  border: 0.25rem solid;
  display: inline-block;
  width: 100%;
  border-radius: 15px;
  text-align: center;
  position: relative;
  margin-top: 50px;
  margin-top: 3.125rem;
  font-weight: 900;
}

@media screen and (min-width: 600px) {
  .about-button {
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .about-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-button::after {
  content: "";
  position: absolute;
  right: 25px;
  right: 1.5625rem;
  top: 27%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  margin: 0 10px;
  margin: 0 0.625rem;
  border-top: 6px solid;
  border-top: 0.375rem solid;
  border-right: 6px solid;
  border-right: 0.375rem solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 600px) {
  .about-button::after {
    border-top: 0.5625rem solid;
    border-right: 0.5625rem solid;
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.about-button:hover {
  opacity: 0.3;
}

.about-button span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  display: block;
}

@media screen and (min-width: 768px) {
  .about-button span {
    display: inline;
    display: initial;
    padding-left: 1.25rem;
  }
}

.p-formBtn.form_personal::after {
  top: 37%;
}

@media screen and (min-width: 768px) {
  .p-formBtn.form_personal::after {
    top: 30%;
  }
}


.p-formBtn.previous::after {
  top: 35%;
}

@media screen and (min-width: 768px) {
  .p-formBtn.previous::after {
    top: 30%;
  }
}

.form-attention {
  font-weight: 700;
  margin-top: 24px;
  margin-top: 1.5rem;
}

fieldset {
  background-color: #fff;
  border: none;
}

#wpmem_login fieldset {
  border-top: 1px solid !important;
}

.wpmem_msg {
  margin: auto !important;
  margin-bottom: 50px !important;
  margin-bottom: 3.125rem !important;
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.button_div {
  width: 90%;
  margin: auto;
  text-align: center;
  position: relative;
}

#wpmem_login {
  margin: auto;
}

fieldset .myform__wrap-row:nth-child(2) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

#wpmem_login .link-text {
  padding-right: 34px !important;
  padding-right: 2.125rem !important;
}

.product__list.login-page {
  border: 4px solid #DD2E1E;
  border: 0.25rem solid #DD2E1E;
  border-radius: 0.625rem;
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
  box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
  min-height: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (min-width: 768px) {
  .product__list.login-page {
    border: 4px solid #DD2E1E;
    -webkit-box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
    box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.product__list-title.login-page {
  color: #FFFF2B;
}

.logform__wrap-row {
  padding: 20px 50px;
  padding: 1.25rem 3.125rem;
}

.login-page.stripe-title {
  width: 75%;
  margin: auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.register_links {
  padding: 20px 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
}

.register_links li {
  margin-top: 20px;
}

.register_links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}

.register_links a {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.register_links li:first-child a {
  background-color: #0056b3;
  color: #ffffff;
  border: 1px solid #0056b3;
}

.register_links li:first-child a:hover {
  background-color: #004494;
  border-color: #004494;
}

.register_links li:last-child a {
  background-color: #ffffff;
  color: #666666;
  border: 1px solid #cccccc;
}

.register_links li:last-child a:hover {
  background-color: #f5f5f5;
}

.register_links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.register_links li {
  margin: 0;
  padding: 0;
}

@media (min-width: 513px) {
  .user_header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
  }

  .register_status {
    margin: 0;
  }
}

.user_header {
    margin-top: 15px;
  }

#wpmem_login {
  margin: 0;
  width: 100% !important;
}

.mypage__inner ul {
  background: #fff;
  padding: 20px 0;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
}

.mypage__inner ul li {
  margin-top: 20px;
}

.stripe-title.my-page {
  margin-top: 58px;
  margin-top: 3.625rem;
}

.my-page_button {
  width: 100%;
  margin-top: 81px;
  margin-top: 5.0625rem;
  margin-bottom: 160px;
  margin-bottom: 10rem;
  text-align: center;
}

.my-page_button a {
  width: 100%;
  max-width: 1200px;
}

#wpmem_reg legend {
  text-align: center;
}

.myform__wrap-row .radio #radio {
  width: 100px;
}

@media screen and (max-width: 375px) {
  .flow__page-list.package-page:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.flow__page-wrapper.package-page {
  padding: 20px;
  padding: 1.25rem;
}

@media screen and (min-width: 768px) {
  .flow__page-wrapper.package-page {
    padding: 2.375rem 3.125rem 3.3125rem;
    margin-top: 6.625rem;
  }
}

.flow__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 86%;
}

@media screen and (min-width: 768px) {
  .flow__page-list.package-page .flow__page-img {
    width: 32%;
  }
}

@media screen and (max-width: 375px) {
  .flow__page-text.package-page {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .page-package.dual .flow__page-img {
    width: 49%;
  }
}

.package__step-button {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 600px) {
  .package__step-button {
    margin-top: 1rem;
  }
}

.flow__page-list.package-page {
  scroll-margin-top: 150px;
}

.flow__page-content.page-package.dual {
  display: block;
}

@media screen and (min-width: 768px) {
  .flow__page-content.page-package.dual {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2%;
    padding: 2.6875rem 0 3.125rem;
  }
}

.flow__page-content.page-package {
  display: block;
}

@media screen and (min-width: 768px) {
  .flow__page-content.page-package {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 21%;
  }
}

.flow__page-text.page-package.dual {
  word-wrap: keep-all;
}

@media screen and (min-width: 768px) {
  .flow__page-text.page-package.dual {
    width: 77%;
    word-break: keep-all;
  }
}

.flow__page-text.page-package {
  word-wrap: keep-all;
}

@media screen and (min-width: 768px) {
  .flow__page-text.page-package {
    width: 48%;
    word-break: keep-all;
  }
}

.flow__img-wrapper.page-package {
  display: block;
  width: auto;
}

@media screen and (min-width: 768px) {
  .flow__img-wrapper.page-package {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: 69%;
    margin-top: 0;
  }
}

.flow__page-img.page-package {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .flow__page-img.page-package {
    margin-top: 0;
  }
}

.flow__page-img.page-package.dual img {
  aspect-ratio: 300/240;
}

@media screen and (min-width: 768px) {
  .flow__page-img.page-package.dual img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 300/240;
  }
}

.flow__page-img.page-package img {
  aspect-ratio: 300/240;
}

@media screen and (min-width: 768px) {
  .flow__page-img.page-package img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 350/245;
  }
}

@media screen and (min-width: 768px) {
  .flow__page-img.page-package {
    width: 32%;
  }
}

.privacy__inner.rule-page {
  line-height: 1.94;
}

.privacy__inner.rule-page {
  line-height: 2.22;
}

.privacy__caption {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.94;
  font-weight: 400;
}

.privacy__content {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.privacy__text {
  padding: 36px 0 94px;
  padding: 2.25rem 0 5.875rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
}

@media screen and (max-width: 375px) {
  .privacy__text {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .privacy__text {
    word-break: break-all;
  }
}

.privacy__text span {
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
}

@media screen and (max-width: 375px) {
  .privacy__text span {
    font-size: 1.25rem;
  }
}

.privacy__text span:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.privacy__text .add {
  font-size: 18px;
  font-size: 1.125rem;
}

.product {
  background-image: linear-gradient(135deg, #fffbeb 25%, #fef3d2 25%, #fef3d2 50%, #fffbeb 50%, #fffbeb 75%, #fef3d2 75%, #fef3d2 100%);
  background-size: 28.28px 28.28px;
}

.product__inner {
  padding: 30px 15px 70px;
  padding: 1.875rem 0.9375rem 4.375rem;
}

@media screen and (max-width: 375px) {
  .product__inner {
    padding: 0.9375rem 0.9375rem 4.375rem;
  }
}

.product__title {
  margin-top: 21px;
  margin-top: 1.3125rem;
}

@media screen and (min-width: 600px) {
  .product__title {
    margin-top: 4.375rem;
  }
}

@media screen and (min-width: 1024px) {
  .product__title {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .product__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5%;
  }
}

.product__wrapper .product__list:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .product__wrapper .product__list:not(:first-child) {
    margin-top: 0;
  }
}

.product__wrapper .product__list:nth-child(2) .product__list-title {
  padding: 15px 0;
  padding: 0.9375rem 0;
}

@media screen and (max-width: 375px) {
  .product__wrapper .product__list:nth-child(2) .product__list-title {
    padding: 0.375rem 0;
  }
}

.product__list :not(:first-child) {
  margin-top: auto;
}

@media screen and (max-width: 375px) {
  .product__list :not(:first-child) {
    margin-top: 0.4375rem;
  }
}

.product__list {
  border: 4px solid #DD2E1E;
  border: 0.25rem solid #DD2E1E;
  border-radius: 0.375rem;
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
  box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
  min-height: auto;
}

@media screen and (min-width: 768px) {
  .product__list {
    width: 47.9%;
    border: 4px solid #DD2E1E;
    -webkit-box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
    box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .2);
  }
}

.product__list__inner {
  letter-spacing: 0.5px;
  background-color: #fff;
  border-radius: 10px;
  min-height: 204px;
  min-height: 12.75rem;
  padding: 5px 5px 12px 10px;
  padding: 0.3125rem 0.3125rem 0.75rem 0.625rem;
}

@media screen and (min-width: 768px) {
  .product__list__inner {
    padding: 1.5625rem 1.25rem 0.9375rem 3rem;
  }
}

@media screen and (max-width: 375px) {
  .product__list__inner {
    line-height: 1.55;
  }
}

.product__list-title {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(14px, 11.568px + 0.647vw, 24px);
  font-size: clamp(0.875rem, 0.723rem + 0.647vw, 1.5rem);
  color: #fff;
  background-color: #DD2E1E;
  text-align: center;
  padding: 10px 0;
  padding: 0.625rem 0;
  position: relative;
}

@media screen and (max-width: 375px) {
  .product__list-title {
    padding: 0.25rem 0;
  }
}

.circle {
  margin-right: 10px;
  display: inline-block;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  border: solid 6px #fff;
}

@media screen and (max-width: 375px) {
  .circle {
    width: 1.6875rem;
    height: 1.6875rem;
    border: solid 3px #fff;
  }
}

.cross {
  margin-right: 18px;
  margin-right: 1.125rem;
  position: relative;
  display: inline-block;
  width: 55px;
  width: 3.4375rem;
  height: 8px;
  height: 0.5rem;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: middle;
}

@media screen and (max-width: 375px) {
  .cross {
    width: 2.0625rem;
    height: 0.3125rem;
    margin-right: 0.5rem;
  }
}

.cross::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.product__list-item {
  font-size: clamp(12px, 10.8px + 0.38vw, 18px);
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
}

@media screen and (max-width: 375px) {
  .product__list-item {
    letter-spacing: -0.05em;
  }
}

.product__list-item:not(:first-child) {
  margin-top: 14px;
  margin-top: 0.875rem;
}

@media screen and (max-width: 375px) {
  .product__list-item:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.product__list-inner li:not(:first-child) {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.privacy__text.regulation-page {
  line-height: 1.9;
}

@media screen and (min-width: 768px) {
  .privacy__text.regulation-page {
    line-height: 2.22;
  }
}

.privacy__text.regulation-page span {
  font-weight: 600;
}

.company__information.rule-page {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.company__inner.rule-page {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

@media screen and (max-width: 375px) {
  .company__inner.rule-page {
    padding-bottom: 0;
  }
}

.stripe-title.rule-page {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.company__information.rule-page tbody {
  border: 2px solid;
}

@media screen and (min-width: 768px) {
  .c-cell {
    height: 8.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-cell td {
    padding-bottom: 3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-cell td:nth-of-type(2) {
    padding-top: 0.25rem;
    line-height: 1.9;
  }
}

.company__information.shop-page td:nth-child(1) {
  background-color: #FFE62B;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .company__information.shop-page td:nth-child(1) {
    padding: 1.5625rem 0 4.1875rem;
    width: 15.625rem;
  }
}

@media screen and (max-width: 375px) {
  .company__information.shop-page {
    margin-top: 3.75rem;
  }
}

.company__information.shop-page table tbody {
  border: 2px solid;
}

.company__information.shop-page td {
  text-align: center;
}

@media screen and (max-width: 375px) {
  .company__information.shop-page td {
    width: 100%;
  }
}

.company__information.shop-page td:nth-child(2) {
  text-align: center;
  padding: 20px;
}

.company__adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cell-1 {
  width: 73%;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .cell-1 {
    width: 57.7%;
    text-align: left;
    text-align: initial;
  }
}

.cell-1 span {
  font-weight: 700;
}

.cell-1 .business-hours {
  font-weight: 700;
  display: block;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .cell-1 .business-hours {
    text-align: left;
    text-align: initial;
  }
}

.cell-1 .business-hours .text-nomal {
  font-weight: 500;
}

.cell-2 span {
  margin-left: 24px;
  margin-left: 1.5rem;
  color: #fff;
  background-color: black;
  padding: 0 10px;
  padding: 0 0.625rem;
  cursor: pointer;
}

.cell-2 span:hover {
  opacity: 0.6;
}

.company__information.shop-page td:nth-child(2) {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .company__information.shop-page td:nth-child(2) {
    padding: 1.5rem 3rem 1.4375rem 3rem;
    text-align: left;
  }
}

.company__information.shop-page {
  font-size: 30px;
  text-align: center;
  background: white;
  padding: 40px;
}

@media screen and (min-width: 768px) {
  .company__information.shop-page {
    font-size: 40px;
    text-align: center;
    background: white;
    padding: 40px;
  }
}

.drawer__content-item.site-map {
  border: none;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (min-width: 768px) {
  .drawer__content-item.site-map {
    font-size: 1.25rem;
  }
}

.drawer__content-item.site-map::before {
  content: none;
}

.drawer__content-inner {
  padding: 80px 0 0;
  padding: 5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 375px) {
  .drawer__content-inner {
    display: block;
  }
}

.drawer__content-inner.site-map {
  padding: 80px 0 80px;
  padding: 5rem 0 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 375px) {
  .drawer__content-inner.site-map {
    display: block;
    padding: 3.75rem 0 0;

  }
}

.drawer__content-item {
  font-size: 20px;
  font-size: 1.25rem;
}

.drawer__content-item.right {
  position: relative;
}

.drawer__content-item.right::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #FFE62B;
  border-radius: 50px;
  border-top: none;
  border-right: none;
  height: 13px;
  height: 0.8125rem;
  width: 13px;
  width: 0.8125rem;
}

@media screen and (min-width: 768px) {
  .drawer__content-item.right::before {
    left: 31px;
  }
}

@media screen and (max-width: 375px) {
  .drawer__content-item.right::before {
    left: 39px;
  }
}

.drawer__content-item.site-map.home::after {
  background: url(../images/common/ico-home.png);
  content: "";
  position: absolute;
  height: 23px;
  height: 1.4375rem;
  width: 22px;
  width: 1.375rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.flex-box {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .flex-box {
    width: 50%;
  }
}

@media screen and (max-width: 375px) {
  .flex-box {
    width: 100%;
  }
}

.flex-box-upper {
  width: 100%;
  display: block;
}

@media screen and (max-width: 375px) {
  .flex-box-upper {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .flex-box-upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.flex-box-lower {
  width: 100%;
}

@media screen and (max-width: 375px) {
  .flex-box-lower {
    display: block;

  }
}

@media screen and (min-width: 768px) {
  .flex-box-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.drawer__content-item.site-map p:before {
  content: none;
}

.advantage__additional {
  font-size: clamp(12px, 10.544px + 0.388vi, 18px);
  font-size: clamp(0.75rem, 0.659rem + 0.388vi, 1.125rem);
  line-height: 1.9;
  text-indent: -8px;
}

@media screen and (min-width: 768px) {
  .advantage__additional {
    line-height: 2.2;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 375px) {
  .advantage__additional {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 375px) {
  .advantage__additional p {
    text-indent: -8px;
    margin-left: 8px;
  }
}



.fv {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/top/top-mv-sp.png);
  height: 70.1333333333vw;
}

@media screen and (min-width: 768px) {
  .fv {
    height: 39.5833333333vw;
  }
}

@media screen and (min-width: 600px) {
  .fv {
    background-image: url(../images/top/top_mv-pc.png);
    height: 53.583333vw;
  }
}

@media screen and (min-width: 1440px) {
  .fv__inner {
    padding-top: 10.625rem;
  }
}

@media screen and (min-width: 1440px) {
  .fv__inner {
    padding-top: 6.5625rem;
  }
}

.fv__wrap {
  position: absolute;
  top: 10%;
  width: auto;
}

@media screen and (max-width: 425px) {
  .fv__wrap {
    top: 4%;
    line-height: 1.4;
  }
}

@media screen and (min-width: 600px) {
  .fv__wrap {
    display: block;
    position: absolute;
    top: 6%;
  }
}

@media screen and (min-width: 768px) {
  .fv__wrap {
    display: block;
    position: absolute;
    top: 25%;
    left: 9%;
  }
}

@media screen and (min-width: 1440px) {
  .fv__wrap {
    display: block;
    top: 22%;
    left: 19%;
    position: absolute;
    width: 68%;
  }
}

.fv__main-text {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 900;
}

@media screen and (max-width: 375px) {
  .fv__main-text {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .fv__main-text {
    font-size: 2.8125rem;
  }
}

@media screen and (min-width: 1440px) {
  .fv__main-text {
    font-size: 3.75rem;
  }
}

@media screen and (min-width: 1440px) {
  .fv__main-text {
    font-size: 4.375rem;
  }
}

.fv__main-text span {
  font-size: 28px;
  font-size: 1.75rem;
}

@media screen and (max-width: 375px) {
  .fv__main-text span {
    font-size: 1.4375rem;
  }
}

@media screen and (min-width: 1440px) {
  .fv__main-text span {
    font-size: 3.125rem;
  }
}

.fv__text-img {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (max-width: 375px) {
  .fv__text-img img {
    width: 58.4%;
  }
}

@media screen and (min-width: 1024px) {
  .fv__text-img img {
    width: 37.5%;
  }
}

@media screen and (min-width: 1440px) {
  .fv__text-img img {
    width: clamp(35rem, 35.752rem + 18.123vw, 46.5rem);
  }
}

.fv__main-text-img {
  margin-top: 27px;
  margin-top: 1.6875rem;
  margin-left: -14px;
  margin-left: -0.875rem;
  display: block;
  width: 57%;
  margin-top: auto;
}

@media screen and (max-width: 375px) {
  .fv__main-text-img {
    width: 56%;
    margin-left: -0.4375rem;
    margin-top: 0.5625rem;
  }
}

@media screen and (min-width: 600px) {
  .fv__main-text-img {
    width: 72%;
    margin-top: 0.125rem;
    margin-left: -1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .fv__main-text-img {
    margin-top: clamp(0rem, -6.75rem + 7.5vw, 2.25rem);
  }
}

@media screen and (min-width: 1024px) {
  .fv__main-text-img {
    width: 62%;
    margin-top: 0.3125rem;
  }
}

@media screen and (min-width: 1440px) {
  .fv__main-text-img {
    width: 85%;
    margin-top: 16px;
  }
}

.fv__text span {
  display: block;
}

@media screen and (min-width: 600px) {
  .fv__text span {
    display: inline;
  }
}

.fv__text {
  font-size: clamp(10px, 4.224px + 1.541vw, 20px);
  font-size: clamp(0.625rem, 0.264rem + 1.541vw, 1.25rem);
  margin-top: -15px;
  margin-top: -0.9375rem;
  font-weight: 700;
  line-height: 1.7;
}

@media screen and (max-width: 375px) {
  .fv__text {
    margin-top: -0.1875rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 600px) {
  .fv__text {
    margin-top: -0.125rem;
  }
}

@media screen and (min-width: 1440px) {
  .fv__text {
    font-size: 1.75rem;
    margin-top: 0.125rem;
  }
}

.fv__img-list {
  display: none;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

@media screen and (min-width: 600px) {
  .fv__img-list {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3%;
    margin-top: 0.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .fv__img-list {
    width: 78%;
  }
}

@media screen and (min-width: 1440px) {
  .fv__img-list {
    width: 100%;
    margin-top: 1.625rem;
  }
}

.fv__img {
  width: 23.5%;
}

@media screen and (min-width: 1440px) {
  .fv__img {
    width: 28.5%;
  }
}

@media screen and (min-width: 600px) {
  .product__button-wrapper {
    display: none;
  }
}

.price__inner {
  padding-top: 38px;
  padding-top: 2.375rem;
}

@media screen and (max-width: 375px) {
  .price__inner {
    padding-top: 1.0625rem;
  }
}

.price__table-detail {
  text-align: center;
  font-size: 19px;
  font-size: 1.1875rem;
  margin-top: 14px;
  margin-top: 0.875rem;
  text-align: center;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .price__table-detail {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 375px) {
  .price__table-detail {
    font-size: 0.875rem;
    text-align: left;
  }
}

.price__table {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
}

@media screen and (min-width: 600px) {
  .price__table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.price__table-attention {
  text-align: left;
  text-align: initial;
  font-size: 9px;
  font-size: 0.5625rem;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

@media screen and (max-width: 375px) {
  .price__table-attention {
    line-height: 1.7;
    text-indent: -0.375rem;
    margin-left: 0.3125rem;
  }
}

@media screen and (min-width: 600px) {
  .price__table-attention {
    text-align: right;
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.price__table-attention .attention-1 {
  text-indent: -5px;
}

@media screen and (min-width: 600px) {
  .price__table-attention .attention-1 {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .price__table-attention .attention-2 {
    display: block;
  }
}

.price__table table {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .price__table table {
    width: 33.3%;
  }
}

.price__table table {
  border-collapse: collapse;
  /* 追加: セルの境界線をまとめる */
  width: 100%;
  border: 3px solid;
  border: 0.1875rem solid;
}

.price__table td,
th {
  border: 1px solid #282c32;
  border: 0.0625rem solid #282c32;
  border-collapse: collapse;
  text-align: center;
}

@media screen and (min-width: 768px) {

  .price__table td,
  th {
    border: 0.1875rem solid #282c32;
  }
}

.price__table td,
.price__table th {
  padding: 7px 0;
  padding: 0.4375rem 0;
  height: 25px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
}

@media screen and (max-width: 375px) {

  .price__table td,
  .price__table th {
    padding: 0.25rem 0;
  }
}

@media screen and (min-width: 600px) {

  .price__table td,
  .price__table th {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {

  .price__table td,
  .price__table th {
    border-left: none;
    font-size: 1.375rem;
  }
}

.price__table .sec-table {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .price__table .sec-table {
    border-left: none;
  }
}

@media screen and (min-width: 768px) {
  .price__table .thi-table {
    border-left: none;
  }
}

@media screen and (min-width: 600px) {
  .price__table tr {
    font-size: 1rem;
  }
}

.price__table th {
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
}

@media screen and (max-width: 375px) {
  .price__table th {
    font-size: 1rem;
  }
}

@media screen and (min-width: 600px) {
  .price__table th {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .price__table th {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 375px) {
  .price__table td {
    font-size: 1rem;
  }
}

.price__table table:not(:last-of-type) tr:last-child td {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .price__table table:not(:last-of-type) tr:last-child td {
    border-bottom: 0.1875rem solid #28323c;
  }
}

@media screen and (min-width: 600px) {
  .price__table table:not(:last-of-type) tr:last-child td {
    border-bottom: 0.1875rem solid #28323c;
  }
}

.price__table table:first-of-type {
  border-bottom: none;
}

.first-head {
  width: 100px;
  width: 6.25rem;
  background-color: #f2d784;
}

table tbody tr th:nth-child(1) {
  background-color: #f2d784;
}

table tbody tr th:nth-child(2) {
  background-color: #FFC922;
}

table tbody tr td:nth-child(2) {
  color: #DD2E1E;
}

.even {
  background: #fffae9;
}

.odd {
  background: #fefcf9;
}

.price__table-supplement {
  font-size: 36px;
  font-size: 2.25rem;
  text-align: center;
  margin-top: 47px;
  margin-top: 2.9375rem;
  font-weight: 700;
}

@media screen and (max-width: 375px) {
  .price__table-supplement {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

.price__table-supplement span {
  font-size: 35px;
  font-size: 2.1875rem;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(0, 0, 0, 0)), color-stop(70%, #ffee8a));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, #ffee8a 70%);
}

@media screen and (max-width: 375px) {
  .price__table-supplement span {
    font-size: 0.875rem;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(0, 0, 0, 0)), color-stop(70%, #ffee8a));
    background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, #ffee8a 70%);
  }
}

/* 注意書きブロック本体：自分で中央に来る */
.price__table-note {
  display: block;
  /* ブロック要素に */
  width: -webkit-fit-content;
  /* Safari 旧 */
  width: -moz-fit-content;
  /* Firefox 旧 */
  width: fit-content;
  /* 中身の幅に収縮 */
  max-width: 100%;
  /* はみ出し防止 */
  margin: 0.75rem auto 0;
  /* auto で中央寄せ */
  padding: 0;
  list-style: none;
  text-align: left;
  /* 中は左揃え（※の縦ラインを作る） */
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  color: #000;
}

/* 米印の縦ラインを揃える */
.price__table-note li {
  position: relative;
  padding-left: 1.2em;
  /* ※のぶん下げる */
  margin: 0;
  /* グローバルUL/LIの余白打ち消し */
}

.price__table-note li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* 〜375pxで少しコンパクトに */
@media screen and (max-width: 375px) {
  .price__table-note {
    margin-top: 0.5rem;
    /* font-size: 0.8125rem; */
    line-height: 1.7;
    padding: 0 0.5rem;
    /* 端に張り付くのを軽減（任意） */
  }
}

.flow {
  padding-bottom: 103px;
  padding-bottom: 6.4375rem;
  background-image: url(../images/top/flow-backgrond.png);
  background-repeat: no-repeat;
  background-size: 288%;
  background-position: bottom;
}

@media screen and (min-width: 768px) {
  .flow {
    background-size: 100%;
  }
}

.flow__list {
  margin-top: 59px;
  margin-top: 3.6875rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .flow__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3%;
  }
}

@media screen and (max-width: 375px) {
  .flow__list {
    margin-top: 2.3125rem;
  }
}

.flow__list .flow__card:not(:first-child) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .flow__list .flow__card:not(:first-child) {
    margin: 0;
  }
}

.flow__card {
  width: auto;
  background-color: #fff;
  border: 4px solid;
  border-radius: 14px;
  padding: 61px 25px 20px;
  padding: 3.8125rem 1.5625rem 1.25rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .flow__card {
    width: 33.3%;
  }
}

@media screen and (max-width: 375px) {
  .flow__card {
    width: auto;
    padding: 2.1875rem 1.125rem 1.0625rem;
    border: 0.1875rem solid;
  }
}

.flow__number {
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  top: -45px;
  top: -2.8125rem;
  width: 90px;
  width: 5.625rem;
  /* または任意のサイズ */
  height: 90px;
  height: 5.625rem;
  /* 幅と同じサイズにすることで円形に */
  text-align: center;
  padding: 9px 0;
  padding: 0.5625rem 0;
  border-radius: 50%;
  /* 円形にする */
  background-color: #ffe62b;
  /* 背景色 */
  font-size: 20px;
  font-size: 1.25rem;
  /* テキストサイズ */
  font-weight: 700;
  border: 3px solid;
  border: 0.1875rem solid;
  -webkit-box-shadow: 2px 2px 0 #707070;
  box-shadow: 2px 2px 0 #707070;
}

@media screen and (max-width: 375px) {
  .flow__number {
    width: 3.75rem;
    height: 3.75rem;
    border: 0.25rem solid;
    font-size: 0.8125rem;
    top: -2.0625rem;
    padding: 0.125rem 0;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  .flow__number {
    border: 4px solid;
    padding: 0.1875rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .flow__number {
    padding: 7px 0;
  }
}

.flow__number span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  /* テキストサイズ */
  line-height: 1;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
}

.flow__number span::after {
  counter-increment: number 1;
  content: "0" counter(number) "";
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (max-width: 375px) {
  .flow__number span::after {
    font-size: 1.375rem;
    line-height: 0.9;
  }
}

.flow__card-title {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 375px) {
  .flow__card-title {
    font-size: 1.125rem;
  }
}

.flow__card-img {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.flow__card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 336/220;
  -o-object-fit: cover;
  object-fit: cover;
}

.flow__card-text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  line-height: 1.7;
}

@media screen and (min-width: 600px) {
  .flow__card-text {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 375px) {
  .flow__card-text {
    font-size: 0.75rem;
    line-height: 1.9;
    margin-top: 0.8125rem;
  }
}

.flow__footer {
  margin-top: 52px;
  margin-top: 3.25rem;
  text-align: center;
}

.advantage {
  background-image: linear-gradient(135deg, #fffbeb 25%, #fef3d2 25%, #fef3d2 50%, #fffbeb 50%, #fffbeb 75%, #fef3d2 75%, #fef3d2 100%);
  background-size: 28.28px 28.28px;
}

.advantage__inner {
  padding-top: 9px;
  padding-top: 0.5625rem;
  padding-bottom: 82px;
  padding-bottom: 5.125rem;
}

@media screen and (max-width: 375px) {
  .advantage__inner {
    padding-top: 1.875rem;
  }
}

.advantage__title {
  font-size: clamp(15.008px, 11.36px + 0.971vw, 30px);
  font-size: clamp(0.938rem, 0.71rem + 0.971vw, 1.875rem);
  font-weight: normal;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .advantage__title {
    margin-top: 3.25rem;
  }
}

@media screen and (max-width: 375px) {
  .advantage__title {
    font-size: 0.9375rem;
  }
}

.advantage__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (max-width: 375px) {
  .advantage__list {
    margin-top: 2.5rem;
  }
}

.advantage__point {
  background-color: #fff;
  border: 4px solid;
  padding: 39px 15px 15px 16px;
  padding: 2.4375rem 0.9375rem 0.9375rem 1rem;
  border-radius: 14px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .advantage__point {
    padding: 0.1875rem 1.5625rem 1.5rem 2.6875rem;
  }
}

@media screen and (max-width: 375px) {
  .advantage__point {
    border: 0.1875rem solid;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

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

.advantage__number {
  position: absolute;
  background-color: #ffe62b;
  /* 背景色 */
  -webkit-box-shadow: 0.25rem 0.3125rem 0 -0.125rem #707070;
  box-shadow: 0.25rem 0.3125rem 0 -0.125rem #707070;
  font-size: clamp(13.008px, 11.296px + 0.453vw, 20px);
  font-size: clamp(0.813rem, 0.706rem + 0.453vw, 1.25rem);
  padding: 8px 15px 13px;
  padding: 0.5rem 0.9375rem 0.8125rem;
  line-height: 0.7;
  font-weight: 900;
  border: 4px solid;
  top: -29px;
  top: -1.8125rem;
  font-family: Arial;
}

@media screen and (max-width: 375px) {
  .advantage__number {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.625rem 0.5625rem;
    width: 30.5%;
    top: -1.25rem;
    border: 0.1875rem solid;
  }
}

.advantage__number span {
  font-size: clamp(23.008px, 20.08px + 0.777vw, 35.008px);
  font-size: clamp(1.438rem, 1.255rem + 0.777vw, 2.188rem);
  font-family: "Roboto", sans-serif;
  margin-left: 10px;
  margin-left: 0.625rem;
  position: relative;
  top: 1px;
  top: 0.0625rem;
}

@media screen and (min-width: 768px) {
  .advantage__number span {
    top: 0.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .advantage__number span {
    top: 0.125rem;
  }
}

@media screen and (max-width: 375px) {
  .advantage__number span {
    font-size: 1.3125rem;
    top: 2px;
  }
}

.advantage__number span::after {
  counter-increment: pointCounter;
  content: "0" counter(pointCounter);
}

.advantage__content {
  display: block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .advantage__content {
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5.27%;
  }
}

.advantage__text {
  width: auto;
}

@media screen and (min-width: 768px) {
  .advantage__text {
    width: 51.83%;
  }
}

.advantage__detail {
  font-size: clamp(12px, 10.544px + 0.388vw, 18px);
  font-size: clamp(0.75rem, 0.659rem + 0.388vw, 1.125rem);
  margin-top: 19px;
  margin-top: 1.1875rem;
  line-height: 1.9;
  letter-spacing: -0.1px;
  letter-spacing: -0.00625rem;
}

@media screen and (min-width: 768px) {
  .advantage__detail {
    line-height: 2.2;
  }
}

@media screen and (max-width: 375px) {
  .advantage__detail {
    margin-top: 0.5625rem;
  }
}

.advantage__detail span {
  font-size: 11px;
  font-size: 0.6875rem;
  display: block;
}

.advantage__img {
  width: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .advantage__img {
    width: 44.66%;
  }
}

.advantage__img img {
  aspect-ratio: 315/227;
  -o-object-fit: cover;
  object-fit: cover;
}

.advantage__point:nth-child(even) .advantage__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 375px) {
  .advantage__point:nth-child(even) .advantage__content {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
  }
}

.advantage__point:nth-child(even) .advantage__number {
  left: 55%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 375px) {
  .advantage__point:nth-child(even) .advantage__number {
    left: auto;
    left: initial;
    -webkit-transform: none;
    transform: none;
    -webkit-transform: initial;
    transform: initial;
  }
}

.advantage__list .advantage__point:not(:first-child) {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .advantage__list .advantage__point:not(:first-child) {
    margin-top: 7.3125rem;
  }
}

.advantage__footer {
  text-align: center;
  margin-top: 38px;
  margin-top: 2.375rem;
}

@media screen and (max-width: 375px) {
  .advantage__footer {
    margin-top: 3.125rem;
  }
}

.review {
  background-image: url(../images/top/flow-backgrond.png);
  background-repeat: no-repeat;
  background-size: 236%;
  background-position: bottom;
}

@media screen and (max-width: 375px) {
  .review {
    background-size: 288%;
  }
}

@media screen and (min-width: 768px) {
  .review {
    background-size: 100%;
  }
}

.review__inner {
  padding: 72px 25px 63px;
  padding: 4.5rem 1.5625rem 3.9375rem;
}

@media screen and (max-width: 375px) {
  .review__inner {
    padding: 2.5rem 1.5625rem 3.9375rem;
  }
}

.review__description {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 375px) {
  .review__description {
    font-size: 1rem;
  }
}

.review__list.page-voice {
  display: block;
  margin-top: 42px;
  margin-top: 2.625rem;
}

@media screen and (min-width: 768px) {
  .review__list.page-voice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 2.3125rem;
    -moz-column-gap: 3.75%;
    -webkit-column-gap: 3.75%;
    column-gap: 3.75%;
    margin-top: 3.5625rem;
  }
}

.review__list {
  display: block;
  margin-top: 42px;
  margin-top: 2.625rem;
}

@media screen and (min-width: 768px) {
  .review__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 2.3125rem;
    -moz-column-gap: 3.75%;
    -webkit-column-gap: 3.75%;
    column-gap: 3.75%;
    margin-top: 3.5625rem;
  }
}

.review__list .review__card:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .review__list .review__card:not(:first-child) {
    margin-top: 0;
  }
}

.review__card {
  border: 3px solid;
  border: 0.1875rem solid;
  background: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 22px 15px;
  padding: 1.375rem 0.9375rem;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .16);
  box-shadow: 0.3125rem 0.3125rem 0.3125rem rgba(0, 0, 0, .16);
}

@media screen and (min-width: 768px) {
  .review__card {
    width: 30.83%;
    margin: 0;
    margin: initial;
    max-width: none;
    max-width: initial;
  }
}

@media screen and (max-width: 375px) {
  .review__card {
    width: auto;
  }
}

.review__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 500;
}

.review__card dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 85%;
}

.review__card dt {
  padding: 4px 0;
  padding: 0.25rem 0;
  background-color: #FFE62B;
  font-weight: 700;
  text-align: center;
  width: 35%;
  margin-right: 19px;
  margin-right: 1.1875rem;
}

.review__card dl:not(:first-child) {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.review__card dd {
  font-weight: 600;
}

.review__footer {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.faq__inner {
  padding-top: 100px;
  padding-top: 6.25rem;
}

@media screen and (max-width: 375px) {
  .faq__inner {
    padding-top: 3.75rem;
  }
}

.faq__description {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-top: 22px;
  margin-top: 1.375rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .faq__description {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 375px) {
  .faq__description {
    font-size: 0.9375rem;
    text-align: center;
  }
}

.faq__list {
  margin-top: 32px;
  margin-top: 2rem;
}

.faq__list li:not(:first-child) {
  margin-top: 32px;
  margin-top: 2rem;
}

.faq-list__item {
  width: 100%;
  cursor: pointer;
}

.faq-list__item-q-content {
  border: 3px solid;
  border: 0.1875rem solid;
  font-size: 20px;
  font-size: 1.25rem;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .faq-list__item-q-content {
    border: 0.25rem solid;
  }
}

@media screen and (max-width: 375px) {
  .faq-list__item-q-content {
    border: 0.125rem solid;
  }
}

.faq-list__item-q-content::after {
  content: "";
  position: absolute;
  right: 6px;
  right: 0.375rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  background-image: url(../images/top/qa-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 33px;
  width: 2.0625rem;
  height: 33px;
  height: 2.0625rem;
  right: 4px;
  right: 0.25rem;
}

@media screen and (min-width: 768px) {
  .faq-list__item-q-content::after {
    height: 2.5rem;
    width: 2.5rem;
  }
}

@media screen and (max-width: 375px) {
  .faq-list__item-q-content::after {
    width: 1.6875rem;
    height: 1.6875rem;
  }
}

.faq-list__item-q-content:hover::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  /* 180度回転 */
}

.faq-list__item-answer-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.4s, max-height 0.2s ease-in-out;
  transition: opacity 0.4s, max-height 0.2s ease-in-out;
}

.faq-list__item-answer-content.is-open {
  opacity: 1;
  max-height: 200px;
  max-height: 12.5rem;
  overflow: hidden;
  -webkit-transition: opacity 0.4s, max-height 0.2s ease-in-out;
  transition: opacity 0.4s, max-height 0.2s ease-in-out;
}

.faq-list__item-q-content.is-open {
  opacity: 1;
  max-height: 1000px;
}

.faq-list__item-q {
  line-height: 1.6;
  background: #FFE62B;
  text-align: center;
  background-color: #FFE62B;
  border-right: 3px solid;
  border-right: 0.1875rem solid;
  font-size: 35px;
  font-size: 2.1875rem;
  font-family: Arial;
  padding: 0 10px;
  padding: 0 0.625rem;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 375px) {
  .faq-list__item-q {
    font-size: 1.875rem;
    padding: 0 0.5rem;
    border-right: 0.125rem solid;
  }
}

@media screen and (min-width: 600px) {
  .faq-list__item-q {
    font-size: 2.5rem;
    border-right: 0.25rem solid;
  }
}

.faq-list__item-question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.faq-list__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  padding-left: 32px;
  padding-left: 2rem;
  font-size: 20px;
  font-size: 1.25rem;
  padding-right: 60px;
}

@media screen and (max-width: 375px) {
  .faq-list__item-text {
    font-size: 1rem;
    padding-left: 1.375rem;
    padding-right: 2.9375rem;
  }
}

.faq-list__item-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  padding-left: 32px;
  padding-left: 2rem;
  font-size: 20px;
  font-size: 1.25rem;
  padding-right: 6%;
}

@media screen and (max-width: 375px) {
  .faq-list__item-answer {
    font-size: 0.875rem;
    padding: 1.125rem 0 1.125rem 3.25rem;
  }
}

.faq-list__item-answer span {
  font-size: 50px;
  font-size: 3.125rem;
  margin-right: 21px;
  margin-right: 1.3125rem;
}

@media screen and (max-width: 375px) {
  .faq-list__item-answer span {
    font-size: 2.25rem;
  }
}

.faq__footer {
  margin-top: 48px;
  margin-top: 3rem;
  text-align: center;
}

@media screen and (max-width: 375px) {
  .faq__footer {
    margin-top: 3.125rem;
  }
}

.top-button-wrapper {
  margin-top: 120px;
  margin-top: 7.5rem;
}

@media screen and (min-width: 768px) {
  .top-button-wrapper {
    margin-top: 9.9375rem;
  }
}

@media screen and (max-width: 375px) {
  .top-button-wrapper {
    display: none;
  }
}

.top-button-wrapper a:hover {
  opacity: 0.6;
}

.first-button {
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .first-button {
    margin-right: 2.8125rem;
  }
}

.second-button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.vendor-button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 600px) {
  .vendor-button {
    margin-top: 2.5rem;
  }
}

.to-top {
  width: 60px;
  width: 3.75rem;
  position: fixed;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .to-top {
    width: 6.25rem;
    bottom: 2.25rem;
    right: 8.75rem;
  }
}

@media screen and (max-width: 375px) {
  .to-top {
    width: 3.75rem;
    bottom: 6.25rem;
    right: 0.3125rem;
  }
}

.p-form__label {
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-form__label {
    font-size: 1rem;
  }
}

/* p内に入れる用：ボタンをブロック化して下に並べる */
.flow__page-text .flow__page-btn {
  display: block;
  margin: 12px auto 0;
  width: 100%;
  max-width: 360px;
  padding: 14px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.flow__page-text .flow__page-btn--guest {
  background-color: #222;
  color: #fff;
}

.flow__page-text .flow__page-btn--account {
  background-color: #EEEEEE;
  color: #222;
  border: 1px solid #ccc;
}

.flow__page-text .flow__page-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.flow__page-text .flow__page-note {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .flow__page-text .flow__page-btn {
    display: inline-block;
    width: auto;
    min-width: 240px;
    margin: 12px 8px 0;
  }
}

/* ===== applyページ専用 導線 ===== */

.apply-guide {
  text-align: center;
  margin: 24px 0;
}

.apply-guide__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ボタンエリア */
.apply-guide__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 共通ボタン */
.apply-guide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ゲスト */
.apply-guide__btn--guest {
  background-color: #222;
  color: #fff;
}

/* 会員 */
.apply-guide__btn--account {
  background-color: #eee;
  color: #222;
  border: 1px solid #ccc;
}

/* hover */
.apply-guide__btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* 補足文 */
.apply-guide__note {
  margin-top: 14px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* SP：縦並び */
@media screen and (max-width: 767px) {
  .apply-guide__actions {
    flex-direction: column;
    align-items: center;
  }

  .apply-guide__btn {
    width: 100%;
    max-width: 360px;
  }
}

.faq-list__item-answer-text {
  font-size: 20px!important;
  font-size: 1.25rem!important;
}

/* はじめての方はこちら表記を非表示 */
span.link-text-register {
    display: none !important;
}
/* ユーザー名（パスワード）をお忘れの方はこちらのリンクを非表示にする */
span.link-text-username {
    display: none !important;
}
/* 「＊必須項目」非表示 */
.req-text{
  display: none;
}

.required-notice {
  text-align: right;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: -30px;
}

.required-notice .required-mark {
  color: #bd3500;
  font-weight: bold;
  margin-right: 3px;
}

/*# sourceMappingURL=styles.css.map */