@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+HK:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
*,
*::after,
*::before {
  margin: 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, menu {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: unset;
  color: inherit;
}

html {
  font-size: 10px;
  scroll-padding-top: var(--height-header);
  scroll-behavior: smooth;
  --gap-x: 2rem;
}
@media (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}

.txt-blue {
  color: #073880;
}

.txt-yellow {
  color: #fff352;
}

.txt-cyan {
  color: #00a5c7;
}

.txt-red {
  color: #e8383d;
}

.txt-white {
  color: #fff;
}

.txt-base-gry {
  color: #303030;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
}

a,
[role=button] {
  transition: all 0.5s;
  cursor: pointer;
}
a:hover,
[role=button]:hover {
  filter: blur(1px);
}

.container {
  width: min(100% - var(--gap-x), 120rem);
  margin: 0 auto;
}

.btn-red {
  font-size: 3.4rem;
  font-weight: 900;
  color: white;
  display: block;
  text-align: center;
  border-radius: 1.5rem;
  box-shadow: 0.6rem 0.6rem 0px 0px rgba(0, 0, 0, 0.25);
}
.btn-red:hover {
  filter: blur(0);
  box-shadow: 0rem 0.6rem 0px 0px rgba(0, 0, 0, 0.25);
}
.btn-red:hover span {
  transform: translateY(0.6rem);
}
.btn-red span {
  background-color: #ee7800;
  padding: 0.7rem 4.4rem;
  transition: all 0.3s;
  display: block;
  width: 100%;
  border-radius: 1.5rem;
}

.sp {
  display: none;
}

.stick-btn__wrap {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 2rem;
  left: 0;
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.8);
}

#stick-btn {
  font-size: 4.2rem;
}
#stick-btn span {
  padding: 0.8rem 8rem;
}

#toggle-menu {
  display: none;
}
#toggle-menu .wrap {
  width: 7.8rem;
  aspect-ratio: 1/0.5;
  position: relative;
}
#toggle-menu span {
  position: absolute;
  left: 50%;
  height: 3px;
  background-color: #000;
  width: 100%;
  transition: all 0.5s;
}
#toggle-menu span:nth-child(1) {
  top: 0;
  transform: translateX(-50%);
}
#toggle-menu span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
#toggle-menu span:nth-child(3) {
  bottom: 0;
  transform: translateX(-50%);
}

#header {
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.25);
  position: sticky;
  background-color: white;
  top: 0;
  left: 0;
  z-index: 99;
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 8rem;
}
#header .logo img {
  aspect-ratio: auto;
  width: auto;
}
#header .nav-wrap {
  display: flex;
  align-items: center;
  gap: 7rem;
}
#header .nav .list {
  display: flex;
  gap: 4.8rem;
}
#header .nav .list a {
  font-size: 2.4rem;
  font-weight: 700;
  color: #303030;
}

#footer {
  background: #073880;
  padding: 2.4rem 0;
}
#footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .footer-bt {
  margin-top: 2.4rem;
  font-size: max(12px, 1.6rem);
  font-weight: normal;
  line-height: 1.1;
  text-align: center;
}
#footer .logo {
  display: flex;
}
#footer .list {
  display: flex;
  gap: 2rem 5rem;
  flex-wrap: wrap;
}
#footer .list .item {
  font-size: 2rem;
  font-weight: 500;
}

.mv {
  background-image: radial-gradient(circle at center, #84d1e2 0.25rem, #55cadd 0);
  background-size: 1.9rem 1.9rem;
  background-position: 0 0, 0.65rem 0.65rem;
  padding-top: 3rem;
  --pl: 4rem;
}
.mv-inner {
  width: min(100% - var(--gap-x), 130rem);
  margin: 0 auto;
  position: relative;
  padding-bottom: 1.6rem;
}
.mv-ttl {
  font-size: 9rem;
  font-weight: 900;
  text-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
}
.mv-ttl small {
  font-size: 0.6666666667em;
}
.mv-body {
  margin-top: 4rem;
}
.mv-body .list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 93rem;
}
.mv-body .item {
  display: flex;
  box-shadow: 0.8rem 0.8rem 0px 0px rgba(0, 0, 0, 0.15);
}
.mv-body .item-img {
  display: flex;
  width: 6.2rem;
  aspect-ratio: 1;
}
.mv-body .item-img img {
  width: 100%;
}
.mv-body .item span {
  display: block;
  font-size: 4.4rem;
  font-weight: 700;
  padding: 0 2rem 0 1rem;
  background-color: white;
  line-height: 1.4;
}
.mv-footer {
  margin-top: 2rem;
}
.mv-footer__ttl {
  font-size: 4rem;
  font-weight: 900;
  transform: rotate(-9.965deg);
  width: -moz-fit-content;
  width: fit-content;
  transform-origin: right;
  position: relative;
}
.mv-footer__ttl::after {
  content: "";
  display: block;
  padding-bottom: 1.125em;
  width: 106%;
  left: 49%;
  top: 78%;
  position: absolute;
  background: url(../images/mv-line-curve.png) no-repeat center center;
  background-size: contain;
  transform: rotate(-1deg) translateX(-50%);
}
.mv-footer__body {
  margin-top: 6rem;
  font-size: 8rem;
  font-weight: 900;
  text-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4);
}
.mv-thumb {
  position: absolute;
  bottom: 0;
  display: inline-flex;
  right: -2rem;
  width: 56rem;
}
.mv-thumb img {
  width: 100%;
}
.mv .mv-footer__body, .mv-body, .mv-ttl {
  padding-left: var(--pl);
}

.rule-inner {
  max-width: 60%;
  margin: 0 auto;
  padding: 6rem 0 8rem 0;
}
.rule-ttl {
  font-size: 3rem;
  font-weight: 600;
  color: #202020;
  margin-bottom: 2rem;
}
.rule-ttl__h3 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #202020;
  margin: 3.5rem 0 2rem 0;
}
.rule-txt {
  font-size: 1.5rem;
  font-weight: 300;
  color: #202020;
  line-height: 2.6rem;
}
.rule-ol {
  list-style-type: decimal;
  padding-left: 1.6rem;
}

.sec-one {
  padding: 6rem 0;
  background: url(../images/sec-one-bg.jpg) no-repeat center center/cover;
}
.sec-one .ttl {
  font-size: 7rem;
  text-align: center;
  font-weight: 900;
}
.sec-one .content {
  margin-top: 5rem;
}
.sec-one .content .list {
  display: grid;
  row-gap: 3rem;
}
.sec-one .content .item {
  display: flex;
  gap: 3rem;
  align-items: baseline;
}
.sec-one .content .item-img {
  flex-shrink: 0;
}
.sec-one .content .item-img img {
  width: 7rem;
}
.sec-one .content .item p {
  font-size: 3.94rem;
  font-weight: 700;
}

.sec-second {
  padding-bottom: 6rem;
}
.sec-second .ttl {
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  background-color: #fff352;
  padding-top: 4.5rem;
  position: relative;
  --pb: 11rem;
  margin-bottom: var(--pb);
}
.sec-second .ttl::after {
  content: "";
  display: block;
  top: 100%;
  width: 100%;
  position: absolute;
  height: var(--pb);
  background-color: #fff352;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.sec-second .content {
  padding-top: 4rem;
}
.sec-second .content .list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.sec-second .content .list .item {
  padding: 1rem 4rem;
  font-size: 5rem;
  color: white;
  font-weight: 900;
  border-radius: 1rem;
  border: 2px solid #073880;
  background: #00a5c7;
  box-shadow: 0.6rem 0.6rem 0.6rem 0px rgba(0, 0, 0, 0.25);
}
.sec-second .content .box {
  margin-top: 6.4rem;
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 4rem;
}
.sec-second .content .box-item {
  padding: 6rem 3.2rem;
  background-color: #fff352;
  border-radius: 2rem;
  font-size: 3.6rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  position: relative;
}
.sec-second .content .box-item p {
  position: relative;
  z-index: 3;
}
.sec-second .content .box-item::after {
  content: "!";
  width: 48.275862069%;
  position: absolute;
  z-index: 2;
  line-height: 0.88;
  border-radius: 50%;
  top: 50%;
  text-align: center;
  left: 50%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #fff352;
  font-size: 30rem;
  font-weight: 900;
  font-family: "Noto Serif HK", serif;
}

.sec-third {
  padding-top: 2.2rem;
  background: linear-gradient(180deg, #d9d9d9 0%, #d9d9d9 42.5%, #737373 100%);
}
.sec-third .ttl {
  font-weight: 900;
}
.sec-third .ttl-img {
  width: 22rem;
}
.sec-third .ttl-img img {
  width: 100%;
}
.sec-third .ttl-top {
  display: flex;
  font-size: 5.5rem;
  align-items: center;
  gap: 5.6rem;
}
.sec-third .ttl-bt {
  text-align: center;
  font-size: 5rem;
  color: #303030;
  margin-top: 1rem;
}
.sec-third .ttl-bt span {
  position: relative;
}
.sec-third .ttl-bt span small {
  position: relative;
  z-index: 2;
}
.sec-third .ttl-bt span::after {
  z-index: 1;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  aspect-ratio: 35/12.5;
  width: 100%;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: white;
}
.sec-third .content {
  padding-top: 7rem;
}
.sec-third .content-top .container {
  display: flex;
  justify-content: center;
  width: min(100% - var(--gap-x), 90rem);
}
.sec-third .content-top .table {
  width: 100%;
  color: white;
  font-size: 4rem;
  font-weight: 500;
  line-height: 2.5;
  background-color: #303030;
}
.sec-third .content-top .table td {
  padding: 0 4.8rem;
}
.sec-third .content-top .table td small {
  font-size: 0.75em;
}
.sec-third .content-top td {
  border-left: 2px solid white;
}
.sec-third .content-top td:first-child {
  border-left: unset;
}
.sec-third .content-top tr {
  border-bottom: 2px solid white;
}
.sec-third .content-top tr:last-child {
  border-bottom: unset;
}
.sec-third .content-bt {
  margin-top: 3.5rem;
}
.sec-third .content-bt__ttl {
  font-weight: 900;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.sec-third .content-bt__ttl .txt-lg {
  font-size: 10rem;
  border-bottom: 1rem solid #303030;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.07em;
}
.sec-third .content-bt__ttl .txt-lg span {
  font-size: 0.6em;
}
.sec-third .content-bt__ttl .txt-lg small {
  font-size: 0.4em;
}
.sec-third .content-bt__ttl .txt-sm {
  font-size: 6rem;
  color: #303030;
}
.sec-third .content-bt__body {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
}
.sec-third .content-bt .bt-body__img {
  padding-top: 3.5rem;
}
.sec-third .content-bt .bt-body__img img {
  width: 100%;
}
.sec-third .content-bt .bt-body__content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.sec-third .content-bt .bt-body__content .list .item {
  position: absolute;
}
.sec-third .content-bt .bt-body__content .list .item:nth-child(1) {
  left: 19.5rem;
  top: 5rem;
}
.sec-third .content-bt .bt-body__content .list .item:nth-child(2) {
  top: 0;
  right: 28.6rem;
}
.sec-third .content-bt .bt-body__content .list .item:nth-child(3) {
  top: 31.8rem;
  left: 9.5rem;
}
.sec-third .content-bt .bt-body__content .list .item:nth-child(4) {
  top: 23.8rem;
  right: 13rem;
}
.sec-third .content-bt .bt-body__content .list .item:nth-child(5) {
  bottom: 10rem;
  left: 22.4rem;
}
.sec-third .content-bt .bt-body__content .list .item:nth-child(6) {
  bottom: 16.5rem;
  right: 24.9rem;
}
.sec-third .content-bt .bt-body__content .list .item img {
  width: 36rem;
}
.sec-third .content-bt .bt-body__content .list .item span {
  position: absolute;
  font-size: 5rem;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.sec-fourth {
  background-image: radial-gradient(circle at center, rgba(0, 165, 199, 0.92) 0.5rem, rgba(0, 165, 199, 0.8) 0);
  background-size: 3rem 3rem;
}
.sec-fourth .ttl-black {
  background-color: black;
  text-align: center;
  padding: 5rem 0;
  font-size: 8.5rem;
  font-weight: 700;
  line-height: 0.823;
}
.sec-fourth .ttl-yellow {
  background: #fff352;
  padding-top: 3.2rem;
  padding-bottom: 10rem;
  font-size: 8rem;
  font-weight: 900;
  text-align: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 60%, 50% 100%, 0 60%);
          clip-path: polygon(0% 0%, 100% 0, 100% 60%, 50% 100%, 0 60%);
}
.sec-fourth .ttl-yellow span {
  font-weight: 300;
}
.sec-fourth .ttl-yellow small {
  font-size: 0.75em;
}
.sec-fourth .content {
  margin-top: 3.4rem;
}
.sec-fourth .content-ttl {
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
}
.sec-fourth .content-body {
  margin-top: 3.2rem;
  border-radius: 3rem;
  border: 1rem solid var(--__, #073880);
  background: #fff;
  text-align: center;
  padding: 6rem 2rem;
  padding-top: 0;
}
.sec-fourth .content-body .txt-underline {
  position: relative;
}
.sec-fourth .content-body .txt-underline > * {
  position: relative;
  z-index: 2;
}
.sec-fourth .content-body .txt-underline::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  transform: translate(-50%, -60%);
  height: var(--height, 0.24em);
  background-color: #fff352;
}
.sec-fourth .content-body .txt-price {
  font-size: 16rem;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sec-fourth .content-body .txt-price span {
  font-size: 0.4375em;
}
.sec-fourth .content-body .txt-price span[data-txt] {
  position: relative;
}
.sec-fourth .content-body .txt-price span[data-txt]::after {
  content: attr(data-txt);
  position: absolute;
  color: #073880;
  font-size: 0.2857142857em;
  font-weight: 400;
  top: 0;
  right: 0;
  transform: translate(110%, -85%);
}
.sec-fourth .content-body .txt-price small {
  font-weight: 700;
  font-size: 0.28125em;
}
.sec-fourth .content-body .txt-charge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  margin-top: 4rem;
}
.sec-fourth .content-body .txt-charge .more {
  position: relative;
  display: inline-block;
}
.sec-fourth .content-body .txt-charge .more::after {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 100%;
  height: 100%;
  background-color: #303030;
  z-index: 2;
}
.sec-fourth .content-body .txt-charge .more::before {
  content: attr(data-txt);
  color: white;
  background-color: #303030;
  font-size: 3rem;
  font-weight: 900;
  position: relative;
  z-index: 3;
  padding: 0 0.2666666667em;
}
.sec-fourth .content-body .txt-charge .txt-content {
  font-size: 8rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1rem);
}
.sec-fourth .content-body .txt-charge .txt-content.txt-underline {
  --height: 0.475em;
}
.sec-fourth .content-body .txt-charge .txt-content.txt-underline::after {
  transform: translate(-50%, 35%);
  width: 105%;
}
.sec-fourth .content-body .txt-charge .txt-content small {
  font-size: 0.5em;
}
.sec-fourth .content-body .txt-charge .txt-content span {
  font-size: 0.625em;
}
.sec-fourth .content-body .txt-charge .txt-content var {
  font-size: 0.4375em;
}
.sec-fourth .content-body .txt-time {
  font-size: 4.5rem;
  font-weight: 900;
  text-align: center;
  margin-top: 5.2rem;
}
.sec-fourth .content-ft {
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  margin-top: 1.6rem;
  padding-bottom: 6rem;
}

.sec-fifth {
  background: #073880;
  padding: 8rem 0;
}
.sec-fifth .ttl {
  font-size: 7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.sec-fifth .content {
  margin-top: 7rem;
}
.sec-fifth .content .list {
  counter-reset: num;
  display: grid;
  row-gap: 4.8rem;
  grid-template-rows: 1fr;
}
.sec-fifth .content .item {
  counter-increment: num 1;
  display: flex;
  background: white;
  gap: 2.4rem;
}
.sec-fifth .content .item-head {
  display: flex;
  color: white;
  flex-shrink: 0;
}
.sec-fifth .content .item-head__ttl {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  display: inline-block;
}
.sec-fifth .content .item-head__ttl::after {
  content: " 0" counter(num);
}
.sec-fifth .content .item-head img {
  width: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 12/8;
  -o-object-position: center top;
     object-position: center top;
}
.sec-fifth .content .item-head__wrap {
  display: grid;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  row-gap: 1.5rem;
  background: #00a5c7;
}
.sec-fifth .content .item-head::after {
  content: "";
  width: 3rem;
  display: block;
  background: #00a5c7;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.sec-fifth .content .item-content {
  padding: 0.8rem 4.8rem 1.5rem 0;
}
.sec-fifth .content .item-content__ttl {
  font-size: 4rem;
  font-weight: 900;
}
.sec-fifth .content .item-content__pr {
  font-size: max(12px, 1.8rem);
  color: #303030;
  margin-top: 1.1rem;
  font-weight: 500;
}

.sec-sixth {
  padding: 8rem 0;
}
.sec-sixth .ttl {
  font-size: 7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.sec-sixth .content {
  margin-top: 7.2rem;
}
.sec-sixth .list {
  display: grid;
  row-gap: 2.4rem;
}
.sec-sixth .item {
  border-radius: 2rem;
  padding: 0 4rem;
  border: 0.3rem solid #00a5c7;
}
.sec-sixth .item.active .item-top {
  border-bottom: 1px solid #00a5c7;
}
.sec-sixth .item.active .item-btn {
  rotate: 360deg;
}
.sec-sixth .item.active .item-btn::after {
  opacity: 0;
}
.sec-sixth .item-ttl {
  font-size: 7rem;
  font-weight: 400;
  font-family: "Impact", "Anton", sans-serif;
  margin-right: 4rem;
}
.sec-sixth .item-bt, .sec-sixth .item-top {
  display: flex;
}
.sec-sixth .item-top {
  padding: 1rem 0;
  align-items: center;
}
.sec-sixth .item-bt {
  padding-top: 1.5rem;
  padding-bottom: 3.2rem;
  display: none;
}
.sec-sixth .item-bt .item-content {
  padding-top: 2.5rem;
}
.sec-sixth .item-content__ttl {
  font-size: 2.8rem;
  font-weight: 700;
}
.sec-sixth .item-content p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #303030;
  margin-top: 1.2rem;
}
.sec-sixth .item-btn {
  width: 4rem;
  aspect-ratio: 1;
  position: relative;
  display: block;
  align-self: center;
  transition: all 0.5s;
  flex-shrink: 0;
  margin-left: auto;
}
.sec-sixth .item-btn::before, .sec-sixth .item-btn::after {
  content: "";
  width: 100%;
  height: max(2px, 0.5rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.5s;
  background-color: #00a5c7;
}
.sec-sixth .item-btn::before {
  transform: translate(-50%, -50%);
}
.sec-sixth .item-btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

body.open-menu #toggle-menu span {
  --size: 20%;
  top: 50%;
  width: calc(100% - var(--size));
  left: calc(50% + var(--size));
}
body.open-menu #toggle-menu span:nth-child(2) {
  transform: translateX(-100%);
  opacity: 0;
}
body.open-menu #toggle-menu span:nth-child(3), body.open-menu #toggle-menu span:nth-child(1) {
  transform: translate(-50%) rotate(var(--rotate-degrees, -45deg));
}
body.open-menu #toggle-menu span:nth-child(3) {
  --rotate-degrees: 45deg;
}
body.open-menu #header .nav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(0);
  filter: blur(0);
}
body.display-stick-btn .stick-btn__wrap {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
  html {
    --gap-x: 8rem;
    font-size: 1.3020833333vw;
  }
  .sp {
    display: initial;
  }
  .pc {
    display: none;
  }
  .btn-red span {
    padding: 1rem 10rem;
  }
  #stick-btn {
    width: 85%;
  }
  #toggle-menu {
    display: block;
  }
  #header .inner {
    padding: 2.7rem calc(var(--gap-x) / 2);
  }
  #header .nav {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    filter: blur(5px);
    transform: translateY(5vh);
    transition: all 0.5s;
    top: var(--height-header);
    width: 100%;
    height: 100vh;
    background-color: white;
    left: 0;
  }
  #header .nav .btn {
    display: flex;
    justify-content: center;
  }
  #header .nav .nav-wrap {
    padding-top: 8vh;
    display: grid;
    width: calc(100% - var(--gap-x) * 2);
    margin: 0 auto;
    gap: 6rem;
  }
  #header .nav .list {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  #header .nav .list a {
    font-size: 3.5rem;
  }
  #header .logo img {
    width: 39rem;
    aspect-ratio: unset;
  }
  .mv {
    background-image: radial-gradient(circle at center, #84D1E2 0.5rem, #55CADD 0);
    background-size: 4rem 4rem;
  }
  .mv .mv-ttl {
    font-size: 8.2rem;
    text-shadow: 0.7877rem 0.7877rem 0.7877rem rgba(0, 0, 0, 0.4);
    line-height: 1.1;
  }
  .mv-body {
    margin-top: 4rem;
  }
  .mv .mv-footer__body,
  .mv-body,
  .mv-ttl {
    --pl: 0;
  }
  .mv-inner {
    padding-bottom: 6rem;
  }
  .mv-body .item-img {
    width: 7.4rem;
    aspect-ratio: 1;
  }
  .mv-body .item span {
    padding: 0rem 3.2rem 0rem 2rem;
    font-size: 5.6rem;
    line-height: 7.4rem;
  }
  .mv-body .item {
    align-items: center;
  }
  .mv-footer__ttl {
    text-align: center;
    font-size: 4.7rem;
    transform: rotate(-12deg);
  }
  .mv-footer__ttl::after {
    top: 90%;
    width: 110%;
    transform: rotate(0deg) translateX(-50%);
  }
  .txt-thumb {
    position: relative;
  }
  .mv-thumb {
    left: calc(100% + 5rem);
    bottom: 1rem;
    width: 44.5rem;
  }
  .mv-footer__body {
    font-size: 9.8rem;
    line-height: 1.2;
    margin-top: 8rem;
    text-shadow: 0.7877rem 0.7877rem 0.7877rem rgba(0, 0, 0, 0.4);
  }
  .mv-footer {
    margin-top: 1rem;
  }
  .sec-one {
    background: url(../images/sec-one-bg-sp.jpg) no-repeat center center/cover;
  }
  .sec-one .ttl {
    font-size: 6.3rem;
  }
  .sec-one .content .item p {
    font-size: 4.2rem;
  }
  .sec-one .content .item-img img {
    width: 6rem;
  }
  .sec-one .content .item {
    gap: 1.6rem;
  }
  .sec-second .ttl {
    font-size: 5.9rem;
  }
  .sec-second .content .list .item {
    padding: 1rem 4rem;
    font-size: 5.1rem;
    border-radius: 2rem;
    border-width: 0.4rem;
    box-shadow: 0.78rem 0.78rem 0.78rem 0px rgba(0, 0, 0, 0.25);
  }
  .sec-second .content .list {
    width: 85%;
    margin: 0 auto;
  }
  .sec-second .content .box-item::after {
    width: 52%;
  }
  .sec-second .content .box-item {
    font-size: 4.7rem;
    padding: 5.5rem 3.2rem;
    border-radius: 4rem;
  }
  .sec-third {
    padding-top: 6rem;
    background: linear-gradient(180deg, #D9D9D9 0%, #D9D9D9 82.5%, #737373 100%);
  }
  .sec-third .ttl-top {
    flex-direction: column;
    font-size: 4.7rem;
    text-align: center;
  }
  .sec-third .ttl-img {
    order: 1;
    width: 37.4rem;
    display: flex;
  }
  .sec-third .ttl-bt {
    margin-top: 7rem;
  }
  .sec-third .ttl-bt {
    font-size: 6.3rem;
  }
  .sec-third .ttl-bt span::after {
    transform: translate(-50%, -33%);
    width: 110%;
    aspect-ratio: 35/12;
  }
  .sec-third .content {
    padding-top: 12rem;
  }
  .sec-third .content-top .table {
    font-size: 3.5rem;
    line-height: 2.6;
  }
  .sec-third .content-top .table td {
    padding: 0 2.8rem;
  }
  .sec-third .content-top tr,
  .sec-third .content-top td {
    border-width: max(2px, 0.4rem);
  }
  .sec-third .content-top .table td small {
    font-size: 0.8857142857em;
  }
  .sec-third .content-bt__ttl .txt-lg {
    font-size: 10.8rem;
    padding: 0;
    padding-bottom: 4.5rem;
  }
  .sec-third .content-bt__ttl .txt-lg small {
    font-size: 6.89rem;
  }
  .sec-third .content-bt__ttl .txt-sm {
    line-height: 2.33;
    font-size: 5.9rem;
  }
  .sec-third .content-bt .bt-body__content .list .item img {
    width: 29.5rem;
  }
  .sec-third .content-bt .bt-body__content .list .item span {
    font-size: 4.33rem;
  }
  .sec-third .content-bt__body {
    padding-bottom: 18rem;
  }
  .sec-third .content-bt .bt-body__img {
    padding-top: 7.5rem;
  }
  .sec-third .content-bt .bt-body__content .list .item:nth-child(1) {
    top: 0;
    left: 4rem;
  }
  .sec-third .content-bt .bt-body__content .list .item:nth-child(2) {
    top: 1.8rem;
    right: 3.7rem;
  }
  .sec-third .content-bt .bt-body__content .list .item:nth-child(3) {
    top: 21.5rem;
    left: 0;
  }
  .sec-third .content-bt .bt-body__content .list .item:nth-child(4) {
    top: 21.5rem;
    right: 0;
  }
  .sec-third .content-bt .bt-body__content .list .item:nth-child(5) {
    bottom: 11rem;
    left: 6rem;
  }
  .sec-third .content-bt .bt-body__content .list .item:nth-child(6) {
    bottom: 8.4rem;
    right: 6.5rem;
  }
  .sec-fourth {
    background-image: radial-gradient(circle at center, rgba(0, 165, 199, 0.92) 1rem, rgba(0, 165, 199, 0.8) 0);
    background-size: 5.5rem 5.5rem;
  }
  .sec-fourth .ttl-black {
    font-size: 7.8769rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 3rem 0;
  }
  .sec-fourth .ttl-yellow {
    padding: 4.8rem 0;
    font-size: 5.9rem;
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
            clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
  }
  .sec-fourth .ttl-yellow small {
    font-size: 0.8010508475em;
  }
  .sec-fourth .content-ttl {
    font-size: 5.9rem;
  }
  .sec-fourth .content-body {
    margin-top: 5.7rem;
    border-radius: 5.9rem;
    padding: 6rem 2.5rem;
    padding-top: 0;
  }
  .sec-fourth .content-body .txt-price {
    font-size: 11rem;
    line-height: 1.1;
  }
  .sec-fourth .content-body .txt-price span {
    font-size: 5.1rem;
  }
  .sec-fourth .content-body .txt-price span[data-txt] {
    font-size: 4.7262rem;
  }
  .sec-fourth .content-body .txt-price span[data-txt]::after {
    font-size: 2.3rem;
  }
  .sec-fourth .content-body .txt-underline::after {
    --height: 0.35em;
    transform: translate(-50%, -12%);
    width: 101%;
  }
  .sec-fourth .content-body .txt-charge {
    flex-direction: column;
    align-items: center;
    margin-top: 7rem;
    row-gap: 5rem;
  }
  .sec-fourth .content-body .txt-charge .more::before {
    font-size: 2.7rem;
    padding: 0 0.35em;
  }
  .sec-fourth .content-body .txt-charge .txt-content {
    font-size: 8.86rem;
    line-height: 1.2;
  }
  .sec-fourth .content-body .txt-charge .txt-content span,
  .sec-fourth .content-body .txt-charge .txt-content small {
    font-size: 4.7rem;
  }
  .sec-fourth .content-body .txt-charge .txt-content.txt-underline::after {
    --height: 0.43em;
    transform: translate(-50%, 15%);
    width: 110%;
  }
  .sec-fourth .content-body .txt-charge .txt-content var {
    font-size: 3.15rem;
  }
  .sec-fourth .content-body .txt-time {
    font-size: 3.9rem;
    text-align: start;
  }
  .sec-fourth .content-ft {
    font-size: 2.76rem;
    margin-top: 3.2rem;
    padding-bottom: 8.6rem;
  }
  .sec-fifth {
    padding-top: 6.3rem;
    padding-bottom: 8.8rem;
  }
  .sec-fifth .ttl {
    font-size: 6.3rem;
    line-height: 2.18;
  }
  .sec-fifth .content {
    margin-top: 4rem;
  }
  .sec-fifth .content .item-head__ttl {
    font-size: 2.756rem;
    letter-spacing: 0.55rem;
  }
  .sec-fifth .content .item-content__ttl {
    font-size: 5.1rem;
  }
  .sec-fifth .content .item-content__pr {
    font-size: 3.15rem;
    margin-top: 2rem;
    line-height: 1.75;
  }
  .sec-fifth .content .item-head__wrap {
    place-content: center;
    padding-left: 2.3rem;
    row-gap: 2rem;
  }
  .sec-fifth .content .item {
    gap: 3rem;
  }
  .sec-fifth .content .item-head::after {
    width: 4.3rem;
  }
  .sec-fifth .content .item-content {
    padding: 3rem 3rem 3.5rem 0;
  }
  .sec-fifth .content .item-head img {
    width: 12.8rem;
  }
  .sec-sixth {
    padding: 6rem 0;
  }
  .sec-sixth .ttl {
    font-size: 6.3rem;
    font-weight: 700;
    line-height: 2.18;
  }
  .sec-sixth .content {
    margin-top: 4rem;
  }
  .sec-sixth .item-ttl {
    font-size: 6.55rem;
    margin-right: 3.8rem;
  }
  .sec-sixth .item-top {
    align-items: start;
  }
  .sec-sixth .item {
    border-radius: 1.87rem;
    border-width: 0.6rem;
  }
  .sec-sixth .item-top {
    padding: 2.1rem 0 2.4rem 0;
  }
  .sec-sixth .item-content__ttl {
    font-size: 2.8rem;
    display: inline-block;
    padding-right: 2rem;
  }
  .sec-sixth .item-btn {
    width: 3rem;
  }
  .sec-sixth .item-top .item-content__ttl {
    margin-top: 0.8rem;
  }
  .sec-sixth .item-content p {
    font-size: 2.5rem;
  }
  #footer {
    padding: 5rem 0;
  }
  #footer .footer-top {
    display: grid;
    row-gap: 4.1rem;
    align-items: unset;
    justify-content: unset;
  }
  #footer .logo {
    width: 100%;
    justify-content: center;
  }
  #footer .logo img {
    width: 39.3rem;
  }
  #footer .list {
    justify-content: space-between;
    gap: 2rem;
  }
  #footer .list .item {
    font-size: 2.95rem;
  }
  #footer .footer-bt {
    margin-top: 6rem;
    font-size: 2.36rem;
  }
}/*# sourceMappingURL=style.css.map */