@charset "UTF-8";
@keyframes star {
  0% {
    scale: var(--scaleStart);
  }
  100% {
    scale: var(--scaleEnd);
  }
}
.l-lp {
  font-family: "Noto Sans JP", sans-serif;
  color: #2F3965;
}

.mv {
  text-align: center;
  background-color: #224e86;
}

.mv img {
  width: 100%;
}

@media (min-width: 1001px) {
  .mv {
    height: 480px;
  }
  .mv img {
    object-fit: cover;
    height: 100%;
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .mv {
    height: 48vw;
  }
  .mv img {
    object-fit: cover;
    height: 100%;
    width: auto;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9990;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
@media screen and (max-width: 767px) {
  .modaal-inner-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 0;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 934px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  -ms-transform: scale(0.25);
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 950px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 525px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before,
.modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 934px;
    max-height: 525px;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-inner-wrapper {
  cursor: pointer;
}

.modaal-close {
  top: calc(50dvh - (100vw - 40px) * 525 / 934 / 2 - 50px);
  right: 0;
}
@media screen and (min-width: 768px) {
  .modaal-close {
    top: calc(50dvh - min(100vw - 50px, 934px) * 525 / 934 / 2 - 50px);
    right: max(0px, 50vw - 25px - 467px);
  }
}
.modaal-close::before, .modaal-close::after {
  width: 1.5px;
  border-radius: 0;
}

.modaal-video-wrap {
  max-width: 934px;
  margin-inline: auto;
}

.modaal-video-container {
  margin: 0;
}

/* base */
:root {
  --pageTextBorderYellow: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 245, 3, 1) 61%, rgba(255, 245, 3, 1) 100%);
  --pageTextBorderOrange: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 241, 199, 1) 61%, rgba(255, 241, 199, 1) 100%);
  --pageTextYellow: #fff503;
  --pageBlueLight: #e8fcff;
  --pageBlueDark: #005bac;
  --pageGreenLight: #eaffe6;
  --pageGreenDark: #00a05c;
  --pagePingLight: #fff3f2;
  --pagePingDark: #fd596d;
  --pageOrangeLight: #fff1c7;
  --pageOrangeDark: #ff8900;
  --pageHoverOpacity: 0.8;
}

body.is-fixed {
  overflow: hidden;
  height: 100vh;
}

a {
  transition: opacity 0.3s;
}

button {
  font-family: "Noto Sans JP", sans-serif;
}

button, label {
  cursor: pointer;
}

sup {
  font-weight: normal;
  vertical-align: super;
}

#lp .l-footer-bottom {
  padding-bottom: 28.2666666667vw;
}
@media screen and (min-width: 768px) {
  #lp .l-footer-bottom {
    padding-bottom: calc(0.1336842105 * min(100vw, 950px));
  }
}

#lp .gotop {
  bottom: 32vw;
}
@media screen and (min-width: 768px) {
  #lp .gotop {
    bottom: 140px;
  }
}

.l-header-lp {
  z-index: 2;
  position: relative;
  background: #fff;
}

.l-header-lp-inner {
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .u-d-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-d-tb {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.u-f-helvetica {
  font-family: "Helvetica", Arial, sans-serif;
}

.u-marker {
  background: linear-gradient(to bottom, transparent 0%, transparent 75%, #FFE783 75%, #FFE783 100%);
}

.l-lp {
  --primeColor: #FF0033;
  --baseColor: #2F3965;
}
.l-lp::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88vw;
  background: url("../images/bg_sakura_01.png") no-repeat center top/cover;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-lp::before {
    background: url("../images/bg_sakura_01_pc.png") repeat-x center top/1920px 506px;
  }
}

.c-icon--tel::before {
  background-image: url("../images/ico_sim_01.svg");
}
.c-icon--call::before {
  background-image: url("../images/ico_sim_02.svg");
}
.c-icon--pic::before {
  background-image: url("../images/ico_sim_03.svg");
}
.c-icon--trouble::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2038%2038%22%3E%20%3Cg%20transform%3D%22translate(-101%20-1)%22%3E%20%3Cpath%20d%3D%22M113.918%2C4.307%2C115.491%2C1.4a.761.761%2C0%2C0%2C1%2C1.424.464l-.43%2C3.278a1.317%2C1.317%2C0%2C0%2C0%2C1.872%2C1.364l2.975-1.423a.763.763%2C0%2C0%2C1%2C.88%2C1.215l-2.269%2C2.4a1.321%2C1.321%2C0%2C0%2C0%2C.715%2C2.207l3.242.6a.764.764%2C0%2C0%2C1%2C0%2C1.5l-3.242.6a1.322%2C1.322%2C0%2C0%2C0-.715%2C2.208l2.269%2C2.4a.763.763%2C0%2C0%2C1-.88%2C1.214l-2.975-1.423a1.317%2C1.317%2C0%2C0%2C0-1.872%2C1.364l.43%2C3.278a.761.761%2C0%2C0%2C1-1.424.464l-1.573-2.905a1.314%2C1.314%2C0%2C0%2C0-2.314%2C0l-1.573%2C2.905a.761.761%2C0%2C0%2C1-1.424-.464l.43-3.278a1.317%2C1.317%2C0%2C0%2C0-1.872-1.364L104.19%2C19.43a.763.763%2C0%2C0%2C1-.88-1.214l2.269-2.4a1.322%2C1.322%2C0%2C0%2C0-.715-2.208l-3.242-.6a.764.764%2C0%2C0%2C1%2C0-1.5l3.242-.6a1.321%2C1.321%2C0%2C0%2C0%2C.715-2.207L103.31%2C6.3a.763.763%2C0%2C0%2C1%2C.88-1.215l2.975%2C1.423a1.317%2C1.317%2C0%2C0%2C0%2C1.872-1.364l-.43-3.278a.761.761%2C0%2C0%2C1%2C1.424-.464L111.6%2C4.307A1.315%2C1.315%2C0%2C0%2C0%2C113.918%2C4.307Z%22%20fill%3D%22%23fef100%22%2F%3E%20%3Cg%3E%20%3Cellipse%20cx%3D%229.446%22%20cy%3D%229.473%22%20rx%3D%229.446%22%20ry%3D%229.473%22%20transform%3D%22translate(120.109%2020.054)%22%20fill%3D%22%23f03%22%2F%3E%20%3Crect%20width%3D%222.709%22%20height%3D%2210.229%22%20rx%3D%221.354%22%20transform%3D%22translate(128.255%2022.404)%22%20fill%3D%22%23fff%22%2F%3E%20%3Crect%20width%3D%222.709%22%20height%3D%222.717%22%20rx%3D%221.354%22%20transform%3D%22translate(128.255%2034.273)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--charge::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(-50%20-50)%22%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M67.073%2C59.233H52.786A1.785%2C1.785%2C0%2C0%2C0%2C51%2C61.017v26.2A1.785%2C1.785%2C0%2C0%2C0%2C52.784%2C89H67.073a1.786%2C1.786%2C0%2C0%2C0%2C1.787-1.784v-26.2a1.785%2C1.785%2C0%2C0%2C0-1.784-1.786h0%22%20fill%3D%22%2359c5b6%22%2F%3E%20%3Cpath%20d%3D%22M65.889%2C60.7H53.967a1.554%2C1.554%2C0%2C0%2C0-1.49%2C1.61V82.979a1.552%2C1.552%2C0%2C0%2C0%2C1.49%2C1.61H65.889a1.552%2C1.552%2C0%2C0%2C0%2C1.49-1.61V62.314a1.554%2C1.554%2C0%2C0%2C0-1.49-1.61%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20d%3D%22M57.549%2C86.047h4.763a.6.6%2C0%2C0%2C1%2C0%2C1.191H57.549a.6.6%2C0%2C0%2C1%2C0-1.191%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M89%2C62.509A11.509%2C11.509%2C0%2C1%2C1%2C77.49%2C51%2C11.509%2C11.509%2C0%2C0%2C1%2C89%2C62.509%22%20fill%3D%22%23fff000%22%2F%3E%20%3Cpath%20d%3D%22M86.092%2C62.509a8.6%2C8.6%2C0%2C1%2C1-8.6-8.6%2C8.6%2C8.6%2C0%2C0%2C1%2C8.6%2C8.6Z%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.248%22%2F%3E%20%3Cpath%20d%3D%22M76.567%2C64.707l0-.7-1.888-.011.009-1.543%2C1.019.006L74.191%2C58.37l2.135.012%2C1.217%2C4.044L78.875%2C58.4l2.163.013-1.663%2C4.068%2C1.019.006-.008%2C1.543L78.5%2C64.016l0%2C.7%2C1.887.01-.008%2C1.543-1.884-.011L78.48%2C67.9l-1.928-.011.009-1.639-1.887-.011.009-1.543Z%22%20fill%3D%22%23ff820c%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Crect%20transform%3D%22translate(50%2050)%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--location::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2033.946%2036.326%22%3E%20%3Cg%20transform%3D%22translate(-53.027%20-102)%22%3E%20%3Cpath%20d%3D%22M78.782%2C130.712H61.218a.591.591%2C0%2C0%2C0-.384.14l-7.6%2C6.426a.594.594%2C0%2C0%2C0%2C.384%2C1.048H86.377a.594.594%2C0%2C0%2C0%2C.384-1.048l-7.6-6.426A.591.591%2C0%2C0%2C0%2C78.782%2C130.712Z%22%20fill%3D%22%23fef100%22%2F%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M70%2C102a10.886%2C10.886%2C0%2C0%2C0-11.055%2C12.08c.439%2C5.749%2C7.885%2C15.927%2C10.3%2C19.1a.945.945%2C0%2C0%2C0%2C1.5%2C0c2.418-3.168%2C9.864-13.346%2C10.3-19.1A10.886%2C10.886%2C0%2C0%2C0%2C70%2C102Z%22%20fill%3D%22%23ff820c%22%2F%3E%20%3Ccircle%20cx%3D%225.416%22%20cy%3D%225.416%22%20r%3D%225.416%22%20transform%3D%22translate(64.584%20106.845)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--talk::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(-50%20-150)%22%3E%20%3Crect%20transform%3D%22translate(50%20150)%22%20fill%3D%22none%22%2F%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M87.88%2C163.505%2C70.591%2C152a1.126%2C1.126%2C0%2C0%2C0-1.181%2C0l-17.289%2C11.5a.522.522%2C0%2C0%2C0-.055.9%2C1.044%2C1.044%2C0%2C0%2C0%2C.646.206H56.1c.483%2C0%2C.874.284.874.635h0v12.319c0%2C.35.392.635.875.635h24.3c.483%2C0%2C.875-.285.875-.635h0V165.236c0-.351.391-.635.874-.635h3.389c.483%2C0%2C.875-.284.875-.634a.574.574%2C0%2C0%2C0-.284-.469%22%20fill%3D%22%2359c5b6%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Crect%20width%3D%225.484%22%20height%3D%225.484%22%20rx%3D%221.093%22%20transform%3D%22translate(61.064%20164.308)%22%20fill%3D%22%23fff%22%2F%3E%20%3Crect%20width%3D%225.484%22%20height%3D%225.484%22%20rx%3D%221.093%22%20transform%3D%22translate(67.463%20164.308)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M62.536%2C171.368a4.234%2C4.234%2C0%2C0%2C1-8.461.355c-.005-.118-.005-.237%2C0-.355a4.234%2C4.234%2C0%2C0%2C1%2C8.461-.355c.005.118.005.237%2C0%2C.355%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M64.773%2C183.848c0-3.3-3.168-5.835-6.469-5.835s-6.467%2C2.536-6.467%2C5.835v2.941a1.374%2C1.374%2C0%2C0%2C0%2C1.374%2C1.374H63.4a1.374%2C1.374%2C0%2C0%2C0%2C1.374-1.374Z%22%20fill%3D%22%23ff820c%22%2F%3E%20%3Cpath%20d%3D%22M58.467%2C179.4h-.323a1.161%2C1.161%2C0%2C0%2C1-1.158-1.158v-1.381a1.163%2C1.163%2C0%2C0%2C1%2C1.158-1.158h.323a1.162%2C1.162%2C0%2C0%2C1%2C1.158%2C1.158v1.38a1.164%2C1.164%2C0%2C0%2C1-1.158%2C1.159%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M62.237%2C172.792a3.947%2C3.947%2C0%2C1%2C1-3.932-4.293%2C4.124%2C4.124%2C0%2C0%2C1%2C3.932%2C4.293%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M55.236%2C173.235c.12.639-.1%2C1.218-.5%2C1.294s-.818-.383-.939-1.022.1-1.218.5-1.293.819.383.939%2C1.021%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M61.275%2C173.235c-.12.639.1%2C1.218.5%2C1.294s.818-.383.939-1.022-.1-1.218-.5-1.293-.818.383-.939%2C1.021%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M59.417%2C167.816c.974.012%2C2.749%2C2.2%2C2.848%2C4.414h-.021c-.942.108-3.158-2.4-2.826-4.416%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M60.044%2C167.771H60c-2.97%2C0-5.4%2C1.954-5.627%2C4.434h.049c2.97%2C0%2C5.4-1.954%2C5.626-4.434%22%20fill%3D%22%23775446%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M77.637%2C173.436c0%2C3.14-.779%2C5.686%2C4.3%2C5.686%2C4.666%2C0%2C4.3-2.546%2C4.3-5.686s-1.926-5.685-4.3-5.685-4.306%2C2.545-4.306%2C5.685%22%20fill%3D%22%23513329%22%2F%3E%20%3Cpath%20d%3D%22M75.722%2C183.992c0-3.174%2C3.047-5.8%2C6.221-5.8s6.22%2C2.622%2C6.22%2C5.8v2.828a1.322%2C1.322%2C0%2C0%2C1-1.322%2C1.322h-9.8a1.322%2C1.322%2C0%2C0%2C1-1.322-1.322Z%22%20fill%3D%22%232f3965%22%2F%3E%20%3Cpath%20d%3D%22M81.7%2C179.109h.483a1.031%2C1.031%2C0%2C0%2C0%2C1.029-1.028v-.894a1.032%2C1.032%2C0%2C0%2C0-1.029-1.029H81.7a1.033%2C1.033%2C0%2C0%2C0-1.029%2C1.029v.894a1.032%2C1.032%2C0%2C0%2C0%2C1.029%2C1.028%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M78.161%2C173.356a3.8%2C3.8%2C0%2C1%2C0%2C3.782-4.128%2C3.966%2C3.966%2C0%2C0%2C0-3.782%2C4.128%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M84.894%2C173.782c-.115.615.1%2C1.171.484%2C1.244s.788-.368.9-.983-.1-1.172-.484-1.244-.787.368-.9.983%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M79.086%2C173.782c.116.615-.1%2C1.171-.483%2C1.244s-.788-.368-.9-.983.1-1.172.484-1.244.788.368.9.983%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M80.873%2C168.126c-.936.012-2.642%2C2.119-2.739%2C4.246h.021c.906.105%2C3.037-2.31%2C2.718-4.248%22%20fill%3D%22%23513329%22%2F%3E%20%3Cpath%20d%3D%22M80.27%2C168.525h.048c2.855%2C0%2C5.191%2C1.88%2C5.409%2C4.266H85.68c-2.855%2C0-5.191-1.88-5.41-4.266%22%20fill%3D%22%23513329%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M73.548%2C174.783a3.345%2C3.345%2C0%2C0%2C1-6.684.288q-.006-.144%2C0-.288a3.345%2C3.345%2C0%2C1%2C1%2C6.684-.288%2C2.764%2C2.764%2C0%2C0%2C1%2C0%2C.288%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M75.316%2C184.644a5.111%2C5.111%2C0%2C0%2C0-10.221%2C0v2.322a1.085%2C1.085%2C0%2C0%2C0%2C1.085%2C1.086h8.048a1.086%2C1.086%2C0%2C0%2C0%2C1.086-1.086Z%22%20fill%3D%22%2300b6a6%22%2F%3E%20%3Cpath%20d%3D%22M70.206%2C180.633h0a1.046%2C1.046%2C0%2C0%2C1-1.043-1.043v-.337a1.043%2C1.043%2C0%2C0%2C1%2C2.087%2C0v.337a1.046%2C1.046%2C0%2C0%2C1-1.043%2C1.043%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M73.313%2C175.908a3.118%2C3.118%2C0%2C1%2C1-3.106-3.389%2C3.257%2C3.257%2C0%2C0%2C1%2C3.106%2C3.389%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M67.782%2C176.258c.1.505-.084.963-.4%2C1.021s-.647-.3-.742-.807.083-.962.4-1.021.646.3.742.807%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M72.552%2C176.258c-.1.505.084.963.4%2C1.021s.647-.3.742-.807-.083-.962-.4-1.021-.646.3-.741.807%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M72.2%2C172.319a3.866%2C3.866%2C0%2C0%2C0-3.984%2C0c-.966.93-1.511%2C2.682-1.218%2C3.047.2.254.9%2C0%2C1.109-.221a4.937%2C4.937%2C0%2C0%2C0%2C.5-1.606s-.037%2C1.6.239%2C1.679a14.845%2C14.845%2C0%2C0%2C0%2C2.716%2C0c.276-.075.239-1.679.239-1.679a4.937%2C4.937%2C0%2C0%2C0%2C.5%2C1.606c.209.217.907.473%2C1.11.221.292-.365-.253-2.117-1.219-3.047%22%20fill%3D%22%23775446%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--when::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(-50%20-250)%22%3E%20%3Cpath%20d%3D%22M85.146%2C264.186a5.194%2C5.194%2C0%2C0%2C0%2C3.4-3.062.621.621%2C0%2C0%2C0-.42-.785l-1.559-.461.99-1.29a.621.621%2C0%2C0%2C0-.122-.882%2C5.192%2C5.192%2C0%2C0%2C0-4.551-.478%2C4.159%2C4.159%2C0%2C0%2C0-1.121.594.389.389%2C0%2C0%2C1-.6-.437%2C4.179%2C4.179%2C0%2C0%2C0%2C.219-1.25%2C5.2%2C5.2%2C0%2C0%2C0-1.861-4.181.622.622%2C0%2C0%2C0-.877.157l-.921%2C1.34-.92-1.34a.622.622%2C0%2C0%2C0-.877-.157%2C5.2%2C5.2%2C0%2C0%2C0-1.861%2C4.181%2C4.179%2C4.179%2C0%2C0%2C0%2C.219%2C1.25.389.389%2C0%2C0%2C1-.6.437%2C4.174%2C4.174%2C0%2C0%2C0-1.121-.594%2C5.191%2C5.191%2C0%2C0%2C0-4.551.478.621.621%2C0%2C0%2C0-.123.882l.99%2C1.29-1.559.461a.621.621%2C0%2C0%2C0-.419.785%2C5.189%2C5.189%2C0%2C0%2C0%2C3.4%2C3.062%2C4.169%2C4.169%2C0%2C0%2C0%2C1.256.179.389.389%2C0%2C0%2C1%2C.23.707%2C4.2%2C4.2%2C0%2C0%2C0-.912.883%2C5.194%2C5.194%2C0%2C0%2C0-.951%2C4.476.622.622%2C0%2C0%2C0%2C.8.389l1.532-.543-.043%2C1.625a.622.622%2C0%2C0%2C0%2C.618.642%2C5.194%2C5.194%2C0%2C0%2C0%2C3.963-2.289%2C4.168%2C4.168%2C0%2C0%2C0%2C.557-1.139.389.389%2C0%2C0%2C1%2C.744%2C0%2C4.2%2C4.2%2C0%2C0%2C0%2C.558%2C1.139%2C5.193%2C5.193%2C0%2C0%2C0%2C3.963%2C2.289.622.622%2C0%2C0%2C0%2C.617-.642l-.043-1.625%2C1.533.543a.622.622%2C0%2C0%2C0%2C.8-.389%2C5.192%2C5.192%2C0%2C0%2C0-.952-4.476%2C4.174%2C4.174%2C0%2C0%2C0-.911-.883.389.389%2C0%2C0%2C1%2C.23-.707A4.174%2C4.174%2C0%2C0%2C0%2C85.146%2C264.186Z%22%20fill%3D%22%23ff6a77%22%2F%3E%20%3Crect%20transform%3D%22translate(50%20250)%22%20fill%3D%22none%22%2F%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M68.769%2C262.573a6.451%2C6.451%2C0%2C0%2C1-12.891.555q-.012-.277%2C0-.555a6.451%2C6.451%2C0%2C0%2C1%2C12.891-.555q.012.277%2C0%2C.555%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M72.178%2C281.59c0-5.027-4.828-9.855-9.854-9.855s-9.857%2C4.828-9.857%2C9.855v4.479a2.092%2C2.092%2C0%2C0%2C0%2C2.092%2C2.094H70.081a2.094%2C2.094%2C0%2C0%2C0%2C2.094-2.094Z%22%20fill%3D%22%232f3965%22%2F%3E%20%3Cpath%20d%3D%22M62.324%2C273.856h0a2.019%2C2.019%2C0%2C0%2C1-2.013-2.012V271.2a2.013%2C2.013%2C0%2C1%2C1%2C4.026%2C0v.649a2.019%2C2.019%2C0%2C0%2C1-2.013%2C2.012%22%20fill%3D%22%232f3965%22%2F%3E%20%3Cpath%20d%3D%22M68.315%2C264.743a6.014%2C6.014%2C0%2C1%2C1-5.991-6.536%2C6.28%2C6.28%2C0%2C0%2C1%2C5.991%2C6.536%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M57.648%2C265.418c.183.975-.161%2C1.856-.769%2C1.97s-1.247-.583-1.43-1.556.16-1.856.768-1.971%2C1.247.583%2C1.431%2C1.557%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M66.848%2C265.418c-.183.975.161%2C1.856.769%2C1.97s1.247-.583%2C1.431-1.556-.161-1.856-.769-1.971-1.247.583-1.43%2C1.557%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M66.162%2C257.822c-1.477-1.422-6.2-1.422-7.684%2C0-1.862%2C1.793-2.914%2C5.171-2.35%2C5.876.391.489%2C1.736%2C0%2C2.14-.427.563-.587.972-3.1.972-3.1s-.072%2C3.1.461%2C3.238a28.461%2C28.461%2C0%2C0%2C0%2C5.238%2C0c.532-.143.46-3.238.46-3.238s.409%2C2.51.973%2C3.1c.4.42%2C1.747.912%2C2.139.427.565-.7-.488-4.082-2.35-5.876%22%20fill%3D%22%23775446%22%2F%3E%20%3Cg%3E%20%3Ccircle%20cx%3D%220.914%22%20cy%3D%220.914%22%20r%3D%220.914%22%20transform%3D%22translate(61.415%20274.669)%22%20fill%3D%22%23fef100%22%2F%3E%20%3Ccircle%20cx%3D%220.914%22%20cy%3D%220.914%22%20r%3D%220.914%22%20transform%3D%22translate(61.409%20278.99)%22%20fill%3D%22%23fef100%22%2F%3E%20%3Ccircle%20cx%3D%220.914%22%20cy%3D%220.914%22%20r%3D%220.914%22%20transform%3D%22translate(61.409%20283.311)%22%20fill%3D%22%23fef100%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--chance::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(-50%20-200)%22%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M87.956%2C203.508v22.079a1.667%2C1.667%2C0%2C0%2C1-.687%2C1.345L77.441%2C234.1a1.841%2C1.841%2C0%2C0%2C1-1.078.353V208.67l8.931-6.507A1.673%2C1.673%2C0%2C0%2C1%2C87.956%2C203.508Z%22%20fill%3D%22%2359c5b6%22%2F%3E%20%3Cpath%20d%3D%22M76.363%2C208.67v25.781a1.845%2C1.845%2C0%2C0%2C1-1.078-.353l-9.827-7.166a1.665%2C1.665%2C0%2C0%2C1-.687-1.345V203.508a1.673%2C1.673%2C0%2C0%2C1%2C2.662-1.345Z%22%20fill%3D%22%23fef100%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Crect%20transform%3D%22translate(50%20200)%22%20fill%3D%22none%22%2F%3E%20%3Cpath%20d%3D%22M56.434%2C222.457c-.876%2C1.092-2.029%2C1.621-2.576%2C1.18s-.277-1.678.6-2.77%2C2.031-1.621%2C2.577-1.18.277%2C1.679-.6%2C2.77%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M67.667%2C222.457c.876%2C1.092%2C2.029%2C1.621%2C2.575%2C1.18s.278-1.678-.6-2.77-2.03-1.621-2.576-1.18-.277%2C1.679.6%2C2.77%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M55.355%2C214.122c0%2C3.849-1.185%2C6.97%2C6.547%2C6.97%2C7.1%2C0%2C6.548-3.121%2C6.548-6.97a6.56%2C6.56%2C0%2C1%2C0-13.095%2C0%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M52.443%2C231.851c0-4.827%2C4.635-8.814%2C9.462-8.814s9.463%2C3.988%2C9.463%2C8.814v4.3a2.01%2C2.01%2C0%2C0%2C1-2.01%2C2.01H54.453a2.009%2C2.009%2C0%2C0%2C1-2.011-2.009h0Z%22%20fill%3D%22%23ff6a77%22%2F%3E%20%3Cpath%20d%3D%22M61.9%2C224.425h0a1.937%2C1.937%2C0%2C0%2C0%2C1.933-1.933v-.622a1.933%2C1.933%2C0%2C0%2C0-3.865-.078v.7a1.938%2C1.938%2C0%2C0%2C0%2C1.933%2C1.933%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M56.152%2C215.676A5.774%2C5.774%2C0%2C1%2C0%2C61.9%2C209.4a6.035%2C6.035%2C0%2C0%2C0-5.752%2C6.275%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M66.395%2C216.323c-.176.935.157%2C1.783.736%2C1.889s1.2-.559%2C1.373-1.5-.158-1.783-.736-1.889-1.2.56-1.373%2C1.495%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M57.561%2C216.323c.176.935-.157%2C1.783-.736%2C1.889s-1.2-.559-1.373-1.5.157-1.783.736-1.889%2C1.2.56%2C1.373%2C1.495%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M63.5%2C208.4c1.425.017%2C4.021%2C3.222%2C4.167%2C6.457h-.032c-1.378.157-4.62-3.513-4.135-6.461%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M64.414%2C208.329h-.072c-4.344%2C0-7.9%2C2.859-8.229%2C6.488h.072c4.344%2C0%2C7.9-2.858%2C8.229-6.488%22%20fill%3D%22%23775446%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--period::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(-50%20-400)%22%3E%20%3Crect%20transform%3D%22translate(50%20400)%22%20fill%3D%22none%22%2F%3E%20%3Cg%3E%20%3Cg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M87.76%2C408.612v14.15a1.659%2C1.659%2C0%2C0%2C1-1.657%2C1.666H64.629a1.662%2C1.662%2C0%2C0%2C1-1.668-1.666v-14.15Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20d%3D%22M87.76%2C406.236v2.376h-24.8v-2.376a1.661%2C1.661%2C0%2C0%2C1%2C1.668-1.656H86.1A1.658%2C1.658%2C0%2C0%2C1%2C87.76%2C406.236Z%22%20fill%3D%22%23bfbfbf%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M87.76%2C408.612v14.15a1.659%2C1.659%2C0%2C0%2C1-1.657%2C1.666H64.629a1.662%2C1.662%2C0%2C0%2C1-1.668-1.666V406.236a1.661%2C1.661%2C0%2C0%2C1%2C1.668-1.656H86.1a1.658%2C1.658%2C0%2C0%2C1%2C1.657%2C1.656Z%22%20fill%3D%22none%22%20stroke%3D%22%23bfbfbf%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.069%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Crect%20width%3D%222.644%22%20height%3D%226.011%22%20rx%3D%221.322%22%20transform%3D%22translate(67.966%20401.837)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23bfbfbf%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.131%22%2F%3E%20%3Crect%20width%3D%222.644%22%20height%3D%226.011%22%20rx%3D%221.322%22%20transform%3D%22translate(80.116%20401.837)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23bfbfbf%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.131%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cg%20transform%3D%22translate(-50%20-400)%22%3E%20%3Cpath%20d%3D%22M67.295%2C413.778a6.353%2C6.353%2C0%2C0%2C1-12.695.547c-.008-.182-.008-.364%2C0-.547a6.353%2C6.353%2C0%2C1%2C1%2C12.695-.546q.012.273%2C0%2C.546%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M70.652%2C432.506c0-4.95-4.754-9.705-9.705-9.705s-9.707%2C4.755-9.707%2C9.705v4.411A2.062%2C2.062%2C0%2C0%2C0%2C53.3%2C438.98H68.586a2.063%2C2.063%2C0%2C0%2C0%2C2.063-2.063Z%22%20fill%3D%22%2300b6a6%22%2F%3E%20%3Cpath%20d%3D%22M60.947%2C424.89h0a1.988%2C1.988%2C0%2C0%2C1-1.981-1.982v-.639a1.982%2C1.982%2C0%2C1%2C1%2C3.964%2C0v.639a1.989%2C1.989%2C0%2C0%2C1-1.982%2C1.982%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M66.848%2C415.916a5.922%2C5.922%2C0%2C1%2C1-5.9-6.437%2C6.185%2C6.185%2C0%2C0%2C1%2C5.9%2C6.437%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M56.343%2C416.581c.18.959-.158%2C1.827-.757%2C1.939s-1.228-.574-1.409-1.533.158-1.827.756-1.94%2C1.229.574%2C1.41%2C1.534%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M65.4%2C416.581c-.181.959.158%2C1.827.757%2C1.939s1.228-.574%2C1.409-1.533-.158-1.827-.757-1.94-1.228.574-1.408%2C1.534%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M64.727%2C409.1c-1.454-1.4-6.109-1.4-7.566%2C0-1.835%2C1.765-2.871%2C5.092-2.315%2C5.786.385.482%2C1.709%2C0%2C2.107-.42.555-.578.958-3.05.958-3.05s-.071%2C3.048.454%2C3.189a28.115%2C28.115%2C0%2C0%2C0%2C5.157%2C0c.525-.141.454-3.189.454-3.189s.4%2C2.472.958%2C3.05c.4.413%2C1.721.9%2C2.107.42.556-.694-.481-4.02-2.315-5.786%22%20fill%3D%22%23775446%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--merit::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(0%20-448.49)%22%3E%20%3Cg%3E%20%3Crect%20width%3D%2213.712%22%20height%3D%2217.028%22%20transform%3D%22translate(9.219%20465.035)%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Crect%20width%3D%229.504%22%20height%3D%2218.045%22%20rx%3D%221.118%22%20transform%3D%22translate(1.419%20464.576)%22%20fill%3D%22%2359c5b6%22%2F%3E%20%3Cpath%20d%3D%22M12.826%2C471.528h0a3.311%2C3.311%2C0%2C0%2C1%2C1.122-4.213A31.026%2C31.026%2C0%2C0%2C0%2C24.285%2C454.93a3.309%2C3.309%2C0%2C0%2C1%2C3.944-1.857h0a3.075%2C3.075%2C0%2C0%2C1%2C1.443%2C4.344%2C36.971%2C36.971%2C0%2C0%2C1-12.314%2C14.754A3.075%2C3.075%2C0%2C0%2C1%2C12.826%2C471.528Z%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Crect%20width%3D%225.529%22%20height%3D%2217.256%22%20rx%3D%222.765%22%20transform%3D%22translate(37.726%20462.895)%20rotate(90)%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Crect%20width%3D%225.529%22%20height%3D%2221.748%22%20rx%3D%222.765%22%20transform%3D%22translate(38.581%20467.345)%20rotate(90)%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Crect%20width%3D%225.529%22%20height%3D%2220.715%22%20rx%3D%222.765%22%20transform%3D%22translate(38.581%20472.115)%20rotate(90)%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Crect%20width%3D%225.529%22%20height%3D%2221.748%22%20rx%3D%222.765%22%20transform%3D%22translate(37.592%20476.612)%20rotate(90)%22%20fill%3D%22%23feeadd%22%2F%3E%20%3C%2Fg%3E%20%3Crect%20transform%3D%22translate(0%20448.49)%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--literacy::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(-50%20-498.49)%22%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M86.27%2C499.7h-16.2a2.023%2C2.023%2C0%2C0%2C0-2.026%2C2.023v29.71a2.025%2C2.025%2C0%2C0%2C0%2C2.023%2C2.026h16.2a2.024%2C2.024%2C0%2C0%2C0%2C2.026-2.024V501.723a2.025%2C2.025%2C0%2C0%2C0-2.023-2.026h0%22%20fill%3D%22%2359c5b6%22%2F%3E%20%3Cpath%20d%3D%22M84.928%2C501.365H71.406a1.763%2C1.763%2C0%2C0%2C0-1.69%2C1.827v23.435a1.763%2C1.763%2C0%2C0%2C0%2C1.69%2C1.827H84.928a1.761%2C1.761%2C0%2C0%2C0%2C1.689-1.827V503.192a1.761%2C1.761%2C0%2C0%2C0-1.689-1.827%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20d%3D%22M75.469%2C530.107h5.4a.676.676%2C0%2C1%2C1%2C0%2C1.351h-5.4a.676.676%2C0%2C0%2C1%2C0-1.351%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Crect%20transform%3D%22translate(50%20498.49)%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M53.835%2C503.28l-.037%2C5.739%22%20fill%3D%22%232f3965%22%20stroke%3D%22%23ff820c%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%220.507%22%2F%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M60.159%2C505.227l-6.929-1.873c-.514-.139-.514-.364%2C0-.5l6.929-1.874a4.205%2C4.205%2C0%2C0%2C1%2C1.861%2C0l6.929%2C1.874c.513.139.513.364%2C0%2C.5l-6.929%2C1.873A4.2%2C4.2%2C0%2C0%2C1%2C60.159%2C505.227Z%22%20fill%3D%22%232f3965%22%2F%3E%20%3Cg%3E%20%3Cpath%20d%3D%22M67.634%2C511.484a6.547%2C6.547%2C0%2C0%2C1-13.082.563q-.012-.281%2C0-.563a6.547%2C6.547%2C0%2C0%2C1%2C13.082-.564q.012.282%2C0%2C.564%22%20fill%3D%22%23775446%22%2F%3E%20%3Cpath%20d%3D%22M71.093%2C530.781c0-5.1-4.9-10-10-10s-10%2C4.9-10%2C10v4.546a2.124%2C2.124%2C0%2C0%2C0%2C2.124%2C2.125h15.75a2.125%2C2.125%2C0%2C0%2C0%2C2.126-2.125Z%22%20fill%3D%22%232f3965%22%2F%3E%20%3Cpath%20d%3D%22M61.093%2C522.933h0a2.047%2C2.047%2C0%2C0%2C1-2.042-2.042v-.658a2.043%2C2.043%2C0%2C0%2C1%2C4.085%2C0v.658a2.048%2C2.048%2C0%2C0%2C1-2.042%2C2.042%22%20fill%3D%22%232f3965%22%2F%3E%20%3Cpath%20d%3D%22M67.173%2C513.686a6.1%2C6.1%2C0%2C1%2C1-6.079-6.633%2C6.374%2C6.374%2C0%2C0%2C1%2C6.079%2C6.633%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M56.348%2C514.371c.186.989-.163%2C1.884-.78%2C2s-1.265-.592-1.452-1.579.163-1.884.78-2%2C1.266.592%2C1.452%2C1.58%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M65.685%2C514.371c-.187.989.162%2C1.884.779%2C2s1.266-.592%2C1.452-1.579-.163-1.884-.779-2-1.266.592-1.452%2C1.58%22%20fill%3D%22%23feeadd%22%2F%3E%20%3Cpath%20d%3D%22M64.988%2C506.663c-1.5-1.444-6.3-1.444-7.8%2C0-1.89%2C1.819-2.958%2C5.247-2.385%2C5.963.4.5%2C1.761%2C0%2C2.171-.433.572-.6.987-3.143.987-3.143s-.073%2C3.14.468%2C3.286a28.941%2C28.941%2C0%2C0%2C0%2C5.315%2C0c.54-.146.467-3.286.467-3.286s.414%2C2.547.987%2C3.143c.409.425%2C1.774.925%2C2.171.433.573-.716-.5-4.143-2.385-5.963%22%20fill%3D%22%23775446%22%2F%3E%20%3Cg%3E%20%3Ccircle%20cx%3D%220.928%22%20cy%3D%220.928%22%20r%3D%220.928%22%20transform%3D%22translate(60.169%20523.758)%22%20fill%3D%22%23fef100%22%2F%3E%20%3Ccircle%20cx%3D%220.928%22%20cy%3D%220.928%22%20r%3D%220.928%22%20transform%3D%22translate(60.163%20528.143)%22%20fill%3D%22%23fef100%22%2F%3E%20%3Ccircle%20cx%3D%220.928%22%20cy%3D%220.928%22%20r%3D%220.928%22%20transform%3D%22translate(60.163%20532.528)%22%20fill%3D%22%23fef100%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Crect%20width%3D%229.236%22%20height%3D%223.531%22%20transform%3D%22translate(56.476%20503.102)%22%20fill%3D%22%232f3965%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20d%3D%22M.512%2C0h0a.506.506%2C0%2C0%2C1%2C.506.506V2.157a.2.2%2C0%2C0%2C1-.2.2H.2a.2.2%2C0%2C0%2C1-.2-.2V.512A.512.512%2C0%2C0%2C1%2C.512%2C0Z%22%20transform%3D%22translate(53.289%20508.03)%22%20fill%3D%22%23ff820c%22%2F%3E%20%3C%2Fg%3E%20%3Crect%20transform%3D%22translate(50%20498.49)%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-icon--decide::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20transform%3D%22translate(0%20-546.065)%22%3E%20%3Cg%3E%20%3Crect%20width%3D%2225.708%22%20height%3D%2235.877%22%20rx%3D%222.299%22%20transform%3D%22translate(7.146%20548.501)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23bfbfbf%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.814%22%2F%3E%20%3Crect%20width%3D%229.775%22%20height%3D%223.627%22%20rx%3D%220.918%22%20transform%3D%22translate(15.112%20546.687)%22%20fill%3D%22%23bfbfbf%22%2F%3E%20%3Cpath%20d%3D%22M10.252%2C559.909l2.527%2C2.9L18.7%2C558.25%22%20fill%3D%22none%22%20stroke%3D%22%2359c5b6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222.192%22%2F%3E%20%3C%2Fg%3E%20%3Crect%20transform%3D%22translate(0%20546.066)%22%20fill%3D%22none%22%2F%3E%20%3Cg%3E%20%3Cline%20x2%3D%227.185%22%20y2%3D%227.185%22%20transform%3D%22translate(10.631%20569.191)%22%20fill%3D%22none%22%20stroke%3D%22%23f03%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222.192%22%2F%3E%20%3Cline%20x1%3D%227.185%22%20y2%3D%227.185%22%20transform%3D%22translate(10.631%20569.191)%22%20fill%3D%22none%22%20stroke%3D%22%23f03%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222.192%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}

.cta__list {
  display: grid;
  justify-content: center;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .cta__list {
    gap: 30px;
    max-width: 603px;
    margin: 0 auto;
  }
}
.cta__list--fixed {
  grid-template-columns: 67.1554252199% 29.3255131965%;
}
@media screen and (min-width: 768px) {
  .cta__list--fixed {
    grid-template-columns: 65.8374792703% 29.1873963516%;
  }
}
.cta__item {
  position: relative;
}
.cta--fixed {
  background: rgba(255, 255, 255, 0.9);
  padding: 3.7333333333vw 4vw 4.8vw;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .cta--fixed {
    padding: 5px 15px;
  }
}
.cta__deco {
  color: var(--deco-color);
  font-size: 2.6666666667vw;
  margin-bottom: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .cta__deco {
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.cta__deco--shop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  --deco-color: #FF820C;
}
@media screen and (min-width: 768px) {
  .cta__deco--shop {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.cta__deco--shop::before, .cta__deco--shop::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .cta__deco--shop::before, .cta__deco--shop::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.cta__deco--shop::before {
  transform: rotate(-20deg);
}
.cta__deco--shop::after {
  transform: rotate(20deg);
}
.cta__deco--online {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  --deco-color: #FF0033;
}
@media screen and (min-width: 768px) {
  .cta__deco--online {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.cta__deco--online::before, .cta__deco--online::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .cta__deco--online::before, .cta__deco--online::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.cta__deco--online::before {
  transform: rotate(-20deg);
}
.cta__deco--online::after {
  transform: rotate(20deg);
}
.cta__deco--fixed {
  font-size: 3.2vw;
  color: #FF0033;
  font-weight: 700;
  text-align: center;
  background: url("../images/img_cta-ribbon_01.svg") no-repeat center center/contain;
  height: 7.4666666667vw;
  position: relative;
  z-index: 2;
  line-height: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .cta__deco--fixed {
    font-size: 18px;
    height: 42px;
    line-height: 33px;
  }
}

.cta-balloon {
  position: absolute;
  right: 0;
  bottom: 24vw;
  display: none;
}
@media screen and (min-width: 768px) {
  .cta-balloon {
    bottom: 124px;
  }
}
.cta-balloon::after {
  content: "";
  position: absolute;
  display: block;
  width: 8vw;
  height: 5.8666666667vw;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  right: 9.3333333333vw;
  background: #D0690B;
  top: calc(100% - 2.1333333333vw + 1px + 0.8vw);
}
@media screen and (min-width: 768px) {
  .cta-balloon::after {
    width: 30px;
    height: 22px;
    right: 71px;
    top: calc(100% - 4px + 1px + 3px);
  }
}
.cta-balloon__inner::before, .cta-balloon__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 8vw;
  height: 5.8666666667vw;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  right: 10.1333333333vw;
}
@media screen and (min-width: 768px) {
  .cta-balloon__inner::before, .cta-balloon__inner::after {
    width: 30px;
    height: 22px;
    right: 74px;
  }
}
.cta-balloon__inner::before {
  background: #fff;
  top: calc(100% - 2.1333333333vw);
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .cta-balloon__inner::before {
    top: calc(100% - 4px);
  }
}
.cta-balloon__inner::after {
  background: #FF820C;
  top: calc(100% - 2.1333333333vw + 1px);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .cta-balloon__inner::after {
    top: calc(100% - 4px + 1px);
  }
}
.cta-balloon__list {
  background: #fff;
  border-radius: 1.0666666667vw;
  border: 1px solid #FF820C;
  padding: 1.0666666667vw 4.2666666667vw;
  width: 56vw;
  position: relative;
  z-index: 3;
  margin: 0;
  box-shadow: 0.8vw 0.8vw 0 #D0690B;
}
@media screen and (min-width: 768px) {
  .cta-balloon__list {
    border-radius: 4px;
    padding: 5px 20px;
    width: 290px;
    box-shadow: 3px 3px 0 #D0690B;
  }
}
.cta-balloon__item:not(:first-child) {
  border-top: 1px solid #FF820C;
}
.cta-balloon__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.2vw 0;
  color: #FF820C;
  font-size: 3.2vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cta-balloon__link {
    padding: 15px 0;
    font-size: 18px;
  }
}
.cta-balloon__link::after {
  content: "";
  display: block;
  width: 3.7333333333vw;
  aspect-ratio: 1/1;
  mask-image: url("../images/ico_arrow_01.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background: #FF820C;
}
@media screen and (min-width: 768px) {
  .cta-balloon__link::after {
    width: 21px;
  }
}

.button {
  --button-color: #FF0033;
  --shadow-color: #C10027;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.0666666667vw;
  color: #fff;
  font-size: 3.7333333333vw;
  font-weight: 700;
  background: var(--button-color);
  border-radius: 1.0666666667vw;
  height: 13.8666666667vw;
  box-shadow: 0.5333333333vw 0.5333333333vw 0 var(--shadow-color);
  padding: 1.3333333333vw;
  max-width: 64vw;
  margin: 0 auto;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .button {
    gap: calc(0.0084210526 * min(100vw, 950px));
    justify-content: space-between;
    font-size: calc(0.0231578947 * min(100vw, 950px));
    border-radius: calc(0.0063157895 * min(100vw, 950px));
    height: calc(0.0736842105 * min(100vw, 950px));
    box-shadow: calc(0.0031578947 * min(100vw, 950px)) calc(0.0031578947 * min(100vw, 950px)) 0 var(--shadow-color);
    padding: calc(0.0105263158 * min(100vw, 950px)) calc(0.0315789474 * min(100vw, 950px));
    max-width: calc(0.3789473684 * min(100vw, 950px));
  }
}
.button::before, .button::after {
  content: "";
}
.button::after {
  background: url("../images/ico_arrow_01.svg?202511") no-repeat center center/contain;
  width: 3.7333333333vw;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .button::after {
    width: calc(0.0221052632 * min(100vw, 950px));
    margin-left: auto;
  }
}
.button--orange {
  --button-color: #FF820C;
  --shadow-color: #D06A09;
}
.button--green {
  --button-color: #00B6A6;
  --shadow-color: #066960;
}
@media screen and (max-width: 767px) {
  .button--green {
    max-width: 78.6666666667vw;
  }
}
.button--white {
  --button-color: #fff;
  --shadow-color: #FF0033;
  border: 0.2666666667vw var(--shadow-color) solid;
  color: var(--shadow-color);
  gap: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .button--white {
    border-width: calc(0.0010526316 * min(100vw, 950px));
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.button--white::after {
  mask: url("../images/ico_arrow_01.svg?202511") no-repeat center center/contain;
  background: var(--shadow-color);
}
.button--shop::before {
  background: url("../images/ico_shop_01.svg?202511") no-repeat center center/contain;
  width: 4.5333333333vw;
  height: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .button--shop::before {
    width: calc(0.0273684211 * min(100vw, 950px));
    height: calc(0.0252631579 * min(100vw, 950px));
  }
}
.button--online::before {
  background: url("../images/ico_online_01.svg?202511") no-repeat center center/contain;
  width: 4.8vw;
  height: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .button--online::before {
    width: calc(0.0284210526 * min(100vw, 950px));
    height: calc(0.0252631579 * min(100vw, 950px));
  }
}
.button--online::after {
  margin-left: auto;
}
.button--cta-shop {
  font-size: 4.2666666667vw;
  padding: 2.1333333333vw 4.2666666667vw;
  gap: 5.3333333333vw;
  height: 17.3333333333vw;
  margin-top: -3.2vw;
}
@media screen and (min-width: 768px) {
  .button--cta-shop {
    font-size: 30px;
    padding: 10px 30px;
    gap: 26px;
    max-width: 100%;
    height: 96px;
    margin-top: -24px;
  }
}
@media screen and (max-width: 767px) {
  .button--cta-shop::after {
    width: 4.2666666667vw;
  }
}
.button--cta-online {
  font-size: 3.2vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  width: 100%;
  height: 17.3333333333vw;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .button--cta-online {
    padding-bottom: 12px;
    font-size: 22px;
    max-width: 100%;
    height: 96px;
    background-size: 21px 21px;
    background-position: top 10px center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button--cta-online:hover {
    opacity: 0.8;
  }
}
.button--cta-online::before, .button--cta-online::after {
  display: none;
}
.button--cta-online::before {
  content: "";
  display: block;
  background: var(--button-color) url("../images/ico_button-plus_01.svg") no-repeat center center/contain;
  width: 4.2666666667vw;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .button--cta-online::before {
    width: 21px;
  }
}
.button--cta-online.is-active::before {
  background-image: url("../images/ico_button-minus_01.svg");
}

.balloon {
  --balloonColor: #FF0033;
  background-color: var(--balloonColor);
  font-size: 3.2vw;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5333333333vw 3.2vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .balloon {
    font-size: calc(0.0157894737 * min(100vw, 950px));
    padding: calc(0.0042105263 * min(100vw, 950px)) calc(0.0157894737 * min(100vw, 950px));
  }
}
.balloon::after {
  content: "";
  display: block;
  width: 4.2666666667vw;
  height: 2.9333333333vw;
  position: absolute;
  top: calc(100% - 0.5333333333vw);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--balloonColor);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .balloon::after {
    top: calc(100% - 1px);
    width: calc(0.0252631579 * min(100vw, 950px));
    height: calc(0.0168421053 * min(100vw, 950px));
  }
}
.balloon--orange {
  --balloonColor: #FF820C;
}

.text-link {
  display: block;
  width: fit-content;
  color: #2F3965;
  padding: 0 4.8vw 0 0;
  background: url("../images/ico_arrow_02.svg?202511") no-repeat center right/4.2666666667vw;
  border: none;
  border-bottom: 1px solid currentColor;
  font-size: 3.7333333333vw;
  font-weight: 500;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .text-link {
    padding-right: calc(0.0263157895 * min(100vw, 950px));
    padding-bottom: calc(0.0031578947 * min(100vw, 950px));
    background-size: calc(0.0221052632 * min(100vw, 950px));
    border-width: calc(0.0015789474 * min(100vw, 950px));
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
@media (hover: hover) and (pointer: fine) {
  .text-link:hover {
    opacity: 0.8;
  }
}
.text-link--question {
  background-image: url("../images/ico_question_01.svg?202511");
}

.section {
  padding: 10.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: calc(0.0631578947 * min(100vw, 950px)) 0;
  }
}
@media screen and (max-width: 767px) {
  .section--features {
    padding: 6.4vw 0;
  }
}
@media screen and (max-width: 767px) {
  .section--product {
    padding-bottom: 5.3333333333vw;
  }
}
.section__inner {
  padding: 0 4vw;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .section__inner {
    padding: 0 15px;
    max-width: 950px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .section__inner--modal {
    padding: 0 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .section__inner--modal {
    max-width: calc(0.5894736842 * min(100vw, 950px));
  }
}
@media screen and (min-width: 768px) {
  .section__inner--product {
    max-width: 1090px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .section__inner--slider {
    padding: 0;
  }
}
.section--orange {
  background: #FFF3E6;
}
.section--orange + .section--orange {
  position: relative;
}
.section--orange + .section--orange::before {
  position: absolute;
  top: -0.5333333333vw;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  position: absolute;
  height: 1.0666666667vw;
  width: 93.3333333333vw;
  background: radial-gradient(circle, #FF820C 0.5333333333vw, transparent 0.5333333333vw) center/2.1333333333vw 2.1333333333vw repeat-x;
}
@media screen and (min-width: 768px) {
  .section--orange + .section--orange::before {
    top: -2px;
    height: 4px;
    width: 640px;
    background: radial-gradient(circle, #FF820C 2px, transparent 2px) left/8px 8px repeat-x;
  }
}
.section--pink {
  background: #D3EDFB;
}
.section--support {
  padding-top: 0;
}
.section--sim {
  position: relative;
}
.section--sim::before {
  position: absolute;
  top: -0.5333333333vw;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  position: absolute;
  height: 1.0666666667vw;
  width: 93.3333333333vw;
  background: radial-gradient(circle, #2F3965 0.5333333333vw, transparent 0.5333333333vw) center/2.1333333333vw 2.1333333333vw repeat-x;
}
@media screen and (min-width: 768px) {
  .section--sim::before {
    top: -2px;
    height: 4px;
    width: 640px;
    background: radial-gradient(circle, #2F3965 2px, transparent 2px) left/8px 8px repeat-x;
  }
}
.section__title {
  text-align: center;
  font-size: 8.5333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: calc(0.0421052632 * min(100vw, 950px));
  }
}
.section__title .u-f-helvetica {
  font-size: 9.0666666667vw;
}
@media screen and (min-width: 768px) {
  .section__title .u-f-helvetica {
    font-size: calc(0.0463157895 * min(100vw, 950px));
  }
}
.section__title-deco {
  font-family: "futura-pt", sans-serif;
  color: #fff;
  width: fit-content;
  background: #00B6A6;
  border-radius: 99px;
  font-size: 3.7333333333vw;
  font-weight: 500;
  padding: 0 3.2vw;
  margin: 0 auto 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .section__title-deco {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    padding: 0 calc(0.0210526316 * min(100vw, 950px));
    margin-bottom: calc(0.0210526316 * min(100vw, 950px));
  }
}
.section__balloon {
  width: fit-content;
  margin: 0 auto 2.1333333333vw;
  font-weight: 700;
  border-bottom: #2F3965 0.2666666667vw solid;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section__balloon {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    border-bottom: #2F3965 calc(0.0015789474 * min(100vw, 950px)) solid;
    margin-bottom: calc(0.0126315789 * min(100vw, 950px));
  }
}
.section__balloon::before, .section__balloon::after {
  content: "";
  position: absolute;
  width: 2.6666666667vw;
  height: 1.8666666667vw;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .section__balloon::before, .section__balloon::after {
    width: calc(0.0126315789 * min(100vw, 950px));
    height: calc(0.0084210526 * min(100vw, 950px));
  }
}
.section__balloon::before {
  background: #2F3965;
  top: 100%;
}
.section__balloon::after {
  background: #FFF3E6;
  top: calc(100% - 0.4vw);
}
@media screen and (min-width: 768px) {
  .section__balloon::after {
    top: calc(100% - 0.0021052632 * min(100vw, 950px));
  }
}
.section__heading {
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  font-size: 6.9333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__heading {
    font-size: calc(0.0336842105 * min(100vw, 950px));
  }
}
.section__heading sup {
  font-size: 2.6666666667vw;
}
@media screen and (max-width: 767px) {
  .section__heading sup {
    position: absolute;
  }
}
@media screen and (min-width: 768px) {
  .section__heading sup {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.section__lead {
  text-align: center;
  font-size: 3.7333333333vw;
  margin: 1.0666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .section__lead {
    font-size: calc(0.0231578947 * min(100vw, 950px));
    margin-top: calc(0.0042105263 * min(100vw, 950px));
  }
}
.section__subtitle {
  padding-top: 5.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__subtitle {
    padding-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.section__subtitle--plan-first {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .section__subtitle--plan {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .section__subtitle--protect {
    padding-top: 16vw;
  }
}
@media screen and (max-width: 767px) {
  .section__subtitle--knowledge {
    padding-top: 10.6666666667vw;
  }
}
.section__subtitle--campaign {
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  .section__subtitle--campaign {
    padding-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.section__subtitle-balloon {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .section__subtitle-balloon {
    margin-bottom: calc(0.0136842105 * min(100vw, 950px));
  }
}
.section__subtitle-text {
  font-size: 6.4vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section__subtitle-text {
    font-size: calc(0.0336842105 * min(100vw, 950px));
  }
}
.section__subtitle-text .u-f-helvetica {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .section__subtitle-text .u-f-helvetica {
    font-size: calc(0.0357894737 * min(100vw, 950px));
  }
}
.section__subtitle-text--red {
  color: #FF0033;
}

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

.mv-note {
  background: #D3EDFB;
  padding: 2.1333333333vw 0;
}
@media screen and (min-width: 768px) {
  .mv-note {
    padding: calc(0.0105263158 * min(100vw, 950px)) 0;
  }
}
.mv-note__inner {
  padding: 0 4vw;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .mv-note__inner {
    padding: 0 15px;
    max-width: 950px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .mv-note__inner {
    padding: 0 2.6666666667vw;
  }
}
.mv-note__text {
  text-align: right;
  font-weight: 500;
  font-size: 2.6666666667vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .mv-note__text {
    font-size: calc(0.0168421053 * min(100vw, 950px));
  }
}

.link-area {
  background: #D3EDFB;
  padding-top: 4.2666666667vw;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .link-area {
    padding-top: calc(0.0421052632 * min(100vw, 950px));
    padding-bottom: calc(0.0210526316 * min(100vw, 950px));
  }
}
.link-area__inner {
  padding: 0 4vw;
}
@media screen and (min-width: 768px) {
  .link-area__inner {
    padding: 0 15px;
    max-width: 950px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .link-area__inner {
    max-width: 490px;
  }
}
.link-area__deco {
  font-size: 2.9333333333vw;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 2px;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .link-area__deco {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.link-area__deco::before, .link-area__deco::after {
  content: "";
  display: block;
  top: 0;
  width: 1px;
  height: 1em;
  background: currentColor;
  transform-origin: center bottom;
}
.link-area__deco::before {
  rotate: -20deg;
}
.link-area__deco::after {
  rotate: 20deg;
}
.link-area__deco--red {
  color: #FF0033;
  margin-top: 8vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .link-area__deco--red {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.link-area__link {
  margin: 1.0666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .link-area__link {
    margin-top: calc(0.0084210526 * min(100vw, 950px));
  }
}
.link-area__button {
  margin: 1.0666666667vw auto 0;
}
@media screen and (max-width: 767px) {
  .link-area__button {
    max-width: 80vw;
    font-size: 4.2666666667vw;
    gap: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .link-area__button {
    margin-top: calc(0.0084210526 * min(100vw, 950px));
    max-width: calc(0.4421052632 * min(100vw, 950px));
    gap: calc(0.0210526316 * min(100vw, 950px));
  }
}
.link-area__button::after {
  transform: rotate(90deg);
}

.plan {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .plan {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    overflow: hidden;
  }
}

.plan-slider {
  width: 86.1333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .plan-slider {
    width: calc(0.5957894737 * min(100vw, 950px));
  }
}
.plan-slider__label {
  width: 59.7333333333vw;
  height: 5.8666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 3.2vw;
  border-radius: 1.0666666667vw 1.0666666667vw 0 0;
  background: #FF0033;
  margin: 0 0 2.1333333333vw auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-slider__label {
    width: calc(0.6315789474 * min(100vw, 950px));
    height: calc(0.0336842105 * min(100vw, 950px));
    font-size: calc(0.0168421053 * min(100vw, 950px));
    border-radius: calc(0.0042105263 * min(100vw, 950px)) calc(0.0042105263 * min(100vw, 950px)) 0 0;
    margin-bottom: calc(0.0126315789 * min(100vw, 950px));
    margin-right: calc(0.0010526316 * min(100vw, 950px));
  }
}
.plan-slider__label::before, .plan-slider__label::after {
  content: "";
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  width: 4.2666666667vw;
  height: 2.9333333333vw;
  background: #FF0033;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .plan-slider__label::before, .plan-slider__label::after {
    width: calc(0.0168421053 * min(100vw, 950px));
    height: calc(0.0115789474 * min(100vw, 950px));
    transform: translate(-50%, calc(-0.0021052632 * min(100vw, 950px)));
  }
}
.plan-slider__label::before {
  left: 25%;
}
.plan-slider__label::after {
  left: 75%;
}
.plan-slider__list {
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .plan-slider__list {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.plan-slider__item--s {
  --plan-color: #FF0033;
  --arrow-color: #FF6583;
}
.plan-slider__item--s [class*=oyako] {
  visibility: hidden;
}
.plan-slider__item--m {
  --plan-color: #FF820C;
  --arrow-color: #FF820C;
}
.plan-slider__item--l {
  --plan-color: #00B6A6;
  --arrow-color: #65D4C9;
}
.plan-slider__wrapper {
  box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
  border-radius: 2.1333333333vw;
  overflow: hidden;
  margin: 0 1.0666666667vw;
  height: 100%;
  text-align: center;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .plan-slider__wrapper {
    box-shadow: 0 calc(0.0052631579 * min(100vw, 950px)) calc(0.0094736842 * min(100vw, 950px)) rgba(0, 0, 0, 0.16);
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    margin: 0 calc(0.0347368421 * min(100vw, 950px));
  }
}
.plan-slider__title {
  background: var(--plan-color);
  color: #fff;
  font-weight: 700;
  font-size: 3.7333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9.6vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__title {
    font-size: calc(0.0231578947 * min(100vw, 950px));
    height: calc(0.0568421053 * min(100vw, 950px));
  }
}
.plan-slider__content {
  padding: 2.1333333333vw 2.6666666667vw 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__content {
    padding: calc(0.0210526316 * min(100vw, 950px)) calc(0.0315789474 * min(100vw, 950px)) calc(0.0252631579 * min(100vw, 950px));
  }
}
.plan-slider__capacity {
  color: var(--plan-color);
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 700;
  font-size: 11.7333333333vw;
  line-height: 1;
  padding-bottom: 2.1333333333vw;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-slider__capacity {
    font-size: calc(0.0694736842 * min(100vw, 950px));
    padding-bottom: calc(0.0157894737 * min(100vw, 950px));
  }
}
.plan-slider__capacity::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0.2666666667vw;
  width: 73.3333333333vw;
  background: #DDD;
}
@media screen and (min-width: 768px) {
  .plan-slider__capacity::after {
    height: calc(0.0015789474 * min(100vw, 950px));
    width: calc(0.4631578947 * min(100vw, 950px));
  }
}
.plan-slider__capacity--unit {
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__capacity--unit {
    font-size: calc(0.0347368421 * min(100vw, 950px));
    margin-left: calc(0.0084210526 * min(100vw, 950px));
  }
}
.plan-slider__basic-text {
  font-size: 2.6666666667vw;
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .plan-slider__basic-text {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
.plan-slider__basic-price {
  font-size: 3.2vw;
  position: relative;
  width: fit-content;
  margin: -1.0666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .plan-slider__basic-price {
    font-size: calc(0.0189473684 * min(100vw, 950px));
    margin-top: calc(-0.0063157895 * min(100vw, 950px));
  }
}
.plan-slider__basic-price--num {
  font-size: 6.4vw;
  font-family: "Helvetica", Arial, sans-serif;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__basic-price--num {
    font-size: calc(0.0378947368 * min(100vw, 950px));
    margin-right: calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__basic-price--tax {
  font-size: 2.6666666667vw;
  margin-left: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__basic-price--tax {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    margin-left: calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__basic-price--tax-num {
  font-size: 4.8vw;
  font-family: "Helvetica", Arial, sans-serif;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__basic-price--tax-num {
    font-size: calc(0.0284210526 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__basic-price::after {
  position: absolute;
  content: "";
  display: block;
  height: 0.2666666667vw;
  width: 100%;
  top: 55%;
  left: 0;
  background: currentColor;
}
@media screen and (min-width: 768px) {
  .plan-slider__basic-price::after {
    height: calc(0.0015789474 * min(100vw, 950px));
  }
}
.plan-slider__discount {
  margin: 0;
  padding-top: 6.4vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount {
    padding-top: calc(0.0473684211 * min(100vw, 950px));
  }
}
.plan-slider__discount::before, .plan-slider__discount::after {
  content: "";
  position: absolute;
  width: 8.5333333333vw;
  height: 2.1333333333vw;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .plan-slider__discount::before, .plan-slider__discount::after {
    width: calc(0.0505263158 * min(100vw, 950px));
    height: calc(0.0126315789 * min(100vw, 950px));
  }
}
.plan-slider__discount::before {
  background: var(--plan-color);
  top: 0;
}
.plan-slider__discount::after {
  background: var(--arrow-color);
  opacity: 0.6;
  top: 3.2vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount::after {
    top: calc(0.0189473684 * min(100vw, 950px));
  }
}
.plan-slider__discount-text {
  font-size: 2.6666666667vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount-text {
    font-size: calc(0.0168421053 * min(100vw, 950px));
  }
}
.plan-slider__discount-text > span {
  display: none;
}
.plan-slider__discount-text > span.is-shown {
  display: inline-block;
}
.plan-slider__discount-text > span.is-shown:not(.is-last)::after {
  content: "/";
}
.plan-slider__discount-text > span.is-last::after {
  content: "で";
}
.plan-slider__discount-price, .plan-slider__second-price {
  font-size: 4.2666666667vw;
  margin: -2.1333333333vw 0 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount-price, .plan-slider__second-price {
    font-size: calc(0.0294736842 * min(100vw, 950px));
    margin-top: calc(-0.0084210526 * min(100vw, 950px));
  }
}
.plan-slider__discount-price:has(.plan-slider__discount-price--oyako.is-shown), .plan-slider__second-price:has(.plan-slider__discount-price--oyako.is-shown) {
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount-price:has(.plan-slider__discount-price--oyako.is-shown), .plan-slider__second-price:has(.plan-slider__discount-price--oyako.is-shown) {
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
.plan-slider__discount-price--container, .plan-slider__second-price--container {
  position: relative;
  height: fit-content;
}
.plan-slider__discount-price--oyako, .plan-slider__second-price--oyako {
  color: #FF0033;
  font-weight: 500;
  font-size: 2.6666666667vw;
  position: absolute;
  top: -9.6vw;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount-price--oyako, .plan-slider__second-price--oyako {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    top: calc(-0.0505263158 * min(100vw, 950px));
  }
}
.plan-slider__discount-price--oyako.is-shown, .plan-slider__second-price--oyako.is-shown {
  opacity: 1;
  pointer-events: all;
}
.plan-slider__discount-price--num, .plan-slider__second-price--num {
  font-size: 12.2666666667vw;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 700;
  margin: 0 0.5333333333vw;
  color: #FF0033;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount-price--num, .plan-slider__second-price--num {
    font-size: calc(0.0736842105 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__discount-price--tax, .plan-slider__second-price--tax {
  font-size: 2.6666666667vw;
  margin-left: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount-price--tax, .plan-slider__second-price--tax {
    font-size: calc(0.0157894737 * min(100vw, 950px));
    margin-left: calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__discount-price--tax-num, .plan-slider__second-price--tax-num {
  font-size: 6.1333333333vw;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 700;
  margin: 0 0.5333333333vw;
  color: #FF0033;
}
@media screen and (min-width: 768px) {
  .plan-slider__discount-price--tax-num, .plan-slider__second-price--tax-num {
    font-size: calc(0.0368421053 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__family {
  font-weight: 500;
  font-size: 3.2vw;
  margin: 3.2vw 0 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .plan-slider__family {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
.plan-slider__family--num {
  font-weight: 700;
  font-size: 6.1333333333vw;
  font-family: "Helvetica", Arial, sans-serif;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__family--num {
    font-size: calc(0.0368421053 * min(100vw, 950px));
    margin: 0 calc(0.0042105263 * min(100vw, 950px));
  }
}
.plan-slider__family.is-shown {
  display: block;
}
.plan-slider__family-label {
  background: var(--plan-color);
  width: fit-content;
  margin: 0 auto;
  border-radius: 99px;
  color: #fff;
  padding: 0.5333333333vw 3.2vw;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__family-label {
    padding: calc(0.0021052632 * min(100vw, 950px)) calc(0.0126315789 * min(100vw, 950px));
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.plan-slider__family-label--plans {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__family-label--plans {
    margin-top: calc(0.0084210526 * min(100vw, 950px));
  }
}
.plan-slider__oyako {
  margin: -4.2666666667vw 0 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .plan-slider__oyako {
    margin-top: calc(-0.0210526316 * min(100vw, 950px));
  }
}
.plan-slider__oyako--unit {
  font-weight: 500;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__oyako--unit {
    font-size: calc(0.0168421053 * min(100vw, 950px));
  }
}
.plan-slider__oyako--num {
  font-size: 6.1333333333vw;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 700;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__oyako--num {
    font-size: calc(0.0368421053 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__oyako.is-shown {
  display: block;
}
.plan-slider__second-price {
  margin-top: -1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-price {
    margin-top: 0;
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.plan-slider__second-price:has(.plan-slider__second-price--oyako.is-shown) {
  margin-top: 3.2vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-price:has(.plan-slider__second-price--oyako.is-shown) {
    margin-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.plan-slider__second-price--oyako {
  top: -5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-price--oyako {
    top: calc(-0.0336842105 * min(100vw, 950px));
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.plan-slider__second-price--num {
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-price--num {
    font-size: calc(0.0421052632 * min(100vw, 950px));
  }
}
.plan-slider__second-price--tax-num {
  font-size: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-price--tax-num {
    font-size: calc(0.0368421053 * min(100vw, 950px));
  }
}
.plan-slider__second-price--plans {
  margin-top: 0;
}
.plan-slider__second-oyako {
  margin: -2.1333333333vw auto 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-oyako {
    margin-top: calc(-0.0084210526 * min(100vw, 950px));
  }
}
.plan-slider__second-oyako--unit {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-oyako--unit {
    font-size: calc(0.0168421053 * min(100vw, 950px));
  }
}
.plan-slider__second-oyako--num {
  font-size: 6.1333333333vw;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 700;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__second-oyako--num {
    font-size: calc(0.0368421053 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-slider__second-oyako.is-shown {
  display: block;
}
.plan-slider__call {
  margin: 3.2vw 0 0;
}
@media screen and (min-width: 768px) {
  .plan-slider__call {
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
.plan-slider__call-lead {
  margin: 0;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .plan-slider__call-lead {
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.plan-slider__call-note {
  font-size: 2.6666666667vw;
  margin: 0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .plan-slider__call-note {
    font-size: calc(0.0157894737 * min(100vw, 950px));
  }
}
.plan-slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 1.8666666667vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-slider .slick-dots {
    gap: calc(0.0294736842 * min(100vw, 950px));
    transform: translateX(calc(-0.0021052632 * min(100vw, 950px)));
  }
}
.plan-slider .slick-dots li:nth-child(1) {
  --plan-color: #FF0033;
  --plan-name: "S";
}
.plan-slider .slick-dots li:nth-child(2) {
  --plan-color: #FF820C;
  --plan-name: "M";
}
.plan-slider .slick-dots li:nth-child(3) {
  --plan-color: #00B6A6;
  --plan-name: "L";
}
.plan-slider .slick-dots button {
  background: #fff;
  box-shadow: 0.5333333333vw 0.5333333333vw var(--plan-color);
  border-radius: 1.0666666667vw;
  width: 28.8vw;
  height: 12.8vw;
  color: transparent;
  position: relative;
  transition: 0.3s;
  border: var(--plan-color) 0.2666666667vw solid;
}
@media screen and (min-width: 768px) {
  .plan-slider .slick-dots button {
    width: calc(0.3 * min(100vw, 950px));
    height: calc(0.0842105263 * min(100vw, 950px));
    border-radius: calc(0.0042105263 * min(100vw, 950px));
    box-shadow: calc(0.0042105263 * min(100vw, 950px)) calc(0.0042105263 * min(100vw, 950px)) var(--plan-color);
    border-width: calc(0.0015789474 * min(100vw, 950px));
  }
}
.plan-slider .slick-dots button::after {
  position: absolute;
  content: var(--plan-name);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--plan-color);
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 700;
  font-size: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-slider .slick-dots button::after {
    font-size: calc(0.0442105263 * min(100vw, 950px));
  }
}
.plan-slider .slick-dots .slick-active button {
  box-shadow: 0 0 var(--plan-color);
  transform: translate(0.5333333333vw, 0.5333333333vw);
  background: var(--plan-color);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .plan-slider .slick-dots .slick-active button {
    transform: translate(calc(0.0042105263 * min(100vw, 950px)), calc(0.0042105263 * min(100vw, 950px)));
  }
}
.plan-slider .slick-dots .slick-active button::after {
  color: #fff;
}
.plan-slider .slick-list {
  overflow: visible;
}
.plan-slider .slick-track {
  display: flex;
}
.plan-slider .slick-slide {
  height: auto !important;
}
.plan-slider .slick-arrow {
  position: absolute;
  z-index: 1;
  width: 10.6666666667vw;
  aspect-ratio: 1/1;
  color: transparent;
  background: url("../images/ico_slider-arrow_01.png?202511") no-repeat center center/contain;
  border: none;
}
@media screen and (min-width: 768px) {
  .plan-slider .slick-arrow {
    width: calc(0.0631578947 * min(100vw, 950px));
  }
}
.plan-slider .slick-prev {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%) scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .plan-slider .slick-prev {
    transform: translate(-100%, -50%) scale(-1, 1);
  }
}
.plan-slider .slick-next {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
@media screen and (min-width: 768px) {
  .plan-slider .slick-next {
    transform: translate(100%, -50%);
  }
}

.plan-discount {
  border: 0.2666666667vw #2F3965 solid;
  border-radius: 2.1333333333vw;
  margin-top: 4.8vw;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .plan-discount {
    border-width: calc(0.0015789474 * min(100vw, 950px));
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    margin-top: calc(0.0463157895 * min(100vw, 950px));
  }
}
.plan-discount__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #2F3965;
  color: #fff;
  font-weight: 700;
  font-size: 3.7333333333vw;
  height: 14.6666666667vw;
  border-radius: 2.1333333333vw 2.1333333333vw 0 0;
  position: relative;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-discount__title {
    font-size: calc(0.0231578947 * min(100vw, 950px));
    height: calc(0.0947368421 * min(100vw, 950px));
    border-radius: calc(0.0126315789 * min(100vw, 950px)) calc(0.0126315789 * min(100vw, 950px)) 0 0;
  }
}
.plan-discount__title::before {
  position: absolute;
  content: "";
  width: 4.2666666667vw;
  height: 2.9333333333vw;
  background: #2F3965;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: calc(100% - 0.5333333333vw);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .plan-discount__title::before {
    width: calc(0.0378947368 * min(100vw, 950px));
    height: calc(0.0252631579 * min(100vw, 950px));
    bottom: calc(100% - 0.0031578947 * min(100vw, 950px));
  }
}
.plan-discount__title-deco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-discount__title-deco {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.plan-discount__title-deco::before, .plan-discount__title-deco::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .plan-discount__title-deco::before, .plan-discount__title-deco::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.plan-discount__title-deco::before {
  transform: rotate(-20deg);
}
.plan-discount__title-deco::after {
  transform: rotate(20deg);
}
@media screen and (max-width: 767px) {
  .plan-discount__title-deco::before, .plan-discount__title-deco::after {
    width: 0.5333333333vw;
    height: 4.2666666667vw;
  }
}
.plan-discount__content {
  padding: 6.4vw 4vw;
}
@media screen and (min-width: 768px) {
  .plan-discount__content {
    padding: calc(0.0210526316 * min(100vw, 950px)) calc(0.0210526316 * min(100vw, 950px)) calc(0.0294736842 * min(100vw, 950px));
  }
}
.plan-discount__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.plan-discount__radio, .plan-discount__checkbox {
  display: none;
}
.plan-discount__radio + .plan-discount__label-name {
  padding-left: 6.4vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-discount__radio + .plan-discount__label-name {
    padding-left: calc(0.0378947368 * min(100vw, 950px));
  }
}
.plan-discount__radio + .plan-discount__label-name::before, .plan-discount__radio + .plan-discount__label-name::after {
  position: absolute;
  content: "";
  display: block;
  width: 4.2666666667vw;
  aspect-ratio: 1/1;
  border-radius: 99px;
  left: 0;
  top: 0.2em;
}
@media screen and (min-width: 768px) {
  .plan-discount__radio + .plan-discount__label-name::before, .plan-discount__radio + .plan-discount__label-name::after {
    width: calc(0.0252631579 * min(100vw, 950px));
  }
}
.plan-discount__radio + .plan-discount__label-name::before {
  border: 0.2666666667vw #2F3965 solid;
}
@media screen and (min-width: 768px) {
  .plan-discount__radio + .plan-discount__label-name::before {
    border-width: calc(0.0015789474 * min(100vw, 950px));
  }
}
.plan-discount__radio + .plan-discount__label-name::after {
  clip-path: circle(25% at 50% 50%);
}
.plan-discount__radio:checked + .plan-discount__label-name::after {
  background: #2F3965;
}
.plan-discount__checkbox + .plan-discount__label-name {
  padding-left: 6.4vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-discount__checkbox + .plan-discount__label-name {
    padding-left: calc(0.0378947368 * min(100vw, 950px));
  }
}
.plan-discount__checkbox + .plan-discount__label-name::before, .plan-discount__checkbox + .plan-discount__label-name::after {
  position: absolute;
  content: "";
  display: block;
  width: 4.2666666667vw;
  aspect-ratio: 1/1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .plan-discount__checkbox + .plan-discount__label-name::before, .plan-discount__checkbox + .plan-discount__label-name::after {
    width: calc(0.0252631579 * min(100vw, 950px));
  }
}
.plan-discount__checkbox + .plan-discount__label-name::before {
  border: 0.2666666667vw currentColor solid;
}
@media screen and (min-width: 768px) {
  .plan-discount__checkbox + .plan-discount__label-name::before {
    border-width: calc(0.0015789474 * min(100vw, 950px));
  }
}
.plan-discount__checkbox + .plan-discount__label-name::after {
  background-image: url("../images/ico_check_01.svg?202511");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.plan-discount__checkbox:checked + .plan-discount__label-name::after {
  background-color: currentColor;
}
.plan-discount__label-name {
  font-size: 3.7333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-discount__label-name {
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.plan-discount__label-price {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-discount__label-price {
    font-size: calc(0.0168421053 * min(100vw, 950px));
  }
}
.plan-discount__label-price--num {
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: 700;
  font-size: 6.1333333333vw;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-discount__label-price--num {
    font-size: calc(0.0368421053 * min(100vw, 950px));
    margin-right: calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-discount__label-price--red {
  color: #FF0033;
}
@media screen and (min-width: 768px) {
  .plan-discount__label-price--oyakowari {
    margin-right: calc(50% + 0.0315789474 * min(100vw, 950px));
  }
}
.plan-discount__text {
  font-size: 3.2vw;
  font-weight: 400;
  margin: 0;
  padding-left: 6.4vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .plan-discount__text {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    padding-left: calc(0.0378947368 * min(100vw, 950px));
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
.plan-discount__oyakowari:has(.plan-discount__checkbox:disabled) {
  color: #AAA;
  pointer-events: none;
}
.plan-discount__oyakowari:has(.plan-discount__checkbox:disabled) .plan-discount__label-price--red {
  color: #AAA;
}
.plan-discount__oyakowari:has(.plan-discount__checkbox:disabled) .plan-discount__text::first-line {
  color: #FF0033;
}
.plan-discount__service, .plan-discount__paypay-list {
  margin-bottom: 0;
}
.plan-discount__service, .plan-discount__paypay {
  border-top: 0.2666666667vw #2F3965 solid;
  padding-top: 3.2vw;
  margin-top: 3.2vw;
}
@media screen and (min-width: 768px) {
  .plan-discount__service, .plan-discount__paypay {
    border-width: calc(0.0015789474 * min(100vw, 950px));
    padding-top: calc(0.0210526316 * min(100vw, 950px));
    margin-top: calc(0.0210526316 * min(100vw, 950px));
    display: grid;
    gap: calc(0.0126315789 * min(100vw, 950px)) calc(0.0631578947 * min(100vw, 950px));
    grid-template-columns: 1fr 1fr;
  }
}
.plan-discount__service-item:not(:first-child), .plan-discount__paypay-item:not(:first-child) {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-discount__service-item:not(:first-child), .plan-discount__paypay-item:not(:first-child) {
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
@media screen and (min-width: 768px) {
  .plan-discount__service-item:has([name=discount-service]), .plan-discount__paypay-item:has([name=discount-service]) {
    margin-top: 0;
  }
}
.plan-discount__paypay-text {
  font-size: 3.2vw;
  font-weight: 700;
  margin: 4.2666666667vw 0 0;
  padding-left: 6.4vw;
}
@media screen and (min-width: 768px) {
  .plan-discount__paypay-text {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    margin-top: 0;
    padding-left: 0;
  }
}
.plan-discount__paypay-list {
  margin-top: 4.2666666667vw;
  padding-left: 6.4vw;
}
@media screen and (min-width: 768px) {
  .plan-discount__paypay-list {
    margin-top: calc(0.0126315789 * min(100vw, 950px));
    padding-left: 0;
  }
}

.plan-notes {
  margin-top: 4.2666666667vw;
  color: #333;
}
@media screen and (min-width: 768px) {
  .plan-notes {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.plan-notes__main {
  font-size: 3.2vw;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-notes__main {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.plan-notes__other {
  font-size: 3.2vw;
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .plan-notes__other {
    font-size: calc(0.0147368421 * min(100vw, 950px));
    margin-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.plan-notes__item {
  padding: 2.1333333333vw 0;
  border-bottom: 0.2666666667vw #2F3965 solid;
  background: #D3EDFB;
}
@media screen and (min-width: 768px) {
  .plan-notes__item {
    padding: calc(0.0105263158 * min(100vw, 950px)) 0;
    border-width: calc(0.0015789474 * min(100vw, 950px));
  }
}
.plan-notes__title {
  font-size: 3.2vw;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .plan-notes__title {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.plan-notes__title::before, .plan-notes__title::after {
  position: absolute;
  right: 0;
  top: calc(50% - 0.2666666667vw);
  content: "";
  width: 3.7333333333vw;
  height: 0.2666666667vw;
  background: currentColor;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .plan-notes__title::before, .plan-notes__title::after {
    width: calc(0.0147368421 * min(100vw, 950px));
    height: calc(0.0010526316 * min(100vw, 950px));
    top: calc(50% - 0.0010526316 * min(100vw, 950px));
  }
}
.plan-notes__title::after {
  transform: rotate(90deg);
}
.plan-notes__title.is-open::after {
  transform: rotate(180deg);
}
.plan-notes__accordion-text {
  font-size: 2.6666666667vw;
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .plan-notes__accordion-text {
    font-size: max(0.0126315789 * min(100vw, 950px), 10px);
    margin-top: calc(0.0105263158 * min(100vw, 950px));
  }
}

.plan-box {
  background: #fff;
  border-radius: 3.7333333333vw;
  margin-top: 6.4vw;
  padding: 6.4vw;
}
@media screen and (min-width: 768px) {
  .plan-box {
    border-radius: calc(0.0421052632 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    padding: calc(0.0421052632 * min(100vw, 950px));
  }
}
.plan-box__lead {
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-box__lead {
    font-size: calc(0.0315789474 * min(100vw, 950px));
    font-weight: 700;
  }
}
.plan-box__lead .u-f-helvetica {
  font-size: 6.4vw;
  position: relative;
  top: 1px;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-box__lead .u-f-helvetica {
    font-size: calc(0.0357894737 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-box__text {
  font-size: 4.5333333333vw;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-box__text {
    font-size: calc(0.0252631579 * min(100vw, 950px));
  }
}
.plan-box__text .u-f-helvetica {
  font-size: 6.4vw;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-box__text .u-f-helvetica {
    font-size: calc(0.0378947368 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-box__family {
  display: grid;
  grid-template-columns: repeat(2, 37.3333333333vw);
  justify-content: center;
  column-gap: 4vw;
  margin-top: 5.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-box__family {
    grid-template-columns: repeat(2, calc(0.2821052632 * min(100vw, 950px)));
    column-gap: calc(0.0947368421 * min(100vw, 950px));
    margin-top: calc(0.0505263158 * min(100vw, 950px));
  }
}
.plan-box__family-parent, .plan-box__family-child {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.plan-box__family-parent .plan-box__family-heading {
  background-color: #FF820C;
}
.plan-box__family-child .plan-box__family-heading {
  background-color: #00B6A6;
}
.plan-box__family-child .plan-box__family-image {
  display: flex;
  justify-content: center;
  align-items: end;
}
.plan-box__family-child .plan-box__family-image img {
  width: 30.6666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-box__family-child .plan-box__family-image img {
    width: calc(0.2473684211 * min(100vw, 950px));
  }
}
.plan-box__family-heading {
  font-size: 4.5333333333vw;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-box__family-heading {
    font-size: calc(0.0315789474 * min(100vw, 950px));
    padding: calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-box__family-image {
  padding-top: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-box__family-image {
    padding-top: calc(0.0252631579 * min(100vw, 950px));
  }
}
.plan-box__family-text {
  font-size: 4.5333333333vw;
  font-weight: 700;
  color: #FF0033;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-box__family-text {
    font-size: calc(0.0252631579 * min(100vw, 950px));
  }
}
.plan-box__family-text .u-f-helvetica {
  font-size: 6.9333333333vw;
  line-height: 1;
  margin-right: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-box__family-text .u-f-helvetica {
    font-size: calc(0.0378947368 * min(100vw, 950px));
    margin-right: calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-box__text-total {
  color: #FF0033;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-align: center;
  padding-top: 8.5333333333vw;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-box__text-total {
    font-size: calc(0.0315789474 * min(100vw, 950px));
    padding-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.plan-box__text-total .u-f-helvetica {
  font-size: 8.5333333333vw;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-box__text-total .u-f-helvetica {
    font-size: calc(0.0505263158 * min(100vw, 950px));
    margin: 0 calc(0.0021052632 * min(100vw, 950px));
  }
}
.plan-box__text-total::before {
  content: "";
  position: absolute;
  top: 3.2vw;
  left: 50%;
  transform: translateX(-50%);
  width: 14.4vw;
  height: 4.2666666667vw;
  background: #2F3965;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .plan-box__text-total::before {
    top: calc(0.0210526316 * min(100vw, 950px));
    width: calc(0.1136842105 * min(100vw, 950px));
    height: calc(0.0336842105 * min(100vw, 950px));
  }
}

.modal-panel {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-panel {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.modal-panel__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.7333333333vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal-panel__list {
    grid-template-columns: 1fr 1fr;
    gap: calc(0.0315789474 * min(100vw, 950px)) calc(0.0378947368 * min(100vw, 950px));
  }
}
.modal-panel__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 0.2666666667vw #2F3965 solid;
  box-shadow: 1.0666666667vw 1.0666666667vw 0 #2F3965;
  border-radius: 2.1333333333vw;
  padding: 2.1333333333vw 4.2666666667vw;
  width: calc(100% - 1.0666666667vw);
  height: 21.3333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal-panel__button {
    border-width: calc(0.0021052632 * min(100vw, 950px));
    box-shadow: calc(0.0063157895 * min(100vw, 950px)) calc(0.0063157895 * min(100vw, 950px)) 0 #2F3965;
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    padding: calc(0.0105263158 * min(100vw, 950px)) calc(0.0210526316 * min(100vw, 950px));
    width: calc(100% - 0.0063157895 * min(100vw, 950px));
    height: calc(0.1178947368 * min(100vw, 950px));
  }
}
.modal-panel__button::after {
  content: "";
  width: 6.4vw;
  aspect-ratio: 1/1;
  background: url("../images/ico_plus_01.svg?202511") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .modal-panel__button::after {
    width: calc(0.0336842105 * min(100vw, 950px));
  }
}
.modal-panel__image {
  display: block;
  width: 16vw;
  margin-right: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-panel__image {
    width: calc(0.0842105263 * min(100vw, 950px));
    margin-right: calc(0.0105263158 * min(100vw, 950px));
  }
}
.modal-panel__image img {
  height: 100%;
  object-fit: contain;
}
.modal-panel__text {
  color: #2F3965;
  font-weight: 700;
  font-size: 4.5333333333vw;
  line-height: 1.3;
  flex: 1 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .modal-panel__text {
    font-size: calc(0.0252631579 * min(100vw, 950px));
  }
}
.modal-panel__text--red {
  color: #FF0033;
}

.store-banner {
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .store-banner {
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.store-banner__box {
  padding: 4.8vw 0 4.2666666667vw;
  background: url("../images/bg_sakura_02.png") no-repeat top center/146.1333333333vw 81.8666666667vw, linear-gradient(to bottom, #FF90A5, #FFC9D3);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .store-banner__box {
    padding: calc(0.0315789474 * min(100vw, 950px)) 0 calc(0.0526315789 * min(100vw, 950px));
    background-size: contain;
    width: calc(0.7263157895 * min(100vw, 950px));
  }
}
.store-banner__title {
  width: 92vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .store-banner__title {
    width: calc(0.6 * min(100vw, 950px));
  }
}
.store-banner__title img {
  width: 100%;
}
.store-banner__inner {
  background: #fff;
  padding: 6.4vw 2.6666666667vw;
  border-radius: 2.1333333333vw;
  margin: 4.2666666667vw 4vw 0;
}
@media screen and (min-width: 768px) {
  .store-banner__inner {
    padding: calc(0.0315789474 * min(100vw, 950px));
    border-radius: calc(0.0105263158 * min(100vw, 950px));
    margin: calc(0.0210526316 * min(100vw, 950px)) calc(0.0526315789 * min(100vw, 950px)) 0;
  }
}
.store-banner__message {
  text-align: center;
  font-size: 5.3333333333vw;
  font-weight: 700;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .store-banner__message {
    font-size: calc(0.0294736842 * min(100vw, 950px));
    margin-bottom: calc(0.0210526316 * min(100vw, 950px));
  }
}
.store-banner__lead {
  background: #FF2953;
  border-radius: 0.8vw;
  padding: 1.6vw;
  margin: 0 auto;
  height: 5.8666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69.6vw;
}
@media screen and (min-width: 768px) {
  .store-banner__lead {
    border-radius: calc(0.0052631579 * min(100vw, 950px));
    padding: calc(0.0084210526 * min(100vw, 950px));
    height: calc(0.0368421053 * min(100vw, 950px));
    width: 100%;
  }
}
.store-banner__prize {
  margin: 2.1333333333vw auto 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .store-banner__prize {
    margin-top: calc(0.0210526316 * min(100vw, 950px));
    width: calc(0.4210526316 * min(100vw, 950px));
  }
}
.store-banner__prize img {
  width: 100%;
}
.store-banner__terms {
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin: 2.6666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .store-banner__terms {
    font-size: calc(0.02 * min(100vw, 950px));
    margin-top: calc(0.0105263158 * min(100vw, 950px));
    width: calc(0.4210526316 * min(100vw, 950px));
  }
}
.store-banner__ribbon {
  margin: 4.2666666667vw auto 0;
  width: 62.1333333333vw;
}
@media screen and (min-width: 768px) {
  .store-banner__ribbon {
    margin-top: calc(0.0210526316 * min(100vw, 950px));
    width: calc(0.3621052632 * min(100vw, 950px));
  }
}
.store-banner__ribbon img {
  width: 100%;
}
.store-banner__image {
  margin: 4.2666666667vw auto 0;
  width: 51.4666666667vw;
}
@media screen and (min-width: 768px) {
  .store-banner__image {
    margin-top: calc(0.0105263158 * min(100vw, 950px));
    width: calc(0.2463157895 * min(100vw, 950px));
  }
}
.store-banner__accordion {
  padding: 2.1333333333vw 0;
  border-top: 0.2666666667vw #DDD solid;
  border-bottom: 0.2666666667vw #DDD solid;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .store-banner__accordion {
    padding: calc(0.0105263158 * min(100vw, 950px)) 0;
    border-width: calc(0.0015789474 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.store-banner__accordion-title {
  font-size: 3.2vw;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .store-banner__accordion-title {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.store-banner__accordion-title::before, .store-banner__accordion-title::after {
  position: absolute;
  right: 0;
  top: calc(50% - 0.2666666667vw);
  content: "";
  width: 3.7333333333vw;
  height: 0.2666666667vw;
  background: currentColor;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .store-banner__accordion-title::before, .store-banner__accordion-title::after {
    width: calc(0.0147368421 * min(100vw, 950px));
    height: calc(0.0010526316 * min(100vw, 950px));
    top: calc(50% - 0.0010526316 * min(100vw, 950px));
  }
}
.store-banner__accordion-title::after {
  transform: rotate(90deg);
}
.store-banner__accordion-title.is-open::after {
  transform: rotate(180deg);
}
.store-banner__accordion-text {
  font-size: 2.6666666667vw;
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .store-banner__accordion-text {
    font-size: max(0.0126315789 * min(100vw, 950px), 10px);
    margin-top: calc(0.0105263158 * min(100vw, 950px));
  }
}
.store-banner__link {
  font: inherit;
  color: inherit;
}
.store-banner__notes {
  margin: 4.2666666667vw 0 0;
  font-size: 2.6666666667vw;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .store-banner__notes {
    margin-top: calc(0.0210526316 * min(100vw, 950px));
    font-size: calc(0.0105263158 * min(100vw, 950px));
  }
}
@media screen and (max-width: 767px) {
  .store-banner__button {
    margin-top: 6.4vw;
    max-width: 78.6666666667vw;
    gap: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .store-banner__button {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}

.slider {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .slider {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}

.c-card-slider {
  opacity: 0;
}
.c-card-slider.slick-initialized {
  opacity: 1;
}
.c-card-slider__item {
  cursor: pointer;
  position: relative;
  margin: 0 0 0 5.3333333333vw;
  padding: 19.2vw 4.8vw 0;
  width: 64vw;
  min-height: 70.9333333333vw;
  background-color: #fff;
  border: 0.2666666667vw solid var(--baseColor);
  border-radius: 2.6666666667vw;
  box-shadow: 1.0666666667vw 1.0666666667vw 0 0 var(--baseColor);
}
.c-card-slider__item:hover {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-card-slider__item:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .c-card-slider__item {
    margin: 0 calc(0.0252631579 * min(100vw, 950px)) 0 0;
    padding: calc(0.1136842105 * min(100vw, 950px)) calc(0.0231578947 * min(100vw, 950px)) 0;
    width: calc(0.4336842105 * min(100vw, 950px));
    min-height: calc(0.38 * min(100vw, 950px));
    border-width: calc(0.0021052632 * min(100vw, 950px));
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    box-shadow: calc(0.0063157895 * min(100vw, 950px)) calc(0.0063157895 * min(100vw, 950px)) 0 0 var(--baseColor);
  }
}
.c-card-slider__item::before, .c-card-slider__item::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1/1;
}
.c-card-slider__item::before {
  width: 10.6666666667vw;
  top: 4.2666666667vw;
  left: 4.2666666667vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-card-slider__item::before {
    width: calc(0.0631578947 * min(100vw, 950px));
    top: calc(0.0252631579 * min(100vw, 950px));
    left: calc(0.0252631579 * min(100vw, 950px));
  }
}
.c-card-slider__item::after {
  width: 6.4vw;
  bottom: 5.3333333333vw;
  right: 5.3333333333vw;
  border-radius: 50%;
  background-color: var(--baseColor);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%20%3Cg%20transform%3D%22translate(-951%20-1681)%22%3E%20%3Crect%20width%3D%222%22%20height%3D%2218%22%20rx%3D%221%22%20transform%3D%22translate(959%201681)%22%20fill%3D%22%23fff%22%2F%3E%20%3Crect%20width%3D%222%22%20height%3D%2218%22%20rx%3D%221%22%20transform%3D%22translate(969%201689)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}
@media screen and (min-width: 768px) {
  .c-card-slider__item::after {
    bottom: calc(0.0252631579 * min(100vw, 950px));
    right: calc(0.0284210526 * min(100vw, 950px));
    width: calc(0.0336842105 * min(100vw, 950px));
  }
}
.c-card-slider__heading {
  font-size: 4.5333333333vw;
  font-weight: 700;
  color: var(--baseColor);
}
@media screen and (min-width: 768px) {
  .c-card-slider__heading {
    font-size: calc(0.0252631579 * min(100vw, 950px));
  }
}
.c-card-slider__heading--strong {
  color: var(--primeColor);
}
.c-card-slider__body {
  font-size: 3.2vw;
  font-weight: 700;
  margin-top: 4.2666666667vw;
  color: var(--baseColor);
}
@media screen and (min-width: 768px) {
  .c-card-slider__body {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    margin-top: calc(0.0252631579 * min(100vw, 950px));
  }
}
.c-card-slider .slick-list {
  padding-bottom: 2.6666666667vw;
}
@media screen and (max-width: 767px) {
  .c-card-slider .slick-list {
    padding-left: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .c-card-slider .slick-list {
    padding-bottom: calc(0.0105263158 * min(100vw, 950px));
  }
}
.c-card-slider .slick-track {
  display: flex;
}
.c-card-slider .slick-slide {
  height: auto;
}

.c-card-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6.4vw;
  margin: 6.4vw auto 0;
}
@media screen and (min-width: 768px) {
  .c-card-arrows {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.c-card-arrows__count {
  font-size: 4.5333333333vw;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .c-card-arrows__count {
    font-size: calc(0.0336842105 * min(100vw, 950px));
  }
}
.c-card-arrows__divide {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0.8vw;
}
.c-card-arrows .slick-arrow {
  border: none;
  text-indent: -9999px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--baseColor);
  background-image: url("../images/ico_slider-arrow_03.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-card-arrows .slick-arrow {
    width: calc(0.0505263158 * min(100vw, 950px));
  }
}
.c-card-arrows .slick-next {
  rotate: 180deg;
}

.p-debut-protect__inner {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-debut-protect__inner {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-debut-protect__box {
  background-color: #fff;
  border-radius: 3.7333333333vw;
  padding: 6.4vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-debut-protect__box {
    border-radius: calc(0.0421052632 * min(100vw, 950px));
    padding: calc(0.0421052632 * min(100vw, 950px)) calc(0.1263157895 * min(100vw, 950px));
  }
}
.p-debut-protect__box + .p-debut-protect__box {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-debut-protect__box + .p-debut-protect__box {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-debut-protect .c-balloon:not(:first-child) {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-debut-protect .c-balloon:not(:first-child) {
    margin-top: calc(0.0505263158 * min(100vw, 950px));
  }
}

.p-attention {
  --balloonColor: #FF820C;
}
.p-attention__text {
  font-size: 3.2vw;
  font-weight: 700;
  margin: 4vw 0 0;
}
@media screen and (min-width: 768px) {
  .p-attention__text {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    margin-top: calc(0.0263157895 * min(100vw, 950px));
  }
}
.p-attention__text--strong {
  color: var(--balloonColor);
}
.p-attention__list {
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .p-attention__list {
    margin-top: calc(0.0168421053 * min(100vw, 950px));
  }
}
.p-attention__item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 3.2vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-attention__item {
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.p-attention__item--strong {
  color: var(--balloonColor);
}
.p-attention__item + .p-attention__item {
  margin-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-attention__item + .p-attention__item {
    margin-top: calc(0.0084210526 * min(100vw, 950px));
  }
}

.p-relief {
  --balloonColor: var(--primeColor);
}
.p-relief .c-balloon + .p-relief__box {
  margin-top: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-relief .c-balloon + .p-relief__box {
    margin-top: calc(0.0178947368 * min(100vw, 950px));
  }
}
.p-relief__box {
  margin-top: 3.2vw;
  padding: 2.6666666667vw;
  background-color: #FFEFF1;
}
@media screen and (min-width: 768px) {
  .p-relief__box {
    margin-top: calc(0.0084210526 * min(100vw, 950px));
    padding: calc(0.0252631579 * min(100vw, 950px));
  }
}
.p-relief__heading {
  font-size: 4.5333333333vw;
  font-weight: 700;
  text-align: center;
  color: var(--primeColor);
  margin: 2.9333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .p-relief__heading {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0178947368 * min(100vw, 950px));
  }
}
.p-relief__list {
  margin: 0;
}
.p-relief__list--number {
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .p-relief__list--number {
    margin-top: calc(0.0084210526 * min(100vw, 950px));
  }
}
.p-relief__list--color {
  color: var(--primeColor);
}
.p-relief__text, .p-relief__item {
  font-size: 3.2vw;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-relief__text, .p-relief__item {
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.p-relief__text--strong, .p-relief__item--strong {
  color: var(--primeColor);
}
.p-relief__text--notes {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-relief__text--notes {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.p-relief__item {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-relief__item {
    margin-top: calc(0.0084210526 * min(100vw, 950px));
  }
}
.p-relief__item--notes {
  margin: 2.1333333333vw 0 0;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-relief__item--notes {
    margin-top: calc(0.0168421053 * min(100vw, 950px));
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.p-relief__item--number {
  text-indent: -2em;
  padding-left: 2em;
  font-size: 2.6666666667vw;
  font-weight: 500;
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-relief__item--number {
    font-size: calc(0.0147368421 * min(100vw, 950px));
    margin-top: calc(0.0084210526 * min(100vw, 950px));
  }
}
.p-relief__item--number + .p-relief__item--number {
  margin-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-relief__item--number + .p-relief__item--number {
    margin-top: calc(0.0042105263 * min(100vw, 950px));
  }
}
.p-relief__item--color {
  font-size: 2.6666666667vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-relief__item--color {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.p-relief__sup--period {
  position: relative;
  left: -calcSP(5);
}
.p-relief__image {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-relief__image {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-relief__image--expansion {
  margin: 6.4vw 0;
}
@media screen and (min-width: 768px) {
  .p-relief__image--expansion {
    margin: calc(0.0421052632 * min(100vw, 950px)) 0;
  }
}
.p-relief__image--expansion img {
  margin: 0 auto;
}
.p-relief__image img {
  margin: 0 auto;
}
.p-relief__link {
  color: #FF0033;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
}
.p-relief__button {
  max-width: 460px;
  width: 100%;
  margin: 8.5333333333vw auto 0;
}
@media screen and (min-width: 768px) {
  .p-relief__button {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-relief__table {
  text-align: center;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-relief__table {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-relief__table tr {
  border-top: 1px solid var(--primeColor);
  border-left: 1px solid var(--primeColor);
}
.p-relief__table :where(th, td) {
  border-bottom: 1px solid var(--primeColor);
  border-right: 1px solid var(--primeColor);
  padding: 2.6666666667vw;
  font-size: 3.2vw;
  font-weight: 700;
  width: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-relief__table :where(th, td) {
    min-height: 48px;
    font-size: calc(0.0210526316 * min(100vw, 950px));
    padding: calc(0.0105263158 * min(100vw, 950px));
  }
}
.p-relief__table + .p-relief__list--number {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-relief__table + .p-relief__list--number {
    margin-top: calc(0.0168421053 * min(100vw, 950px));
  }
}
.p-relief__table-head th {
  background-color: var(--primeColor);
  color: #fff;
}
.p-relief__table-head td {
  background-color: #FFEFF1;
}

.p-relief-confirmation__title {
  font-size: 3.2vw;
  font-weight: 700;
  text-align: center;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__title {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-relief-confirmation__heading {
  font-size: 3.2vw;
  font-weight: 700;
  color: #fff;
  background-color: var(--primeColor);
  padding: 2.1333333333vw 1.3333333333vw 2.1333333333vw 2.6666666667vw;
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__heading {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    padding: calc(0.0084210526 * min(100vw, 950px)) calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0252631579 * min(100vw, 950px));
  }
}
.p-relief-confirmation__heading--notes {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__heading--notes {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.p-relief-confirmation__dl {
  margin-top: 4.2666666667vw;
  padding: 0 2.6666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__dl {
    margin-top: calc(0.0252631579 * min(100vw, 950px));
    padding: 0 calc(0.0252631579 * min(100vw, 950px));
  }
}
.p-relief-confirmation__dl + .p-relief-confirmation__heading {
  margin-top: 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__dl + .p-relief-confirmation__heading {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-relief-confirmation__dt {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__dt {
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.p-relief-confirmation__dd {
  font-size: 2.6666666667vw;
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__dd {
    font-size: calc(0.0147368421 * min(100vw, 950px));
    margin-top: calc(0.0042105263 * min(100vw, 950px));
  }
}
.p-relief-confirmation__dd + .p-relief-confirmation__dt {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-relief-confirmation__dd + .p-relief-confirmation__dt {
    margin-top: calc(0.0168421053 * min(100vw, 950px));
  }
}

.p-knowledge-modal {
  --iconWidth: calcSP(40);
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal {
    --iconWidth: calc(calcPC(82) / 60 * 40);
  }
}
.p-knowledge-modal__graph img {
  margin: 0 auto;
}
.p-knowledge-modal__heading {
  font-size: 4.5333333333vw;
  font-weight: 700;
  color: var(--primeColor);
  text-align: center;
  margin-top: 4.2666666667vw;
  padding-top: 4.2666666667vw;
  border-top: 0.2666666667vw solid var(--baseColor);
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal__heading {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    padding-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-knowledge-modal__heading .c-roboto {
  font-size: 5.3333333333vw;
  position: relative;
  top: 0.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal__heading .c-roboto {
    font-size: calc(0.0294736842 * min(100vw, 950px));
  }
}
.p-knowledge-modal__heading + .p-knowledge-modal__graph {
  margin-top: 4.2666666667vw;
  padding-top: 4.2666666667vw;
  border-top: 0.2666666667vw solid var(--baseColor);
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal__heading + .p-knowledge-modal__graph {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    padding-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-knowledge-modal__text {
  font-size: 3.2vw;
  font-weight: 700;
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal__text {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-knowledge-modal__image {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal__image {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-knowledge-modal__image img {
  margin: 0 auto;
}
.p-knowledge-modal__inner {
  background-color: #fff;
  padding: 23px 20px;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal__inner {
    padding: 40px 64px;
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.p-knowledge-modal__button {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .p-knowledge-modal__button {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    max-width: calc(0.4842105263 * min(100vw, 950px));
  }
}

.c-balloon {
  background-color: var(--balloonColor);
  font-size: 3.2vw;
  font-weight: 700;
  color: #fff;
  border-radius: 266.4vw;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5333333333vw 4.2666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-balloon {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    padding: calc(0.0042105263 * min(100vw, 950px)) calc(0.0252631579 * min(100vw, 950px));
  }
}
.c-balloon::after {
  content: "";
  display: block;
  width: 3.7333333333vw;
  aspect-ratio: 14/11;
  position: absolute;
  top: calc(100% - 1.3333333333vw);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--balloonColor);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .c-balloon::after {
    top: calc(100% - 0.0010526316 * min(100vw, 950px));
    width: calc(0.0147368421 * min(100vw, 950px));
  }
}

.product {
  margin-top: 6.4vw;
  padding-bottom: 12.8vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .product {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    padding-bottom: calc(0.1010526316 * min(100vw, 950px));
  }
}
.product::before, .product::after {
  position: absolute;
  content: "";
  display: block;
  width: 12.8vw;
  height: 3.2vw;
  background: #2F3965;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .product::before, .product::after {
    width: calc(0.1010526316 * min(100vw, 950px));
    height: calc(0.0252631579 * min(100vw, 950px));
  }
}
.product::before {
  bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .product::before {
    bottom: calc(0.0336842105 * min(100vw, 950px));
  }
}
.product::after {
  bottom: 0;
  opacity: 0.5;
}
.product__text-link {
  margin: 4.2666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .product__text-link {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.product__button {
  gap: 6.4vw;
  margin: 6.4vw auto 0;
}
@media screen and (min-width: 768px) {
  .product__button {
    gap: calc(0.0315789474 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}

.product-tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .product-tab {
    gap: calc(0.0294736842 * min(100vw, 950px));
    width: calc(0.9642105263 * min(100vw, 950px));
    margin: 0 auto;
  }
}
.product-tab__item {
  border: 0.2666666667vw #2F3965 solid;
  border-radius: 1.0666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12.2666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  box-shadow: 0.5333333333vw 0.5333333333vw 0 #2F3965;
  transition: 0.3s;
  cursor: pointer;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .product-tab__item {
    border-width: calc(0.0021052632 * min(100vw, 950px));
    border-radius: calc(0.0042105263 * min(100vw, 950px));
    height: calc(0.0842105263 * min(100vw, 950px));
    font-size: calc(0.0294736842 * min(100vw, 950px));
    box-shadow: calc(0.0042105263 * min(100vw, 950px)) calc(0.0042105263 * min(100vw, 950px)) 0 #2F3965;
  }
}
.product-tab__item .u-f-helvetica {
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .product-tab__item .u-f-helvetica {
    font-size: calc(0.0336842105 * min(100vw, 950px));
  }
}
.product-tab__item.is-active {
  background: #2F3965;
  color: #fff;
  box-shadow: 0 0 #2F3965;
  transform: translate(0.5333333333vw, 0.5333333333vw);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .product-tab__item.is-active {
    transform: translate(calc(0.0042105263 * min(100vw, 950px)), calc(0.0042105263 * min(100vw, 950px)));
  }
}

.product-tab-content {
  margin: 6.4vw 0 0;
}
@media screen and (min-width: 768px) {
  .product-tab-content {
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.product-tab-content__item:not(.is-active) {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.product-slider__list {
  width: 49.3333333333vw;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .product-slider__list {
    width: calc(0.4 * min(100vw, 950px));
  }
}
.product-slider__wrapper {
  border-radius: 2.1333333333vw;
  box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.16);
  margin: 0 1.3333333333vw;
  text-align: center;
  width: 46.6666666667vw;
  height: 53.3333333333vw;
  padding: 2.6666666667vw;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .product-slider__wrapper {
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    box-shadow: 0 calc(0.0052631579 * min(100vw, 950px)) calc(0.0094736842 * min(100vw, 950px)) rgba(0, 0, 0, 0.16);
    width: calc(0.3789473684 * min(100vw, 950px));
    height: calc(0.4305263158 * min(100vw, 950px));
    margin: 0 calc(0.0105263158 * min(100vw, 950px));
    padding: calc(0.0105263158 * min(100vw, 950px)) calc(0.0210526316 * min(100vw, 950px)) calc(0.0210526316 * min(100vw, 950px));
  }
}
.product-slider__image {
  width: 34.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .product-slider__image {
    width: calc(0.3157894737 * min(100vw, 950px));
  }
}
.product-slider__image img {
  width: 100%;
}
.product-slider__name, .product-slider__capacity {
  font-size: 3.2vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .product-slider__name, .product-slider__capacity {
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.product-slider__name {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .product-slider__name {
    margin-top: calc(0.0252631579 * min(100vw, 950px));
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.product-slider .slick-list {
  overflow: visible;
}
.product-slider .slick-arrow {
  position: absolute;
  z-index: 1;
  display: block;
  width: 10.6666666667vw;
  aspect-ratio: 1/1;
  cursor: pointer;
  color: transparent;
  background: url("../images/ico_slider-arrow_01.png?202511") no-repeat center center/contain;
  border: none;
}
@media screen and (min-width: 768px) {
  .product-slider .slick-arrow {
    width: calc(0.0631578947 * min(100vw, 950px));
  }
}
.product-slider .slick-prev {
  right: calc(100% + 3.2vw);
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .product-slider .slick-prev {
    right: calc(100% + 0.0147368421 * min(100vw, 950px));
  }
}
.product-slider .slick-next {
  left: calc(100% + 3.2vw);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .product-slider .slick-next {
    left: calc(100% + 0.0147368421 * min(100vw, 950px));
  }
}
.product-slider .slick-slide {
  transition: transform 0.3s;
}
.product-slider .slick-slide:not(.slick-current) {
  transform: scale(0.8);
}

.rule {
  margin-top: 9.0666666667vw;
}
@media screen and (min-width: 768px) {
  .rule {
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.rule__image {
  margin: 8.5333333333vw auto 0;
  width: 91.3043478261%;
}
@media screen and (min-width: 768px) {
  .rule__image {
    margin-top: calc(0.0842105263 * min(100vw, 950px));
    max-width: calc(0.8084210526 * min(100vw, 950px));
    width: 100%;
  }
}
.rule__movie {
  background-color: #fff;
  max-width: 204.8vw;
  width: 91.3043478261%;
  margin: 0 auto;
  padding: 4.2666666667vw 0;
}
@media screen and (min-width: 768px) {
  .rule__movie {
    width: 100%;
    padding: calc(0.0421052632 * min(100vw, 950px)) 0;
  }
}
.rule__movie-heading {
  font-size: 3.7333333333vw;
  font-weight: 900;
  color: #FF0033;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rule__movie-heading {
    font-size: calc(0.0294736842 * min(100vw, 950px));
  }
}
.rule__movie-heading span {
  font-size: 3.2vw;
  font-weight: 700;
  display: block;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  border-bottom: 0.2666666667vw solid currentColor;
}
@media screen and (min-width: 768px) {
  .rule__movie-heading span {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    border-width: calc(0.0021052632 * min(100vw, 950px));
  }
}
.rule__movie-heading span::before, .rule__movie-heading span::after {
  content: "";
  display: block;
  width: 0.35em;
  aspect-ratio: 1/1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.rule__movie-heading span::before {
  background-color: currentColor;
  top: 100%;
}
.rule__movie-heading span::after {
  background-color: #fff;
  top: calc(100% - 0.5333333333vw);
}
@media screen and (min-width: 768px) {
  .rule__movie-heading span::after {
    top: calc(100% - 0.0042105263 * min(100vw, 950px));
  }
}
.rule__movie-thumbnail {
  width: 87.3015873016%;
  margin: 2.1333333333vw auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .rule__movie-thumbnail {
    width: calc(0.5789473684 * min(100vw, 950px));
  }
}
.rule__movie-thumbnail::before, .rule__movie-thumbnail::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  pointer-events: none;
}
.rule__movie-thumbnail::before {
  width: 10.6666666667vw;
  background-color: rgba(255, 0, 51, 0.65);
  border-radius: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .rule__movie-thumbnail::before {
    width: calc(0.0631578947 * min(100vw, 950px));
  }
}
.rule__movie-thumbnail::after {
  background-color: #fff;
  width: 4vw;
  clip-path: polygon(0 0, 0% 100%, 50% 50%);
  translate: -15% -50%;
}
@media screen and (min-width: 768px) {
  .rule__movie-thumbnail::after {
    width: calc(0.0315789474 * min(100vw, 950px));
  }
}
@media screen and (max-width: 767px) {
  .rule__button {
    gap: 2.1333333333vw;
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .rule__button {
    padding: 0 calc(0.0105263158 * min(100vw, 950px)) 0 0;
  }
}
.rule__text-link {
  margin: 6.4vw auto 0;
}
@media screen and (min-width: 768px) {
  .rule__text-link {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}

.support__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  margin: 5.3333333333vw auto 0;
  text-align: center;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support__heading {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.support__heading::before, .support__heading::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .support__heading::before, .support__heading::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.support__heading::before {
  transform: rotate(-20deg);
}
.support__heading::after {
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .support__heading {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0315789474 * min(100vw, 950px));
  }
}
.support__heading::before, .support__heading::after {
  width: 0.5333333333vw;
  height: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support__heading::before, .support__heading::after {
    width: calc(0.0026315789 * min(100vw, 950px));
    height: calc(0.0294736842 * min(100vw, 950px));
  }
}
.support__heading::before {
  transform: rotate(-20deg);
}
.support__heading::after {
  transform: rotate(20deg);
}
.support__deco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  text-align: center;
  align-items: flex-end;
  margin: 10.6666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .support__deco {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.support__deco::before, .support__deco::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .support__deco::before, .support__deco::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.support__deco::before {
  transform: rotate(-20deg);
}
.support__deco::after {
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .support__deco {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.support__deco::before, .support__deco::after {
  width: 0.5333333333vw;
  height: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .support__deco::before, .support__deco::after {
    width: calc(0.0026315789 * min(100vw, 950px));
    height: calc(0.0294736842 * min(100vw, 950px));
  }
}
.support__deco::before {
  transform: rotate(-20deg) translateY(-1.0666666667vw);
}
@media screen and (min-width: 768px) {
  .support__deco::before {
    transform: rotate(-20deg) translateY(calc(-0.0042105263 * min(100vw, 950px)));
  }
}
.support__deco::after {
  transform: rotate(20deg) translateY(-1.0666666667vw);
}
@media screen and (min-width: 768px) {
  .support__deco::after {
    transform: rotate(20deg) translateY(calc(-0.0042105263 * min(100vw, 950px)));
  }
}
.support__balloon {
  background: #2F3965;
  color: #fff;
  font-size: 2.6666666667vw;
  width: fit-content;
  margin: 2.1333333333vw auto 0;
  border-radius: 1.0666666667vw;
  padding: 0.5333333333vw 3.2vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .support__balloon {
    font-size: calc(0.0189473684 * min(100vw, 950px));
    padding: calc(0.0042105263 * min(100vw, 950px)) calc(0.0189473684 * min(100vw, 950px));
    border-radius: calc(0.0063157895 * min(100vw, 950px));
    margin-top: calc(0.0105263158 * min(100vw, 950px));
  }
}
.support__balloon::after {
  content: "";
  position: absolute;
  display: block;
  width: 3.2vw;
  height: 2.1333333333vw;
  background: #2F3965;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  top: calc(100% - 0.5333333333vw);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .support__balloon::after {
    width: calc(0.0252631579 * min(100vw, 950px));
    height: calc(0.0168421053 * min(100vw, 950px));
    top: calc(100% - 0.0010526316 * min(100vw, 950px));
  }
}
.support__lead {
  font-size: 5.3333333333vw;
  text-align: center;
  margin: 2.6666666667vw 0 0;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .support__lead {
    font-size: calc(0.0294736842 * min(100vw, 950px));
    margin-top: calc(0.0273684211 * min(100vw, 950px));
  }
}
.support__lead--red {
  color: #FF0033;
}
.support__lead sup {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support__lead sup {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.support__figure {
  border-radius: 2.1333333333vw;
  border: 0.2666666667vw #2F3965 solid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .support__figure {
    border-width: calc(0.0015789474 * min(100vw, 950px));
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    margin: calc(0.0210526316 * min(100vw, 950px)) auto 0;
    width: calc(0.7157894737 * min(100vw, 950px));
  }
}
.support__figure-container {
  padding: 4.2666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .support__figure-container {
    padding: calc(0.0210526316 * min(100vw, 950px));
  }
}
.support__figure-container:first-child {
  border-right: 0.2666666667vw #2F3965 solid;
  --text-color: #818181;
  background: #EAEAEA;
}
@media screen and (min-width: 768px) {
  .support__figure-container:first-child {
    border-width: calc(0.0015789474 * min(100vw, 950px));
  }
}
.support__figure-container:last-child {
  --text-color: #FF0033;
  background: #fff;
}
.support__figure-times {
  font-size: 2.6666666667vw;
  color: #fff;
  font-weight: 700;
  padding: 0.2666666667vw 3.2vw;
  border-radius: 99px;
  background: var(--text-color);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .support__figure-times {
    font-size: calc(0.0189473684 * min(100vw, 950px));
    padding: calc(0.0021052632 * min(100vw, 950px)) calc(0.0189473684 * min(100vw, 950px));
  }
}
.support__figure-text {
  font-size: 4.2666666667vw;
  margin: 1.0666666667vw 0 0;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .support__figure-text {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0084210526 * min(100vw, 950px));
  }
}
.support__figure-text::first-line {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support__figure-text::first-line {
    font-size: calc(0.0168421053 * min(100vw, 950px));
  }
}
.support__text-link {
  margin: 6.4vw auto 0;
}
@media screen and (min-width: 768px) {
  .support__text-link {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.support__note {
  font-size: 2.6666666667vw;
  color: #333;
  margin: 4.2666666667vw 0 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support__note {
    font-size: calc(0.0147368421 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    margin-bottom: calc(0.0421052632 * min(100vw, 950px));
  }
}
.support__video {
  display: block;
  position: relative;
  padding: 0;
  border: 1px solid #2F3965;
  margin: 2.1333333333vw auto 0;
}
@media screen and (min-width: 768px) {
  .support__video {
    width: calc(0.6526315789 * min(100vw, 950px));
    margin: calc(0.0105263158 * min(100vw, 950px)) auto 0;
  }
}
.support__video img {
  width: 100%;
}
.support__video::before {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10.6666666667vw;
  aspect-ratio: 1/1;
  background: url("../images/ico_video_02.svg?202511") no-repeat center center/contain;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .support__video::before {
    width: calc(0.0631578947 * min(100vw, 950px));
  }
}
@media (hover: hover) and (pointer: fine) {
  .support__video:hover {
    opacity: 1;
  }
  .support__video:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.sim__deco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  margin: 10.6666666667vw auto 0;
  text-align: center;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sim__deco {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.sim__deco::before, .sim__deco::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .sim__deco::before, .sim__deco::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.sim__deco::before {
  transform: rotate(-20deg);
}
.sim__deco::after {
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .sim__deco {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.sim__deco::before, .sim__deco::after {
  width: 0.5333333333vw;
  height: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sim__deco::before, .sim__deco::after {
    width: calc(0.0026315789 * min(100vw, 950px));
    height: calc(0.0294736842 * min(100vw, 950px));
  }
}
.sim__deco::before {
  transform: rotate(-20deg);
}
.sim__deco::after {
  transform: rotate(20deg);
}
.sim__title {
  text-align: center;
  font-size: 5.3333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sim__title {
    font-size: calc(0.0294736842 * min(100vw, 950px));
  }
}
.sim__title sup {
  font-size: 2.6666666667vw;
}
@media screen and (max-width: 767px) {
  .sim__title sup {
    position: absolute;
  }
}
@media screen and (min-width: 768px) {
  .sim__title sup {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.sim__lead {
  font-size: 5.3333333333vw;
  text-align: center;
  margin: 2.6666666667vw 0 0;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .sim__lead {
    font-size: calc(0.0294736842 * min(100vw, 950px));
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
.sim__lead sup {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sim__lead sup {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.sim__text-link {
  margin: 4.2666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .sim__text-link {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.sim__image {
  margin: 4.2666666667vw auto 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sim__image {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    margin-bottom: calc(0.0631578947 * min(100vw, 950px));
    width: calc(0.5073684211 * min(100vw, 950px));
  }
}
.sim__image img {
  width: 100%;
}
.sim__heading {
  font-size: 5.3333333333vw;
  font-weight: 700;
  margin: 4.2666666667vw 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sim__heading {
    font-size: calc(0.0336842105 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.sim__list {
  display: flex;
  flex-direction: column;
  gap: 3.2vw;
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .sim__list {
    flex-direction: row;
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    gap: 0;
  }
}
.sim__item {
  display: flex;
  gap: 2.1333333333vw;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .sim__item {
    width: 33.3333333333%;
    flex-direction: column;
    gap: calc(0.0168421053 * min(100vw, 950px));
  }
}
.sim__icon {
  width: 13.3333333333vw;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  background: #FFF3E6;
  border-radius: 999px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .sim__icon {
    width: calc(0.1263157895 * min(100vw, 950px));
  }
}
.sim__icon img {
  width: 100%;
}
.sim__text-main {
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: #FF0033;
  margin: 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .sim__text-main {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    text-align: center;
  }
}
.sim__text {
  font-size: 3.2vw;
  margin: 1.0666666667vw 0 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .sim__text {
    font-size: calc(0.0189473684 * min(100vw, 950px));
    margin-top: calc(0.0084210526 * min(100vw, 950px));
    text-align: center;
  }
}
.sim__button {
  gap: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .sim__button {
    gap: calc(0.0105263158 * min(100vw, 950px));
  }
}
.sim__note {
  font-size: 2.6666666667vw;
  color: #333;
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .sim__note {
    font-size: max(0.0126315789 * min(100vw, 950px), 10px);
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    text-align: center;
  }
}

.flow {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.flow__tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .flow__tab-list {
    gap: calc(0.0294736842 * min(100vw, 950px));
  }
}
.flow__tab-button {
  width: calc(100% - 0.5333333333vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2F3965;
  font-size: 4.2666666667vw;
  font-weight: 700;
  border: 0.2666666667vw #2F3965 solid;
  border-radius: 1.0666666667vw;
  box-shadow: 0.5333333333vw 0.5333333333vw 0 #2F3965;
  height: 12.8vw;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .flow__tab-button {
    width: calc(100% - 0.0042105263 * min(100vw, 950px));
    font-size: calc(0.0294736842 * min(100vw, 950px));
    height: calc(0.0842105263 * min(100vw, 950px));
    border-radius: calc(0.0042105263 * min(100vw, 950px));
    border-width: calc(0.0021052632 * min(100vw, 950px));
    box-shadow: calc(0.0042105263 * min(100vw, 950px)) calc(0.0042105263 * min(100vw, 950px)) 0 #2F3965;
  }
}
.flow__tab-button.is-active {
  background: #2F3965;
  color: #fff;
  box-shadow: 0 0 0 #cc0029;
  transform: translate(0.5333333333vw, 0.5333333333vw);
}
@media screen and (min-width: 768px) {
  .flow__tab-button.is-active {
    transform: translate(calc(0.0042105263 * min(100vw, 950px)), calc(0.0042105263 * min(100vw, 950px)));
  }
}
.flow__balloon {
  background: #fff;
  margin: 4.2666666667vw 0 0;
  border-radius: 2.1333333333vw;
  border: 0.2666666667vw #2F3965 solid;
  padding: 6.6666666667vw 3.7333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__balloon {
    border-width: calc(0.0015789474 * min(100vw, 950px));
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    padding: calc(0.0421052632 * min(100vw, 950px));
    margin-top: calc(0.0557894737 * min(100vw, 950px));
  }
}
.flow__balloon::before, .flow__balloon::after {
  content: "";
  position: absolute;
  display: block;
  width: 3.7333333333vw;
  height: 2.6666666667vw;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  left: 25%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .flow__balloon::before, .flow__balloon::after {
    width: calc(0.0421052632 * min(100vw, 950px));
    height: calc(0.0368421053 * min(100vw, 950px));
  }
}
.flow__balloon::before {
  background: #2F3965;
  bottom: 100%;
}
.flow__balloon::after {
  background: #fff;
  bottom: calc(100% - 0.4vw);
}
@media screen and (min-width: 768px) {
  .flow__balloon::after {
    bottom: calc(100% - 0.0021052632 * min(100vw, 950px));
  }
}
.flow__balloon.is-right::before, .flow__balloon.is-right::after {
  left: 75%;
}
.flow__step {
  padding-left: 12.8vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__step {
    padding-left: calc(0.0884210526 * min(100vw, 950px));
  }
}
.flow__step.is-hidden {
  display: none;
}
.flow__step:not(.is-hidden) {
  counter-increment: num;
}
.flow__step:not(:last-child) {
  border-bottom: 0.2666666667vw #DDD solid;
  padding-bottom: 4.2666666667vw;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .flow__step:not(:last-child) {
    border-width: calc(0.0015789474 * min(100vw, 950px));
    padding-bottom: calc(0.0421052632 * min(100vw, 950px));
    margin-bottom: calc(0.0421052632 * min(100vw, 950px));
  }
}
.flow__step-num {
  position: absolute;
  font-family: "Helvetica", Arial, sans-serif;
  left: 0;
  top: 0;
  width: 10.6666666667vw;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #2F3965;
  color: #fff;
  font-size: 2.6666666667vw;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .flow__step-num {
    width: calc(0.0631578947 * min(100vw, 950px));
    font-size: calc(0.0157894737 * min(100vw, 950px));
  }
}
.flow__step-num::after {
  content: "0" counter(num);
  font-size: 4.8vw;
  line-height: 0.95;
  margin-bottom: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .flow__step-num::after {
    font-size: calc(0.0284210526 * min(100vw, 950px));
    margin-bottom: calc(0.0031578947 * min(100vw, 950px));
  }
}
.flow__heading {
  color: #FF0033;
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .flow__heading {
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.flow__text {
  font-size: 3.2vw;
  margin: 1.0666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .flow__text {
    font-size: calc(0.0189473684 * min(100vw, 950px));
    margin-top: calc(0.0105263158 * min(100vw, 950px));
  }
}
.flow__sumaken.is-hidden {
  display: none;
}
.flow__image {
  margin: 4.2666666667vw auto 4.2666666667vw 0;
  width: 53.8666666667vw;
}
@media screen and (min-width: 768px) {
  .flow__image {
    margin: calc(0.0252631579 * min(100vw, 950px)) auto calc(0.0421052632 * min(100vw, 950px)) 0;
    width: calc(0.3284210526 * min(100vw, 950px));
  }
}
.flow__image img {
  width: 100%;
}
.flow__image--sumaken {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .flow__image--sumaken {
    max-width: 416px;
  }
}
.flow__text-link {
  margin: 2.1333333333vw 0 0;
  font-size: 3.2vw;
  background-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .flow__text-link {
    font-size: calc(0.0189473684 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    background-size: calc(0.02 * min(100vw, 950px));
  }
}
.flow__text-link.is-hidden {
  display: none;
}
.flow__message {
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin: 4.2666666667vw 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow__message {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.flow__message--red {
  color: #FF0033;
}
.flow__points {
  display: grid;
  gap: 0.2666666667vw;
  background: #DDD;
  grid-template-columns: 1fr 1fr;
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .flow__points {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    gap: calc(0.0021052632 * min(100vw, 950px));
  }
}
.flow__point {
  background: #fff;
  text-align: center;
  padding: 3.7333333333vw 2.1333333333vw 3.2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  counter-increment: point;
}
@media screen and (min-width: 768px) {
  .flow__point {
    padding: calc(0 * min(100vw, 950px)) calc(0 * min(100vw, 950px)) calc(0.0210526316 * min(100vw, 950px));
  }
}
.flow__point::before {
  content: "POINT 0" counter(point);
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 700;
  color: #fff;
  background: #FF0033;
  border-radius: 99px;
  padding: 0.8vw 3.2vw;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .flow__point::before {
    font-size: calc(0.0157894737 * min(100vw, 950px));
    padding: calc(0.0042105263 * min(100vw, 950px)) calc(0.0178947368 * min(100vw, 950px));
    margin-bottom: calc(0 * min(100vw, 950px));
  }
}
@media screen and (min-width: 768px) {
  .flow__point:nth-child(3), .flow__point:nth-child(4) {
    padding-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.flow__point-text {
  font-size: 2.6666666667vw;
  margin: 1.0666666667vw 0 0;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .flow__point-text {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    margin-top: calc(0.0105263158 * min(100vw, 950px));
  }
}
.flow__point-text--red {
  color: #FF0033;
}
.flow__point-image {
  margin: 3.7333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .flow__point-image {
    margin: calc(0.0105263158 * min(100vw, 950px)) 0 0;
  }
}
.flow__point-image img {
  width: 100%;
}
.flow__cta {
  margin: 6.4vw 0 0;
}
@media screen and (min-width: 768px) {
  .flow__cta {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.flow__cta-deco {
  gap: 0.5333333333vw;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .flow__cta-deco {
    font-size: 0.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .flow__cta-deco {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
@media screen and (max-width: 767px) {
  .flow__button {
    height: 10.1333333333vw;
    font-size: 2.9333333333vw;
    padding-left: 2.1333333333vw;
  }
}

.accordion {
  padding: 4.2666666667vw 0;
  border-bottom: 1px solid #2F3965;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .accordion {
    padding: calc(0.0210526316 * min(100vw, 950px)) 0;
  }
}
.accordion:first-child {
  margin-top: 6.4vw;
  border-top: 1px solid #2F3965;
}
@media screen and (min-width: 768px) {
  .accordion:first-child {
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.accordion__question, .accordion__answer-text {
  display: flex;
  align-items: center;
  gap: 2.1333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .accordion__question, .accordion__answer-text {
    gap: calc(0.0210526316 * min(100vw, 950px));
  }
}
.accordion__question::before, .accordion__answer-text::before {
  content: "Q";
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-size: 4.8vw;
  color: #fff;
  background: var(--faq-color);
  width: 6.9333333333vw;
  height: 6.9333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
  border-radius: 99px;
}
@media screen and (min-width: 768px) {
  .accordion__question::before, .accordion__answer-text::before {
    font-size: calc(0.0284210526 * min(100vw, 950px));
    width: calc(0.0421052632 * min(100vw, 950px));
    height: calc(0.0421052632 * min(100vw, 950px));
  }
}
.accordion__question::after, .accordion__answer-text::after {
  content: "";
  position: absolute;
  display: block;
  left: 3.2vw;
  top: 3.2vw;
  width: 4.2666666667vw;
  aspect-ratio: 1/1;
  background: var(--faq-color);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: -1;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .accordion__question::after, .accordion__answer-text::after {
    left: calc(0.0210526316 * min(100vw, 950px));
    top: calc(0.0210526316 * min(100vw, 950px));
    width: calc(0.0252631579 * min(100vw, 950px));
  }
}
.accordion__question {
  --faq-color: #FF0033;
}
@media (hover: hover) and (pointer: fine) {
  .accordion__question:hover {
    cursor: pointer;
  }
}
.accordion__question::before {
  content: "Q";
}
.accordion__question.is-open .accordion__question-text::after {
  transform: rotate(180deg);
}
.accordion__answer-text {
  --faq-color: #00B6A6;
}
.accordion__answer-text::before {
  content: "A";
}
.accordion__question-text {
  position: relative;
  padding-right: 5.8666666667vw;
  font-weight: 700;
  margin-bottom: 0;
  flex-grow: 1;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .accordion__question-text {
    padding-right: calc(0.0421052632 * min(100vw, 950px));
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.accordion__question-text::before, .accordion__question-text::after {
  position: absolute;
  right: 0;
  top: calc(50% - 0.2666666667vw);
  content: "";
  width: 3.7333333333vw;
  height: 0.5333333333vw;
  background: #2F3965;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .accordion__question-text::before, .accordion__question-text::after {
    width: calc(0.0221052632 * min(100vw, 950px));
    height: calc(0.0031578947 * min(100vw, 950px));
    top: calc(50% - 0.0015789474 * min(100vw, 950px));
  }
}
.accordion__question-text::after {
  transform: rotate(90deg);
}
.accordion__answer-text {
  padding-right: 5.8666666667vw;
  margin: 4.2666666667vw 0 0;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .accordion__answer-text {
    padding-right: calc(0.0421052632 * min(100vw, 950px));
    margin-top: calc(0.0210526316 * min(100vw, 950px));
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.accordion__detail {
  margin: 2.1333333333vw auto 0;
}
@media screen and (min-width: 768px) {
  .accordion__detail {
    margin-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.accordion__text {
  margin: 0;
  font: inherit;
}
.accordion__note {
  font-size: 2.6666666667vw;
  color: #333;
  display: inline-block;
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .accordion__note {
    font-size: calc(0.0147368421 * min(100vw, 950px));
    margin-top: calc(0.0126315789 * min(100vw, 950px));
  }
}
.accordion__text-link {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .accordion__text-link {
    margin-top: calc(0.0210526316 * min(100vw, 950px));
  }
}

.campaign {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .campaign {
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.campaign__tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .campaign__tab-list {
    gap: calc(0.0294736842 * min(100vw, 950px));
  }
}
.campaign__tab-button {
  width: calc(100% - 0.5333333333vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2F3965;
  font-size: 4.2666666667vw;
  font-weight: 700;
  border: 0.2666666667vw #2F3965 solid;
  border-radius: 1.0666666667vw;
  box-shadow: 0.5333333333vw 0.5333333333vw 0 #2F3965;
  height: 12.8vw;
  transition: 0.3s;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .campaign__tab-button {
    width: calc(100% - 0.0042105263 * min(100vw, 950px));
    font-size: calc(0.0294736842 * min(100vw, 950px));
    height: calc(0.0842105263 * min(100vw, 950px));
    border-radius: calc(0.0042105263 * min(100vw, 950px));
    border-width: calc(0.0021052632 * min(100vw, 950px));
    box-shadow: calc(0.0042105263 * min(100vw, 950px)) calc(0.0042105263 * min(100vw, 950px)) 0 #2F3965;
  }
}
.campaign__tab-button.is-active {
  background: #2F3965;
  color: #fff;
  box-shadow: 0 0 0 #cc0029;
  transform: translate(0.5333333333vw, 0.5333333333vw);
}
@media screen and (min-width: 768px) {
  .campaign__tab-button.is-active {
    transform: translate(calc(0.0042105263 * min(100vw, 950px)), calc(0.0042105263 * min(100vw, 950px)));
  }
}
.campaign__balloon {
  background: #fff;
  margin: 4.2666666667vw 0 0;
  border-radius: 2.1333333333vw;
  border: 0.2666666667vw #2F3965 solid;
  padding: 6.6666666667vw 3.7333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .campaign__balloon {
    border-width: calc(0.0015789474 * min(100vw, 950px));
    border-radius: calc(0.0126315789 * min(100vw, 950px));
    padding: calc(0.0421052632 * min(100vw, 950px));
    margin-top: calc(0.0557894737 * min(100vw, 950px));
  }
}
.campaign__balloon::before, .campaign__balloon::after {
  content: "";
  position: absolute;
  display: block;
  width: 3.7333333333vw;
  height: 2.6666666667vw;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  left: 25%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .campaign__balloon::before, .campaign__balloon::after {
    width: calc(0.0421052632 * min(100vw, 950px));
    height: calc(0.0368421053 * min(100vw, 950px));
  }
}
.campaign__balloon::before {
  background: #2F3965;
  bottom: 100%;
}
.campaign__balloon::after {
  background: #fff;
  bottom: calc(100% - 0.4vw);
}
@media screen and (min-width: 768px) {
  .campaign__balloon::after {
    bottom: calc(100% - 0.0021052632 * min(100vw, 950px));
  }
}
.campaign__balloon.is-right::before, .campaign__balloon.is-right::after {
  left: 75%;
}
.campaign__heading {
  margin: 6.4vw 0 4.2666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign__heading {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    margin-bottom: calc(0.0105263158 * min(100vw, 950px));
    font-size: calc(0.0210526316 * min(100vw, 950px));
  }
}
.campaign__text {
  font-size: 3.2vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .campaign__text {
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.campaign__text-indent {
  font-size: 3.2vw;
  --indent: 1.3em;
  padding-left: var(--indent);
  text-indent: calc(-1 * var(--indent));
  margin: 0;
}
@media screen and (min-width: 768px) {
  .campaign__text-indent {
    font-size: calc(0.0189473684 * min(100vw, 950px));
  }
}
.campaign__text-indent--num {
  --indent: 1.8em;
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .campaign__text-indent--num {
    margin-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.campaign__image {
  margin: 4.2666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .campaign__image {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    max-width: 620px;
  }
}
.campaign__link {
  font: inherit;
  color: #FF0033;
}
.campaign .is-hidden {
  display: none;
}

.campaign-accordion {
  margin-top: 10.6666666667vw;
  border-top: 1px solid #2F3965;
  border-bottom: 1px solid #2F3965;
}
@media screen and (min-width: 768px) {
  .campaign-accordion {
    margin-top: calc(0.0315789474 * min(100vw, 950px));
  }
}
.campaign-accordion__title {
  height: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.8vw;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .campaign-accordion__title {
    height: calc(0.1052631579 * min(100vw, 950px));
    font-size: calc(0.0252631579 * min(100vw, 950px));
  }
}
.campaign-accordion__title::before, .campaign-accordion__title::after {
  position: absolute;
  right: 0;
  top: calc(50% - 0.2666666667vw);
  content: "";
  width: 3.7333333333vw;
  height: 0.5333333333vw;
  background: #2F3965;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .campaign-accordion__title::before, .campaign-accordion__title::after {
    width: calc(0.0221052632 * min(100vw, 950px));
    height: calc(0.0031578947 * min(100vw, 950px));
    top: calc(50% - 0.0015789474 * min(100vw, 950px));
  }
}
.campaign-accordion__title::after {
  transform: rotate(90deg);
}
.campaign-accordion__title.is-open::after {
  transform: rotate(180deg);
}
.campaign-accordion__inner {
  padding: 2.6666666667vw 0 8vw;
}
@media screen and (min-width: 768px) {
  .campaign-accordion__inner {
    padding: calc(0.0210526316 * min(100vw, 950px)) 0 calc(0.0421052632 * min(100vw, 950px));
  }
}
.campaign-accordion__inner > *:first-child {
  margin-top: 0;
}

.gallery {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .gallery {
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.gallery__video {
  display: block;
  position: relative;
  padding: 0;
  border: none;
}
@media screen and (min-width: 768px) {
  .gallery__video {
    width: calc(0.6526315789 * min(100vw, 950px));
    margin: 0 auto;
  }
}
.gallery__video img {
  width: 100%;
}
.gallery__video::before {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10.6666666667vw;
  aspect-ratio: 1/1;
  background: url("../images/ico_video_01.svg?202511") no-repeat center center/contain;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .gallery__video::before {
    width: calc(0.0631578947 * min(100vw, 950px));
  }
}
@media (hover: hover) and (pointer: fine) {
  .gallery__video:hover {
    opacity: 1;
  }
  .gallery__video:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.gallery__caption {
  font-size: 2.6666666667vw;
  text-align: center;
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .gallery__caption {
    font-size: calc(0.0189473684 * min(100vw, 950px));
    margin-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.gallery__deco {
  margin: 21.3333333333vw auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  text-align: center;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .gallery__deco {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.gallery__deco::before, .gallery__deco::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .gallery__deco::before, .gallery__deco::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.gallery__deco::before {
  transform: rotate(-20deg);
}
.gallery__deco::after {
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .gallery__deco {
    font-size: calc(0.0252631579 * min(100vw, 950px));
  }
}
.gallery__deco::before, .gallery__deco::after {
  width: 0.5333333333vw;
  height: 9.6vw;
}
@media screen and (min-width: 768px) {
  .gallery__deco::before, .gallery__deco::after {
    width: calc(0.0026315789 * min(100vw, 950px));
    height: calc(0.0294736842 * min(100vw, 950px));
  }
}
@media screen and (min-width: 768px) {
  .gallery__deco {
    margin-top: calc(0.1263157895 * min(100vw, 950px));
  }
}
.gallery__banner {
  display: block;
  margin: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .gallery__banner {
    margin: calc(0.0105263158 * min(100vw, 950px));
  }
}
.gallery__banner img {
  width: 100%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 800;
  transition: 0.3s;
}
.modal:not(.is-shown) {
  opacity: 0;
  pointer-events: none;
}
.modal__inner {
  padding: 0 4vw;
}
@media screen and (min-width: 768px) {
  .modal__inner {
    padding: 0 15px;
    max-width: 950px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .modal__inner {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .modal__inner {
    max-width: 1230px;
    position: relative;
  }
}
.modal__close {
  position: fixed;
  top: 2.1333333333vw;
  right: 2.1333333333vw;
  color: transparent;
  border: none;
  width: 9.6vw;
  height: 9.6vw;
  background: url("../images/ico_close_01.svg?202511") no-repeat center center/contain;
  z-index: 800;
  font-size: 0;
}
@media screen and (min-width: 768px) {
  .modal__close {
    width: calc(0.0390243902 * min(100vw, 1230px));
    height: calc(0.0390243902 * min(100vw, 1230px));
    position: absolute;
    top: calc(0.0162601626 * min(100vw, 1230px));
    right: calc(0.0292682927 * min(100vw, 1230px));
  }
}
.modal__content {
  background: #D3EDFB;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal__content {
    border-radius: calc(0.0162601626 * min(100vw, 1230px));
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal__list {
  transition: opacity 0.3s;
}
.modal__list:not(.is-shown) {
  opacity: 0;
  pointer-events: none;
}
.modal__list.is-shown {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
.modal__wrapper {
  height: calc(100dvh - 28vw);
  overflow-y: auto;
  padding: 2.1333333333vw 4vw 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal__wrapper {
    height: calc(100dvh - 0.1336842105 * min(100vw, 950px));
    padding: calc(0.0162601626 * min(100vw, 1230px)) calc(0.0975609756 * min(100vw, 1230px)) calc(0.0487804878 * min(100vw, 1230px));
  }
}
.modal__icon {
  width: 16vw;
  height: 14.4vw;
  margin: 0 auto;
}
.modal__icon img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal__icon {
    width: calc(0.0731707317 * min(100vw, 1230px));
    height: calc(0.0658536585 * min(100vw, 1230px));
  }
}
.modal__icon--small {
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  margin: 1.8666666667vw auto;
}
@media screen and (min-width: 768px) {
  .modal__icon--small {
    width: calc(0.0487804878 * min(100vw, 1230px));
    height: calc(0.0487804878 * min(100vw, 1230px));
    margin: calc(0.0105263158 * min(100vw, 950px)) auto;
  }
}
.modal__title {
  font-size: 5.3333333333vw;
  text-align: center;
  font-weight: 700;
  margin: 0 -4vw;
}
@media screen and (min-width: 768px) {
  .modal__title {
    font-size: calc(0.0243902439 * min(100vw, 1230px));
    margin: 0;
  }
}
.modal__title--red {
  color: #FF0033;
}
.modal__body {
  background: #fff;
  border-radius: 2.1333333333vw;
  padding: 6.4vw 4vw;
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal__body {
    border-radius: calc(0.0081300813 * min(100vw, 1230px));
    padding: calc(0.0325203252 * min(100vw, 1230px)) calc(0.1382113821 * min(100vw, 1230px));
    margin-top: calc(0.0203252033 * min(100vw, 1230px));
  }
}
.modal__lead {
  text-align: center;
  font-weight: 700;
  font-size: 4.2666666667vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal__lead {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
  }
}
.modal__lead--red {
  color: #FF0033;
}
.modal__lead--4g {
  position: relative;
}
.modal__lead--child {
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal__lead--child {
    margin-top: calc(0.0168421053 * min(100vw, 950px));
  }
}
.modal__lead .u-f-helvetica {
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .modal__lead .u-f-helvetica {
    font-size: calc(0.0211382114 * min(100vw, 1230px));
  }
}
.modal__lead--sup {
  position: absolute;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 700;
  display: inline-block;
  white-space: nowrap;
  top: -0.6em;
  right: -1em;
}
@media screen and (min-width: 768px) {
  .modal__lead--sup {
    font-size: calc(0.0097560976 * min(100vw, 1230px));
  }
}
.modal__note {
  font-size: 2.6666666667vw;
  color: #333;
  font-weight: 400;
  margin: 1.0666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal__note {
    font-size: max(0.0097560976 * min(100vw, 1230px), 10px);
    margin-top: calc(0.006504065 * min(100vw, 1230px));
  }
}
.modal__note--medium {
  font-weight: 500;
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal__note--medium {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal__note--bold {
  font-weight: 700;
}
.modal__notes-list {
  font-size: 2.6666666667vw;
  list-style: none;
  position: relative;
  margin: 0;
  color: #333;
}
@media screen and (min-width: 768px) {
  .modal__notes-list {
    font-size: max(0.0097560976 * min(100vw, 1230px), 10px);
  }
}
.modal__notes-list--num {
  counter-reset: li;
}
.modal__notes-list--num .modal__notes-item {
  padding-left: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .modal__notes-list--num .modal__notes-item {
    padding-left: calc(0.0260162602 * min(100vw, 1230px));
  }
}
.modal__notes-list--num .modal__notes-item::before {
  content: "＊" counter(li);
  counter-increment: li;
}
.modal__notes-item {
  padding-left: 4.2666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal__notes-item {
    padding-left: calc(0.0154471545 * min(100vw, 1230px));
  }
}
.modal__notes-item + .modal__notes-item {
  margin-top: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .modal__notes-item + .modal__notes-item {
    margin-top: calc(0.006504065 * min(100vw, 1230px));
  }
}
.modal__notes-item::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.modal__note-link {
  font: inherit;
  color: #333;
}
.modal__box {
  background: #FFF3E6;
  border-radius: 2.1333333333vw;
  padding: 4.2666666667vw;
  margin: 5.3333333333vw 0 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal__box {
    border-radius: calc(0.0081300813 * min(100vw, 1230px));
    padding: calc(0.0162601626 * min(100vw, 1230px)) calc(0.0325203252 * min(100vw, 1230px));
    margin: calc(0.0487804878 * min(100vw, 1230px)) auto;
  }
}
.modal__box-heading {
  text-align: center;
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal__box-heading {
    font-size: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal__box-heading:not(:only-child) {
  margin: 0 0 4.2666666667vw;
  padding-bottom: 2.1333333333vw;
  border-bottom: 1px #DDD solid;
}
@media screen and (min-width: 768px) {
  .modal__box-heading:not(:only-child) {
    margin-bottom: calc(0.0162601626 * min(100vw, 1230px));
    padding-bottom: calc(0.0040650407 * min(100vw, 1230px));
  }
}
.modal__box-text {
  font-size: 3.2vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal__box-text {
    font-size: calc(0.0146341463 * min(100vw, 1230px));
  }
}
.modal__box-notes {
  margin: 1.8666666667vw 0 0;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal__box-notes {
    margin-top: calc(0.0168421053 * min(100vw, 950px));
    font-size: calc(0.0126315789 * min(100vw, 950px));
  }
}
.modal__deco {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  font-size: 3.7333333333vw;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .modal__deco {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.modal__deco::before, .modal__deco::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .modal__deco::before, .modal__deco::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.modal__deco::before {
  transform: rotate(-20deg);
}
.modal__deco::after {
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .modal__deco {
    font-size: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal__deco::before, .modal__deco::after {
  width: 0.5333333333vw;
  height: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal__deco::before, .modal__deco::after {
    width: calc(0.0024390244 * min(100vw, 1230px));
    height: calc(0.0260162602 * min(100vw, 1230px));
  }
}
.modal__text {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .modal__text {
    font-size: calc(0.0146341463 * min(100vw, 1230px));
  }
}
.modal__accordion-item {
  padding: 2.1333333333vw 0;
  border-bottom: 0.2666666667vw #DDD solid;
  color: #333;
}
@media screen and (min-width: 768px) {
  .modal__accordion-item {
    padding: calc(0.0105263158 * min(100vw, 950px)) 0;
    border-width: calc(0.0015789474 * min(100vw, 950px));
  }
}
.modal__accordion-title {
  font-size: 3.2vw;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal__accordion-title {
    font-size: calc(0.0147368421 * min(100vw, 950px));
  }
}
.modal__accordion-title::before, .modal__accordion-title::after {
  position: absolute;
  right: 0;
  top: calc(50% - 0.2666666667vw);
  content: "";
  width: 3.7333333333vw;
  height: 0.2666666667vw;
  background: currentColor;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .modal__accordion-title::before, .modal__accordion-title::after {
    width: calc(0.0147368421 * min(100vw, 950px));
    height: calc(0.0010526316 * min(100vw, 950px));
    top: calc(50% - 0.0010526316 * min(100vw, 950px));
  }
}
.modal__accordion-title::after {
  transform: rotate(90deg);
}
.modal__accordion-title.is-open::after {
  transform: rotate(180deg);
}
.modal__accordion-text {
  font-size: 2.6666666667vw;
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal__accordion-text {
    font-size: max(0.0097560976 * min(100vw, 1230px), 10px);
    margin-top: calc(0.0105263158 * min(100vw, 950px));
  }
}
.modal__costinner {
  border-radius: 5.3333333333vw;
  background: #fff;
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal__costinner {
    border-radius: calc(0.0487804878 * min(100vw, 1230px));
    margin-top: calc(0.0203252033 * min(100vw, 1230px));
  }
}
.modal__costinner-ttl {
  padding: 10%;
  padding-bottom: min(15vw, 150px);
  text-align: center;
  border-top-left-radius: 3.7333333333vw;
  border-top-right-radius: 3.7333333333vw;
  background: radial-gradient(circle at 50% 100%, #f3f1ec 50%, #dcdfdd);
}
@media screen and (min-width: 768px) {
  .modal__costinner-ttl {
    border-top-left-radius: calc(0.0421052632 * min(100vw, 950px));
    border-top-right-radius: calc(0.0421052632 * min(100vw, 950px));
  }
}
.modal__costinner-wrap {
  position: relative;
  padding: 0 10%;
  z-index: 1;
}
.modal__costinner-red {
  position: relative;
  background: linear-gradient(#ff0033 99%, transparent 99%);
}
.modal__costinner-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(20vw, 200px);
  display: block;
  border-radius: 100% 100% 0 0;
  background-color: #ff0033;
  transform: translateY(-50%);
}
.modal__costinner-white {
  padding-bottom: min(20vw, 200px);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .modal__costinner-white-ttl {
    background: linear-gradient(transparent 53%, #fff 53%);
  }
}
.modal__costinner-green {
  position: relative;
  padding-top: min(15vw, 150px);
  padding-bottom: 10%;
  border-bottom-left-radius: 3.7333333333vw;
  border-bottom-right-radius: 3.7333333333vw;
  background-color: #e5ffc8;
}
@media screen and (min-width: 768px) {
  .modal__costinner-green {
    border-bottom-left-radius: calc(0.0421052632 * min(100vw, 950px));
    border-bottom-right-radius: calc(0.0421052632 * min(100vw, 950px));
  }
}
.modal__costinner-green-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(20vw, 200px);
  display: block;
  border-radius: 100% 100% 0 0;
  background-color: #e5ffc8;
  transform: translateY(-50%);
}
.modal__costinner-green-ttl img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  max-width: 53.3333333333vw;
  transform: translate(-50%, -10%);
}
@media screen and (min-width: 768px) {
  .modal__costinner-green-ttl img {
    width: auto;
    max-width: 100%;
  }
}
.modal .slick-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 10.6666666667vw;
  aspect-ratio: 1/1;
  color: transparent;
  background: url("../images/ico_slider-arrow_01.png?202511") no-repeat center center/contain;
  border: none;
}
@media screen and (max-width: 767px) {
  .modal .slick-arrow {
    opacity: 0.4;
  }
}
@media screen and (min-width: 768px) {
  .modal .slick-arrow {
    width: calc(0.0487804878 * min(100vw, 1230px));
  }
}
.modal .slick-prev {
  left: 2.1333333333vw;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .modal .slick-prev {
    left: calc(0.0243902439 * min(100vw, 1230px));
  }
}
.modal .slick-next {
  right: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal .slick-next {
    right: calc(0.0243902439 * min(100vw, 1230px));
  }
}

.modal-table {
  margin: 4.2666666667vw 0 6.4vw;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .modal-table {
    margin: calc(0.0195121951 * min(100vw, 1230px)) 0 calc(0.0195121951 * min(100vw, 1230px));
  }
}
.modal-table__header, .modal-table__data {
  border: 0.2666666667vw #DDD solid;
  padding: 2.6666666667vw 1.0666666667vw;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .modal-table__header, .modal-table__data {
    border-width: calc(0.0008130081 * min(100vw, 1230px));
    padding: calc(0.0097560976 * min(100vw, 1230px)) calc(0.0081300813 * min(100vw, 1230px));
  }
}
.modal-table__header {
  background: #FFF3E6;
  font-weight: 700;
  text-align: left;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-table__header {
    font-size: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-table__data {
  text-align: right;
}
.modal-table__data--num {
  font-size: 5.3333333333vw;
  font-family: "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .modal-table__data--num {
    font-size: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-table__data--red {
  color: #FF0033;
}
.modal-table__data--unit {
  font-size: 3.7333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .modal-table__data--unit {
    font-size: calc(0.0178861789 * min(100vw, 1230px));
  }
}

.modal-overseas__label {
  margin: 0 auto 4.2666666667vw;
  width: fit-content;
  background: #FF0033;
  color: #fff;
  font-weight: 700;
  font-size: 4.2666666667vw;
  padding: 0.5333333333vw 0.8em 0.5333333333vw 1em;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .modal-overseas__label {
    margin-bottom: calc(0.0162601626 * min(100vw, 1230px));
    font-size: calc(0.0195121951 * min(100vw, 1230px));
    padding-block: calc(0.0032520325 * min(100vw, 1230px));
    border-radius: 6px;
  }
}
.modal-overseas__label .u-f-helvetica {
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .modal-overseas__label .u-f-helvetica {
    font-size: calc(0.0211382114 * min(100vw, 1230px));
  }
}
.modal-overseas__message {
  color: #FF0033;
  font-weight: 700;
  font-size: 3.7333333333vw;
  margin: 1.3333333333vw 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal-overseas__message {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
    margin-top: calc(0.006504065 * min(100vw, 1230px));
  }
}
.modal-overseas__message .u-f-helvetica {
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-overseas__message .u-f-helvetica {
    font-size: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-overseas__message--large {
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .modal-overseas__message--large {
    font-size: calc(0.0243902439 * min(100vw, 1230px));
  }
}
.modal-overseas__image {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-overseas__image {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-overseas__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-overseas__box {
    margin-bottom: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-overseas__note {
  color: #333;
  font-size: 3.2vw;
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-overseas__note {
    font-size: max(0.0130081301 * min(100vw, 1230px), 10px);
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-overseas__note + .modal-overseas__note {
  margin-top: 5.3333333333vw;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-overseas__note + .modal-overseas__note {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
    margin-bottom: calc(0.0162601626 * min(100vw, 1230px));
  }
}

.modal-giga__message {
  width: fit-content;
  margin: 4.2666666667vw auto 0;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .modal-giga__message {
    margin-top: calc(0.0097560976 * min(100vw, 1230px));
    font-size: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-giga__message--red {
  color: #FF0033;
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .modal-giga__message--red {
    font-size: calc(0.0455284553 * min(100vw, 1230px));
  }
}
.modal-giga__message--num {
  font-size: 12.8vw;
  margin: 0 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-giga__message--num {
    font-size: calc(0.0780487805 * min(100vw, 1230px));
    margin: 0 calc(0.0032520325 * min(100vw, 1230px));
  }
}
.modal-giga__message .u-f-helvetica {
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-giga__message .u-f-helvetica {
    font-size: calc(0.0390243902 * min(100vw, 1230px));
  }
}
.modal-giga__badge {
  padding: 0.5333333333vw 10.6666666667vw;
  border-radius: 99px;
  background: #FF0033;
  color: #fff;
  width: fit-content;
  margin: 3.2vw auto 0;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .modal-giga__badge {
    padding: calc(0.0032520325 * min(100vw, 1230px)) calc(0.0650406504 * min(100vw, 1230px));
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
    font-size: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-giga__image {
  margin: 2.1333333333vw auto 0;
  width: 58.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-giga__image {
    margin-top: calc(0.0195121951 * min(100vw, 1230px));
    width: calc(0.325203252 * min(100vw, 1230px));
  }
}
.modal-giga__image img {
  width: 100%;
}
.modal-giga__heading {
  font-size: 4.2666666667vw;
  text-align: center;
  margin: 4.2666666667vw 0 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .modal-giga__heading {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-giga__table {
  margin: 4.2666666667vw 0;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .modal-giga__table {
    margin: calc(0.0162601626 * min(100vw, 1230px)) 0;
  }
}
.modal-giga__head, .modal-giga__data {
  border: 0.2666666667vw #DDD solid;
  padding: 2.1333333333vw 0.5333333333vw;
  white-space: nowrap;
  font-size: 3.2vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal-giga__head, .modal-giga__data {
    border-width: calc(0.0008130081 * min(100vw, 1230px));
    padding: calc(0.0097560976 * min(100vw, 1230px)) calc(0.0032520325 * min(100vw, 1230px));
    font-size: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-giga__head {
  background: #FFF3E6;
}

.modal-carry-over__note {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-carry-over__note {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-carry-over__image-area {
  margin: 4.2666666667vw 0 0;
  padding-top: 4.2666666667vw;
  border-top: 0.2666666667vw #DDD solid;
}
@media screen and (min-width: 768px) {
  .modal-carry-over__image-area {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
    padding-top: calc(0.0325203252 * min(100vw, 1230px));
    border-width: calc(0.0008130081 * min(100vw, 1230px));
  }
}
.modal-carry-over__heading {
  font-size: 3.7333333333vw;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal-carry-over__heading {
    font-size: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-carry-over__image {
  margin: 4.2666666667vw auto 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-carry-over__image {
    width: calc(0.325203252 * min(100vw, 1230px));
    margin: calc(0.0162601626 * min(100vw, 1230px)) auto;
  }
}
.modal-carry-over__image img {
  width: 100%;
}

.modal-network__image {
  margin: 4.2666666667vw auto;
}
@media screen and (min-width: 768px) {
  .modal-network__image {
    margin: calc(0.0325203252 * min(100vw, 1230px)) auto;
  }
}
.modal-network__image img {
  width: 100%;
}
.modal-network__list {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-network__list {
    flex-direction: row;
    gap: calc(0.0081300813 * min(100vw, 1230px));
  }
}
.modal-network__item {
  display: flex;
  gap: 6.9333333333vw;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .modal-network__item {
    gap: calc(0.0211382114 * min(100vw, 1230px));
  }
}
.modal-network__heading {
  margin: 0;
  background: #FF0033;
  height: 10.1333333333vw;
  color: #fff;
  font-size: 4.2666666667vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-network__heading {
    height: calc(0.0308943089 * min(100vw, 1230px));
    font-size: calc(0.0130081301 * min(100vw, 1230px));
    flex-basis: calc(0.0406504065 * min(100vw, 1230px));
  }
}
.modal-network__heading::after {
  content: "";
  position: absolute;
  left: calc(100% - 0.5px);
  top: 0;
  height: 100%;
  aspect-ratio: 1/2;
  background: #FF0033;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.modal-network__text {
  margin: 0;
  font-size: 3.2vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .modal-network__text {
    font-size: calc(0.0113821138 * min(100vw, 1230px));
  }
}
.modal-network__figure {
  width: 49.3333333333vw;
  margin: 4.2666666667vw auto 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-network__figure {
    width: calc(0.325203252 * min(100vw, 1230px));
    margin: calc(0.0325203252 * min(100vw, 1230px)) auto;
  }
}
.modal-network__figure img {
  width: 100%;
}
.modal-network__box {
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-network__box {
    margin-bottom: calc(0.0162601626 * min(100vw, 1230px));
  }
}

.modal-support__points {
  display: grid;
  gap: 0.2666666667vw;
  background: #DDD;
  grid-template-columns: 1fr 1fr;
  margin: 4.2666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-support__points {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
    gap: calc(0.0021052632 * min(100vw, 950px));
  }
}
.modal-support__point {
  background: #fff;
  text-align: center;
  padding: 3.7333333333vw 2.1333333333vw 3.2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  counter-increment: point;
}
@media screen and (min-width: 768px) {
  .modal-support__point {
    padding: calc(0 * min(100vw, 950px)) calc(0 * min(100vw, 950px)) calc(0.0210526316 * min(100vw, 950px));
  }
}
.modal-support__point::before {
  content: "POINT 0" counter(point);
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 700;
  color: #fff;
  background: #FF0033;
  border-radius: 99px;
  padding: 0.8vw 3.2vw;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .modal-support__point::before {
    font-size: calc(0.0157894737 * min(100vw, 950px));
    padding: calc(0.0042105263 * min(100vw, 950px)) calc(0.0178947368 * min(100vw, 950px));
    margin-bottom: calc(0 * min(100vw, 950px));
  }
}
@media screen and (min-width: 768px) {
  .modal-support__point:nth-child(3), .modal-support__point:nth-child(4) {
    padding-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.modal-support__point-text {
  font-size: 2.6666666667vw;
  margin: 1.0666666667vw 0 0;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .modal-support__point-text {
    font-size: calc(0.0168421053 * min(100vw, 950px));
    margin-top: calc(0.0105263158 * min(100vw, 950px));
  }
}
.modal-support__point-text--red {
  color: #FF0033;
}
.modal-support__point-image {
  margin: 3.7333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-support__point-image {
    margin: calc(0.0105263158 * min(100vw, 950px)) 0 0;
    width: calc(0.162601626 * min(100vw, 1230px));
  }
}
.modal-support__point-image img {
  width: 100%;
}
.modal-support__text {
  margin: 6.4vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-support__text {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-support__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5.3333333333vw 1.8666666667vw;
  margin: 6.4vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-support__list {
    gap: calc(0.0195121951 * min(100vw, 1230px)) calc(0.006504065 * min(100vw, 1230px));
    margin: calc(0.0325203252 * min(100vw, 1230px)) 0;
  }
}
.modal-support__item {
  width: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-support__item {
    width: calc(0.1219512195 * min(100vw, 1230px));
  }
}
.modal-support__item:nth-child(1) {
  margin-left: 4vw;
}
@media screen and (min-width: 768px) {
  .modal-support__item:nth-child(1) {
    margin-left: calc(0.0650406504 * min(100vw, 1230px));
  }
}
.modal-support__item:nth-child(2) {
  margin-right: 4vw;
}
@media screen and (min-width: 768px) {
  .modal-support__item:nth-child(2) {
    margin-right: calc(0.0650406504 * min(100vw, 1230px));
  }
}
.modal-support__caption {
  text-align: center;
  font-weight: 700;
  font-size: 3.2vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal-support__caption {
    font-size: calc(0.0130081301 * min(100vw, 1230px));
  }
}
.modal-support__image {
  height: 21.3333333333vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal-support__image {
    height: calc(0.0975609756 * min(100vw, 1230px));
  }
}
.modal-support__image img {
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .modal-support__image img {
    width: 100%;
  }
}
.modal-support__deco {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-support__deco {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-support__text-link {
  margin: 4.2666666667vw auto 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-support__text-link {
    margin: calc(0.0325203252 * min(100vw, 1230px)) auto calc(0.0650406504 * min(100vw, 1230px));
  }
}
.modal-support__cta {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .modal-support__cta {
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.modal-support__button {
  gap: 4vw;
}
@media screen and (min-width: 768px) {
  .modal-support__button {
    gap: calc(0.0210526316 * min(100vw, 950px));
  }
}
@media screen and (max-width: 767px) {
  .modal-support__button::before {
    margin-left: auto;
  }
}

.modal-shopping__image {
  margin: -8vw auto 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__image {
    margin: 0 auto calc(0.0130081301 * min(100vw, 1230px));
    width: calc(0.3739837398 * min(100vw, 1230px));
  }
}
.modal-shopping__image img {
  width: 100%;
}
.modal-shopping__heading {
  background: #FF0033;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 5.3333333333vw;
  padding: 1.0666666667vw;
  line-height: 1;
  margin: 4.2666666667vw 0;
}
@media screen and (min-width: 768px) {
  .modal-shopping__heading {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
    padding: calc(0.0048780488 * min(100vw, 1230px));
    margin: calc(0.0325203252 * min(100vw, 1230px)) 0;
  }
}
.modal-shopping__heading .u-f-helvetica {
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__heading .u-f-helvetica {
    font-size: calc(0.0227642276 * min(100vw, 1230px));
  }
}
.modal-shopping__deco {
  color: #FF0033;
  margin: 6.4vw auto 2.1333333333vw;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__deco {
    font-size: calc(0.0219512195 * min(100vw, 1230px));
    margin: calc(0.0325203252 * min(100vw, 1230px)) auto calc(0.0081300813 * min(100vw, 1230px));
  }
}
.modal-shopping__container {
  --container-color: #FF0033;
  display: grid;
  grid-template-columns: 24vw 1fr;
  border-radius: 2.1333333333vw;
  border: 0.4vw var(--container-color) solid;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .modal-shopping__container {
    grid-template-columns: calc(0.1430894309 * min(100vw, 1230px)) 1fr;
    border-radius: calc(0.006504065 * min(100vw, 1230px));
    border-width: calc(0.0024390244 * min(100vw, 1230px));
  }
}
.modal-shopping__container--orange {
  --container-color: #FF820C;
}
.modal-shopping__container + .modal-shopping__container {
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__container + .modal-shopping__container {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-shopping__head {
  background: var(--container-color);
  color: #fff;
  text-align: center;
  padding: 2.1333333333vw 0;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .modal-shopping__head {
    padding: calc(0.0243902439 * min(100vw, 1230px)) calc(0.0146341463 * min(100vw, 1230px));
  }
}
.modal-shopping__head, .modal-shopping__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
}
.modal-shopping__content {
  padding: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__content {
    padding: calc(0.0243902439 * min(100vw, 1230px)) calc(0.0211382114 * min(100vw, 1230px));
  }
}
.modal-shopping__plus {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 10.6666666667vw;
  margin: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .modal-shopping__plus {
    font-size: calc(0.0691056911 * min(100vw, 1230px));
  }
}
.modal-shopping__plus::first-letter {
  font-size: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__plus::first-letter {
    font-size: calc(0.0528455285 * min(100vw, 1230px));
  }
}
.modal-shopping__plus--unit {
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__plus--unit {
    font-size: calc(0.0422764228 * min(100vw, 1230px));
  }
}
.modal-shopping__head-text {
  margin: 0;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__head-text {
    font-size: calc(0.0130081301 * min(100vw, 1230px));
    margin-top: calc(0.0032520325 * min(100vw, 1230px));
  }
}
.modal-shopping__head-text--large {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__head-text--large {
    font-size: calc(0.0130081301 * min(100vw, 1230px));
  }
}
.modal-shopping__text {
  margin: 0;
}
.modal-shopping__text--01 {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__text--01 {
    font-size: calc(0.0227642276 * min(100vw, 1230px));
  }
}
.modal-shopping__text--02 {
  font-size: 5.3333333333vw;
  line-height: 1;
  margin-bottom: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__text--02 {
    font-size: calc(0.0227642276 * min(100vw, 1230px));
    margin-bottom: calc(0.0032520325 * min(100vw, 1230px));
  }
}
.modal-shopping__text--03 {
  font-size: 5.8666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal-shopping__text--03 {
    font-size: calc(0.0227642276 * min(100vw, 1230px));
  }
}
.modal-shopping__text--04 {
  font-size: 4vw;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .modal-shopping__text--04 {
    font-size: calc(0.0211382114 * min(100vw, 1230px));
  }
}
.modal-shopping__text .u-f-helvetica {
  font-size: 9.0666666667vw;
  margin: 0 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__text .u-f-helvetica {
    font-size: calc(0.0341463415 * min(100vw, 1230px));
    margin: 0 calc(0.0032520325 * min(100vw, 1230px));
  }
}
.modal-shopping__list {
  margin: 2.1333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-shopping__list {
    margin-top: calc(0.006504065 * min(100vw, 1230px));
  }
}
.modal-shopping__item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__item {
    font-size: calc(0.0170731707 * min(100vw, 1230px));
  }
}
.modal-shopping__item--margin {
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__item--margin {
    margin-top: calc(0.006504065 * min(100vw, 1230px));
  }
}
.modal-shopping__item-link {
  font: inherit;
  color: #2F3965;
  text-decoration: underline;
}
.modal-shopping__notes-list {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__notes-list {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-shopping__note {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-shopping__note {
    margin-top: calc(0.0081300813 * min(100vw, 1230px));
  }
}

.modal-line__deco {
  color: #FF0033;
  font-size: 4.2666666667vw;
  margin: 6.4vw auto 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-line__deco {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
    margin: calc(0.0325203252 * min(100vw, 1230px)) auto calc(0.0130081301 * min(100vw, 1230px));
  }
}
.modal-line__image {
  width: 33.3333333333vw;
  margin: 4.2666666667vw auto 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-line__image {
    width: calc(0.1219512195 * min(100vw, 1230px));
    margin: calc(0.0162601626 * min(100vw, 1230px)) auto calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-line__image img {
  width: 100%;
}
.modal-line__text-link {
  margin: 2.1333333333vw auto 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-line__text-link {
    margin: calc(0.0162601626 * min(100vw, 1230px)) auto calc(0.0162601626 * min(100vw, 1230px));
  }
}

.modal-over60__note {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-over60__note {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-over60__deco {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-over60__deco {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-over60__message {
  text-align: center;
  color: #FF0033;
  font-weight: 700;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-over60__message {
    font-size: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-over60__image {
  margin: 4.2666666667vw auto 6.4vw;
  width: 48vw;
}
@media screen and (min-width: 768px) {
  .modal-over60__image {
    margin: calc(0.0162601626 * min(100vw, 1230px)) auto calc(0.0325203252 * min(100vw, 1230px));
    width: calc(0.162601626 * min(100vw, 1230px));
  }
}

.modal-sim__text {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-sim__text {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-sim__figure {
  margin: 4.2666666667vw 0;
  padding-bottom: 4.2666666667vw;
  border-bottom: 0.2666666667vw #DDD solid;
}
@media screen and (min-width: 768px) {
  .modal-sim__figure {
    margin: calc(0.0325203252 * min(100vw, 1230px)) 0;
    border-width: calc(0.0008130081 * min(100vw, 1230px));
  }
}
.modal-sim__figure img {
  width: 100%;
}
.modal-sim__container {
  margin: 4.2666666667vw 0 0;
  display: grid;
  grid-template-columns: 30.6666666667vw 1fr;
  gap: 1.6vw;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .modal-sim__container {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
    grid-template-columns: calc(0.1219512195 * min(100vw, 1230px)) calc(0.2845528455 * min(100vw, 1230px));
    gap: calc(0.0162601626 * min(100vw, 1230px));
    justify-content: center;
  }
}
.modal-sim__heading {
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .modal-sim__heading {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
  }
}
.modal-sim__image {
  margin: 0;
}
.modal-sim__image img {
  width: 100%;
}
.modal-sim__list {
  margin: 0.8vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-sim__list {
    margin-top: calc(0.006504065 * min(100vw, 1230px));
  }
}
.modal-sim__item {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .modal-sim__item {
    font-size: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-sim__item::before {
  content: "";
  display: inline-block;
  width: 2.4vw;
  height: 2.4vw;
  background: url("../images/ico_check_02.svg?202511") no-repeat center center/contain;
  margin-right: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-sim__item::before {
    width: calc(0.0146341463 * min(100vw, 1230px));
    height: calc(0.0146341463 * min(100vw, 1230px));
    margin-right: calc(0.006504065 * min(100vw, 1230px));
  }
}

.modal-mnp__lead {
  margin-top: 3.2vw;
}
@media screen and (min-width: 768px) {
  .modal-mnp__lead {
    margin-top: calc(0.0162601626 * min(100vw, 1230px));
  }
}
.modal-mnp__figure {
  margin: 5.3333333333vw 0;
  padding-bottom: 5.3333333333vw;
  border-bottom: 0.2666666667vw #DDD solid;
}
@media screen and (min-width: 768px) {
  .modal-mnp__figure {
    margin: calc(0.0325203252 * min(100vw, 1230px)) 0;
    padding-bottom: calc(0.0325203252 * min(100vw, 1230px));
    border-width: calc(0.0008130081 * min(100vw, 1230px));
  }
}
.modal-mnp__figure img {
  width: 100%;
}
.modal-mnp__heading {
  text-align: center;
  font-weight: 700;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-mnp__heading {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
  }
}
.modal-mnp__list {
  width: fit-content;
  margin: 5.3333333333vw auto 0;
}
@media screen and (min-width: 768px) {
  .modal-mnp__list {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-mnp__item + .modal-mnp__item {
  margin: 2.6666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .modal-mnp__item + .modal-mnp__item {
    margin-top: calc(0.006504065 * min(100vw, 1230px));
  }
}
.modal-mnp__link {
  font-weight: 700;
  color: #2F3965;
  font-size: 3.7333333333vw;
  display: flex;
  align-items: center;
  gap: 1.6vw;
}
@media screen and (min-width: 768px) {
  .modal-mnp__link {
    font-size: calc(0.0195121951 * min(100vw, 1230px));
    gap: calc(0.0097560976 * min(100vw, 1230px));
  }
}
.modal-mnp__link::before {
  content: "";
  display: inline-block;
  width: 4.8vw;
  aspect-ratio: 1/1;
  background: url("../images/ico_arrow_02.svg?202511") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .modal-mnp__link::before {
    width: calc(0.0195121951 * min(100vw, 1230px));
  }
}

.modal-child__heading {
  font-size: 4.2666666667vw;
  font-weight: 700;
  width: fit-content;
  margin: 4.2666666667vw auto 0;
  padding: 0 1em;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal-child__heading {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0210526316 * min(100vw, 950px));
  }
}
.modal-child__heading::before, .modal-child__heading::after {
  content: "";
  display: block;
  width: 0.5333333333vw;
  height: 11.4666666667vw;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .modal-child__heading::before, .modal-child__heading::after {
    width: calc(0.0031578947 * min(100vw, 950px));
    height: calc(0.0631578947 * min(100vw, 950px));
  }
}
.modal-child__heading::before {
  left: 0;
  rotate: -15deg;
}
.modal-child__heading::after {
  right: 0;
  rotate: 15deg;
}
.modal-child__image {
  width: 68.2666666667vw;
  margin: 4.2666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .modal-child__image {
    width: calc(0.4210526316 * min(100vw, 950px));
    margin-top: calc(0.0252631579 * min(100vw, 950px));
  }
}
.modal-child__box-heading {
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: 700;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-child__box-heading {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0421052632 * min(100vw, 950px));
  }
}
.modal-child__box-list {
  margin: 4.2666666667vw auto 0;
}
@media screen and (min-width: 768px) {
  .modal-child__box-list {
    margin-top: calc(0.0168421053 * min(100vw, 950px));
    max-width: 400px;
  }
}
.modal-child__box-item {
  font-size: 3.2vw;
  font-weight: 500;
  padding-left: 15.4666666667vw;
  position: relative;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .modal-child__box-item {
    font-size: calc(0.0147368421 * min(100vw, 950px));
    padding-left: calc(0.0978947368 * min(100vw, 950px));
  }
}
.modal-child__box-item--strong {
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: var(--primeColor);
  display: block;
  margin-bottom: 1.0666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-child__box-item--strong {
    font-size: calc(0.0210526316 * min(100vw, 950px));
    margin-bottom: calc(0.0084210526 * min(100vw, 950px));
  }
}
.modal-child__box-item + .modal-child__box-item {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-child__box-item + .modal-child__box-item {
    margin-top: calc(0.0252631579 * min(100vw, 950px));
  }
}
.modal-child__box-item::before {
  content: "";
  display: block;
  width: 13.3333333333vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #FFF6EA;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .modal-child__box-item::before {
    width: calc(0.0789473684 * min(100vw, 950px));
  }
}

.modal-lineup__box {
  border: 1px solid var(--primeColor);
  border-radius: 1.0666666667vw;
  max-width: 512px;
  margin: 0 auto;
  padding-bottom: 7.2vw;
}
@media screen and (min-width: 768px) {
  .modal-lineup__box {
    border-width: 2px;
    border-radius: calc(0.0084210526 * min(100vw, 950px));
    padding-bottom: calc(0.0421052632 * min(100vw, 950px));
  }
}
.modal-lineup__box + .modal-lineup__box {
  margin-top: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .modal-lineup__box + .modal-lineup__box {
    margin-top: calc(0.0336842105 * min(100vw, 950px));
  }
}
.modal-lineup__title {
  background-color: var(--primeColor);
  text-align: center;
  color: #fff;
  font-size: 4.5333333333vw;
  font-weight: 700;
  padding: 1.0666666667vw 0;
}
@media screen and (min-width: 768px) {
  .modal-lineup__title {
    font-size: calc(0.0162601626 * min(100vw, 1230px));
    padding: calc(0.0113821138 * min(100vw, 1230px)) 0;
  }
}
.modal-lineup__list {
  display: flex;
  justify-content: center;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .modal-lineup__list {
    margin-top: calc(0.0325203252 * min(100vw, 1230px));
  }
}
.modal-lineup__item {
  width: 50%;
}
.modal-lineup__pic {
  display: block;
}
.modal-lineup__pic img {
  height: 27.2vw;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-lineup__pic img {
    height: calc(0.1382113821 * min(100vw, 1230px));
  }
}
.modal-lineup__name {
  display: block;
  text-align: center;
  font-size: 3.2vw;
  font-weight: 700;
  margin-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .modal-lineup__name {
    font-size: calc(0.0162601626 * min(100vw, 1230px));
    margin-top: calc(0.0130081301 * min(100vw, 1230px));
  }
}
.modal-lineup__button {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .modal-lineup__button {
    gap: 6.4vw;
  }
}
@media screen and (min-width: 768px) {
  .modal-lineup__button {
    font-size: calc(0.0178861789 * min(100vw, 1230px));
    max-width: 360px;
    margin: calc(0.0421052632 * min(100vw, 950px)) auto calc(0.0210526316 * min(100vw, 950px));
  }
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #D3EDFB;
  transition: 0.3s;
  height: calc(100dvh - 28vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .video-modal {
    height: calc(100dvh - 0.1336842105 * min(100vw, 950px));
  }
}
.video-modal:not(.is-shown) {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.video-modal.is-shown {
  z-index: 800;
}
.video-modal.is-shown .ulizahtml5 {
  border: 1px solid #2F3965;
}
.video-modal.is-shown .ulizahtml5, .video-modal.is-shown .uliza-play-start-button {
  pointer-events: all !important;
}
.video-modal__close {
  position: fixed;
  top: 2.1333333333vw;
  right: 2.1333333333vw;
  color: transparent;
  border: none;
  width: 9.6vw;
  height: 9.6vw;
  background: url("../images/ico_close_01.svg?202511") no-repeat center center/contain;
  z-index: 800;
  font-size: 0;
}
@media screen and (min-width: 768px) {
  .video-modal__close {
    width: calc(0.0390243902 * min(100vw, 1230px));
    height: calc(0.0390243902 * min(100vw, 1230px));
    position: absolute;
    top: calc(0.0162601626 * min(100vw, 1230px));
    right: calc(0.0292682927 * min(100vw, 1230px));
  }
}
.video-modal__inner {
  padding: 0 4vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .video-modal__inner {
    padding: 0 15px;
    max-width: 950px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .video-modal__inner {
    max-width: 918px;
    position: relative;
  }
}

.uliza-play-start-button {
  pointer-events: none !important;
}

.ulizahtml5 {
  pointer-events: none !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}

/*! 20251001 */
.cp_simple3__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  font-weight: 700;
  font-size: 4.2666666667vw;
  margin: 10.6666666667vw auto 0;
  text-align: center;
  gap: 2.6666666667vw;
}

@media screen and (min-width: 768px) {
  .cp_simple3__heading {
    gap: calc(0.0084210526 * min(100vw, 950px));
  }
}
.cp_simple3__heading::before, .cp_simple3__heading::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 3.2vw;
  background: currentColor;
  transform-origin: bottom center;
}

@media screen and (min-width: 768px) {
  .cp_simple3__heading::before, .cp_simple3__heading::after {
    width: calc(0.0021052632 * min(100vw, 950px));
    height: calc(0.0231578947 * min(100vw, 950px));
  }
}
.cp_simple3__heading::before {
  transform: rotate(-20deg) translateY(2px);
}

.cp_simple3__heading::after {
  transform: rotate(20deg) translateY(2px);
}

@media screen and (min-width: 768px) {
  .cp_simple3__heading {
    font-size: calc(0.0252631579 * min(100vw, 950px));
    margin-top: calc(0.0631578947 * min(100vw, 950px));
  }
}
.cp_simple3__heading::before, .cp_simple3__heading::after {
  width: 0.5333333333vw;
  height: 10.6666666667vw;
}

@media screen and (min-width: 768px) {
  .cp_simple3__heading::before, .cp_simple3__heading::after {
    width: calc(0.0026315789 * min(100vw, 950px));
    height: calc(0.0294736842 * min(100vw, 950px));
  }
}
.cp_simple3__heading::before {
  transform: rotate(-20deg);
}

.cp_simple3__heading::after {
  transform: rotate(20deg);
}

.accordion-corner-c {
  border: none;
}

.accordion-corner-c .accordion-title {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  max-width: 500px;
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.7333333333vw;
  color: #ff0033;
  border: solid 2px #ff0033;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 2px 2px 0 #ff0033;
}

@media (min-width: 768px) {
  .accordion-corner-c .accordion-title {
    height: 80px;
    font-size: 22px;
    z-index: 2;
  }
}
.accordion-corner-c .accordion-title .accordion-icon {
  right: 4vw;
  margin-top: 0;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  background-color: #ff0033;
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .accordion-corner-c .accordion-title .accordion-icon {
    right: 16px;
    width: 30px;
    height: 30px;
  }
}
.accordion-corner-c .accordion-title .accordion-icon span:nth-child(1) {
  top: 50%;
  left: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.accordion-title.is-active .accordion-icon span:nth-child(1) {
  opacity: 0;
}

.accordion-corner-c .accordion-title .accordion-icon span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.accordion-title.is-active .accordion-icon span:nth-child(2) {
  opacity: 1;
}

.accordion_cp_simple3 {
  border: none;
}

.accordion-box-inner {
  border: solid 3px #071852;
  margin-top: -80px;
  padding: 80px 40px 40px 40px;
  border-radius: 10px;
}

.accordion-title:hover {
  opacity: 1;
}

.sec-lead {
  margin-top: 5.3333333333vw;
  text-align: center;
  font-size: 3.7333333333vw;
  font-weight: 500;
}

.sec-lead a {
  margin-top: 5.3333333333vw;
  text-align: center;
  font-size: 3.7333333333vw;
  font-weight: 500;
}

@media (min-width: 768px) {
  .sec-lead {
    font-size: 22px;
    margin-top: 40px;
  }
  .sec-lead a {
    font-size: 22px;
    margin-top: 40px;
  }
}
.box-cp {
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  max-width: 920px;
  text-align: center;
  border: solid 3px #ff0033;
  background-color: #fff;
}

@media (min-width: 768px) {
  .box-cp {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .accordion-box {
    margin-top: 0px;
  }
  .accordion-box-inner {
    margin-top: 0;
    padding: 20px;
  }
  .cp_simple3 .section__title {
    text-align: center;
    font-size: 5.533333vw;
    font-weight: 700;
  }
}
/*! 20251001 */
