@charset "UTF-8";
@font-face {
  font-family: "NATS";
  src: url("../font/NATS-Regular.woff") format("woff"), url("../font/NATS-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.adlp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(72 / 750 * 100cqw);
  background: #fff;
  padding: calc(56 / 750 * 100cqw) 0 calc(184 / 750 * 100cqw);
}
.adlp-footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(56 / 750 * 100cqw);
}
.adlp-footer__link {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(24 / 750 * 100cqw);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
}
.adlp-footer__copyright {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(20 / 750 * 100cqw);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.adlp-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.adlp-floating.--show {
  transform: translateY(0);
}
.adlp-floating__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(152 / 750 * 100cqw);
  padding: calc(16 / 750 * 100cqw) 0;
}

.adlp-accordion {
  background: #fff;
}
.adlp-accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__wrapper {
    gap: calc(30 / 750 * 100cqw);
  }
}
.adlp-accordion__header {
  position: relative;
  cursor: pointer;
}
.adlp-accordion__header__inner {
  display: flex;
  align-items: center;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(80 / 1080 * 100vw), 80px) min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner {
    padding: calc(40 / 750 * 100cqw) calc(112 / 750 * 100cqw) calc(40 / 750 * 100cqw) calc(40 / 750 * 100cqw);
  }
}
.adlp-accordion__header__inner .lead {
  line-height: 1;
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header__inner .lead {
    font-size: calc(48 / 750 * 100cqw);
    margin-right: calc(20 / 750 * 100cqw);
  }
}
.adlp-accordion__header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(12 / 1080 * 100vw), 12px);
  right: min(calc(45 / 1080 * 100vw), 45px);
  transition: all 0.3s;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 11.5L0.47372 0.25L19.5263 0.250002L10 11.5Z' fill='%23012F83'/%3E%3C/svg%3E%0A");
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header::after {
    width: calc(28 / 750 * 100cqw);
    height: calc(17 / 750 * 100cqw);
    right: calc(35 / 750 * 100cqw);
  }
}
.adlp-accordion__header.--open::after {
  transform: translateY(-50%) rotate(180deg);
}
.adlp-accordion__header.--open::before {
  opacity: 0;
}
.adlp-accordion__header.--img::after {
  display: none;
}
.adlp-accordion__header.--img > span:last-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:first-child {
  display: none;
}
.adlp-accordion__header.--img.--open > span:last-child {
  display: block;
}
.adlp-accordion__header.--plus::before {
  content: "";
  display: block;
  background-image: none;
  background: #012F83;
  position: absolute;
  height: min(calc(20 / 1080 * 100vw), 20px);
  width: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(49 / 1080 * 100vw), 49px);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::before {
    height: calc(20 / 750 * 100cqw);
    width: calc(2 / 750 * 100cqw);
    right: calc(49 / 750 * 100cqw);
  }
}
.adlp-accordion__header.--plus::after {
  width: min(calc(20 / 1080 * 100vw), 20px);
  height: min(calc(2 / 1080 * 100vw), 2px);
  right: min(calc(40 / 1080 * 100vw), 40px);
  background-image: none;
  background: #012F83;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__header.--plus::after {
    width: calc(20 / 750 * 100cqw);
    height: calc(2 / 750 * 100cqw);
    right: calc(40 / 750 * 100cqw);
  }
}
.adlp-accordion__body {
  display: none;
}
.adlp-accordion__body__inner {
  display: flex;
  align-items: flex-start;
  padding: min(calc(20 / 1080 * 100vw), 20px) min(calc(40 / 1080 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner {
    padding: 0 calc(40 / 750 * 100cqw) calc(40 / 750 * 100cqw);
  }
}
.adlp-accordion__body__inner .lead {
  font-size: min(calc(40 / 1080 * 100vw), 40px);
  margin-right: min(calc(20 / 1080 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .adlp-accordion__body__inner .lead {
    margin-right: calc(20 / 750 * 100cqw);
  }
}
.js-toggle {
  cursor: pointer;
}
.js-toggle + * {
  display: none;
}

.adlp-status {
  display: flex;
  flex-direction: column;
  gap: calc(13 / 750 * 100cqw);
}

.adlp-status__row {
  display: flex;
  justify-content: space-between;
  gap: calc(14 / 750 * 100cqw);
}

.adlp-status__card img {
  display: block;
  width: 100%;
}
.adlp-status__card.--award, .adlp-status__card.--stores {
  width: calc(308 / 750 * 100cqw);
}
.adlp-status__card.--trainer {
  width: 100%;
}

.adlp-swiper {
  position: relative;
  padding-bottom: min(calc(50 / 1080 * 100vw), 50px);
  width: 100%;
  /* ページネーションの余白 */
}
@media screen and (max-width: 767px) {
  .adlp-swiper {
    padding-bottom: calc(80 / 750 * 100cqw);
  }
}
.adlp-swiper.--hide {
  overflow: hidden;
}
.adlp-swiper .swiper-slide {
  padding: 0 min(calc(40 / 1080 * 100vw), 40px);
}
.adlp-swiper .swiper-button-next,
.adlp-swiper .swiper-button-prev {
  width: min(calc(24 / 1080 * 100vw), 24px);
  height: min(calc(84 / 1080 * 100vw), 84px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-button-next,
  .adlp-swiper .swiper-button-prev {
    width: calc(30 / 750 * 100cqw);
  }
}
.adlp-swiper .swiper-button-next::after,
.adlp-swiper .swiper-button-prev::after {
  display: none;
}
.adlp-swiper .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M18 51L8 42L18 33' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  left: 0;
}
.adlp-swiper .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='84' viewBox='0 0 24 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='84' fill='%234A453B'/%3E%3Cpath d='M8 33L18 42L8 51' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  right: 0;
}
.adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 min(calc(8 / 1080 * 100vw), 8px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .adlp-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 calc(8 / 750 * 100cqw);
  }
}
.adlp-swiper .swiper-pagination-bullet {
  height: min(calc(10 / 1080 * 100vw), 10px);
  width: min(calc(10 / 1080 * 100vw), 10px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper .swiper-pagination-bullet {
    width: calc(16 / 750 * 100cqw);
    height: calc(16 / 750 * 100cqw);
  }
}
.adlp-swiper .swiper-pagination-bullet-active {
  background-color: #E0BF23;
}
.adlp-swiper__wrapper {
  padding-bottom: min(calc(30 / 1080 * 100vw), 30px);
}
@media screen and (max-width: 767px) {
  .adlp-swiper__wrapper {
    width: 100%;
    padding-bottom: calc(60 / 750 * 100cqw);
  }
}

.cv-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(630 / 750 * 100cqw);
  min-height: calc(116 / 750 * 100cqw);
  font-size: calc(32 / 750 * 100cqw);
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(152deg, rgb(50, 120, 255) 0%, rgb(144, 170, 228) 100%);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.4s cubic-bezier(0.33, 1, 0.68, 1), filter 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.cv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}
.cv-btn__text {
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .cv-btn:hover {
    filter: brightness(1.05) saturate(1.08);
  }
  .cv-btn:hover::before {
    left: 125%;
  }
}

.sec01 {
  background: linear-gradient(to bottom, #fff 0, #fff calc(280 / 750 * 100cqw), #e0eaff calc(280 / 750 * 100cqw), #e0eaff 100%);
  padding-bottom: calc(95 / 750 * 100cqw);
}

.sec01__intro {
  display: flex;
  flex-direction: column;
}

.sec01__intro-tags {
  display: flex;
  flex-direction: column;
  gap: calc(8 / 750 * 100cqw);
  position: relative;
  z-index: 2;
}
.sec01__intro-tags.--left {
  width: calc(320 / 750 * 100cqw);
}
.sec01__intro-tags.--right {
  width: calc(377 / 750 * 100cqw);
  margin-left: auto;
  margin-top: calc(-28 / 750 * 100cqw);
}

.sec01__intro-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(56 / 750 * 100cqw);
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.sec01__intro-image {
  margin-top: calc(-7 / 750 * 100cqw);
  padding: 0 calc(60 / 750 * 100cqw);
}
.sec01__intro-image img {
  width: 100%;
}

.sec01__copy {
  margin-top: calc(107 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(36 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #333;
}

.sec01__feature {
  margin-top: calc(71 / 750 * 100cqw);
  padding: 0 calc(60 / 750 * 100cqw);
  display: grid;
  grid-template-areas: "stack";
}
.sec01__feature > * {
  grid-area: stack;
}

.sec01__feature-image img {
  width: 100%;
}

/*.sec01__feature-overlay {
  justify-self: center;
  align-self: start;
  margin-top: calc(45 / 750 * 100cqw);
  width: calc(550 / 750 * 100cqw);
  aspect-ratio: 550/620;
  padding: calc(40 / 750 * 100cqw) calc(60 / 750 * 100cqw);
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
}*/

.sec01__feature-overlay {
   justify-self: center;
  align-self: start;
  margin-top: calc(45 / 750 * 100cqw);
  width: calc(550 / 750 * 100cqw);
  min-height: calc(620 / 750 * 100cqw);
  padding: calc(90 / 750 * 100cqw) calc(60 / 750 * 100cqw) calc(10 / 750 * 100cqw);
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec01__logo {
  width: calc(167 / 750 * 100cqw);
  margin: calc(47 / 750 * 100cqw) auto 0;
}
.sec01__logo img {
  width: 100%;
}

.sec01__feature-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(30 / 750 * 100cqw);
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.sec01__feature-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(28 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
  color: #333;
}
.sec01__feature-item:not(:last-child)::after {
  content: "";
  display: block;
  width: calc(20 / 750 * 100cqw);
  height: calc(2 / 750 * 100cqw);
  background: #333;
  margin: calc(30 / 750 * 100cqw) auto 0;
}

.sec01__summary {
  margin-top: calc(60 / 750 * 100cqw);
  padding: 0 calc(60 / 750 * 100cqw);
  text-align: center;
  color: #333;
}

.sec01__summary-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(36 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.sec01__summary-text {
  margin-top: calc(30 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(28 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.sec02 {
  background: #fff;
  padding: calc(49 / 750 * 100cqw) 0 calc(78 / 750 * 100cqw);
}

.sec02__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(31 / 750 * 100cqw);
}

.sec02__label {
  display: flex;
  align-items: center;
  gap: calc(31 / 750 * 100cqw);
  width: 100%;
  padding: 0 calc(141 / 750 * 100cqw);
}
.sec02__label-line {
  flex: 1;
  height: calc(2 / 750 * 100cqw);
  background: #788da1;
}
.sec02__label-text {
  flex-shrink: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
  color: #788da1;
}

.sec02__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #333;
}

.sec02__items {
  margin-top: calc(74 / 750 * 100cqw);
  display: flex;
  flex-direction: column;
  gap: calc(96 / 750 * 100cqw);
}

.sec02__item {
  display: flex;
  flex-direction: column;
}

.sec02__item-visual {
  position: relative;
}
.sec02__item-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 750/469;
  object-fit: cover;
}
.sec02__item-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(49deg, rgba(54, 54, 54, 0.35) 0%, rgba(137, 137, 137, 0.15) 100%);
  pointer-events: none;
}

.sec02__item-label {
  position: absolute;
  z-index: 1;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(200 / 750 * 100cqw);
  line-height: 1.1;
  color: #fff;
  margin: 0;
  opacity: 0.6;
}

.sec02__item.--01 .sec02__item-label {
  top: calc(-29 / 750 * 100cqw);
  right: calc(-25 / 750 * 100cqw);
}
.sec02__item.--01 .sec02__item-card {
  align-self: flex-start;
}
.sec02__item.--02 .sec02__item-label {
  top: calc(211 / 750 * 100cqw);
  left: calc(-6 / 750 * 100cqw);
}
.sec02__item.--02 .sec02__item-card {
  align-self: flex-end;
}
.sec02__item.--03 .sec02__item-label {
  top: calc(-27 / 750 * 100cqw);
  right: calc(-7 / 750 * 100cqw);
}
.sec02__item.--03 .sec02__item-card {
  align-self: flex-start;
}

.sec02__item-card {
  width: calc(690 / 750 * 100cqw);
  margin-top: calc(-61 / 750 * 100cqw);
  padding: calc(60 / 750 * 100cqw) calc(100 / 750 * 100cqw) calc(60 / 750 * 100cqw) calc(60 / 750 * 100cqw);
  background: linear-gradient(294deg, #fff 13.91%, #b5c3d3 229.36%);
  box-shadow: 0 calc(10 / 750 * 100cqw) calc(20 / 750 * 100cqw) 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: calc(40 / 750 * 100cqw);
  z-index: 2;
}

.sec02__item-title {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(36 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.083em;
  background: linear-gradient(140deg, rgb(50, 120, 255) 98%, rgb(144, 170, 228) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sec02__item-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(26 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
}

.sec03 {
  background: #fff;
}

.sec03__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(107 / 750 * 100cqw) calc(80 / 750 * 100cqw) calc(54 / 750 * 100cqw);
  color: #fff;
  overflow: hidden;
}

.sec03__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(445 / 750 * 100cqw);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.sec03__header-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: calc(31 / 750 * 100cqw);
  width: 100%;
}
.sec03__header-label-line {
  flex: 1;
  height: calc(2 / 750 * 100cqw);
  background: #fff;
}
.sec03__header-label-text {
  flex-shrink: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
  color: #fff;
}

.sec03__header-title {
  position: relative;
  z-index: 1;
  margin-top: calc(52 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

.sec03__header-body {
  position: relative;
  z-index: 1;
  margin-top: calc(161 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(26 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
  color: #333;
}

.sec03__items {
  background: #f2f4f7;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(80 / 750 * 100cqw);
}

.sec03__item {
  position: relative;
  padding: 0 calc(9 / 750 * 100cqw) calc(0 / 750 * 100cqw) calc(21 / 750 * 100cqw);
}

.sec03__item-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.sec03__item-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.sec03__item-head {
  display: flex;
  align-items: baseline;
  gap: calc(8 / 750 * 100cqw);
  margin-bottom: calc(-30 / 750 * 100cqw);
}

.sec03__item-number {
  font-family: "DIN Alternate", "Inter", sans-serif;
  font-weight: 700;
  font-size: calc(120 / 750 * 100cqw);
  line-height: 1.58;
  letter-spacing: 0;
  color: #90aae4;
  margin: 0;
}

.sec03__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(48 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #90aae4;
  margin-bottom: calc(8 / 750 * 100cqw);
}
.sec03__item-title .--has-shadow {
  -webkit-text-stroke: calc(4 / 750 * 100cqw) #f2f4f7;
  paint-order: stroke fill;
}

.sec03__item-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(26 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #555;
  text-align: justify;
  width: calc(640 / 750 * 100cqw);
  margin: 0 calc(45 / 750 * 100cqw) 0 auto;
  padding: calc(30 / 750 * 100cqw) calc(20 / 750 * 100cqw) calc(94 / 750 * 100cqw) calc(20 / 750 * 100cqw);
  position: relative;
}
.sec03__item-body::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background: #000;
}

.sec03__item.--01 {
  min-height: calc(695 / 750 * 100cqw);
}
.sec03__item.--01 .sec03__item-bg {
  top: calc(98 / 750 * 100cqw);
  right: 0;
  width: calc(750 / 750 * 100cqw);
}
.sec03__item.--01 .sec03__item-content {
  margin-right: auto;
}
.sec03__item.--01 .sec03__item-body {
  padding-right: calc(300 / 750 * 100cqw);
  border-left: 0.5px solid #000;
}
.sec03__item.--01 .sec03__item-body::before {
  left: 0;
  width: calc(297 / 750 * 100cqw);
}
.sec03__item.--02 {
  min-height: calc(540 / 750 * 100cqw);
}
.sec03__item.--02 .sec03__item-bg {
  top: calc(-140 / 750 * 100cqw);
  left: 0;
  width: calc(750 / 750 * 100cqw);
}
.sec03__item.--02 .sec03__item-content {
  margin-left: auto;
}
.sec03__item.--02 .sec03__item-head {
  flex-direction: row-reverse;
}
.sec03__item.--02 .sec03__item-body {
  padding-left: calc(280 / 750 * 100cqw);
  padding-bottom: calc(70 / 750 * 100cqw);
  border-right: 0.5px solid #000;
}
.sec03__item.--02 .sec03__item-body::before {
  right: 0;
  width: calc(563 / 750 * 100cqw);
}
.sec03__item.--03 {
  min-height: calc(656 / 750 * 100cqw);
}
.sec03__item.--03 .sec03__item-bg {
  top: calc(0 / 750 * 100cqw);
  right: 0;
  width: calc(750 / 750 * 100cqw);
}
.sec03__item.--03 .sec03__item-content {
  margin-right: auto;
}
.sec03__item.--03 .sec03__item-body {
  padding-right: calc(300 / 750 * 100cqw);
  padding-bottom: calc(30 / 750 * 100cqw);
  border-left: 0.5px solid #000;
}
.sec03__item.--03 .sec03__item-body::before {
  left: 0;
  width: calc(420 / 750 * 100cqw);
}
.sec03__item.--04 .sec03__item-bg {
  top: calc(-200 / 750 * 100cqw);
  left: 0;
  width: calc(750 / 750 * 100cqw);
}
.sec03__item.--04 .sec03__item-content {
  margin-left: auto;
}
.sec03__item.--04 .sec03__item-head {
  flex-direction: row-reverse;
}
.sec03__item.--04 .sec03__item-body {
  padding-left: calc(290 / 750 * 100cqw);
  padding-bottom: calc(20 / 750 * 100cqw);
  border-right: 0.5px solid #000;
}
.sec03__item.--04 .sec03__item-body::before {
  right: 0;
  width: calc(530 / 750 * 100cqw);
}

.sec03__summary {
  background: #fff;
  padding: calc(81 / 750 * 100cqw) calc(60 / 750 * 100cqw) calc(80 / 750 * 100cqw);
  text-align: center;
  color: #333;
}

.sec03__summary-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(36 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.sec03__summary-sub {
  margin-top: calc(60 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(28 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.sec04 {
  background: #fff;
  overflow: hidden;
  padding-bottom: calc(47 / 750 * 100cqw);
}

.sec04__header {
  position: relative;
  padding: calc(81 / 750 * 100cqw) 0 calc(88 / 750 * 100cqw);
  overflow: hidden;
}

.sec04__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(401 / 750 * 100cqw);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.sec04__header-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: calc(26 / 750 * 100cqw);
  padding: 0 calc(109 / 750 * 100cqw);
}
.sec04__header-label-line {
  flex: 1;
  height: calc(2 / 750 * 100cqw);
  background: #fff;
}
.sec04__header-label-text {
  flex-shrink: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
  color: #fff;
}

.sec04__header-title {
  position: relative;
  z-index: 1;
  margin-top: calc(44 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

.sec04__header-body {
  position: relative;
  z-index: 1;
  margin-top: calc(148 / 750 * 100cqw);
  padding: 0 calc(110 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(26 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
  color: #333;
}

.sec04__items {
  display: flex;
  flex-direction: column;
  gap: calc(70 / 750 * 100cqw);
}

.sec04__item {
  position: relative;
}

.sec04__item-bg {
  position: absolute;
  background: #e0eaff;
  z-index: 0;
}

.sec04__item-img {
  position: absolute;
  top: 0;
  width: calc(426 / 750 * 100cqw);
  height: calc(280 / 750 * 100cqw);
  object-fit: cover;
  z-index: 1;
}

.sec04__item-label {
  position: absolute;
  margin: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(120 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0;
  color: #e0eaff;
  z-index: 0;
}

.sec04__item-title {
  position: absolute;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(28 / 750 * 100cqw);
  line-height: 1.45;
  letter-spacing: 0.1em;
  padding: calc(6 / 750 * 100cqw) calc(25 / 750 * 100cqw);
  z-index: 3;
}

.sec04__item-body {
  position: absolute;
  width: calc(556 / 750 * 100cqw);
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(28 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #333;
  text-align: justify;
  z-index: 2;
}
.sec04__item-body strong {
  font-weight: 700;
}

.sec04__item.--01 {
  min-height: calc(521 / 750 * 100cqw);
}
.sec04__item.--01 .sec04__item-bg {
  top: calc(165 / 750 * 100cqw);
  left: calc(101 / 750 * 100cqw);
  width: calc(680 / 750 * 100cqw);
  height: calc(356 / 750 * 100cqw);
}
.sec04__item.--01 .sec04__item-img {
  left: 0;
}
.sec04__item.--01 .sec04__item-label {
  top: calc(54 / 750 * 100cqw);
  right: 0;
}
.sec04__item.--01 .sec04__item-title {
  top: calc(166 / 750 * 100cqw);
  left: calc(205 / 750 * 100cqw);
  width: calc(545 / 750 * 100cqw);
}
.sec04__item.--01 .sec04__item-body {
  top: calc(300 / 750 * 100cqw);
  left: calc(169 / 750 * 100cqw);
}
.sec04__item.--02 {
  min-height: calc(466 / 750 * 100cqw);
}
.sec04__item.--02 .sec04__item-bg {
  top: calc(166 / 750 * 100cqw);
  left: 0;
  width: calc(680 / 750 * 100cqw);
  height: calc(300 / 750 * 100cqw);
}
.sec04__item.--02 .sec04__item-img {
  right: 0;
}
.sec04__item.--02 .sec04__item-label {
  top: calc(49 / 750 * 100cqw);
  left: 0;
}
.sec04__item.--02 .sec04__item-title {
  top: calc(167 / 750 * 100cqw);
  left: 0;
  width: calc(416 / 750 * 100cqw);
}
.sec04__item.--02 .sec04__item-body {
  top: calc(316 / 750 * 100cqw);
  left: calc(25 / 750 * 100cqw);
}
.sec04__item.--03 {
  min-height: calc(465 / 750 * 100cqw);
}
.sec04__item.--03 .sec04__item-bg {
  top: calc(165 / 750 * 100cqw);
  left: calc(101 / 750 * 100cqw);
  width: calc(680 / 750 * 100cqw);
  height: calc(300 / 750 * 100cqw);
}
.sec04__item.--03 .sec04__item-img {
  left: 0;
}
.sec04__item.--03 .sec04__item-label {
  top: calc(48 / 750 * 100cqw);
  left: calc(413 / 750 * 100cqw);
}
.sec04__item.--03 .sec04__item-title {
  top: calc(166 / 750 * 100cqw);
  left: calc(409 / 750 * 100cqw);
  width: calc(341 / 750 * 100cqw);
  padding-left: calc(42 / 750 * 100cqw);
}
.sec04__item.--03 .sec04__item-body {
  top: calc(315 / 750 * 100cqw);
  left: calc(169 / 750 * 100cqw);
}

.sec04__status {
  margin-top: calc(80 / 750 * 100cqw);
  padding: 0 calc(60 / 750 * 100cqw);
}

.sec04__note {
  margin-top: calc(15 / 750 * 100cqw);
  padding-right: calc(60 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(20 / 750 * 100cqw);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #333;
  text-align: right;
}

.sec05 {
  background: linear-gradient(0deg, #e0eaff 0%, #e0eaff 100%), #fff;
  padding-bottom: calc(60 / 750 * 100cqw);
}

.sec05__header {
  position: relative;
  padding: calc(100 / 750 * 100cqw) 0 calc(96 / 750 * 100cqw);
  min-height: calc(791 / 750 * 100cqw);
  overflow: hidden;
  color: #fff;
}

.sec05__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(791 / 750 * 100cqw);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.sec05__header-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: calc(32 / 750 * 100cqw);
  padding: 0 calc(135 / 750 * 100cqw);
}
.sec05__header-label-line {
  flex: 1;
  height: calc(2 / 750 * 100cqw);
  background: #fff;
}
.sec05__header-label-text {
  flex-shrink: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
  color: #fff;
}

.sec05__header-title {
  position: relative;
  z-index: 1;
  margin-top: calc(65 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

.sec05__flow {
  width: calc(630 / 750 * 100cqw);
  margin: calc(-406 / 750 * 100cqw) auto 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

.sec05__step {
  display: flex;
  align-items: stretch;
  position: relative;
}
.sec05__step.--01 {
  background: #f6f8fe;
  min-height: calc(245 / 750 * 100cqw);
  z-index: 4;
}
.sec05__step.--02 {
  min-height: calc(295 / 750 * 100cqw);
  z-index: 3;
}
.sec05__step.--03 {
  background: #f6f8fe;
  min-height: calc(295 / 750 * 100cqw);
  z-index: 2;
}
.sec05__step.--04 {
  min-height: calc(295 / 750 * 100cqw);
  z-index: 1;
}

.sec05__step-badge {
  flex-shrink: 0;
  width: calc(101 / 750 * 100cqw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.--01 .sec05__step-badge {
  background: #534afb;
}
.--02 .sec05__step-badge {
  background: #5b79ff;
}
.--03 .sec05__step-badge {
  background: #7994ff;
}
.--04 .sec05__step-badge {
  background: #83b2ff;
}

.sec05__step:not(:last-child) .sec05__step-badge {
  position: relative;
}
.sec05__step:not(:last-child) .sec05__step-badge::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(39 / 750 * 100cqw);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.sec05__step.--01 .sec05__step-badge::after {
  background: #534afb;
}

.sec05__step.--02 .sec05__step-badge::after {
  background: #5b79ff;
}

.sec05__step.--03 .sec05__step-badge::after {
  background: #7994ff;
}

.sec05__step-step,
.sec05__step-num {
  display: block;
  font-family: "DIN Alternate", "DIN 2014", sans-serif;
  font-weight: 700;
  font-size: calc(30 / 750 * 100cqw);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
}

.sec05__step-num {
  font-size: calc(48 / 750 * 100cqw);
}

.sec05__step-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(48 / 750 * 100cqw) calc(40 / 750 * 100cqw) calc(40 / 750 * 100cqw) calc(45 / 750 * 100cqw);
}

.sec05__step-title {
  margin: 0 0 calc(15 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(32 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #333;
}

.sec05__step-body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(26 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #333;
  text-align: justify;
}

.sec05__step-note {
  margin: calc(20 / 750 * 100cqw) -2em 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(20 / 750 * 100cqw);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #888;
}

.sec06 {
  background: #fff;
  overflow: hidden;
}

.sec06__header {
  position: relative;
  padding: calc(76 / 750 * 100cqw) 0 calc(121 / 750 * 100cqw);
  overflow: hidden;
  color: #fff;
}

.sec06__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.sec06__header-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: calc(32 / 750 * 100cqw);
  padding: 0 calc(131 / 750 * 100cqw);
}
.sec06__header-label-line {
  flex: 1;
  height: calc(2 / 750 * 100cqw);
  background: #fff;
}
.sec06__header-label-text {
  flex-shrink: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
  color: #fff;
}

.sec06__header-title {
  position: relative;
  z-index: 2;
  margin-top: calc(43 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
}

.sec06__main {
  background: #e0eaff;
  padding: calc(80 / 750 * 100cqw) calc(30 / 750 * 100cqw) calc(80 / 750 * 100cqw);
}

.sec06__cards {
  display: flex;
  flex-direction: column;
  gap: calc(50 / 750 * 100cqw);
}

.sec06__card {
  padding: calc(40 / 750 * 100cqw) calc(30 / 750 * 100cqw);
}
.sec06__card.--free, .sec06__card.--ticket {
  background: rgba(255, 255, 255, 0.8);
}
.sec06__card.--life {
  background: #000;
  color: #fff;
}

.sec06__card-limit {
  margin: 0 0 calc(40 / 750 * 100cqw);
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
  text-align: center;
  color: #000;
}

.sec06__card-tag {
  padding: calc(10 / 750 * 100cqw) 0;
  background: #000;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(32 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.16em;
}
.--life .sec06__card-tag {
  background: #fff;
  color: #000;
}

.sec06__card-pricegroup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: calc(15 / 750 * 100cqw);
  margin-top: calc(10 / 750 * 100cqw);
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.sec06__card-price {
  margin: 0;
  font-family: "DIN Alternate", "DIN 2014", sans-serif;
  font-weight: 700;
  font-size: calc(110 / 750 * 100cqw);
  line-height: 1.16;
  letter-spacing: 0.04em;
  color: #000;
  text-align: center;
}
.--life .sec06__card-price {
  color: #fff;
}
.sec06__card-price small {
  font-size: calc(40 / 750 * 100cqw);
}

.sec06__card-tax {
  margin-bottom: calc(20 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(20 / 750 * 100cqw);
  line-height: 1.2;
  color: #000;
  position: absolute;
  right: 0.25em;
  bottom: 3em;
}
.--life .sec06__card-tax {
  color: #fff;
}

.sec06__card-plan {
  margin: calc(20 / 750 * 100cqw) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: calc(22 / 750 * 100cqw);
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #333;
  text-align: center;
}
.--life .sec06__card-plan {
  color: #fff;
}

.sec06__card-desc {
  margin: calc(40 / 750 * 100cqw) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(26 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #333;
  text-align: center;
}
.--life .sec06__card-desc {
  color: #fff;
}

.sec06__card-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: calc(30 / 750 * 100cqw) 0 0;
  padding: calc(35 / 750 * 100cqw) 0;
  background: linear-gradient(152deg, rgb(50, 120, 255) 0%, rgb(144, 170, 228) 100%);
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(32 / 750 * 100cqw);
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-align: center;
}

.sec06__card-footer {
  margin: calc(48 / 750 * 100cqw) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(22 / 750 * 100cqw);
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #fff;
  text-align: center;
}

.store {
  background: #e0eaff;
  padding: calc(80 / 750 * 100cqw) calc(30 / 750 * 100cqw);
}

.store__header {
  margin-bottom: calc(48 / 750 * 100cqw);
}

.store__header-label {
  display: flex;
  align-items: center;
  gap: calc(26 / 750 * 100cqw);
  padding: 0 calc(80 / 750 * 100cqw);
  margin-bottom: calc(36 / 750 * 100cqw);
}
.store__header-label-line {
  flex: 1;
  height: calc(2 / 750 * 100cqw);
  background: #142850;
}
.store__header-label-text {
  flex-shrink: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
  color: #142850;
}

.store__header-title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  color: #142850;
}

.store__regions {
  display: flex;
  flex-direction: column;
  gap: calc(24 / 750 * 100cqw);
}

.store__region {
  border-radius: calc(8 / 750 * 100cqw);
  overflow: hidden;
  background: #fff;
}

.store__region-summary {
  list-style: none;
  cursor: pointer;
  padding: calc(28 / 750 * 100cqw) calc(120 / 750 * 100cqw) calc(28 / 750 * 100cqw) calc(36 / 750 * 100cqw);
  background: #142850;
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(16 / 750 * 100cqw);
  position: relative;
}
.store__region-summary::-webkit-details-marker {
  display: none;
}
.store__region-summary::before {
  content: "";
  position: absolute;
  right: calc(30 / 750 * 100cqw);
  top: 50%;
  width: calc(60 / 750 * 100cqw);
  height: calc(60 / 750 * 100cqw);
  border-radius: 50%;
  background: linear-gradient(135deg, #00a1ef, #13c879);
  transform: translateY(-50%);
}
.store__region-summary::after {
  content: "";
  position: absolute;
  right: calc(45 / 750 * 100cqw);
  top: 50%;
  width: calc(30 / 750 * 100cqw);
  height: calc(30 / 750 * 100cqw);
  transform: translateY(-50%);
  background: linear-gradient(#fff, #fff) center/100% calc(2 / 750 * 100cqw) no-repeat, linear-gradient(#fff, #fff) center/calc(2 / 750 * 100cqw) 100% no-repeat;
}

.store__region[open] > .store__region-summary::after {
  background: linear-gradient(#fff, #fff) center/100% calc(2 / 750 * 100cqw) no-repeat;
}

.store__region-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(32 / 750 * 100cqw);
  letter-spacing: 0.08em;
}

.store__region-count {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(24 / 750 * 100cqw);
  opacity: 0.8;
}

.store__region-body {
  padding: calc(20 / 750 * 100cqw);
  display: flex;
  flex-direction: column;
  gap: calc(16 / 750 * 100cqw);
}

.store__pref {
  border-radius: calc(6 / 750 * 100cqw);
  overflow: hidden;
  background: #f1f8f9;
}

.store__pref-summary {
  list-style: none;
  cursor: pointer;
  padding: calc(20 / 750 * 100cqw) calc(80 / 750 * 100cqw) calc(20 / 750 * 100cqw) calc(24 / 750 * 100cqw);
  background: linear-gradient(to right, #00a1ef, #13c879);
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(12 / 750 * 100cqw);
  position: relative;
}
.store__pref-summary::-webkit-details-marker {
  display: none;
}
.store__pref-summary::after {
  content: "";
  position: absolute;
  right: calc(30 / 750 * 100cqw);
  top: 50%;
  width: calc(20 / 750 * 100cqw);
  height: calc(20 / 750 * 100cqw);
  border-right: calc(3 / 750 * 100cqw) solid #fff;
  border-bottom: calc(3 / 750 * 100cqw) solid #fff;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.store__pref[open] > .store__pref-summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.store__pref-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(28 / 750 * 100cqw);
  letter-spacing: 0.08em;
}

.store__pref-count {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(22 / 750 * 100cqw);
  opacity: 0.9;
}

.store__wards {
  padding: calc(16 / 750 * 100cqw);
  display: flex;
  flex-direction: column;
  gap: calc(12 / 750 * 100cqw);
}

.store__ward {
  border-radius: calc(6 / 750 * 100cqw);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}

.store__ward-summary {
  list-style: none;
  cursor: pointer;
  padding: calc(16 / 750 * 100cqw) calc(60 / 750 * 100cqw) calc(16 / 750 * 100cqw) calc(20 / 750 * 100cqw);
  background: linear-gradient(to right, #5eb3c4, #6cc4a3);
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(12 / 750 * 100cqw);
  position: relative;
}
.store__ward-summary::-webkit-details-marker {
  display: none;
}
.store__ward-summary::after {
  content: "";
  position: absolute;
  right: calc(24 / 750 * 100cqw);
  top: 50%;
  width: calc(16 / 750 * 100cqw);
  height: calc(16 / 750 * 100cqw);
  border-right: calc(3 / 750 * 100cqw) solid #fff;
  border-bottom: calc(3 / 750 * 100cqw) solid #fff;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.store__ward[open] > .store__ward-summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.store__ward-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(24 / 750 * 100cqw);
  letter-spacing: 0.06em;
}

.store__ward-count {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(20 / 750 * 100cqw);
  opacity: 0.9;
}

.store__ward .store__shops {
  padding: calc(12 / 750 * 100cqw);
  gap: calc(12 / 750 * 100cqw);
}

.store__shops {
  list-style: none;
  margin: 0;
  padding: calc(16 / 750 * 100cqw);
  display: flex;
  flex-direction: column;
  gap: calc(16 / 750 * 100cqw);
}

.store__shop-item {
  list-style: none;
}

.store__shop {
  background: #fff;
  border-radius: calc(6 / 750 * 100cqw);
  overflow: hidden;
}

.store__shop-summary {
  list-style: none;
  cursor: pointer;
  padding: calc(28 / 750 * 100cqw) calc(100 / 750 * 100cqw) calc(28 / 750 * 100cqw) calc(28 / 750 * 100cqw);
  position: relative;
}
.store__shop-summary::-webkit-details-marker {
  display: none;
}
.store__shop-summary::before {
  content: "";
  position: absolute;
  right: calc(20 / 750 * 100cqw);
  top: 50%;
  width: calc(50 / 750 * 100cqw);
  height: calc(50 / 750 * 100cqw);
  border-radius: 50%;
  background: linear-gradient(135deg, #00a1ef, #13c879);
  transform: translateY(-50%);
}
.store__shop-summary::after {
  content: "";
  position: absolute;
  right: calc(36 / 750 * 100cqw);
  top: 50%;
  width: calc(18 / 750 * 100cqw);
  height: calc(18 / 750 * 100cqw);
  transform: translateY(-50%);
  background: linear-gradient(#fff, #fff) center/100% calc(2 / 750 * 100cqw) no-repeat, linear-gradient(#fff, #fff) center/calc(2 / 750 * 100cqw) 100% no-repeat;
}

.store__shop[open] > .store__shop-summary::after {
  background: linear-gradient(#fff, #fff) center/100% calc(2 / 750 * 100cqw) no-repeat;
}

.store__shop-name {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(28 / 750 * 100cqw);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #142850;
}

.store__shop-info {
  margin: 0;
  padding: calc(8 / 750 * 100cqw) calc(28 / 750 * 100cqw) calc(28 / 750 * 100cqw);
  display: grid;
  grid-template-columns: calc(140 / 750 * 100cqw) 1fr;
  gap: calc(8 / 750 * 100cqw) calc(16 / 750 * 100cqw);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(24 / 750 * 100cqw);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #333;
}
.store__shop-info dt {
  margin: 0;
  font-weight: 500;
  color: #142850;
}
.store__shop-info dd {
  margin: 0;
}

.sec07 {
  position: relative;
  padding: calc(225 / 750 * 100cqw) 0 calc(190 / 750 * 100cqw);
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.sec07__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.sec07__content {
  position: relative;
  z-index: 2;
}

.sec07__label {
  margin: 0;
  font-family: "NATS", sans-serif;
  font-weight: 400;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.3;
  letter-spacing: 0.3em;
}

.sec07__heading {
  margin: calc(55 / 750 * 100cqw) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: calc(40 / 750 * 100cqw);
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.sec07__logo {
  margin: calc(181 / 750 * 100cqw) auto 0;
  width: calc(193 / 750 * 100cqw);
}
.sec07__logo img {
  display: block;
  width: 100%;
  filter: brightness(0) invert(1);
}
/*# sourceMappingURL=lp.css.map */
