@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F4F3EF;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 14px;
  }
}
html, body {
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: #333;
  line-height: 1.5;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  margin: 0;
  padding: 0;
}
ul a {
  text-decoration: none;
  color: #333;
}

.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  z-index: 300;
}
header h1 {
  width: 220px;
  position: relative;
  z-index: 25;
}
@media screen and (max-width: 860px) {
  header h1 {
    width: 220px;
  }
}
@media screen and (max-width: 480px) {
  header h1 {
    width: 180px;
  }
}
header h1 img {
  width: 100%;
  height: auto;
  display: block;
}
header .hamburger {
  display: none;
}
@media screen and (max-width: 860px) {
  header .hamburger {
    display: flex;
  }
}
header .hamburger {
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #113366;
  border-radius: 3px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background-color 0.3s ease;
  transform-origin: center;
}
header .hamburger.is-open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: #113366;
}
header .hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
header .hamburger.is-open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: #113366;
}
header nav {
  background-color: #fff;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 10px 10px 10px 35px;
}
header nav .nav-logo {
  display: none;
}
@media screen and (max-width: 860px) {
  header nav .nav-logo {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 220px;
    z-index: 5;
  }
  header nav .nav-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  header nav .nav-logo {
    width: 180px;
  }
}
@media screen and (max-width: 860px) {
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #F4F3EF;
    box-shadow: none;
    border-radius: 0;
    padding: 90px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    overflow-y: auto;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
  }
  header nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }
  header nav.is-open ul li {
    animation: navItemIn 0.45s cubic-bezier(0.34, 1.3, 0.64, 1) both;
  }
  header nav.is-open ul li:nth-child(1) {
    animation-delay: 0.08s;
  }
  header nav.is-open ul li:nth-child(2) {
    animation-delay: 0.13s;
  }
  header nav.is-open ul li:nth-child(3) {
    animation-delay: 0.18s;
  }
  header nav.is-open ul li:nth-child(4) {
    animation-delay: 0.23s;
  }
  header nav.is-open ul li:nth-child(5) {
    animation-delay: 0.28s;
  }
  header nav.is-open ul li:nth-child(6) {
    animation-delay: 0.33s;
  }
}
header nav ul {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 860px) {
  header nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}
header nav ul li a {
  color: #113366;
  font-size: 0.875rem;
  transition: font-weight 0.15s ease;
}
@media screen and (min-width: 861px) {
  header nav ul li a:not(.hd-contact):hover {
    font-weight: 700;
  }
}
header nav ul li a .en, header nav ul li a .nav-icon {
  display: none;
}
header nav ul li a .nav-text, header nav ul li a .jp {
  display: inline;
}
@media screen and (max-width: 860px) {
  header nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 6px;
    color: #113366;
    border-bottom: 1px solid rgba(17, 51, 102, 0.14);
    transition: transform 0.25s ease, padding-left 0.25s ease;
  }
  header nav ul li a .nav-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  header nav ul li a .en {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.625rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #113366;
  }
  header nav ul li a .jp {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #113366;
  }
  header nav ul li a .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #113366;
    position: relative;
    transition: transform 0.25s ease, background-color 0.25s ease;
  }
  header nav ul li a .nav-icon::before {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateX(-2px) rotate(45deg);
  }
  header nav ul li a:hover {
    padding-left: 14px;
  }
  header nav ul li a:hover .nav-icon {
    transform: translateX(4px);
  }
}
header nav ul li a.hd-contact {
  background-color: #FB602C;
  color: #fff;
  padding: 5px 20px;
  border-radius: 50px;
}
@media screen and (max-width: 860px) {
  header nav ul li a.hd-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 240px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 28px;
    background: linear-gradient(180deg, #FFD600 0%, #FFD600 50%, #FFBB00 50%, #FFBB00 100%);
    color: #fff;
    border: 2px solid #113366;
    border-radius: 50px;
    box-shadow: 0 4px 0 #113366;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  header nav ul li a.hd-contact:hover {
    transform: translateY(4px);
    color: #fff;
    box-shadow: 0 0 0 #113366;
  }
}
@media screen and (max-width: 860px) {
  header nav ul li:first-child a {
    border-top: 1px solid rgba(17, 51, 102, 0.14);
  }
}
@media screen and (max-width: 860px) {
  header nav ul li:last-child a {
    border-bottom: none;
  }
}
@media screen and (max-width: 860px) {
  header nav ul li:has(a.hd-contact) {
    display: flex;
    justify-content: center;
    border: none;
  }
}

body.nav-open {
  overflow: hidden;
  padding-right: var(--sb-w, 0px);
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-sec {
  position: relative;
  z-index: 20;
  background-color: #F4F3EF;
  padding: 100px 20px;
}
.contact-sec[data-fade] > .inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.35s;
}
.contact-sec[data-fade].is-visible > .inner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .contact-sec {
    padding: 64px 16px;
  }
}
@media screen and (max-width: 480px) {
  .contact-sec {
    padding: 48px 14px;
  }
}
.contact-sec .inner {
  max-width: 920px;
  margin: 0 auto;
}
.contact-sec .inner h3 {
  color: #113366;
  font-size: 5.375rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-sec .inner h3 {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-sec .inner h3 {
    font-size: 2.5rem;
  }
}
.contact-sec .inner h2 {
  color: #113366;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-sec .inner h2 {
    font-size: 1.15rem;
  }
}
.contact-sec .inner p {
  color: #113366;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .contact-sec .inner p {
    font-size: 14px;
    margin-top: 18px;
  }
  .contact-sec .inner p br {
    display: none;
  }
}
.contact-sec .inner .contact-sec-btn {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .contact-sec .inner .contact-sec-btn {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
  }
}
.contact-sec .inner .contact-sec-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 65px;
  background: linear-gradient(180deg, #FFD600 0%, #FFD600 50%, #FFBB00 50%, #FFBB00 100%);
  border: 2px solid #113366;
  border-radius: 50px;
  box-shadow: 0 4px 0 #113366;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-sec .inner .contact-sec-btn .btn:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #113366;
}
@media screen and (max-width: 768px) {
  .contact-sec .inner .contact-sec-btn .btn {
    height: 56px;
    font-size: 1rem;
    max-width: 280px;
  }
}

footer {
  position: relative;
  z-index: 20;
  background-color: #113366;
  color: #fff;
  padding: 50px 10px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 25px 15px;
  }
}
footer .footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .footer-top {
    flex-wrap: wrap;
  }
}
footer .footer-top .footer-top-left {
  width: 250px;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-top-left {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-top-left {
    width: 100%;
  }
}
footer .footer-top .footer-top-left img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-top-left img {
    max-width: 250px;
    width: 100%;
    margin-bottom: 25px;
  }
}
footer .footer-top .footer-top-right {
  width: calc(100% - 400px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  footer .footer-top .footer-top-right {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 768px) {
  footer .footer-top .footer-top-right {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  footer .footer-top .footer-top-right {
    flex-wrap: wrap;
  }
}
footer .footer-top .footer-top-right .footer-top-right-item {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-top .footer-top-right .footer-top-right-item:nth-child(1) {
  width: 40%;
}
@media screen and (max-width: 480px) {
  footer .footer-top .footer-top-right .footer-top-right-item,
  footer .footer-top .footer-top-right .footer-top-right-item:nth-child(1) {
    flex-wrap: wrap;
    width: 100%;
    gap: 0px;
    margin-bottom: 25px;
  }
}
footer .footer-top .footer-top-right .footer-top-right-item p {
  line-height: 2.5;
}
footer .footer-top .footer-top-right .footer-top-right-item ul li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.5;
  transition: opacity 0.2s ease;
}
footer a {
  transition: opacity 0.2s ease;
}
footer a:hover {
  opacity: 0.8;
}
footer .footer-top .footer-top-right .footer-top-right-item a {
  color: #fff;
  line-height: 2;
}
footer .footer-top .footer-top-right .footer-top-right-item img {
  width: 12.5px;
  height: 12.5px;
  margin-left: 10px;
}
footer .footer-totop {
  position: absolute;
  right: 15px;
  bottom: calc(50% + 8px);
  width: 100px;
  z-index: 3;
  display: block;
  transition: transform 0.25s ease;
}
footer .footer-totop img {
  width: 100%;
  height: auto;
  display: block;
}
footer .footer-totop:hover {
  transform: translateY(-6px);
  opacity: 1;
}
footer .footer-totop .footer-totop-bubble {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 6px 14px;
  background-color: #fff;
  color: #113366;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
footer .footer-totop .footer-totop-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #fff;
}
@media screen and (max-width: 768px) {
  footer .footer-totop {
    width: 100px;
    right: 10px;
    bottom: 175px;
  }
  footer .footer-totop .footer-totop-bubble {
    min-width: 50px;
    padding: 4px 10px;
    font-size: 11px;
  }
}
footer .footer-bottom {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 40px;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  footer .footer-bottom {
    padding: 20px;
  }
}
footer .footer-bottom .footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
footer .footer-bottom .footer-bottom-left .footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom .footer-bottom-left .footer-bottom-row {
    gap: 8px;
  }
}
footer .footer-bottom .footer-bottom-left .footer-bottom-label {
  color: #113366;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  min-width: 90px;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom .footer-bottom-left .footer-bottom-label {
    width: 100%;
    min-width: 0;
  }
}
footer .footer-bottom .footer-bottom-left ul {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom .footer-bottom-left ul {
    flex-wrap: wrap;
    gap: 0px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-bottom .footer-bottom-left ul li {
    width: 100%;
  }
}
footer .footer-bottom .footer-bottom-left ul li a {
  color: #113366;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
}
footer .footer-bottom .footer-bottom-left ul li a img {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom .footer-bottom-right {
    margin-top: 25px;
  }
}
footer .footer-bottom .footer-bottom-right p {
  color: #113366;
  font-size: 12px;
  line-height: 1.5;
}

.sec {
  padding: 100px 0;
}

.color_white {
  color: #fff !important;
}

.sec-top {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .sec-top {
    padding: 130px 16px 60px;
  }
}
.sec-top .sec-top-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }
}
.sec-top .sec-top-container .sec-top-contents {
  position: relative;
  left: 10%;
  color: #113366;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-container .sec-top-contents {
    display: contents;
  }
}
.sec-top .sec-top-container .sec-top-contents .sub {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-container .sec-top-contents .sub {
    order: 1;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
}
.sec-top .sec-top-container .sec-top-contents h1 {
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-container .sec-top-contents h1 {
    order: 2;
    font-size: 2.75rem;
  }
}
.sec-top .sec-top-container .sec-top-contents .txt {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0 25px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-container .sec-top-contents .txt {
    order: 3;
    font-size: 1.25rem;
    margin: 12px 0 0;
  }
}
.sec-top .sec-top-container .sec-top-contents a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 60px;
  background: linear-gradient(180deg, #57578F 0%, #57578F 50%, #113366 50%, #113366 100%);
  border-radius: 50px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-container .sec-top-contents a {
    order: 5;
    margin: 28px auto 0;
    height: 54px;
    font-size: 1.05rem;
  }
}
.sec-top .sec-top-container .sec-top-img {
  width: 450px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-container .sec-top-img {
    order: 4;
    width: 80%;
    max-width: 360px;
    margin: 28px auto 0;
  }
}
.sec-top .sec-top-container .sec-top-img img {
  width: 100%;
  height: auto;
  animation: secTopFloat 4.5s ease-in-out infinite;
  transform-origin: center;
}
.sec-top .sec-top-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.sec-top .sec-top-cloud {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}
.sec-top .sec-top-cloud--t1 {
  top: -70px;
  left: -60px;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--t1 {
    top: -40px;
    left: -40px;
    width: 130px;
    height: 130px;
  }
}
.sec-top .sec-top-cloud--t2 {
  top: -90px;
  left: 110px;
  width: 170px;
  height: 170px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--t2 {
    top: -56px;
    left: 8%;
    width: 100px;
    height: 100px;
  }
}
.sec-top .sec-top-cloud--t5 {
  top: -90px;
  right: 110px;
  width: 170px;
  height: 170px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--t5 {
    top: -56px;
    right: 8%;
    width: 100px;
    height: 100px;
  }
}
.sec-top .sec-top-cloud--t6 {
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--t6 {
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
  }
}
.sec-top .sec-top-cloud--l1 {
  top: 25%;
  left: -100px;
  width: 180px;
  height: 180px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--l1 {
    display: none;
  }
}
.sec-top .sec-top-cloud--l2 {
  top: 62%;
  left: -120px;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--l2 {
    display: none;
  }
}
.sec-top .sec-top-cloud--r1 {
  top: 28%;
  right: -110px;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--r1 {
    display: none;
  }
}
.sec-top .sec-top-cloud--r2 {
  top: 64%;
  right: -120px;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--r2 {
    display: none;
  }
}
.sec-top .sec-top-cloud--b1 {
  bottom: -20px;
  left: -60px;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b1 {
    bottom: -10px;
    left: -40px;
    width: 140px;
    height: 140px;
  }
}
.sec-top .sec-top-cloud--b2 {
  bottom: -55px;
  left: 80px;
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b2 {
    bottom: -30px;
    left: 8%;
    width: 150px;
    height: 150px;
  }
}
.sec-top .sec-top-cloud--b3 {
  bottom: -95px;
  left: 17%;
  width: 270px;
  height: 270px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b3 {
    bottom: -55px;
    left: 20%;
    width: 160px;
    height: 160px;
  }
}
.sec-top .sec-top-cloud--b4 {
  bottom: -145px;
  left: 28%;
  width: 290px;
  height: 290px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b4 {
    bottom: -85px;
    left: 33%;
    width: 170px;
    height: 170px;
  }
}
.sec-top .sec-top-cloud--b5 {
  bottom: -200px;
  left: calc(50% - 160px);
  width: 320px;
  height: 320px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b5 {
    bottom: -120px;
    left: calc(50% - 90px);
    width: 180px;
    height: 180px;
  }
}
.sec-top .sec-top-cloud--b6 {
  bottom: -145px;
  right: 28%;
  width: 290px;
  height: 290px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b6 {
    bottom: -85px;
    right: 33%;
    width: 170px;
    height: 170px;
  }
}
.sec-top .sec-top-cloud--b7 {
  bottom: -95px;
  right: 17%;
  width: 270px;
  height: 270px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b7 {
    bottom: -55px;
    right: 20%;
    width: 160px;
    height: 160px;
  }
}
.sec-top .sec-top-cloud--b8 {
  bottom: -55px;
  right: 80px;
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b8 {
    bottom: -30px;
    right: 8%;
    width: 150px;
    height: 150px;
  }
}
.sec-top .sec-top-cloud--b9 {
  bottom: -20px;
  right: -60px;
  width: 220px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .sec-top .sec-top-cloud--b9 {
    bottom: -10px;
    right: -40px;
    width: 140px;
    height: 140px;
  }
}

.sec-ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sec-ttl {
    margin-bottom: 32px;
  }
}
.sec-ttl h3 {
  color: #113366;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec-ttl h3 {
    font-size: 2.5rem;
  }
}
.sec-ttl h2 {
  color: #113366;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec-ttl h2 {
    font-size: 1rem;
  }
}

.sec.price {
  position: relative;
  z-index: 20;
  background-color: #F4F3EF;
}
.price .price-container[data-fade] .price-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.price .price-container[data-fade].is-visible .price-item {
  opacity: 1;
  transform: translateY(0);
}
.price .price-container[data-fade].is-visible .price-item:nth-child(1) {
  transition-delay: 0.1s;
}
.price .price-container[data-fade].is-visible .price-item:nth-child(2) {
  transition-delay: 0.3s;
}
.price .price-container[data-fade] .price-campain {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: 0.4s;
}
.price .price-container[data-fade].is-visible .price-campain {
  opacity: 1;
  transform: translateY(0);
}
.price .price-container .price-item {
  width: 100%;
  max-width: 860px;
  border-radius: 10px;
  box-shadow: 0px 8px 0px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  display: flex;
  flex-direction: column;
}
.price .price-container .price-item .price-item-ttl {
  width: 100%;
  background-color: #113366;
  border-radius: 10px 10px 0 0;
  padding: 15px;
}
.price .price-container .price-item .price-item-ttl h4 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-ttl h4 {
    font-size: 1.4rem;
  }
}
.price .price-container .price-item .price-item-contents {
  padding: 35px 15px 65px 15px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents {
    padding: 28px 14px 40px;
  }
}
.price .price-container .price-item .price-item-contents p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .txt {
    font-size: 0.95rem;
  }
}
.price .price-container .price-item .price-item-contents .price {
  color: #113366;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -0.25rem;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .price {
    font-size: 3.5rem;
    letter-spacing: -0.1rem;
  }
}
.price .price-container .price-item .price-item-contents .price span {
  font-size: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .price span {
    font-size: 1.1rem;
  }
}
.price .price-container .price-item .price-item-contents .req {
  color: #113366;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .req {
    font-size: 0.78rem;
  }
  .price .price-container .price-item .price-item-contents .req br {
    display: none;
  }
}
.price .price-container .price-item .price-item-contents .list {
  width: 100%;
  max-width: 600px;
  display: table;
  border-radius: 10px;
  padding: 15px;
  margin: 25px auto;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .list {
    padding: 12px;
    margin: 18px auto;
  }
}
.price .price-container .price-item .price-item-contents .list ul {
  display: table;
  margin: auto;
}
.price .price-container .price-item .price-item-contents .list ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #113366;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .list ul li {
    font-size: 0.85rem;
  }
}
.price .price-container .price-item .price-item-contents .list ul li:last-child {
  margin-bottom: 0;
}
.price .price-container .price-item .price-item-contents .price-btn {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FB602C;
  border-radius: 5px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin: auto auto 0;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .price-btn {
    height: 58px;
    font-size: 1.05rem;
    max-width: 320px;
  }
}
.price .price-container .price-item .price-item-contents .price-btn img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media screen and (max-width: 768px) {
  .price .price-container .price-item .price-item-contents .price-btn img {
    width: 14px;
    right: 14px;
  }
}
.price .flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .price .flex {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.price .flex .price-item {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .price .flex .price-item {
    width: 100%;
    max-width: 480px;
  }
}
.price .flex .price-item .none-price {
  color: #113366;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: line-through;
}
@media screen and (max-width: 768px) {
  .price .flex .price-item .none-price {
    font-size: 1.2rem;
  }
}
.price .flex .price-item .price {
  font-size: 4.625rem !important;
  line-height: 1.25;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .price .flex .price-item .price {
    font-size: 2.6rem !important;
  }
}
.price .flex .price-item .price span {
  font-size: 1.75rem !important;
}
@media screen and (max-width: 768px) {
  .price .flex .price-item .price span {
    font-size: 1rem !important;
  }
}
.price .flex .price-item .list {
  max-width: 450px !important;
  display: flex !important;
  justify-content: center;
  gap: 25px;
}
.price .flex .price-item .list--multi {
  flex-direction: column !important;
  align-items: center;
  gap: 12px;
  background-color: rgba(17, 51, 102, 0.1);
  padding: 18px 20px;
  border-radius: 10px;
}
.price .flex .price-item .price-promo {
  text-align: center;
  margin: 20px auto 0;
  padding: 14px 16px;
  color: #113366;
  font-weight: 600;
  line-height: 1.5;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.price .flex .price-item .price-promo .price-promo-em {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FB602C;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .price .flex .price-item .price-promo {
    min-height: 70px;
    padding: 10px 12px;
    margin-top: 14px;
  }
  .price .flex .price-item .price-promo .price-promo-em {
    font-size: 1.2rem;
  }
}
.price .flex .price-item .list--multi .list-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
}
.price .flex .price-item .list--multi .list-row ul {
  margin: 0 !important;
}
.price .flex .price-item .list--multi > ul {
  margin: 0 !important;
}
.price .flex .price-item .list--multi .list-note {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #113366;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 6px 22px;
  margin: 4px auto;
  border-radius: 999px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .price .flex .price-item .list--multi .list-row {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .price .flex .price-item .list {
    flex-direction: column !important;
    gap: 8px;
    align-items: center;
  }
}
.price .flex .price-item .list ul {
  margin: 0 !important;
}
.price .price-message {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .price .price-message {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .price .price-message img {
    width: 60px;
    height: auto;
  }
}
.price .price-message .hukidashi {
  position: relative;
  background-color: #FFD600;
  border-radius: 20px;
  padding: 15px 35px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .price .price-message .hukidashi {
    padding: 12px 18px;
  }
}
.price .price-message .hukidashi::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 97%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5px 21.7px 12.5px 0px;
  border-color: transparent #FFD600 transparent transparent;
}
@media screen and (max-width: 768px) {
  .price .price-message .hukidashi::after {
    border-width: 9px 14px 9px 0px;
    top: 18px;
  }
}
.price .price-message .hukidashi p {
  color: #113366;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .price .price-message .hukidashi p {
    font-size: 14px;
  }
}
.price .price-message .hukidashi p span {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .price .price-message .hukidashi p span {
    font-size: 1.05rem;
  }
}
.price .price-campain {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .price .price-campain {
    margin-top: 40px;
  }
}
.price .price-campain .price-campain_ttl {
  position: relative;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain_ttl {
    top: 25px;
    width: 75%;
    max-width: 300px;
  }
}
.price .price-campain .price-campain-container {
  position: relative;
  background-color: #FFD600;
  border-radius: 10px;
  box-shadow: 0px 8px 0px 0 rgba(0, 0, 0, 0.2);
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container {
    padding: 30px 18px 24px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents h5 {
  display: table;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  background-color: #113366;
  border-radius: 50px;
  padding: 5px 50px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents h5 {
    font-size: 1.3rem;
    padding: 6px 24px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .txt {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 15px auto;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .txt {
    font-size: 1rem;
    margin: 12px auto;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .coupon-code {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: -moz-fit-content;
  width: fit-content;
  color: #113366;
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  background-color: #fff;
  padding: 12px 30px 12px 40px;
  margin: 15px auto 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease;
  box-shadow: 0 3px 0 rgba(17, 51, 102, 0.12);
  font-family: inherit;
}
.price .price-campain .price-campain-container .price-campain-contents .coupon-code:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(17, 51, 102, 0.12);
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .coupon-code {
    font-size: 1.1rem;
    padding: 10px 16px 10px 20px;
    gap: 10px;
  }
}
.price .price-campain .coupon-code-icons {
  display: inline-flex;
  align-items: center;
  color: #113366;
}
.price .price-campain .coupon-code-icon {
  display: block;
  width: 25px;
  height: 25px;
}
.price .price-campain .coupon-code-icon--done {
  display: none;
}
.price .price-campain .coupon-code.is-copied .coupon-code-icon--copy {
  display: none;
}
.price .price-campain .coupon-code.is-copied .coupon-code-icon--done {
  display: block;
}
@media screen and (max-width: 768px) {
  .price .price-campain .coupon-code-icon {
    width: 22px;
    height: 22px;
  }
}
.price .price-campain .coupon-code-tooltip {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background-color: #113366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.04em;
}
.price .price-campain .coupon-code-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #113366;
}
.price .price-campain .coupon-code.is-copied .coupon-code-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.price .price-campain .price-campain-container .price-campain-contents .req {
  display: table;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.25;
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .req {
    text-align: left;
    width: 80%;
    margin: 15px 0 0;
    font-size: 12px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .req .min {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .req .min {
    font-size: 12px;
  }
}
.price .price-campain .price-campain-container img {
  position: absolute;
  width: 120px;
  height: auto;
  right: 3%;
  bottom: 10px;
  left: auto;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container img {
    width: 70px;
    right: -10px;
    bottom: -15px;
  }
}
.price .price-campain .en {
  text-align: center;
  color: #113366;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .price .price-campain .en {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .price-campain-terms {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 26px;
  margin: 22px auto 0;
  max-width: 760px;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .price-campain-terms {
    padding: 16px 16px;
    margin-top: 16px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .price-campain-terms h6 {
  color: #113366;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px dashed rgba(17, 51, 102, 0.2);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .price-campain-terms h6 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
}
.price .price-campain .price-campain-plan {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(17, 51, 102, 0.15);
}
.price .price-campain .price-campain-plan:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}
.price .price-campain .price-campain-plan:first-of-type {
  padding-top: 2px;
}
.price .price-campain .price-campain-plan .plan-name {
  color: #113366;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-plan .plan-name {
    font-size: 0.9rem;
  }
}
.price .price-campain .price-campain-plan .plan-desc {
  color: #113366;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-plan .plan-desc {
    font-size: 12px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .price-campain-notice {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  margin: 14px auto 0;
  max-width: 760px;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .price-campain-notice {
    padding: 14px 16px;
    margin-top: 12px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .price-campain-notice h6 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FB602C;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.4;
}
.price .price-campain .price-campain-notice h6 .price-campain-icon {
  color: #FB602C;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .price-campain-notice h6 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .price-campain-notice ul {
  padding-left: 20px;
  list-style: disc;
}
.price .price-campain .price-campain-container .price-campain-contents .price-campain-notice ul li {
  color: #113366;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 2px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-container .price-campain-contents .price-campain-notice ul li {
    font-size: 12px;
  }
}
.price .price-campain .price-campain-container .price-campain-contents .price-campain-notice ul li:last-child {
  margin-bottom: 0;
}
.price .price-campain .price-campain-btn {
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-btn {
    margin-top: 24px;
  }
}
.price .price-campain .price-campain-btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 380px;
  padding: 22px 48px;
  background-color: #FB602C;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 50px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price .price-campain .price-campain-btn a:hover {
  transform: translateY(6px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .price .price-campain .price-campain-btn a {
    min-width: 280px;
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}
.price .trial {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .price .trial {
    margin-top: 30px;
  }
}
.price .trial p {
  color: #113366;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .price .trial p {
    font-size: 14px;
  }
}
.price .trial p span {
  color: #FB602C;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .price .trial p span {
    font-size: 1.05rem;
  }
}
.price .trial[data-fade] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease-out 0.45s, transform 0.7s ease-out 0.45s;
}
.price .trial[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price .price-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 120px auto 0px;
}
@media screen and (max-width: 900px) {
  .price .price-cards {
    flex-direction: column;
    gap: 70px;
    max-width: 460px;
    margin-top: 72px;
  }
}
.price .price-cards[data-fade] .price-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.price .price-cards[data-fade].is-visible .price-card {
  opacity: 1;
  transform: translateY(0) scale(0.95);
}
.price .price-cards[data-fade].is-visible .price-card:nth-child(1) {
  transition-delay: 0.1s;
}
.price .price-cards[data-fade].is-visible .price-card:nth-child(2) {
  transition-delay: 0.25s;
}
.price .price-cards[data-fade].is-visible .price-card:nth-child(3) {
  transition-delay: 0.4s;
}
.price .price-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 10px;
  box-shadow: 0px 8px 0px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.price .price-card {
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}
.price .price-card.is-best {
  z-index: 4;
  transform: scale(1.06) !important;
}
@media screen and (max-width: 900px) {
  .price .price-card.is-best {
    transform: none !important;
  }
}
.price .price-card > .price-card-header,
.price .price-card > .price-card-body {
  position: relative;
  z-index: 2;
}
.price .price-card-kawauso {
  position: absolute;
  top: -70px;
  right: 15px;
  width: 100px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .price .price-card-kawauso {
    width: 80px;
    top: -56px;
    right: auto;
    left: 50%;
    transform: translateX(30px);
  }
}
.price .price-card-badge {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 46px;
  padding: 0 26px;
  color: #113366;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  border-radius: 26px;
  white-space: nowrap;
  background-color: #FFD600;
}
.price .price-card-badge::after {
  border-top-color: #FFD600 !important;
}
.price .price-card-badge::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top-style: solid;
  border-top-width: 14px;
}
@media screen and (max-width: 900px) {
  .price .price-card-badge {
    top: -50px;
    min-width: 160px;
    height: 42px;
    font-size: 16px;
    padding: 0 22px;
  }
}
.price .price-card.is-featured .price-card-badge,
.price .price-card.is-best .price-card-badge {
  background-color: #FFD600;
  color: #113366;
}
.price .price-card.is-best .price-card-badge {
  top: -55px;
  left: 12%;
  transform: translateX(0);
  z-index: 3;
}
.price .price-card.is-best .price-card-badge::after {
  bottom: auto;
  left: 98%;
  top: 50%;
  transform: translate(-1px, -50%);
  border-left: 14px solid #FFD600 !important;
  border-right: 0;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent;
  border-top-width: 8px;
  border-top-color: transparent !important;
}
@media screen and (max-width: 900px) {
  .price .price-card.is-best .price-card-badge {
    top: -45px;
    left: 50%;
    transform: translateX(calc(-100% - 30px));
  }
}
.price .price-card-header {
  width: 100%;
  background-color: #113366;
  border-radius: 10px 10px 0 0;
  padding: 18px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: auto;
}
@media screen and (max-width: 900px) {
  .price .price-card-header {
    min-height: 0;
    padding: 15px;
    gap: 10px;
  }
}
.price .price-card-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fff;
  color: #113366;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .price .price-card-no {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
}
.price .price-card.is-best .price-card-no {
  color: #FB602C;
}
.price .price-card.is-best .price-card-header {
  background-color: #FB602C;
}
.price .price-card-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .price .price-card-name {
    font-size: 1.25rem;
  }
}
.price .price-card-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 32px 20px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .price .price-card-body {
    padding: 26px 18px 24px;
  }
}
.price .price-card-price {
  width: 100%;
  padding: 0 0 16px;
  margin-bottom: 8px;
}
.price .price-card-price .amount {
  color: #113366;
  line-height: 1;
  margin-bottom: 10px;
}
.price .price-card-price .amount .tax-label {
  color: #113366;
  font-size: 0.95rem;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: 0.4em;
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  .price .price-card-price .amount .tax-label {
    font-size: 0.85rem;
    margin-right: 6px;
  }
}
.price .price-card-price .amount .value {
  font-family: "Montserrat", sans-serif;
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: -0.05rem;
}
@media screen and (max-width: 900px) {
  .price .price-card-price .amount .value {
    font-size: 2.6rem;
  }
}
.price .price-card.is-best .price-card-price .amount .value {
  color: #FB602C;
}
.price .price-card-price .amount .unit {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 4px;
  letter-spacing: 0;
}
.price .price-card-price .tax {
  color: rgba(17, 51, 102, 0.75);
  font-size: 15px;
  font-weight: 600;
}
.price .price-card-yearly {
  color: #113366;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.price .price-card-yearly span {
  font-size: 13px;
  font-weight: 700;
  margin-left: 2px;
}
.price .price-card-features {
  width: 100%;
  max-width: 285px;
  padding: 18px 0;
  margin: 0 auto 22px;
  border-top: 1px solid rgba(17, 51, 102, 0.15);
  border-bottom: 1px solid rgba(17, 51, 102, 0.15);
  list-style: none;
}
.price .price-card-features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #113366;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 0;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .price .price-card-features li {
    font-size: 14px;
  }
}
.price .price-card-features li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.price .price-card-terms {
  color: rgba(17, 51, 102, 0.7);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: auto;
  text-align: center;
}

.page-head {
  padding: 150px 25px 75px;
}
@media screen and (max-width: 768px) {
  .page-head {
    padding: 120px 16px 50px;
  }
}
.page-head .page-head-inner {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .page-head .page-head-inner {
    margin-bottom: 36px;
  }
}
.page-head .page-head-inner .page-head-inner-ttl {
  position: relative;
  display: table;
  margin: auto;
}
.page-head .page-head-inner .page-head-inner-ttl img {
  position: absolute;
  top: 0;
  left: 100%;
  width: 80px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page-head .page-head-inner .page-head-inner-ttl img {
    width: 50px;
  }
}
.page-head .page-head-inner .page-head-inner-ttl img[src*="qanda_illust_kawauso"] {
  width: 70px;
}
@media screen and (max-width: 768px) {
  .page-head .page-head-inner .page-head-inner-ttl img[src*="qanda_illust_kawauso"] {
    width: 46px;
  }
}
.page-head .page-head-inner h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 86px;
  font-weight: 900;
  line-height: 1.5;
  color: #113366;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-head .page-head-inner h2 {
    font-size: 48px;
  }
}
.page-head .page-head-inner h1 {
  color: #113366;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-head .page-head-inner h1 {
    font-size: 18px;
  }
}
.page-head p {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-head p {
    font-size: 14px;
  }
  .page-head p br {
    display: none;
  }
}

.features {
  position: relative;
  background-color: #FFD600;
  z-index: 20;
  padding: 100px 20px 100px;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  box-shadow: -5px 0px 18px rgba(17, 51, 102, 0.06);
}
@media screen and (max-width: 768px) {
  .features {
    padding: 70px 16px 80px;
    border-radius: 30px 30px 0 0;
    margin-top: -24px;
  }
}
.features .sec-ttl {
  text-align: center;
  margin-bottom: 60px;
}
.features .sec-ttl .en {
  color: #113366;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .features .sec-ttl .en {
    font-size: 2.75rem;
  }
}
.features .sec-ttl h2 {
  color: #113366;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.features-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.features-deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.95s cubic-bezier(0.34, 1.7, 0.5, 1), transform 0.95s cubic-bezier(0.34, 1.7, 0.5, 1);
}
.features-deco.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .features-deco {
    display: none;
  }
}
.features-deco--kawauso {
  top: 12%;
  left: -110px;
  width: 150px;
}
.features-deco--girl {
  top: 17%;
  right: -100px;
  width: 120px;
}
.features-deco--boy {
  top: 69%;
  left: -110px;
  width: 180px;
}

.features-vline {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 0;
  transform: translateX(-50%);
  background-image: linear-gradient(to bottom, #113366 0 6px, transparent 6px 16px);
  background-size: 100% 16px;
  background-repeat: repeat-y;
  pointer-events: none;
  z-index: 1;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .features-vline {
    display: none;
  }
}

.features-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 36px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.features-list > .features-item:nth-child(even) {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .features-list > .features-item:nth-child(even) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .features-list[data-fade-sp] .features-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .features-list[data-fade-sp].is-visible .features-item {
    opacity: 1;
    transform: translateY(0);
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(1) {
    transition-delay: 0.05s;
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(2) {
    transition-delay: 0.15s;
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(3) {
    transition-delay: 0.25s;
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(4) {
    transition-delay: 0.35s;
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(5) {
    transition-delay: 0.45s;
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(6) {
    transition-delay: 0.55s;
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(7) {
    transition-delay: 0.65s;
  }
  .features-list[data-fade-sp].is-visible .features-item:nth-child(8) {
    transition-delay: 0.75s;
  }
}

.features-item {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 50px 45px 28px;
  text-align: center;
  box-shadow: 0 6px 0 rgba(17, 51, 102, 0.08);
}
.features-item .features-num {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #113366;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-item .features-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-item .features-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.features-item .features-ttl {
  color: #113366;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.features-item .features-txt {
  color: #113366;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
}

.features-goal {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  text-align: center;
}
.features-goal .features-flag {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-150px);
  width: 60px;
  height: auto;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .features-goal .features-flag {
    transform: translateX(-130px);
    width: 50px;
    top: -36px;
  }
}
.features-goal .features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 18px 60px;
  background-color: #FB602C;
  color: #fff;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 0 rgba(17, 51, 102, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 768px) {
  .features-goal .features-btn {
    min-width: 260px;
    padding: 14px 40px;
    font-size: 20px;
  }
}
.features-goal .features-btn:hover {
  transform: translateY(6px);
  color: #fff;
  box-shadow: 0 0px 0 rgba(17, 51, 102, 0.2);
}

.flow {
  position: relative;
  z-index: 20;
  background-color: #F48A8C;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1.5px);
  background-size: 15px 15px;
}
.flow .flow-banner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 0 0;
}
.flow .flow-banner img {
  height: auto;
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .flow .flow-banner img {
    width: 100%;
  }
}
.flow .flow-container[data-fade] .flow-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.flow .flow-container[data-fade].is-visible .flow-item {
  opacity: 1;
  transform: translateY(0);
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(1) {
  transition-delay: 0.05s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(2) {
  transition-delay: 0.15s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(3) {
  transition-delay: 0.25s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(4) {
  transition-delay: 0.35s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(5) {
  transition-delay: 0.45s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(6) {
  transition-delay: 0.55s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(7) {
  transition-delay: 0.65s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(8) {
  transition-delay: 0.75s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(9) {
  transition-delay: 0.85s;
}
.flow .flow-container[data-fade].is-visible .flow-item:nth-child(10) {
  transition-delay: 0.95s;
}
.flow .flow-container .flow-item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px 0px 0 #113366;
  padding: 30px 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .flow .flow-container .flow-item {
    gap: 16px;
    padding: 20px 18px;
    margin-bottom: 18px;
    flex-direction: column;
    align-items: stretch;
  }
}
.flow .flow-container .flow-item:last-child {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .flow .flow-container .flow-item .flow-item-num {
    text-align: left;
  }
}
.flow .flow-container .flow-item .flow-item-num p {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #113366;
}
@media screen and (max-width: 768px) {
  .flow .flow-container .flow-item .flow-item-num p {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-align: left;
    font-size: 1rem;
  }
}
.flow .flow-container .flow-item .flow-item-num p span {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .flow .flow-container .flow-item .flow-item-num p span {
    font-size: 1.75rem;
  }
}
.flow .flow-container .flow-item .flow-item-contents .flow-item-contents-ttl {
  position: relative;
  font-size: 1.5rem;
  font-weight: 900;
  color: #113366;
  margin-bottom: 10px;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .flow .flow-container .flow-item .flow-item-contents .flow-item-contents-ttl {
    font-size: 1.1rem;
    padding-left: 22px;
    margin-bottom: 8px;
  }
}
.flow .flow-container .flow-item .flow-item-contents .flow-item-contents-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #FFBB00;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .flow .flow-container .flow-item .flow-item-contents .flow-item-contents-ttl::before {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 768px) {
  .flow .flow-container .flow-item .flow-item-contents .flow-item-contents-txt {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
.flow .flow-container .flow-item .flow-item-contents .flow-item-contents-txt a {
  color: #1976D2;
  text-decoration: underline;
}

.function {
  position: relative;
  background-color: #FB602C;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1.5px);
  background-size: 15px 15px;
  z-index: 20;
  padding: 90px 20px 80px;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  box-shadow: -5px 0px 18px rgba(17, 51, 102, 0.06);
}
@media screen and (max-width: 768px) {
  .function {
    padding: 60px 16px 60px;
    border-radius: 30px 30px 0 0;
    margin-top: -24px;
  }
}
.function .sec-ttl {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .function .sec-ttl {
    margin-bottom: 36px;
  }
}
.function .sec-ttl .en {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .function .sec-ttl .en {
    font-size: 2.75rem;
  }
}
.function .sec-ttl h2 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.function-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  -moz-column-gap: 70px;
       column-gap: 70px;
  row-gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .function-list {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 24px;
    max-width: 460px;
  }
}
.function-list > .function-item:nth-child(even) {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .function-list > .function-item:nth-child(even) {
    margin-top: 0;
  }
}

.function-deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  height: auto;
  animation: functionFloat 4s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .function-deco {
    display: none;
  }
}
.function-deco--girl {
  top: -10px;
  right: -120px;
  width: 210px;
  animation-delay: 0s;
}
.function-deco--boy {
  top: 20%;
  left: -110px;
  width: 160px;
  animation-delay: -1.3s;
}
.function-deco--kawauso {
  top: 64%;
  right: -90px;
  width: 130px;
  animation-delay: -2.6s;
}

@keyframes functionFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.function-item {
  position: relative;
  background-color: #fff;
  border-radius: 14px;
  padding: 26px 28px 28px;
  box-shadow: 0 6px 0 rgba(17, 51, 102, 0.12);
}
.function-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 26px;
  height: 26px;
  background-color: #fff;
  transform: translateX(-50%) rotate(45deg);
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 0 rgba(17, 51, 102, 0.12);
}
.function-item--anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.function-item--anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.function-item .function-item-ttl {
  color: #113366;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .function-item .function-item-ttl {
    font-size: 1.25rem;
  }
}
.function-item .function-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.function-item .function-item-list li {
  position: relative;
  color: #113366;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  padding: 4px 0 4px 34px;
}
.function-item .function-item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #113366;
}
.function-item .function-item-list li::after {
  content: "→";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

.function-illust {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .function-illust {
    margin-top: 0;
  }
}
.function-illust img {
  width: 100%;
  height: auto;
  display: block;
}

.flow-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .flow-flex-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
.flow-flex-container .flow-item {
  width: 20%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item {
    width: 100%;
  }
}
.flow-flex-container .flow-item .flow-item-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 75px 50px 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item .flow-item-num {
    padding: 50px 20px 28px;
    margin-bottom: 14px;
  }
}
.flow-flex-container .flow-item .flow-item-num::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 120px 0px 0px;
  border-color: #F48A8C transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item .flow-item-num::after {
    border-width: 70px 70px 0px 0px;
  }
}
.flow-flex-container .flow-item .flow-item-num p {
  position: absolute;
  top: 0;
  left: 0;
  color: #113366;
  font-size: 3rem;
  font-weight: 900;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item .flow-item-num p {
    font-size: 1.5rem;
    padding: 8px 14px;
  }
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item .flow-item-num img {
    max-width: 70px;
    height: auto;
  }
}
.flow-flex-container .flow-item .flow-item-contents {
  background-color: #FFD600;
  border-radius: 10px;
  padding: 25px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item .flow-item-contents {
    padding: 18px 16px;
    flex: 0 0 auto;
  }
}
.flow-flex-container .flow-item .flow-item-contents .flow-item-contents-ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #113366;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item .flow-item-contents .flow-item-contents-ttl {
    font-size: 1.1rem;
    min-height: 0;
    margin-bottom: 8px;
  }
  .flow-flex-container .flow-item .flow-item-contents .flow-item-contents-ttl br {
    display: none;
  }
}
.flow-flex-container .flow-item .flow-item-contents .flow-item-contents-txt {
  font-size: 0.875rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .flow-item .flow-item-contents .flow-item-contents-txt {
    font-size: 14px;
    line-height: 1.8;
  }
}
.flow-flex-container .flow-item .flow-item-contents .flow-item-contents-txt a {
  color: #1976D2;
  text-decoration: underline;
}
.flow-flex-container .triangle {
  position: relative;
  top: 85px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #FFD600;
  border-right: 0;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .flow-flex-container .triangle {
    top: 0;
    align-self: center;
    border-top: 18px solid #FFD600;
    border-bottom: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
  }
}
.flow-flex-container[data-fade] .flow-item,
.flow-flex-container[data-fade] .triangle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.flow-flex-container[data-fade].is-visible .flow-item,
.flow-flex-container[data-fade].is-visible .triangle {
  opacity: 1;
  transform: translateY(0);
}
.flow-flex-container[data-fade].is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.flow-flex-container[data-fade].is-visible > *:nth-child(2) {
  transition-delay: 0.18s;
}
.flow-flex-container[data-fade].is-visible > *:nth-child(3) {
  transition-delay: 0.31s;
}
.flow-flex-container[data-fade].is-visible > *:nth-child(4) {
  transition-delay: 0.44s;
}
.flow-flex-container[data-fade].is-visible > *:nth-child(5) {
  transition-delay: 0.57s;
}
.flow-flex-container[data-fade].is-visible > *:nth-child(6) {
  transition-delay: 0.7s;
}
.flow-flex-container[data-fade].is-visible > *:nth-child(7) {
  transition-delay: 0.83s;
}

.concept {
  position: relative;
  background-color: #F4F3EF;
  border-radius: 40px 40px 0 0;
  z-index: 20;
  margin-top: -40px;
  box-shadow: -5px 0px 18px rgba(17, 51, 102, 0.06);
}
@media screen and (max-width: 768px) {
  .concept {
    border-radius: 30px 30px 0 0;
    padding: 60px 16px 40px;
    margin-top: -24px;
  }
}
.concept .inner {
  max-width: 1000px !important;
}
.concept .concept-ttl h5 {
  font-family: "Fugaz One", sans-serif;
  color: #06C755;
  font-size: 4rem;
  text-shadow: 4px 4px 0px #D9D9D9;
}
@media screen and (max-width: 768px) {
  .concept .concept-ttl h5 {
    font-size: 2.2rem;
  }
}
.concept .concept-ttl h4 {
  color: #06C755;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .concept .concept-ttl h4 {
    font-size: 1.25rem;
  }
}
.concept .concept-txt {
  display: table;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 50px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .concept .concept-txt {
    display: block;
    padding: 22px 18px;
    margin-top: 28px;
  }
}
.concept .concept-txt p {
  color: #113366;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .concept .concept-txt p {
    font-size: 14px;
    line-height: 1.85;
  }
  .concept .concept-txt p br {
    display: none;
  }
}
.concept .concept_img {
  position: relative;
  top: -50px;
  display: table;
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .concept .concept_img {
    top: -20px;
    width: 90%;
    margin: 0 auto;
  }
}
.concept[data-fade] .concept-ttl,
.concept[data-fade] .concept-txt,
.concept[data-fade] .concept_img {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.concept[data-fade].is-visible .concept-ttl {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.concept[data-fade].is-visible .concept-txt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.concept[data-fade].is-visible .concept_img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.strengths {
  position: relative;
  z-index: 20;
  background-color: #06C755;
}
@media screen and (max-width: 768px) {
  .strengths {
    padding: 60px 16px;
  }
}
.strengths .strengths-contents .strengths-item {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px 0px 0 rgba(0, 0, 0, 0.2);
  padding: 30px 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .strengths .strengths-contents .strengths-item {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 22px 18px;
    margin-bottom: 18px;
  }
}
.strengths .strengths-contents .strengths-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .strengths .strengths-contents .strengths-item .strengths-img {
    text-align: center;
  }
}
.strengths .strengths-contents .strengths-item .strengths-img img {
  max-width: 100%;
  height: auto;
}
.strengths .strengths-contents .strengths-item .ttl {
  color: #113366;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .strengths .strengths-contents .strengths-item .ttl {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
}
.strengths .strengths-contents .strengths-item .txt {
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .strengths .strengths-contents .strengths-item .txt {
    font-size: 14px;
    line-height: 1.8;
  }
}
.strengths .strengths-contents[data-fade] .strengths-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.strengths .strengths-contents[data-fade].is-visible .strengths-item {
  opacity: 1;
  transform: translateY(0);
}
.strengths .strengths-contents[data-fade].is-visible .strengths-item:nth-child(1) {
  transition-delay: 0.05s;
}
.strengths .strengths-contents[data-fade].is-visible .strengths-item:nth-child(2) {
  transition-delay: 0.2s;
}
.strengths .strengths-contents[data-fade].is-visible .strengths-item:nth-child(3) {
  transition-delay: 0.35s;
}
.strengths .strengths-contents[data-fade].is-visible .strengths-item:nth-child(4) {
  transition-delay: 0.5s;
}

.growth {
  position: relative;
  z-index: 20;
  background-color: #F4F3EF;
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .growth {
    padding: 80px 16px;
  }
}
.growth .growth-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents {
    gap: 22px;
    justify-content: center;
    margin-bottom: 32px;
  }
}
.growth .growth-contents .growth-item {
  position: relative;
  width: 30%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px 0px 0 rgba(0, 0, 0, 0.2);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item {
    width: calc(50% - 11px);
    padding: 18px 12px;
  }
}
.growth .growth-contents .growth-item .growth-item_img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 15px;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item .growth-item_img {
    width: 60%;
    max-height: 130px;
    margin-bottom: 10px;
  }
}
.growth .growth-contents .growth-item p.ttl {
  color: #113366;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item p.ttl {
    font-size: 15px;
  }
}
.growth .growth-contents .growth-item .decoration01 {
  position: absolute;
  top: -30px;
  left: -30px;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item .decoration01 {
    width: 50px;
    top: -18px;
    left: -18px;
  }
}
.growth .growth-contents .growth-item .decoration02 {
  position: absolute;
  top: 5px;
  left: -30px;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item .decoration02 {
    width: 50px;
    left: -18px;
  }
}
.growth .growth-contents .growth-item .decoration03 {
  position: absolute;
  top: -40px;
  right: 0px;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item .decoration03 {
    width: 50px;
    top: -22px;
  }
}
.growth .growth-contents .growth-item-ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  line-height: 1.2;
  background-color: #06C755;
}
.growth .growth-contents .growth-item-ttl::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  pointer-events: none;
  z-index: 0;
}
.growth .growth-contents .growth-item-ttl .ttl-top {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.18);
}
@media screen and (max-width: 1200px) {
  .growth .growth-contents .growth-item-ttl .ttl-top {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item-ttl {
    width: 100%;
    padding: 26px 20px;
  }
  .growth .growth-contents .growth-item-ttl::before {
    inset: 6px;
  }
  .growth .growth-contents .growth-item-ttl .ttl-top {
    font-size: 1.75rem;
    line-height: 1.25;
    text-align: center;
    margin: 0 auto;
  }
}
.growth .growth-contents .growth-item-ttl .growth-ttl_img {
  position: absolute;
  left: -15px;
  bottom: -5px;
  transform: rotate(-5deg);
  width: 85px;
  height: auto;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item-ttl .growth-ttl_img {
    width: 55px;
    left: 6px;
  }
}
.growth .growth-contents .growth-item-ttl .growth-ttl_img_dec {
  position: absolute;
  top: -20px;
  right: -50px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .growth .growth-contents .growth-item-ttl .growth-ttl_img_dec {
    width: 60px;
    top: -16px;
    right: -10px;
  }
}
.growth .growth-contents[data-fade] .growth-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.growth .growth-contents[data-fade].is-visible .growth-item {
  opacity: 1;
  transform: translateY(0);
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(1) {
  transition-delay: 0.05s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(2) {
  transition-delay: 0.13s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(3) {
  transition-delay: 0.21s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(4) {
  transition-delay: 0.29s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(5) {
  transition-delay: 0.37s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(6) {
  transition-delay: 0.45s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(7) {
  transition-delay: 0.53s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(8) {
  transition-delay: 0.61s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(9) {
  transition-delay: 0.69s;
}
.growth .growth-contents[data-fade].is-visible .growth-item:nth-child(10) {
  transition-delay: 0.77s;
}
.growth .growth-req {
  color: #113366;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .growth .growth-req {
    font-size: 14px;
  }
}

.qanda {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .qanda {
    padding: 0 16px 80px;
  }
}
.qanda .qanda-ttl h4 {
  display: table;
  color: #113366;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  border-bottom: 1px solid #113366;
  margin: 0 auto 75px;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-ttl h4 {
    font-size: 26px;
    margin-bottom: 28px;
  }
}
.qanda .qanda-content {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content {
    margin-bottom: 50px;
  }
}
.qanda .qanda-content .qanda-item {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item {
    margin-bottom: 14px;
  }
}
.qanda .qanda-content .qanda-item .qanda-item-ttl {
  color: #113366;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .qanda-item-ttl {
    font-size: 14px;
    padding: 0 4px 6px;
  }
}
.qanda .qanda-content .qanda-item .toggle {
  display: none;
}
.qanda .qanda-content .qanda-item .qanda-item-body {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.qanda .qanda-content .qanda-item .Label { /*タイトル*/
  position: relative;
  padding: 15px 50px 15px 35px;
  display: flex;
  align-items: center;
  color: #113366;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .Label {
    font-size: 14px;
    padding: 12px 44px 12px 14px;
    line-height: 1.5;
  }
}
.qanda .qanda-content .qanda-item .Label:hover {
  cursor: pointer;
}
.qanda .qanda-content .qanda-item .Label span {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #113366;
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .Label span {
    font-size: 22px;
    margin-right: 10px;
  }
}
.qanda .qanda-content .qanda-item .Label::before { /*タイトル横の矢印*/
  content: "";
  width: 16px;
  height: 2.5px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background-color: #113366;
  border-radius: 2px;
}
.qanda .qanda-content .qanda-item .Label::after {
  content: "";
  width: 16px;
  height: 2.5px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(90deg);
  background-color: #113366;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .Label::before,
  .qanda .qanda-content .qanda-item .Label::after {
    width: 14px;
    right: 18px;
  }
}
.qanda .qanda-content .qanda-item .Label,
.qanda .qanda-content .qanda-item .content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.qanda .qanda-content .qanda-item .content {
  position: relative; /*本文*/
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  background-color: #fff;
  padding: 0 75px;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .content {
    padding: 0 18px;
  }
}
.qanda .qanda-content .qanda-item .toggle:checked + .Label + .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: rgba(17, 51, 102, 0.05);
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .toggle:checked + .Label + .content::before {
    left: 18px;
    right: 18px;
  }
}
.qanda .qanda-content .qanda-item .content hr {
  position: absolute;
  top: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #E7EBF2;
  color: transparent;
  border-width: 0;
}
.qanda .qanda-content .qanda-item .content p {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .content p {
    font-size: 14px;
    line-height: 1.85;
  }
}
.qanda .qanda-content .qanda-item .toggle:checked + .Label + .content { /*開閉時*/
  height: auto;
  padding: 30px 75px;
  transition: height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .qanda .qanda-content .qanda-item .toggle:checked + .Label + .content {
    padding: 18px 18px 24px;
  }
}
.qanda .qanda-content .qanda-item .toggle:checked + .Label {
  border-radius: 0;
  box-shadow: none;
}
.qanda .qanda-content .qanda-item .toggle:checked + .Label::after {
  display: none;
}

.contact {
  padding: 0 25px 150px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 0 16px 80px;
  }
}
.contact form .formTable {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact form .formTable tr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact form .formTable tr {
    margin-bottom: 22px;
  }
}
.contact form .formTable tr th {
  width: 100%;
  text-align: left;
  color: #113366;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .contact form .formTable tr th {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.contact form .formTable tr td {
  width: 100%;
  color: #113366;
}
.contact form .formTable tr td input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  color: #113366;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact form .formTable tr td input {
    font-size: 14px;
    padding: 12px 14px;
  }
}
.contact form .formTable tr td input:focus {
  outline: none;
}
.contact form .formTable tr td .choice-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .contact form .formTable tr td .choice-list {
    gap: 12px;
  }
}
.contact form .formTable tr td .choice-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #113366;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact form .formTable tr td .choice-label {
    font-size: 14px;
    gap: 10px;
  }
}
.contact form .formTable tr td .choice-label input[type=checkbox],
.contact form .formTable tr td .choice-label input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  padding: 0;
  margin: 0;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}
.contact form .formTable tr td .choice-label input[type=checkbox]:focus,
.contact form .formTable tr td .choice-label input[type=radio]:focus {
  outline: none;
}
.contact form .formTable tr td .choice-label input[type=checkbox] {
  border-radius: 4px;
}
.contact form .formTable tr td .choice-label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #113366;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact form .formTable tr td .choice-label input[type=radio] {
  border-radius: 50%;
}
.contact form .formTable tr td .choice-label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #113366;
  transform: translate(-50%, -50%);
}
.contact form .formTable tr td textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  color: #113366;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .contact form .formTable tr td textarea {
    font-size: 14px;
    padding: 12px 14px;
    margin-top: 18px;
  }
}
.contact form .formTable tr td textarea:focus {
  outline: none;
}
.contact form input[type=submit] {
  width: 100%;
  max-width: 370px;
  display: inline-block;
  background-color: #FB602C;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  margin-top: 50px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact form input[type=submit] {
    font-size: 16px;
    padding: 14px 18px;
    margin-top: 32px;
    max-width: 280px;
  }
}
.contact form input[type=submit]:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.thanks {
  padding-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .thanks {
    padding-bottom: 100px;
  }
}
.thanks .thanks-inner {
  margin-bottom: 75px;
  text-align: center;
}
.thanks .thanks-inner .thanks-kawauso {
  display: block;
  width: 100%;
  max-width: 100px;
  height: auto;
  margin: 0 auto 24px;
}
@media screen and (max-width: 480px) {
  .thanks .thanks-inner .thanks-kawauso {
    max-width: 80px;
    margin-bottom: 18px;
  }
}
.thanks .thanks-inner h2 {
  color: #113366;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 480px) {
  .thanks .thanks-inner h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.thanks .thanks-inner p {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 35px;
}
.thanks .thanks-inner .btn {
  width: 100%;
  max-width: 370px;
  display: inline-block;
  background-color: #113366;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 15px 20px;
  border-radius: 50px;
  margin-top: 25px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.thanks .thanks-inner .btn:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .thanks .thanks-inner .btn {
    font-size: 16px;
    padding: 14px 18px;
    max-width: 280px;
  }
}

.legal {
  padding: 0 25px 150px;
}
@media screen and (max-width: 768px) {
  .legal {
    padding: 0 16px 80px;
  }
}
.legal .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.legal .legal-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .legal .legal-list {
    gap: 22px;
  }
}
.legal .legal-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(17, 51, 102, 0.15);
}
@media screen and (max-width: 768px) {
  .legal .legal-item {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 18px;
  }
}
.legal .legal-item dt {
  width: 280px;
  flex-shrink: 0;
  color: #113366;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .legal .legal-item dt {
    width: 100%;
    font-size: 15px;
  }
}
.legal .legal-item dd {
  flex: 1;
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .legal .legal-item dd {
    font-size: 14px;
  }
}
.legal .legal-item dd a {
  color: #113366;
  text-decoration: underline;
}
.legal .legal-item dd a:hover {
  opacity: 0.7;
}
.legal .legal-item dd .legal-block-ttl {
  font-weight: 700;
  margin-top: 8px;
}
.legal .legal-item dd .legal-block-ttl:first-child {
  margin-top: 0;
}
.legal .legal-item dd .legal-notes {
  list-style: disc;
  padding-left: 20px;
}
.legal .legal-item dd .legal-notes li {
  line-height: 1.8;
}
.legal.legal-policy .policy-intro {
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-intro {
    font-size: 14px;
    margin-bottom: 28px;
  }
}
.legal.legal-policy .policy-article {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-article {
    margin-bottom: 36px;
  }
}
.legal.legal-policy .policy-article h3 {
  color: #113366;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 51, 102, 0.15);
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-article h3 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
}
.legal.legal-policy .policy-article p {
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-article p {
    font-size: 14px;
  }
}
.legal.legal-policy .policy-article p:last-child {
  margin-bottom: 0;
}
.legal.legal-policy .policy-list {
  list-style: decimal;
  padding-left: 22px;
  margin: 10px 0;
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-list {
    font-size: 14px;
    padding-left: 20px;
  }
}
.legal.legal-policy .policy-list li {
  margin-bottom: 4px;
}
.legal.legal-policy .policy-contact {
  background-color: rgba(17, 51, 102, 0.05);
  border-left: 3px solid #113366;
  border-radius: 0;
  padding: 18px 24px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-contact {
    padding: 14px 18px;
  }
}
.legal.legal-policy .policy-contact p {
  margin-bottom: 4px;
}
.legal.legal-policy .policy-contact p:last-child {
  margin-bottom: 0;
}
.legal.legal-policy .policy-list ul,
.legal.legal-policy .policy-sublist {
  list-style: disc;
  padding-left: 22px;
  margin: 6px 0 8px;
}
.legal.legal-policy .policy-list ul li,
.legal.legal-policy .policy-sublist li {
  margin-bottom: 4px;
}
.legal.legal-policy .policy-list-unordered {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0;
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-list-unordered {
    font-size: 14px;
    padding-left: 20px;
  }
}
.legal.legal-policy .policy-list-unordered li {
  margin-bottom: 4px;
}
.legal.legal-policy .policy-sub {
  margin-top: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-sub {
    margin-top: 20px;
    margin-bottom: 12px;
  }
}
.legal.legal-policy .policy-sub:first-of-type {
  margin-top: 0;
}
.legal.legal-policy .policy-subttl {
  color: #113366;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-subttl {
    font-size: 15px;
  }
}
.legal.legal-policy .policy-outro {
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .legal.legal-policy .policy-outro {
    font-size: 14px;
  }
}

.sec-news {
  background-color: #F4F3EF;
  padding: 100px 0 120px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-news {
    padding: 70px 0 90px;
  }
}
.sec-news .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.sec-news .sec-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .sec-news .sec-news-head {
    flex-wrap: wrap;
    gap: 18px;
  }
}
.sec-news .sec-news-ttl .en {
  color: #113366;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .sec-news .sec-news-ttl .en {
    font-size: 2.75rem;
  }
}
.sec-news .sec-news-ttl h2 {
  color: #113366;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.sec-news .sec-news-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec-news .sec-news-btn {
    display: none;
  }
}
.sec-news .sec-news-btn a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 48px;
  background-color: #113366;
  color: #fff;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sec-news .sec-news-btn a:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.sec-news .sec-news-btn img {
  position: absolute;
  z-index: 1;
  width: 110px;
  height: auto;
  right: -18px;
  bottom: -34px;
  pointer-events: none;
}
.sec-news .sec-news-sp-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec-news .sec-news-sp-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 20px;
  }
  .sec-news .sec-news-sp-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 50px;
    background-color: #113366;
    color: #fff;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .sec-news .sec-news-sp-btn a:hover {
    transform: translateY(4px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

.news-marquee {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.news-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: -moz-max-content;
  width: max-content;
  list-style: none;
  padding: 0 14px;
  margin: 0;
  animation: news-marquee-x 18s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .news-marquee-track {
    gap: 20px;
    animation-duration: 15s;
  }
}
.news-marquee-track li {
  flex: 0 0 280px;
  animation: news-marquee-y-odd 18s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .news-marquee-track li {
    flex: 0 0 220px;
    animation-duration: 15s;
  }
}
.news-marquee-track li:nth-child(even) {
  animation-name: news-marquee-y-even;
}

@keyframes news-marquee-x {
  0% {
    transform: translateX(0);
  }
  5.56% {
    transform: translateX(-8.333%);
  }
  16.67% {
    transform: translateX(-8.333%);
  }
  22.22% {
    transform: translateX(-16.666%);
  }
  33.33% {
    transform: translateX(-16.666%);
  }
  38.89% {
    transform: translateX(-25%);
  }
  50% {
    transform: translateX(-25%);
  }
  55.56% {
    transform: translateX(-33.333%);
  }
  66.67% {
    transform: translateX(-33.333%);
  }
  72.22% {
    transform: translateX(-41.666%);
  }
  83.33% {
    transform: translateX(-41.666%);
  }
  88.89% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes news-marquee-y-odd {
  0% {
    transform: translateY(-22px);
  }
  5.56% {
    transform: translateY(22px);
  }
  16.67% {
    transform: translateY(22px);
  }
  22.22% {
    transform: translateY(-22px);
  }
  33.33% {
    transform: translateY(-22px);
  }
  38.89% {
    transform: translateY(22px);
  }
  50% {
    transform: translateY(22px);
  }
  55.56% {
    transform: translateY(-22px);
  }
  66.67% {
    transform: translateY(-22px);
  }
  72.22% {
    transform: translateY(22px);
  }
  83.33% {
    transform: translateY(22px);
  }
  88.89% {
    transform: translateY(-22px);
  }
  100% {
    transform: translateY(-22px);
  }
}
@keyframes news-marquee-y-even {
  0% {
    transform: translateY(22px);
  }
  5.56% {
    transform: translateY(-22px);
  }
  16.67% {
    transform: translateY(-22px);
  }
  22.22% {
    transform: translateY(22px);
  }
  33.33% {
    transform: translateY(22px);
  }
  38.89% {
    transform: translateY(-22px);
  }
  50% {
    transform: translateY(-22px);
  }
  55.56% {
    transform: translateY(22px);
  }
  66.67% {
    transform: translateY(22px);
  }
  72.22% {
    transform: translateY(-22px);
  }
  83.33% {
    transform: translateY(-22px);
  }
  88.89% {
    transform: translateY(22px);
  }
  100% {
    transform: translateY(22px);
  }
}
.sec-news-item {
  display: block;
  background-color: #fff;
  border-radius: 14px;
  padding: 14px 14px 18px;
  color: #113366;
  box-shadow: 0 6px 18px rgba(17, 51, 102, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sec-news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17, 51, 102, 0.12);
}
.sec-news-item .sec-news-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(17, 51, 102, 0.06);
  margin-bottom: 12px;
}
.sec-news-item .sec-news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sec-news-item .date {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(17, 51, 102, 0.65);
}
.sec-news-item .ttl {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.55;
  margin: 4px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec-news-item .category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background-color: #FB602C;
  padding: 4px 12px;
  border-radius: 50px;
}

.news-list {
  padding: 0 25px 150px;
}
@media screen and (max-width: 768px) {
  .news-list {
    padding: 0 16px 80px;
  }
}
.news-list .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.news-list .news-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(17, 51, 102, 0.06);
}
@media screen and (max-width: 768px) {
  .news-list .news-filter {
    gap: 10px;
    padding: 16px 18px;
    margin-bottom: 28px;
  }
}
.news-list .news-filter-label {
  color: #113366;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding-right: 16px;
  border-right: 1px solid rgba(17, 51, 102, 0.15);
}
@media screen and (max-width: 768px) {
  .news-list .news-filter-label {
    width: 100%;
    padding-right: 0;
    border-right: none;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(17, 51, 102, 0.12);
  }
}
.news-list .news-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-list .news-filter-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  color: #113366;
  border: 1px solid rgba(17, 51, 102, 0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s ease;
}
.news-list .news-filter-btn:hover {
  background-color: rgba(17, 51, 102, 0.06);
}
.news-list .news-filter-btn.is-active {
  background-color: #113366;
  color: #fff;
  border-color: #113366;
}
@media screen and (max-width: 768px) {
  .news-list .news-filter-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
}
.news-list .news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .news-list .news-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media screen and (max-width: 560px) {
  .news-list .news-list-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.news-list .news-list-grid > li {
  list-style: none;
}

.news-detail {
  padding: 0 25px 100px;
}
@media screen and (max-width: 768px) {
  .news-detail {
    padding: 0 16px 60px;
  }
}
.news-detail .inner {
  max-width: 860px;
  margin: 0 auto;
}
.news-detail .news-detail-article {
  background-color: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(17, 51, 102, 0.06);
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-article {
    padding: 22px 18px 28px;
    border-radius: 10px;
  }
}
.news-detail .news-detail-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(17, 51, 102, 0.06);
  margin-bottom: 24px;
}
.news-detail .news-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-detail .news-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.news-detail .news-detail-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #FB602C;
  padding: 4px 14px;
  border-radius: 50px;
}
.news-detail .news-detail-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(17, 51, 102, 0.65);
}
.news-detail .news-detail-ttl {
  color: #113366;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 51, 102, 0.15);
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-ttl {
    font-size: 19px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }
}
.news-detail .news-detail-body p {
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 16px;
}
.news-detail .news-detail-body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-body p {
    font-size: 14px;
  }
}
.news-detail .news-detail-body h4 {
  color: #113366;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  margin: 28px 0 12px;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-body h4 {
    font-size: 16px;
    margin: 22px 0 10px;
  }
}
.news-detail .news-detail-body h4:first-child {
  margin-top: 0;
}
.news-detail .news-detail-body ul {
  list-style: disc;
  padding-left: 24px;
  margin: 4px 0 16px;
}
.news-detail .news-detail-body ul li {
  color: #113366;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-body ul li {
    font-size: 14px;
  }
}
.news-detail .news-detail-body a {
  color: #113366;
  text-decoration: underline;
  font-weight: 700;
  word-break: break-all;
}
.news-detail .news-detail-body a:hover {
  opacity: 0.7;
}
.news-detail .news-detail-body a .tab-icon {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  vertical-align: baseline;
}
.news-detail .news-detail-body .news-detail-links {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.news-detail .news-detail-body .news-detail-links li {
  margin-bottom: 6px;
}
.news-detail .news-detail-body .news-detail-note {
  color: rgba(17, 51, 102, 0.7);
  font-size: 13px;
  line-height: 1.7;
  margin: 4px 0;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-body .news-detail-note {
    font-size: 12px;
  }
}
.news-detail .news-detail-body .news-detail-coupon {
  background-color: rgba(251, 96, 44, 0.08);
  border-left: 3px solid #FB602C;
  padding: 20px 24px;
  margin: 24px 0;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-body .news-detail-coupon {
    padding: 16px 18px;
  }
}
.news-detail .news-detail-body .news-detail-coupon p {
  margin-bottom: 8px;
}
.news-detail .news-detail-body .news-detail-coupon .coupon-code {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: #FB602C;
  padding: 10px 18px;
  background-color: #fff;
  border-radius: 6px;
  margin: 6px 0 12px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-body .news-detail-coupon .coupon-code {
    font-size: 16px;
    padding: 8px 14px;
  }
}
.news-detail .news-detail-back {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .news-detail .news-detail-back {
    margin-top: 36px;
  }
}
.news-detail .btn-back-list {
  display: inline-block;
  min-width: 240px;
  background-color: #113366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-detail .btn-back-list:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  .news-detail .btn-back-list {
    font-size: 14px;
    padding: 12px 24px;
    min-width: 200px;
  }
}

.recommendation {
  position: relative;
  background-color: #FB602C;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1.5px);
  background-size: 15px 15px;
  padding: 100px 20px 120px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .recommendation {
    padding: 70px 16px 90px;
  }
}
.recommendation .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.recommendation-container {
  position: relative;
}
.recommendation-container[data-fade] .recommendation-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.recommendation-container[data-fade].is-visible .recommendation-item {
  opacity: 1;
  transform: translateY(0);
}
.recommendation-container[data-fade].is-visible .recommendation-item:nth-child(1) {
  transition-delay: 0.35s;
}
.recommendation-container[data-fade].is-visible .recommendation-item:nth-child(2) {
  transition-delay: 0.48s;
}
.recommendation-container[data-fade].is-visible .recommendation-item:nth-child(3) {
  transition-delay: 0.61s;
}
.recommendation-container[data-fade].is-visible .recommendation-item:nth-child(4) {
  transition-delay: 0.74s;
}
.recommendation-container[data-fade].is-visible .recommendation-item:nth-child(5) {
  transition-delay: 0.87s;
}
.recommendation-container[data-fade].is-visible .recommendation-item:nth-child(6) {
  transition-delay: 1s;
}
.recommendation-container + .recommendation-container {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .recommendation-container + .recommendation-container {
    margin-top: 70px;
  }
}

.recommendation-deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  height: auto;
  top: 10px;
}
.recommendation-deco.recommendation-deco--left {
  width: 160px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .recommendation-deco.recommendation-deco--left {
    width: 100px;
    left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .recommendation-deco.recommendation-deco--left {
    width: 80px;
    left: 4px;
  }
}
.recommendation-deco.recommendation-deco--right {
  width: 170px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .recommendation-deco.recommendation-deco--right {
    width: 110px;
    right: 6px;
  }
}
@media screen and (max-width: 480px) {
  .recommendation-deco.recommendation-deco--right {
    width: 85px;
    right: 0;
  }
}

.recommendation-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .recommendation-head {
    margin-bottom: 36px;
  }
}
.recommendation-head img {
  max-width: 800px;
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recommendation-head img {
    max-width: 420px;
  }
}
.recommendation-head .recommendation-head-pill {
  display: inline-block;
}
.recommendation-head .recommendation-head-pill p {
  display: inline-block;
  color: #113366;
  background-color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 50px;
  border-radius: 50px;
}

.recommendation-contents {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .recommendation-contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media screen and (max-width: 480px) {
  .recommendation-contents {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.recommendation-item {
  background-color: #fff;
  border-radius: 18px;
  padding: 32px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 4px 4px 0 #113366;
}
.recommendation-item img {
  width: 50px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}
.recommendation-item p {
  color: #113366;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}
.recommendation-item p .orange {
  display: inline-block;
  color: #FB602C;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.recommendation-item p .mm {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #113366;
  line-height: 1.35;
  margin-bottom: 6px;
}
.recommendation-item:nth-child(5) p .orange {
  font-size: 38px;
}
.recommendation-item:nth-child(6) p .orange {
  font-size: 48px;
}

.detail-stack {
  position: relative;
  height: 540vh;
  background-color: #F4F3EF;
  z-index: 15;
}
@media screen and (max-width: 860px) {
  .detail-stack {
    height: auto;
  }
}

.detail-stack-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 860px) {
  .detail-stack-pin {
    position: static;
    height: auto;
    overflow: visible;
  }
}

.detail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.detail.is-active {
  pointer-events: auto;
  z-index: 2;
}
.detail--outsource {
  background-color: #FFBB00;
}
.detail--makevi {
  background-color: #FB602C;
}
.detail--makevillage {
  background-color: #06C755;
}
@media screen and (max-width: 860px) {
  .detail {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    padding: 25px 16px 70px;
    min-height: auto;
  }
}

.detail-inner {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 860px) {
  .detail-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 860px) {
  .detail-inner > .detail-illust {
    order: -1;
    width: 65%;
    margin: 0 0 -40px auto;
    position: relative;
    z-index: 2;
  }
  .detail-inner > .detail-text {
    order: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }
  .detail-inner > .detail-text .view-more {
    align-self: center;
  }
}

@media screen and (max-width: 860px) {
  .detail--makevillage .detail-inner > .detail-illust {
    width: 55%;
  }
}
.detail-text {
  color: #113366;
}
.detail-text .detail-text-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  margin-bottom: 24px;
  box-shadow: 0 6px 0 #113366;
}
@media screen and (max-width: 768px) {
  .detail-text .detail-text-card {
    padding: 28px 24px;
  }
}
.detail-text .detail-card-sub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.detail-text .detail-card-ttl {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .detail-text .detail-card-ttl {
    font-size: 40px;
  }
}
.detail-text .detail-card-lead {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .detail-text .detail-card-lead br {
    display: none;
  }
}
.detail-text .detail-card-list {
  list-style: none;
  background-color: rgba(17, 51, 102, 0.05);
  border-radius: 16px;
  padding: 22px 32px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .detail-text .detail-card-list {
    padding: 18px 22px;
  }
}
.detail-text .detail-card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
.detail-text .detail-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #113366;
}

.detail-illust {
  text-align: center;
}
.detail-illust img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.detail .view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 50px;
  background-color: #113366;
  color: #fff;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.detail .view-more:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

@media screen and (min-width: 861px) {
  .detail--makevi .detail-inner > .detail-illust {
    order: 1;
  }
  .detail--makevi .detail-inner > .detail-text {
    order: 2;
  }
}
.service {
  position: relative;
  z-index: 20;
  background-color: #F4F3EF;
  border-radius: 40px 40px 0 0;
  box-shadow: -5px 0px 18px rgba(17, 51, 102, 0.06);
  padding: 90px 20px 100px;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 60px 16px 70px;
  }
}
.service .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.service-head {
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .service-head {
    margin-bottom: 36px;
  }
}
.service-head .en {
  color: #113366;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .service-head .en {
    font-size: 2.75rem;
  }
}
.service-head h2 {
  color: #113366;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service-cards[data-fade] .service-card-wrap {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.service-cards[data-fade].is-visible .service-card-wrap {
  opacity: 1;
  transform: translateY(0);
}
.service-cards[data-fade].is-visible .service-card-wrap:nth-child(1) {
  transition-delay: 0.05s;
}
.service-cards[data-fade].is-visible .service-card-wrap:nth-child(2) {
  transition-delay: 0.2s;
}
.service-cards[data-fade].is-visible .service-card-wrap:nth-child(3) {
  transition-delay: 0.35s;
}

.service-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card {
  position: relative;
  display: block;
  flex: 1;
  background-color: #fff;
  border-radius: 18px;
  padding: 60px 26px 80px;
  border: 4px solid #113366;
  box-shadow: 0 6px 18px rgba(17, 51, 102, 0.06);
  overflow: hidden;
}
.service-card--outsource {
  border-color: #FFD600;
}
.service-card--makevi {
  border-color: #FB602C;
}
.service-card--makevillage {
  border-color: #06C755;
}
.service-card .service-card-head {
  text-align: left;
  margin-bottom: 18px;
}
.service-card .service-card-sub {
  color: #113366;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.service-card .service-card-ttl {
  font-family: "Montserrat", sans-serif;
  color: #113366;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.service-card-wrap .service-card-illust {
  position: absolute;
  top: -40px;
  right: -8px;
  width: 100px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .service-card-wrap .service-card-illust {
    width: 90px;
    top: -34px;
  }
}
.service-card .service-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card .service-card-list li {
  position: relative;
  padding-left: 20px;
  color: #113366;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}
.service-card .service-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFD600;
}
.service-card-wrap--outsource .service-card-illust {
  width: 85px;
  right: 0;
}
.service-card--outsource .service-card-list li::before {
  background-color: #FFD600;
}
.service-card--makevi .service-card-list li::before {
  background-color: #FB602C;
}
.service-card--makevillage .service-card-list li::before {
  background-color: #06C755;
}
.service-card .service-card-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 15px 0 10px 0;
  background-color: #113366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.service-card .service-card-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  transform: translateX(2px);
  transition: transform 0.25s ease;
}
.service-card:hover .service-card-arrow {
  transform: translateX(6px);
}
.service-card:hover .service-card-arrow::before {
  transform: translateX(5px);
}
.service-card--outsource .service-card-arrow {
  background-color: #FFD600;
}
.service-card--makevi .service-card-arrow {
  background-color: #FB602C;
}
.service-card--makevillage .service-card-arrow {
  background-color: #06C755;
}

.mv-intro-pin {
  position: relative;
  background-color: #F4F3EF;
}

.mv-clouds-frame {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 5;
  pointer-events: none;
  margin-bottom: -100vh;
}

.mv-clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mv-cloud {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}
.mv-cloud--t1 {
  top: -70px;
  left: -50px;
  width: 220px;
  height: 220px;
}
.mv-cloud--t2 {
  top: -90px;
  left: 120px;
  width: 170px;
  height: 170px;
}
.mv-cloud--t5 {
  top: -100px;
  right: 120px;
  width: 170px;
  height: 170px;
}
.mv-cloud--t6 {
  top: -70px;
  right: -50px;
  width: 220px;
  height: 220px;
}
.mv-cloud--l1 {
  top: 35%;
  left: -100px;
  width: 180px;
  height: 180px;
}
.mv-cloud--l2 {
  top: 62%;
  left: -120px;
  width: 200px;
  height: 200px;
}
.mv-cloud--r1 {
  top: 35%;
  right: -110px;
  width: 200px;
  height: 200px;
}
.mv-cloud--r2 {
  top: 60%;
  right: -120px;
  width: 220px;
  height: 220px;
}
.mv-cloud--b1 {
  bottom: -20px;
  left: -60px;
  width: 220px;
  height: 220px;
}
.mv-cloud--b2 {
  bottom: -55px;
  left: 80px;
  width: 250px;
  height: 250px;
}
.mv-cloud--b3 {
  bottom: -95px;
  left: 210px;
  width: 280px;
  height: 280px;
}
.mv-cloud--b4 {
  bottom: -145px;
  left: 17%;
  width: 300px;
  height: 300px;
}
.mv-cloud--b5 {
  bottom: -210px;
  left: 28%;
  width: 320px;
  height: 320px;
}
.mv-cloud--b6 {
  bottom: -290px;
  left: calc(50% - 170px);
  width: 340px;
  height: 340px;
}
.mv-cloud--b7 {
  bottom: -210px;
  right: 28%;
  width: 320px;
  height: 320px;
}
.mv-cloud--b8 {
  bottom: -145px;
  right: 17%;
  width: 300px;
  height: 300px;
}
.mv-cloud--b9 {
  bottom: -95px;
  right: 8%;
  width: 280px;
  height: 280px;
}
.mv-cloud--b10 {
  bottom: -55px;
  right: -30px;
  width: 250px;
  height: 250px;
}
.mv-cloud--b11 {
  bottom: -20px;
  right: -150px;
  width: 220px;
  height: 220px;
}
.mv-cloud--b12 {
  display: none;
}
.mv-cloud--b13 {
  bottom: -60px;
  left: 11%;
  width: 220px;
  height: 220px;
}
.mv-cloud--b14 {
  bottom: -60px;
  right: 11%;
  width: 230px;
  height: 230px;
}
@media screen and (max-width: 768px) {
  .mv-cloud--t1 {
    width: 130px;
    height: 130px;
    top: -40px;
    left: -30px;
  }
  .mv-cloud--t2 {
    width: 100px;
    height: 100px;
    top: -60px;
    left: 70px;
  }
  .mv-cloud--t5 {
    width: 100px;
    height: 100px;
    top: -60px;
    right: 70px;
  }
  .mv-cloud--t6 {
    width: 140px;
    height: 140px;
    top: -40px;
    right: -30px;
  }
  .mv-cloud--l1 {
    width: 100px;
    height: 100px;
    left: -60px;
    top: 30%;
  }
  .mv-cloud--l2 {
    width: 110px;
    height: 110px;
    left: -70px;
    top: 60%;
  }
  .mv-cloud--r1 {
    width: 110px;
    height: 110px;
    right: -60px;
    top: 30%;
  }
  .mv-cloud--r2 {
    width: 120px;
    height: 120px;
    right: -70px;
    top: 60%;
  }
  .mv-cloud--b1 {
    width: 130px;
    height: 130px;
    bottom: -15px;
    left: -30px;
  }
  .mv-cloud--b2 {
    width: 160px;
    height: 160px;
    bottom: -40px;
    left: 50px;
  }
  .mv-cloud--b3 {
    width: 180px;
    height: 180px;
    bottom: -65px;
    left: 120px;
  }
  .mv-cloud--b4 {
    width: 190px;
    height: 190px;
    bottom: -95px;
    left: 17%;
  }
  .mv-cloud--b5 {
    width: 200px;
    height: 200px;
    bottom: -135px;
    left: 28%;
  }
  .mv-cloud--b6 {
    width: 220px;
    height: 220px;
    bottom: -185px;
    left: calc(50% - 110px);
  }
  .mv-cloud--b7 {
    width: 200px;
    height: 200px;
    bottom: -135px;
    right: 28%;
  }
  .mv-cloud--b8 {
    width: 190px;
    height: 190px;
    bottom: -95px;
    right: 17%;
  }
  .mv-cloud--b9 {
    width: 180px;
    height: 180px;
    bottom: -65px;
    right: 6%;
  }
  .mv-cloud--b10 {
    width: 160px;
    height: 160px;
    bottom: -40px;
    right: -20px;
  }
  .mv-cloud--b11 {
    width: 130px;
    height: 130px;
    bottom: -15px;
    right: -130px;
  }
  .mv-cloud--b12 {
    display: none;
  }
  .mv-cloud--b13 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    left: 10%;
  }
  .mv-cloud--b14 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: 10%;
  }
}

.mv {
  position: relative;
  z-index: 10;
  height: 100vh;
  padding: 60px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 60px 16px 60px;
  }
}
.mv .mv-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv .mv-catch {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.mv .mv-catch .mv-catch-pic {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  z-index: 2;
  -webkit-mask-image: url("../images/mv-ttl.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/mv-ttl.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .mv .mv-catch .mv-catch-pic {
    -webkit-mask-image: url("../images/mv-ttl-sp.png");
    mask-image: url("../images/mv-ttl-sp.png");
  }
}
.mv .mv-catch .mv-catch-pic::before,
.mv .mv-catch .mv-catch-pic::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 18%;
  height: 100%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.95) 50%, transparent 65%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  animation: mvCatchShine 1.2s 3s ease-out 1 forwards;
}
.mv .mv-catch .mv-catch-pic::before {
  animation-delay: 3.5s;
}
.mv .mv-catch .mv-catch-img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  opacity: 0;
  transform: scale(0.96);
  animation: mvCatchImgAppear 0.6s 1.5s ease-out forwards;
}
.mv .mv-illust {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: scale(0.94);
  animation: mvCatchAppear 1s 1.7s cubic-bezier(0.32, 1.25, 0.5, 1) forwards;
}
.mv .mv-illust .mv-illust-img {
  width: 100%;
  height: auto;
  display: block;
  animation: mvFloat 4s ease-in-out infinite;
}
.mv .mv-illust--top-right {
  top: -85px;
  right: -105px;
  width: 160px;
}
.mv .mv-illust--top-right .mv-illust-img {
  animation-delay: 0s;
}
@media screen and (max-width: 768px) {
  .mv .mv-illust--top-right {
    width: 110px;
    top: -50px;
    right: -40px;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv-illust--top-right {
    width: 90px;
    top: -40px;
    right: -20px;
  }
}
.mv .mv-illust--bottom-left {
  bottom: -100px;
  left: -100px;
  width: 160px;
}
.mv .mv-illust--bottom-left .mv-illust-img {
  animation-delay: -1.4s;
}
@media screen and (max-width: 768px) {
  .mv .mv-illust--bottom-left {
    width: 110px;
    bottom: -50px;
    left: -40px;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv-illust--bottom-left {
    width: 90px;
    bottom: -40px;
    left: -20px;
  }
}
.mv .mv-illust--boxes {
  bottom: -20px;
  right: -30px;
  width: 120px;
  z-index: 1;
  animation: none;
}
@media screen and (max-width: 768px) {
  .mv .mv-illust--boxes {
    display: none;
  }
}
.mv .mv-extras {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.mv .mv-extra {
  position: absolute;
  height: auto;
}
.mv .mv-extra--01 {
  top: 25%;
  left: 6%;
  width: 70px;
  transform: rotate(-8deg);
}
@media screen and (max-width: 768px) {
  .mv .mv-extra--01 {
    width: 46px;
    left: 4%;
  }
}
.mv .mv-extra--02 {
  top: 16%;
  right: 29%;
  width: 60px;
  transform: rotate(10deg);
}
@media screen and (max-width: 768px) {
  .mv .mv-extra--02 {
    width: 40px;
    right: 22%;
  }
}
.mv .mv-extra--03 {
  bottom: 19%;
  left: 38%;
  width: 140px;
  transform: rotate(-5deg);
}
@media screen and (max-width: 768px) {
  .mv .mv-extra--03 {
    width: 90px;
    bottom: 14%;
    left: 30%;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv-extra--03 {
    width: 72px;
    left: 24%;
  }
}
.mv .mv-extra--04 {
  top: 46%;
  right: 5%;
  width: 70px;
  transform: rotate(-6deg);
}
@media screen and (max-width: 768px) {
  .mv .mv-extra--04 {
    width: 46px;
    right: 3%;
  }
}
.mv .mv-extra--05 {
  top: 64%;
  left: 22%;
  width: 60px;
  transform: rotate(12deg);
}
@media screen and (max-width: 768px) {
  .mv .mv-extra--05 {
    width: 40px;
    left: 10%;
  }
}
.mv .mv-extra--06 {
  bottom: 15%;
  right: 34%;
  width: 80px;
  transform: rotate(-4deg);
}
@media screen and (max-width: 768px) {
  .mv .mv-extra--06 {
    width: 52px;
    right: 8%;
  }
}
.mv .mv-extra-kawauso {
  position: absolute;
  top: 57%;
  right: 12.5%;
  width: 105px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
  animation: mvCatchAppear 1s 1.7s cubic-bezier(0.32, 1.25, 0.5, 1) forwards;
}
.mv .mv-extra-kawauso .mv-extra-kawauso-img {
  display: block;
  width: 100%;
  height: auto;
  animation: mvFloat 4s ease-in-out infinite;
  animation-delay: -2.6s;
}
@media screen and (max-width: 768px) {
  .mv .mv-extra-kawauso {
    width: 80px;
    top: 60%;
    right: 6%;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv-extra-kawauso {
    width: 64px;
    top: 62%;
    right: 4%;
  }
}
.mv .mv-shape {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0;
  animation: mvShapeAppear 0.7s var(--delay, 1.85s) cubic-bezier(0.32, 1.5, 0.5, 1) forwards;
}
.mv .mv-shape--c1 {
  top: 10%;
  left: 22%;
  width: 22px;
  height: 22px;
  background-color: #FFBB00;
  --delay: 1.75s;
}
@media (max-width: 768px) {
  .mv .mv-shape--c1 {
    width: 14px;
    height: 14px;
  }
}
.mv .mv-shape--c2 {
  top: 26%;
  left: 14%;
  width: 14px;
  height: 14px;
  background-color: #F48A8C;
  --delay: 1.92s;
}
@media (max-width: 768px) {
  .mv .mv-shape--c2 {
    width: 10px;
    height: 10px;
  }
}
.mv .mv-shape--c3 {
  top: 16%;
  right: 18%;
  width: 18px;
  height: 18px;
  background-color: #06C755;
  --delay: 1.85s;
}
@media (max-width: 768px) {
  .mv .mv-shape--c3 {
    width: 12px;
    height: 12px;
  }
}
.mv .mv-shape--c6 {
  top: 44%;
  right: 10%;
  width: 10px;
  height: 10px;
  background-color: #F48A8C;
  --delay: 1.82s;
}
@media (max-width: 768px) {
  .mv .mv-shape--c6 {
    width: 8px;
    height: 8px;
  }
}
.mv .mv-shape--r2, .mv .mv-shape--r3, .mv .mv-shape--r4 {
  background-color: transparent;
  box-sizing: border-box;
}
.mv .mv-shape--r2 {
  top: 58%;
  left: 8%;
  width: 26px;
  height: 26px;
  border: 3px solid #F48A8C;
  --delay: 2.00s;
}
@media (max-width: 768px) {
  .mv .mv-shape--r2 {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }
}
.mv .mv-shape--r3 {
  bottom: 38%;
  right: 14%;
  width: 22px;
  height: 22px;
  border: 3px solid #06C755;
  --delay: 1.88s;
}
@media (max-width: 768px) {
  .mv .mv-shape--r3 {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
}
.mv .mv-shape--r4 {
  bottom: 12%;
  left: 16%;
  width: 16px;
  height: 16px;
  border: 3px solid #FFBB00;
  --delay: 2.10s;
}
@media (max-width: 768px) {
  .mv .mv-shape--r4 {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }
}

@keyframes mvFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes secTopFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes mvShapeAppear {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.mv-line {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #F48A8C;
  color: #fff;
  padding: 8px 25px 8px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .mv-line {
    bottom: 16px;
    right: 16px;
    padding: 8px 16px 8px 8px;
    gap: 8px;
    border-radius: 12px;
  }
}
.mv-line .mv-line-icon-wrap {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mv-line .mv-line-icon-wrap {
    width: 34px;
    height: 34px;
  }
}
.mv-line .mv-line-icon-wrap .mv-line-icon {
  width: 50px;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .mv-line .mv-line-icon-wrap .mv-line-icon {
    width: 34px;
  }
}
.mv-line .mv-line-text-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  line-height: 1.2;
}
.mv-line .mv-line-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .mv-line .mv-line-sub {
    font-size: 10px;
  }
}
.mv-line .mv-line-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .mv-line .mv-line-main {
    font-size: 15px;
  }
}
.mv-line .mv-line-main .mv-line-symbol {
  width: 22px;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .mv-line .mv-line-main .mv-line-symbol {
    width: 18px;
  }
}
.mv-line:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.intro {
  position: relative;
  z-index: 10;
  background-color: transparent;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 70px 16px;
  }
}
.intro .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}
.intro .intro-ttl {
  color: #113366;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media screen and (max-width: 768px) {
  .intro .intro-ttl {
    font-size: 22px;
    margin-bottom: 32px;
  }
}
.intro .intro-ttl .intro-ttl-accent {
  color: #FB602C;
}
.intro .intro-body {
  color: #113366;
}
.intro .intro-body p {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
@media screen and (max-width: 768px) {
  .intro .intro-body p {
    font-size: 14px;
  }
  .intro .intro-body p br {
    display: none;
  }
}
.intro .intro-body .intro-tag {
  margin-top: 28px;
  font-weight: 700;
}
.intro.is-visible .intro-ttl {
  opacity: 1;
  transform: translateY(0);
}
.intro.is-visible .intro-body p {
  opacity: 1;
  transform: translateY(0);
}
.intro.is-visible .intro-body p:nth-child(1) {
  transition-delay: 0.15s;
}
.intro.is-visible .intro-body p:nth-child(2) {
  transition-delay: 0.28s;
}
.intro.is-visible .intro-body p:nth-child(3) {
  transition-delay: 0.41s;
}
.intro.is-visible .intro-body p:nth-child(4) {
  transition-delay: 0.54s;
}
.intro.is-visible .intro-body p:nth-child(5) {
  transition-delay: 0.67s;
}
.intro.is-visible .intro-body p:nth-child(6) {
  transition-delay: 0.8s;
}

.mv-loader {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  overflow: hidden;
}

.mv-loader-cloud {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 8vw 1vw 0 -1.5vw #fff, -8vw 2vw 0 -2vw #fff, 4vw -7vw 0 -3vw #fff, -4vw -6vw 0 -3vw #fff, 7vw 5vw 0 -3.5vw #fff, -7vw 4vw 0 -4vw #fff, 11vw -2vw 0 -5vw #fff, -11vw -2vw 0 -5vw #fff;
  will-change: transform;
  animation: cloudDrift var(--dur, 3s) var(--delay, 0s) var(--ease, cubic-bezier(0.42, 0.04, 0.46, 1)) forwards;
}
.mv-loader-cloud--c1 {
  top: 32%;
  left: 28%;
  width: 34vw;
  height: 24vw;
  --tx: -110vw;
  --ty: -100vh;
  --dur: 2.2s;
  --delay: 0s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--c2 {
  top: 36%;
  left: 50%;
  width: 30vw;
  height: 22vw;
  --tx: -10vw;
  --ty: -170vh;
  --dur: 2.9s;
  --delay: 0s;
  --ease: cubic-bezier(0.95, 0, 0.05, 1);
}
.mv-loader-cloud--c3 {
  top: 32%;
  left: 70%;
  width: 34vw;
  height: 24vw;
  --tx: 110vw;
  --ty: -100vh;
  --dur: 2.4s;
  --delay: 0s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--c4 {
  top: 56%;
  left: 28%;
  width: 32vw;
  height: 24vw;
  --tx: -120vw;
  --ty: 80vh;
  --dur: 2.7s;
  --delay: 0.03s;
  --ease: cubic-bezier(0.95, 0, 0.05, 1);
}
.mv-loader-cloud--c5 {
  top: 58%;
  left: 50%;
  width: 32vw;
  height: 24vw;
  --tx: 10vw;
  --ty: 130vh;
  --dur: 2.6s;
  --delay: 0.02s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--f1 {
  top: 18%;
  left: 16%;
  width: 28vw;
  height: 22vw;
  --tx: -130vw;
  --ty: -120vh;
  --dur: 3.3s;
  --delay: 0.1s;
  --ease: cubic-bezier(0.92, 0, 0.08, 1);
}
.mv-loader-cloud--f2 {
  top: 14%;
  left: 50%;
  width: 30vw;
  height: 22vw;
  --tx: -8vw;
  --ty: -200vh;
  --dur: 3.8s;
  --delay: 0.16s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--f3 {
  top: 18%;
  left: 80%;
  width: 28vw;
  height: 22vw;
  --tx: 130vw;
  --ty: -120vh;
  --dur: 2.7s;
  --delay: 0.04s;
  --ease: cubic-bezier(0.7, 0.18, 0.3, 0.82);
}
.mv-loader-cloud--f4 {
  top: 48%;
  left: 14%;
  width: 28vw;
  height: 22vw;
  --tx: -140vw;
  --ty: -10vh;
  --dur: 3.4s;
  --delay: 0.1s;
  --ease: cubic-bezier(0.93, 0.02, 0.07, 0.98);
}
.mv-loader-cloud--f5 {
  top: 56%;
  left: 70%;
  width: 28vw;
  height: 22vw;
  --tx: 130vw;
  --ty: 60vh;
  --dur: 2.6s;
  --delay: 0.03s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--f6 {
  top: 48%;
  left: 82%;
  width: 28vw;
  height: 22vw;
  --tx: 140vw;
  --ty: 10vh;
  --dur: 3.5s;
  --delay: 0.08s;
  --ease: cubic-bezier(0.65, 0.2, 0.35, 0.8);
}
.mv-loader-cloud--f7 {
  top: 78%;
  left: 28%;
  width: 28vw;
  height: 22vw;
  --tx: -110vw;
  --ty: 120vh;
  --dur: 3.9s;
  --delay: 0.14s;
  --ease: cubic-bezier(0.9, 0.02, 0.1, 0.98);
}
.mv-loader-cloud--f8 {
  top: 80%;
  left: 64%;
  width: 28vw;
  height: 22vw;
  --tx: 110vw;
  --ty: 120vh;
  --dur: 3.1s;
  --delay: 0.06s;
  --ease: cubic-bezier(0.58, 0.22, 0.42, 0.78);
}
.mv-loader-cloud--m1 {
  top: 8%;
  left: 6%;
  width: 28vw;
  height: 22vw;
  --tx: -150vw;
  --ty: -130vh;
  --dur: 3.9s;
  --delay: 0.28s;
  --ease: cubic-bezier(0.95, 0, 0.05, 1);
}
.mv-loader-cloud--m2 {
  top: 2%;
  left: 38%;
  width: 32vw;
  height: 24vw;
  --tx: -12vw;
  --ty: -220vh;
  --dur: 4.3s;
  --delay: 0.26s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--m3 {
  top: 8%;
  left: 70%;
  width: 28vw;
  height: 22vw;
  --tx: 150vw;
  --ty: -130vh;
  --dur: 3.0s;
  --delay: 0.14s;
  --ease: cubic-bezier(0.62, 0.2, 0.38, 0.8);
}
.mv-loader-cloud--m4 {
  top: 74%;
  left: 6%;
  width: 28vw;
  height: 22vw;
  --tx: -150vw;
  --ty: 130vh;
  --dur: 3.7s;
  --delay: 0.22s;
  --ease: cubic-bezier(0.92, 0.02, 0.08, 0.98);
}
.mv-loader-cloud--m5 {
  top: 80%;
  left: 42%;
  width: 32vw;
  height: 24vw;
  --tx: 12vw;
  --ty: 160vh;
  --dur: 4.1s;
  --delay: 0.3s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--m6 {
  top: 74%;
  left: 70%;
  width: 28vw;
  height: 22vw;
  --tx: 150vw;
  --ty: 130vh;
  --dur: 3.2s;
  --delay: 0.16s;
  --ease: cubic-bezier(0.55, 0.25, 0.45, 0.75);
}
.mv-loader-cloud--e1 {
  top: -14vh;
  left: -12vw;
  width: 36vw;
  height: 28vw;
  --tx: -160vw;
  --ty: -160vh;
  --dur: 4.4s;
  --delay: 0.38s;
  --ease: cubic-bezier(0.95, 0, 0.05, 1);
}
.mv-loader-cloud--e2 {
  top: -18vh;
  left: 32%;
  width: 36vw;
  height: 26vw;
  --tx: -16vw;
  --ty: -220vh;
  --dur: 4.7s;
  --delay: 0.32s;
  --ease: cubic-bezier(0.92, 0, 0.08, 1);
}
.mv-loader-cloud--e3 {
  top: -14vh;
  right: -12vw;
  width: 36vw;
  height: 28vw;
  --tx: 160vw;
  --ty: -160vh;
  --dur: 3.5s;
  --delay: 0.18s;
  --ease: cubic-bezier(0.65, 0.2, 0.35, 0.8);
}
.mv-loader-cloud--e4 {
  top: 32%;
  left: -16vw;
  width: 32vw;
  height: 26vw;
  --tx: -160vw;
  --ty: -10vh;
  --dur: 3.1s;
  --delay: 0.14s;
  --ease: cubic-bezier(0.55, 0.25, 0.45, 0.75);
}
.mv-loader-cloud--e5 {
  top: 32%;
  right: -16vw;
  width: 32vw;
  height: 26vw;
  --tx: 160vw;
  --ty: -10vh;
  --dur: 4.0s;
  --delay: 0.24s;
  --ease: cubic-bezier(0.88, 0.03, 0.12, 0.97);
}
.mv-loader-cloud--e6 {
  bottom: -14vh;
  left: -12vw;
  width: 36vw;
  height: 28vw;
  --tx: -160vw;
  --ty: 160vh;
  --dur: 4.5s;
  --delay: 0.42s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--e7 {
  bottom: -18vh;
  left: 32%;
  width: 36vw;
  height: 26vw;
  --tx: -16vw;
  --ty: 170vh;
  --dur: 4.2s;
  --delay: 0.3s;
  --ease: cubic-bezier(0.85, 0.06, 0.15, 0.94);
}
.mv-loader-cloud--e8 {
  bottom: -14vh;
  right: -12vw;
  width: 36vw;
  height: 28vw;
  --tx: 160vw;
  --ty: 160vh;
  --dur: 3.4s;
  --delay: 0.18s;
  --ease: cubic-bezier(0.6, 0.22, 0.4, 0.78);
}
.mv-loader-cloud--g1 {
  top: -8vh;
  left: 14%;
  width: 30vw;
  height: 22vw;
  --tx: -40vw;
  --ty: -150vh;
  --dur: 3.6s;
  --delay: 0.2s;
  --ease: cubic-bezier(0.92, 0, 0.08, 1);
}
.mv-loader-cloud--g2 {
  top: -8vh;
  left: 58%;
  width: 30vw;
  height: 22vw;
  --tx: 40vw;
  --ty: -180vh;
  --dur: 4.1s;
  --delay: 0.22s;
  --ease: cubic-bezier(0.95, 0, 0.05, 1);
}
.mv-loader-cloud--g3 {
  bottom: -8vh;
  left: 14%;
  width: 30vw;
  height: 22vw;
  --tx: -40vw;
  --ty: 150vh;
  --dur: 3.0s;
  --delay: 0.12s;
  --ease: cubic-bezier(0.62, 0.2, 0.38, 0.8);
}
.mv-loader-cloud--g4 {
  bottom: -8vh;
  left: 58%;
  width: 30vw;
  height: 22vw;
  --tx: 40vw;
  --ty: 150vh;
  --dur: 3.9s;
  --delay: 0.24s;
  --ease: cubic-bezier(0.97, 0, 0.03, 1);
}
.mv-loader-cloud--l1 {
  top: 18%;
  left: -10vw;
  width: 28vw;
  height: 22vw;
  --tx: -140vw;
  --ty: -28vh;
  --dur: 3.4s;
  --delay: 0.08s;
  --ease: cubic-bezier(0.9, 0, 0.1, 1);
}
.mv-loader-cloud--l2 {
  top: 46%;
  left: -12vw;
  width: 32vw;
  height: 24vw;
  --tx: -150vw;
  --ty: -2vh;
  --dur: 3.0s;
  --delay: 0.04s;
  --ease: cubic-bezier(0.95, 0, 0.05, 1);
}
.mv-loader-cloud--l3 {
  top: 72%;
  left: -10vw;
  width: 28vw;
  height: 22vw;
  --tx: -140vw;
  --ty: 26vh;
  --dur: 3.7s;
  --delay: 0.16s;
  --ease: cubic-bezier(0.62, 0.2, 0.38, 0.8);
}

@keyframes cloudDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--tx), var(--ty));
  }
}
@keyframes mvCatchAppear {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mvCatchImgAppear {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mvCatchShine {
  0% {
    opacity: 0;
    left: -60%;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 160%;
  }
}/*# sourceMappingURL=style.css.map */