@charset "UTF-8";
:root {
  --commonHeight: 100vh;
}

html {
  scroll-behavior: auto;
  font-size: min(1.3333333333vw, 16px);
}
@media (max-width: 768px) {
  html {
    font-size: min(3.7209302326vw, 16px);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #24243C;
  background-color: #fdfdfd;
  line-height: 2;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
}

.box {
  width: min(96.6666666667vw, 1160px);
  margin: 0 auto;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .box {
    width: min(86.0465116279vw, 370px);
  }
}

a,
.swiper-pagination,
.swiper-button-prev,
.swiper-button-next,
.st-GlobalHeader_Buttons button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
}

.st-GlobalHeader_Buttons button {
  -webkit-tap-highlight-color: transparent;
}

a:active {
  opacity: 0.5;
}

.st-GlobalHeader_Buttons:active {
  opacity: 0.7;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
}

.grid {
  display: grid;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
.btn {
  width: min(25vw, 300px);
  height: min(5vw, 60px);
  font-size: min(1.6666666667vw, 20px);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .btn {
    width: min(43.023255814vw, 185px);
    height: min(13.9534883721vw, 60px);
    font-size: min(3.7209302326vw, 16px);
  }
}
.btn.download {
  background-color: #D9E021;
  color: #24243C;
}
.btn.contact {
  background-color: #24243C;
  color: #fdfdfd;
}
.btn.download_white {
  background-color: #fdfdfd;
  color: #24243C;
}

.heading {
  display: inline-block;
}
.heading h2 {
  font-size: min(3.3333333333vw, 40px);
  font-weight: bold;
  border-left: 2px solid #25BFE3;
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: min(2.5vw, 30px);
}
@media (max-width: 768px) {
  .heading h2 {
    font-size: min(6.976744186vw, 30px);
    padding-left: min(4.6511627907vw, 20px);
    line-height: 1.5;
  }
}
.heading h2 span {
  font-size: min(1.5vw, 18px);
  font-weight: 700;
  margin-top: min(1.6666666667vw, 20px);
  letter-spacing: 0.1em;
  color: #24243C;
}
@media (max-width: 768px) {
  .heading h2 span {
    font-size: min(3.7209302326vw, 16px);
    margin-top: min(1.1627906977vw, 5px);
  }
}
.heading.effect {
  position: relative;
}
.heading.effect::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  background-color: #25BFE3;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.heading.effect.is-visible .mask {
  opacity: 1;
  transition-delay: 0.4s;
}
.heading.effect.is-visible::before {
  animation: 0.6s both scroll-effect-before 0s cubic-bezier(0.36, 0, 1, 0.29);
}
.heading.effect .mask {
  opacity: 0;
}

.fadein {
  -webkit-transform: translateY(8%);
  transform: translateY(8%);
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.17, 0.84, 0.45, 0.99);
  will-change: transition;
}
.fadein.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.roboto-cond {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #25BFE3;
  text-decoration: none;
}

#plans, #spec {
  scroll-margin-top: 80px;
}

#about {
  scroll-margin-top: -60px;
}

.note {
  font-size: min(1vw, 12px);
  line-height: 1.5;
  text-indent: max(-1vw, -12px);
}
@media (max-width: 768px) {
  .note {
    font-size: min(2.7906976744vw, 12px);
    text-indent: max(-2.7906976744vw, -12px);
  }
}

@keyframes scroll-effect-mask {
  0% {
    opacity: 1;
    clip-path: inset(0% 100% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes scroll-effect-before {
  0% {
    opacity: 1;
    clip-path: inset(0% 100% 0% 0%);
  }
  49% {
    clip-path: inset(0% 0% 0% 0%);
  }
  50% {
    clip-path: inset(0% 0% 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 100%);
  }
}
@keyframes endLoadingLogoAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes venn1stCircleAnimation {
  0% {
    opacity: 0;
    top: -100px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes venn2ndCircleAnimation {
  0% {
    opacity: 0;
    left: -100px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes venn3rdCircleAnimation {
  0% {
    opacity: 0;
    right: -100px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawCircleReverse {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes toRight {
  0% {
    opacity: 1;
    right: 0%;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    right: 0%;
  }
}
@keyframes toLeft {
  0% {
    opacity: 1;
    left: 0%;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    left: 0%;
  }
}
@keyframes toLeftSp02 {
  0% {
    opacity: 1;
    left: 0%;
    top: 82%;
  }
  100% {
    opacity: 1;
    left: 0%;
    top: 82%;
  }
}
@keyframes toLeftSp03 {
  0% {
    opacity: 1;
    left: -7%;
    top: 5%;
    transform: rotate(270deg);
  }
  100% {
    opacity: 1;
    left: -7%;
    top: 5%;
    transform: rotate(270deg);
  }
}
.st-Logo {
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
  width: auto;
}

.st-Logo_Main {
  width: 159px;
  min-width: 159px;
  margin: 0 50px 0 0;
}

.st-GlobalHeader_StatementImage.st-GlobalHeader_StatementImage {
  width: 190px;
  height: auto;
}

.st-GlobalHeader {
  position: relative;
  border-bottom: 2px solid #e6e6e6;
  border-bottom: 0px solid #e6e6e6;
}

.st-GlobalHeader_link a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.st-GlobalHeader_link a::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: #df0523 1px solid;
  border-left: #df0523 1px solid;
  transform: rotate(135deg);
  margin: -1px 0 0 60px;
  transition: all 0.2s ease;
  top: calc(50% - 4px);
  left: -78px;
}

.st-GlobalHeader_link a:hover {
  color: #df0523;
}

.st-Logo_Main img {
  width: 159px;
  height: 34px;
}

.st-GlobalHeader, .st-GlobalFooter {
  background-color: #fff;
}

.st-GlobalHeader_Inner {
  max-width: 1200px;
  margin: auto;
}

/*----------------
	st-GlobalNav
-----------------*/
.st-GlobalNav_Area {
  padding-bottom: 0;
  top: 64px;
}

.st-GlobalNav-categoryFirst .st-GlobalNav_Area {
  background-color: #fdfdfd;
}

.st-GlobalSiteNav_Item {
  position: relative;
}

.st-GlobalSiteNav_Item a {
  animation: nav_animation 1s both 0.5s;
}

.st-GlobalSiteNav_Item:nth-of-type(1)::before {
  content: "";
  display: inline-block;
  background-color: #24243C;
  width: 100%;
  animation: nav_animation 1s both 0.5s;
}

.st-GlobalSiteNav_Item::after {
  content: "";
  display: inline-block;
  background-color: #24243C;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: nav_animation 1s both 0.5s;
}

.st-GlobalSiteNav_Item:nth-of-type(6):after,
.st-GlobalSiteNav_Item:nth-of-type(7):after {
  content: none;
}

@media (min-resolution: 2dppx) {
  .st-GlobalSiteNav_Item:nth-of-type(1)::before,
  .st-GlobalSiteNav_Item::after {
    height: 2px;
    transform: scaleY(0.5);
  }
  .st-GlobalSiteNav_Item.download::after {
    display: none;
  }
}
@media (min-resolution: 3dppx) {
  .st-GlobalSiteNav_Item:nth-of-type(1)::before,
  .st-GlobalSiteNav_Item::after {
    height: 3px;
    transform: scaleY(0.333333);
  }
  .st-GlobalSiteNav_Item.download::after {
    display: none;
  }
}
@keyframes nav_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.st-GlobalSiteNav_Link {
  border-bottom: none;
  background-color: #fdfdfd;
  color: #25BFE3;
}

#st-GlobalNav {
  position: fixed;
  left: 23px;
  bottom: 75vh;
  z-index: 110;
  background: transparent;
  width: auto;
  mix-blend-mode: difference;
}

#st-GlobalNav a {
  color: #fff;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List {
  display: flex;
  flex-flow: column;
  text-align: left;
  justify-content: space-between;
  height: 75vh;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0;
  position: relative;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a:hover {
  opacity: 0.6;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a .mark {
  font-size: 1.25rem;
  position: absolute;
  left: -33px;
  top: 9px;
  color: transparent;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a:hover .mark {
  color: #e7803b;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active .mark {
  color: #e7803b;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active {
  color: #e7803b;
}

#st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a .jp {
  font-size: 0.875rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .st-GlobalHeader_Logo {
    width: 100%;
    padding: 0px 20px;
    float: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    height: 60px;
  }
}
@media print, screen and (max-width: 1440px) {
  #st-GlobalNav {
    bottom: 72vh;
    left: 16px;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List {
    height: calc(100svh - 64px);
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a {
    font-size: 0.9rem;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a .mark {
    left: -26px;
    top: 5px;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a .jp {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
@media print, screen and (max-width: 768px) {
  .st-Logo_Main img {
    width: 118px;
    height: 40px;
  }
  .st-GlobalHeader {
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  #st-GlobalNav {
    mix-blend-mode: normal;
  }
  #st-GlobalNav .st-GlobalSiteNav {
    background-color: #fdfdfd;
    display: flex;
    justify-content: center;
  }
  #st-GlobalNav a {
    color: #24243C;
  }
  #st-GlobalNav .st-GlobalSiteNav_Item.download .st-GlobalSiteNav_Link {
    background-color: #D9E021;
  }
  #st-GlobalNav .st-GlobalSiteNav_Item.contact .st-GlobalSiteNav_Link {
    background-color: #24243C;
    color: #fdfdfd;
  }
  #st-GlobalNav .st-GlobalSiteNav_Item.download .st-GlobalSiteNav_Link:active,
  #st-GlobalNav .st-GlobalSiteNav_Item.contact .st-GlobalSiteNav_Link:active {
    opacity: 1;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List {
    margin-top: 30px;
    width: 90%;
    display: flex;
    justify-content: flex-start;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a {
    font-size: 3.5vw;
    font-weight: 500;
    padding: 4vw 0vw;
    transition: 0.3s;
    position: relative;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a.current {
    pointer-events: none;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a.current::before {
    content: "";
    background-color: #D9E021;
    width: 2vw;
    height: calc(100% - 6vw);
    position: absolute;
    top: 3vw;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a:hover {
    opacity: 0.6 !important;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a:hover .mark {
    opacity: 0.6;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active {
    opacity: 0.6;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a .jp {
    font-size: 3vw;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .download a,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .contact a {
    text-align: center;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .download a::before,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .contact a::before {
    content: none;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a .pc_only {
    display: none;
  }
  /* ハンバーガー閉じる */
  #st-GlobalNav .st-GlobalNav_Area.close {
    height: 0 !important;
    transition: all 0.5s;
  }
  #st-GlobalNav .close {
    padding-bottom: 0;
  }
}
@media print, screen and (max-width: 768px) {
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a {
    font-size: min(2.6666666667vw, 32px);
    font-weight: bold;
    text-align: left;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a .jp {
    font-size: min(4vw, 48px);
    font-weight: bold;
    margin: 0 7vw;
  }
  .st-GlobalHeader_Buttons {
    width: 64px;
    height: 64px;
    background: -moz-linear-gradient(top, rgb(60, 60, 60) 0%, rgb(1, 1, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgb(60, 60, 60) 0%, rgb(1, 1, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgb(60, 60, 60) 0%, rgb(1, 1, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3c3c3c', endColorstr='#010101', GradientType=0);
    /* IE6-9 */
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .st-ToggleButton_Icon:before {
    color: #FFF;
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List {
    margin-top: min(6.976744186vw, 30px);
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .download a {
    margin-top: min(6.976744186vw, 30px);
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .contact a {
    margin-top: min(4.6511627907vw, 20px);
  }
}

#top {
  background-color: #25BFE3;
  color: #fdfdfd;
  padding: min(5vw, 60px) 0 min(13.0833333333vw, 157px);
  overflow-x: hidden;
}
@media (max-width: 768px) {
  #top {
    padding: min(14.8837209302vw, 64px) 0 min(25.5813953488vw, 110px);
  }
}
#top .flex.box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: min(0.8333333333vw, 10px);
  position: relative;
}
@media (max-width: 768px) {
  #top .flex.box {
    margin-top: min(7.4418604651vw, 32px);
    justify-content: center;
  }
}
#top .flex.box .mv_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: min(2.9166666667vw, 35px);
}
@media (max-width: 768px) {
  #top .flex.box .mv_content {
    text-align: center;
    flex-direction: column;
    gap: 0;
  }
}
#top .flex.box .mv_content .logo_vimeo img {
  width: min(8.75vw, 105px);
}
@media (max-width: 768px) {
  #top .flex.box .mv_content .logo_vimeo img {
    width: min(24.4186046512vw, 105px);
    margin: min(4.6511627907vw, 20px) 0 0 0;
  }
}
#top .flex.box .mv_content .heading {
  display: flex;
  padding-right: min(3.3333333333vw, 40px);
}
@media (max-width: 768px) {
  #top .flex.box .mv_content .heading {
    padding-right: 0;
    margin: min(4.6511627907vw, 20px) auto 0;
  }
}
#top .flex.box .mv_content .heading.effect::before {
  content: none;
}
#top .flex.box .mv_content .heading .mask {
  display: flex;
  align-items: center;
}
#top .flex.box .mv_content .heading .mask h2 {
  margin-top: min(0.8333333333vw, 10px);
  padding-left: 0;
  border: none;
  font-size: min(4.1666666667vw, 50px);
  font-weight: 700;
}
@media (max-width: 768px) {
  #top .flex.box .mv_content .heading .mask h2 {
    margin-top: 0;
    font-size: min(6.976744186vw, 30px);
  }
}
#top .flex.box .mv_content .heading .mask h2 span {
  font-size: min(1.5vw, 14px);
  font-weight: 800;
  margin-top: min(1.25vw, 15px);
}
@media (max-width: 768px) {
  #top .flex.box .mv_content .heading .mask h2 span {
    font-size: min(3.7209302326vw, 16px);
    margin-top: min(1.1627906977vw, 5px);
  }
}
#top .flex.box .mv_content .sub {
  display: flex;
  align-items: center;
  width: 49%;
  padding-right: min(1.6666666667vw, 20px);
}
@media (max-width: 768px) {
  #top .flex.box .mv_content .sub {
    width: 100%;
    padding-right: 0;
    text-align: start;
    margin-top: min(8.1395348837vw, 35px);
    font-weight: bold;
  }
}

#anchor {
  margin-top: max(-7.5vw, -90px);
}
@media (max-width: 768px) {
  #anchor {
    margin-top: max(-13.9534883721vw, -60px);
  }
}
#anchor .anchor_content {
  display: flex;
  width: 100%;
  height: min(15vw, 180px);
  background-color: #EAF8FB;
}
@media (max-width: 768px) {
  #anchor .anchor_content {
    flex-direction: column;
    height: min(84.1860465116vw, 362px);
  }
}
#anchor .anchor_content .item {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: bold;
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  #anchor .anchor_content .item {
    text-align: start;
    flex-wrap: nowrap;
    width: 100%;
    height: 33.3333333333%;
    align-items: center;
  }
}
#anchor .anchor_content .item:nth-of-type(2)::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  top: min(0.8333333333vw, 10px);
  left: 0;
  bottom: min(0.8333333333vw, 10px);
  background-color: #24243C;
  opacity: 0.3;
}
@media (max-width: 768px) {
  #anchor .anchor_content .item:nth-of-type(2)::before {
    width: min(76.7441860465vw, 330px);
    height: 1px;
    top: 0px;
    left: min(4.6511627907vw, 20px);
  }
}
#anchor .anchor_content .item:nth-of-type(2)::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  top: min(0.8333333333vw, 10px);
  right: 0;
  bottom: min(0.8333333333vw, 10px);
  background-color: #24243C;
  opacity: 0.3;
}
@media (max-width: 768px) {
  #anchor .anchor_content .item:nth-of-type(2)::after {
    width: min(76.7441860465vw, 330px);
    height: 1px;
    top: unset;
    left: min(4.6511627907vw, 20px);
    bottom: 0px;
  }
}
#anchor .anchor_content .item h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: min(3.6666666667vw, 44px);
  height: 50%;
  padding-top: min(0.8333333333vw, 10px);
}
@media (max-width: 768px) {
  #anchor .anchor_content .item h2 {
    font-size: min(11.1627906977vw, 48px);
    padding-top: 0;
    height: auto;
    margin-left: min(4.6511627907vw, 20px);
  }
}
#anchor .anchor_content .item p {
  font-size: min(1.6666666667vw, 20px);
  width: 100%;
  height: 50%;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #anchor .anchor_content .item p {
    font-size: min(4.1860465116vw, 18px);
    height: auto;
    margin-left: min(6.0465116279vw, 26px);
    line-height: 1.5;
  }
}
#anchor .anchor_link {
  width: 94%;
  text-align: center;
  margin: min(2.5vw, 30px) auto 0;
  justify-content: space-around;
}
@media (max-width: 768px) {
  #anchor .anchor_link {
    margin: min(10.4651162791vw, 45px) auto 0;
    justify-content: flex-start;
  }
}
#anchor .anchor_link a {
  position: relative;
  font-size: min(1.1666666667vw, 14px);
  color: #24243C;
  font-weight: bold;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  #anchor .anchor_link a:nth-of-type(odd) {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #anchor .anchor_link a:nth-of-type(even) {
    width: 40%;
  }
}
@media (max-width: 768px) {
  #anchor .anchor_link a {
    width: 50%;
    font-size: min(3.2558139535vw, 14px);
    margin-bottom: min(5.3488372093vw, 23px);
    text-align: start;
    padding-left: min(6.976744186vw, 30px);
  }
}
#anchor .anchor_link a:hover {
  opacity: 0.8;
}
#anchor .anchor_link a::before {
  left: 0;
  position: absolute;
  content: "";
  display: block;
  width: min(1vw, 12px);
  height: min(1vw, 12px);
  border-bottom: 2px solid #25BFE3;
  border-right: 2px solid #25BFE3;
  transform: translate(max(-2.5vw, -30px), 50%) rotate(45deg);
}
@media (max-width: 768px) {
  #anchor .anchor_link a::before {
    width: min(2.3255813953vw, 10px);
    height: min(2.3255813953vw, 10px);
    top: 50%;
    left: min(3.488372093vw, 15px);
    transform: translate(max(-2.5vw, -30px), -50%) rotate(45deg);
  }
}

#measure {
  background-color: #fdfdfd;
  color: #24243C;
  padding-top: min(8.3333333333vw, 100px);
}
@media (max-width: 768px) {
  #measure {
    padding: min(18.6046511628vw, 80px) min(6.976744186vw, 30px) 0;
  }
}
#measure h2 {
  border-color: #25BFE3;
}
#measure .heading + p {
  font-weight: 700;
  margin-top: min(2.5vw, 30px);
}
@media (max-width: 768px) {
  #measure .heading + p {
    margin-top: min(11.6279069767vw, 50px);
  }
}
#measure .slider {
  display: flex;
  justify-content: center;
  position: relative;
}
#measure .slider .swiper-container {
  padding: min(4.1666666667vw, 50px) 0;
  overflow: clip;
  width: min(90vw, 1080px);
}
@media (max-width: 768px) {
  #measure .slider .swiper-container {
    width: 100vw;
  }
}
#measure .slider .swiper-slide {
  width: min(73.3333333333vw, 880px);
}
@media (max-width: 768px) {
  #measure .slider .swiper-slide {
    width: min(85.5813953488vw, 368px);
  }
}
#measure .slider .swiper-slide .slide_image {
  border: 1px solid #a6a6a6;
}
#measure .slider .swiper-slide .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
#measure .slider .swiper-slide .mask img {
  width: 100%;
}
#measure .slider .swiper-slide.is-visible .mask {
  opacity: 1;
}
#measure .slider .slide_top_text {
  font-weight: bold;
  text-align: center;
  margin-top: min(1.6666666667vw, 20px);
}
@media (max-width: 768px) {
  #measure .slider .slide_top_text {
    margin-top: min(4.6511627907vw, 20px);
  }
}
#measure .slider .slide_top_text .title {
  font-size: min(2vw, 24px);
}
@media (max-width: 768px) {
  #measure .slider .slide_top_text .title {
    font-size: min(4.6511627907vw, 20px);
    line-height: 1.4;
    margin-bottom: min(2.3255813953vw, 10px);
  }
}
#measure .slider .slide_top_text .sub {
  font-size: min(1.3333333333vw, 16px);
}
@media (max-width: 768px) {
  #measure .slider .slide_top_text .sub {
    font-size: min(3.7209302326vw, 16px);
    text-align: start;
  }
}
#measure .slider .swiper-pagination {
  position: relative;
  bottom: 30px;
}
#measure .slider .swiper-pagination .swiper-pagination-bullet {
  width: min(1vw, 12px);
  height: min(1vw, 12px);
  margin: min(1vw, 12px);
}
@media (max-width: 768px) {
  #measure .slider .swiper-pagination .swiper-pagination-bullet {
    width: min(2.7906976744vw, 12px);
    height: min(2.7906976744vw, 12px);
    margin: min(2.7906976744vw, 12px);
  }
}
#measure .slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #25BFE3;
}
#measure .slider .swiper-button-prev,
#measure .slider .swiper-button-next {
  top: 38%;
  color: #25BFE3;
}
@media (max-width: 768px) {
  #measure .slider .swiper-button-prev,
  #measure .slider .swiper-button-next {
    top: 24%;
    width: min(5.5813953488vw, 24px);
  }
}
#measure .slider .swiper-button-prev::after,
#measure .slider .swiper-button-next::after {
  font-size: min(3.3333333333vw, 40px);
}
@media (max-width: 768px) {
  #measure .slider .swiper-button-prev::after,
  #measure .slider .swiper-button-next::after {
    font-size: min(5.5813953488vw, 24px);
  }
}
#measure .slider .swiper-button-next {
  right: min(6.6666666667vw, 80px);
}
@media (max-width: 768px) {
  #measure .slider .swiper-button-next {
    right: max(-5.8139534884vw, -25px);
  }
}
#measure .slider .swiper-button-prev {
  left: min(6.6666666667vw, 80px);
}
@media (max-width: 768px) {
  #measure .slider .swiper-button-prev {
    left: max(-5.8139534884vw, -25px);
  }
}

#system {
  padding-top: min(6.6666666667vw, 80px);
  padding-bottom: min(8.3333333333vw, 100px);
}
@media (max-width: 768px) {
  #system {
    padding-top: min(18.6046511628vw, 80px);
    padding-bottom: min(23.2558139535vw, 100px);
  }
}
#system .heading + p {
  font-weight: 700;
  margin-top: min(4.5833333333vw, 55px);
}
@media (max-width: 768px) {
  #system .heading + p {
    margin-top: min(11.6279069767vw, 50px);
  }
}
#system .illustration {
  margin-top: min(3.75vw, 45px);
  justify-content: space-evenly;
  line-height: 1.5;
  text-align: center;
  position: relative;
  font-weight: 600;
}
@media (max-width: 768px) {
  #system .illustration {
    justify-content: unset;
    margin-top: min(11.6279069767vw, 50px);
    position: relative;
    font-size: min(2.7906976744vw, 12px);
  }
}
#system .illustration .system_illust.system_illust-01 .about_system_image {
  width: min(83.3333333333vw, 1000px);
}
#system .illustration .system_illust.system_illust-01 .system_illust_text {
  position: absolute;
  font-size: min(1.1666666667vw, 14px);
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-01 {
  top: min(10.1666666667vw, 122px);
  left: min(7.5vw, 90px);
  text-align: left;
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-02 {
  top: 0;
  left: min(29.3333333333vw, 352px);
  text-align: right;
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-03 {
  top: min(7.4166666667vw, 89px);
  left: min(44vw, 528px);
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-04 {
  top: min(14.1666666667vw, 170px);
  left: min(42.0833333333vw, 505px);
  text-align: right;
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-05 {
  top: min(22.25vw, 267px);
  left: min(37.25vw, 447px);
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-06 {
  top: min(27.1666666667vw, 326px);
  left: min(43.0833333333vw, 517px);
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-07 {
  top: min(24.1666666667vw, 290px);
  left: min(65.8333333333vw, 790px);
}
#system .illustration .system_illust.system_illust-01 .system_illust_text.system_illust_text-08 {
  top: min(24.1666666667vw, 290px);
  left: min(79.1666666667vw, 950px);
}
#system .illustration .system_illust.system_illust-01 .system_illust-tool {
  width: min(28.0833333333vw, 337px);
}
@media (max-width: 768px) {
  #system .illustration .system_illust.system_illust-01 .system_illust-tool {
    width: min(40.9302325581vw, 176px);
    margin-top: min(16.2790697674vw, 70px);
    margin-left: min(2.3255813953vw, 10px);
  }
}
#system .illustration .note {
  width: 97%;
  text-align: left;
  font-weight: normal;
  margin-top: min(1.3333333333vw, 16px);
}
@media (max-width: 768px) {
  #system .illustration .note {
    width: calc(100% - min(2.7906976744vw, 12px));
    padding-left: min(2.3255813953vw, 10px);
  }
}

.nav {
  font-size: min(1.1666666667vw, 14px);
  position: sticky;
  top: 0;
  z-index: 999;
  will-change: transform;
}
.nav .flex.box {
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  transition: 0.3s;
}
.nav .flex.box a {
  color: #24243C;
  text-align: center;
  padding: min(0.8333333333vw, 10px) 0;
  transition: 0.3s;
}
.nav .flex.box a:hover {
  opacity: 0.8;
}
.nav .flex.box a.download {
  background-color: #D9E021;
  width: min(20vw, 240px);
  font-weight: bold;
}
.nav .flex.box a.contact {
  background-color: #24243C;
  color: #fdfdfd;
  width: min(20vw, 240px);
  font-weight: bold;
  transition: 0.3s;
}
.nav .flex.box .anchor {
  width: calc(100% - min(40vw, 480px));
  justify-content: space-evenly;
}
.nav .flex.box .anchor a {
  position: relative;
  font-weight: 700;
}
.nav .flex.box .anchor a:hover {
  opacity: 0.6;
}
.nav .flex.box .anchor a.current {
  pointer-events: none;
}
.nav .flex.box .anchor a.current::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #D9E021;
  display: block;
  position: absolute;
  bottom: 0;
}
.nav.inversion .flex.box {
  background-color: rgba(37, 37, 61, 0.9);
}
.nav.inversion .flex.box a {
  color: #fdfdfd;
}
.nav.inversion .flex.box .download {
  color: #24243C;
}
.nav.inversion .flex.box .contact {
  background-color: rgba(255, 255, 255, 0.9);
  color: #24243C;
}
.nav.inversion .flex.box .anchor a:not(:first-of-type)::after {
  background-color: rgba(255, 255, 255, 0.3);
}

#feature {
  background-color: #E9E9EB;
  padding: min(10vw, 120px) 0 0;
}
@media (max-width: 768px) {
  #feature {
    padding: min(18.6046511628vw, 80px) 0;
  }
}
#feature .feature_main_title {
  position: sticky;
  top: min(0.8333333333vw, 10px);
  padding-bottom: min(53.0833333333vw, 637px);
}
@media (max-width: 768px) {
  #feature .feature_main_title {
    position: static;
    padding-bottom: min(46.511627907vw, 200px);
  }
}
#feature ol {
  width: 100%;
}
#feature ol .feature_content {
  justify-content: flex-end;
}
#feature ol .feature_content .feature_text {
  width: 100%;
  position: sticky;
  top: min(5vw, 60px);
  height: fit-content;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  #feature ol .feature_content .feature_text {
    width: 100%;
    position: static;
  }
}
#feature ol .feature_content .feature_text .feature_title {
  align-items: center;
  border-bottom: 1px solid #24243C;
  margin-bottom: min(1.6666666667vw, 20px);
}
@media (max-width: 768px) {
  #feature ol .feature_content .feature_text .feature_title {
    flex-direction: column;
    margin-bottom: min(4.6511627907vw, 20px);
    padding-bottom: min(2.3255813953vw, 10px);
  }
}
#feature ol .feature_content .feature_text .feature_title .feature_title-number {
  font-size: min(3.3333333333vw, 40px);
  font-weight: 600;
  margin-right: min(2.5vw, 30px);
}
@media (max-width: 768px) {
  #feature ol .feature_content .feature_text .feature_title .feature_title-number {
    font-size: min(7.9069767442vw, 34px);
  }
}
#feature ol .feature_content .feature_text .feature_title p {
  font-size: min(2vw, 24px);
  font-weight: bold;
}
@media (max-width: 768px) {
  #feature ol .feature_content .feature_text .feature_title p {
    font-size: min(5.5813953488vw, 24px);
  }
}
#feature ol .feature_content .feature_text .feature_title + ul {
  margin-left: min(7.5vw, 90px);
}
@media (max-width: 768px) {
  #feature ol .feature_content .feature_text .feature_title + ul {
    margin-left: min(4.6511627907vw, 20px);
  }
}
#feature ol .feature_content .feature_text .feature_title + ul li {
  font-weight: 700;
  list-style-type: disc;
}
#feature ol .feature_image {
  width: 50%;
  position: relative;
  top: max(-9.3333333333vw, -112px);
}
@media (max-width: 768px) {
  #feature ol .feature_image {
    width: 100%;
    margin-top: min(4.6511627907vw, 20px);
    top: 0;
  }
}
#feature ol .feature_image .feature_image-content {
  position: sticky;
}
@media (max-width: 768px) {
  #feature ol .feature_image .feature_image-content {
    position: relative;
  }
}
#feature ol .feature_image .feature_image-content:not(:first-of-type) {
  margin-top: min(1.6666666667vw, 20px);
}
@media (max-width: 768px) {
  #feature ol .feature_image .feature_image-content:not(:first-of-type) {
    margin-top: min(4.6511627907vw, 20px);
  }
}
#feature ol .feature_image .feature_image-content p {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #24243C;
  color: #fdfdfd;
  padding: min(0.4166666667vw, 5px);
  width: min(10.8333333333vw, 130px);
  align-items: center;
  justify-content: center;
  font-size: min(1.1666666667vw, 14px);
  font-weight: bold;
}
@media (max-width: 768px) {
  #feature ol .feature_image .feature_image-content p {
    font-size: min(2.7906976744vw, 12px);
    padding: 0 min(1.1627906977vw, 5px);
    width: min(23.2558139535vw, 100px);
  }
}

#feature ol .feature_content.flex {
  position: sticky;
  padding-bottom: min(37.5vw, 450px);
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex {
    position: static;
  }
}
#feature ol .feature_content.flex:nth-of-type(1) {
  top: max(-56.75vw, -681px);
  z-index: 1;
  padding-bottom: min(35.5vw, 426px);
  margin-top: max(-49.1666666667vw, -590px);
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(1) {
    padding-bottom: 0;
    margin-top: max(-41.8604651163vw, -180px);
  }
}
#feature ol .feature_content.flex:nth-of-type(1) .feature_text {
  top: min(5.8333333333vw, 70px);
  z-index: 1;
}
#feature ol .feature_content.flex:nth-of-type(1) .feature_image {
  margin-bottom: max(-29.1666666667vw, -350px);
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(1) .feature_image {
    top: 0;
    margin-bottom: 0;
  }
}
#feature ol .feature_content.flex:nth-of-type(1) .feature_image .feature_image-content {
  top: min(15.5833333333vw, 187px);
  z-index: 2;
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(1) .feature_image .feature_image-content {
    top: 0;
  }
}
#feature ol .feature_content.flex:nth-of-type(1) .feature_image .feature_image-content:nth-of-type(2) {
  z-index: 3;
}
#feature ol .feature_content.flex:nth-of-type(1) .feature_image .feature_image-content:nth-of-type(3) {
  z-index: 4;
}
#feature ol .feature_content.flex:nth-of-type(1) .feature_image .feature_image-content:nth-of-type(4) {
  z-index: 5;
}
#feature ol .feature_content.flex:nth-of-type(1) .feature_image .feature_image-content:nth-of-type(5) {
  z-index: 6;
}
#feature ol .feature_content.flex:nth-of-type(2) {
  top: min(13.3333333333vw, 160px);
  z-index: 2;
  background-color: #E9E9EB;
  padding-bottom: min(30.6666666667vw, 368px);
  margin-top: max(-8.3333333333vw, -100px);
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(2) {
    padding-bottom: 0;
    margin-top: min(11.6279069767vw, 50px);
  }
}
#feature ol .feature_content.flex:nth-of-type(2) .feature_text {
  top: min(13.3333333333vw, 160px) !important;
  z-index: 20;
}
#feature ol .feature_content.flex:nth-of-type(2) .feature_image {
  top: max(-6.6666666667vw, -80px);
  margin-bottom: max(-15vw, -180px);
  position: static;
  margin-top: max(-6.6666666667vw, -80px);
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(2) .feature_image {
    top: 0;
    margin-top: min(4.6511627907vw, 20px);
    margin-bottom: 0;
  }
}
#feature ol .feature_content.flex:nth-of-type(2) .feature_image .feature_image-content {
  z-index: 21;
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(2) .feature_image .feature_image-content {
    top: 0;
  }
}
#feature ol .feature_content.flex:nth-of-type(2) .feature_image .feature_image-content:nth-of-type(2) {
  z-index: 22;
}
#feature ol .feature_content.flex:nth-of-type(2) .feature_image .feature_image-content:nth-of-type(3) {
  z-index: 23;
}
#feature ol .feature_content.flex:nth-of-type(2) .feature_image .feature_image-content:nth-of-type(4) {
  z-index: 24;
}
#feature ol .feature_content.flex:nth-of-type(2) .feature_image .feature_image-content:nth-of-type(5) {
  z-index: 25;
}
#feature ol .feature_content.flex:nth-of-type(3) {
  top: max(-38.3333333333vw, -460px);
  z-index: 3;
  background-color: #E9E9EB;
  padding-bottom: min(20.8333333333vw, 250px);
  margin-top: max(-14.1666666667vw, -170px);
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(3) {
    margin-top: min(11.6279069767vw, 50px);
    padding-bottom: min(6.976744186vw, 30px);
  }
}
#feature ol .feature_content.flex:nth-of-type(3) .feature_text {
  top: min(20.8333333333vw, 250px) !important;
  z-index: 30;
}
#feature ol .feature_content.flex:nth-of-type(3) .feature_image {
  top: max(-9.3333333333vw, -112px);
  margin-bottom: max(-16.6666666667vw, -200px);
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(3) .feature_image {
    top: 0;
    margin-bottom: 0;
  }
}
#feature ol .feature_content.flex:nth-of-type(3) .feature_image .feature_image-content {
  top: min(30.5vw, 366px);
  z-index: 31;
}
@media (max-width: 768px) {
  #feature ol .feature_content.flex:nth-of-type(3) .feature_image .feature_image-content {
    top: 0;
  }
}
#feature ol .feature_content.flex:nth-of-type(3) .feature_image .feature_image-content:nth-of-type(2) {
  z-index: 32;
}
#feature ol .feature_content.flex:nth-of-type(3) .feature_image .feature_image-content:nth-of-type(3) {
  z-index: 33;
}
#feature ol .feature_content.flex:nth-of-type(3) .feature_image .feature_image-content:nth-of-type(4) {
  z-index: 34;
}

#options {
  padding-top: min(8.3333333333vw, 100px);
}
@media (max-width: 768px) {
  #options {
    padding-top: min(23.2558139535vw, 100px);
  }
}
#options .options_content {
  display: flex;
  align-items: center;
  width: min(96.6666666667vw, 1160px);
  height: min(21.6666666667vw, 260px);
  margin-top: min(3.3333333333vw, 40px);
}
@media (max-width: 768px) {
  #options .options_content {
    flex-direction: column;
    width: min(86.0465116279vw, 370px);
    height: min(108.6046511628vw, 467px);
    margin-top: min(9.3023255814vw, 40px);
  }
}
#options .options_content .buy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: min(58.3333333333vw, 700px);
  height: min(21.6666666667vw, 260px);
  background-color: #24243C;
  color: #ffffff;
  padding-left: min(5vw, 60px);
}
@media (max-width: 768px) {
  #options .options_content .buy {
    width: min(86.0465116279vw, 370px);
    height: min(60.4651162791vw, 260px);
    padding: min(8.1395348837vw, 35px) min(9.3023255814vw, 40px);
    justify-content: space-between;
  }
}
#options .options_content .buy h3 {
  font-size: min(2.3333333333vw, 28px);
  font-weight: 600;
}
@media (max-width: 768px) {
  #options .options_content .buy h3 {
    font-size: min(5.5813953488vw, 24px);
  }
}
#options .options_content .buy a {
  font-size: min(1.1666666667vw, 14px);
  font-weight: 600;
  color: #D9E021;
  padding-top: min(1.1666666667vw, 14px);
  padding-left: min(0.1666666667vw, 2px);
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  #options .options_content .buy a {
    font-size: min(3.2558139535vw, 14px);
  }
}
#options .options_content .buy a:hover {
  opacity: 0.8;
}
#options .options_content .contact {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: min(1vw, 12px);
  width: min(38.3333333333vw, 460px);
  height: min(21.6666666667vw, 260px);
  background-color: #D9D9D9;
}
@media (max-width: 768px) {
  #options .options_content .contact {
    width: min(86.0465116279vw, 370px);
    height: min(48.1395348837vw, 207px);
    justify-content: space-between;
    text-align: left;
    padding: min(8.1395348837vw, 35px) min(9.3023255814vw, 40px);
  }
}
#options .options_content .contact p {
  font-weight: bold;
}
#options .options_content .contact_button {
  width: min(25vw, 300px);
  height: min(5vw, 60px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  #options .options_content .contact_button {
    width: min(67.4418604651vw, 290px);
    height: min(13.9534883721vw, 60px);
  }
}
#options .options_content .contact_button .btn {
  background-color: #24243C;
  color: #fff;
}
@media (max-width: 768px) {
  #options .options_content .contact_button .btn {
    width: min(67.4418604651vw, 290px);
    height: min(13.9534883721vw, 60px);
    font-size: min(4.6511627907vw, 20px);
  }
}

#spec {
  margin-top: min(8.3333333333vw, 100px);
}
@media (max-width: 768px) {
  #spec {
    margin-top: min(22.0930232558vw, 95px);
  }
}
#spec .spec_content {
  margin-top: min(1.6666666667vw, 20px);
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  #spec .spec_content {
    justify-content: center;
  }
}
#spec .spec_content.app {
  margin-top: min(4.1666666667vw, 50px);
}
@media (max-width: 768px) {
  #spec .spec_content.app {
    margin-top: min(11.6279069767vw, 50px);
  }
}
#spec .spec_content img {
  width: min(37vw, 444px);
}
@media (max-width: 768px) {
  #spec .spec_content img {
    width: min(82.5581395349vw, 355px);
    margin: 0 auto max(-9.3023255814vw, -40px);
  }
}
#spec .spec_content img.img_pc {
  width: min(25vw, 300px);
  margin: 0 min(6vw, 72px);
}
@media (max-width: 768px) {
  #spec .spec_content img.img_pc {
    width: min(34.8837209302vw, 150px);
  }
}
#spec .spec_content dl {
  font-weight: 700;
  margin-left: min(6.6666666667vw, 80px);
  width: min(45vw, 540px);
}
@media (max-width: 768px) {
  #spec .spec_content dl {
    margin-top: min(4.6511627907vw, 20px);
    margin-left: min(0vw, 0px);
    width: 100%;
  }
}
#spec .spec_content dl dt {
  font-size: min(1.6666666667vw, 20px);
  font-weight: bold;
  margin-bottom: min(1.6666666667vw, 20px);
}
@media (max-width: 768px) {
  #spec .spec_content dl dt {
    font-size: min(4.6511627907vw, 20px);
    margin-bottom: min(2.3255813953vw, 10px);
    text-align: center;
  }
}
#spec .spec_content dl dd {
  font-size: min(1.3333333333vw, 16px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: min(1.25vw, 15px) 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #spec .spec_content dl dd {
    font-size: min(3.2558139535vw, 14px);
    gap: min(4.6511627907vw, 20px);
    padding: min(2.3255813953vw, 10px) 0;
    line-height: 1.8;
  }
}
#spec .spec_content dl dd p {
  font-weight: 500;
}
@media (max-width: 768px) {
  #spec .spec_content dl dd p {
    display: flex;
    align-items: center;
  }
}
#spec .spec_content dl dd .spec_heading {
  font-weight: 400;
}
#spec .spec_content dl dd:not(:first-of-type) {
  border-top: 1px solid #D9D9D9;
}
#spec .spec_content dl .annotation {
  font-size: min(1.1666666667vw, 14px);
  margin-top: min(1.6666666667vw, 20px);
  font-weight: 400;
}
@media (max-width: 768px) {
  #spec .spec_content dl .annotation {
    font-size: min(3.023255814vw, 13px);
    margin-top: min(3.488372093vw, 15px);
  }
}
#spec .key_features {
  margin-top: min(5.8333333333vw, 70px);
}
@media (max-width: 768px) {
  #spec .key_features {
    margin-top: min(11.6279069767vw, 50px);
  }
}
#spec .key_features h3 {
  font-size: min(2.3333333333vw, 28px);
  font-weight: bold;
  margin-bottom: min(5vw, 60px);
}
@media (max-width: 768px) {
  #spec .key_features h3 {
    font-size: min(5.5813953488vw, 24px);
  }
}
#spec .key_features .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: min(4.1666666667vw, 50px) min(3.3333333333vw, 40px);
}
#spec .key_features .wrap .item {
  width: min(46.6666666667vw, 560px);
}
@media (max-width: 768px) {
  #spec .key_features .wrap .item {
    width: 100%;
  }
}
#spec .key_features .wrap .item img {
  width: min(46.6666666667vw, 560px);
  height: min(25.8333333333vw, 310px);
  margin-bottom: min(0.8333333333vw, 10px);
}
@media (max-width: 768px) {
  #spec .key_features .wrap .item img {
    width: 100%;
    height: auto;
  }
}
#spec .key_features .wrap .item p {
  text-align: center;
}
@media (max-width: 768px) {
  #spec .key_features .wrap .item p {
    font-weight: 500;
  }
}

#conversion {
  background-color: #24243C;
  margin-top: min(8.3333333333vw, 100px);
  padding: min(8.3333333333vw, 100px) 0 min(11.6666666667vw, 140px);
}
@media (max-width: 768px) {
  #conversion {
    margin-top: min(18.6046511628vw, 80px);
    padding-top: min(13.9534883721vw, 60px);
    padding-bottom: min(18.6046511628vw, 80px);
  }
}
#conversion p {
  font-weight: bold;
  font-size: min(3.3333333333vw, 40px);
  color: #fdfdfd;
  text-align: center;
}
@media (max-width: 768px) {
  #conversion p {
    font-size: min(8.3720930233vw, 36px);
    line-height: 1.5;
  }
}
#conversion p.note {
  font-size: min(1vw, 12px);
  position: absolute;
  color: #fff;
  font-weight: normal;
  width: min(30.5833333333vw, 367px);
  right: 0;
  bottom: max(-5.4166666667vw, -65px);
  text-align: left;
}
@media (max-width: 768px) {
  #conversion p.note {
    font-size: min(2.7906976744vw, 12px);
    width: calc(100% - min(2.7906976744vw, 12px));
    top: unset;
    bottom: max(-15.1162790698vw, -65px);
  }
}
#conversion .btn_wrap {
  justify-content: center;
  gap: min(1.6666666667vw, 20px);
  margin-top: min(3.3333333333vw, 40px);
  position: relative;
}
#conversion .btn_wrap .btn {
  width: calc(33.3333333333% - min(1.6666666667vw, 20px));
}
@media (max-width: 768px) {
  #conversion .btn_wrap .btn {
    width: 100%;
  }
}
#conversion .btn_wrap .contact {
  background-color: #fdfdfd;
  color: #24243C;
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
#floating {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#floating .btn_wrap {
  display: flex;
}
#floating .btn_wrap .btn {
  width: 50%;
}
#floating.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn_wrap .btn {
  width: calc(50% - min(1.6666666667vw, 20px) / 2);
}
@media (max-width: 768px) {
  .btn_wrap .btn {
    width: 50%;
  }
}

/*----------------
	SNS
-----------------*/
#sns {
  padding: 45px 0 55px;
  background: #fff;
}
#sns a {
  color: #24243C;
}
#sns .sns_title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  color: #24243C;
  text-align: center;
  margin-bottom: 25px;
}
#sns ul {
  justify-content: space-between;
}
#sns ul li {
  width: 32%;
  background: #fff;
  border-radius: 10px;
  padding: 15px 15px 12px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
#sns ul li .flex {
  justify-content: space-between;
}
#sns ul li .icon {
  width: 22%;
  padding-right: 10px;
}
#sns ul li .description {
  width: 78%;
}
#sns ul li .description .title {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 5px;
}
#sns ul li .description .detail {
  font-size: 13.6px;
  line-height: 1.5;
}

@media print, screen and (max-width: 1440px) {
  #sns {
    padding: 45px 0 30px;
  }
  #sns .sns_title {
    margin-bottom: 35px;
  }
  #sns ul {
    display: block;
  }
  #sns ul li {
    width: 60%;
    margin: 0 auto 25px;
    padding: 25px 25px 20px;
  }
  #sns ul li .icon {
    padding-right: 20px;
  }
}
@media print, screen and (max-width: 960px) {
  #sns {
    padding: 6vw 0 3vw;
  }
  #sns .sns_title {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  #sns ul li {
    width: 80%;
    margin: 0 auto 3vw;
    padding: 3vw;
  }
  #sns ul li .icon {
    width: 16%;
    padding-right: 2vw;
  }
  #sns ul li .description {
    width: 84%;
  }
  #sns ul li .description .title {
    font-size: 2.2vw;
    margin-bottom: 1vw;
    margin-top: 0.5vw;
  }
  #sns ul li .description .detail {
    font-size: 1.9vw;
  }
}
@media print, screen and (max-width: 640px) {
  #sns {
    padding: 18vw 0 12vw;
  }
  #sns .sns_title {
    font-size: 6vw;
    margin-bottom: 8vw;
  }
  #sns ul li {
    width: 100%;
    padding: 4vw 4vw 3.5vw;
    margin-bottom: 5vw;
  }
  #sns ul li .flex {
    display: flex;
  }
  #sns ul li .icon {
    width: 22%;
    padding-right: 3vw;
  }
  #sns ul li .description {
    width: 78%;
  }
  #sns ul li .description .title {
    font-size: 4vw;
    margin-bottom: 2vw;
    margin-top: 1.5vw;
  }
  #sns ul li .description .detail {
    font-size: 3.5vw;
  }
}
@media print, screen and (min-width: 961px) {
  #st-GlobalNav {
    mix-blend-mode: initial;
  }
  #st-GlobalNav a {
    color: #000;
    transition: 0s;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active1 {
    color: #fff;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a:hover,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a:hover .mark,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active .mark,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active .mark,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active {
    color: var(--color-blue);
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active2 {
    color: #fff;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a.active2:hover,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a.active2:hover .mark,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active.active2 .mark,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active.active2 .mark,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List .active.active2 {
    color: #fff;
  }
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a.active2:hover,
  #st-GlobalNav .st-GlobalSiteNav .st-GlobalSiteNav_List a.active2:hover .mark {
    opacity: 0.7;
  }
}
.st-Icon-Internal:before {
  font-size: 1.25rem;
  line-height: 0;
  padding-left: 5px;
}

@media print, screen and (max-width: 460px) {
  .st-Icon-Internal:before {
    font-size: 4.5vw;
    line-height: 0;
    padding-left: 5px;
  }
}
.highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: #D9E021; /* 線の色 */
  text-underline-offset: -0.3em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.opacity-zero {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.transparent-bg {
  background-color: transparent !important;
}

.st-GlobalFooter_PageTop {
  z-index: 100;
}

/*----------------
	Modal
-----------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.is-active {
  display: flex;
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  max-height: 90vh;
  background: #fff;
  padding: min(6.6666666667vw, 80px) 0;
  z-index: 1001;
}
@media (max-width: 768px) {
  .modal-inner {
    height: 100vh;
    max-height: min(216.7441860465vw, 932px);
    padding: min(11.6279069767vw, 50px) 0 0;
    display: flex;
  }
}
.modal-inner .box {
  margin: auto;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: min(2.5vw, 30px);
  cursor: pointer;
  color: #fff;
  background: linear-gradient(to bottom, rgb(60, 60, 60) 0%, rgb(1, 1, 1) 100%);
  text-align: center;
  width: min(5.3333333333vw, 64px);
  height: min(5.3333333333vw, 64px);
}
@media (max-width: 768px) {
  .close-btn {
    font-size: min(6.976744186vw, 30px);
    width: min(14.8837209302vw, 64px);
    height: min(14.8837209302vw, 64px);
  }
}

#modalArea h2 {
  font-size: min(2.3333333333vw, 28px);
  font-weight: bold;
  margin-left: min(1vw, 12px);
}
@media (max-width: 768px) {
  #modalArea h2 {
    font-size: min(5.5813953488vw, 24px);
    margin-left: 0;
  }
}
#modalArea .flow-chart {
  margin-top: min(1.6666666667vw, 20px);
  margin-bottom: min(1.6666666667vw, 20px);
  justify-content: center;
}
@media (max-width: 768px) {
  #modalArea .flow-chart {
    margin-top: min(4.6511627907vw, 20px);
    margin-bottom: min(4.6511627907vw, 20px);
    flex-direction: column;
  }
}
#modalArea .flow-chart .chart {
  width: min(19.3333333333vw, 232px);
  flex-direction: column;
  align-items: center;
  text-align: center;
  clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%, 7% 50%);
  padding: min(2.5vw, 30px) 0 min(1.6666666667vw, 20px);
  margin-left: min(-0.5vw, -6px);
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart {
    flex-direction: row;
    width: 100%;
    clip-path: polygon(0 0, 50% 20%, 100% 0, 100% 80%, 50% 100%, 0 80%);
    padding: min(6.976744186vw, 30px) min(4.6511627907vw, 20px);
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart {
    padding-top: min(9.3023255814vw, 40px);
  }
  #modalArea .flow-chart .chart:not(:first-of-type) {
    margin-top: max(-4.1860465116vw, -18px);
  }
}
#modalArea .flow-chart .chart::before {
  content: "";
  display: inline-block;
  width: min(7.5vw, 90px);
  height: min(6vw, 72px);
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart::before {
    width: min(13.9534883721vw, 60px);
    height: min(12.7906976744vw, 55px);
    margin-left: min(11.6279069767vw, 50px);
  }
}
#modalArea .flow-chart .chart.chart01 {
  background-color: #E9F9FC;
  clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%, 0% 50%);
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart.chart01 {
    width: 100%;
    clip-path: polygon(0 0, 50% 20%, 100% 0, 100% 80%, 50% 100%, 0 80%);
  }
}
#modalArea .flow-chart .chart.chart01::before {
  background-image: url(../../assets/img/icn_chart_01.svg);
  background-size: min(5.8333333333vw, 70px) min(4.1666666667vw, 50px);
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart.chart01::before {
    background-size: min(12.5581395349vw, 54px) min(8.8372093023vw, 38px);
  }
}
#modalArea .flow-chart .chart.chart02 {
  background-color: #C8EFF8;
}
#modalArea .flow-chart .chart.chart02::before {
  background-image: url(../../assets/img/icn_chart_02.svg);
  background-size: min(5.4166666667vw, 65px) min(6.25vw, 75px);
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart.chart02::before {
    background-size: min(11.8604651163vw, 51px) min(12.7906976744vw, 55px);
  }
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart.chart02 p {
    text-align: start;
  }
}
#modalArea .flow-chart .chart.chart03 {
  background-color: #92DFF1;
}
#modalArea .flow-chart .chart.chart03::before {
  background-image: url(../../assets/img/icn_chart_03.svg);
  background-size: min(5.25vw, 63px) min(5.25vw, 63px);
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart.chart03::before {
    background-size: min(11.3953488372vw, 49px) min(11.3953488372vw, 49px);
  }
}
#modalArea .flow-chart .chart.chart04 {
  background-color: #5CCFEA;
}
#modalArea .flow-chart .chart.chart04::before {
  background-image: url(../../assets/img/icn_chart_04.svg);
  background-size: min(5.5vw, 66px) min(5.6666666667vw, 68px);
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart.chart04::before {
    background-size: min(10.2325581395vw, 44px) min(10.4651162791vw, 45px);
  }
}
#modalArea .flow-chart .chart.chart05 {
  background-color: #25BFE3;
}
#modalArea .flow-chart .chart.chart05::before {
  background-image: url(../../assets/img/icn_chart_05.svg);
  background-size: min(7.5vw, 90px) min(5.25vw, 63px);
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart.chart05::before {
    background-size: min(13.9534883721vw, 60px) min(9.7674418605vw, 42px);
  }
}
#modalArea .flow-chart .chart p {
  font-weight: bold;
  line-height: 1.5;
  margin-top: min(0.8333333333vw, 10px);
  height: min(4.1666666667vw, 50px);
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #modalArea .flow-chart .chart p {
    margin-top: min(0vw, 0px);
    margin-left: min(4.6511627907vw, 20px);
  }
}
#modalArea .note {
  font-size: min(1.1666666667vw, 14px);
  margin-left: min(1.6666666667vw, 20px);
  font-weight: 500;
}
@media (max-width: 768px) {
  #modalArea .note {
    font-size: min(3.2558139535vw, 14px);
    margin-left: min(2.7906976744vw, 12px);
  }
}