@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.kaigyo {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff url(../img/kaigyo/bg-mobile.jpg) no-repeat center top/100% auto;
  visibility: hidden;
  opacity: 0;
}
.kaigyo * {
  font-family: "Noto Sans JP", sans-serif;
}
.kaigyo__close {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #323232;
  right: 10px;
  top: -20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22SVGRepo_bgCarrier%22%20stroke-width%3D%220%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_tracerCarrier%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_iconCarrier%22%3E%20%3Cg%20id%3D%22Menu%20%2F%20Close_SM%22%3E%20%3Cpath%20id%3D%22Vector%22%20d%3D%22M16%2016L12%2012M12%2012L8%208M12%2012L16%208M12%2012L8%2016%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 80% 80%;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.kaigyo__close:hover {
  opacity: 0.8;
}
.kaigyo__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding-inline: 17px;
  display: none;
}
.kaigyo__container {
  max-width: 624px;
  margin-inline: auto;
}
.kaigyo__heading img {
  max-width: 100%;
  height: auto;
}
.kaigyo__board {
  border: 5px solid #323232;
  background-color: #fff;
  position: relative;
}
.kaigyo__scene {
  padding-block: 45px 12vw;
  visibility: hidden;
  opacity: 0;
}
.kaigyo__scene.is-view {
  visibility: visible;
  opacity: 1;
}
.kaigyo__scene:not(.is-view) {
  position: absolute;
  height: 0;
  overflow: hidden;
}
.kaigyo__gap {
  position: absolute;
  height: 5px;
  width: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  bottom: -5px;
  left: 60%;
}
.kaigyo__gap::before, .kaigyo__gap::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #323232;
}
.kaigyo__gap::before {
  translate: -50% 0%;
}
.kaigyo__gap::after {
  translate: 50% 0;
}
.kaigyo__rope {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 20px;
  height: 38px;
  margin-top: 20px;
}
.kaigyo__rope i {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 5px solid #323232;
  background-color: #fff;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  z-index: 10;
}
.kaigyo__rope span {
  --width:5vw;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  height: 100%;
  background-color: #323232;
  display: block;
}
.kaigyo__rope span:first-child {
  -webkit-clip-path: polygon(calc(100% - var(--width)) 0%, 100% 0%, var(--width) 100%, 0% 100%);
          clip-path: polygon(calc(100% - var(--width)) 0%, 100% 0%, var(--width) 100%, 0% 100%);
  margin-right: calc(-0.5 * var(--width));
}
.kaigyo__rope span:last-child {
  -webkit-clip-path: polygon(0% 0%, var(--width) 0%, 100% 100%, calc(100% - var(--width)) 100%);
          clip-path: polygon(0% 0%, var(--width) 0%, 100% 100%, calc(100% - var(--width)) 100%);
  margin-left: calc(-0.5 * var(--width));
}
.kaigyo:has(.is-view[data-scene=init]) .kaigyo__heading {
  display: none;
}
@media (min-width: 751px) {
  .kaigyo {
    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;
  }
  .kaigyo__rope {
    height: 70px;
  }
  .kaigyo__rope span {
    --width:20px;
  }
}
@media (min-width: 1024px) {
  .kaigyo {
    background: #fff url(../img/kaigyo/bg.jpg) no-repeat center bottom/1380px auto;
  }
  .kaigyo__heading {
    position: absolute;
    top: 17px;
    right: min(50% + 312px, 100% - 320px);
  }
  .kaigyo__container {
    padding-block: 56px 24px;
    overflow: auto;
    max-height: 100vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .kaigyo__container::-webkit-scrollbar {
    display: none;
  }
  .kaigyo__scene {
    padding-block: 45px;
  }
}
@media (max-width: 1023px) {
  .kaigyo__wrapper {
    padding-block: 20px 30vw;
    overflow: auto;
    height: 100vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .kaigyo__wrapper::-webkit-scrollbar {
    display: none;
  }
  .kaigyo__container {
    position: relative;
  }
  .kaigyo__container::after {
    content: "";
    position: absolute;
    aspect-ratio: 342/165;
    background: url(../img/kaigyo/bg-bottom-mobile.png) no-repeat center center/contain;
    inset: auto 17px -30vw;
  }
  .kaigyo__heading {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 750px) {
  .kaigyo__board {
    padding-inline: 22px;
  }
}

.kaigyo-init__heading {
  text-align: center;
}
.kaigyo-init__button {
  width: 250px;
  height: 60px;
  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;
  border-radius: 100vmax;
  font-size: 28px;
  background-color: #EE313E;
  letter-spacing: 0.1em;
  margin-inline: auto;
  font-weight: bold;
  color: #fff;
  margin-top: 60px;
  line-height: 0;
  cursor: pointer;
  border: 2px solid #EE313E;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.kaigyo-init__button:hover {
  background-color: #fff;
  color: #EE313E;
}
@media (min-width: 751px) {
  .kaigyo-init {
    padding-block: 45px;
  }
  .kaigyo-init__button {
    margin-top: 45px;
  }
}

.kaigyo-q {
  position: relative;
}
.kaigyo-q__heading {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.kaigyo-q__icon {
  position: absolute;
  width: 68px;
  left: -17px;
  top: -67px;
}
.kaigyo-q__icon img {
  height: auto;
}
.kaigyo-q__selects {
  max-width: 300px;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  gap: 20px 0;
}
.kaigyo-q__checks {
  display: -ms-grid;
  display: grid;
  max-width: 530px;
  margin-inline: auto;
  gap: 15px 7px;
  -ms-grid-columns: 1fr 7px 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 751px) {
  .kaigyo-q__heading {
    font-size: 24px;
  }
  .kaigyo-q__icon {
    left: 15px;
    top: -90px;
    width: 116px;
  }
  .kaigyo-q__checks {
    gap: 13px 10px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.kaigyo-radio {
  height: 53px;
  border-radius: 100vmax;
  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;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
  border: 4px solid #EE313E;
  cursor: pointer;
}
.kaigyo-radio:has(input:checked) {
  background-color: #EE313E;
  color: #fff;
}

.kaigyo-radio02 {
  height: 50px;
  border-radius: 100vmax;
  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;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: bold;
  border: 4px solid #EE313E;
  padding-inline: 3px;
  cursor: pointer;
}
.kaigyo-radio02:has(input:checked) {
  background-color: #EE313E;
  color: #fff;
}
.kaigyo-radio02 span {
  line-height: 1.1;
  text-align: center;
}
@media (min-width: 751px) {
  .kaigyo-radio02 {
    height: 35px;
  }
}

.kaigyo-a {
  margin-inline: auto;
  width: min(520px, 100%);
}
.kaigyo-a__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 17px;
  margin-bottom: 5px;
}
.kaigyo-a__heading span {
  font-size: 18px;
  color: #EE313E;
  font-weight: bold;
}
.kaigyo-a__heading::before, .kaigyo-a__heading::after {
  content: "";
  aspect-ratio: 49/13;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
}
.kaigyo-a__heading::before {
  background: url(../img/kaigyo/deco01.svg) no-repeat center center/contain;
}
.kaigyo-a__heading::after {
  background: url(../img/kaigyo/deco02.svg) no-repeat center center/contain;
}
.kaigyo-a__tip {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
.kaigyo-a__tip b {
  font-weight: bold;
  font-size: 18px;
}
.kaigyo-a__store {
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  font-size: 32px;
}
.kaigyo-a__illust {
  text-align: center;
  padding-block: 10px;
}
.kaigyo-a__illust img {
  height: auto;
}
.kaigyo-a__text {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.05em;
}
.kaigyo-a__text a {
  color: #ED313F;
  text-decoration: underline;
}
.kaigyo-a__text a:hover {
  text-decoration: none;
}
@media (min-width: 751px) {
  .kaigyo-a__heading span {
    font-size: 22px;
  }
  .kaigyo-a__heading::before, .kaigyo-a__heading::after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49px;
            flex: 0 0 49px;
    width: 49px;
  }
  .kaigyo-a__store {
    font-size: 38px;
  }
  .kaigyo-a__text {
    font-size: 16px;
  }
}

.kaigyo-cta {
  padding-top: 20px;
  margin-inline: auto;
  width: min(520px, 100%);
}
.kaigyo-cta__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 17px;
  margin-bottom: 5px;
}
.kaigyo-cta__heading span {
  font-size: 18px;
  color: #EE313E;
  font-weight: bold;
}
.kaigyo-cta__heading::before, .kaigyo-cta__heading::after {
  content: "";
  aspect-ratio: 49/13;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
}
.kaigyo-cta__heading::before {
  background: url(../img/kaigyo/deco01.svg) no-repeat center center/contain;
}
.kaigyo-cta__heading::after {
  background: url(../img/kaigyo/deco02.svg) no-repeat center center/contain;
}
.kaigyo-cta__notes {
  margin-top: 14px;
}
.kaigyo-cta__notes li {
  font-size: 11px;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 500;
}
.kaigyo-cta__container {
  background: url(../img/kaigyo/bg-cta.jpg) no-repeat center bottom/cover;
  border-radius: 10px;
  padding-block: 15px;
}
.kaigyo-cta__text {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.kaigyo-cta__text span {
  font-weight: bold;
  color: #EE313E;
}
.kaigyo-cta__strong {
  padding-block: 10px;
  text-align: center;
  color: #EE313E;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
}
.kaigyo-cta__strong b {
  font-size: 28px;
  font-weight: bold;
}
.kaigyo-cta__button {
  width: 270px;
  height: 48px;
  background-color: #EE313E;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  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;
  margin-inline: auto;
  border-radius: 100vmax;
  cursor: pointer;
  border: 2px solid #EE313E;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.kaigyo-cta__button:hover {
  background-color: #fff;
  color: #EE313E;
}
@media (min-width: 751px) {
  .kaigyo-cta__heading span {
    font-size: 22px;
  }
  .kaigyo-cta__heading::before, .kaigyo-cta__heading::after {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49px;
            flex: 0 0 49px;
    width: 49px;
  }
  .kaigyo-cta__container {
    padding-block: 20px;
  }
  .kaigyo-cta__text {
    font-size: 16px;
    line-height: 23px;
  }
  .kaigyo-cta__strong {
    line-height: 37px;
    font-size: 28px;
  }
  .kaigyo-cta__strong b {
    font-size: 36px;
  }
  .kaigyo-cta__notes li {
    font-size: 12px;
  }
}

.kaigyo-register__inner {
  max-width: 530px;
  margin-inline: auto;
}
.kaigyo-register__copy {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
}
.kaigyo-register__copy b {
  color: #EE313E;
  font-weight: bold;
}
.kaigyo-register__copy strong {
  font-size: 26px;
  font-weight: bold;
}
.kaigyo-register__text01 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-block: 30px 10px;
}
.kaigyo-register__mail {
  color: #323232;
  border: 3px solid currentColor;
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  height: 55px;
}
.kaigyo-register__mail::-webkit-input-placeholder {
  color: #9A9A9A;
}
.kaigyo-register__mail:-ms-input-placeholder {
  color: #9A9A9A;
}
.kaigyo-register__mail::-ms-input-placeholder {
  color: #9A9A9A;
}
.kaigyo-register__mail::placeholder {
  color: #9A9A9A;
}
.kaigyo-register__mail::-ms-input-placeholder {
  color: #9A9A9A;
}
.kaigyo-register__caution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4px;
  margin-top: 10px;
}
.kaigyo-register__caution i {
  line-height: 0;
}
.kaigyo-register__caution span {
  font-size: 14px;
  font-weight: bold;
}
.kaigyo-register__text02 {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.kaigyo-register__text03 {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-left: 26px;
}
.kaigyo-register__text03 a {
  color: #EE313E;
  text-decoration: underline;
}
.kaigyo-register__text03 a:hover {
  text-decoration: none;
}
.kaigyo-register__check {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  cursor: pointer;
}
.kaigyo-register__check input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 5px;
  border: 1px solid #707070;
}
.kaigyo-register__check input:checked {
  background-color: #EE313E;
  border-color: #EE313E;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22SVGRepo_bgCarrier%22%20stroke-width%3D%220%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_tracerCarrier%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fg%3E%3Cg%20id%3D%22SVGRepo_iconCarrier%22%3E%20%3Cpath%20d%3D%22M4%2012.6111L8.92308%2017.5L20%206.5%22%20stroke%3D%22%23fff%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 80% auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.kaigyo-register__check span {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.kaigyo-register__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 248px;
  height: 59px;
  border-radius: 100vmax;
  background-color: #EE313E;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  margin-inline: auto;
  margin-top: 40px;
  cursor: pointer;
  border: 2px solid #EE313E;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.kaigyo-register__button:hover {
  background-color: #fff;
  color: #EE313E;
}
.kaigyo-register__button:disabled {
  background-color: #9A9A9A;
  border-color: #9A9A9A;
  color: #fff;
  text-decoration: line-through;
  cursor: not-allowed;
}
@media (min-width: 751px) {
  .kaigyo-register__copy {
    font-size: 20px;
  }
  .kaigyo-register__copy strong {
    font-size: 30px;
  }
  .kaigyo-register__text01 {
    font-size: 18px;
    margin-block: 60px 20px;
  }
  .kaigyo-register__mail {
    font-size: 18px;
    height: 60px;
  }
  .kaigyo-register__caution {
    margin-top: 15px;
  }
  .kaigyo-register__caution span {
    font-size: 16px;
  }
  .kaigyo-register__text02, .kaigyo-register__text03 {
    font-size: 14px;
  }
  .kaigyo-register__check {
    margin-top: 24px;
  }
  .kaigyo-register__check input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17px;
            flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin-top: 2px;
  }
  .kaigyo-register__check span {
    font-size: 14px;
  }
  .kaigyo-register__text03 {
    padding-left: 23px;
  }
  .kaigyo-register__button {
    margin-top: 30px;
  }
}