@charset "UTF-8";
/* scss/base/_variables.scss */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/* scss/base/mixins.css */
.color-gold {
  color: #977D05;
}

/* scss/base/common.css */
body {
  color: #221F1F;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
@media (max-width: 1920px) {
  body {
    font-size: 0.9rem;
  }
}
@media (max-width: 1440px) {
  body {
    font-size: 0.8rem;
  }
}
@media (max-width: 1140px) {
  body {
    font-size: 0.7rem;
  }
}
@media (max-width: 960px) {
  body {
    font-size: 1rem;
    touch-action: manipulation;
  }
}

.container {
  width: 45%;
  margin: auto;
  min-width: 600px;
}
@media (max-width: 960px) {
  .container {
    width: 100%;
    padding: 0 2.5rem;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }
}

.bg {
  background: url(../images/bg.png), linear-gradient(rgb(251, 248, 238), rgb(201, 195, 169));
  background-position: left top;
  background-repeat: repeat, no-repeat;
  background-size: 68px 156px, cover;
  background-attachment: fixed;
  height: 100vh;
}

.heading {
  text-align: center;
  position: relative;
  width: 100%;
}
.heading__text {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
}
@media (max-width: 1660px) {
  .heading__text {
    font-size: 2.2rem;
    line-height: 2.7rem;
  }
}
@media (max-width: 1440px) {
  .heading__text {
    font-size: 2rem;
    line-height: 3.5rem;
  }
}
@media (max-width: 1140px) {
  .heading__text {
    font-size: 1.6rem;
    line-height: 2.9rem;
  }
}
@media (max-width: 960px) {
  .heading__text {
    font-size: 3.4rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  .heading__text {
    font-size: 2.1rem;
    line-height: 3.75rem;
  }
}
@media (max-width: 500px) {
  .heading__text {
    font-size: 1.9rem;
    line-height: 2.85rem;
  }
}
@media (max-width: 374px) {
  .heading__text {
    font-size: 1.7rem;
  }
}
.heading::before {
  content: "";
  width: 2px;
  height: 100%;
  border-left: 2px solid #221F1F;
  position: absolute;
  left: 38%;
  box-shadow: -4px 0px #000;
}
@media (max-width: 960px) {
  .heading::before {
    left: 35%;
    width: 4px;
    border-left: 4px solid #221F1F;
    box-shadow: -11px 0px #000;
  }
}
@media (max-width: 767px) {
  .heading::before {
    width: 3px;
    border-left: 3px solid #221F1F;
    box-shadow: -8px 0px #000;
  }
}
@media (max-width: 500px) {
  .heading::before {
    width: 2px;
    border-left: 2px solid #221F1F;
    box-shadow: -4px 0px #000;
  }
}
.heading::after {
  content: "";
  width: 2px;
  height: 100%;
  border-right: 2px solid #221F1F;
  position: absolute;
  right: 38%;
  box-shadow: 4px 0px #000;
}
@media (max-width: 960px) {
  .heading::after {
    right: 35%;
    width: 4px;
    border-right: 4px solid #221F1F;
    box-shadow: 11px 0px #000;
  }
}
@media (max-width: 767px) {
  .heading::after {
    width: 3px;
    border-right: 3px solid #221F1F;
    box-shadow: -8px 0px #000;
  }
}
@media (max-width: 500px) {
  .heading::after {
    width: 2px;
    border-right: 2px solid #221F1F;
    box-shadow: -4px 0px #000;
  }
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in__inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideTxt {
  opacity: 0;
}

.slideTxt span {
  opacity: 0;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.br {
  display: inline-block;
}

.sp-br {
  display: none;
}
@media (max-width: 960px) {
  .sp-br {
    display: inline-block;
  }
}

.pc-br {
  display: inline-block;
}
@media (max-width: 960px) {
  .pc-br {
    display: none;
  }
}

/* scss/components/footer.css */
footer {
  background: #fff;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  text-align: center;
  padding: 0.8rem 0 2.5rem;
  font-size: 0.75rem;
  border-top: 1px solid #221F1F;
}
@media (max-width: 960px) {
  footer {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  footer {
    font-size: 0.75rem;
  }
}
footer .footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.9rem;
}
@media (max-width: 960px) {
  footer .footer__inner {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
}
footer .footer__inner .footer__logo {
  max-width: 212px;
}
@media (max-width: 960px) {
  footer .footer__inner .footer__logo {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  footer .footer__inner .footer__logo {
    max-width: 212px;
  }
}
footer .footer__inner .footer__icon {
  max-width: 51px;
  transition: all 0.3s;
}
@media (max-width: 960px) {
  footer .footer__inner .footer__icon {
    max-width: 102px;
  }
}
@media (max-width: 767px) {
  footer .footer__inner .footer__icon {
    max-width: 51px;
  }
}
footer .footer__inner .footer__icon:hover {
  transform: scale(1.1);
}

/* scss/components/button.css */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
  background-color: #A10000;
  color: #fff;
  transition: 0.3s;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  border-radius: 45px;
}
@media (max-width: 1660px) {
  .button {
    padding: 1.25rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 960px) {
  .button {
    padding: 1.25rem;
    font-size: 1.9rem;
  }
}
@media (max-width: 767px) {
  .button {
    font-size: 1rem;
  }
}

.button--red {
  overflow: hidden;
  position: relative;
}
.button--red::after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #977D05;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
@media (max-width: 960px) {
  .button--red::after {
    content: none;
  }
}
.button--red:has(.campaign-end) {
  pointer-events: none;
}
.button--red:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.button--red span {
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.button--red button:hover span {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.button--red .campaign-end {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
}
.button--red .campaign-end span {
  font-size: 20px;
}
@media (max-width: 960px) {
  .button--red .campaign-end span {
    font-size: 14px;
  }
}

.button--back {
  background-color: #7A7A7A;
  overflow: hidden;
  position: relative;
}
.button--back::after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #221F1F;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
.button--back:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.button--back span {
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.button--back button:hover span {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* scss/pages/top.css */
main {
  position: relative;
  margin-top: 10.75%;
}
@media (max-width: 960px) {
  main {
    margin-top: 66.35%;
  }
}

.kv {
  width: 100vw;
  position: relative;
}
.kv--pc {
  display: block;
}
@media (max-width: 960px) {
  .kv--pc {
    display: none;
  }
}
.kv--sp {
  display: none;
}
@media (max-width: 960px) {
  .kv--sp {
    display: block;
  }
}
.kv__bg {
  height: 50%;
}
@media (max-width: 960px) {
  .kv__bg {
    height: 60%;
  }
}
.kv__logo {
  position: absolute;
  top: 1.7%;
  right: 1.5%;
  z-index: 99;
  width: 11.6%;
}
@media (max-width: 960px) {
  .kv__logo {
    top: 1.4%;
    left: 1.6%;
    z-index: 99;
    width: 28%;
  }
}
.kv__catch {
  position: absolute;
  top: 9%;
  right: 20%;
  width: 14.6%;
  z-index: 4;
}
@media (max-width: 960px) {
  .kv__catch {
    top: 0%;
    right: 0%;
    width: 32.5%;
  }
}
.kv__tare {
  position: absolute;
  bottom: 0;
  right: 29.55%;
  z-index: 5;
  width: 21.9%;
}
@media (max-width: 960px) {
  .kv__tare {
    bottom: 3.4%;
    right: 36%;
    z-index: 4;
    width: 28%;
  }
}
.kv__txt_1 {
  position: absolute;
  top: 39%;
  right: 43.4%;
  width: 20.5%;
  z-index: 3;
}
@media (max-width: 960px) {
  .kv__txt_1 {
    top: 2.7%;
    right: 18.9%;
    width: 62.5%;
  }
}
.kv__txt_2 {
  position: absolute;
  bottom: 5.6%;
  left: 20.4%;
  width: 15%;
  z-index: 3;
}
@media (max-width: 960px) {
  .kv__txt_2 {
    top: 32.8%;
    left: 1.7%;
    width: 40.6%;
  }
}
.kv__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 100%;
}
.kv__img_r {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24%;
  z-index: 2;
}
.kv__img_t {
  position: absolute;
  left: 4%;
  width: 52%;
  z-index: 2;
}
.kv__img_l {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16%;
  z-index: 2;
}
.kv__under {
  position: absolute;
  bottom: -25.3%;
  right: 0;
  width: 100%;
  height: 25.3%;
  z-index: 2;
  background: #221F1F;
}
@media (max-width: 960px) {
  .kv__under {
    bottom: -38.5%;
    height: 38.5%;
  }
}
.kv__under .campaign-end {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
}
.kv__under .campaign-end span {
  font-size: 28px;
}
@media (max-width: 960px) {
  .kv__under .campaign-end span {
    font-size: 20px;
  }
}
.kv__incentive {
  position: absolute;
  top: 0;
  left: 0;
  width: 69%;
  height: 100%;
  z-index: 3;
}
@media (max-width: 960px) {
  .kv__incentive {
    width: 93%;
  }
}
.kv__incentive img {
  position: relative;
  top: 50%;
  left: 23%;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .kv__incentive img {
    top: 48%;
    left: 4%;
  }
}
.kv .fadeIn {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.kv .fadeUp {
  opacity: 0;
  transform: translateY(6px);
  animation: fadeUp 0.5s ease-in forwards;
}
.kv .kv__incentive.fadeUp {
  transform: translateY(12px);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kv .fadeRight {
  opacity: 0;
  transform: translateX(6px);
  animation: fadeRight 0.5s ease-in forwards;
}
@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.kv .fadeDown {
  opacity: 0;
  transform: translateY(-6px);
  animation: fadeDown 0.5s ease-in forwards;
}
@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kv .fadeLeft {
  opacity: 0;
  transform: translateX(-6px);
  animation: fadeLeft 0.5s ease-in forwards;
}
@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.kv .delay-time04 {
  animation-delay: 0.4s;
}
.kv .delay-time06 {
  animation-delay: 0.6s;
}
.kv .delay-time08 {
  animation-delay: 0.8s;
}
.kv .delay-time08 {
  animation-delay: 0.8s;
}
.kv .delay-time10 {
  animation-delay: 1s;
}
.kv .delay-time12 {
  animation-delay: 1.2s;
}

.nav {
  margin: 0rem auto 4.5rem;
  width: 40%;
  max-width: 765px;
  min-width: 500px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1660px) {
  .nav {
    width: 100%;
    margin-bottom: 3.5rem;
    max-width: 660px;
  }
}
@media (max-width: 1440px) {
  .nav {
    margin-bottom: 2.3rem;
    max-width: 575px;
  }
}
@media (max-width: 1140px) {
  .nav {
    min-width: 460px;
    max-width: 430px;
  }
}
@media (max-width: 960px) {
  .nav {
    margin-bottom: 7rem;
    min-width: 0;
    max-width: none;
    width: 90%;
  }
}
@media (max-width: 767px) {
  .nav {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 500px) {
  .nav {
    margin-bottom: 1.5rem;
  }
}
.nav__list {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 1660px) {
  .nav__list {
    gap: 1.1rem;
  }
}
@media (max-width: 1140px) {
  .nav__list {
    gap: 0.65rem;
  }
}
@media (max-width: 960px) {
  .nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
  }
}
@media (max-width: 500px) {
  .nav__list {
    gap: 0.5rem;
  }
}
.nav .button {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #887621;
  font-size: 1.38rem;
  width: 33.3%;
  white-space: nowrap;
  padding: 0;
  transition: all 0.4s;
}
@media (max-width: 1920px) {
  .nav .button {
    font-size: 1.2rem;
  }
}
@media (max-width: 1440px) {
  .nav .button {
    font-size: 1rem;
  }
}
@media (max-width: 1140px) {
  .nav .button {
    border-radius: 10px;
    font-size: 0.7rem;
  }
}
@media (max-width: 960px) {
  .nav .button {
    width: calc(50% - 0.65rem);
    font-size: 2rem;
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .nav .button {
    font-size: 1.5rem;
    border-radius: 14px;
  }
}
@media (max-width: 500px) {
  .nav .button {
    font-size: 1rem;
    border-radius: 10px;
  }
}
@media (max-width: 374px) {
  .nav .button {
    font-size: 0.9rem;
  }
}
.nav .button:hover {
  background: #fff;
  color: #221F1F;
}
@media (max-width: 960px) {
  .nav .button:hover {
    background: #887621;
    color: #fff;
  }
}
.nav .button:active {
  background-color: #887621;
}
.nav .button a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.5rem;
}
@media (max-width: 1920px) {
  .nav .button a {
    padding: 1.2rem;
  }
}
@media (max-width: 1660px) {
  .nav .button a {
    padding: 1rem;
  }
}
@media (max-width: 1140px) {
  .nav .button a {
    padding: 0.8rem;
  }
}
@media (max-width: 960px) {
  .nav .button a {
    padding: 2.1rem;
  }
}
@media (max-width: 767px) {
  .nav .button a {
    padding: 1.2rem;
  }
}
@media (max-width: 500px) {
  .nav .button a {
    padding: 1rem;
  }
}
@media (max-width: 374px) {
  .nav .button a {
    padding: 0.9rem;
  }
}

.description {
  text-align: center;
}
.description p {
  font-size: 1.5rem;
  margin: 1.5rem 0 2rem;
  line-height: 2rem;
}
@media (max-width: 1660px) {
  .description p {
    font-size: 1.15rem;
  }
}
@media (max-width: 1440px) {
  .description p {
    font-size: 1.05rem;
    margin: 1rem 0 1.5rem;
  }
}
@media (max-width: 960px) {
  .description p {
    font-size: 2.25rem;
    line-height: 3rem;
    margin-top: 5.5rem;
  }
}
@media (max-width: 767px) {
  .description p {
    font-size: 1.1rem;
    line-height: 1.8rem;
    margin-top: 1rem;
  }
}
@media (max-width: 500px) {
  .description p {
    font-size: 1rem;
  }
}
.description__bg {
  background: #CBC5AB;
  opacity: 0.35;
  width: 100%;
  height: 190px;
  position: absolute;
  z-index: 1;
  top: -1.5rem;
}
@media (max-width: 1660px) {
  .description__bg {
    height: 168px;
  }
}
@media (max-width: 1440px) {
  .description__bg {
    height: 150px;
  }
}
@media (max-width: 1140px) {
  .description__bg {
    height: 125px;
  }
}
@media (max-width: 960px) {
  .description__bg {
    height: 25px;
    top: -3.3rem;
  }
}
@media (max-width: 767px) {
  .description__bg {
    top: -2.8rem;
  }
}
@media (max-width: 500px) {
  .description__bg {
    top: -2.5rem;
  }
}
.description .heading {
  z-index: 2;
}

.campaign:first-of-type {
  margin-top: 2.5rem;
}
@media (max-width: 1660px) {
  .campaign:first-of-type {
    margin-top: 1.9rem;
  }
}
@media (max-width: 1140px) {
  .campaign:first-of-type {
    margin-top: 1.7rem;
  }
}
.campaign:first-of-type .apply p {
  text-align: center;
  text-indent: 0;
  padding-left: 0;
}
.campaign:nth-of-type(2) {
  margin-top: 4.5rem;
  padding-bottom: 10.25rem;
}
@media (max-width: 767px) {
  .campaign:nth-of-type(2) {
    padding-bottom: 5.25rem;
  }
}
.campaign:nth-of-type(2) .campaign__inner {
  padding-bottom: 4.85rem;
}
.campaign__inner {
  background: #fff;
  box-shadow: 0 8px 12px rgba(167, 160, 130, 0.5);
}
.campaign__description {
  background: #221F1F;
  padding: 1.6rem 0 1rem;
  text-align: center;
}
@media (max-width: 1140px) {
  .campaign__description {
    padding: 1rem 0 0.5rem;
  }
}
@media (max-width: 960px) {
  .campaign__description {
    padding: 1.7rem 1rem;
  }
}
@media (max-width: 500px) {
  .campaign__description {
    padding: 1.7rem 0.4rem;
  }
}
.campaign__description__img {
  position: relative;
}
.campaign__description__img img {
  width: 38%;
  min-width: 240px;
  max-width: 280px;
}
@media (max-width: 1440px) {
  .campaign__description__img img {
    min-width: 230px;
  }
}
@media (max-width: 1140px) {
  .campaign__description__img img {
    min-width: 180px;
    max-width: 210px;
  }
}
@media (max-width: 960px) {
  .campaign__description__img img {
    font-size: 2rem;
    max-width: 310px;
    width: 43%;
  }
}
@media (max-width: 767px) {
  .campaign__description__img img {
    font-size: 1.2rem;
    max-width: 250px;
  }
}
.campaign__description__img p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  white-space: nowrap;
}
@media (max-width: 1660px) {
  .campaign__description__img p {
    font-size: 1.3rem;
  }
}
@media (max-width: 1140px) {
  .campaign__description__img p {
    font-size: 1rem;
  }
}
@media (max-width: 960px) {
  .campaign__description__img p {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .campaign__description__img p {
    font-size: 1.2rem;
  }
}
@media (max-width: 500px) {
  .campaign__description__img p {
    font-size: 1.1rem;
  }
}
.campaign__title {
  color: #fff;
  font-size: 2.25rem;
  line-height: 3.25rem;
}
@media (max-width: 1660px) {
  .campaign__title {
    font-size: 1.85rem;
  }
}
@media (max-width: 1140px) {
  .campaign__title {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
@media (max-width: 960px) {
  .campaign__title {
    font-size: 2.3rem;
  }
}
@media (max-width: 767px) {
  .campaign__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
@media (max-width: 500px) {
  .campaign__title {
    font-size: 1.3rem;
    line-height: 2rem;
  }
}
.campaign__detail {
  width: 70%;
  margin: auto;
}
@media (max-width: 960px) {
  .campaign__detail {
    width: 100%;
    padding: 0 15px;
  }
}
.campaign__detail__button {
  width: 78%;
  margin: 2.5rem auto 0;
  max-width: 470px;
}
@media (max-width: 1660px) {
  .campaign__detail__button {
    margin-top: 2rem;
  }
}
@media (max-width: 1140px) {
  .campaign__detail__button {
    margin-top: 1.5rem;
  }
}
@media (max-width: 960px) {
  .campaign__detail__button {
    font-size: 1.5rem;
    margin-top: 3rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .campaign__detail__button {
    width: 88%;
  }
}
@media (max-width: 500px) {
  .campaign__detail__button {
    margin-top: 1rem;
  }
}
.campaign__detail__button .button {
  padding: 0;
}
@media (max-width: 1920px) {
  .campaign__detail__button .button {
    font-size: 0.9rem;
  }
}
@media (max-width: 1140px) {
  .campaign__detail__button .button {
    font-size: 0.7rem;
  }
}
@media (max-width: 960px) {
  .campaign__detail__button .button {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .campaign__detail__button .button {
    font-size: 1.4rem;
  }
}
@media (max-width: 500px) {
  .campaign__detail__button .button {
    font-size: 1rem;
  }
}
.campaign__detail__button .button a {
  display: block;
  width: 100%;
  padding: 1.5rem;
}
@media (max-width: 1660px) {
  .campaign__detail__button .button a {
    padding: 1.25rem;
  }
}
@media (max-width: 1140px) {
  .campaign__detail__button .button a {
    padding: 0.9rem;
  }
}
@media (max-width: 960px) {
  .campaign__detail__button .button a {
    padding: 1.8rem;
  }
}
@media (max-width: 500px) {
  .campaign__detail__button .button a {
    padding: 1.5rem;
  }
}
@media (max-width: 960px) {
  .campaign__detail__button .button:hover {
    background: #A10000;
  }
}
.campaign__detail__text {
  margin-top: 1.25rem;
  padding: 0 0.8rem 3.5rem;
  font-size: 1rem;
  line-height: 1.4rem;
  text-indent: -1em;
  padding-left: calc(1em + 0.8rem);
}
@media (max-width: 1920px) {
  .campaign__detail__text {
    font-size: 0.8rem;
  }
}
@media (max-width: 1660px) {
  .campaign__detail__text {
    line-height: 1rem;
  }
}
@media (max-width: 1140px) {
  .campaign__detail__text {
    font-size: 0.6rem;
    line-height: 0.8rem;
    padding-bottom: 2rem;
    margin-top: 1rem;
  }
}
@media (max-width: 960px) {
  .campaign__detail__text {
    font-size: 1.5rem;
    margin-top: 3rem;
    line-height: 2rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 767px) {
  .campaign__detail__text {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 500px) {
  .campaign__detail__text {
    margin-top: 2rem;
    padding-bottom: 4rem;
  }
}
.campaign__detail .heading::before {
  left: 34%;
}
@media (max-width: 1920px) {
  .campaign__detail .heading::before {
    left: 31%;
  }
}
@media (max-width: 960px) {
  .campaign__detail .heading::before {
    left: 25%;
  }
}
.campaign__detail .heading::after {
  right: 34%;
}
@media (max-width: 1920px) {
  .campaign__detail .heading::after {
    right: 31%;
  }
}
@media (max-width: 960px) {
  .campaign__detail .heading::after {
    right: 25%;
  }
}
.campaign .apply {
  position: relative;
  padding: 20px;
  border: 1px solid #000;
  background-color: #fff;
  text-align: center;
  margin: 3.5rem auto 2.5rem;
}
@media (max-width: 1920px) {
  .campaign .apply {
    margin-top: 3rem;
  }
}
@media (max-width: 1140px) {
  .campaign .apply {
    margin: 2rem auto 1.8rem;
  }
}
@media (max-width: 960px) {
  .campaign .apply {
    padding: 20px 20px 35px;
    margin: 4rem auto 3.5rem;
  }
}
@media (max-width: 767px) {
  .campaign .apply {
    padding: 20px 15px;
  }
}
@media (max-width: 500px) {
  .campaign .apply {
    margin: 3rem auto 2.5rem;
  }
}
.campaign .apply h4 {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
  line-height: 1.25rem;
  font-size: 1.5rem;
  background: #FFF;
}
@media (max-width: 1920px) {
  .campaign .apply h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 1660px) {
  .campaign .apply h4 {
    font-size: 1.3rem;
  }
}
@media (max-width: 1440px) {
  .campaign .apply h4 {
    font-size: 1.1rem;
  }
}
@media (max-width: 1140px) {
  .campaign .apply h4 {
    font-size: 1rem;
  }
}
@media (max-width: 960px) {
  .campaign .apply h4 {
    font-size: 2.1rem;
  }
}
@media (max-width: 767px) {
  .campaign .apply h4 {
    font-size: 1.3rem;
  }
}
.campaign .apply p {
  font-size: 1.2rem;
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}
@media (max-width: 1920px) {
  .campaign .apply p {
    font-size: 1rem;
  }
}
@media (max-width: 1440px) {
  .campaign .apply p {
    font-size: 0.9rem;
  }
}
@media (max-width: 1140px) {
  .campaign .apply p {
    font-size: 0.7rem;
    line-height: 1rem;
  }
}
@media (max-width: 960px) {
  .campaign .apply p {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 767px) {
  .campaign .apply p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.campaign .apply p:first-of-type {
  margin-top: 1rem;
}
@media (max-width: 1440px) {
  .campaign .apply p:first-of-type {
    margin-top: 0;
  }
}
@media (max-width: 960px) {
  .campaign .apply p:first-of-type {
    margin-top: 0.7rem;
  }
}
.campaign__item {
  width: 87%;
  margin: auto;
}
@media (max-width: 960px) {
  .campaign__item {
    width: 100%;
  }
}
.campaign__item p {
  font-size: 1.9rem;
  line-height: 3rem;
  text-align: center;
}
@media (max-width: 1920px) {
  .campaign__item p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 1660px) {
  .campaign__item p {
    font-size: 1.45rem;
    line-height: 1.9rem;
  }
}
@media (max-width: 1140px) {
  .campaign__item p {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 960px) {
  .campaign__item p {
    font-size: 2.4rem;
    line-height: 3.5rem;
  }
}
@media (max-width: 767px) {
  .campaign__item p {
    font-size: 1.65rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 500px) {
  .campaign__item p {
    font-size: 1.3rem;
  }
}
.campaign__item p:last-child {
  margin-top: 2.5rem;
}
@media (max-width: 1920px) {
  .campaign__item p:last-child {
    margin-top: 0.8rem;
  }
}
@media (max-width: 960px) {
  .campaign__item p:last-child {
    margin-top: 2.8rem;
  }
}
@media (max-width: 767px) {
  .campaign__item p:last-child {
    max-width: 470px;
    margin: 2.8rem auto;
  }
}
@media (max-width: 500px) {
  .campaign__item p:last-child {
    margin: 0.5rem auto 0;
  }
}
.campaign__item .color-gold {
  font-size: 2.5rem;
}
@media (max-width: 1920px) {
  .campaign__item .color-gold {
    font-size: 2.1rem;
  }
}
@media (max-width: 1660px) {
  .campaign__item .color-gold {
    font-size: 1.9rem;
  }
}
@media (max-width: 1440px) {
  .campaign__item .color-gold {
    font-size: 1.8rem;
  }
}
@media (max-width: 1140px) {
  .campaign__item .color-gold {
    font-size: 1.4rem;
  }
}
@media (max-width: 960px) {
  .campaign__item .color-gold {
    font-size: 2.9rem;
  }
}
@media (max-width: 767px) {
  .campaign__item .color-gold {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .campaign__item .color-gold {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.campaign__item p:first-child .color-gold {
  font-size: 2.25rem;
}
@media (max-width: 1140px) {
  .campaign__item p:first-child .color-gold {
    font-size: 1.7rem;
  }
}
@media (max-width: 960px) {
  .campaign__item p:first-child .color-gold {
    font-size: 2.75rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  .campaign__item p:first-child .color-gold {
    font-size: 2.3rem;
  }
}
@media (max-width: 500px) {
  .campaign__item p:first-child .color-gold {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.campaign__item__caption {
  font-size: 0.8rem;
  text-align: right;
  display: block;
}
@media (max-width: 1660px) {
  .campaign__item__caption {
    font-size: 0.75rem;
  }
}
@media (max-width: 1140px) {
  .campaign__item__caption {
    font-size: 0.6rem;
  }
}
@media (max-width: 960px) {
  .campaign__item__caption {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .campaign__item__caption {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .campaign__item__caption {
    font-size: 0.82rem;
  }
}
.campaign__item img {
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
}
@media (max-width: 960px) {
  .campaign__item img {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .campaign__item img {
    margin-top: 0;
  }
}
.campaign__incentive {
  background: #977D05;
  margin: 2px 0;
  position: relative;
}
.campaign__incentive::before {
  content: "";
  width: 100%;
  height: 2px;
  border-top: 2px solid #977D05;
  position: absolute;
  left: 0;
  top: -4px;
}
.campaign__incentive::after {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #977D05;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.campaign__incentive p {
  color: #fff;
  font-size: 2.9rem;
  line-height: 2.8rem;
  text-align: center;
}
@media (max-width: 1660px) {
  .campaign__incentive p {
    font-size: 2.4rem;
  }
}
@media (max-width: 1140px) {
  .campaign__incentive p {
    font-size: 2.1rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive p {
    font-size: 4rem;
    line-height: 3.7rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive p {
    font-size: 2.6rem;
  }
}
.campaign__incentive p span {
  font-size: 1.9rem;
}
@media (max-width: 1660px) {
  .campaign__incentive p span {
    font-size: 2rem;
  }
}
@media (max-width: 1140px) {
  .campaign__incentive p span {
    font-size: 1.8rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive p span {
    line-height: 2.7rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive p span {
    font-size: 1.7rem;
  }
}
.campaign__incentive__inner {
  text-align: center;
  padding: 2.5rem 0;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner {
    padding: 1.8rem 0;
  }
}
.campaign__incentive__inner .campaign__detail__button {
  margin-top: 1.5rem;
}
.campaign__incentive__inner1 p:first-child {
  font-size: 1.5rem;
  line-height: 2.2rem;
  margin-bottom: 1.1rem;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner1 p:first-child {
    font-size: 1.3rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner1 p:first-child {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner1 p:first-child {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner1 p:first-child {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}
.campaign__incentive__inner1 p:first-child .color-gold {
  font-size: 2.25rem;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner1 p:first-child .color-gold {
    font-size: 1.7rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner1 p:first-child .color-gold {
    font-size: 2.75rem;
    line-height: 0rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner1 p:first-child .color-gold {
    font-size: 2.2rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner1 p:first-child .color-gold {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.campaign__incentive__inner1 p:nth-child(2) {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3.2rem;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner1 p:nth-child(2) {
    font-size: 1.7rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner1 p:nth-child(2) {
    font-size: 2.75rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner1 p:nth-child(2) {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner1 p:nth-child(2) {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.campaign__incentive__inner1 p:nth-child(2) .marker {
  background: linear-gradient(transparent 50%, rgb(239, 231, 190) 50%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s;
}
.campaign__incentive__inner1 p:nth-child(2) .marker.on {
  background-size: 100% 100%;
}
.campaign__incentive__inner1 p:nth-child(2) .fs-3 {
  font-size: 3rem;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner1 p:nth-child(2) .fs-3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner1 p:nth-child(2) .fs-3 {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner1 p:nth-child(2) .fs-3 {
    font-size: 3rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner1 p:nth-child(2) .fs-3 {
    font-size: 2.3rem;
  }
}
.campaign__incentive__inner1 p:nth-child(2) .color-bk {
  font-size: 1.5rem;
  line-height: 3.2rem;
  font-weight: 400;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner1 p:nth-child(2) .color-bk {
    font-size: 1.3rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner1 p:nth-child(2) .color-bk {
    font-size: 2rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner1 p:nth-child(2) .color-bk {
    font-size: 1.7rem;
    line-height: 3.2rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner1 p:nth-child(2) .color-bk {
    font-size: 1.3rem;
  }
}
.campaign__incentive__inner1 p:nth-child(3) {
  font-size: 1rem;
  line-height: 2rem;
}
@media (max-width: 1920px) {
  .campaign__incentive__inner1 p:nth-child(3) {
    font-size: 0.8rem;
  }
}
@media (max-width: 1140px) {
  .campaign__incentive__inner1 p:nth-child(3) {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner1 p:nth-child(3) {
    font-size: 1.5rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner1 p:nth-child(3) {
    font-size: 0.9rem;
    line-height: 2.9rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner1 p:nth-child(3) {
    font-size: 0.82rem;
  }
}
.campaign__incentive__inner1 a {
  font-size: 1rem;
  line-height: 1.4rem;
  color: #167BFF;
  text-decoration: underline;
}
@media (max-width: 1920px) {
  .campaign__incentive__inner1 a {
    font-size: 0.8rem;
  }
}
@media (max-width: 1660px) {
  .campaign__incentive__inner1 a {
    line-height: 1rem;
  }
}
@media (max-width: 1140px) {
  .campaign__incentive__inner1 a {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner1 a {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner1 a {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner1 a {
    font-size: 0.82rem;
  }
}
.campaign__incentive__inner2 {
  padding-bottom: 4.3rem;
}
@media (max-width: 1920px) {
  .campaign__incentive__inner2 {
    padding-bottom: 3.3rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner2 {
    padding-bottom: 7rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner2 {
    padding-bottom: 5rem;
  }
}
.campaign__incentive__inner2 p:first-child {
  font-size: 1.5rem;
  line-height: 2.2rem;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner2 p:first-child {
    font-size: 1.3rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner2 p:first-child {
    font-size: 2rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner2 p:first-child {
    font-size: 1.7rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner2 p:first-child {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}
.campaign__incentive__inner2 p:first-child .color-gold {
  font-size: 2.25rem;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner2 p:first-child .color-gold {
    font-size: 1.7rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner2 p:first-child .color-gold {
    font-size: 2.75rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner2 p:first-child .color-gold {
    font-size: 2.3rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner2 p:first-child .color-gold {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.campaign__incentive__inner2 p:nth-of-type(2) {
  font-size: 2.25rem;
  line-height: 3.2rem;
  margin-top: 2.25rem;
}
@media (max-width: 1920px) {
  .campaign__incentive__inner2 p:nth-of-type(2) {
    margin-top: 0.8rem;
  }
}
@media (max-width: 1660px) {
  .campaign__incentive__inner2 p:nth-of-type(2) {
    font-size: 2.1rem;
  }
}
@media (max-width: 1440px) {
  .campaign__incentive__inner2 p:nth-of-type(2) {
    font-size: 1.9rem;
  }
}
@media (max-width: 1140px) {
  .campaign__incentive__inner2 p:nth-of-type(2) {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner2 p:nth-of-type(2) {
    margin-top: 2.8rem;
    font-size: 2.75rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner2 p:nth-of-type(2) {
    font-size: 2.3rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner2 p:nth-of-type(2) {
    line-height: 2rem;
    font-size: 1.8rem;
    margin: 0.5rem auto 0;
  }
}
.campaign__incentive__inner2 p:nth-of-type(2) .fs-1\.5 {
  font-size: 1.5rem;
}
@media (max-width: 1140px) {
  .campaign__incentive__inner2 p:nth-of-type(2) .fs-1\.5 {
    font-size: 1.3rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner2 p:nth-of-type(2) .fs-1\.5 {
    font-size: 2rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner2 p:nth-of-type(2) .fs-1\.5 {
    font-size: 1.7rem;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner2 p:nth-of-type(2) .fs-1\.5 {
    font-size: 1.3rem;
  }
}
.campaign__incentive__inner2 p:nth-of-type(3) {
  font-size: 1rem;
  line-height: 1.4rem;
  margin-top: 1.25rem;
}
@media (max-width: 1920px) {
  .campaign__incentive__inner2 p:nth-of-type(3) {
    font-size: 0.8rem;
    margin-top: 0.8rem;
  }
}
@media (max-width: 1660px) {
  .campaign__incentive__inner2 p:nth-of-type(3) {
    line-height: 1rem;
  }
}
@media (max-width: 1140px) {
  .campaign__incentive__inner2 p:nth-of-type(3) {
    font-size: 0.65rem;
    line-height: 0.8rem;
  }
}
@media (max-width: 960px) {
  .campaign__incentive__inner2 p:nth-of-type(3) {
    font-size: 1.5rem;
    margin: 2.8rem auto;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .campaign__incentive__inner2 p:nth-of-type(3) {
    font-size: 0.9rem;
    line-height: 1.5rem;
    max-width: 500px;
  }
}
@media (max-width: 500px) {
  .campaign__incentive__inner2 p:nth-of-type(3) {
    font-size: 0.82rem;
    margin: 1.8rem auto;
  }
}
.campaign__incentive__inner2 img {
  margin: 1.1rem auto 0;
}
@media (max-width: 500px) {
  .campaign__incentive__inner2 img {
    margin-top: 0rem;
  }
}

.applicable__inner {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .applicable__inner {
    flex-direction: column;
    align-items: center;
    margin-top: 5.5rem;
  }
}
@media (max-width: 500px) {
  .applicable__inner {
    margin-top: 2.5rem;
  }
}
.applicable__inner img {
  width: 20%;
  object-fit: contain;
}
.applicable__inner__text {
  padding: 0;
}
@media (max-width: 960px) {
  .applicable__inner__text {
    padding: 0 0.8rem;
  }
}
@media (max-width: 500px) {
  .applicable__inner__text {
    padding: 0;
  }
}
.applicable__inner__text p:first-child {
  font-size: 2rem;
  line-height: 2.75rem;
}
@media (max-width: 1660px) {
  .applicable__inner__text p:first-child {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
@media (max-width: 1140px) {
  .applicable__inner__text p:first-child {
    font-size: 1.45rem;
    margin-top: 0.8rem;
    line-height: 1.9rem;
  }
}
@media (max-width: 960px) {
  .applicable__inner__text p:first-child {
    margin-top: 2.8rem;
    font-size: 2.55rem;
    line-height: 2.7rem;
  }
}
@media (max-width: 767px) {
  .applicable__inner__text p:first-child {
    font-size: 2.2rem;
  }
}
@media (max-width: 500px) {
  .applicable__inner__text p:first-child {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.3rem;
  }
}
.applicable__inner__text p:nth-child(2) {
  font-size: 1.2rem;
  line-height: 1.9rem;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid #221F1F;
}
@media (max-width: 1920px) {
  .applicable__inner__text p:nth-child(2) {
    font-size: 1.1rem;
  }
}
@media (max-width: 1660px) {
  .applicable__inner__text p:nth-child(2) {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 1140px) {
  .applicable__inner__text p:nth-child(2) {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
}
@media (max-width: 960px) {
  .applicable__inner__text p:nth-child(2) {
    font-size: 1.6rem;
    line-height: 2.3rem;
    padding: 2.5rem 0;
  }
}
@media (max-width: 767px) {
  .applicable__inner__text p:nth-child(2) {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 2rem 0 2.5rem;
  }
}
@media (max-width: 500px) {
  .applicable__inner__text p:nth-child(2) {
    font-size: 0.9rem;
  }
}
.applicable__inner__text p:nth-child(3) {
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  margin-top: 1.4rem;
}
@media (max-width: 1920px) {
  .applicable__inner__text p:nth-child(3) {
    font-size: 1.1rem;
  }
}
@media (max-width: 1660px) {
  .applicable__inner__text p:nth-child(3) {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 1140px) {
  .applicable__inner__text p:nth-child(3) {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
}
@media (max-width: 960px) {
  .applicable__inner__text p:nth-child(3) {
    font-size: 1.6rem;
    line-height: 2.3rem;
    margin-top: 0;
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .applicable__inner__text p:nth-child(3) {
    font-size: 1.2rem;
    line-height: 1.8rem;
    padding: 1.5rem;
  }
}
@media (max-width: 500px) {
  .applicable__inner__text p:nth-child(3) {
    font-size: 0.95rem;
    line-height: 1.3rem;
  }
}
.applicable__inner__text p:nth-child(4) {
  font-size: 1rem;
  line-height: 1.8rem;
  text-align: center;
}
@media (max-width: 1920px) {
  .applicable__inner__text p:nth-child(4) {
    font-size: 0.8rem;
  }
}
@media (max-width: 1660px) {
  .applicable__inner__text p:nth-child(4) {
    line-height: 1.4rem;
  }
}
@media (max-width: 1140px) {
  .applicable__inner__text p:nth-child(4) {
    font-size: 0.6rem;
    line-height: 0.8rem;
  }
}
@media (max-width: 960px) {
  .applicable__inner__text p:nth-child(4) {
    font-size: 1.3rem;
    line-height: 1rem;
  }
}
@media (max-width: 767px) {
  .applicable__inner__text p:nth-child(4) {
    font-size: 0.95rem;
  }
}
@media (max-width: 500px) {
  .applicable__inner__text p:nth-child(4) {
    font-size: 0.82rem;
  }
}

.qanda {
  background: #F6F6F1;
  width: 83%;
  margin: 8.2rem auto 2.3rem;
}
@media (max-width: 960px) {
  .qanda {
    width: 92%;
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .qanda {
    margin: 5.5rem auto 2.3rem;
  }
}
.qanda__inner {
  width: 79%;
  margin: auto;
  padding: 2rem 0 4.9rem;
  position: relative;
}
@media (max-width: 960px) {
  .qanda__inner {
    width: 92%;
  }
}
.qanda__inner .qanda__heading {
  position: absolute;
  width: 18.5%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .qanda__inner .qanda__heading {
    width: 34.5%;
    max-width: 100px;
  }
}
.qanda__inner dl {
  padding-bottom: 2rem;
  border-bottom: 1px solid #707070;
}
@media (max-width: 960px) {
  .qanda__inner dl {
    padding-bottom: 2.8rem;
  }
}
@media (max-width: 767px) {
  .qanda__inner dl {
    padding-bottom: 2.4rem;
  }
}
.qanda__inner dl:not(:first-child) {
  padding-top: 2rem;
}
@media (max-width: 960px) {
  .qanda__inner dl:not(:first-child) {
    padding-top: 2.8rem;
  }
}
@media (max-width: 767px) {
  .qanda__inner dl:not(:first-child) {
    padding-top: 2.4rem;
  }
}
.qanda__inner dl:not(:first-child):last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.qanda__inner dl dt {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1920px) {
  .qanda__inner dl dt {
    font-size: 1.1rem;
  }
}
@media (max-width: 1660px) {
  .qanda__inner dl dt {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 1140px) {
  .qanda__inner dl dt {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 960px) {
  .qanda__inner dl dt {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}
@media (max-width: 767px) {
  .qanda__inner dl dt {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 500px) {
  .qanda__inner dl dt {
    font-size: 0.95rem;
  }
}
.qanda__inner dl dt::before {
  content: "";
  background-image: url(../images/qanda_q.png);
  display: inline-block;
  width: 34px;
  height: 34px;
  min-width: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.qanda__inner dl dd {
  display: flex;
}
@media (max-width: 1920px) {
  .qanda__inner dl dd {
    font-size: 1rem;
  }
}
@media (max-width: 1660px) {
  .qanda__inner dl dd {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 1140px) {
  .qanda__inner dl dd {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 960px) {
  .qanda__inner dl dd {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .qanda__inner dl dd {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
.qanda__inner dl dd::before {
  content: "";
  background-image: url(../images/qanda_a.png);
  display: inline-block;
  width: 34px;
  height: 34px;
  min-width: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.qanda__inner dl dd .dd--indent p {
  text-indent: -1em;
  padding-left: 1em;
}

#form.heading::before {
  left: 34%;
}
@media (max-width: 1920px) {
  #form.heading::before {
    left: 31%;
  }
}
@media (max-width: 960px) {
  #form.heading::before {
    left: 17%;
  }
}
#form.heading::after {
  right: 34%;
}
@media (max-width: 1920px) {
  #form.heading::after {
    right: 31%;
  }
}
@media (max-width: 960px) {
  #form.heading::after {
    right: 17%;
  }
}

.contact {
  width: 83%;
  margin: 2.15rem auto 0;
  border: 1px solid #707070;
}
@media (max-width: 960px) {
  .contact {
    width: 92%;
  }
}
.contact__form {
  width: 84%;
  margin: auto;
  padding: 2.8rem 0rem 2.75rem;
}
@media (max-width: 960px) {
  .contact__form {
    width: 92%;
  }
}
.contact__form .form__group {
  margin-top: 2.5rem;
}
.contact__form .form__group:first-child {
  margin-top: 0;
}
.contact__form .form__group:last-child {
  margin-top: 1.5rem;
}
.contact__form:first-of-type label {
  margin-bottom: 1rem;
}
.contact label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.25rem;
}
@media (max-width: 1920px) {
  .contact label {
    font-size: 1.1rem;
  }
}
@media (max-width: 1660px) {
  .contact label {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 1140px) {
  .contact label {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 960px) {
  .contact label {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .contact label {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}
@media (max-width: 500px) {
  .contact label {
    font-size: 0.95rem;
  }
}
.contact .label__icon {
  color: #000;
  margin-right: 5px;
}
.contact .required {
  background: #DC4C4C;
  color: #fff;
  margin-left: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 1px 8px 2px;
  display: inline-block;
  -webkit-border-radius: 900px;
  -moz-border-radius: 900px;
  border-radius: 900px;
}
@media (max-width: 1920px) {
  .contact .required {
    font-size: 1rem;
  }
}
@media (max-width: 1660px) {
  .contact .required {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
}
@media (max-width: 1140px) {
  .contact .required {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media (max-width: 960px) {
  .contact .required {
    font-size: 1.2rem;
    line-height: 1.9rem;
  }
}
@media (max-width: 767px) {
  .contact .required {
    font-size: 0.7rem;
    padding: 1px 6px 2px;
    line-height: 1rem;
  }
}
.contact .error-message {
  color: #DC4C4C;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1660px) {
  .contact .error-message {
    font-size: 0.95rem;
    line-height: 1.25rem;
  }
}
@media (max-width: 1140px) {
  .contact .error-message {
    font-size: 0.8rem;
    line-height: 1.05rem;
  }
}
@media (max-width: 960px) {
  .contact .error-message {
    font-size: 1.25rem;
    line-height: 1.95rem;
  }
}
@media (max-width: 767px) {
  .contact .error-message {
    font-size: 0.85rem;
    line-height: 1.05rem;
  }
}
.contact input[type=email], .contact input[type=text] {
  width: 100%;
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-size: 100%;
  line-height: 1.5rem;
  border: 1px solid #000;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}
.contact input[type=text] {
  margin-top: 0.5rem;
}
@media (max-width: 960px) {
  .contact input[type=text] {
    margin-top: 1rem;
  }
}
.contact input[type=radio] {
  margin-right: 10px;
}
.contact input[type=file] {
  width: 100%;
}
@media (max-width: 1920px) {
  .contact input[type=file] {
    font-size: 1rem;
  }
}
@media (max-width: 1660px) {
  .contact input[type=file] {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 1140px) {
  .contact input[type=file] {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 960px) {
  .contact input[type=file] {
    font-size: 1.45rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .contact input[type=file] {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}
.contact input[type=file]::file-selector-button {
  background: #221F1F;
  color: #fff;
  font-size: 0.9rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.3;
}
@media (max-width: 1920px) {
  .contact input[type=file]::file-selector-button {
    font-size: 1rem;
  }
}
@media (max-width: 1660px) {
  .contact input[type=file]::file-selector-button {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 1140px) {
  .contact input[type=file]::file-selector-button {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 960px) {
  .contact input[type=file]::file-selector-button {
    font-size: 1.45rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .contact input[type=file]::file-selector-button {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}
.contact .radio__group {
  font-size: 1rem;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}
.contact .radio__group label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
}
@media (max-width: 1920px) {
  .contact .radio__group label {
    font-size: 1rem;
  }
}
@media (max-width: 1660px) {
  .contact .radio__group label {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 1140px) {
  .contact .radio__group label {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 960px) {
  .contact .radio__group label {
    font-size: 1.45rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .contact .radio__group label {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin-bottom: 0.7rem;
  }
}
.contact .radio__group label::before,
.contact .radio__group label::after {
  content: "";
  display: block;
  position: absolute;
}
.contact .radio__group label::before {
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #221F1F;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.contact .radio__group label::after {
  background: #A10000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;
  height: 12px;
  width: 12px;
  transform: translateY(-50%);
  top: 50%;
  left: 9px;
}
.contact .radio__group input:checked + label::after {
  opacity: 1;
}
@media (max-width: 960px) {
  .contact .radio__group p {
    font-size: 1.75rem;
    line-height: 2.1rem;
  }
}
@media (max-width: 767px) {
  .contact .radio__group p {
    font-size: 0.9rem;
  }
}
.contact__button {
  max-width: 245px;
  width: 78%;
  margin: 2.8rem auto 0;
}
@media (max-width: 960px) {
  .contact__button {
    max-width: none;
  }
}
@media (max-width: 1920px) {
  .contact__button .button {
    font-size: 0.9rem;
  }
}
@media (max-width: 1140px) {
  .contact__button .button {
    font-size: 0.7rem;
    padding: 0.9rem;
  }
}
@media (max-width: 960px) {
  .contact__button .button {
    font-size: 1.7rem;
    padding: 1.8rem;
  }
}
@media (max-width: 767px) {
  .contact__button .button {
    font-size: 1.4rem;
  }
}
@media (max-width: 500px) {
  .contact__button .button {
    font-size: 1rem;
    padding: 1.5rem;
  }
}
.contact .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.contact .p-step__itemFileWrap {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .contact .p-step__itemFileWrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.contact .p-step__itemFileWrap + .p-step__itemFileWrap {
  margin-top: 20px;
}
.contact .p-step__itemFileBtn {
  display: inline-block;
  flex-shrink: 0;
  cursor: pointer;
}
.contact .p-step__itemFilePrevWrap {
  display: none;
  position: relative;
  flex: 0 1 100%;
  margin-left: 13px;
}
.contact .p-step__itemFilePrevDel {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0 4px;
  color: #fff;
}
.contact .p-step__itemFileWrap.is-selected {
  display: flex;
}
.contact .p-step__itemFileWrap.is-selected .p-step__itemFilePrevWrap {
  display: block;
}
.contact .p-step__itemFileWrap.is-selected + .p-step__itemFileWrap {
  display: flex;
}
.contact .image-preview {
  max-width: 150px !important;
  max-height: 150px !important;
  object-fit: cover;
}

.attention {
  background: #F6F6F1;
  padding: 7.25rem 0 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .attention {
    padding: 5.25rem 0 2rem;
  }
}
.attention__heading {
  position: absolute;
  width: 9.5%;
  top: 0;
  left: 50%;
  max-width: 170px;
  transform: translate(-50%, -50%);
}
@media (max-width: 960px) {
  .attention__heading {
    width: 13.5%;
  }
}
@media (max-width: 767px) {
  .attention__heading {
    width: 24.5%;
    max-width: 100px;
  }
}
.attention__lead {
  color: #A10000;
  font-weight: 500;
  line-height: 1.1rem;
  text-align: center;
  padding: 0 1.25rem;
}
@media (max-width: 1920px) {
  .attention__lead {
    font-size: 1.1rem;
  }
}
@media (max-width: 1660px) {
  .attention__lead {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 1140px) {
  .attention__lead {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 960px) {
  .attention__lead {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .attention__lead {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}
@media (max-width: 500px) {
  .attention__lead {
    font-size: 0.95rem;
  }
}
.attention__text__inner {
  width: 36.5%;
  margin: 2.2rem auto;
  position: relative;
}
@media (max-width: 960px) {
  .attention__text__inner {
    width: 100%;
    padding: 0 1.25rem;
  }
}
.attention__text__inner::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 50%;
  height: 40%;
  top: -17%;
  right: -60%;
  z-index: 1;
  background-image: url(../images/gold_r.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: fuwafuwa 5.5s ease-in-out infinite alternate;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(7deg);
  }
  50% {
    transform: translate(0, 7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate-(7deg);
  }
}
@media (max-width: 960px) {
  .attention__text__inner::before {
    content: none;
  }
}
.attention__text__inner::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 52%;
  height: 40%;
  bottom: -13%;
  left: -63%;
  z-index: 1;
  background-image: url(../images/gold_l.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: fuwafuwa 5.5s ease-in-out infinite alternate;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@media (max-width: 960px) {
  .attention__text__inner::after {
    content: none;
  }
}
.attention__text__inner div {
  font-size: 0.9rem;
  line-height: 1.25rem;
  padding-left: 1em;
}
@media (max-width: 960px) {
  .attention__text__inner div {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.attention__text__inner div .heading--indent {
  text-indent: -1em;
}
.attention__text__inner div .indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* scss/pages/confirm.css */
.confirm__page {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: 10rem 0;
}
@media (max-width: 1440px) {
  .confirm__page {
    margin: 100px 0;
  }
}
@media (max-width: 960px) {
  .confirm__page {
    margin: 10rem 0;
  }
}
@media (max-width: 767px) {
  .confirm__page {
    margin: 3.5rem 0;
  }
}
@media (max-width: 960px) {
  .confirm__page .heading::before {
    left: 20%;
  }
}
@media (max-width: 500px) {
  .confirm__page .heading::before {
    left: 17%;
  }
}
@media (max-width: 374px) {
  .confirm__page .heading::before {
    left: 13%;
  }
}
@media (max-width: 960px) {
  .confirm__page .heading::after {
    right: 20%;
  }
}
@media (max-width: 500px) {
  .confirm__page .heading::after {
    right: 17%;
  }
}
@media (max-width: 374px) {
  .confirm__page .heading::after {
    right: 13%;
  }
}

.confirm {
  width: 80%;
  max-width: 980px;
  background-color: #fff;
  box-shadow: 0 8px 12px rgba(167, 160, 130, 0.5);
  overflow: hidden;
  margin-top: 3.5rem;
  padding: 3.5rem 0;
}
@media (max-width: 1660px) {
  .confirm {
    width: 60%;
  }
}
@media (max-width: 960px) {
  .confirm {
    width: calc(100% - 40px);
    margin-top: 6.5rem;
  }
}
@media (max-width: 767px) {
  .confirm {
    margin-top: 3.5rem;
  }
}
.confirm__data {
  display: flex;
  margin-bottom: 2rem;
  gap: 3.5rem;
}
@media (max-width: 960px) {
  .confirm__data {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }
}
.confirm__data__inner {
  width: 50%;
  margin: auto;
}
@media (max-width: 1660px) {
  .confirm__data__inner {
    width: 60%;
  }
}
@media (max-width: 960px) {
  .confirm__data__inner {
    font-size: 1.9rem;
    line-height: 2.2rem;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .confirm__data__inner {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.confirm__data dt {
  font-weight: 700;
  width: 30%;
  min-width: 144px;
}
@media (max-width: 1660px) {
  .confirm__data dt {
    min-width: 177px;
  }
}
@media (max-width: 1440px) {
  .confirm__data dt {
    min-width: 156px;
  }
}
@media (max-width: 1140px) {
  .confirm__data dt {
    min-width: 124px;
  }
}
@media (max-width: 960px) {
  .confirm__data dt {
    width: 100%;
  }
}
.confirm__data dt dd {
  width: 70%;
}
.confirm .button__inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (max-width: 960px) {
  .confirm .button__inner {
    flex-direction: column;
    align-items: center;
  }
}
.confirm .button {
  max-width: 240px;
  min-width: 240px;
}
@media (max-width: 1660px) {
  .confirm .button {
    max-width: 210px;
    min-width: 210px;
  }
}
@media (max-width: 960px) {
  .confirm .button {
    max-width: 480px;
    min-width: 450px;
  }
}
@media (max-width: 767px) {
  .confirm .button {
    max-width: 260px;
    min-width: 330px;
  }
}
@media (max-width: 500px) {
  .confirm .button {
    min-width: 230px;
  }
}
.confirm .p-confirm__receiptFile {
  max-width: 250px;
  margin-left: 0;
  margin-top: 0;
}

/* scss/pages/complete.css */
.complete__page {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: 10rem 0;
}
@media (max-width: 1440px) {
  .complete__page {
    margin: 100px 0;
  }
}
@media (max-width: 960px) {
  .complete__page {
    margin: 10rem 0;
  }
}
@media (max-width: 767px) {
  .complete__page {
    margin: 3.5rem 0;
  }
}
@media (max-width: 960px) {
  .complete__page .heading::before {
    left: 20%;
  }
}
@media (max-width: 500px) {
  .complete__page .heading::before {
    left: 17%;
  }
}
@media (max-width: 374px) {
  .complete__page .heading::before {
    left: 13%;
  }
}
@media (max-width: 960px) {
  .complete__page .heading::after {
    right: 20%;
  }
}
@media (max-width: 500px) {
  .complete__page .heading::after {
    right: 17%;
  }
}
@media (max-width: 374px) {
  .complete__page .heading::after {
    right: 13%;
  }
}

.complete {
  width: 80%;
  max-width: 980px;
  background-color: #fff;
  box-shadow: 0 8px 12px rgba(167, 160, 130, 0.5);
  overflow: hidden;
  text-align: center;
  margin-top: 3.5rem;
  padding: 9.25rem 0 4rem;
}
@media (max-width: 960px) {
  .complete {
    width: calc(100% - 40px);
    margin-top: 6.5rem;
  }
}
@media (max-width: 767px) {
  .complete {
    margin-top: 3.5rem;
  }
}
.complete__message p {
  margin-bottom: 5.3rem;
  font-size: 1.7rem;
}
@media (max-width: 1660px) {
  .complete__message p {
    font-size: 1.5rem;
  }
}
@media (max-width: 1140px) {
  .complete__message p {
    font-size: 1.4rem;
  }
}
@media (max-width: 960px) {
  .complete__message p {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .complete__message p {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .complete__message p {
    font-size: 1.2rem;
  }
}
.complete .button {
  max-width: 240px;
}
@media (max-width: 960px) {
  .complete .button {
    max-width: 480px;
  }
}
@media (max-width: 767px) {
  .complete .button {
    max-width: 240px;
  }
}