@charset "UTF-8";
.c-content-main img {
  height: auto !important;
  max-width: 100% !important;
}

h1 {
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.custom-scroll {
  overflow-y: scroll;
}
.custom-scroll::-webkit-scrollbar {
  width: 4px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.site-wrapper {
  overflow: hidden;
}

.site-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .site-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-container--slider {
  max-width: 1207px;
}
.site-container--app-list {
  max-width: 680px;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .site-container--app-slider {
    padding-left: 0;
    padding-right: 0;
  }
}

.pc-dn {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-dn {
    display: block;
  }
}

.sp-dn {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp-dn {
    display: none;
  }
}

.img-fluid {
  width: 100%;
  height: auto;
}

.underline {
  position: relative;
  display: inline-block;
}
.underline::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background-image: repeating-linear-gradient(45deg, #ffcf66, #ffcf66 3px, #fef6e7 3px, #fef6e7 6px);
  bottom: 0;
  left: 0;
}

.heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.heading--2 {
  font-size: 40px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .heading--2 {
    font-size: 32px;
  }
}
.heading--3 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .heading--3 {
    font-size: 24px;
  }
}
.heading--4 {
  font-size: 22px;
}
.heading--5 {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}
.text--bold {
  font-weight: 700;
}
.text--center {
  text-align: center;
}

.bullet-list > li {
  display: flex;
  gap: 4px;
}
.bullet-list > li::before {
  display: block;
  content: "・";
}

.button {
  width: 100%;
  font-size: 18px;
  font-weight: 900;
  color: #017b63;
  background-color: #fff;
  text-align: center;
  border-radius: 26px;
  border: 2px solid #333;
  box-shadow: 0px 4px 0px 0px #333;
  max-width: 320px;
  padding: 15px 30px;
  line-height: 1.1;
  position: relative;
  transition: background-color 0.1s ease;
}
@media screen and (min-width: 768px) {
  .button:hover {
    background-color: #d3f3e6;
  }
}
.button::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background-image: url("../assets/images/icon_arrow_green.svg");
}
.button:disabled {
  background-color: #e7e7e7;
  border: 2px solid #b0b0b0;
  box-shadow: 0px 4px 0px 0px #b0b0b0;
  color: #b0b0b0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: default;
}
.button:disabled::after {
  background-image: url("../assets/images/icon_arrow_disabled.svg");
}
.button:disabled .button__pretext {
  font-size: 12px;
}
.button--primary {
  max-width: 440px;
  background-color: #017b63;
  color: #fff;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 62px;
  padding: 15px 80px;
  transition: background-color transform 0.1s ease;
}
@media screen and (max-width: 768px) {
  .button--primary {
    font-size: 20px;
  }
}
.button--primary .button__pretext {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .button--primary .button__pretext {
    font-size: 13px;
  }
}
.button--primary::before {
  content: "";
  display: block;
  width: 71px;
  height: 110px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../assets/images/icon_mobile.png");
}
.button--primary::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background-image: url("../assets/images/icon_arrow_white.svg");
}
@media screen and (min-width: 768px) {
  .button--primary:not(:disabled):hover {
    background-color: #50b2a6;
  }
  .button--primary:not(:disabled):hover::before {
    transform: translateY(-50%) rotate(-10deg);
  }
}
.button--primary:disabled {
  background-color: #b0b0b0;
  border: 2px solid #888888;
  box-shadow: 0px 4px 0px 0px #888888;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.button--primary:disabled::after {
  background-image: url("../assets/images/icon_arrow_white.svg");
}
.button--primary:disabled .button__pretext {
  font-size: 13px;
  font-weight: 700;
}
.button--secondary {
  color: #017b63;
  border: 2px solid #017b63;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 12px;
  box-shadow: none;
}
.button--secondary::after {
  content: none;
}
.button--more {
  font-size: 14px;
  border-radius: 40px;
  padding: 8px 36px 8px 24px;
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: none;
}
.button--more::after {
  width: 16px;
  height: 16px;
  background-image: url("../assets/images/icon_arrow_more.svg");
}
.button--default {
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
  border: 2px solid #017b63;
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.button--default::after {
  content: none;
}
.button--white {
  background-color: #fff;
  color: #017b63;
}
@media screen and (min-width: 768px) {
  .button--white:hover {
    background-color: #d3f3e6;
  }
}
.button--white::after {
  background-image: url("../assets/images/icon_arrow_green.svg");
}
.button-container {
  display: flex;
  justify-content: center;
}

.text-link {
  text-decoration: underline !important;
  color: #017b63;
  font-weight: 700;
}

body.is-fixed {
  width: 100%;
  overflow: hidden;
}

.overlay {
  display: none;
  background-color: rgba(51, 51, 51, 0.2);
  width: 100vw;
  height: 100dvh;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 30;
}
.overlay.is-active {
  display: block;
}

.modal {
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  max-width: 692px;
  max-height: 632px;
  border-radius: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  transition: opacity 0.3s ease-out;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 56px 36px;
}
.modal__inner {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  padding-right: 8px;
}
.modal__content {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.modal__content-inner {
  width: 100%;
  padding: 43px 40px 43px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal__lead {
  font-size: 33px;
  color: #008c64;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}
.modal__text {
  text-align: center;
  font-weight: 800;
  margin-top: 32px;
}
.modal__button-container {
  width: 100%;
  padding: 80px 24px;
  background-color: #fcebc8;
  border-radius: 24px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .modal__button-container {
    padding: 40px 24px;
  }
}
.modal__button-container .button {
  max-width: 226px;
  height: 52px;
}
.modal__qr-container {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.modal__qr-code {
  padding: 24px;
  background-color: #fcebc8;
  border-radius: 24px;
}
.modal__qr {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.modal__qr-text {
  font-weight: 14px;
  font-weight: 800;
  color: #017b63;
  text-align: center;
}
.modal__qr-text strong {
  font-weight: 900;
  font-size: 18px;
}
.modal__close, .modal__polygon, .modal__man, .modal__woman {
  position: absolute;
}
.modal__close {
  top: 0;
  right: 36px;
}
.modal__man {
  bottom: 0;
  left: -4px;
}
.modal__woman {
  bottom: 0;
  right: 0;
}
.modal__polygon--1 {
  top: 80px;
  right: 0;
}
.modal__polygon--2 {
  left: 0;
  bottom: 210px;
}
.modal__polygon--3 {
  top: 30px;
  left: 30px;
}
.modal__polygon--4 {
  top: 44px;
  right: 76px;
  z-index: 10;
}
.modal .modal__button-container .button {
  font-size: 16px;
  padding: 15px 20px;
}
.modal .modal__button-container .button::after {
  right: 10px;
}

.kv {
  position: relative;
  overflow: hidden;
}
.kv::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(45deg, #f9d387, #f9d387 10px, #333 10px, #333 20px);
  top: 0;
  left: 0;
  z-index: 20;
}
.kv__container {
  height: 500px;
  position: relative;
  background-color: #ffcf66;
}
@media screen and (max-width: 768px) {
  .kv__container {
    height: 628px;
  }
}
.kv__inner {
  z-index: 10;
  position: absolute;
  top: 0;
  left: -25%;
  width: 150%;
  height: 400px;
  background-color: #fcebc9;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .kv__inner {
    height: 460px;
  }
}
.kv__content {
  position: relative;
  width: 100vw;
  margin: 0 auto;
  height: 100%;
}
.kv__building {
  position: absolute;
  z-index: 10;
}
.kv__building--left {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .kv__building--left {
    width: 94px;
    height: auto;
    transform: rotate(20deg);
    bottom: 20px;
    left: -20px;
  }
}
.kv__building--right {
  top: 233px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .kv__building--right {
    width: 123px;
    height: auto;
    width: 123px;
    height: auto;
    top: 300px;
    right: -20px;
  }
}
.kv__main {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .kv__main {
    width: 100%;
    height: auto;
    max-width: 350px;
    margin: 0 auto;
  }
}
.kv__info {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}
.kv__box {
  width: 357px;
  text-align: center;
  position: absolute;
  top: 30px;
  right: 32px;
}
@media screen and (max-width: 768px) {
  .kv__box {
    width: 100%;
    position: static;
  }
}
.kv__lead-text {
  font-size: 20px;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}
.kv__lead-text > span {
  background-color: #fcebc9;
}
@media screen and (max-width: 768px) {
  .kv__lead-text {
    margin-top: 10px;
  }
  .kv__lead-text > span {
    background: none;
  }
}
.kv__site-container {
  position: relative;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .kv__site-container {
    padding: 26px 18px 0;
  }
}
.kv__hashtag {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #017b63;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 11px;
  margin: 8px auto 0;
  gap: 4px;
}
.kv__hashtag-strong {
  font-size: 16px;
}
.kv__submit {
  margin-top: 27px;
}
.kv__app-logo {
  display: block;
  margin-left: 0;
  margin-right: auto;
}

.section {
  padding: 30px 0 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 10px 0 110px;
  }
}
.section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fccc5f;
  -webkit-clip-path: ellipse(100% 100% at 50% 100%);
  clip-path: ellipse(100% 100% at 50% 100%);
  z-index: 0;
  transform: translateY(-100%);
}
.section .section__head {
  text-align: center;
}
.section .section__heading {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .section .section__heading-bubble-container {
    position: absolute;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.section .section__heading-bubble {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  padding: 4px 24px 6px 24px;
  background-color: #f45c27;
  border-radius: 40px;
  position: relative;
  white-space: nowrap;
}
.section .section__heading-bubble::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #f45c27;
  width: 0;
  height: 0;
}
.section .section__body {
  margin-top: 24px;
}

.action {
  background-color: #017b63;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .action {
    padding-bottom: 56px;
    margin-top: 0;
  }
}
.action::before {
  background-color: #017b63;
}
@media screen and (max-width: 768px) {
  .action::before {
    top: 62px;
  }
}
.action__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .action__list {
    flex-direction: column;
    gap: 32px;
  }
}
.action-list__item {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .action-list__item {
    width: 100%;
  }
}
.action-item__head {
  color: #fff;
}
.action-item__head-inner {
  position: absolute;
  top: 0;
  left: 60%;
  text-align: center;
  padding-right: 10px;
  transform: translateX(-50%);
  min-width: 210px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .action-item__head-inner {
    transform: none;
    left: 33%;
  }
}
.action-item__preheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 5;
}
.action-item__text {
  font-size: 14px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.action-item__minute {
  font-size: 26px;
}
.action-item__number {
  font-size: 14px;
  font-weight: 700;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f9d387;
  color: #017b63;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-item__heading {
  line-height: 1.4;
}
.action-item__heading > span {
  position: relative;
  z-index: 5;
}
.action-item__heading > span::after, .action-item__heading > span::before {
  content: "";
  background-image: url("../assets/images/icon_polygon.svg");
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 1;
}
.action-item.action-item--join .action-item__heading > span::before {
  top: -40px;
  right: 38px;
}
@media screen and (max-width: 768px) {
  .action-item.action-item--join .action-item__heading > span::before {
    top: -50px;
    right: 13px;
  }
}
.action-item.action-item--join .action-item__heading > span::after {
  top: 32px;
  right: -14px;
}
@media screen and (max-width: 768px) {
  .action-item.action-item--join .action-item__heading > span::after {
    top: 32px;
    right: -59px;
  }
}
.action-item.action-item--share .action-item__heading > span::before {
  top: -50px;
  right: 155px;
}
.action-item.action-item--share .action-item__heading > span::after {
  top: 30px;
  right: 36px;
}
.action-item__icon {
  margin-left: -10px;
}
@media screen and (max-width: 768px) {
  .action-item__icon {
    margin-left: -70px;
  }
}
.action-item__detail {
  background-color: #005f4d;
  padding: 24px 32px;
  border-radius: 16px;
  margin-top: -30px;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 228px;
}
@media screen and (max-width: 768px) {
  .action-item__detail {
    min-height: 0;
  }
}
.action-item__detail .button:disabled > * {
  margin: 0 auto;
}
.action-item__desc {
  color: #fff;
  font-size: 14px;
}
.action-item__button {
  width: 100%;
  margin-top: 14px;
}
.action-item--share .action-item__head-inner {
  top: 25px;
  left: 70%;
}
@media screen and (max-width: 768px) {
  .action-item--share .action-item__head-inner {
    transform: none;
    left: 33%;
  }
}

.guide {
  padding: 0;
}
.guide::before {
  background-color: #fff;
  top: 62px;
}
.guide__container {
  background-image: url(../assets/images/bg_guide.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  padding: 30px 0 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide__container {
    padding: 100% 24px 110px;
    background-image: url(../assets/images/bg_guide_sp.png);
    background-size: contain;
    background-position: top center;
  }
}
.guide__inner {
  padding: 32px 40px;
  max-width: 610px;
  margin: 0 auto;
  background-color: #fef6e7;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .guide__inner {
    padding: 20px 24px;
  }
}
.guide__heading {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .guide__heading--strong {
    font-size: 26px;
  }
}
.guide__text {
  margin-top: 12px;
}
.guide__note {
  color: #888888;
  font-size: 14px;
}
.guide__submit {
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .guide__submit {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .guide__submit--pc {
    display: none;
  }
}
.guide__submit--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .guide__submit--sp {
    display: flex;
  }
}

.campaign {
  background-color: #ffcf66;
}
.campaign::before {
  background-color: #ffcf66;
}
@media screen and (max-width: 768px) {
  .campaign::before {
    top: 62px;
  }
}
.campaign__lead-text {
  max-width: 616px;
  margin: 0 auto;
}
.campaign__submit {
  margin-top: 19px;
}
@media screen and (max-width: 768px) {
  .campaign__submit {
    margin-top: -10px;
  }
}
.campaign__image {
  margin-top: 24px;
}
.campaign .section__body {
  margin-top: 16px;
}

.procedure {
  background-color: #017b63;
}
.procedure::before {
  background-color: #017b63;
}
@media screen and (max-width: 768px) {
  .procedure::before {
    top: 62px;
  }
}
.procedure-slider {
  overflow: visible;
}
.procedure .section__heading-bubble {
  background-color: #fff;
  color: #f45c27;
}
.procedure .section__heading-bubble::after {
  border-top: 6px solid #fff;
}
.procedure .section__heading {
  color: #fff;
}
.procedure-slider {
  width: 100%;
  padding-bottom: 40px;
}
.procedure-slider__item {
  width: 272px;
  margin-right: 8px;
  display: flex;
  height: 408px;
}
.procedure-slider__item::before {
  content: "";
  display: block;
  width: 16px;
  height: 88px;
  background-color: #fff;
  background-image: url(../assets/images/icon_arrow_slider.svg);
  background-size: 13px 10px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 16px 0 0 16px;
}
.procedure-slider__item--empty::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: none;
}
.procedure-slider__item--empty .procedure-slider__item-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 8px 20px 20px;
  background-color: rgba(255, 255, 255, 0.2);
}
.procedure-slider__item-inner {
  width: 256px;
  background-color: #fff;
  border-radius: 0 16px 16px 16px;
}
.procedure-slider__head {
  display: flex;
  align-items: center;
  padding: 12px 10px;
}
.procedure-slider__number {
  font-size: 64px;
  font-weight: 700;
  color: #009393;
  line-height: 1;
}
.procedure-slider__heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.procedure-slider__content {
  padding: 8px 20px 20px;
}
.procedure-slider__text {
  margin-top: 8px;
  font-size: 14px;
}
.procedure-slider__note {
  color: #888;
}
.procedure-slider__indicator .swiper-pagination-bullet {
  background-color: #50b2a6;
}
.procedure-slider__indicator .swiper-pagination-bullet-active {
  background-color: #fff;
}
.procedure-content--download img {
  display: block;
  margin: 0 auto;
}
.procedure-content--download .procedure-slider__text {
  margin-top: 8px;
}
.procedure-content--download .procedure-content__button-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.procedure-content--download .procedure-content__container {
  background-color: #fef6e7;
  padding: 24px 16px;
  border-radius: 12px;
}
.procedure-content--account .procedure-content__button {
  margin-top: 14px;
}
.procedure__submit {
  margin-top: 40px;
}
.procedure__notice {
  position: relative;
  background-color: #c4ebe3;
  padding: 32px 32px 24px 32px;
  margin-top: 45px;
}
.procedure__notice::before, .procedure__notice::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(45deg, #017b63, #017b63 10px, #c4ebe3 10px, #c4ebe3 20px);
}
.procedure__notice::before {
  top: 0;
  left: 0;
}
.procedure__notice::after {
  bottom: 0;
  left: 0;
}
.procedure__notice .button-container {
  margin-top: 16px;
}
.procedure .procedure-notice__text {
  margin-top: 16px;
}
.procedure .procedure-notice__list {
  margin-top: 4px;
}

.app {
  background-color: #fef6e7;
}
.app::before {
  background-color: #fef6e7;
}
.app .swiper-wrapper {
  transition-timing-function: linear !important;
}
.app__heading {
  color: #017b63;
}
.app__tag {
  padding: 4px 10px;
  background-color: #ffcf66;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.app .app-tag-slider {
  margin: 32px auto 0;
}
.app .app-tag-slider + .app-tag-slider {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .app .app-tag-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 32px 0 0 0;
  }
  .app .app-tag-slider + .app-tag-slider {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .app .app-tag-slider__wrapper {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.app .app-tag-slider__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 3px;
}
@media screen and (max-width: 768px) {
  .app .app-tag-slider__inner {
    flex-wrap: nowrap;
    margin: 0;
    -webkit-animation: slide-tag-left 20s linear infinite;
    animation: slide-tag-left 20s linear infinite;
  }
}
.app .app-tag-slider__inner--clone {
  display: none;
}
@media screen and (max-width: 768px) {
  .app .app-tag-slider__inner--clone {
    display: flex;
  }
}
@-webkit-keyframes slide-tag-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-tag-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  .app .app-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
}
.app .app-slider__wrapper {
  margin: 56px auto 0;
}
@media screen and (max-width: 768px) {
  .app .app-slider__wrapper {
    display: flex;
    margin: 56px 0 0 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.app .app-slider__inner {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 0 12px;
}
@media screen and (max-width: 768px) {
  .app .app-slider__inner {
    flex-wrap: nowrap;
    max-width: none;
    justify-content: flex-start;
    -webkit-animation: slide-left 30s linear infinite;
    animation: slide-left 30s linear infinite;
  }
}
.app .app-slider__inner--clone {
  display: none;
}
@media screen and (max-width: 768px) {
  .app .app-slider__inner--clone {
    display: flex;
  }
}
.app .app-slider__item {
  width: 25%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 1;
}
@media screen and (max-width: 768px) {
  .app .app-slider__item {
    width: 200px;
    flex-shrink: 0;
  }
}
.app-list {
  display: flex;
  justify-content: center;
  gap: 16px 27px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.app-list > li {
  width: 86px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}
.app-list__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@-webkit-keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.app__submit {
  margin-top: 24px;
}

.qa {
  background-color: #fff;
  padding-bottom: 56px;
}
.qa::before {
  background-color: #fff;
}
.qa-list > li {
  background-color: #fef6e7;
  border-radius: 8px;
}
.qa-list > li + li {
  margin-top: 8px;
}
.qa-list__button {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  color: #333;
}
.qa-list__number {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #017b63;
  width: 30px;
}
.qa-list__question {
  width: calc(100% - 24px - 30px);
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}
.qa-list__content {
  padding: 8px 20px 20px 20px;
}
.qa-list__text {
  font-size: 14px;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-button-text--open {
  display: block;
}
.accordion-button-text--close {
  display: none;
}
.accordion.is-active .accordion__arrow {
  transform: rotate(180deg);
}
.accordion.is-active .accordion__button::after {
  transform: rotate(180deg) translateY(50%);
}
.accordion.is-active .accordion-button-text--open {
  display: none;
}
.accordion.is-active .accordion-button-text--close {
  display: block;
}

.message {
  position: relative;
  background-color: #4aafa3;
}
.message::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(45deg, #4aafa3, #4aafa3 10px, rgba(51, 51, 51, 0.5) 10px, rgba(51, 51, 51, 0.5) 20px);
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .message {
    background-color: #4aafa3;
    padding-top: 72px;
  }
}
.message__container {
  background-image: url(../assets/images/bg_message.png);
  background-size: 1265px 824px;
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media screen and (max-width: 768px) {
  .message__container {
    background-image: url(../assets/images/bg_message_sp.png);
    background-position: bottom center;
    background-size: contain;
    padding-bottom: 50%;
  }
}
.message__inner {
  background-color: #fff;
  border-radius: 24px;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .message__inner {
    padding: 0;
    background-color: transparent;
  }
}
.message__text {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .message__text {
    color: #fff;
  }
}
.message__content {
  width: 460px;
  padding: 40px 0 40px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .message__content {
    width: 100%;
    padding: 0;
    background: none;
  }
}
.message__submit {
  margin-top: 43px;
  position: relative;
  z-index: 10;
}
.message__link {
  display: block;
  margin-top: 27px;
  position: relative;
  z-index: 10;
  transition: opacity 0.1s ease;
}
.message__link:hover {
  opacity: 0.5;
}

.section.guide + .section.procedure .section__heading-bubble {
  background-color: #f45c27;
  color: #fff;
}
.section.guide + .section.procedure .section__heading-bubble::after {
  border-top: 6px solid #f45c27;
}

/*# sourceMappingURL=style.css.map */
