@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=BIZ+UDPGothic:wght@400;700&display=swap");
/*====================
  reset
====================*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol,
li {
  list-style: none;
}

em {
  font-style: normal;
}

/*====================
  setting
====================*/
/*====================
  utility
====================*/
.font-kozuka {
  font-family: "kozuka-gothic-pr6n", sans-serif;
}

.font-BizUDPGothic {
  font-family: "BIZ UDPGothic", sans-serif;
}

.remove-arrow::after {
  content: none !important;
}

/*====================
  common
====================*/
/*====================
  mixin
====================*/
.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  color: #404040;
  font-size: 1.6rem;
  font-family: "BIZ UDGothic", sans-serif;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1140px;
  }
}

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

a {
  color: #404040;
  text-decoration: none;
}

.header {
  padding: 12px 16px;
  background: #ffffff;
}
.header_logo {
  display: block;
  width: 290px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 180px;
  }
}

.footer {
  height: 50px;
  background: #cc0000;
}

.section {
  padding: 48px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 32px 0;
  }
}
.section_inner {
  width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section_inner {
    max-width: 100%;
    padding: 0 16px;
  }
}
.section_title {
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 12px 0;
  background: #cc0000;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 2.4rem;
    line-height: 1.2;
    padding: 8px 0;
  }
}
.section_border {
  width: 1140px;
  height: 1px;
  margin: 48px auto;
  background: #cc0000;
}
@media screen and (max-width: 767px) {
  .section_border {
    width: calc(100% - 32px);
    margin: 32px auto;
  }
}

.round_button {
  display: block;
  position: relative;
  color: #cc0000;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  width: 380px;
  padding: 22px 16px;
  background: #ffd9d9;
  border-radius: 10px;
  -webkit-box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
          box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
}
@media screen and (max-width: 767px) {
  .round_button {
    font-size: 2.4rem;
    width: 100%;
    padding: 8px 16px;
    -webkit-box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
            box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
  }
}
.round_button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  width: 16px;
  height: 16px;
  border-top: 3px solid #cc0000;
  border-right: 3px solid #cc0000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .round_button::after {
    right: 16px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
}

.popup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .popup {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .popup {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}
.popup_block {
  position: fixed;
  bottom: 50px;
  padding: 32px 43px;
  background: #ffffff;
  border: 3px solid #cc0000;
  border-radius: 20px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .popup_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    border-width: 2px;
    border-radius: 0;
  }
}
.popup_title {
  color: #cc0000;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .popup_title {
    font-size: 1.4rem;
    width: 100%;
  }
}
.popup_link {
  display: block;
  position: relative;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 100%;
  margin: 28px auto 0;
  padding: 14px 16px;
  background: #d3a84a;
  border-radius: 10px;
  -webkit-box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
          box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
}
@media screen and (max-width: 767px) {
  .popup_link {
    font-size: 1.2rem;
    width: 100%;
    margin: 0;
    padding: 8px 24px;
    -webkit-box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
            box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
  }
}
.popup_link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*====================
  musthead
====================*/
.musthead {
  padding: 0;
  background: #cc0001;
}

/*====================
  home
====================*/
.gift {
  background: #efe2c9;
}
.gift_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .gift_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.gift_head_label {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 380px;
  padding: 18px 0;
  background: #cc0000;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .gift_head_label {
    width: 100%;
    padding: 8px;
  }
}
.gift_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gift_title_prize {
  color: #cc0000;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .gift_title_prize {
    font-size: 1.6rem;
  }
}
.gift_title_text {
  color: #cc0000;
  font-size: 3.6rem;
  font-weight: bold;
  margin-top: -24px;
}
@media screen and (max-width: 767px) {
  .gift_title_text {
    font-size: 2.4rem;
    margin-top: 8px;
  }
}
.gift_title_text em {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .gift_title_text em {
    font-size: 4.8rem;
  }
}
.gift_banner {
  margin-top: 16px;
}
.gift_banner img {
  border-radius: 45px;
}
@media screen and (max-width: 767px) {
  .gift_banner img {
    border-radius: 2.34375vw;
  }
}
.gift_caution {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .gift_caution {
    font-size: 1.2rem;
  }
}

/*====================
  prize
====================*/
.prize_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .prize_list {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
}
.prize_item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .prize_item {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .prize_item:not(:first-child)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 306px;
    border-left: 1px dashed #cc0000;
  }
}
.prize_item_award {
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 12px 0;
  background: #cc0000;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .prize_item_award {
    font-size: 2rem;
    padding: 8px;
  }
}
.prize_item_price {
  color: #cc0000;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .prize_item_price {
    font-size: 2.4rem;
    margin-top: 16px;
  }
}
.prize_item_price em {
  font-size: 7.2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .prize_item_price em {
    font-size: 4.8rem;
  }
}
.prize_item_people {
  display: block;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  max-width: 240px;
  margin: 14px auto 0;
  padding: 8px 0px;
  background: #d3a84a;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .prize_item_people {
    font-size: 2rem;
    margin-top: 16px;
  }
}
.prize_item_people_em {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .prize_item_people_em {
    font-size: 2.4rem;
  }
}
.prize_item_terms {
  position: relative;
  max-width: 332px;
  height: 142px;
  margin: 28px auto 0;
  padding: 40px 12px 28px;
  border: 1px solid #cc0000;
}
@media screen and (max-width: 767px) {
  .prize_item_terms {
    max-width: 100%;
    height: unset;
    padding: 32px 16px;
  }
}
.prize_item_terms_label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: auto;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  width: 142px;
  height: 32px;
  background: #cc0000;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .prize_item_terms_label {
    top: -10px;
    font-size: 1.6rem;
    padding: 0 8px;
  }
}
.prize_item_terms_text {
  color: #404040;
  font-size: 1.8rem;
  font-weight: bold;
}
.prize_item_terms_text strong {
  display: inline-block;
  font-size: 2.4rem;
  margin-top: 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #d3a84a));
  background: -webkit-linear-gradient(transparent 60%, #d3a84a 60%);
  background: linear-gradient(transparent 60%, #d3a84a 60%);
}
.prize_item_terms_text small {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}
.prize_caution {
  color: #cc0000;
  font-weight: bold;
  margin-top: 16px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .prize_caution {
    text-align: left;
    padding: 0;
  }
}

/*====================
  flow
====================*/
.flow_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 32px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .flow_list {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
}
.flow_item {
  position: relative;
  height: 390px;
  padding: 40px 16px 8px;
  border: 2px solid #cc0000;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .flow_item {
    width: 100%;
    height: auto;
    padding: 32px 16px 8px;
  }
}
.flow_item_step {
  position: absolute;
  top: -30px;
  left: 0;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 142px;
  padding: 18px 0;
  background: #cc0000;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .flow_item_step {
    top: -18px;
    font-size: 2rem;
    width: 100px;
    padding: 8px;
  }
}
.flow_item_title {
  color: #cc0000;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow_item_title {
    font-size: 2.4rem;
  }
}
.flow_item_text {
  font-size: 1.8rem;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 65px;
  margin: 8px auto 0;
}
@media screen and (max-width: 767px) {
  .flow_item_text {
    font-size: 1.6rem;
    height: auto;
    margin-top: 16px;
  }
}
.flow_item_text small {
  display: block;
  font-size: 1.2rem;
}
.flow_item_image {
  text-align: center;
  height: 105px;
  margin: 8px auto 0;
}
@media screen and (max-width: 767px) {
  .flow_item_image {
    height: 80px;
    margin-top: 16px;
  }
}
.flow_item_image img {
  width: auto;
  height: 105px;
}
@media screen and (max-width: 767px) {
  .flow_item_image img {
    height: 80px;
  }
}
.flow_item_button {
  display: block;
  position: relative;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 100%;
  margin: 42px auto;
  padding: 14px 16px;
  background: #d3a84a;
  border-radius: 10px;
  -webkit-box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
          box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
}
@media screen and (max-width: 767px) {
  .flow_item_button {
    font-size: 1.8rem;
    width: 100%;
    margin: 16px auto;
    padding: 8px 24px;
    -webkit-box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
            box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
  }
}
.flow_item_button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.flow_item_date {
  position: relative;
  margin-top: 16px;
}
.flow_item_date + .flow_item_date {
  margin-top: 8px;
}
.flow_item_date_label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 88px;
  height: 32px;
  background: #cc0000;
  border: 1px solid #ffffff;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .flow_item_date_label {
    font-size: 1rem;
    height: 28px;
  }
}
.flow_item_date_text {
  color: #404040;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 4px;
  background: #ffd9d9;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .flow_item_date_text {
    font-size: 2rem;
  }
}
.flow_item_date:has(.flow_item_date_label) .flow_item_date_text {
  text-align: left;
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  .flow_item_date:has(.flow_item_date_label) .flow_item_date_text {
    padding-left: 100px;
  }
}
.flow_item_caution {
  color: #cc0000;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: right;
  margin-top: 8px;
}

/*====================
  campaign
====================*/
.campaign_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .campaign_table {
    width: 1140px;
  }
}
.campaign_table > tbody > tr {
  border-bottom: 1px solid #cc0000;
}
.campaign_table > tbody > tr > th {
  color: #cc0000;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  width: 340px;
  padding: 24px 20px;
  background: #ffd9d9;
  border-right: 1px solid #cc0000;
}
@media screen and (max-width: 767px) {
  .campaign_table > tbody > tr > th {
    width: 240px;
  }
}
.campaign_table > tbody > tr > td {
  color: #cc0000;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 24px 48px;
}
.campaign_table > tbody > tr > td:has(.campaign_table_children) {
  padding: 0;
}
.campaign_table_children {
  width: 100%;
  border-collapse: collapse;
}
.campaign_table_children th {
  color: #cc0000;
  font-size: 1.8rem;
  font-weight: bold;
  background: #ffd9d9;
}
.campaign_table_children th:not(:last-of-type) {
  border-right: 1px solid #cc0000;
}
.campaign_table_children thead {
  border-bottom: 1px solid #cc0000;
}
.campaign_table_children thead tr th {
  padding: 8px;
}
.campaign_table_children thead > tr:nth-of-type(1) th:nth-of-type(1) {
  width: 72px;
}
.campaign_table_children thead > tr:nth-of-type(1) th:nth-of-type(2) {
  width: 110px;
}
.campaign_table_children thead > tr:nth-of-type(1) th:nth-of-type(3) {
  width: 132px;
}
.campaign_table_children thead > tr:nth-of-type(1) th:nth-of-type(4) {
  width: 460px;
  border-bottom: 1px solid #cc0000;
}
.campaign_table_children tbody tr {
  border-bottom: 1px solid #cc0000;
}
.campaign_table_children tbody tr th {
  vertical-align: top;
  padding: 16px;
  border-right: 1px solid #cc0000;
}
.campaign_table_children tbody tr td {
  text-align: center;
  vertical-align: top;
  padding: 24px 8px;
}
.campaign_table_children tbody tr td:not(:last-of-type) {
  border-right: 1px solid #cc0000;
}
.campaign_table_text {
  font-size: 1.6rem;
  padding: 24px 48px;
}
.campaign_block {
  margin-top: 32px;
}
.campaign_block_title {
  color: #cc0000;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 18px;
  background: #ffd9d9;
}
.campaign_block_title:not(:first-child) {
  margin-top: 13px;
}
.campaign_block_text {
  color: #cc0000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2222222222;
  margin-top: 14px;
  padding: 0 17px;
}
.campaign_block_annotation {
  color: #cc0000;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 16px;
  padding: 0 17px;
}
.campaign_block_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #cc0000;
}
.campaign_block_table thead tr {
  border-bottom: 1px solid #cc0000;
}
.campaign_block_table thead tr th {
  color: #cc0000;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: bold;
  padding: 6px 4px;
  background: #ffd9d9;
}
.campaign_block_table thead tr th:not(:last-of-type) {
  border-right: 1px solid #cc0000;
}
.campaign_block_table thead tr:nth-of-type(1) th:nth-of-type(1) {
  width: 34px;
}
.campaign_block_table thead tr:nth-of-type(1) th:nth-of-type(2) {
  width: 55px;
}
.campaign_block_table thead tr:nth-of-type(1) th:nth-of-type(3) {
  width: 66px;
}
.campaign_block_table thead tr:nth-of-type(2) th:nth-of-type(1) {
  width: 30.1546391753vw;
}
.campaign_block_table tbody tr {
  border-bottom: 1px solid #cc0000;
}
.campaign_block_table tbody tr th {
  color: #cc0000;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: bold;
  vertical-align: top;
  text-align: center;
  padding: 16px 4px;
  background: #ffd9d9;
  border-right: 1px solid #cc0000;
}
.campaign_block_table tbody tr td {
  color: #cc0000;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-weight: bold;
  vertical-align: top;
  text-align: center;
  padding: 16px 4px;
}
.campaign_block_table tbody tr td:not(:last-of-type) {
  border-right: 1px solid #cc0000;
}

/*====================
  faq
====================*/
.faq_title {
  color: #cc0000;
  font-size: 4.8rem;
  padding-left: 24px;
  border-left: 5px solid #cc0000;
}
@media screen and (max-width: 767px) {
  .faq_title {
    font-size: 3.2rem;
  }
}
.faq_accordion {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .faq_accordion {
    margin-top: 32px;
  }
}
.faq_accordion + .faq_accordion {
  margin-top: 32px;
}
.faq_accordion_head {
  position: relative;
}
.faq_accordion_head::after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "Q";
  font-size: 2.2rem;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background: #ffd9d9;
  border-radius: 50px;
  border: 2px solid #ffffff;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .faq_accordion_head::after {
    font-size: 2rem;
    width: 32px;
    height: 32px;
  }
}
.faq_accordion:nth-of-type(1) .faq_accordion_head::after {
  content: "Q1";
}
.faq_accordion:nth-of-type(2) .faq_accordion_head::after {
  content: "Q2";
}
.faq_accordion:nth-of-type(3) .faq_accordion_head::after {
  content: "Q3";
}
.faq_accordion:nth-of-type(4) .faq_accordion_head::after {
  content: "Q4";
}
.faq_accordion:nth-of-type(5) .faq_accordion_head::after {
  content: "Q5";
}
.faq_accordion:nth-of-type(6) .faq_accordion_head::after {
  content: "Q6";
}
.faq_accordion:nth-of-type(7) .faq_accordion_head::after {
  content: "Q7";
}
.faq_accordion:nth-of-type(8) .faq_accordion_head::after {
  content: "Q8";
}
.faq_accordion:nth-of-type(9) .faq_accordion_head::after {
  content: "Q9";
}
.faq_accordion:nth-of-type(10) .faq_accordion_head::after {
  content: "Q10";
}
.faq_accordion:nth-of-type(11) .faq_accordion_head::after {
  content: "Q11";
}
.faq_accordion:nth-of-type(12) .faq_accordion_head::after {
  content: "Q12";
}
.faq_accordion:nth-of-type(13) .faq_accordion_head::after {
  content: "Q13";
}
.faq_accordion:nth-of-type(14) .faq_accordion_head::after {
  content: "Q14";
}
.faq_accordion:nth-of-type(15) .faq_accordion_head::after {
  content: "Q15";
}
.faq_accordion:nth-of-type(16) .faq_accordion_head::after {
  content: "Q16";
}
.faq_accordion:nth-of-type(17) .faq_accordion_head::after {
  content: "Q17";
}
.faq_accordion:nth-of-type(18) .faq_accordion_head::after {
  content: "Q18";
}
.faq_accordion:nth-of-type(19) .faq_accordion_head::after {
  content: "Q19";
}
.faq_accordion:nth-of-type(20) .faq_accordion_head::after {
  content: "Q20";
}
.faq_accordion:nth-of-type(21) .faq_accordion_head::after {
  content: "Q21";
}
.faq_accordion:nth-of-type(22) .faq_accordion_head::after {
  content: "Q22";
}
.faq_accordion:nth-of-type(23) .faq_accordion_head::after {
  content: "Q23";
}
.faq_accordion:nth-of-type(24) .faq_accordion_head::after {
  content: "Q24";
}
.faq_accordion:nth-of-type(25) .faq_accordion_head::after {
  content: "Q25";
}
.faq_accordion:nth-of-type(26) .faq_accordion_head::after {
  content: "Q26";
}
.faq_accordion:nth-of-type(27) .faq_accordion_head::after {
  content: "Q27";
}
.faq_accordion:nth-of-type(28) .faq_accordion_head::after {
  content: "Q28";
}
.faq_accordion:nth-of-type(29) .faq_accordion_head::after {
  content: "Q29";
}
.faq_accordion:nth-of-type(30) .faq_accordion_head::after {
  content: "Q30";
}
.faq_accordion_title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 18px 16px 18px 80px;
  background: #ffd9d9;
  border-radius: 50px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq_accordion_title {
    font-size: 2rem;
    padding: 8px 16px 8px 48px;
  }
}
.faq_accordion_body {
  display: none;
  padding-left: 28px;
}
@media screen and (max-width: 767px) {
  .faq_accordion_body {
    padding-left: 0;
  }
}
.faq_accordion_body_inner {
  position: relative;
  margin-top: 48px;
  padding: 32px;
  border: 2px solid #cc0000;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .faq_accordion_body_inner {
    margin-top: 32px;
  }
}
.faq_accordion_body_inner::after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "A";
  color: #ffffff;
  font-size: 2.4rem;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: bold;
  position: absolute;
  top: -28px;
  left: -28px;
  width: 56px;
  height: 56px;
  background: #cc0000;
  border-radius: 50px;
  border: 2px solid #ffffff;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .faq_accordion_body_inner::after {
    top: -16px;
    left: 0;
    font-size: 2rem;
    width: 32px;
    height: 32px;
  }
}
.faq_accordion_text {
  font-size: 2.2rem;
  font-weight: bold;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .faq_accordion_text {
    font-size: 1.6rem;
  }
}
.faq_accordion_image {
  margin: 32px auto 0;
}
@media screen and (max-width: 767px) {
  .faq_accordion_image {
    width: 240px;
  }
}
.faq_accordion_image_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 124px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .faq_accordion_image_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 64px 0;
  }
}
.faq_accordion_image_block .faq_accordion_image {
  width: 320px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .faq_accordion_image_block .faq_accordion_image {
    width: 100%;
  }
}
.faq_accordion_image_block .faq_accordion_image:nth-of-type(1) {
  position: relative;
}
.faq_accordion_image_block .faq_accordion_image:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -82px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 44px solid transparent;
  border-bottom: 44px solid transparent;
  border-left: 32px solid #ffd9d9;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .faq_accordion_image_block .faq_accordion_image:nth-of-type(1)::after {
    top: unset;
    bottom: -42px;
    left: 0;
    right: 0;
    border-right: 24px solid transparent;
    border-left: 24px solid transparent;
    border-top: 16px solid #ffd9d9;
    border-bottom: 0;
  }
}
.faq_button {
  position: relative;
  font-size: 3rem;
  width: 546px;
  margin: 48px auto 0;
}
@media screen and (max-width: 767px) {
  .faq_button {
    font-size: 2.4rem;
    width: 100%;
    margin-top: 32px;
    padding: 8px 32px;
  }
}

/*====================
  contact
====================*/
.contact_entry_text {
  color: #cc0000;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_entry_text {
    font-size: 2.4rem;
  }
}
.contact_entry_button {
  display: block;
  position: relative;
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 540px;
  margin: 48px auto 0;
  padding: 48px 16px;
  background: #d3a84a;
  border-radius: 10px;
  -webkit-box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
          box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
}
@media screen and (max-width: 767px) {
  .contact_entry_button {
    font-size: 2.4rem;
    width: 100%;
    margin-top: 32px;
    padding: 18px 24px;
    -webkit-box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
            box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
  }
}
.contact_entry_button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  width: 16px;
  height: 16px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .contact_entry_button::after {
    right: 16px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
}
.contact_block {
  margin-top: 48px;
  padding: 64px 48px;
  border: 2px solid #cc0000;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contact_block {
    margin-top: 32px;
    padding: 32px 16px;
  }
}
.contact_block_title {
  color: #cc0000;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 32px 16px;
  border-bottom: 1px solid #cc0000;
}
@media screen and (max-width: 767px) {
  .contact_block_title {
    font-size: 2.4rem;
    padding: 0 16px 16px;
  }
}
.contact_block_subTitle {
  color: #cc0000;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .contact_block_subTitle {
    font-size: 2rem;
  }
}
.contact_block_tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 16px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .contact_block_tel {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 8px;
  }
}
.contact_block_tel_icon {
  width: 48px;
}
@media screen and (max-width: 767px) {
  .contact_block_tel_icon {
    width: 32px;
  }
}
.contact_block_tel_number {
  color: #cc0000;
  font-size: 6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_block_tel_number {
    font-size: 4rem;
  }
}
.contact_block_tel_caution {
  color: #cc0000;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_block_tel_caution {
    display: block;
    font-size: 1.6rem;
    width: 100%;
  }
}
.contact_block_annotation {
  color: #cc0000;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .contact_block_annotation {
    font-size: 1.2rem;
    margin-top: 16px;
  }
}

/*====================
  entry
====================*/
.entry_form {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .entry_form {
    margin-top: 32px;
  }
}
.entry_form_table {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-rows: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .entry_form_table {
    grid-template-columns: 100%;
    grid-template-rows: unset;
  }
}
@media screen and (min-width: 768px) {
  .entry_form dt:nth-of-type(1),
  .entry_form dd:nth-of-type(1) {
    border-bottom: 1px solid #cc0000;
  }
}
.entry_form_head {
  position: relative;
  color: #cc0000;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 24px;
  background: #ffd9d9;
}
@media screen and (max-width: 767px) {
  .entry_form_head {
    font-size: 1.8rem;
    padding: 8px 16px;
  }
}
.entry_form_head .required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 24px;
  right: 16px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 88px;
  height: 32px;
  background: #ff0000;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .entry_form_head .required {
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    font-size: 1.2rem;
    width: 64px;
    height: 24px;
  }
}
.entry_form_body {
  color: #cc0000;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 24px 48px;
}
@media screen and (max-width: 767px) {
  .entry_form_body {
    font-size: 1.6rem;
    padding: 16px 0;
  }
}
.entry_form_body input {
  color: #000000;
  font-size: 2.4rem;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: bold;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #cc0000;
  border-radius: 10px;
  outline: none;
}
@media screen and (max-width: 767px) {
  .entry_form_body input {
    font-size: 1.6rem;
  }
}
.entry_form_body input::-webkit-input-placeholder {
  color: #c1bfbf;
}
.entry_form_body input::-moz-placeholder {
  color: #c1bfbf;
}
.entry_form_body input:-ms-input-placeholder {
  color: #c1bfbf;
}
.entry_form_body input::-ms-input-placeholder {
  color: #c1bfbf;
}
.entry_form_body input::placeholder {
  color: #c1bfbf;
}
.entry_form_body input[name=acode] {
  width: 432px;
}
@media screen and (max-width: 767px) {
  .entry_form_body input[name=acode] {
    width: 100%;
  }
}
.entry_form_body input[name=birthYear] {
  width: 142px;
}
@media screen and (max-width: 767px) {
  .entry_form_body input[name=birthYear] {
    width: 80px;
  }
}
.entry_form_body input[name=birthMonth] {
  width: 72px;
}
@media screen and (max-width: 767px) {
  .entry_form_body input[name=birthMonth] {
    width: 80px;
  }
}
.entry_form_body input[name=birthDay] {
  width: 72px;
}
@media screen and (max-width: 767px) {
  .entry_form_body input[name=birthDay] {
    width: 80px;
  }
}
.entry_form_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}
.entry_form_caution {
  color: #ff0000;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .entry_form_caution {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
.entry_form_text {
  color: #cc0000;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .entry_form_text {
    font-size: 1.8rem;
    margin-top: 32px;
  }
}
.entry_form_confirm {
  display: block;
  position: relative;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 380px;
  margin: 48px auto 0;
  padding: 12px;
  background: #cc0000;
  border-radius: 50px;
  -webkit-box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
          box-shadow: 4px 6px 6px 0px rgba(64, 64, 64, 0.75);
}
@media screen and (max-width: 767px) {
  .entry_form_confirm {
    font-size: 1.8rem;
    width: 100%;
    margin-top: 32px;
    padding: 8px;
    -webkit-box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
            box-shadow: 2px 3px 3px 0px rgba(64, 64, 64, 0.75);
  }
}
.entry_form_confirm::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .entry_form_confirm::after {
    right: 16px;
  }
}
.entry_form_check {
  margin-top: 32px;
}
.entry_form_check_label {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #cc0000;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .entry_form_check_label {
    font-size: 1.8rem;
    gap: 8px;
  }
}
.entry_form_check_icon {
  position: relative;
  width: 35px;
  height: 35px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cc0000;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .entry_form_check_icon {
    width: 24px;
    height: 24px;
  }
}
.entry_form_check_icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 4px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .entry_form_check_icon::after {
    width: 8px;
    height: 2px;
    border-width: 2px;
  }
}
.entry_form_check_icon:checked {
  background-color: #cc0000;
}
.entry_form_check_icon:checked::after {
  opacity: 1;
}
.entry_form_submit {
  font-family: "BIZ UDGothic", sans-serif;
  margin: 48px auto 0;
  outline: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .entry_form_submit {
    width: 100%;
    margin-top: 32px;
  }
}
.entry_form_submit::after {
  content: none;
}
.entry_back_button {
  margin: 32px auto 0;
}
@media screen and (max-width: 767px) {
  .entry_back_button {
    margin-top: 16px;
  }
}

/*====================
  thanks
====================*/
.thanks_text {
  color: #cc0000;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks_text {
    font-size: 1.8rem;
  }
}
.thanks_button {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .thanks_button {
    margin-top: 48px;
  }
}