@charset "UTF-8";
/******************
 変数
 *****************/
:root {
  --text-accent-color: #e60146;
  --text-accent-color2: #00e;
  --text-supplementary-color: #999;
  --title-bg-color: ;
  --title-text-color: #333;
  --title-underBar-color: #e52e4c;
  --notes-border-color: #e52e4c;
  --scrollBar-bg-color: #ffcccd;
  --scrollBar-thumb-color: #e52e4c;
  --footer-text-color: #fff;
  --joinBtn-bg-color: #d00352;
  --joinBtn-under-shadow-color: #4f0020;
  --joinBtn-text-color: #fff;
  --cancelBtn-bg-color: #fff;
  --cancelBtn-text-color: #326664;
  --cancelBtn-border-color: #326664;
  --toNextBtn-bg-color: #c9e1e1;
  --toNextBtn-text-color: #326664;
  --toNextBtn-border-color: #326664;
  --setReceiptBtn-bg-color: #fff;
  --setReceiptBtn-text-color: #fe475c;
  --setReceiptBtn-border-color: #fe475c;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../webfonts/notosansjp/NotoSansJP-Regular.woff2") format("woff2");
}
/******************
  要素セレクタに対するスタイル
 *****************/
.body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333333;
  background-color: #db2525;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .body {
    font-size: 15px;
  }
}
.main {
  overflow: hidden;
  background: #fff;
}

a,
label {
  margin: 0 auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul {
  list-style: none;
}

hr {
  width: 100%;
  height: 1px;
  padding: 0;
  margin: 0;
  border: none;
  border-top: 1px #dcdcdc solid;
}

input {
  font-size: 16px;
}

input[type=checkbox] {
  display: none;
}

input.error,
select.error {
  background-color: #ffcdd2 !important;
}

label.error {
  margin-top: 5px !important;
  font-weight: bold;
  color: var(--text-accent-color);
}

p.error {
  font-weight: bold;
  color: var(--text-accent-color);
}

/* ユーティリティクラス */
.pc-only {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
.text-accent-color {
  color: var(--text-accent-color);
}

.text-link {
  color: #0049b8;
  text-decoration: underline;
  margin-left: 1em;
}

.inline-block {
  display: inline-block;
}

.indent-second-line {
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}

.mb0 {
  margin-bottom: 0;
}

.px0 {
  padding-left: 0;
  padding-right: 0;
}

.font-weight-normal {
  font-weight: normal;
}

/* ユーティリティクラス 終わり*/
/******************
 Header
 *****************/
.header {
  margin: 0 auto;
  text-align: center;
}

.header--index {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  margin-bottom: -35px;
}

@media screen and (max-width: 767px) {
  .header--index {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.header__banner > img {
  width: 100%;
  max-width: 780px;
}

.header__banner--index {
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header__banner--index > img {
  max-width: initial;
}

.header__tag {
  position: absolute;
  bottom: 0;
  left: 0;
}

/******************
 Main
 *****************/
.wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.wrapper--index {
  max-width: 1200px;
  margin-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .wrapper--index {
    margin-bottom: 0;
  }
}
.container {
  max-width: 560px;
  padding: 0 18px 30px;
  margin: 0 auto;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container--index {
  max-width: 780px;
  padding: 30px 18px;
}

@media screen and (max-width: 767px) {
  .container--index {
    padding: 20px 18px;
  }
}
.campaign {
  position: relative;
}

.campaign__top-banners {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .campaign__top-banners {
    display: none;
  }
}
.campaign__img {
  width: 100%;
}

.campaign__picture > img {
  display: inline;
  vertical-align: bottom;
  width: 100%;
}

.campaign__picture--gaiyou > img {
  width: 80%;
  margin-top: -24px;
}

.campaign__graph {
  position: relative;
}

.campaign__title {
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #db2525;
  font-size: 24px;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .campaign__title {
    padding: 10px 8vw 10px 3vw;
    font-size: 18px;
  }
}
.campaign__content {
  padding: 24px 20px 0;
}

@media screen and (max-width: 767px) {
  .campaign__content {
    padding: 16px 10px 0;
  }
}
.campaign__content--products > img {
  width: 100%;
  text-align: center;
}

.campaign__content--process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.campaign__content--process > img {
  width: 95%;
  vertical-align: bottom;
  margin-bottom: 16px;
  text-align: center;
}

.campaign__content--process > img:last-of-type {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .campaign__content--notes {
    padding: 16px 4px 0;
  }
}
.campaign__overview {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .campaign__overview {
    margin-bottom: 20px;
  }
}
.campaign__overview--method {
  padding: 0 16px;
}

@media screen and (max-width: 767px) {
  .campaign__overview--method {
    padding: 0 10px;
  }
}
.campaign__overview--prize {
  padding: 0 16px;
}

@media screen and (max-width: 767px) {
  .campaign__overview--prize {
    padding: 0 10px;
  }
}
.campaign__notes {
  height: 300px;
  padding: 10px;
  margin: 0 auto;
  margin-top: 10px;
  overflow: auto;
  overflow-y: scroll;
  font-size: 86%;
  text-align: left;
  background-color: #fff;
  border: solid 1px gray;
}

@media screen and (max-width: 767px) {
  .campaign__notes {
    font-size: 95%;
  }
}
.campaign__notes::-webkit-scrollbar {
  width: 10px;
  background: #ffffff;
  border-radius: 10px;
}

.campaign__notes::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px;
}

.campaign__notes > p {
  margin: 0;
  margin-bottom: 5px;
  /* 2行目以降を1文字下げる */
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}

.campaign__notes > p:first-of-type {
  padding-left: initial;
  text-indent: initial;
}

/* join */
.join {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.join__check-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.join__error-text {
  color: var(--text-accent-color);
  margin: 20px 0 10px;
}

@media screen and (max-width: 767px) {
  .join__error-text {
    font-size: 13px;
  }
}
.join__checkbox {
  margin: 14px 0 40px;
}

@media screen and (max-width: 767px) {
  .join__checkbox {
    margin: 0 0 26px;
  }
}
.join__button {
  width: 100%;
}

/* receipt */
.receipt__overview {
  margin-bottom: 10px;
}

.receipt__example {
  margin-left: 1em;
  font-size: 0.9em;
}

/* backHome-area */
.backHome-area {
  margin: 0 auto;
  padding: 15px;
  background-color: #fff;
}

.backHome-area a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.8em;
  font-size: 18px;
  color: #326664;
  text-align: center;
  text-decoration: none;
  background: #c9e1e1;
  border: solid 1px #326664;
  border-radius: 5px;
  border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.backHome-area button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.8em;
  font-size: 18px;
  color: #326664;
  text-align: center;
  text-decoration: none;
  background: #c9e1e1;
  border: solid 1px #326664;
  border-radius: 5px;
  border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* wchance */
.wchance {
  margin: 0 auto;
  text-align: center;
  padding: 30px 0;
}

.wchance__title {
  position: relative;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

.wchance__message {
  margin-bottom: 40px;
  text-align: left;
  font-size: 18px;
  text-align: center;
}

.wchance__touhyo {
  padding: 20px 10px 0;
}

.wchance__radio {
  margin-bottom: 30px;
}

.wchance__description {
  text-align: left;
  margin-bottom: 20px;
}

.wchance__img {
  width: 100%;
}

.wchance__hr {
  width: 100%;
  background-color: gray;
  height: 1px;
}

.wchance__error-text {
  display: none;
  color: var(--text-accent-color);
  margin-bottom: 10px;
}

.wchance__button > button:first-of-type {
  margin-bottom: 15px;
}

/* complete-area */
.complete-area {
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 20px;
  overflow: hidden;
}

.complete-area__title {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: var(--title-text-color);
  text-align: center;
  background-color: var(--title-bg-color);
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.complete-area__title::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8%;
  height: 3px;
  margin: 0 auto;
  text-align: center;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
  background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
  background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
  background-repeat: no-repeat;
  background-position: center;
}

.complete-area__message {
  margin: 30px 0 10px;
  text-align: left;
  margin: 20px 0 15px;
  font-size: 20px;
  text-align: center;
  color: var(--text-accent-color);
}

.complete-area__text {
  margin: 30px 0 10px;
  text-align: left;
}

.complete-area__text--sub {
  margin-top: 10px;
  font-size: 0.8em;
  text-align: left;
  color: grey;
}

.complete-area__button {
  margin-top: 40px;
}

.complete-area__inquiry {
  margin-top: 20px;
}

/* end-area */
.end-area {
  margin: 0 auto;
  padding-bottom: 42px;
  text-align: center;
}

.end-area__title {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  color: var(--title-text-color);
  text-align: center;
  background-color: var(--title-bg-color);
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.end-area__title::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8%;
  height: 3px;
  margin: 0 auto;
  text-align: center;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
  background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
  background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
  background-repeat: no-repeat;
  background-position: center;
}

.end-area__content {
  margin-bottom: 30px;
}

.end-area__content > p {
  text-align: center;
}

.end-area__content > p:first-of-type {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-accent-color);
}

/* error-area */
.error-area {
  margin: 0 auto;
  text-align: center;
}

.error-area__title {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  color: var(--title-text-color);
  text-align: center;
  background-color: var(--title-bg-color);
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.error-area__title::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8%;
  height: 3px;
  margin: 0 auto;
  text-align: center;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
  background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
  background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
  background-repeat: no-repeat;
  background-position: center;
}

.error-area__message--main {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-accent-color);
}

/* footer */
.footer {
  margin: 0 auto;
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  text-align: center;
  background: #c70079;
  padding: 26px 0;
}

@media screen and (max-width: 767px) {
  .footer {
    font-size: 12px;
    padding: 14px 20px;
  }
}
.footer__copyright {
  color: #ffffff;
}

.footer__copyright > span {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .footer__copyright > span {
    margin-left: 0;
  }
}
.reading__item-name > span {
  color: var(--text-accent-color);
}

.reading__item-content > p {
  padding-left: 1em;
  text-align: left;
  text-indent: -1em;
}

.reading__item-content > p > span {
  color: var(--text-accent-color);
}

.reading__howto {
  margin-top: 5px;
  margin-right: 1.5em;
  text-align: right;
}

.reading__modal-label {
  color: #00e;
  text-decoration: underline;
}

.reading__outline-btn {
  position: relative;
  display: block;
  width: 90%;
  padding: 15px 8px;
  margin: 12px auto 0;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--setReceiptBtn-text-color);
  text-align: center;
  text-decoration: none;
  background-color: var(--setReceiptBtn-bg-color);
  border: 5px solid var(--setReceiptBtn-border-color);
  border-radius: 10px;
  border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.reading__outline-btn::after {
  position: absolute;
  top: 50%;
  right: -0.1em;
  margin-top: -6px;
  content: "";
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: var(--setReceiptBtn-text-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.reading__outline-btn:hover {
  color: var(--setReceiptBtn-bg-color);
  background: var(--setReceiptBtn-text-color);
}

.reading__outline-btn:hover::after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  content: "";
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: var(--setReceiptBtn-bg-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reading__file-error {
  font-weight: bold;
  color: #e52e4c;
}

.reading__file-preview {
  display: block;
  width: 80%;
  margin: 0 auto;
  margin-top: 10px;
}

/* form */
.form {
  text-align: left;
}

.form__item-name > span {
  color: var(--text-accent-color);
}

.form__item-content--confirm {
  margin-bottom: 10px;
}

.form__item-content--confirm > p {
  padding-left: 1em;
  color: var(--text-accent-color2);
}

.form__choice > .radio:nth-of-type(2) {
  margin-top: 15px;
}

.form__prize {
  margin-bottom: 10px;
}

.form__labelsub {
  padding-left: 1em;
}

.form__labelsub > p:last-of-type {
  margin-bottom: 10px;
}

.form__labelbule {
  color: var(--text-accent-color2);
}

.form__radiogroup p {
  margin-left: 1.5em;
}

.form__radiogroup input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__radiogroup input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__radiogroup input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding: 6px 11px 0 22px;
  font-size: 1.2em;
  font-weight: 500;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 4px;
}

.form__radiogroup input[type=radio] + span::before, .form__radiogroup input[type=radio] + span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  margin: 11px 10px 0 0;
  content: "";
  border-radius: 50%;
}

.form__radiogroup input[type=radio] + span::before {
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #999;
}

.form__radiogroup input[type=radio] + span::after {
  left: 5px;
  width: 10px;
  height: 10px;
  background: #999;
  opacity: 0;
}

.form__radiogroup input[type=radio]:checked + span::before {
  border: 2px solid #0070bd;
}

.form__radiogroup input[type=radio]:checked + span::after {
  top: 5px;
  background: #0070bd;
  opacity: 1;
}

.form__userName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form__postal {
  padding: 5px;
  margin-bottom: 8px;
  font-size: 18px;
}

.form__postalCode {
  width: 100%;
  padding: 5px;
  padding-left: 8px;
  margin-bottom: 8px;
  border: gray solid 1px;
}

.form__postalCode:required {
  background-color: #fff;
}

.form__postalCode:valid {
  border: solid 1px gray;
}

.form__inputform-mini {
  width: 48%;
  padding: 5px;
  padding-left: 8px;
  margin-bottom: 15px;
  border: gray solid 1px;
}

.form__inputform-mini:required {
  background-color: #fff;
}

.form__inputform-mini:valid {
  border: solid 1px gray;
}

.form__inputform {
  width: 100%;
  padding: 5px;
  padding-left: 8px;
  margin-bottom: 15px;
  border: gray solid 1px;
}

.form__inputform.p-region {
  margin-bottom: 8px;
}

.form__inputform:required {
  background-color: #fff;
}

.form__inputform:valid {
  border: solid 1px gray;
}

.form__selectform {
  width: 100%;
  padding: 5px;
  padding-left: 8px;
  margin-bottom: 15px;
  font-size: 16px;
  border: gray solid 1px;
}

.form__selectform--inRadio {
  margin-bottom: 5px;
}

.form__file-preview {
  display: block;
  width: 80%;
  margin: 0 auto;
  margin-top: 10px;
}

.form__underline {
  border-bottom: dotted 1px gray;
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.form__conspicuous-txt {
  color: var(--text-accent-color);
}

.form__big-txt {
  font-size: 1.2em;
}

.form__conspicuous-size {
  font-size: 1.2em;
}

.form__submitBtn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.8em;
  font-size: 18px;
  color: #326664;
  text-align: center;
  text-decoration: none;
  background: #c9e1e1;
  border: solid 1px #326664;
  border-radius: 5px;
  border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  width: 45%;
  font-size: 17px;
  color: var(--toNextBtn-text-color);
  background-color: var(--toNextBtn-bg-color);
  border: solid 1px var(--toNextBtn-border-color);
}

.form__cancelBtn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.8em;
  font-size: 18px;
  color: #326664;
  text-align: center;
  text-decoration: none;
  background: #c9e1e1;
  border: solid 1px #326664;
  border-radius: 5px;
  border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
  width: 45%;
  margin-right: 10px;
  font-size: 17px;
  color: var(--cancelBtn-text-color);
  background-color: var(--cancelBtn-bg-color);
  border: solid 1px var(--cancelBtn-border-color);
}

.form__inconspicuous-txt {
  color: var(--text-supplementary-color) !important;
  margin-top: 5px;
  font-size: 0.8em;
}

.form__btnArea {
  margin: 25px 0 0;
  text-align: center;
}

.form__button {
  margin-top: 20px;
  text-align: center;
}

.form__hr {
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

/* inquiry-area */
.inquiry-area {
  margin: 0 auto;
  padding: 80px 40px;
  background-color: #0b3055;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .inquiry-area {
    padding: 30px 20px;
  }
}
.inquiry-area__title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .inquiry-area__title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.inquiry-area__name {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .inquiry-area__name {
    margin-left: 0;
  }
}
.inquiry-area__content {
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .inquiry-area__content {
    font-size: 12px;
  }
}
.inquiry-area__mail-link {
  color: #ffffff;
}

/* inquiry */
.inquiry {
  font-size: 13px;
  text-align: left;
  word-break: break-all;
}

.inquiry--complete {
  font-size: 14px;
}

.inquiry__title {
  margin-bottom: 4px;
  font-weight: bold;
}

/* banner-area */
.banner-area {
  margin: 0 auto;
  padding: 80px 40px;
  background-color: #f4f4f4;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .banner-area {
    padding: 30px 20px;
  }
}
.banner-area__content {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .banner-area__content {
    font-size: 14px;
  }
}
.banner-area__content > img {
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .banner-area__content > img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .banner-area__content > img {
    margin-bottom: 10px;
  }
}
.banner-area__content > p {
  position: relative;
  left: 28px;
  text-align: left;
  line-height: 1.2;
}

@media screen and (max-width: 1200px) {
  .banner-area__content > p {
    position: initial;
    left: initial;
  }
}
/* modal-area */
.modal-area {
  text-align: center;
}

.modal-area__overlay {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  display: none;
  width: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal-area__content--touhyo > p {
  font-size: 16px;
  margin-bottom: 20px;
}

.modal-area__howto > p > img {
  max-width: 400px;
}

.modal-area__howto input:checked ~ .modal-area__howto-o-close {
  z-index: 9998;
}

.modal-area__howto input:checked ~ .modal-area__overlay {
  z-index: 9997;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.modal-area__howto input:checked ~ .modal-area__overlay .modal-area__howto-wrap {
  z-index: 9999;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.modal-area__howto input:checked ~ .modal-area__overlay .modal-area__howto-wrap--touhyo {
  -ms-flex-item-align: center;
  align-self: center;
}

.modal-area__howto-checkbox {
  display: none;
}

.modal-area__howto-close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 10px;
  height: 10px;
  font-size: 15px;
  color: #282c34;
}

.modal-area__howto-close:hover {
  color: #4b5361;
  cursor: pointer;
}

.modal-area__howto-o-close {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
}

.modal-area__howto-contents > img {
  width: 100%;
  max-width: 780px;
  max-width: 580px;
}

.modal-area__howto-menu {
  position: relative;
  display: block;
  padding: 10px 0;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: var(--title-text-color);
  text-align: center;
  background-color: var(--title-bg-color);
}

.modal-area__howto-menu::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  padding-right: 0;
  padding-left: 0;
  margin: 0 auto;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
  background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
  background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
  background-repeat: no-repeat;
  background-position: center;
}

.modal-area__howto-wrap {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 90%;
  max-width: 500px;
  padding: 40px 18px 30px;
  margin: 20px auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* products */
.products__title {
  color: #ffffff;
  background-color: #0b3055;
  text-align: center;
  padding: 4px 0;
}

.products__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #0b3055;
  border-top: none;
  padding: 20px;
  row-gap: 20px;
}

.products__content--maker > .products__item {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .products__content--maker > .products__item {
    width: 50%;
  }
}
.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .products__item {
    width: 50%;
  }
}
.products__item--kirin {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%; /* 折り返し */
}

@media screen and (max-width: 767px) {
  .products__item--kirin > img {
    width: 90%;
    max-width: 337px;
  }
}
.products__item--mizkan {
  /* 左揃え */
  margin-left: 0;
  margin-right: auto;
}

.products__note {
  text-align: center;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%; /* 折り返し */
}

.products__img {
  display: block;
  margin: 20px auto 15px;
}

.products__link {
  margin-top: 10px;
  text-align: center;
}

/* step */
.step__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

@media screen and (max-width: 767px) {
  .step__imgs {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.step__imgs > picture {
  width: calc((100% - 20px) / 3);
}

@media screen and (max-width: 767px) {
  .step__imgs > picture {
    width: 100%;
  }
}
.step__imgs > picture > img {
  width: 100%;
}

.step__notes {
  padding: 0 16px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .step__notes {
    padding: 0 10px;
    margin-top: 0;
  }
}
.step__notes > li {
  margin-bottom: 0.3em;
}

/* prize */
.prize {
  margin-top: 10px;
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.prize__box {
  margin-bottom: 10px;
}

.prize__name {
  font-size: 1.2em;
}

.prize__description {
  color: var(--text-accent-color);
  padding-left: 1.5em;
  margin-bottom: 5px;
}

.prize__img > img {
  width: 100%;
  text-align: center;
}

.prize__border {
  border-bottom: dotted 1px gray;
  margin-bottom: 10px;
}

.prize__conspicuous-txt {
  color: var(--text-accent-color);
}

.prize__big-txt {
  font-size: 1.2em;
}

.prize__blue-txt {
  color: #00e;
}

.prize__period > p {
  margin-top: 5px;
}

/* prize-detail */
.prize-detail__item-name {
  color: #00e;
  margin-top: 5px;
}

.prize-detail__item-content {
  margin-bottom: 5px;
}

.prize-detail__item-content > p {
  text-align: left;
  text-indent: -1.2em;
  padding-left: 1.8em;
}

.prize-detail__item-content > p > span {
  color: var(--text-accent-color);
}

/* reading-area */
.reading-area {
  margin: 0 auto;
}

.reading-area select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  border: 1px solid gray;
}

.reading-area__menu {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  color: var(--title-text-color);
  text-align: center;
  background-color: var(--title-bg-color);
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.reading-area__menu::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8%;
  height: 3px;
  margin: 0 auto;
  text-align: center;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
  background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
  background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
  background-repeat: no-repeat;
  background-position: center;
}

.reading-area__outline-btn {
  position: relative;
  display: block;
  width: 90%;
  padding: 15px 8px;
  margin: 12px auto 0;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--setReceiptBtn-text-color);
  text-align: center;
  text-decoration: none;
  background-color: var(--setReceiptBtn-bg-color);
  border: 5px solid var(--setReceiptBtn-border-color);
  border-radius: 10px;
  border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.reading-area__outline-btn::after {
  position: absolute;
  top: 50%;
  right: -0.1em;
  margin-top: -6px;
  content: "";
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: var(--setReceiptBtn-text-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.reading-area__outline-btn:hover {
  color: var(--setReceiptBtn-bg-color);
  background: var(--setReceiptBtn-text-color);
}

.reading-area__outline-btn:hover::after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  content: "";
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: var(--setReceiptBtn-bg-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reading-area__outline-btn > p {
  color: #e52e4c;
}

/* top-area */
.top-area {
  margin: 0 auto;
}

.top-area__title {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  color: var(--title-text-color);
  text-align: center;
  background-color: var(--title-bg-color);
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.top-area__title::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8%;
  height: 3px;
  margin: 0 auto;
  text-align: center;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
  background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
  background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
  background-repeat: no-repeat;
  background-position: center;
}

.top-area__confirm {
  margin-bottom: 10px;
}

.top-area__confirm-message {
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-accent-color);
  text-align: center;
  text-decoration: underline;
}

.top-area__attention {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-area__attention > img {
  width: 1.8em;
}

.top-area__attention > span {
  margin-left: 0.3em;
}

/* code-area */
.code-area {
  margin: 0 auto;
}

.code-area__menu {
  position: relative;
  display: block;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  color: var(--title-text-color);
  text-align: center;
  background-color: var(--title-bg-color);
  /* 親要素をはみ出して横いっぱいに広げる */
  padding-right: 500%;
  padding-left: 500%;
  margin-right: -500%;
  margin-left: -500%;
}

.code-area__menu::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8%;
  height: 3px;
  margin: 0 auto;
  text-align: center;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #9c7600), color-stop(75%, #9c7600), to(transparent));
  background-image: linear-gradient(to right, transparent, #9c7600 25%, #9c7600 75%, transparent);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--title-underBar-color)), to(var(--title-underBar-color)));
  background-image: linear-gradient(to right, var(--title-underBar-color), var(--title-underBar-color));
  background-repeat: no-repeat;
  background-position: center;
}

.code-area__message {
  margin-bottom: 20px;
  font-weight: bold;
}

.code-area__message--accent {
  font-size: 18px;
  font-weight: bold;
  color: #1ab203;
  text-align: center;
}

.code-area__message--accent > i {
  margin-right: 5px;
}

/* item-box */
.item-box {
  margin-bottom: 10px;
}

.item-box__title {
  color: #c60079;
  margin-left: -9px;
}

/* button */
.button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.8em;
  font-size: 18px;
  color: #326664;
  text-align: center;
  text-decoration: none;
  background: #c9e1e1;
  border: solid 1px #326664;
  border-radius: 5px;
  border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.button--submit2 {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 17px;
  color: var(--toNextBtn-text-color);
  background-color: var(--toNextBtn-bg-color);
  border: solid 1px var(--toNextBtn-border-color);
}

.button--cancel3 {
  display: inline-block;
  font-size: 17px;
  color: var(--cancelBtn-text-color);
  background-color: var(--cancelBtn-bg-color);
  border: solid 1px var(--cancelBtn-border-color);
}

.button2 {
  position: relative;
  width: 50%;
  margin: 0 auto;
  font-size: 14px;
  color: var(--joinBtn-text-color);
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 0;
  font-size: 25px;
  border-radius: 50px;
  background-color: #c70079;
  border-bottom: 9px solid #bbbbbb;
}

@media screen and (max-width: 767px) {
  .button2 {
    width: 88%;
    padding: 10px 0;
    font-size: 20px;
    border-bottom: 5px solid #bbbbbb;
  }
}
.button2:before, .button2:after {
  content: "";
  position: absolute;
  right: 24px;
  width: 13px;
  height: 2px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .button2:before, .button2:after {
    width: 11px;
  }
}
.button2:before {
  top: 43%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .button2:before {
    top: 42%;
  }
}
.button2:after {
  top: 56%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .button2:after {
    top: 58%;
  }
}
.button2:active {
  text-decoration: none;
  cursor: pointer;
  border-bottom-color: transparent;
  -webkit-transform: translate3d(0, 4px, 0);
  transform: translate3d(0, 4px, 0);
}

.button2--noVote {
  color: #326664;
  background: #c9e1e1;
}

.button2--noVote:before, .button2--noVote:after {
  display: none;
}

.button2--disabled {
  background-color: #444 !important;
  pointer-events: none !important;
  font-size: 21px !important;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .button2--disabled {
    font-size: 16px !important;
  }
}
.button2--disabled:before, .button2--disabled:after {
  display: none;
}

/* input */
.input {
  width: 100%;
  padding: 5px;
  padding-left: 8px;
  border: gray solid 1px;
}

.input:required {
  background-color: #fff;
}

.input:focus {
  background: #dcedc8;
}

.input:valid {
  background: #e8f0fe;
}

.Checkbox {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: initial;
  margin-bottom: 3px;
  cursor: pointer;
}

.Checkbox-Input {
  width: 0;
  margin: 0;
  opacity: 0;
}

.Checkbox-Input:checked + .Checkbox-DummyInput {
  border: solid 1px gray;
}

.Checkbox-Input:checked + .Checkbox-DummyInput::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDQ5YjgiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cG9seWxpbmUgcG9pbnRzPSIyMCA2IDkgMTcgNCAxMiI+PC9wb2x5bGluZT48L3N2Zz4=") no-repeat center;
  background-size: contain;
}

.Checkbox-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  min-width: 25px;
  width: 25px;
  height: 25px;
  background: #fff;
  border: solid 1px #888888;
}

.Checkbox-LabelText {
  display: inline;
  margin-left: 8px;
  font-size: 16px;
}

/******************
キーフレーム
*****************/
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: flex;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
}
/* fade.js関連 */
.fade {
  opacity: 0;
}

.is-animated {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: var(--main-bg-color);
}

/* fade.js関連終わり */
.radio--touhyo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.radio__item {
  position: relative;
}

.radio__item p {
  margin-left: 1.5em;
}

.radio__description {
  padding-left: 0px;
  text-align: left;
  text-indent: -1em;
  margin-bottom: 5px;
  color: var(--text-accent-color);
}

.radio__label > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.radio__label > input + span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px 0 24px;
  font-size: 1.2em;
  font-weight: 500;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 4px;
  color: var(--text-accent-color);
}

.radio__label > input + span::before, .radio__label > input + span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  content: "";
  border-radius: 50%;
}

.radio__label > input + span::before {
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #999;
}

.radio__label > input + span::after {
  left: 5px;
  width: 10px;
  height: 10px;
  background: #999;
  opacity: 0;
}

.radio__label > input + span > span {
  font-size: 1.2em;
}

.radio__label > input:checked + span::before {
  border: 2px solid #0070bd;
}

.radio__label > input:checked + span::after {
  background: #0070bd;
  opacity: 1;
}

.radio__selectform {
  display: none;
}

.radio2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  row-gap: 14px;
}

.radio2__item {
  position: relative;
  width: 49%;
}

.radio2__img {
  width: 100%;
}

.radio2__label > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.radio2__label > input + span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px 0 24px;
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 20px;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .radio2__label > input + span {
    font-size: 14px;
  }
}
.radio2__label > input + span::before, .radio2__label > input + span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  content: "";
  border-radius: 50%;
}

.radio2__label > input + span::before {
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #0070bd;
}

.radio2__label > input + span::after {
  left: 5px;
  width: 10px;
  height: 10px;
  background: #999;
  opacity: 0;
}

.radio2__label > input + span > span {
  font-size: 1.2em;
}

.radio2__label > input:checked + span::before {
  border: 2px solid #0070bd;
}

.radio2__label > input:checked + span::after {
  background: #0070bd;
  opacity: 1;
}

/******************
  アコーディオン関連 
 *****************/
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.ac {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .ac {
    margin-bottom: 20px;
  }
}
.ac-parent {
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ac-parent-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 38px;
  aspect-ratio: 1;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 750px) {
  .ac-parent-toggle {
    right: 0;
    width: 40px;
  }
}
.ac-parent-toggle::before,
.ac-parent-toggle::after {
  content: ""; /* 疑似要素に指定必須 */
  width: 14px; /* 線の長さを指定 */
  height: 3px; /* 線の幅を指定 */
  display: inline-block; /* インラインブロックにする */
  background: #ffffff; /* 線の色を指定 */
  position: absolute; /* 相対位置に指定 */
  right: 11px; /* 右から10pxの位置に配置 */
}

@media screen and (max-width: 750px) {
  .ac-parent-toggle::before,
  .ac-parent-toggle::after {
    width: 11px;
    right: 14px;
  }
}
.ac-parent-toggle::before {
  top: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); /* 45度回転させる */
}

@media screen and (max-width: 750px) {
  .ac-parent-toggle::before {
    top: calc(50% - 4px);
  }
}
.ac-parent-toggle::after {
  bottom: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); /* -45度回転させる */
}

@media screen and (max-width: 750px) {
  .ac-parent-toggle::after {
    bottom: calc(50% - 4px);
  }
}
.ac-parent.open > .ac-parent-toggle {
  -webkit-transform: translateY(-50%) rotate(270deg);
  transform: translateY(-50%) rotate(270deg);
}

/******************
  アコーディオン関連 終わり
 *****************/
/******************
  グラフ関連
 *****************/
.chart-wrap {
  width: 550px;
  margin: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 78px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 1200px) {
  .chart-wrap {
    top: 6.3vw;
    width: 47vw;
  }
}
@media screen and (max-width: 767px) {
  .chart-wrap {
    top: 7.6vw;
    width: 68vw;
  }
}
/* バー部分 */
.chart-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  height: 200px; /* グラフ部分の高さ */
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 32px;
}

@media screen and (max-width: 1200px) {
  .chart-bars {
    height: 15.4vw;
  }
}
@media screen and (max-width: 767px) {
  .chart-bars {
    height: 20vw;
    padding-top: 0;
  }
}
.chart-bars li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100px;
}

.bar {
  position: relative; /* 王冠の位置調整に必要 */
  width: 40px;
  background-color: #000;
  height: 0;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

@media screen and (max-width: 767px) {
  .bar {
    width: 24px;
  }
}
/* ラベル部分 */
.chart-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 14px;
}

@media screen and (max-width: 1200px) {
  .chart-labels {
    width: 47vw;
    margin-top: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .chart-labels {
    width: 68vw;
  }
}
.chart-labels li {
  width: 100px;
  text-align: center;
}

.label {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  white-space: nowrap;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

@media screen and (max-width: 1200px) {
  .label {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .label {
    font-size: 2.3vw;
  }
}
/* 色の割り当て（任意） */
.chart-bars li:nth-child(1) .bar {
  background-color: #f44336;
}

.chart-bars li:nth-child(2) .bar {
  background-color: #2196f3;
}

.chart-bars li:nth-child(3) .bar {
  background-color: #009688;
}

.crown {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: auto;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

@media screen and (max-width: 767px) {
  .crown {
    top: -17px;
    width: 24px;
  }
}
.crown.visible {
  opacity: 1;
}

/******************
  グラフ関連 終わり
 *****************/