/* ---------------------------------------------------------
*
* GMO AI最適化ブースト
*
--------------------------------------------------------- */
/* html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "Noto Sans Japanese", "Noto Sans JP", "Noto Sans", sans-serif;
  background-color: #fff;
  font-feature-settings: "palt";
}
 */
section {
  width: 100%;
  padding: 0 calc((100% - 1160px) / 2);
}
@media screen and (max-width: 768px){
  section {
    padding: 0;
  }
}
/*
p {
  margin: 0;
  line-height: 1.5; */
  letter-spacing: 0.1em;
  /* word-break: normal;
} */

img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: contain;
  pointer-events: none;
}
img[src*="/sp/"] {
  display: none;
}
@media screen and (max-width: 768px) {
  img[src*="/sp/"] {
    display: inline-block;
  }
}

figcaption {
  display: none;
}

/*
ul {
  padding: 0;
} */

li {
  /* list-style: none; */
  line-height: 1.5;
}

/* .fade {
  opacity: 0;
} */

.fadeIn {
  opacity: 0;
  animation: fade_in 0.6s ease 0.2s 1 forwards;
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slidein {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideup {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slidedown {
  0% {
    opacity: 0;
    transform: translateY(-30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* #inc_header {
  position: sticky;
  top: 28px;
} */

.header {
  width: calc(100% - 80px);
  max-width: 1360px;
  height: 80px;
  position: sticky;
  top: 46px;
  background: #fff;
  /* backdrop-filter: blur(10px); */
  z-index: 2000;
  border-radius: 10px;
  filter: drop-shadow(0 5px 10px #0000001a);
  margin: 0 auto;
}
@media screen and (max-width: 1048px) {
  .header {
    height: 64px;
    top: 29px;
    overflow: hidden;
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px){
  .header {
    top: 0;
  }
}
.header#header {
	display: none !important;
}

.aio .inner {
	padding: 0;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 16px 16px 16px 32px;
}
@media screen and (max-width: 768px) {
  .header_inner {
    /* width: calc(100% - 30px); */
    padding: 24px 16px;
  }
}
.header_logo {
  width: fit-content;
  height: 26px;
}
.header_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header_logo a img {
  object-position: left;
}
@media (max-width: 768px) {
  .header_logo {
    height: 16px;
  }
}
.header-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
@media screen and (max-width: 1048px) {
  .header-nav {
    display: none;
  }
}
.header-nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  width: 180px;
  padding: 16px;
  border-radius: 50px;
  border: 1px solid #0F2E7C;
  color: #0F2E7C;
  background-color: #fff;
  transition: .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.header-nav a:hover {
  color: #fff;
  background-color: #0F2E7C;
}

.header-nav .header-nav_btns li:first-of-type a {
  color: #fff;
  background-color: #0F2E7C;
}
.header-nav .header-nav_btns li:first-of-type a:hover {
  color: #0F2E7C;
  background-color: #fff;
}

.header-nav .header-nav_btns a[target="_blank"]:after {
  content: "";
  background: url(../img/aio/icon_link.png) no-repeat center/contain;
  width: 16px;
  aspect-ratio: 1;
}
.header-nav .header-nav_btns a[target="_blank"]:hover:after {
  background: url(../img/aio/icon_link-w.png) no-repeat center/contain;
}
.header-nav .header-nav_btns a[target="_blank"][href*="trial"]:after {
  background: url(../img/aio/icon_link-w.png) no-repeat center/contain;
}
.header-nav .header-nav_btns a[target="_blank"][href*="trial"]:hover:after {
  background: url(../img/aio/icon_link.png) no-repeat center/contain;
}

.header-nav .header-nav_btns li a[href*="app.aio.gmo/login"]:after {
  content: "";
  background: url(../img/aio/icon_login.png) no-repeat center/contain;
  width: 16px;
  aspect-ratio: 1;
}
.header-nav .header-nav_btns li a[href*="app.aio.gmo/login"]:hover:after {
  background: url(../img/aio/icon_login-w.png) no-repeat center/contain;
}

/* ---------------------------------------------------------
  hamburger
--------------------------------------------------------- */
.side {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3000;
}
@media screen and (min-width: 1049px) {
  .side {
    display: none;
  }
}

.hamburger-menu #menu__toggle {
  opacity: 0;
}
.hamburger-menu #menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
.hamburger-menu #menu__toggle:checked + .menu__btn > span:before {
  top: 0;
  transform: rotate(0deg);
}
.hamburger-menu #menu__toggle:checked + .menu__btn > span:after {
  top: 0;
  transform: rotate(90deg);
}
.hamburger-menu #menu__toggle:checked + .menu__btn > img {
  opacity: 0;
}
.hamburger-menu #menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.hamburger-menu .menu__btn {
  position: fixed;
  top: 29px;
  right: 0;
  width: 18px;
  height: 64px;
  padding: 0 23px;
  box-sizing: content-box;
  cursor: pointer;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hamburger-menu .menu__btn {
    top: 0;
  }
}
.hamburger-menu .menu__btn > span {
  display: block;
  position: absolute;
  width: 18px;
  height: 1px;
  background-color: #001222;
  transition-duration: 0.15s;
}
.hamburger-menu .menu__btn > span:before,
.hamburger-menu .menu__btn > span:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 1px;
  background-color: #001222;
  transition-duration: 0.15s;
}
.hamburger-menu .menu__btn > span:before {
  top: -6px;
}
.hamburger-menu .menu__btn > span:after {
  top: 6px;
}
.hamburger-menu .menu__btn > img {
  padding-top: 15px;
  transition-duration: 0.25s;
}
.hamburger-menu .menu__box {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 100px 33px 37px;
  list-style: none;
  transition-duration: 0.2s;
  overflow: scroll;
  background-color: #212E4D;
  /* backdrop-filter: blur(10px); */
}
@media screen and (max-width: 800px) {
  .hamburger-menu .menu__box {
    padding: 93px 33px 37px;
  }
}
@media (min-width: 769px) and (max-width: 1048px) {
  .hamburger-menu .menu__box {
    top: 93px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger-menu .menu__box {
    padding: 48px 40px;
  }
}
.hamburger-menu .menu__box img {
  display: inline-block;
  height: 35px;
  margin-bottom: 40px;
}
.hamburger-menu .menu__box li {
  font-size: 18px;
  margin-bottom: 32px;
  color: #fff;
}
.hamburger-menu .menu__item {
  display: block;
  padding: 6px;
  text-align: center;
  transition-duration: 0.4s;
}
.hamburger-menu .menu__item img {
  height: 40px;
}
.hamburger-menu .menu__item:hover {
  opacity: 0.8;
}
.hamburger-menu .menu__item-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.hamburger-menu .menu__item-btns {
  margin-top: 16px;
}

@media screen and (max-width: 1250px) {
  .inner {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 32px !important;
    padding-left: 32px !important;
  }
}
.inner h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .inner h2 {
    font-size: 30px;
  }
}
.inner h2 p {
  margin-top: 30px;
  color: #0F2E7C;
  line-height: 1;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  .inner h2 p {
    margin-top: 20px;
    line-height: 1.6;
  }
}
.inner h2 span {
  /* font-size: 1.15em; */
  font-size: .5em;
  color: #F22E2E;
  letter-spacing: .1em;
}
.inner h2 img {
  display: block;
  height: 71px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .inner h2 img {
    height: 36px;
    margin-bottom: 10px;
  }
}
.inner h2 ~ div[class*=__note] {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  color: #000;
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .inner h2 ~ div[class*=__note] {
    font-size: 15px;
    text-align: left;
    margin-top: 35px;
  }
}
.inner .ttl {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .inner .ttl {
    margin-bottom: 20px;
  }
}
.inner .fadeIn .ttl p {
  animation: marker_span .6s linear(0 0%, 1 0%) 0s 1 normal forwards;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  /* color: #fff; */
  color: transparent;
  /* background-color: #F22E2E; */
  padding: 8px;
  display: inline-block;
  margin-bottom: 8px;
  white-space: nowrap;
  position: relative;
  z-index: 0;
}
.inner .fadeIn .ttl p:nth-of-type(2),
.inner .fadeIn .ttl p:nth-of-type(2):before,
.inner .fadeIn .ttl p:nth-of-type(2):after {
  animation-delay: .4s;
}
.inner .fadeIn .ttl p:nth-of-type(3),
.inner .fadeIn .ttl p:nth-of-type(3):before,
.inner .fadeIn .ttl p:nth-of-type(3):after {
  animation-delay: 1s;
}

@media screen and (max-width: 768px){
  .inner .fadeIn .ttl p {
    font-size: 22px;
  }
}

.inner .ttl p:before,
.inner .ttl p:after {
  content: "";
  background-color: #F22E2E;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.inner .fadeIn .ttl p:before {
  animation: marker_before .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: -1;
}
.inner .fadeIn .ttl p:after {
  animation: marker_after .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: 4;
}

@keyframes marker_span {
  0%, 50% {
		color: transparent;
	}
	51%, 100% {
    color: #fff;
	}
	/* 51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	} */
}
@keyframes marker_before {
  0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50%, 100% {
		left: 0;
		right: auto;
		width: 100%;
	}
	/* 51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	} */
}
@keyframes marker_after {
  0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
.inner [class*="__ttl"] h2~p {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  line-height: 2;
  color: #0F2E7C;
}
@media screen and (max-width: 768px){
  .inner [class*="__ttl"] h2~p {
    margin-top: 20px;
    font-size: 15px;
  }
}

.main {
  background-color: #f6f7fa;
  margin-top: -80px;
  overflow: hidden;
}

.aio .btn {
  padding: 32px 40px;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 200px;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .aio .btn {
    gap: 6px;
    padding: 24px;
    font-size: 15px;
  }
}
.aio .btn[target="_blank"]:after {
  content: "";
  background: url(../img/aio/icon_link-w.png) no-repeat center/contain;
  width: 24px;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .aio .btn[target="_blank"]:after {
    width: 16px;
  }
}
/* :after {
  content: "";
  width: 13px;
  height: auto;
  aspect-ratio: 1;
  border-top: 3px solid;
  border-right: 3px solid;
  transform: rotate(45deg);
  transition: 0.2s ease;
  position: absolute;
  right: 23px;
}
@media screen and (max-width: 768px) {
  .btn:after {
    width: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
  }
} */

@media screen and (min-width: 769px){
  .aio .btn:hover {
    filter: none !important;
    transform: translateY(8px);
  }
}
/* .btn:hover:after {
  right: 18px;
}
.btn.yellow {
  background: #fbbc05;
  color: #172051;
  border-color: #172051;
}
.btn.blue {
  background: #1a73e8;
  color: #fff;
  border-color: #fff;
}
.btn.white {
  background: #fff;
  color: #1a73e8;
  border: 1px solid #005bac;
}
.btn.white:after {
  border-color: #005bac;
} */
.aio .btn.red {
  background: #F22E2E;
  filter: drop-shadow(0 8px 0 #AB271B);
}
.aio .btn.blue {
  background: #0064E0;
  filter: drop-shadow(0 8px 0 #194172);
}

.fv {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 48px 0;
  aspect-ratio: 1440/900;
  max-height: 900px;
  background: url(../img/aio/bg/fv_bg.png) no-repeat center/cover;
  padding: 128px max(40px, calc((100% - 1200px) / 2)) 74px;
	height: auto;
  margin-top: 28px;
}
@media screen and (max-width: 1300px) {
  .fv {
    padding-left: 40px;
    max-height: unset;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    background: url(../img/aio/sp/bg/fv_bg.png) no-repeat center/cover;
    /* max-height: unset; */
    flex-direction: column;
    flex-wrap: nowrap;
    /* padding: 90px calc((100vw - 375px + 64px) / 2) 66px; */
    padding: calc(64px + 32px) 32px 66px;
    margin-top: 0;
    gap: 0;
  }
}
.fv__wrapper {
  /* padding-top: 185px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fv__left {
  flex: 0 0 auto;
  /* width: 100%; */
  color: #fff;
  /* padding-left: 80px; */
  z-index: 5;
  opacity: 0;
  animation: fade_in 0.6s ease 0.2s 1 forwards;
  animation-delay: 0.6s;
}
@media screen and (max-width: 1200px) {
  .fv__left {
    /* width: 40%; */
  }
}
@media screen and (max-width: 768px) {
  .fv__left {
    width: 100%;
    order: 2;
    padding-left: 0;
    text-align: center;
  }
}
/* .fv__left a.btn {
  width: fit-content;
  gap: 28px;
  padding: 22px 62px;
}
@media screen and (max-width: 1040px) {
  .fv__left a.btn {
    font-size: 18px;
    padding: 20px 36px;
  }
  .fv__left a.btn:after {
    width: 10px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fv__left a.btn {
    margin: 0 auto;
    width: calc(100% - 32px);
  }
} */
.fv_ttl-main {
  font-size: 46px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 32px;
  letter-spacing: .1em;
}
@media screen and (max-width: 1200px) {
  .fv_ttl-main {
    font-size: 38px;
  }
}
@media screen and (max-width: 900px) {
  .fv_ttl-main {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .fv_ttl-main {
    font-size: 26px;
    margin: 24px 0 20px;
    text-align: left;
  }
}
.fv_ttl-sub {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  position: relative;
  letter-spacing: .1em;
}

@media screen and (max-width: 1200px) {
  .fv_ttl-sub {
    /* font-size: 26px; */
  }
}
@media screen and (max-width: 768px) {
  .fv_ttl-sub {
    font-size: 15px;
    /* padding: 7px 9px 8px 13px; */
    text-align: left;
  }
  .fv_ttl-sub:after {
    font-size: 10px;
  }
}
.fv__right {
  width: min(620px, calc(100vw * 620/1440));
  /* max-width: 851px; */
  /* max-width: calc(100vw - ((100% - 1200px) / 2) - (46px * 12)); */
  z-index: 0;
  opacity: 0;
  transform: translateX(30%);
  animation: slideup 0.4s ease both;
  animation-delay: 1s;
  /* position: absolute;
  right: 0; */
  /* max-height: 533px; */
}
@media screen and (min-width: 1441px) {
  .fv__right {
    /* right: auto;
    left: calc(50vw - 126px); */
  }
}
@media screen and (max-width: 1200px) {
  .fv__right {
    /* width: calc(100vw * 851/1440);
    margin-right: calc(-100vw * 60 / 1440); */
  }
}
@media screen and (max-width: 768px) {
  .fv__right {
    order: 1;
    width: calc(100vw * 288/375);
    max-width: 395px;
    padding-right: 0;
    transform: translateY(-30%);
    animation: slidedown 0.4s ease both;
    animation-delay: 0.6s;
    position: relative;
  }
}
.fv__btns {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  /* padding-top: 88px; */
  text-align: center;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 768px){
  .fv__btns {
    padding-top: 58px;
  }
}
@media screen and (max-width: 768px){
  .fv__btns {
    padding-top: 40px;
  }
}

.fv__btns p {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.fv__notice {
  width: 100%;
  font-size: 10px;
  color: #fff;
  padding-left: 25px;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .fv__notice {
    order: 3;
    padding-left: 0;
    margin-top: 5px;
  }
}
.fv__scroll {
  height: 150px;
  position: absolute;
  left: 40px;
  bottom: 0;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px){
  .fv__scroll {
    left: 8px;
    font-size: 11px;
  }
}
.fv__scroll span {
  display: inline-block;
  width: 16px;
  line-height: 16px;
  margin-left: 17px;
}
.fv__scroll:before,
.fv__scroll:after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
}
.fv__scroll:before {
  animation: scroll 2s infinite;
  height: 150px;
  left: 4.5px;
  margin: auto;
  /* right: 0; */
  width: 1px;
}
.fv__scroll:after {
  animation: ball 2s infinite;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 10px;
  left: 0;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes ball {
  0%, 50% {
    top: 0;
  }
  100% {
    top: 100%;
  }

}

.about {
  background-color: #061630;
  color: #fff;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .about {
    overflow: hidden;
    padding: 0;
  }
}
.about .inner {
  padding: 0 !important;
}

.about__ttl {
  display: flex;
  align-items: center;
  height: 500px;
  padding: 100px max(40px, calc((100vw - 1340px) / 2)) 0 0;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .about__ttl {
    flex-direction: column;
    height: auto;
    padding: 56px 24px 0;
  }
}
.about__ttl_left {
  /* position: absolute;
  left: 0; */
  width: calc(100vw * 830 / 1440);
  height: 500px;
  flex: 0 0 auto;
  margin: 0 0 0 calc(-100vw * 67 / 1440);
}
@media screen and (max-width: 768px) {
  .about__ttl_left {
    width: 100vw;
    height:  auto;
    margin: 0;
    padding: 0 0 44px 32px;
  }
}

.about__ttl_left img {
  width: 100%;
  height: 100%;
  object-position: right;
}
@media screen and (max-width: 768px){
  .about__ttl_left img {
    width: calc(100vw * 498 / 375);
    max-width: unset;
  }
}
.about__ttl_right {
  /* margin-left: calc(100vw * -34/1440); */
  padding-bottom: 60px;
}
@media screen and (max-width: 768px){
  .about__ttl_right {
    margin-left: 0;
    padding: 0 8px;
  }
}
.about__ttl_right h2 {
  text-align: left;
}
.inner .about__ttl_right p,
.inner .about__ttl_right > h2~p {
  color: #fff;
  text-align: left;
}
.fadeIn .about__ttl_right > p span {
  /* background-color: #F22E2E; */
  animation: marker_span .6s linear(0 0%, 1 0%) 0s 1 normal forwards;
  padding: 6px;
  white-space: nowrap;
  margin: 0 3px;
  position: relative;
  font-weight: bold;
}
.about__ttl_right > p span:before,
.about__ttl_right > p span:after {
  content: "";
  background-color: #F22E2E;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fadeIn .about__ttl_right > p span:before {
  animation: marker_before .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: -1;
}
.fadeIn .about__ttl_right > p span:after {
  animation: marker_after .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .fadeIn .about__ttl_right > p span {
    padding: 2px 4px;
  }
}
.about__main {
  text-align: center;
  padding: 120px 0;
  color: #172051;
  padding: 0 max(40px, calc((100% - 1020px) / 2)) 100px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .about__main {
    text-align: left;
    padding: 80px 32px 0;
    margin-top: 0;
  }
}
.about__main_list article {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 64px;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .about__main_list article {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
  }
}

.about__main_list-text .kome {
  font-size: max(12px, .6em);
}
.about__main_list-text .kome_desc {
  display: inline-block;
  font-size: 14px;
  margin-top: .7em;
}
@media screen and (max-width: 768px){
  .about__main_list-text .kome_desc {
    font-size: 11px;
  }
}
.about__main_list-text .desc {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px){
  .about__main_list-text .desc {
    font-size: 13px;
  }
}

.about__main_list-img {
  flex: 0 0 auto;
  width: min(540px, calc(100vw * 540/1440));
}
@media screen and (max-width: 768px){
  .about__main_list-img {
    width: 100%;
  }
}
.about__other {
  background-color: #212E4D;
  padding-top: 80px;
  padding-bottom: 86px;
}
@media screen and (max-width: 768px){
  .about__other {
    padding-top: 64px;
    padding-bottom: 74px;
  }
}
.about__other h3 {
  width: 100%;
  margin: 0 auto 56px;
  text-align: center;
}
@media screen and (max-width: 830px){
  .about__other h3.forPc {
    display: none !important;
  }
  .about__other h3.forSp {
    display: flex !important;
  }
}
@media screen and (max-width: 830px){
  .about__other h3 {
    margin: 0 auto 32px;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
}

.about__other .fadeIn h3 span {
  color: #fff;
  /* background: #F22E2E; */
  animation: marker_span .6s linear(0 0%, 1 0%) 0s 1 normal forwards;
  padding: 8px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  letter-spacing: .1em;
}
.about__other h3 span:before,
.about__other h3 span:after {
  content: "";
  background-color: #F22E2E;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about__other .fadeIn h3 span:before {
  animation: marker_before .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: -1;
}
.about__other .fadeIn h3 span:after {
  animation: marker_after .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: 4;
}

@media screen and (max-width: 768px){
  .about__other .fadeIn h3 span {
    font-size: 22px;
    display: inline-block;
  }
}

.about__other ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px){
  .about__other ul {
    flex-direction: column;
    gap: 16px;
  }
}
.about__other ul li {
  width: calc((100% - 20px) / 2);
  background: #F5F5F5;
  border-radius: 10px;
  color: #0F2E7C;
  filter: drop-shadow(0 5px 0 #808080);
  padding: 20px 20px 16px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 768px){
  .about__other ul li {
    width: 100%;
    padding: 18px 18px 14px;
  }
}
.about__other ul li span {
  font-size: 14px;
}
@media screen and (max-width: 768px){
  .about__other ul li span {
    font-size: 11px;
  }
}
.about__other ul li p {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px){
  .about__other ul li p {
    font-size: 18px;
  }
}

.about__other ul li p:before {
  content: "『";
}
.about__other ul li p:after {
  content: "』";
}
.about__other span.mini_note {
  color: #fff;
  font-size: 13px;
  display: block;
  margin-top: 20px;
  text-align: right;
  letter-spacing: .03em;
}

.boost {
  background: url(../img/aio/bg_boost.png) no-repeat center/cover;
}
.boost .inner {
  padding: 170px 0;
}
@media screen and (max-width: 768px){
  .boost .inner {
    padding: 58px 10px !important;
  }
}
.boost .inner p {
  font-size: 40px;
  line-height: 2;
  color: #fff;
  font-weight: 600;
  text-align: center;
  letter-spacing: .05em;
}
@media screen and (max-width: 768px){
  .boost .inner p {
    font-size: 22px;
    line-height: 1.8;
  }
}
.community {
  padding: 0;
  background: #fff;
}
.community .inner {
  display: flex;
}
@media screen and (max-width: 1250px) {
  .community .inner {
    padding: 0 !important;
  }
}
@media screen and (max-width: 768px){
  .community .inner {
    flex-direction: column;
  }
}
.community__left {
  margin-right: -80px;
  width: 50vw;
  max-width: 724px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px){
  .community__left {
    width: 100%;
    margin-right: 0;
    margin-bottom: -80px;
  }
}
.community__right {
  background-color: #0064E00d;
  background-repeat: no-repeat;
  background-image: url(../img/aio/bg/community_bg.png);
  background-position: top -303px right -40px;
  background-size: calc(100vw * 580/1440) auto;
  width: calc(50vw + 80px);
  padding: 200px 50px 100px 140px;
}
@media screen and (min-width: 1440px){
  .community__right {
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .community__right {
    width: 100%;
    padding: 76px 32px 64px;
    background-image: url(../img/aio/sp/bg/community_bg.png);
    background-position: bottom -24px right 0;
    background-size: calc(100vw * 240/375) auto;
  }
}
.community__right.fadeIn .ttl span {
  /* background-color: #0064E0; */
  animation: marker_span .6s linear(0 0%, 1 0%) 0s 1 normal forwards;
  letter-spacing: .1em;
  position: relative;
}
.community__right.fadeIn .ttl span:before,
.community__right.fadeIn .ttl span:after {
  content: "";
  background-color: #0064E0;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.community__right.fadeIn .ttl span:before {
  animation: marker_before .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: -1;
}
.community__right.fadeIn .ttl span:after {
  animation: marker_after .6s cubic-bezier(.455,.03,.515,.955) 0s 1 normal forwards;
  z-index: 4;
}

.community__right p.desc {
  color: #0F2E7C;
  max-width: 460px;
  font-size: 20px;
  letter-spacing: .03em;
  line-height: 1.8;
  margin-bottom: 32px;
}
@media screen and (min-width: 1440px){
  .community__right p.desc {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px){
  .community__right p.desc {
    width: auto;
    font-size: 15px;
  }

}
.community__list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.community__list li {
  padding: 12px;
  line-height: 1;
  font-size: 16px;
  letter-spacing: .03em;
  color: #0F2E7C;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #0F2E7C;
}
@media screen and (max-width: 768px){
  .community__list li {
    font-size: 13px;
  }
}
.community__right a {
  /* display: inline-block; */
  display: flex;
  align-items: center;
  margin-top: 80px;
  color: #0064E0;
  font-size: 16px;
  letter-spacing: .03em;
}
@media screen and (max-width: 768px){
  .community__right a {
    font-size: 15px;
    margin-top: 40px;
  }
}
.community__right a:after {
  content: "";
  background: url(../img/aio/icon_link-b.png) no-repeat center/contain;
  width: 16px;
  aspect-ratio: 1;
  display: inline-block;
  margin-left: 8px;
}

.plan {
  background: #fff;
  padding: 0 max(25px, calc((100% - 1160px) / 2));
}
.plan .inner {
  /* padding: 80px 40px 100px !important; */
  padding: 80px 0 100px !important;
}

@media screen and (max-width: 768px){
  .plan .inner {
    padding: 64px 7px !important;
  }
}
.plan__list {
  display: flex;
  gap: 16px;
  margin-top: 80px;
}
@media screen and (max-width: 1000px){
  .plan__list {
    flex-direction: column;
    margin-top: 32px;
  }
}
/* .plan__list:first-of-type {
  padding: 0 50px;
}
@media screen and (max-width: 768px){
  .plan__list:first-of-type {
    padding: 0;
  }
} */
.plan__list li {
  width: 100%;
  border-radius: 10px;
  border: 3px solid;
  padding: 42px 21px 21px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1000px){
  .plan__list li {

  }
}
@media screen and (max-width: 768px){
  .plan__list li {
    padding: 39px 21px 21px;
  }
}

.plan__list > li:nth-of-type(1) {
  color: #F28612;
  border-color: #F2861233;
  background-color: #F286120D;
}
.plan__list > li:nth-of-type(2) {
  color: #F22E2E;
  border-color: #F22E2E33;
  background-color: #F22E2E0D;
}
.plan__list > li:nth-of-type(3) {
  color: #0064E0;
  border-color: #0064E033;
  background-color: #0064E00D;
}
.plan__list_num {
  font-size: 18px;
  line-height: 1;
  padding: 12px;
  color: #fff;
  width: calc(100% + 6px);
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 3;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px){
  .plan__list_num {
    font-size: 15px;
  }
}
.plan__list li:nth-of-type(1) .plan__list_num {
  background-color: #F28612;
}
.plan__list li:nth-of-type(2) .plan__list_num {
  background-color: #F22E2E;
}
.plan__list li:nth-of-type(3) .plan__list_num {
  background-color: #0064E0;
}


.plan__list_name {
  margin-bottom: 24px;
}

.plan__list_name p {
  font-size: min(28px, calc(100vw * 28/1440));
  line-height: 1;
  margin: 32px 0 24px;
}
@media screen and (max-width: 1120px){
  .plan__list_name p {
    font-size: 24px;
    margin: 28px 0 20px;
  }
}
/* @media screen and (max-width: 768px){
  .plan__list_name p {
    margin-bottom: 8px;
  }
} */

.plan__list_name span {
  display: inline-block;
  color: #fff;
  padding: 8px;
  background: #0F2E7C80;
  border-radius: 4px;
  font-size: min(18px, calc(100vw * 18/1440));
  line-height: 1;
}
@media screen and (max-width: 900px){
  .plan__list_name span {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.plan__list_name span:nth-of-type(2) {
  margin-left: 26px;
  position: relative;
}
@media screen and (max-width: 768px){
  .plan__list_name span:nth-of-type(2) {
    margin-left: 16px;
  }
}
.plan__list_name span:nth-of-type(2):before {
  content: "＋";
  width: 18px;
  height: 34px;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: -24px;
  color: #0F2E7C80;
}
@media screen and (max-width: 768px){
  .plan__list_name span:nth-of-type(2):before {
    width: 15px;
    height: 30px;
    font-size: 15px;
    left: -18px;
  }
}
/* .plan__list_name p:before {
  content: "";
  width: calc(100% + 6px);
  height: 24px;
  background-color: #F28612;
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 3;
  border-radius: 10px 10px 0 0;
} */

.plan__list_about {
  color: #0F2E7C;
}

.plan__list li:has(div.option) .plan__list_about {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 1180px){
  .plan__list li:has(div.option) .plan__list_about {
    display: block;
  }
}
.plan__list_about .price {
  padding: 12px 0 16px;
  background: #fff;
  font-size: min(22px, calc(100vw * 22/1440));
  margin: 24px 0 20px;
  letter-spacing: .03em;
}
@media screen and (max-width: 768px){
  .plan__list_about .price {
    font-size: 18px;
    margin: 20px 0;
  }
}
.plan__list_about .price p {
  line-height: 1;
}
.plan__list_about .price p span {
  font-size: 2.2em;
}
@media screen and (max-width: 768px){
  .plan__list_about .price p span {
    font-size: 1.8em;
  }
}
.plan__list_about .price .notice {
  font-size: 15px;
  font-weight: normal;
  line-height: 18px;
  height: 18px;
  margin-top: 10px;
}
@media screen and (max-width: 768px){
  .plan__list_about .price .notice {
    font-size: 13px;
    line-height: 18px;
  }
}
.plan__list_about .price .notice span {
  font-size: 18px;
}
@media screen and (max-width: 768px){
  .plan__list_about .price .notice span {
    font-size: 15px;
  }
}
.plan__list_about .desc {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px){
  .plan__list_about .desc {
    font-size: 13px;
    line-height: 1.5;
  }
}
.plan__list_about .desc p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.plan__list_about .desc p span {
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px){
  .plan__list_about .desc p span {
    font-size: 13px;
  }
}

.plan__list_about .desc p:before,
.plan__list_about .desc p:after {
  content: "";
  border-top: 3px dotted;
  width: 100%;
  height: 3px;
  box-sizing: border-box;
}
.plan__list li:nth-of-type(1) .plan__list_about .desc p:before,
.plan__list li:nth-of-type(1) .plan__list_about .desc p:after {
  border-color: #F2861233;
}
.plan__list li:nth-of-type(2) .plan__list_about .desc p:before,
.plan__list li:nth-of-type(2) .plan__list_about .desc p:after {
  border-color: #F22E2E33;
}
.plan__list li:nth-of-type(3) .plan__list_about .desc p:before,
.plan__list li:nth-of-type(3) .plan__list_about .desc p:after {
  border-color: #0064E033;
}


.plan__list_about .desc ul {
  display: flex;
  flex-direction: column;
  gap: .5em;
  /* width: fit-content;
  margin: 0 auto; */
}
@media screen and (max-width: 768px){
  .plan__list_about .desc ul {
    margin: 0 auto 0 0;
  }
}
.plan__list_about .desc ul li {
  border: none;
  padding: 0;
  background: transparent;
  text-align: left;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 768px){
  .plan__list_about .desc ul li {
    font-size: 13px;
  }
}
.plan__list_about .desc ul li:before {
  content: "・";
}

@media screen and (max-width: 1200px){
  .plan__list li:nth-of-type(3) .plan__list_about .desc ul {
    margin: 0 auto;
  }
}
.plan__list li:nth-of-type(3) .plan__list_about .desc ul li:before {
  content: "";
}
.plan__list li:nth-of-type(3) .plan__list_about .desc ul li {
  font-size: 18px;
  margin: 1.5em 0;
  text-align: center;
}
@media screen and (max-width: 768px){
  .plan__list li:nth-of-type(3) .plan__list_about .desc ul li {
    font-size: 15px;
  }
}
.plan__list ul {
	flex: 0 0 auto;
}
.cvarea {
  padding: 0;
}
.cvarea .inner {
  display: flex;
  /* padding: 52px calc((100% - 1160px) / 2) 20px; */
  padding: 88px calc((100vw - 1160px) / 2);
  background-color: #212E4D;
  align-items: center;
}
@media screen and (max-width: 768px){
  .cvarea .inner {
    flex-direction: column;
    padding: 48px 32px 58px !important;
  }
}
.cvarea .inner:first-of-type {
  justify-content: space-between;
  background: url(../img/aio/bg_trial.png) no-repeat right/cover;
  /* padding: 52px calc(100vw * 56/1440) 90px calc((100% - 1160px) / 2) */
  /* padding: 88px calc((100vw - 1160px) / 2) !important; */
}
@media screen and (max-width: 1000px){
  .cvarea .inner:first-of-type {
    /* padding: 52px 0 90px 40px !important; */
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px){
  .cvarea .inner:first-of-type {
    background: url(../img/aio/sp/bg/bg_trial.png) no-repeat center/cover;
    padding: 64px 32px 56px !important;
  }
}
.cvarea__trial {
  width: calc(100% * 560 / 1160);
  color: #fff;
}
@media screen and (max-width: 768px){
  .cvarea__trial {
    width: 100%;
    padding-bottom: 8px;
  }
}
.cvarea__trial_ttl {
  font-size: 48px;
  font-weight: 600;
  line-height: 74px;
  margin: 24px 0 32px;
  white-space: nowrap;
}
@media screen and (max-width: 768px){
  .cvarea__trial_ttl {
    font-size: 24px;
    text-align: center;
    margin: 0 0 22px;
    line-height: unset;
  }
  .cvarea__trial_ttl ~ img {
    width: 100%;
    height: calc(100vw * 235 / 375);
    max-width: 100vw;
    object-position: center;
  }
}
.cvarea__trial_ttl > p {
  white-space: nowrap;
}
.cvarea__trial_ttl > span {
  font-size: 28px;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px){
  .cvarea__trial_ttl > span {
    font-size: 15px;
  }
}
.cvarea__trial_ttl p span:nth-of-type(1) {
  font-size: 1.54em;
}
.cvarea__trial_ttl p span:nth-of-type(2) {
  font-size: 1.3em;
}
.cvarea__trial_desc {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: .1em;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px){
  .cvarea__trial_desc {
    margin-top: 22px;
    font-size: 13px;
  }
}
.cvarea__trial_btn {
  display: block;
  padding: 24px;
  text-align: center;
  background: #F22E2E;
  border-radius: 60px;
  filter: drop-shadow(0 8px 0 #AB271B);
  max-width: 420px;
}
@media screen and (max-width: 768px){
  .cvarea__trial_btn {
    padding: 20px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px){
  .cvarea__trial_btn:hover {
    filter: none !important;
    transform: translateY(8px);
  }
}
.cvarea__trial_btn span {
  font-size: 18px;
  letter-spacing: .03em;
}
@media screen and (max-width: 768px){
  .cvarea__trial_btn span {
    font-size: 13px;
  }
}
.cvarea__trial_btn p {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 28px;
  margin-top: 16px;
  line-height: 1;
}
@media screen and (max-width: 768px){
  .cvarea__trial_btn p {
    font-size: 18px;
    margin-top: 12px;
  }
}
.cvarea__trial_btn p:after {
  content: "";
  background: url(../img/aio/icon_link-w.png) no-repeat center/contain;
  width: 32px;
  aspect-ratio: 1;
  /* margin-left: 8px; */
}
@media screen and (max-width: 768px){
  .cvarea__trial_btn p:after {
    width: 16px;
  }
}
.cvarea__trial_img {
  width: calc(100vw * 500 / 1440);
  max-width: 500px;
}
.fadeIn ~ .cvarea__trial_img {
  animation: slideup 0.4s ease both;
  animation-delay: .8s;
}
.cvarea .inner:has(.cvarea__contact) {
  justify-content: center;
}
.cvarea__contact {
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 768px){
  .cvarea__contact {
    width: 100%;
    padding: 0;
  }
}
.cvarea__contact p {
  font-size: 32px;
  text-align: center;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px){
  .cvarea__contact p {
    font-size: 18px;
    line-height: 1.6;
  }
}
.cvarea__contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 420px;
  margin: 32px auto 0;
  padding: 32px;
  text-align: center;
  background: #0064E0;
  border-radius: 60px;
  filter: drop-shadow(0 8px 0 #194172);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px){
  .cvarea__contact a {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    font-size: 18px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 769px){
  .cvarea__contact a:hover {
    filter: none !important;
    transform: translateY(8px);
  }
}
.cvarea__contact a:after {
  content: "";
  background: url(../img/aio/icon_link-w.png) no-repeat center/contain;
  width: 24px;
  aspect-ratio: 1;
  /* margin-left: 8px; */
}
@media screen and (max-width: 768px){
  .cvarea__contact a:after {
    width: 16px;
  }
}
.flow {
  background-color: #091739;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px){
  .flow {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .flow .inner {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }
}
.flow__ttl p {
  color: #fff !important;
}

.flow .flow__list {
  display: flex;
  margin-top: 56px;
}
@media screen and (max-width: 768px){
  .flow .flow__list {
    flex-direction: column;
    margin-top: 40px;
  }
}
.flow .flow__list li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 768px){
  .flow .flow__list li {
    flex-direction: row;
  }
}
.flow .flow__list li:nth-of-type(-n+2):before,
.flow .flow__list li:nth-of-type(-n+2):after {
  content: "";
  aspect-ratio: 1;
  position: absolute;
  bottom: calc((100% - 108px) / 2);
  transform: translateY(50%) rotate(45deg);
  z-index: 200;
}
@media screen and (max-width: 768px){
  .flow .flow__list li:nth-of-type(-n+2):before,
  .flow .flow__list li:nth-of-type(-n+2):after {
    right: calc((100% - 48px) / 2);
    bottom: -10px;
    transform: translateX(50%) rotate(135deg);
  }
}
.flow .flow__list li:before {
  width: 56px;
  border-radius: 50px;
  background: #fff;
  right: -23px;
  filter: drop-shadow(0 4px 10px #0000001a);
}
@media screen and (max-width: 768px){
  .flow .flow__list li:before {
    width: 32px;
  }
}
.flow .flow__list li:after {
  width: 14px;
  border-top: 1px solid #0f2e7c;
  border-right: 1px solid #0f2e7c;
  right: 0;
}
@media screen and (max-width: 768px){
  .flow .flow__list li:after {
    width: 8px;
    bottom: 3px !important;
  }
}
.flow .flow__list_step {
  width: 100%;
  padding: 24px;
  margin-bottom: 16px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  color: #fff;
  background-color: #F28612;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  letter-spacing: unset;
	flex: 0 0 auto;
}
@media screen and (max-width: 768px){
  .flow .flow__list_step {
    padding: 16px 6px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 50% 100%, 0 calc(100% - 16px));
    margin-right: 8px;
    margin-bottom: 8px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: fit-content;
  }
}
.flow li:nth-of-type(2) .flow__list_step {
  background-color: #F24B25;
}
.flow li:nth-of-type(3) .flow__list_step {
  background-color: #F22E2E;
}
.flow .flow__list_step:before {
  content: "STEP";
  font-size: 28px;
}
@media screen and (max-width: 768px){
  .flow .flow__list_step:before {
    font-size: 11px;
    display: inline-block;
  }
}

.flow .flow__list_desc {
  height: 100%;
  padding: 40px;
  background-color: #fff;
  margin-right: 9px;
  color: #0F2E7C;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .03em;
}
@media screen and (max-width: 768px){
  .flow .flow__list_desc {
    margin-right: 0;
    margin-bottom: 8px;
    padding: 24px;
  }
}
.flow .flow__list_desc p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px){
  .flow .flow__list_desc p {
    font-size: 15px;
  }
  .flow .flow__list_desc span {
    font-size: 13px;
  }
}


.faq {
  background: #F5F5F5;
  padding: 80px calc((100% - 800px) / 2) 100px;
}
@media screen and (max-width: 768px){
  .faq {
    padding: 64px 16px;
  }
}
.faq .inner {
  padding: 0 !important;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
}
@media screen and (max-width: 768px){
  .faq__list {
    margin-top: 40px;
  }
}
.faq__list li {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding: 32px;
  color: #0F2E7C;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 768px){
  .faq__list li {
    padding: 20px 16px;
  }
}
.faq__list li.is-open::after {
  transform: translateY(-50%) rotate(0);
}
.faq__list li.is-open dt {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px){
  .faq__list li.is-open dt {
    margin-bottom: 20px;
  }
}
.faq__list li.is-open dd {
  max-height: calc(var(--max-height) * 2);
}
@media screen and (max-width: 768px){
  .faq__list li.is-open dd {
    max-height: calc(var(--max-height) * 1.8)
  }
}

.faq__list li::before,
.faq__list li::after {
  content: "";
  display: block;
  position: absolute;
  top: 44px;
  right: 32px;
  width: 24px;
  height: 2px;
  background: #0f2e7c33;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .faq__list li::before,
  .faq__list li::after {
    top: 30px;
    right: 16px;
    width: 20px;
    height: 3px;
  }
}
.faq__list li::after {
  transform: translateY(-50%) rotate(-90deg);
}

.faq__list li dt,
.faq__list li dd {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px){
  .faq__list li dt,
  .faq__list li dd {
    align-items: flex-start;
  }
}
.faq__list li dt {
  font-size: 24px;
  font-weight: 600;
  /* margin-bottom: 10px; */
}
@media screen and (max-width: 768px){
  .faq__list li dt {
    font-size: 15px;
    max-width: calc(100% - 30px);
  }
}
.faq__list li dt:before {
  content: "Q. ";
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 768px){
  .faq__list li dt:before {
    font-size: 15px;
  }
}
.faq__list li dd {
  font-size: 16px;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px){
  .faq__list li dd {
    font-size: 13px;
  }
}
.faq__list li dd:before {
  content: "A. ";
  font-size: 24px;
  font-weight: 600;
  color: #F22E2E;
  white-space: nowrap;
}
@media screen and (max-width: 768px){
  .faq__list li dd:before {
    font-size: 15px;
  }
}
.faq__list li dd p {
  line-height: 2;
}





#footer .footer__nav {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #footer .footer__nav {
    margin-bottom: 50px;
  }
}
#footer .footer__nav li {
  padding: 0 0 0 1em;
}
#footer .footer__nav li:not(:last-of-type) {
  padding: 0 1em 0 0;
  border-right: 1px solid #fff;
}
#footer .footer__nav_wrapper {
  background: #005bac;
  color: #fff;
  text-align: center;
  padding: 40px 0 20px;
}
#footer .footer__nav_wrapper .page_share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}
#footer .footer__nav_wrapper .page_share p {
  font-weight: bold;
  line-height: 32px;
  font-size: 14px;
}
#footer .footer__nav_wrapper .page_share li {
  height: 32px;
}
#footer .footer__nav_wrapper .page_share li a, #footer .footer__nav_wrapper .page_share li div {
  display: block;
  width: 32px;
  height: 100%;
  cursor: pointer;
}
#footer .footer__nav_wrapper .page_share li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#footer .footer__nav_wrapper p.copy {
  font-size: 11px;
  padding: 0;
}

.policy {
  background: #fff;
  padding-top: 78px;
  padding-bottom: 78px;
}
@media screen and (max-width: 1200px) {
  .policy {
    padding: 78px 20px;
  }
}
@media screen and (max-width: 768px) {
  .policy {
    padding: 40px 15px;
  }
}
.policy h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .policy h1 {
    font-size: 22px;
  }
}
.policy h4 {
  font-size: 24px;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  .policy h4 {
    font-size: 18px;
  }
}
.policy h4:nth-of-type(n+2) {
  margin-top: 1em;
}
.policy p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .policy p {
    font-size: 14px;
  }
}
.policy dl.date {
  display: flex;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .policy dl.date {
    font-size: 14px;
  }
}
.policy dl.date dt:nth-of-type(n+2) {
  width: 2.5em;
  text-align: right;
}
.policy dl.date dt:nth-of-type(3) {
  /* width: 2.5em; */
}
.policy dl.date dd {
  padding-left: 0.3em;
}

/*--------------------------------------------------------------------
  セキュリティフッター対応
--------------------------------------------------------------------*/
.sns_inner {
  display: flex;
  gap: 20px;
  height: 58px;
  margin: 0 auto;
  max-width: 1040px;
  padding: 20px 10px;
  box-sizing: border-box;
  color: white;
}
.sns_inner ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
}
.sns_inner img[src*=log] {
  height: 18px;
}
.sns_inner img[src*=icon_] {
  width: 18px;
  aspect-ratio: 1;
  object-fit: contain;
  overflow: hidden;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .sns_inner {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

/* --------------------------
  お問い合わせ
-------------------------- */
.contact {
  padding: 50px 0;
}
.contact .inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px){
  .contact .inner {
    width: 50%;
    min-width: 700px;
  }
}

.contact .inner h2 {
  margin: 50px 0 60px;
  font-size: 30px;
}
@media screen and (min-width: 769px){
  .contact .inner h2 span {
    width: 1.1em;
    display: inline-block;
  }
}
@media screen and (max-width: 768px){
  .contact .inner h2 {
    line-height: 1.3;
    margin: 0 0 40px;
    font-size: 30px;
  }
}


/* --------------------------
  LP用
-------------------------- */
header:has( ~ .aio.lp2) .header-nav a {
  width: 210px;
}

@media screen and (max-width: 1048px){
  .aio.lp2 .hamburger-menu .menu__item-btns .btn.red {
    width: 100%;
    max-width: 320px;
  }
}
.aio.lp2 .fv {
  background: linear-gradient(180deg, rgba(247, 245, 241, 1) 55%, rgba(242, 239, 233, 1) 85%, rgba(233, 229, 221, 1));
  aspect-ratio: 1440/800;
  max-height: 800px;
  padding: 128px max(40px, calc((100% - 1200px) / 2)) 74px;
  justify-content: center;
}
@media screen and (max-width: 1300px) {
  .aio.lp2 .fv {
    max-height: unset;
    padding: 144px 40px 92px;
  }
}
@media screen and (max-width: 768px){
  .aio.lp2 .fv {
    padding: 144px 16px 92px;
  }
}
.aio.lp2 .fv .fv__bg {
  background: url(../img/aio/lp/fv_bg.png) no-repeat center top/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px){
  .aio.lp2 .fv .fv__bg {
    background: url(../img/aio/lp/sp/fv_bg.png) no-repeat center top/cover;
  }
}
/* .aio.lp2 .fv .fv__bg:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/aio/lp/fv_bg.png) no-repeat center top/cover;
  position: absolute;
  top: 0;
  left: 0;
} */
.aio.lp2 .fv .fv__bg img {
  position: absolute;
}
.aio.lp2 .fv .fv__bg img[src*="-l"] {
  width: min(364px, calc(100vw * 364/1440));
  left: 0;
  top: min(-150px, calc(-100vw * 150/1440));
  animation: float-l 20s infinite;
}
@media screen and (max-width: 768px){
  .aio.lp2 .fv .fv__bg img[src*="-l"] {
    width: min(202px, calc(100vw * 202/375));
    top: max(-35px, calc(-100vw * 35/1440));
    animation-duration: 40s;
  }
}
.aio.lp2 .fv .fv__bg img[src*="-r"] {
  width: min(757px, calc(100vw * 757/1440));
  right: 0;
  top: min(60px, calc(100vw * 60/1440));
  animation: float-r 20s infinite;
}
@media screen and (max-width: 768px){
  .aio.lp2 .fv .fv__bg img[src*="-r"] {
    width: min(375px, 100vw);
    top: min(calc(100% - 125px), calc(100% - 100vw * 125/375));
    animation-duration: 40s;
  }
}

@keyframes float-l {
  0%, 100% {
    transform: translate(0);
  }
  60% {
    transform: translate(-20px, 70px);
  }
  80% {
    transform: translate(-20px, 0);
  }
}
@keyframes float-r {
  0%, 100% {
    transform: translateY(0);
  }
  60% {
    transform: translate(20px, -40px);
  }
  80% {
    transform: translate(20px, 0);
  }
}

.lp2 .fv__wrapper {
  gap: min(65px, calc(100vw * 65/1440));;
  z-index: 2;
}
@media screen and (max-width: 900px){
  .lp2 .fv__wrapper {
    gap: 0;
  }
}
.lp2 .fv__left {
  color: #061630;
}
.lp2 .fv_ttl-text {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px){
  .lp2 .fv_ttl-text {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 16px;
  }
}
.lp2 .fv_ttl-text span {
  font-size: 0.35em;
  line-height: 52px;
  vertical-align: text-top;
}
@media screen and (max-width: 768px){
  .lp2 .fv_ttl-text span {
    line-height: 32px;
  }
}
.lp2 .fv_ttl-main {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px){
  .lp2 .fv_ttl-main {
    margin-bottom: 48px;
  }
}
.lp2 .fv_ttl-main .logo {
  font-size: 36px;
}
@media screen and (max-width: 768px){
  .lp2 .fv_ttl-main .logo {
    font-size: 20px;
    padding: 0 16px;
  }
}
.lp2 .fv_ttl-main .logo img {
  display: block;
  margin-top: 36px;
  width: min(655px, calc(100vw * 655/1440));
  min-width: 500px;
  height: 52px;
  object-position: left;
}
@media screen and (max-width: 768px){
  .lp2 .fv_ttl-main .logo img {
    width: calc(100% + 32px);
    margin-left: -16px;
    max-width: unset;
    min-width: unset;
    height: auto;
  }
}

.aio.lp2 .fv__btns {
  justify-content: flex-start;
  padding-top: 0;
  gap: 12px 16px;
}
@media screen and (max-width: 768px){
  .aio.lp2 .fv__btns {
    flex-direction: column;
  }
}
.aio.lp2 .fv__btn span {
  margin-top: 18px;
  display: block;
  font-size: 14px;
  color: #666;
  text-align: left;
}
.aio.lp2 .btn {
  font-size: 18px;
  padding: 24px 14px;
  width: min(300px, calc(100vw * 300/1440));
  min-width: 230px;
}
@media screen and (max-width: 1100px){
  .aio.lp2 .btn {
    font-size: 15px;
    padding: 16px 14px;
    width: min(240px, calc(100vw * 240/375));
    min-width: unset;
  }
}
.aio.lp2 .btn p {
  display: flex;
  align-items: flex-start;
  font-weight: unset;
  margin: 0;
}
.aio.lp2 .btn p span {
  font-size: .45em;
  margin: 0;
  color: inherit;
}
.aio.lp2 .btn[target="_blank"]:after {
  width: 20px;
}

@media screen and (max-width: 768px){
  .aio.lp2 .btn.red {
    filter: drop-shadow(0 4px 0 #AB271B);
  }
}
@media screen and (max-width: 768px){
  .aio.lp2 .btn.blue {
    filter: drop-shadow(0 4px 0 #194172);
  }
}
.aio.lp2 .fv__notice {
  font-size: 14px;
  color: #666;
  text-align: left;
  position: absolute;
  bottom: 40px;
  padding-left: 0;
}
@media screen and (max-width: 768px){
  .aio.lp2 .fv__notice {
    bottom: 20px;
  }
}


@media screen and (max-width: 1000px){
  .lp2 .fv__right {
    margin-bottom: auto;
  }
}
