@charset "UTF-8";
/*-----------------------------------------
    Color
-----------------------------------------*/
/*-----------------------------------------
    font-family
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jacques+Francois&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap)");
/*-----------------------------------------
    Reset
-----------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/*-----------------------------------------
    font-size
-----------------------------------------*/
/*-----------------------------------------
    Width
-----------------------------------------*/
/*-----------------------------------------
    Height
-----------------------------------------*/
/*-----------------------------------------
    z-index
-----------------------------------------*/
/*-----------------------------------------
    Mixin
-----------------------------------------*/
/*-----------------------------------------
    スマホでhover無効化
-----------------------------------------*/
* {
  line-height: 1.8;
  scroll-behavior: smooth;
}

/*** フェードインzアニメーション  ***/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*** スローズームアニメーション ***/
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/*** 連続ズームアニメーション ***/
@keyframes continuousZoom {
  0% {
    transform: scale(1);
  }
  95% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.1);
  }
}
/*** 順次フェードインアニメーション（汎用的） ***/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*** 右からスライドインアニメーション ***/
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*** Three.js キャンバス 下からふわっとアニメーション ***/
@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}
/* 右からスライドインクラス */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s ease, transform 1s ease;
}
.slide-in-right.slide-in-visible {
  opacity: 1;
  transform: translateX(0);
}

/* 汎用的なフェードインクラス */
.fade-in-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-item.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Three.js キャンバスのアニメーション */
#three-canvas {
  opacity: 0;
  animation: slideUpFadeIn 1.5s ease-out 0.5s forwards;
  z-index: -500;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

.background {
  /* フルスクリーン固定レイヤーにする（背景用の独立した要素） */
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1000;
  pointer-events: none;
  overflow: hidden;
  /* グラデーションは ::before に */
  /* 装飾用の画像は ::after（単体表示・no-repeat） */
}
@media screen and (min-width: 480px) {
  .background {
    height: 100vh;
  }
}
.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #008ed3 0%, #00469b 50%, #1e247e 100%);
  background-repeat: no-repeat;
  background-size: cover;
  /* iOS でちらつく場合は transform を入れると安定することがある */
  transform: translateZ(0);
  pointer-events: none;
}
.background::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  /* 画像のサイズは幅で制御して、縦横比は維持 */
  width: 150%;
  height: auto;
  aspect-ratio: 4/3;
  background-image: url("img/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  pointer-events: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2 {
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  color: #1E2C58;
  font-weight: 500;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
}

p {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  font-weight: 400;
}

li {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
}

button {
  font-weight: 400;
  letter-spacing: 0.1rem;
}

dt {
  font-weight: 400;
}

.pc-br {
  display: none;
}
@media screen and (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 480px) {
  .sp {
    display: none;
  }
}

.contents-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.contents-hidden.fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.contents-hidden_out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s, visibility 1s;
  will-change: opacity, visibility;
}
.contents-hidden_out.fadein {
  opacity: 1;
  visibility: visible;
}

.contents-hidden_blur {
  opacity: 0;
  visibility: hidden;
  -ms-filter: blur(10px);
  filter: blur(10px);
  transition: opacity 1.5s, visibility 1.5s, filter 2s;
}
.contents-hidden_blur.fadein {
  opacity: 1;
  visibility: visible;
  -ms-filter: blur(0);
  filter: blur(0);
}

.hide {
  transition: all 0.3s ease;
  transform: translateY(-100%); /* 上に消えるようにする */
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-up-trigger {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.8s, transform 0.8s ease-out;
}
.fade-up-trigger.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-group .fade-up-trigger:nth-child(1) {
  transition-delay: 0.2s;
}
.fade-up-group .fade-up-trigger:nth-child(2) {
  transition-delay: 0.4s;
}
.fade-up-group .fade-up-trigger:nth-child(3) {
  transition-delay: 0.6s;
}
.fade-up-group .fade-up-trigger:nth-child(4) {
  transition-delay: 0.8s;
}
.fade-up-group .fade-up-trigger:nth-child(5) {
  transition-delay: 1s;
}
.fade-up-group .fade-up-trigger:nth-child(6) {
  transition-delay: 1.2s;
}
.fade-up-group .fade-up-trigger:nth-child(7) {
  transition-delay: 1.4s;
}
.fade-up-group .fade-up-trigger:nth-child(8) {
  transition-delay: 1.6s;
}
.fade-up-group .fade-up-trigger:nth-child(9) {
  transition-delay: 1.8s;
}
.fade-up-group .fade-up-trigger:nth-child(10) {
  transition-delay: 2s;
}

.fade-up {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.3s;
}
.fade-in.fade-in-delay {
  animation-delay: 0.8s;
}
.fade-in.fade-in-fast {
  animation: fadeIn 0.4s ease forwards;
  animation-delay: 0.1s;
}

.section-title__main {
  position: relative;
  line-height: 1.6;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #1E2C58;
  margin-left: 4px;
  margin-bottom: 0.5rem;
  animation: blink 0.7s steps(1) infinite;
  vertical-align: bottom;
}
@media screen and (min-width: 480px) {
  .cursor {
    margin-bottom: 1rem;
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}
.js-typewriter-w .cursor {
  background: #FCFCFC;
}

/* ===============================================
# header
=============================================== */
.header.header-black .header__logo .logo-black,
.header.page-header-black .header__logo .logo-black {
  position: relative;
  opacity: 1;
  top: 0;
  left: 0;
}
.header.header-black .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup,
.header.page-header-black .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup {
  color: #1E2C58;
  transition: 0.3s;
}
.header.header-black .header-nav__wrapper .header-nav__list .header-nav__list-child,
.header.page-header-black .header-nav__wrapper .header-nav__list .header-nav__list-child {
  color: #1E2C58;
  transition: 0.3s;
}
.header.header-black .header-nav__wrapper .header-nav__list .dli-chevron-down,
.header.page-header-black .header-nav__wrapper .header-nav__list .dli-chevron-down {
  color: #1E2C58;
  transition: 0.3s;
}
.header.header-black .header-nav__wrapper .openbtn span:nth-of-type(1),
.header.page-header-black .header-nav__wrapper .openbtn span:nth-of-type(1) {
  background: #1E2C58;
}
.header.header-black .header-nav__wrapper .openbtn span:nth-of-type(2),
.header.page-header-black .header-nav__wrapper .openbtn span:nth-of-type(2) {
  background: #1E2C58;
}
.header.header-black .header-nav__wrapper .openbtn span:nth-of-type(3),
.header.page-header-black .header-nav__wrapper .openbtn span:nth-of-type(3) {
  background: #1E2C58;
}
.header.header-black .header-nav__wrapper .openbtn.active span,
.header.page-header-black .header-nav__wrapper .openbtn.active span {
  background-color: #FEFEFE;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  height: 6rem;
}
.header .header__logo {
  margin-right: 2rem;
  position: relative;
  width: 12rem;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .header .header__logo {
    width: 18rem;
    height: 4rem;
  }
}
.header .header__logo .logo-white {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  opacity: 1;
  width: 100%;
}
.header .header__logo .logo-white.hide {
  opacity: 0;
}
.header .header__logo .logo-black {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}
.header .header__logo .logo-black.active {
  opacity: 1;
}
.header .header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-nav__wrapper {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0rem + 3.2vw, 2rem);
}
.header .header-nav__wrapper .header-contact-btn {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: #1E2C58;
  color: #FCFCFC;
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1.5px solid #1E2C58;
}
@media screen and (min-width: 768px) {
  .header .header-nav__wrapper .header-contact-btn {
    gap: 0.4rem;
    display: flex;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-contact-btn:hover {
    background: #FCFCFC;
    color: #1E2C58;
    box-shadow: none;
    transform: translateY(-2px);
  }
  .header .header-nav__wrapper .header-contact-btn:hover .header-contact-btn__icon svg {
    color: #1E2C58;
    fill: #1E2C58;
  }
}
.header .header-nav__wrapper .header-contact-btn.login-btn {
  background-color: #395CA9;
  border: 1.5px solid #395CA9;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-contact-btn.login-btn:hover {
    background: #FCFCFC;
    color: #395CA9;
    box-shadow: none;
    transform: translateY(-2px);
  }
  .header .header-nav__wrapper .header-contact-btn.login-btn:hover .header-contact-btn__icon svg {
    color: #395CA9;
    fill: #395CA9;
  }
}
.header .header-nav__wrapper .header-contact-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-nav__wrapper .header-contact-btn__icon svg {
  width: 14px;
  height: 14px;
  margin-top: 0.1rem;
  transition: color 0.3s, fill 0.3s;
}
.header .header-nav__wrapper .header-contact-btn__text {
  display: block;
}
.header .header-nav__wrapper .header-nav__lists {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header .header-nav__wrapper .header-nav__lists {
    display: flex;
    gap: 2rem;
  }
}
.header .header-nav__wrapper .header-nav__list {
  position: relative;
  transition: all 0.3s;
  display: flex;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup {
  color: #FEFEFE;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  cursor: pointer;
  color: #FEFEFE;
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: clamp(0.75rem, -0.5rem + 2vw, 1rem);
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span:first-child {
  transform: translateY(0);
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child span:last-child {
  position: absolute;
  transform: translateY(100%);
}
.header .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.8rem;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child-lineup:hover + .header-nav-dropdown__lists {
    visibility: visible;
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child:hover span:first-child {
    transform: translateY(-100%);
  }
  .header .header-nav__wrapper .header-nav__list .header-nav__list-child:hover span:last-child {
    transform: translateY(0);
  }
}
.header .header-nav__wrapper .openbtn {
  position: relative;
  cursor: pointer;
  width: 4rem;
  height: 4.625rem;
  z-index: 1900;
  transform: scale(0.75);
}
@media screen and (min-width: 1024px) {
  .header .header-nav__wrapper .openbtn {
    transform: scale(1);
  }
}
.header .header-nav__wrapper .openbtn span {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 0.14rem;
  background: #FCFCFC;
  width: 100%;
}
.header .header-nav__wrapper .openbtn span:nth-of-type(1) {
  top: 1.6rem;
}
.header .header-nav__wrapper .openbtn span:nth-of-type(2) {
  top: 2.3rem;
  width: 2.5rem;
  left: auto;
  right: -1.25rem;
}
.header .header-nav__wrapper .openbtn span:nth-of-type(3) {
  top: 3rem;
}
.header .header-nav__wrapper .openbtn.active span {
  background-color: #FEFEFE;
}
.header .header-nav__wrapper .openbtn.active span:nth-of-type(1) {
  top: 2.3rem;
  transform: translate(-50%, 0) rotate(15deg);
}
.header .header-nav__wrapper .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .header-nav__wrapper .openbtn.active span:nth-of-type(3) {
  top: 2.3rem;
  transform: translate(-50%, 0) rotate(-15deg);
}
.header .header-nav__wrapper .header-nav-dropdown__lists {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 2rem;
  right: -75%;
  background-color: #C3C1C1;
  padding: 2rem 4%;
  display: flex;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .header .header-nav__wrapper .header-nav-dropdown__lists {
    padding: 2.5rem 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav-dropdown__lists:hover {
    visibility: visible;
    opacity: 1;
  }
}
.header .header-nav__wrapper .header-nav-dropdown__list {
  width: 12rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav-dropdown__list:hover {
    opacity: 0.7;
  }
}
.header .header-nav__wrapper .header-nav-dropdown__list a {
  display: block;
  text-decoration: none;
  color: #1E2C58;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-info {
  padding-top: 0.5rem;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-info .dropdown-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
.header .header-nav__wrapper .header-nav-dropdown__list .dropdown-info .dropdown-slug {
  display: block;
  font-size: 0.625rem;
  color: #C3C1C1;
  margin-top: 0.25rem;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-nav__wrapper .header-nav-dropdown__list:hover .dropdown-thumbnail img {
    transform: scale(1.05);
  }
}
.header .header-nav__wrapper .dli-chevron-down {
  transition: transform 0.3s ease;
}
.header .header-nav__wrapper .header__sns-link {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header .header-nav__wrapper .header__sns-link svg {
  width: 20px;
  height: 20px;
  fill: #FCFCFC;
}
.header .header-nav__wrapper .header__sns-link svg path {
  fill: #FCFCFC;
}
.header .header-black {
  background-color: #1E2C58;
}
.header .header-g-nav {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: -640px;
  max-width: 640px;
  height: 100vh;
  opacity: 0;
  display: flex;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
.header .header-g-nav.panelactive {
  opacity: 1;
  right: 0;
  pointer-events: auto;
  transition: 0.3s ease-in-out;
}
.header .header-g-nav .header-g-nav-list {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100vh;
  background-color: #FAFAFA;
  overflow: auto;
  -ms-overflow-scrolling: touch;
}
.header .header-g-nav li.menu__wrapper-list_sns {
  display: flex;
}
.header .header-g-nav .header-g-nav-list ul {
  background-color: #FAFAFA;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  padding: 0 20px 60px;
}
.header .header-g-nav__lists {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  color: #FCFCFC;
}
.header .header-g-nav__lists .header-g-nav__list {
  display: flex;
}
.header .header-g-nav__lists .header-g-nav__list img {
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-g-nav__lists .header-g-nav__list svg {
  fill: #1E2C58;
  width: 1.5rem;
  transition: fill 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-g-nav__lists .header-g-nav__list svg:hover {
    opacity: 0.7;
  }
}
.header .menu__wrapper {
  background-color: #1E2C58;
  width: 100vw;
  padding: 7.5rem 4%;
  overflow-y: scroll;
}
@media screen and (min-width: 1024px) {
  .header .menu__wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 7.5rem 6vw;
    max-width: 640px;
  }
}
.header .menu__wrapper .menu__inner-request {
  width: 100%;
  padding-bottom: 3rem;
}
.header .menu__wrapper .menu__inner-request ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .header .menu__wrapper .menu__inner-request ul {
    justify-content: start;
  }
}
.header .menu__wrapper .menu__inner-request .menu__item-request {
  width: 100%;
  max-width: 20rem;
}
@media screen and (min-width: 768px) {
  .header .menu__wrapper .menu__inner-request .menu__item-request {
    max-width: 20rem;
  }
}
.header .menu__wrapper .menu__inner-request .menu__item-request .contact {
  background-color: #395CA9;
}
.header .menu__wrapper .menu__inner-request .menu__item-request .consultation {
  background-color: #1E2C58;
}
.header .menu__wrapper .menu__inner-request .menu__item-request a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 2.5rem;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu__wrapper .menu__inner-request .menu__item-request a:hover {
    opacity: 0.8;
  }
}
.header .menu__wrapper .menu__inner-request .menu__item-request a svg {
  width: 1.25rem;
  height: auto;
  color: #FCFCFC;
}
.header .menu__wrapper .menu__inner-request .menu__item-request a p {
  color: #FCFCFC;
  font-size: 0.875rem;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu__wrapper .menu__inner-request .menu__item-request a:hover .arrow-right.initial {
    transform: translateX(200%);
  }
  .header .menu__wrapper .menu__inner-request .menu__item-request a:hover .arrow-right.hover {
    transform: translateX(0);
  }
}
.header .menu__wrapper .menu__inner {
  width: 100%;
}
.header .menu__wrapper .menu__inner .menu__item {
  padding: 1.25rem 0.5rem;
  border-bottom: 0.025rem solid rgba(218, 227, 242, 0.3);
}
.header .menu__wrapper .menu__inner .menu__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #FCFCFC;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu__wrapper .menu__inner .menu__item a:hover {
    opacity: 0.7;
  }
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-text p {
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.header .menu__wrapper .menu__inner .menu__item .menu__item-text span {
  font-size: 0.75rem;
  color: #7a8196;
}
.header .menu__wrapper .menu__inner .menu__item .menu__child-item {
  margin-top: 0.5rem;
}
.header .menu__wrapper .menu__inner .menu__item .menu__child-item::before {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.1rem;
  vertical-align: middle;
  background-color: #1E2C58;
  margin-right: 0.5rem;
}
.header .menu__wrapper .menu__inner .menu__item .menu__child-item a {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  width: auto;
  display: inline;
}
.header .menu__wrapper .menu__item-sns {
  padding-top: 2rem;
}

.color-change-hover a {
  transition: color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .color-change-hover a:hover {
    color: #B2B7CD;
  }
  .color-change-hover a:hover svg {
    color: #B2B7CD;
  }
}
.color-change-hover svg {
  transition: color 0.2s ease-in-out;
}

.opacity-hover a {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .opacity-hover a:hover {
    opacity: 0.7;
  }
}

.img-hover .item-title {
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .img-hover:hover .item-title {
    color: #B2B7CD;
  }
  .img-hover:hover .thumbnail img {
    transform: scale(1.05);
  }
}
.img-hover .thumbnail {
  aspect-ratio: 4/3;
  background-color: #FEFEFE;
  overflow: hidden;
}
.img-hover .thumbnail img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #FCFCFC;
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.65rem;
  border: 0.1rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.underline {
  border-bottom: 0.8px solid #1E2C58;
}

.icon-wrap {
  position: absolute;
  right: 3rem;
  top: 45%;
  transform: translateY(-50%);
  width: 1.5rem;
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.icon:before,
.icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #1E2C58;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 0.1rem;
  transform: translate(-50%, -50%);
}

/* そのうち1本を縦にする */
.icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* プラスアイコンクリック後、マイナスにする */
.icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.eachTextAnime span {
  opacity: 0; /* 初期状態で透明 */
  visibility: hidden; /* 完全に非表示 */
  display: inline-block; /* 必須: アニメーション時に要素が崩れないように */
}

.eachTextAnime.appeartext span {
  visibility: visible; /* 表示可能に */
  animation: text_anime_on 1s ease-out forwards; /* アニメーション適用 */
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 10%, transparent 10%);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.5;
}

.accent-color {
  color: #395CA9;
  font-weight: 600;
  font-size: 110%;
}

.accent-circle {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 0.1rem 1rem 0.2rem;
  border-radius: 2.5rem;
  background-color: #1E2C58;
  color: #FCFCFC;
  letter-spacing: 0.1rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

/* ===============================================
# top-view
=============================================== */
.top-view {
  min-height: 100vh;
  color: #FCFCFC;
  padding: 0 4%;
  position: fixed;
  overflow: hidden;
  top: 0;
  z-index: -1000;
  width: 100%;
  height: 100vh;
}
.top-view.behind-footer {
  z-index: -1002;
}
.top-view .top-view__inner {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 6rem;
  min-height: 100vh;
}
@media screen and (min-width: 480px) {
  .top-view .top-view__inner {
    gap: 3rem;
    justify-content: center;
    padding-top: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-view .top-view__inner {
    flex-direction: row;
    padding-top: 0;
    justify-content: space-around;
  }
}
.top-view .top-view__cp {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  margin-bottom: 0.5rem;
}
.top-view .top-view__item {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .top-view .top-view__item {
    text-align: left;
  }
}
.top-view .top-view__item .top-view-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media screen and (min-width: 480px) {
  .top-view .top-view__item .top-view-title {
    font-size: clamp(2.25rem, 1rem + 2vw, 2.75rem);
    line-height: 1.4;
  }
}
@media screen and (min-width: 1024px) {
  .top-view .top-view__item .top-view-title {
    margin-bottom: 2rem;
  }
}
.top-view .top-view__item .top-view-title .tw-text {
  line-height: 1.6;
}
@media screen and (min-width: 480px) {
  .top-view .top-view__item .top-view-title .tw-text {
    line-height: 1.8;
  }
}
.top-view .top-view__item .top-view__subtitle {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  line-height: 2.2;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .top-view .top-view__item .top-view__subtitle {
    margin-bottom: 3rem;
  }
}
.top-view .top-view__item .top-view__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}
.top-view img {
  max-width: 100%;
  max-height: 30vh;
  height: auto;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 480px) {
  .top-view img {
    max-height: 40vh;
  }
}
@media screen and (min-width: 1024px) {
  .top-view img {
    max-width: 600px;
    max-height: 100%;
    width: 40vw;
  }
}

.main-contact-btn {
  background-color: #1E2C58;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 1rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 15rem;
  margin: auto;
}
@media screen and (min-width: 480px) {
  .main-contact-btn {
    max-width: 25rem;
    padding: 1rem 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .main-contact-btn {
    padding: 1.5rem 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .main-contact-btn:hover {
    background-color: rgb(17.0338983051, 24.9830508475, 49.9661016949);
    transform: translateY(-4px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  }
}
.main-contact-btn:nth-child(2) {
  background-color: #395CA9;
}
@media (hover: hover) and (pointer: fine) {
  .main-contact-btn:nth-child(2):hover {
    background-color: rgb(44.1371681416, 71.2389380531, 130.8628318584);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  }
}
.main-contact-btn__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #FCFCFC;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  font-weight: 600;
  text-decoration: none;
}
.main-contact-btn__item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .main-contact-btn__item svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.main-contact-btn__item svg path {
  fill: #FCFCFC;
}
.main-contact-btn__item-l {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FCFCFC;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  font-weight: 500;
}

/* ===============================================
# concept
=============================================== */
.concept .section__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.concept .section__wrapper:first-child {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4% 0;
}
@media screen and (min-width: 768px) {
  .concept .section__wrapper:first-child {
    padding: 0;
  }
}
.concept .section__wrapper .section__inner {
  text-align: center;
}

.section-title2 {
  display: flex;
  justify-content: center;
  text-align: center;
}
.section-title2__main {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FCFCFC;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 1.2rem 2.5rem;
  border: 1px solid #FCFCFC;
  position: relative;
}
@media screen and (min-width: 480px) {
  .section-title2__main {
    font-size: clamp(2rem, 4vw, 4rem);
  }
}
.section-title2__main .corner {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #FCFCFC;
}
.section-title2__main .corner--tl {
  top: -5px;
  left: -5px;
}
.section-title2__main .corner--tr {
  top: -5px;
  right: -5px;
}
.section-title2__main .corner--bl {
  bottom: -5px;
  left: -5px;
}
.section-title2__main .corner--br {
  bottom: -5px;
  right: -5px;
}

.section-title3 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
}
.section-title3__main {
  font-size: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
  font-weight: 500;
  color: #1E2C58;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 0.5rem 1.5rem;
  border: 1px solid #1E2C58;
  position: relative;
  display: inline-block;
  text-align: center;
}
.section-title3__main .corner {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1E2C58;
}
.section-title3__main .corner--tl {
  top: -4px;
  left: -4px;
}
.section-title3__main .corner--tr {
  top: -4px;
  right: -4px;
}
.section-title3__main .corner--bl {
  bottom: -4px;
  left: -4px;
}
.section-title3__main .corner--br {
  bottom: -4px;
  right: -4px;
}

/* ===============================================
# main
=============================================== */
.main-content,
.page-main-content {
  margin-top: 100vh;
  margin-bottom: 600px;
  background-color: #f4f7f9;
  border-radius: clamp(3.125rem, 0rem + 10vw, 6.25rem) clamp(3.125rem, 0rem + 10vw, 6.25rem) 0 0;
  position: relative;
  z-index: 100;
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  overflow: hidden;
}
.main-content img,
.page-main-content img {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}
.main-content::before,
.page-main-content::before {
  content: "";
  position: absolute;
  top: 3%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background-image: url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png");
  background-position: calc(100% + 150px) 0vh, calc(0% - 150px) 100vh, calc(100% + 150px) 200vh, calc(0% - 150px) 300vh, calc(100% + 150px) 400vh, calc(0% - 150px) 500vh; /* 6. 左下（スマホ用） */
  background-repeat: no-repeat;
  background-size: auto 100vw;
  /* PC用 - 右、左下、右下、左下の斜め交互配置 */
}
@media screen and (min-width: 1024px) {
  .main-content::before,
  .page-main-content::before {
    background-image: url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png"), url("img/main-bg.png");
    background-position: calc(100% + 300px) 0vh, calc(0% - 300px) 180vh, calc(100% + 300px) 360vh, calc(0% - 300px) 540vh, calc(100% + 300px) 720vh, calc(0% - 300px) 900vh, calc(100% + 300px) 1080vh, calc(0% - 300px) 1260vh; /* 8. 左下（左により大きく寄せる） */
    background-repeat: no-repeat;
    background-size: auto 80vw;
  }
}

/* ===============================================
# 汎用で使うスタイル
=============================================== */
.item-title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  margin-top: 1rem;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 1024px) {
  .item-title {
    margin-top: 1.5rem;
  }
}

.section-title__sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: #395CA9;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .section-title__sub {
    font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  }
}
.section-title__main {
  font-size: 1.25rem;
  color: #1E2C58;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .section-title__main {
    font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  }
}

.section-title-concept h2 {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  line-height: 1.7;
}

.section__wrapper {
  padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}

.section__inner {
  max-width: 75rem;
  margin: auto;
}

/* ===============================================
# ボタンのデザイン
=============================================== */
.fixed-button {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.fixed-button__item {
  width: clamp(4rem, 1.5rem + 4vw, 5rem);
  height: clamp(4rem, 1.5rem + 4vw, 5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .fixed-button__item:hover {
    opacity: 0.7;
  }
}
.fixed-button__item:first-child {
  background-color: #B2B7CD;
}
.fixed-button__item:last-child {
  background-color: #1E2C58;
}
.fixed-button__item img {
  width: clamp(1.5rem, 0.25rem + 2vw, 2rem);
  height: clamp(1.5rem, 0.25rem + 2vw, 2rem);
  -o-object-fit: contain;
     object-fit: contain;
}

.fixed-contact-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}
.fixed-contact-btn__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #008ed3, #00469b);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 142, 211, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .fixed-contact-btn__link {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .fixed-contact-btn__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 142, 211, 0.4);
    background: linear-gradient(135deg, #00a0e6, #005bb5);
  }
}
.fixed-contact-btn__text {
  white-space: nowrap;
}
.fixed-contact-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.fixed-contact-btn__icon svg {
  width: 100%;
  height: 100%;
}

.mobile-fixed-contact-btn {
  position: fixed;
  display: flex;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 1001;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #008ed3, #00469b);
  color: #FCFCFC;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.5s ease;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  width: 200px;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .mobile-fixed-contact-btn {
    display: none;
  }
}
.mobile-fixed-contact-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mobile-fixed-contact-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin: 0.1rem;
}
.mobile-fixed-contact-btn__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.mobile-fixed-contact-btn__text {
  display: block;
  font-weight: 600;
}

.black-button {
  position: relative;
  display: flex;
  color: #FCFCFC;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: clamp(2.5rem, 0.5rem + 6.4vw, 4.5rem);
  width: 100%;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .black-button:hover .black-button-l {
    background-color: rgb(42.9661016949, 63.0169491525, 126.0338983051);
  }
  .black-button:hover .black-button-r {
    background-color: rgb(42.9661016949, 63.0169491525, 126.0338983051);
  }
  .black-button:hover .black-button-r::after {
    right: 35%;
  }
}
.black-button-l {
  background-color: #1E2C58;
  padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  max-width: clamp(12.5rem, 8.75rem + 12vw, 16.25rem);
  width: 100%;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
}
.black-button-l::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .black-button-l::before:hover {
    left: 100%;
  }
}
.black-button-r {
  position: relative;
  background-color: #1E2C58;
  padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  max-width: clamp(3.125rem, 1.875rem + 4vw, 4.375rem);
  width: 100%;
  border-left: 0.05rem solid #FCFCFC;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.black-button-r::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 38%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.4rem;
  height: 0.4rem;
  border-top: 0.1rem solid #FCFCFC;
  border-right: 0.1rem solid #FCFCFC;
  transition: all 0.3s ease;
}
@media screen and (min-width: 480px) {
  .black-button-r::after {
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.15rem solid #FCFCFC;
    border-right: 0.15rem solid #FCFCFC;
  }
}

.section-title h2 .char:nth-child(1) {
  transition-delay: 0.08s;
}

.section-title h2 .char:nth-child(2) {
  transition-delay: 0.16s;
}

.section-title h2 .char:nth-child(3) {
  transition-delay: 0.24s;
}

.section-title h2 .char:nth-child(4) {
  transition-delay: 0.32s;
}

.section-title h2 .char:nth-child(5) {
  transition-delay: 0.4s;
}

.section-title h2 .char:nth-child(6) {
  transition-delay: 0.48s;
}

.section-title h2 .char:nth-child(7) {
  transition-delay: 0.56s;
}

.section-title h2 .char:nth-child(8) {
  transition-delay: 0.64s;
}

.section-title h2 .char:nth-child(9) {
  transition-delay: 0.72s;
}

.section-title h2 .char:nth-child(10) {
  transition-delay: 0.8s;
}

.section-title h2 .char:nth-child(11) {
  transition-delay: 0.88s;
}

.section-title h2 .char:nth-child(12) {
  transition-delay: 0.96s;
}

.section-title h2 .char:nth-child(13) {
  transition-delay: 1.04s;
}

.section-title h2 .char:nth-child(14) {
  transition-delay: 1.12s;
}

.section-title h2 .char:nth-child(15) {
  transition-delay: 1.2s;
}

.section-title h2 .char:nth-child(16) {
  transition-delay: 1.28s;
}

.section-title h2 .char:nth-child(17) {
  transition-delay: 1.36s;
}

.section-title h2 .char:nth-child(18) {
  transition-delay: 1.44s;
}

.section-title h2 .char:nth-child(19) {
  transition-delay: 1.52s;
}

.section-title h2 .char:nth-child(20) {
  transition-delay: 1.6s;
}

.category {
  display: inline-block;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  padding: 0.2rem 1rem;
  border: 0.08rem solid #dae3f2;
  border-radius: 2rem;
}

@media screen and (min-width: 1024px) {
  .sp-img {
    display: none;
  }
}

.pc-img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc-img {
    display: block;
  }
}

.section__inner {
  max-width: 87.5rem;
  margin: auto;
  z-index: 0;
  position: relative;
}

/* ===============================================
# what-is-housecan
=============================================== */
.what-is-housecan .section__wrapper {
  padding-left: 4%;
  padding-right: 4%;
  position: relative;
}
.what-is-housecan .section-title {
  text-align: center;
}

.housecan-benefits {
  margin-top: clamp(2.5rem, 1rem + 4.8vw, 4rem);
}
.housecan-benefits .benefits__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .housecan-benefits .benefits__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
.housecan-benefits .benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FEFEFE;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  width: 100%;
  min-height: 200px;
}
@media screen and (min-width: 768px) {
  .housecan-benefits .benefits__item {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}
@media screen and (min-width: 1024px) {
  .housecan-benefits .benefits__item {
    flex: 0 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
  }
}
.housecan-benefits .benefits__icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #2F479B, rgb(80.7654867257, 116.8495575221, 196.2345132743));
  border-radius: 50%;
}
.housecan-benefits .benefits__icon img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.housecan-benefits .benefits__text {
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  color: #1E2C58;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .housecan-benefits .benefits__text {
    font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  }
}
.housecan-benefits .benefits__text .highlight {
  color: rgb(34, 137, 255);
  font-weight: 700;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  position: relative;
  font-size: 150%;
  line-height: 1.2;
}

/* ===============================================
# contact
=============================================== */
.contact .section__wrapper {
  padding-left: 4%;
  padding-right: 4%;
  position: relative;
}
.contact .section__inner {
  background-color: #FEFEFE;
  padding: 2rem 0 6rem 0;
}
.contact .contact__main-title {
  text-align: center;
  color: #FCFCFC;
  background-color: #1E2C58;
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  margin: 0 2% 2.5rem 2%;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact .contact__inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 1024px) {
  .contact .contact__inner {
    flex-direction: row;
    gap: 5rem;
  }
}
.contact .contact__item {
  flex: 1;
  text-align: center;
}
.contact .contact__item .contact__item-title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  color: #1E2C58;
  font-weight: 500;
}
.contact .contact__item .contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  font-weight: 600;
  color: #395CA9;
  line-height: 1.7;
}
.contact .contact__item .contact__tel svg {
  width: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  height: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  margin-top: 0.5rem;
  fill: #395CA9;
}
.contact .contact__item .contact__schedule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.contact .contact__item .contact__schedule .contact__schedule-label {
  color: #FCFCFC;
  background-color: #395CA9;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact .contact__item .contact__schedule .contact__schedule-time {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #1E2C58;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact .contact__item .contact__btn {
  background-color: #395CA9;
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  max-width: 25rem;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .contact .contact__item .contact__btn:hover {
    background-color: rgb(44.1371681416, 71.2389380531, 130.8628318584);
    transform: translateY(-2px);
  }
}
.contact .contact__item .contact__btn__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #FCFCFC;
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  font-weight: 600;
}
.contact .contact__item .contact__btn__item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact .contact__item .contact__btn__item svg path {
  fill: #FCFCFC;
}
.contact .contact__item .contact__btn__item-l {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #FCFCFC;
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  font-weight: 600;
}

.contact2 .section__wrapper {
  padding: clamp(4rem, 3rem + 3.2vw, 5rem) 4%;
  position: relative;
  margin-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
}
.contact2 .section-title__sub {
  color: #395CA9;
}
.contact2 .contact__main-title {
  text-align: center;
  color: #FCFCFC;
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  border-radius: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact2 .contact__inner {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem 2.5rem;
  margin-top: clamp(2.5rem, 1rem + 4.8vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .contact2 .contact__inner {
    flex-direction: row;
  }
}
.contact2 .contact__item {
  background-color: #FEFEFE;
  flex: 1;
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
}
.contact2 .contact__item.contact__item-tel {
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .contact2 .contact__item.contact__item-tel:hover {
    opacity: 0.7;
  }
}
.contact2 .contact__item .contact__item-title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  font-weight: 500;
}
.contact2 .contact__item .contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(1.75rem, 0.5rem + 4vw, 3rem);
  font-weight: 600;
  color: #395CA9;
  line-height: 1.7;
}
.contact2 .contact__item .contact__tel svg {
  width: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  height: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  margin-top: 0.5rem;
  fill: #395CA9;
}
.contact2 .contact__item .contact__schedule {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.contact2 .contact__item .contact__schedule .contact__schedule-label {
  color: #FCFCFC;
  background-color: #395CA9;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact2 .contact__item .contact__schedule .contact__schedule-time {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #1E2C58;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact2 .contact__item .contact__btn {
  background-color: #395CA9;
  border: none;
  border-radius: 0.5rem;
  padding: clamp(1rem, 0.5rem + 1.6vw, 1.5rem) clamp(1.5rem, 1rem + 1.6vw, 2rem);
  transition: all 0.3s ease;
  margin-top: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  max-width: 25rem;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .contact2 .contact__item .contact__btn:hover {
    background-color: rgb(44.1371681416, 71.2389380531, 130.8628318584);
    transform: translateY(-2px);
  }
}
.contact2 .contact__item .contact__btn__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #FCFCFC;
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  font-weight: 600;
}
.contact2 .contact__item .contact__btn__item svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact2 .contact__item .contact__btn__item svg path {
  fill: #FCFCFC;
}
.contact2 .contact__item .contact__btn__item-l {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #FCFCFC;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (min-width: 480px) {
  .contact2 .contact__item .contact__btn__item-l {
    font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  }
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #FEFEFE;
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 480px) {
  .btn-arrow {
    width: 2rem;
    height: 2rem;
  }
}
.btn-arrow::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1.5px;
  background-color: #395CA9;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 480px) {
  .btn-arrow::before {
    width: 0.6rem;
  }
}
.btn-arrow::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1.5px solid #395CA9;
  border-right: 1.5px solid #395CA9;
  transform: rotate(45deg);
  right: 0.5rem;
  top: 50%;
  margin-top: -0.2rem;
}
@media screen and (min-width: 480px) {
  .btn-arrow::after {
    right: 0.7rem;
  }
}

.btn-arrow-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #FEFEFE;
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 480px) {
  .btn-arrow-down {
    width: 2rem;
    height: 2rem;
  }
}
.btn-arrow-down::before {
  content: "";
  position: absolute;
  width: 1.5px;
  height: 0.5rem;
  background-color: #395CA9;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 480px) {
  .btn-arrow-down::before {
    height: 0.6rem;
  }
}
.btn-arrow-down::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-bottom: 1.5px solid #395CA9;
  border-right: 1.5px solid #395CA9;
  transform: rotate(45deg);
  left: 50%;
  bottom: 0.5rem;
  margin-left: -0.2rem;
}
@media screen and (min-width: 480px) {
  .btn-arrow-down::after {
    bottom: 0.7rem;
  }
}

.contact-background .section__wrapper {
  position: relative;
}
.contact-background .section__wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background-color: #dae3f2;
  z-index: -1;
  border-radius: clamp(3.125rem, 0rem + 10vw, 6.25rem) clamp(3.125rem, 0rem + 10vw, 6.25rem) 0 0;
}

/* ===============================================
# contact2
=============================================== */
.contact2 {
  background-color: #1E2C58;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 0 0;
}

/* ===============================================
# worries
=============================================== */
.worries {
  padding: 0 4%;
}
.worries .section__wrapper {
  padding-left: 0;
  padding-right: 0;
}
.worries .section__inner {
  background-color: #FEFEFE;
  padding: clamp(2.5rem, 0rem + 8vw, 5rem) 4%;
  position: relative;
}
.worries .section__inner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background-color: #FEFEFE;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 100%;
  height: 50px;
  z-index: 1;
}
.worries .worries__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin-top: clamp(3rem, 2rem + 3.2vw, 4rem);
  padding: 0;
}
.worries .worries__item {
  max-width: 100%;
  width: 100%;
  background-color: #f1f4fb;
  border-radius: 0.75rem;
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  color: #395CA9;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .worries .worries__item {
    flex: 0 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 1024px) {
  .worries .worries__item {
    flex: 0 1 calc(33.333% - 1.333rem);
    max-width: calc(33.333% - 1.333rem);
    font-size: 1.5rem;
  }
}
.worries .worries__item::before {
  content: "?";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #2F479B, rgb(80.7654867257, 116.8495575221, 196.2345132743));
  color: #FCFCFC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
}

.solution {
  text-align: center;
}
.solution .section__wrapper {
  padding-top: calc(clamp(4rem, 0.5rem + 11.198vw, 7.5rem) + 50px);
  padding-left: 4%;
  padding-right: 4%;
}
.solution img {
  max-width: 500px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .solution img {
    max-width: 800px;
  }
}

/* ===============================================
# point
=============================================== */
.point .section__wrapper {
  padding-left: 0;
  padding-right: 0;
}
.point .point__inner {
  list-style: none;
  padding: 0 4%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 0rem + 6.4vw, 4rem);
}
.point .point__item {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  border-top: 0.5rem solid #395CA9;
  padding: clamp(2rem, -1rem + 9.6vw, 5rem);
  max-height: 100%;
  gap: 1.5rem;
  background-color: #FEFEFE;
  border-radius: 1rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .point .point__item {
    flex-direction: row;
    align-items: center;
    border: 0;
    border-left: 0.875rem solid #395CA9;
    padding: 0;
    max-height: 450px;
    gap: 0;
    overflow: hidden;
  }
}
.point .point__item .point__content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .point .point__item .point__content {
    text-align: left;
    padding: clamp(2.5rem, 0rem + 8vw, 5rem);
  }
}
.point .point__item .point__content .no {
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  font-weight: 600;
  color: #C3C1C1;
  margin-bottom: 1rem;
  display: block;
}
.point .point__item .point__content .point-title {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  font-weight: 600;
  color: #395CA9;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.point .point__item .point__content .text {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
}
.point .point__item .point__content .text strong {
  color: rgb(34, 137, 255);
  font-weight: 700;
}
.point .point__item .point__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .point .point__item .point__img {
    max-width: 600px;
    margin-left: auto;
    margin-right: -100px;
  }
}

/* ===============================================
# price-plan & price-plan2
=============================================== */
.price-plan .section__wrapper,
.price-plan2 .section__wrapper {
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  background-color: #dae3f2;
  padding-left: 4%;
  padding-right: 4%;
}
.price-plan .section__inner,
.price-plan2 .section__inner {
  position: relative;
}
.price-plan .price-plan__inner,
.price-plan2 .price-plan__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin-top: clamp(2rem, 1rem + 3.2vw, 3rem);
}
@media screen and (min-width: 768px) {
  .price-plan .price-plan__inner,
  .price-plan2 .price-plan__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .price-plan .price-plan__inner,
  .price-plan2 .price-plan__inner {
    flex-direction: row;
  }
}
.price-plan .price-plan__item,
.price-plan2 .price-plan__item {
  background-color: #FEFEFE;
  border-radius: 1rem;
  padding: clamp(2rem, 1rem + 3.2vw, 3rem);
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .price-plan .price-plan__item,
  .price-plan2 .price-plan__item {
    max-width: 50%;
  }
}
.price-plan .price-plan__item h3,
.price-plan2 .price-plan__item h3 {
  color: #1E2C58;
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.price-plan .price-plan__item:nth-child(1) h3,
.price-plan2 .price-plan__item:nth-child(1) h3 {
  color: #395CA9;
}
.price-plan .price-plan__item:nth-child(2) h3,
.price-plan2 .price-plan__item:nth-child(2) h3 {
  color: #4381f2;
}
.price-plan .price-plan__item:nth-child(3) h3,
.price-plan2 .price-plan__item:nth-child(3) h3 {
  color: #4959ec;
}
.price-plan .price-plan__item h4,
.price-plan2 .price-plan__item h4 {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  color: #1E2C58;
  font-weight: 500;
  line-height: 1.4;
}
.price-plan .price-plan__item .price-plan__price,
.price-plan2 .price-plan__item .price-plan__price {
  font-size: clamp(2rem, 2rem + 2vw, 3rem);
  font-weight: 700;
  color: #395CA9;
  margin-bottom: 1rem;
  text-align: center;
}
.price-plan .price-plan__item .price-plan__price .price-plan__price-unit,
.price-plan2 .price-plan__item .price-plan__price .price-plan__price-unit {
  font-size: 0.4em;
  font-weight: 500;
  color: #1E2C58;
  margin-left: 0.25rem;
}
.price-plan .price-plan__item .price-plan__price .price-plan__price-from,
.price-plan2 .price-plan__item .price-plan__price .price-plan__price-from {
  font-size: 0.6em;
  font-weight: 500;
  color: #1E2C58;
  margin-left: 0.5rem;
}
.price-plan .price-plan__item p,
.price-plan2 .price-plan__item p {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.price-plan .price-plan__item hr,
.price-plan2 .price-plan__item hr {
  border: none;
  height: 1px;
  background-color: #e5e5e5;
  margin: 2rem 0;
}
.price-plan .price-plan__item .price-plan__item-list,
.price-plan2 .price-plan__item .price-plan__item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.price-plan .price-plan__item .price-plan__item-list .price-plan__item-list__item,
.price-plan2 .price-plan__item .price-plan__item-list .price-plan__item-list__item {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #1E2C58;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.price-plan .price-plan__item .price-plan__item-list .price-plan__item-list__item::before,
.price-plan2 .price-plan__item .price-plan__item-list .price-plan__item-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #395CA9;
  font-weight: 600;
}
.price-plan .price-plan__item .price-plan__item-list .price-plan__item-list__item:last-child,
.price-plan2 .price-plan__item .price-plan__item-list .price-plan__item-list__item:last-child {
  margin-bottom: 0;
}
.price-plan .price-plan__item--recommended,
.price-plan2 .price-plan__item--recommended {
  border: 3px solid #395CA9;
  position: relative;
}
.price-plan .price-plan__recommended-badge,
.price-plan2 .price-plan__recommended-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #395CA9, rgb(44.1371681416, 71.2389380531, 130.8628318584));
  color: #FCFCFC;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  white-space: nowrap;
}
.price-plan .price-plan-button,
.price-plan2 .price-plan-button {
  background-color: #1E2C58;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.price-plan .price-plan-button a,
.price-plan2 .price-plan-button a {
  color: #FCFCFC;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  display: block;
  text-align: center;
}
.price-plan .price-plan-button:hover,
.price-plan2 .price-plan-button:hover {
  background-color: rgb(17.0338983051, 24.9830508475, 49.9661016949);
  transform: translateY(-2px);
}

/* ===============================================
# use-cases
=============================================== */
.use-cases .section__wrapper {
  padding-left: 4%;
  padding-right: 4%;
}
.use-cases .use-cases__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0rem + 3.2vw, 2rem);
  margin-top: clamp(2.5rem, 1rem + 4.8vw, 4rem);
}
@media screen and (min-width: 768px) {
  .use-cases .use-cases__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .use-cases .use-cases__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.use-cases .use-case__item {
  background: #FEFEFE;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.use-cases .use-case__icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2F479B, rgb(80.7654867257, 116.8495575221, 196.2345132743));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.use-cases .use-case__icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.use-cases .use-case__title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  color: #395CA9;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.use-cases .use-case__description {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.use-cases .section-title3 {
  align-items: center;
}

.main-sentence img {
  max-width: 800px;
  width: 80vw;
  display: block;
  margin: 0 auto;
}

/* ===============================================
# footer
=============================================== */
#form .section__wrapper {
  padding-left: 4%;
  padding-right: 4%;
}
#form .section__inner {
  max-width: 1000px;
}

.footer {
  width: 100vw;
  height: 600px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1001;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0 4%;
  transition: opacity 0.3s ease;
}
.footer.footer-visible {
  z-index: 10;
  transition: z-index 0s ease, opacity 0.3s ease;
}
.footer .footer__inner {
  width: 100%;
  max-width: 87.5rem;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.footer .footer__logo {
  text-align: center;
  padding: 4.5rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footer__logo {
    padding: 9rem 0;
  }
}
.footer .footer__logo img {
  max-width: 250px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .footer .footer__logo img {
    max-width: 300px;
  }
}
.footer .footer__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  justify-content: space-between;
  padding-bottom: 7rem;
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer .footer__content {
    flex-direction: row;
    padding-bottom: 1.5rem;
  }
}
.footer .footer__content .footer__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer .footer__content .footer__links {
    justify-content: flex-end;
  }
}
.footer .footer__content .footer__links a {
  color: #FCFCFC;
  font-size: 0.75rem;
  position: relative;
}
.footer .footer__content .footer__links a::before {
  content: "|";
  color: #FCFCFC;
  opacity: 0.6;
}
.footer .footer__content .footer__links a:last-child::after {
  content: "|";
  color: #FCFCFC;
  opacity: 0.6;
}
.footer .footer__content .footer__links a span {
  margin: 0 1rem;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__content .footer__links a span:hover {
    opacity: 0.8;
  }
}
.footer .footer__content .footer__copyright {
  color: #FCFCFC;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer .footer__content .footer__copyright {
    text-align: right;
  }
}

.footer__subtext {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.footer__sns__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FCFCFC;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__sns__link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
  }
}
.footer__sns__link img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__sns__link .external-link-icon {
  margin-top: 0.2rem;
}

/* ===============================================
# form
=============================================== */
.form .form-attention {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid #395CA9;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.form .form-attention p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #1E2C58;
}
.form .form-attention ul {
  padding-left: 1rem;
}
.form .form-attention li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  position: relative;
  color: #1E2C58;
}
.form .form-attention li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #395CA9;
  border-radius: 50%;
  flex-shrink: 0;
}
.form .p-country-name {
  display: none;
}
.form .CF7_table {
  margin: auto;
}
.form .CF7_table .form-title {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  border-bottom: 0.08rem solid #395CA9;
  color: #1E2C58;
  padding-bottom: 0.5rem;
  letter-spacing: 0.15rem;
  margin-bottom: clamp(2.5rem, 2rem + 1.6vw, 3rem);
  font-weight: 600;
}
.form .CF7_table .form-main-title {
  font-weight: 600;
  padding: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  letter-spacing: 0.1rem;
  border: 2px solid #395CA9;
  background: linear-gradient(-135deg, #395CA9, rgb(44.1371681416, 71.2389380531, 130.8628318584));
  color: #FCFCFC;
  text-align: center;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 142, 211, 0.2);
}
.form .CF7_table .form-main-title i {
  margin-right: 0.25rem;
}
.form .CF7_table h3 {
  display: flex;
  align-items: center;
  gap: 0 0.25rem;
  flex-wrap: wrap;
  font-weight: 600;
  color: #1E2C58;
  margin-left: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  margin-bottom: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  position: relative;
}
.form .CF7_table h3::before {
  content: "";
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #395CA9, rgb(44.1371681416, 71.2389380531, 130.8628318584));
  position: absolute;
  left: -1rem;
  top: 0;
  border-radius: 2px;
}
.form .CF7_table .CF7_req {
  color: #ff6b6b;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  font-weight: 600;
  background-color: rgba(255, 107, 107, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}
.form .CF7_table .form-item {
  padding: 1.5rem clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  border-bottom: 0.05rem solid rgba(200, 200, 200, 0.3);
  background-color: #FEFEFE;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .form .CF7_table .form-item {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.form .CF7_table .form-item:hover {
  box-shadow: 0 2px 10px rgba(0, 142, 211, 0.1);
}
.form .CF7_table .form-item a {
  margin-left: 0.625rem;
  padding: 6px 15px;
  background-color: #395CA9;
  color: #FCFCFC;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.form .CF7_table .form-item a:hover {
  background-color: rgb(44.1371681416, 71.2389380531, 130.8628318584);
}
.form .CF7_table .form-item p {
  margin-bottom: 0.625rem;
  color: #1E2C58;
}
.form .CF7_table .form-item textarea {
  width: 100%;
  height: 16rem;
  resize: vertical;
  border: 1.5px solid rgba(193, 198, 199, 0.6);
  background-color: #FEFEFE;
  padding: 0.625rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.form .CF7_table .form-item textarea:focus {
  border-color: #395CA9;
  box-shadow: 0 0 0 3px rgba(0, 142, 211, 0.1);
  outline: none;
}
.form .CF7_table input,
.form .CF7_table select {
  border: 1.5px solid rgba(193, 198, 199, 0.6);
  background-color: #FEFEFE;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  position: relative;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.form .CF7_table input:focus,
.form .CF7_table select:focus {
  border-color: #395CA9;
  box-shadow: 0 0 0 3px rgba(0, 142, 211, 0.1);
  outline: none;
}
.form .CF7_table input:hover,
.form .CF7_table select:hover {
  border-color: rgba(0, 142, 211, 0.4);
}
.form .CF7_table input[name=last_name],
.form .CF7_table input[name=first_name],
.form .CF7_table input[name=last_name_kana],
.form .CF7_table input[name=first_name_kana] {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  flex: 1;
}
.form .CF7_table input[name=last_name2],
.form .CF7_table input[name=first_name2],
.form .CF7_table input[name=last_name_kana2],
.form .CF7_table input[name=first_name_kana2],
.form .CF7_table input[name=personal_postal_code] {
  width: 100%;
}
.form .CF7_table input[type=submit] {
  padding: 1.5rem;
  width: 280px;
  border: 0;
  background: linear-gradient(135deg, #395CA9, rgb(44.1371681416, 71.2389380531, 130.8628318584));
  color: #FCFCFC;
  border-radius: 0.75rem;
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 142, 211, 0.3);
}
.form .CF7_table input[type=submit]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 142, 211, 0.4);
}
.form .CF7_table input[type=submit]:active:not(:disabled) {
  transform: translateY(0);
}
.form .CF7_table input[type=submit]:disabled {
  background: linear-gradient(135deg, #ddd, #ccc);
  text-align: center;
  cursor: not-allowed;
  box-shadow: none;
}
.form .CF7_table input[type=submit]:disabled:hover {
  transform: none;
}
.form .CF7_table input[type=checkbox] {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid #395CA9;
  background-color: #FEFEFE;
  padding: 0;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form .CF7_table input[type=checkbox]:hover {
  border-color: rgb(44.1371681416, 71.2389380531, 130.8628318584);
  box-shadow: 0 0 0 2px rgba(0, 142, 211, 0.1);
}
.form .CF7_table input[type=checkbox]:checked {
  border: 2px solid #395CA9;
  background: linear-gradient(135deg, #395CA9, rgb(44.1371681416, 71.2389380531, 130.8628318584));
}
.form .CF7_table input[type=checkbox]:checked:before {
  position: absolute;
  top: 0.1rem;
  left: 0.3rem;
  transform: rotate(45deg);
  width: 0.3rem;
  height: 0.6rem;
  border-right: 2px solid #FEFEFE;
  border-bottom: 2px solid #FEFEFE;
  content: "";
}
.form .CF7_table input::-moz-placeholder {
  color: #dae3f2;
}
.form .CF7_table input::placeholder {
  color: #dae3f2;
}
.form .CF7_table span[data-name=date_1],
.form .CF7_table span[data-name=date_2] {
  position: relative;
}
.form .CF7_table span[data-name=date_1] input,
.form .CF7_table span[data-name=date_2] input,
.form .CF7_table span[data-name=date_1] select,
.form .CF7_table span[data-name=date_2] select {
  width: 35rem;
}
@media screen and (min-width: 768px) {
  .form .CF7_table span[data-name=date_1] input,
  .form .CF7_table span[data-name=date_2] input,
  .form .CF7_table span[data-name=date_1] select,
  .form .CF7_table span[data-name=date_2] select {
    width: 100%;
  }
}
.form .CF7_table span[data-name=form_4a] select,
.form .CF7_table span[data-name=form_6a] select {
  width: 20rem;
}
@media screen and (min-width: 768px) {
  .form .CF7_table span[data-name=form_4a] select,
  .form .CF7_table span[data-name=form_6a] select {
    width: 100%;
  }
}
.form .CF7_table .form-item-box1 {
  margin-bottom: 1.5rem;
}
.form .CF7_table .form-item-m {
  display: block;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #1E2C58;
  margin-top: 1rem;
}
.form .form-acceptance .CF7_req {
  margin: 0 0.25rem;
}
.form .form-policy__wrapper .policy__inner {
  padding: 3rem 2.5rem;
}
.form .form-policy__wrapper .poricy-cp {
  padding-bottom: 1.875rem;
}
.form .form-policy__wrapper h2 {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  border-bottom: 0.1rem solid #dae3f2;
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.form .form-policy__wrapper p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
.form .wpcf7-form-control-wrap[data-name=question] {
  width: 100%;
}
.form input[type=date] {
  position: relative;
}
.form input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.CF7_btn {
  text-align: center;
  margin: auto;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.form-item-name-flex {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form-item-name-flex {
    flex-direction: row;
  }
}
.form-item-name-flex .form-item-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.form-item-name-flex .form-item-input .name {
  width: 2.5rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.form-item-name-flex .form-item-input p:last-child {
  flex: 1;
  width: 100%;
}
.form-item-name-flex .form-item-input .wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-list-item {
  margin: 0 1em 1em 0;
}

span[data-name=form_1a] .wpcf7-list-item label {
  display: flex;
  align-items: center;
  min-width: 25%;
}

span[data-name=form_1a] label,
span[data-name=date] label {
  padding: 0.85rem 1rem !important;
  border-radius: 2px;
  border: 0.1rem solid #d5d9e9;
  background-color: #f1f4fb;
  display: block;
}

span[data-name=way] label {
  padding: 0.85rem 1rem;
  border-radius: 2px;
  border: 0.1rem solid #d5d9e9;
  background-color: #f1f4fb;
  display: block;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #1E2C58 !important;
}

span[data-name=form_1a] label,
span[data-name=date] label {
  display: flex;
}

.CF7_table input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #1E2C58;
  border-radius: 15px;
  background: transparent;
  opacity: 1;
  padding: 0;
  margin-right: 0.25rem;
  position: relative;
}

input[type=radio]:checked {
  background-color: #FEFEFE;
}
input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #395CA9;
  border-radius: 50%;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: "";
}

.form-acceptance {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}
.form-acceptance .wpcf7-list-item {
  margin: 0;
}

.form-acceptance p {
  text-align: center;
  margin: auto;
}

.form-acceptanc label {
  padding: 0;
  border-radius: 0;
  border: 0;
}

.form-policy__wrapper {
  width: 100%;
  height: 14rem;
  background-color: #FEFEFE;
  overflow: scroll;
  overflow-x: hidden;
  border-radius: 0.2rem;
  margin-top: 3rem;
  color: #1E2C58;
}

.form-policy__wrapper .contents-policy__item h2 {
  text-align: left;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  padding: 0.5rem 0;
  font-weight: 500;
  background-color: #1E2C58;
  color: #1E2C58;
}

.form-policy__wrapper .contents-policy__item:not(:last-child) {
  padding-bottom: 2.5rem;
}

.recaptcha-text {
  font-size: 0.625rem;
  text-align: center;
  padding-top: 1rem;
}

.recaptcha-text a {
  font-size: 0.625rem;
  text-decoration: underline;
  color: #1E2C58;
}

span[data-name=time1],
span[data-name=time2],
span[data-name=form_4a],
span[data-name=form_6a] {
  width: 10rem;
  position: relative;
}

span[data-name=time1]::after,
span[data-name=time2]::after,
span[data-name=date_1]::after,
span[data-name=date_2]::after,
span[data-name=form_4a]::after,
span[data-name=form_6a]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.1rem solid #1E2C58;
  border-bottom: 0.1rem solid #1E2C58;
  transform: rotate(45deg) translateY(-50%);
}

span[data-name=form_4a]::after,
span[data-name=form_6a]::after {
  top: 0.25rem;
}

.time-select {
  margin-top: 1.5rem;
}
.time-select p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wpcf7-form-control-wrap {
  position: inherit;
}

span[data-name=acceptance] label {
  display: block;
  font-weight: 600;
  padding: 0.625rem;
}

/* ===============================================
# notation
=============================================== */
.notation .section__wrapper {
  padding-top: clamp(7.5rem, 5rem + 8vw, 10rem);
  padding-left: 4%;
  padding-right: 4%;
}
.notation .page-main-content {
  margin-top: 0;
  border-radius: 0;
}
.notation .section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.notation .notation__header {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 3.2vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 2px solid #dae3f2;
}
.notation .notation__title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  color: #1E2C58;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.notation .notation__content {
  line-height: 1.8;
}
.notation .notation__intro {
  margin-bottom: clamp(2.5rem, 1.5rem + 3.2vw, 3.5rem);
}
.notation .notation__intro p {
  margin: 0;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
}
.notation .notation__table {
  margin-bottom: clamp(2.5rem, 1.5rem + 3.2vw, 3.5rem);
}
.notation .notation__table-content {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dae3f2;
  border-radius: 0.5rem;
  overflow: hidden;
}
.notation .notation__table-content tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 480px) {
  .notation .notation__table-content tr {
    flex-direction: row;
  }
}
.notation .notation__table-content th {
  background-color: #dae3f2;
  color: #1E2C58;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #FCFCFC;
  border-right: 1px solid #dae3f2;
  white-space: nowrap;
  vertical-align: top;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .notation .notation__table-content th {
    width: 200px;
  }
}
.notation .notation__table-content td {
  background-color: #FEFEFE;
  color: #1E2C58;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  padding: 1rem;
  border-bottom: 1px solid #dae3f2;
  vertical-align: top;
  line-height: 1.6;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .notation .notation__table-content td {
    width: calc(100% - 200px);
  }
}
@media screen and (min-width: 768px) {
  .notation .notation__table-content td {
    padding: 0.8rem;
  }
}
.notation .notation__table-content td br {
  line-height: 1.8;
}
.notation .notation__table-content tr:last-child th, .notation .notation__table-content tr:last-child td {
  border-bottom: none;
}
.notation .notation__section {
  margin-bottom: clamp(2rem, 1rem + 3.2vw, 3rem);
  padding: 2rem;
  background-color: #FEFEFE;
  border-radius: 0.5rem;
}
.notation .notation__section h2 {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  color: #1E2C58;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.notation .notation__section p {
  margin: 0 0 1rem 0;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
}
.notation .notation__section p:last-child {
  margin-bottom: 0;
}
.notation .notation__contact {
  margin-top: 1.5rem;
}
.notation .notation__contact p {
  margin: 0 0 0.5rem 0;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
}
.notation .notation__contact p strong {
  font-weight: 600;
  color: #395CA9;
}
.notation .notation__contact p:last-child {
  margin-bottom: 0;
}
.notation .notation__note {
  padding: 2rem;
  background-color: #fff7e6;
  border: 1px solid #ffd700;
  border-radius: 0.5rem;
  margin-bottom: 0;
}
.notation .notation__note h3 {
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  color: #1E2C58;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.notation .notation__note p {
  margin: 0;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
}

/* ===============================================
# policies
=============================================== */
.policies .page-main-content {
  margin-top: 0;
  border-radius: 0;
}
.policies .section__wrapper {
  padding-top: clamp(7.5rem, 5rem + 8vw, 10rem);
  padding-left: 4%;
  padding-right: 4%;
}
.policies .section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.policies .policies__header {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 3.2vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 2px solid #dae3f2;
}
.policies .policies__title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  color: #1E2C58;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.policies .policies__intro {
  margin-bottom: clamp(2.5rem, 1.5rem + 3.2vw, 3.5rem);
}
.policies .policies__intro p {
  margin: 0;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
}
.policies .policies__intro p:not(:last-child) {
  margin-bottom: 1rem;
}
.policies .policies__section {
  margin-bottom: clamp(2rem, 1rem + 3.2vw, 3rem);
  padding-bottom: clamp(1.5rem, 1rem + 1.6vw, 2rem);
}
.policies .policies__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.policies .policies__section h2 {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  color: #1E2C58;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #395CA9;
  line-height: 1.4;
}
.policies .policies__section p {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
}
.policies .policies__list {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  list-style: none;
}
.policies .policies__list li {
  position: relative;
  margin-bottom: 0.5rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
}
.policies .policies__list li::before {
  content: "・";
  position: absolute;
  left: -1rem;
  color: #395CA9;
  font-weight: 600;
}
.policies .policies__list li:last-child {
  margin-bottom: 0;
}

/* ===============================================
# sitemap
=============================================== */
.page-sitemap .section__wrapper {
  margin: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}

.sitemap__wrapper .sitemap__item {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.08rem solid #d5cdcd;
  color: #1E2C58;
}
.sitemap__wrapper .sitemap__item .sitemap__item-link {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 1rem;
  padding-right: 1rem;
}
.sitemap__wrapper .sitemap__item .sitemap__item-child {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  gap: 1rem 0;
}
.sitemap__wrapper .sitemap__item .sitemap__item-child li:not(:last-child)::after {
  content: "／";
  color: #dae3f2;
  margin: 0px 0.625rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ===============================================
# Three.js Canvas Styles
=============================================== */
canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -10;
  pointer-events: none;
  opacity: 1; /* すぐに表示 */
  transform: translateY(0); /* 位置を正常に */
  transition: all 0.8s ease; /* ふわっと表示させるアニメーション */
}

.main-page .main-page-back {
  position: relative;
  transition: all 0.3s ease;
}
.main-page .main-page-back.main-page-back-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  transition: opacity 0.5s ease;
}
.main-page .main-top-view {
  padding: 0 4%;
}
.main-page .top-view__inner {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 6rem;
  min-height: 100vh;
}
@media screen and (min-width: 480px) {
  .main-page .top-view__inner {
    justify-content: center;
    padding-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .main-page .top-view__inner {
    gap: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .main-page .top-view__inner {
    flex-direction: row;
    padding-top: 0;
    justify-content: space-around;
  }
}
.main-page .top-view__cp {
  font-size: 0.625rem;
  color: #aac3cf;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .main-page .top-view__cp {
    margin-bottom: 0.5rem;
    font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  }
}
.main-page .top-view__item {
  text-align: center;
  color: #FCFCFC;
}
@media screen and (min-width: 1024px) {
  .main-page .top-view__item {
    text-align: left;
  }
}
.main-page .top-view__item .top-view-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media screen and (min-width: 480px) {
  .main-page .top-view__item .top-view-title {
    font-size: clamp(2.25rem, 1rem + 2vw, 2.75rem);
    line-height: 1.4;
  }
}
@media screen and (min-width: 1024px) {
  .main-page .top-view__item .top-view-title {
    margin-bottom: 2rem;
  }
}
.main-page .top-view__item .top-view-title .tw-text {
  line-height: 1.6;
}
@media screen and (min-width: 480px) {
  .main-page .top-view__item .top-view-title .tw-text {
    line-height: 1.8;
  }
}
.main-page .top-view__item .top-view__subtitle {
  font-size: 0.625rem;
  line-height: 2.2;
  margin-bottom: 2rem;
}
@media screen and (min-width: 480px) {
  .main-page .top-view__item .top-view__subtitle {
    font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  }
}
@media screen and (min-width: 1024px) {
  .main-page .top-view__item .top-view__subtitle {
    margin-bottom: 3rem;
  }
}
.main-page .top-view__item .top-view__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main-page .top-view__item .top-view__buttons {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .main-page .top-view__item .top-view__buttons {
    flex-direction: column;
  }
}
.main-page .top-view__item .top-view__btn,
.main-page .top-view__item .main-contact-btn {
  width: 100%;
}
@media screen and (min-width: 480px) {
  .main-page .top-view__item .top-view__btn,
  .main-page .top-view__item .main-contact-btn {
    max-width: 25rem;
    width: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .main-page .top-view__item .top-view__btn,
  .main-page .top-view__item .main-contact-btn {
    max-width: 30rem;
  }
}
@media screen and (min-width: 1024px) {
  .main-page .top-view__item .top-view__btn,
  .main-page .top-view__item .main-contact-btn {
    width: 100%;
  }
}
.main-page img {
  max-width: 100%;
  max-height: 30vh;
  height: auto;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 480px) {
  .main-page img {
    max-height: 40vh;
  }
}
@media screen and (min-width: 1024px) {
  .main-page img {
    max-width: 600px;
    max-height: 100%;
    width: 40vw;
  }
}
.main-page .main-content {
  border-radius: 0;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .main-page .main-content {
    margin-top: 100vh;
  }
}
.main-page .use-cases .section__wrapper {
  padding-bottom: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  background-color: #dae3f2;
}

.top-view__btn {
  background-color: #1E2C58;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 1rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 15rem;
  margin: auto;
}
@media screen and (min-width: 480px) {
  .top-view__btn {
    max-width: 25rem;
    padding: 1rem 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-view__btn {
    padding: 1.5rem 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-view__btn:hover {
    background-color: rgb(17.0338983051, 24.9830508475, 49.9661016949);
    transform: translateY(-4px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  }
}
.top-view__btn:nth-child(2) {
  background-color: #395CA9;
}
@media (hover: hover) and (pointer: fine) {
  .top-view__btn:nth-child(2):hover {
    background-color: rgb(44.1371681416, 71.2389380531, 130.8628318584);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  }
}
.top-view__btn__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #FCFCFC;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  font-weight: 600;
  text-decoration: none;
}
.top-view__btn__item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .top-view__btn__item svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.top-view__btn__item svg path {
  fill: #FCFCFC;
}
.top-view__btn__item-l {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FCFCFC;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  font-weight: 600;
}

.concept {
  overflow: hidden;
}

.concept-card {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.concept-card__container {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  height: 70vh;
  margin: 0 2rem;
}
@media screen and (min-width: 768px) {
  .concept-card__container {
    gap: 4rem;
    margin: 0 4%;
    gap: 2.5rem;
  }
}
.concept-card__item {
  width: 75vw;
  min-width: 75vw;
  max-width: 1200px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  color: #FCFCFC;
  text-align: center;
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column-reverse;
  gap: 1rem 2.5rem;
  padding: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .concept-card__item {
    padding: 4rem;
    width: 80vw;
    min-width: 80vw;
    min-height: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-card__item {
    flex-direction: row;
  }
}
.concept-card__item .no {
  font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  position: absolute;
  top: 2rem;
  left: 2rem;
  margin-bottom: 1rem;
  color: #395CA9;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.concept-card__item .point__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .concept-card__item .point__content {
    justify-content: center;
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .concept-card__item .point__content {
    text-align: left;
    gap: 2.5rem;
  }
}
.concept-card__item .point__content .point-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #395CA9;
}
@media screen and (min-width: 768px) {
  .concept-card__item .point__content .point-title {
    font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  }
}
.concept-card__item .point__content .text {
  font-size: 0.625rem;
  color: #1E2C58;
  line-height: 1.8;
}
@media screen and (min-width: 480px) {
  .concept-card__item .point__content .text {
    font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  }
}
.concept-card__item .point__content .text strong {
  color: rgb(34, 137, 255);
  font-weight: 700;
}
.concept-card__item-numbers {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35px;
  background-image: url("img/scale-img.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  pointer-events: none;
  z-index: 15;
}
@media screen and (min-width: 1024px) {
  .concept-card__item-numbers {
    height: 100%;
    width: 100%;
    background-size: contain;
  }
}
.concept-card__icon {
  margin-bottom: 1.5rem;
}
.concept-card__icon img {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  filter: brightness(0) invert(1);
}
.concept-card__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FCFCFC;
}
.concept-card__description {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ===============================================
# movie
=============================================== */
#movie {
  position: relative;
  overflow: hidden;
}
#movie .section__wrapper {
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 5rem;
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  #movie .section__wrapper {
    padding-top: clamp(4rem, 0.5rem + 11.198vw, 7.5rem);
  }
}
#movie .section__inner {
  max-width: 1100px;
}
#movie.movie-fixed {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
#movie.movie-fixed .section__wrapper {
  padding-bottom: 0;
}
#movie.movie-hidden {
  opacity: 0;
  pointer-events: none;
}

#movie-video {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0);
  transform-origin: center center;
}
#movie-video video {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  #movie-video video {
    width: calc(50% - 0.75rem);
  }
}

/* ===============================================
# reason
=============================================== */
.reason .section__wrapper {
  padding-left: 4%;
  padding-right: 4%;
}
.reason .section-title {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}
.reason .section-title__main {
  text-align: left;
}
.reason .section-title__sub {
  text-align: left;
}
.reason .text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: left;
  color: #1E2C58;
}
.reason__item {
  display: flex;
  flex-direction: column;
  gap: 3rem 5rem;
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .reason__item {
    flex-direction: row;
  }
}
.reason__item-l {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .reason__item-l {
    width: 400px;
  }
}
.reason__item-r {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .reason__item-r {
    flex: 1;
    width: auto;
    gap: 2.5rem;
  }
}
.reason__stats {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #F3F5FB;
  background-color: #FEFEFE;
  border: 1.5px solid #d5d9e9;
}
@media screen and (min-width: 480px) {
  .reason__stats {
    padding: 2.5rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .reason__stats {
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
  }
}
.reason__stats .stats-title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  font-weight: 500;
  color: #1E2C58;
  gap: 0.2rem;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .reason__stats .stats-title {
    text-align: left;
    margin-bottom: 0.5rem;
  }
}
.reason__stats-note {
  font-size: 0.8em;
  color: #1E2C58;
  margin-left: 0.25rem;
}
.reason__stats-subtitle {
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  margin-top: 0.2rem;
}
.reason__stats-number {
  font-size: clamp(1.125rem, 0.75rem + 1.2vw, 1.5rem);
  font-weight: 600;
  color: #1E2C58;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
}
@media screen and (min-width: 480px) {
  .reason__stats-number {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .reason__stats-number {
    justify-content: center;
  }
}
.reason__stats-value {
  font-size: 1.5em;
  color: #395CA9;
  font-weight: 700;
}
.reason .top-view__btn {
  margin-top: 2.5rem;
}

/* ===============================================
# flow
=============================================== */
.flow .section__wrapper {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4%;
}
.flow .text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: left;
  color: #1E2C58;
  font-size: 500;
}
.flow .section-title {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}
.flow .section-title__main {
  text-align: left;
}
.flow .section-title__sub {
  text-align: left;
}
.flow__item {
  display: flex;
  flex-direction: column;
  gap: 3rem 5rem;
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .flow__item {
    flex-direction: row;
  }
}
.flow__item-l {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .flow__item-l {
    width: 400px;
  }
}
.flow__item-r {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .flow__item-r {
    flex: 1;
    width: auto;
    gap: 2.5rem;
  }
}
.flow__step {
  background: #FEFEFE;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}
.flow__step-number {
  background: linear-gradient(135deg, #2F479B, rgb(80.7654867257, 116.8495575221, 196.2345132743));
  color: #FCFCFC;
  width: 4rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  text-align: center;
  gap: 0.1rem;
  font-weight: 500;
  padding-bottom: 0.1rem;
}
@media screen and (min-width: 480px) {
  .flow__step-number {
    width: 5rem;
  }
}
.flow__step-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 2rem;
}
.flow__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #395CA9;
}
.flow__step-icon svg {
  width: 3rem;
  height: 3rem;
}
@media screen and (min-width: 480px) {
  .flow__step-icon svg {
    width: 5rem;
    height: 5rem;
  }
}
.flow__step-icon svg .st0 {
  fill: #b0c0e3;
}
.flow__step-text {
  flex: 1;
}
.flow__step-title {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  font-weight: 600;
  color: #395CA9;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.flow__step-description {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ===============================================
# faq
=============================================== */
.faq .section__wrapper {
  padding-left: 4%;
  padding-right: 4%;
}
.faq .faq__inner {
  max-width: 1000px;
  margin: clamp(2.5rem, 1rem + 4.8vw, 4rem) auto 0;
}
.faq .faq__item {
  border-bottom: 1px solid #d5d9e9;
}
.faq .faq__question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E2C58;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}
@media screen and (min-width: 480px) {
  .faq .faq__question {
    font-size: clamp(1rem, 0.875rem + 0.4vw, 1.125rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .faq .faq__question:hover {
    color: #395CA9;
  }
}
.faq .faq__question.is-open {
  color: #395CA9;
}
.faq .faq__question.is-open .faq__toggle-icon::before {
  transform: translate(-50%, -50%);
}
.faq .faq__question.is-open .faq__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq .faq__toggle-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.faq .faq__toggle-icon::before, .faq .faq__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transition: all 0.3s ease;
}
.faq .faq__toggle-icon::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq .faq__toggle-icon::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.faq .faq__answer {
  display: none;
  padding: 0 0 1.5rem 0;
}
.faq .faq__answer p {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
  margin: 0;
}

/* ===============================================
# news
=============================================== */
.news .section__wrapper {
  padding: clamp(4rem, 0.5rem + 11.198vw, 7.5rem) 4% 0;
}
.news .section__inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem 5rem;
}
@media screen and (max-width: 1023px) {
  .news .section__inner {
    flex-direction: column;
  }
}
.news .news__item-l {
  flex: 1;
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .news .news__item-l {
    max-width: none;
  }
}
.news .news__item-l .text {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.news .news__item-l .section-title {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}
.news .news__item-l .section-title__main {
  text-align: left;
}
.news .news__item-l .section-title__sub {
  text-align: left;
}
.news .news__item-l .top-view__btn {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .news .news__item-l .top-view__btn {
    display: flex;
    justify-content: center;
  }
}
.news .news__item-r {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news .news__item-r {
    flex: 1;
  }
}
.news .news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news .news__list-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #d5d9e9;
}
@media screen and (min-width: 768px) {
  .news .news__list-item {
    gap: 0.5rem;
  }
}
.news .news__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .news .news__meta {
    gap: 0.5rem;
  }
}
.news .news__date {
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
  color: #C3C1C1;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
  width: 50px;
}
@media screen and (min-width: 768px) {
  .news .news__date {
    width: 80px;
    font-size: 0.75rem;
  }
}
.news .news__category {
  font-size: 0.75rem;
  color: #FCFCFC;
  padding: 0.3rem 1rem;
  border-radius: 2.5rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .news .news__category {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
  }
}
.news .news__category--update {
  background-color: #2F479B;
}
.news .news__category--info {
  background-color: #2F479B;
}
.news .news__category--event {
  background-color: #2F479B;
}
.news .news__title {
  margin: 0;
  padding-left: 0;
}
.news .news__link {
  color: #1E2C58;
  text-decoration: none;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.news .news__link:hover {
  color: #395CA9;
}

/* ===============================================
# policy
=============================================== */
.policy .section__wrapper {
  padding-top: clamp(7.5rem, 5rem + 8vw, 10rem);
  padding-left: 4%;
  padding-right: 4%;
}
.policy .page-main-content {
  margin-top: 0;
  border-radius: 0;
}
.policy .section__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.policy .cp {
  margin-bottom: clamp(2.5rem, 1.5rem + 3.2vw, 3.5rem);
}
.policy__header {
  text-align: center;
  margin-bottom: clamp(3rem, 2rem + 3.2vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 2px solid #dae3f2;
}
.policy__title {
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
  color: #1E2C58;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.policy__inner {
  line-height: 1.8;
}
.policy__item {
  margin-bottom: clamp(2rem, 1rem + 3.2vw, 3rem);
  padding-bottom: clamp(1.5rem, 1rem + 1.6vw, 2rem);
}
.policy__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.policy__item h2, .policy__item h3 {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  color: #1E2C58;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #395CA9;
  line-height: 1.4;
}
.policy__item p {
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
  margin: 0;
}
.policy__item p:not(:last-child) {
  margin-bottom: 1rem;
}
.policy__item ul, .policy__item ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  list-style: none;
}
.policy__item li {
  position: relative;
  margin-bottom: 0.5rem;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  color: #1E2C58;
  line-height: 1.8;
}
.policy__item li::before {
  content: "・";
  position: absolute;
  left: -1rem;
  color: #395CA9;
  font-weight: 600;
}
.policy__item li:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */