@charset "UTF-8";
/* Scss Document */
:root {
  --pc: 1000px;
  --sp: 999px;
  --fs48: 4.8rem;
  --fs40: 4rem;
  --fs36: 3.6rem;
  --fs28: 2.8rem;
  --fs22: 2.2rem;
  --fs20: 2.0rem;
  --fs18: 1.8rem;
  --fs16: 1.6rem;
  --fs14:1.4rem;
  --fs12:1.2rem; }

@media (max-width: 999px) {
  :root {
    --fs48: 2.6rem;
    --fs40: 2.2rem;
    --fs36: 2.4rem;
    --fs28: 2.2rem;
    --fs22: 2.0rem;
    --fs20: 1.8rem;
    --fs18: 1.4rem;
    --fs16: 1.4rem;
    --fs14: 1.2rem;
    --fs12: 1.0rem; } }
/* 
---------------------------------------
メインビジュアル
---------------------------------------
*/
#kv {
  width: 100%;
  height: 100vh;
  background: url(../img/home/fv_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: 0.3s;
  z-index: -2;
  display: flex;
  align-items: flex-end;
  /* スクロールダウンの位置 */
  /* 矢印のアニメーション部分 */
  /* 矢印のアニメーション */ }
  @media (max-width: 999px) {
    #kv {
      min-height: -webkit-fill-available;
      background: url(../img/home/fv_bg_sp.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; } }
  #kv .ttl {
    width: 77rem;
    height: auto;
    margin-bottom: 16rem; }
  #kv .hibi {
    position: absolute;
    mix-blend-mode: screen;
    width: 125.5rem;
    height: 85.3rem; }
    @media (max-width: 999px) {
      #kv .hibi {
        width: 37.5rem;
        height: 33.5rem; } }
  #kv .hibi1 {
    top: 0;
    right: 0; }
    @media (max-width: 999px) {
      #kv .hibi1 {
        top: 70px;
        right: 10px; } }
  #kv .hibi2 {
    top: 20rem;
    right: 30rem; }
    @media (max-width: 999px) {
      #kv .hibi2 {
        top: -3rem;
        right: 16rem; } }
  #kv .hibi,
  #kv .ttl {
    opacity: 0;
    transition: opacity 0.8s ease; }
  #kv .is-show {
    opacity: 1; }
  #kv .scroll {
    padding-top: 11rem;
    position: absolute;
    bottom: 5vw;
    right: 0;
    left: 0;
    color: #fff;
    text-align: center;
    font-size: 1.4rem; }
    @media (max-width: 999px) {
      #kv .scroll {
        display: none; } }
  #kv .scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    content: "";
    width: 6rem;
    height: 6rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0); }
  40% {
    opacity: 1; }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px); }
  100% {
    opacity: 0; } }
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden; }

/* ====================================================
  SPLASH
==================================================== */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden; }

/* ====================================================
  LOADING LOGO
==================================================== */
#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff; }

/* =========================================
   CURTAIN 初期状態：画面を完全に覆う
========================================= */
.splashbg1,
.splashbg2 {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform; }

/* 左側の幕（画面左半分） */
.splashbg1 {
  left: 0;
  transform: translateX(0);
  position: relative;
  background: #fff; }
  .splashbg1::before {
    content: '';
    position: absolute;
    background: rgba(110, 186, 242, 0.2);
    border-radius: 2rem;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 94%;
    height: 94%;
    z-index: 1; }
  .splashbg1::after {
    content: '';
    position: absolute;
    background: url("../img/loading_bg_left.png");
    top: 3%;
    left: 5%;
    z-index: 2;
    width: 94%;
    height: 94%;
    background-size: cover; }

/* 右側の幕（画面右半分） */
.splashbg2 {
  right: 0;
  transform: translateX(0);
  background: #fff; }
  .splashbg2::before {
    content: '';
    position: absolute;
    background: rgba(110, 186, 242, 0.2);
    border-radius: 2rem;
    width: 94%;
    height: 94%;
    z-index: 1;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
  .splashbg2::after {
    content: '';
    position: absolute;
    background: url(../img/loading_bg_right.png);
    top: 3%;
    left: 1%;
    z-index: 2;
    width: 94%;
    height: 94%;
    background-size: cover; }

/* =========================================
   APPEAR → 中央から左右に開く
========================================= */
body.appear .splashbg1 {
  animation: curtainLeft 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards; }

body.appear .splashbg2 {
  animation: curtainRight 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards; }

@keyframes curtainLeft {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }
@keyframes curtainRight {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(100%); } }
/* ====================================================
  CONTENT APPEAR
==================================================== */
#header,
#container {
  opacity: 0.03; }

body.appear #header,
body.appear #container {
  opacity: 1;
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s; }

html,
body {
  background-color: #fff;
  /* FV背景と同じ色 */ }

body.appear #header,
body.appear #container {
  visibility: visible; }

@keyframes PageAnimeAppear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* 
---------------------------------------
home01
---------------------------------------
*/
#home01 {
  background: url("../img/home/01_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20rem 0 30rem;
  margin-top: -0.2rem; }
  @media (max-width: 999px) {
    #home01 {
      padding: 6rem 0 14rem;
      min-height: -webkit-fill-available;
      background: url(../img/home/01_bg_sp.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; } }
  #home01 .txtImg {
    width: 59rem;
    height: auto; }
    @media (max-width: 999px) {
      #home01 .txtImg {
        width: 22rem; } }
  #home01 .ttl {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; }
    #home01 .ttl span {
      display: inline-block;
      width: fit-content;
      padding: 0.5rem 3rem 0.5rem 4rem;
      color: #fff;
      font-weight: 700;
      font-size: 4.8rem;
      border-radius: 2rem;
      background: linear-gradient(45deg, #333333 0%, rgba(0, 0, 0, 0.2) 100%); }
      @media (max-width: 999px) {
        #home01 .ttl span {
          font-size: 2.2rem;
          padding: 0.2rem 1.5rem 0.2rem 2rem;
          border-radius: 999px; } }
    #home01 .ttl span.grade2 {
      padding: 0.5rem 4rem 0.5rem 3rem;
      background: linear-gradient(-45deg, #333333 0%, rgba(0, 0, 0, 0.2) 100%);
      margin-left: 5rem; }
      @media (max-width: 999px) {
        #home01 .ttl span.grade2 {
          padding: 0.2rem 1.5rem 0.2rem 1.5rem; } }
      @media (max-width: 999px) {
        #home01 .ttl span.grade2 {
          margin-left: 2rem; } }
  #home01 .txt {
    font-size: 2.2rem;
    color: #fff;
    line-height: 2.5; }
    @media (max-width: 999px) {
      #home01 .txt {
        font-size: 1.6rem;
        line-height: 2; } }

/* 
---------------------------------------
home02
---------------------------------------
*/
#home02 {
  padding: 16rem 0 12rem;
  background: #E2F1FD; }
  @media (max-width: 999px) {
    #home02 {
      padding: 16rem 0 6rem; } }
  #home02 .inner16 {
    background: #E2F1FD;
    margin-top: -30rem;
    position: relative;
    padding: 16rem 0 0 0;
    border-radius: 2rem; }
    @media (max-width: 999px) {
      #home02 .inner16 {
        margin-top: -22rem;
        padding: 8rem 0 0 0; } }
  #home02 .ttlBox {
    text-align: center; }
    @media (max-width: 999px) {
      #home02 .ttlBox {
        margin-bottom: 8rem; } }
    #home02 .ttlBox .ttlIco {
      width: 22rem;
      height: auto;
      margin: -2rem auto 2rem;
      position: absolute;
      right: 0;
      left: 0;
      top: -3rem; }
      @media (max-width: 999px) {
        #home02 .ttlBox .ttlIco {
          width: 10rem;
          top: -1rem; } }
    #home02 .ttlBox .ttl {
      font-size: 4.6rem;
      line-height: 1.5;
      font-weight: 700;
      color: #01A0E9;
      text-align: center;
      padding-top: 1rem; }
      @media (max-width: 999px) {
        #home02 .ttlBox .ttl {
          font-size: 2.2rem; } }
      #home02 .ttlBox .ttl span {
        position: relative;
        color: #EF6A6B;
        margin: 0 0.6rem; }
        @media (max-width: 999px) {
          #home02 .ttlBox .ttl span {
            margin: 0 0.3rem; } }
        #home02 .ttlBox .ttl span::before, #home02 .ttlBox .ttl span::after {
          content: '';
          position: absolute;
          top: -0.8rem;
          width: 0.8rem;
          height: 0.8rem;
          background: #EF6A6B;
          border-radius: 50%; }
          @media (max-width: 999px) {
            #home02 .ttlBox .ttl span::before, #home02 .ttlBox .ttl span::after {
              top: -0.4rem;
              width: 0.4rem;
              height: 0.4rem; } }
        #home02 .ttlBox .ttl span::before {
          left: 20%; }
        #home02 .ttlBox .ttl span::after {
          right: 20%; }
    #home02 .ttlBox .ttlDeco {
      font-size: 2rem;
      color: #6EBAF2; }
      @media (max-width: 999px) {
        #home02 .ttlBox .ttlDeco {
          font-size: 1rem; } }
  #home02 .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14rem 5rem; }
    @media (max-width: 999px) {
      #home02 .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8rem 1.5rem;
        width: 100%; } }
  #home02 .card {
    position: relative;
    background: #fff;
    border-radius: 2rem;
    padding: 4rem 0rem 4rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(110, 193, 243, 0.2);
    backdrop-filter: blur(30px); }
    @media (max-width: 999px) {
      #home02 .card {
        padding: 0rem 0rem 1.5rem;
        border-radius: 1rem; } }
    #home02 .card .ico {
      width: 18rem;
      height: auto;
      margin: -12rem auto 2rem; }
      @media (max-width: 999px) {
        #home02 .card .ico {
          width: 9rem;
          margin: -6rem auto 1rem; } }
    #home02 .card .sttl {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.5; }
      @media (max-width: 999px) {
        #home02 .card .sttl {
          font-size: 1.2rem; } }

/* 
---------------------------------------
home03
---------------------------------------
*/
#home03 {
  padding: 12rem 0; }
  @media (max-width: 999px) {
    #home03 {
      padding: 6rem 0; } }
  #home03 .ttlBox {
    text-align: center; }
    #home03 .ttlBox .ttl {
      font-size: 4.4rem;
      line-height: 1.5;
      font-weight: 700;
      color: #01A0E9;
      text-align: center; }
      @media (max-width: 999px) {
        #home03 .ttlBox .ttl {
          font-size: 2.2rem; } }
    #home03 .ttlBox .ttlDeco {
      font-size: 2rem;
      color: #6EBAF2; }
      @media (max-width: 999px) {
        #home03 .ttlBox .ttlDeco {
          font-size: 1rem; } }
  #home03 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16rem 5vw; }
    @media (max-width: 999px) {
      #home03 .cards {
        grid-template-columns: 1fr;
        gap: 6rem; } }
  #home03 .card {
    padding: 5rem;
    position: relative;
    background: #fff;
    z-index: 1; }
    @media (max-width: 999px) {
      #home03 .card {
        padding: 3rem;
        border-radius: 1rem; } }
    #home03 .card:before {
      content: '';
      background: #E2F1FD;
      border-radius: 2rem;
      width: 100%;
      height: 100%;
      position: absolute;
      right: -2rem;
      bottom: -2rem;
      z-index: 0; }
      @media (max-width: 999px) {
        #home03 .card:before {
          border-radius: 1rem;
          right: -1rem;
          bottom: -1rem; } }
    #home03 .card:after {
      border: 0.2rem solid #6EBAF2;
      border-radius: 2rem;
      content: '';
      background: #fff;
      border-radius: 2rem;
      width: 100%;
      height: 100%;
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 0; }
      @media (max-width: 999px) {
        #home03 .card:after {
          border-radius: 1rem;
          right: 0;
          bottom: 0; } }
    #home03 .card img, #home03 .card .sttl, #home03 .card .stxt {
      position: relative;
      z-index: 1; }
  #home03 .pic {
    width: 55rem;
    height: auto;
    margin: -12rem auto 4rem; }
    @media (max-width: 999px) {
      #home03 .pic {
        width: 100%;
        margin: -6rem auto 2rem; } }
  #home03 .sttl {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 700; }
    @media (max-width: 999px) {
      #home03 .sttl {
        font-size: 2rem;
        margin-bottom: 1rem; } }
  #home03 .btn {
    margin: 0 auto; }

/* 
---------------------------------------
home04
---------------------------------------
*/
#home04 {
  padding: 30rem 0 12rem;
  background: linear-gradient(135deg, #6EBAF2 0%, #01A0E9 100%);
  margin-top: 30rem; }
  @media (max-width: 999px) {
    #home04 {
      padding: 22rem 0 6rem;
      margin-top: 8rem;
      border-radius: 2rem; } }
  #home04 .inner18 {
    margin-top: -60rem; }
    @media (max-width: 999px) {
      #home04 .inner18 {
        margin-top: -30rem; } }
    #home04 .inner18 img {
      border-radius: 2rem; }
  #home04 .ttlBox {
    text-align: center; }
    @media (max-width: 999px) {
      #home04 .ttlBox {
        margin-bottom: 2rem; } }
    #home04 .ttlBox .ttlIco {
      width: 15rem;
      height: auto;
      margin: -10rem auto 3rem; }
      @media (max-width: 999px) {
        #home04 .ttlBox .ttlIco {
          width: 8rem;
          margin: -5rem auto 1.5rem; } }
    #home04 .ttlBox .ttl {
      font-size: 4.6rem;
      line-height: 1.5;
      font-weight: 700;
      color: #fff;
      text-align: center; }
      @media (max-width: 999px) {
        #home04 .ttlBox .ttl {
          font-size: 2.2rem; } }
    #home04 .ttlBox .ttlDeco {
      font-size: 2rem;
      color: rgba(255, 255, 255, 0.5); }
      @media (max-width: 999px) {
        #home04 .ttlBox .ttlDeco {
          font-size: 1rem; } }
  #home04 .boxs0 .sttlBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto 6rem; }
    @media (max-width: 999px) {
      #home04 .boxs0 .sttlBox {
        width: 80%;
        margin: 0 auto 2rem; } }
    #home04 .boxs0 .sttlBox .sttl {
      font-size: 3.6rem;
      color: #fff;
      background: #EF6A6B;
      padding: 0 2rem;
      width: max-content;
      border-radius: 1rem;
      font-weight: bold; }
      @media (max-width: 999px) {
        #home04 .boxs0 .sttlBox .sttl {
          font-size: 1.4rem;
          border-radius: 999px; } }
    #home04 .boxs0 .sttlBox .line {
      content: '';
      width: 100%;
      height: 0.4rem;
      background: #EF6A6B;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      z-index: -1; }
  #home04 .boxs1 {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 10rem; }
    @media (max-width: 999px) {
      #home04 .boxs1 {
        flex-direction: column;
        gap: 6rem;
        max-width: 34rem;
        margin: 0 auto 5rem; } }
    #home04 .boxs1 .box {
      width: 36rem;
      aspect-ratio: 1 / 1;
      border-radius: 999px;
      background: #fff;
      text-align: center;
      position: relative;
      display: grid;
      grid-template-rows: 10rem 8rem auto;
      align-items: start;
      justify-items: center;
      padding-top: 8rem; }
      @media (max-width: 999px) {
        #home04 .boxs1 .box {
          width: 72%;
          padding-top: 5rem;
          margin: 0 auto;
          grid-template-rows: 6.5rem 7rem auto; } }
      @media (max-width: 999px) {
        #home04 .boxs1 .box .ico.ico1 {
          bottom: -2rem; } }
    #home04 .boxs1 .number {
      width: 10rem;
      height: auto;
      position: absolute;
      left: 0;
      top: 0; }
      @media (max-width: 999px) {
        #home04 .boxs1 .number {
          width: 6.5rem; } }
    #home04 .boxs1 .ttl {
      font-size: 7rem;
      color: #01A0E9;
      font-weight: 700;
      line-height: 1; }
      @media (max-width: 999px) {
        #home04 .boxs1 .ttl {
          font-size: 5rem; } }
    #home04 .boxs1 .txt {
      font-size: 2.4rem;
      line-height: 1.5;
      font-weight: 700; }
      @media (max-width: 999px) {
        #home04 .boxs1 .txt {
          font-size: 1.8rem; } }
      #home04 .boxs1 .txt small {
        font-size: 2.2rem; }
        @media (max-width: 999px) {
          #home04 .boxs1 .txt small {
            font-size: 1.4rem; } }
    #home04 .boxs1 .ico {
      position: absolute;
      width: 12rem;
      height: auto;
      bottom: -4rem;
      left: 50%;
      transform: translateX(-50%); }
      @media (max-width: 999px) {
        #home04 .boxs1 .ico {
          width: 8rem;
          bottom: -3rem; } }
  #home04 .boxs2 {
    background: #fff;
    padding: 10rem;
    display: flex;
    flex-direction: column;
    border-radius: 2rem;
    margin-bottom: 20rem; }
    @media (max-width: 999px) {
      #home04 .boxs2 {
        padding: 2rem;
        border-radius: 1rem;
        margin-bottom: 10rem; } }
    #home04 .boxs2 .box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 6rem;
      margin-bottom: 8rem; }
      @media (max-width: 999px) {
        #home04 .boxs2 .box {
          flex-direction: column-reverse;
          margin-bottom: 4rem;
          gap: 2rem; } }
    #home04 .boxs2 .box.last {
      margin-bottom: 0; }
    #home04 .boxs2 .sbox {
      width: calc(580/1200*100%); }
      @media (max-width: 999px) {
        #home04 .boxs2 .sbox {
          width: 100%; } }
    #home04 .boxs2 .pic {
      width: calc(540/1200*100%);
      height: max-content;
      border-radius: 2rem; }
      @media (max-width: 999px) {
        #home04 .boxs2 .pic {
          width: 100%;
          border-radius: 1rem; } }
    #home04 .boxs2 .numberBox {
      display: flex;
      align-items: center;
      margin-bottom: 2rem;
      color: #6EBAF2; }
      @media (max-width: 999px) {
        #home04 .boxs2 .numberBox {
          margin-bottom: 1rem; } }
    #home04 .boxs2 .number {
      font-size: 2rem;
      padding: 0rem 1rem;
      border-left: 1px solid #6EBAF2;
      border-right: 1px solid #6EBAF2;
      margin-right: 2rem;
      height: 3rem;
      display: flex;
      align-items: center; }
      @media (max-width: 999px) {
        #home04 .boxs2 .number {
          font-size: 1.4rem;
          margin-right: 1rem;
          height: 2rem; } }
    #home04 .boxs2 .ttl {
      font-size: 2.6rem;
      font-weight: 700; }
      @media (max-width: 999px) {
        #home04 .boxs2 .ttl {
          font-size: 1.8rem; } }
    #home04 .boxs2 .sttlBox {
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid #6EBAF2; }
      @media (max-width: 999px) {
        #home04 .boxs2 .sttlBox {
          margin-bottom: 1rem;
          padding-bottom: 1rem; } }
    #home04 .boxs2 .sttl {
      font-size: 3.8rem;
      line-height: 1.5;
      font-weight: 700; }
      @media (max-width: 999px) {
        #home04 .boxs2 .sttl {
          font-size: 2.2rem; } }
    #home04 .boxs2 .stxt {
      font-size: 1.8rem; }
      @media (max-width: 999px) {
        #home04 .boxs2 .stxt {
          font-size: 1.4rem; } }
    #home04 .boxs2 .note {
      font-size: 1.6rem; }
      @media (max-width: 999px) {
        #home04 .boxs2 .note {
          font-size: 1rem; } }
    #home04 .boxs2 .priceTtl {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center; }
      @media (max-width: 999px) {
        #home04 .boxs2 .priceTtl {
          font-size: 1.6rem;
          margin-bottom: 0.5rem; } }
    #home04 .boxs2 ul li {
      padding: 1rem 2rem;
      background: rgba(248, 213, 0, 0.2);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
      font-weight: 700;
      line-height: 1.5; }
      @media (max-width: 999px) {
        #home04 .boxs2 ul li {
          padding: 0.5rem 1rem; } }
      #home04 .boxs2 ul li span {
        background: #F8D500;
        font-size: 1.8rem;
        border-radius: 999%;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex: 0 0 3rem; }
        @media (max-width: 999px) {
          #home04 .boxs2 ul li span {
            font-size: 1.2rem;
            width: 2rem;
            height: 2rem;
            margin-right: 0.5rem;
            flex: 0 0 2rem; } }
    #home04 .boxs2 .priceTotal {
      font-size: 1.8rem;
      padding: 1rem 0;
      width: 100%;
      border-radius: 1rem;
      text-align: center;
      background: #F8D500;
      font-weight: 700; }
      @media (max-width: 999px) {
        #home04 .boxs2 .priceTotal {
          font-size: 1.4re;
          padding: 0.5rem 0; } }
      #home04 .boxs2 .priceTotal strong {
        font-size: 2.8rem;
        padding: 0 1rem; }
        @media (max-width: 999px) {
          #home04 .boxs2 .priceTotal strong {
            font-size: 2rem; } }
  #home04 .boxs3 {
    padding: 10rem;
    background: #FEF7CC;
    border-radius: 2rem;
    position: relative; }
    @media (max-width: 999px) {
      #home04 .boxs3 {
        padding: 6rem 2rem 2rem;
        border-radius: 1rem; } }
    #home04 .boxs3 .ttlBox {
      position: absolute;
      top: -12rem;
      left: 0;
      right: 0;
      width: max-content;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      @media (max-width: 999px) {
        #home04 .boxs3 .ttlBox {
          top: -6rem; } }
    #home04 .boxs3 .decoBox {
      display: flex;
      align-items: center;
      margin-bottom: 1.6rem; }
      @media (max-width: 999px) {
        #home04 .boxs3 .decoBox {
          margin-bottom: 0.2rem; } }
    #home04 .boxs3 .line {
      width: 2.6rem;
      height: auto; }
      @media (max-width: 999px) {
        #home04 .boxs3 .line {
          width: 1.6rem; } }
    #home04 .boxs3 .decoTxt {
      font-size: 3rem;
      line-height: 1.5;
      padding: 0 1rem;
      color: #fff;
      font-weight: 700; }
      @media (max-width: 999px) {
        #home04 .boxs3 .decoTxt {
          font-size: 1.8rem;
          padding: 0 0.5rem; } }
    #home04 .boxs3 .ttl {
      font-size: 4.6rem;
      line-height: 1.5;
      font-weight: 700;
      color: #fff;
      text-align: center;
      padding: 2rem 5rem;
      background: #EF6A6B;
      border-radius: 1rem; }
      @media (max-width: 999px) {
        #home04 .boxs3 .ttl {
          font-size: 2.2rem;
          padding: 1rem 2.5rem; } }
      #home04 .boxs3 .ttl span {
        position: relative;
        color: #fff;
        margin: 0 0.6rem;
        font-size: 6rem; }
        @media (max-width: 999px) {
          #home04 .boxs3 .ttl span {
            font-size: 3rem;
            margin: 0 0.3rem; } }
        #home04 .boxs3 .ttl span::before, #home04 .boxs3 .ttl span::after {
          content: '';
          position: absolute;
          top: 0;
          width: 0.8rem;
          height: 0.8rem;
          background: #fff;
          border-radius: 50%; }
          @media (max-width: 999px) {
            #home04 .boxs3 .ttl span::before, #home04 .boxs3 .ttl span::after {
              width: 0.4rem;
              height: 0.4rem; } }
        #home04 .boxs3 .ttl span::before {
          left: 20%; }
        #home04 .boxs3 .ttl span::after {
          right: 20%; }
    #home04 .boxs3 .box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 6rem; }
      @media (max-width: 999px) {
        #home04 .boxs3 .box {
          flex-direction: column;
          gap: 3rem; } }
    #home04 .boxs3 .sbox {
      width: 57rem; }
      @media (max-width: 999px) {
        #home04 .boxs3 .sbox {
          width: 100%; } }
    #home04 .boxs3 .sttlBox {
      margin-bottom: 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 4rem; }
      @media (max-width: 999px) {
        #home04 .boxs3 .sttlBox {
          flex-direction: column;
          margin-bottom: 2rem;
          gap: 1rem; } }
    #home04 .boxs3 .ico {
      width: 15rem;
      height: auto; }
      @media (max-width: 999px) {
        #home04 .boxs3 .ico {
          width: 7rem; } }
    #home04 .boxs3 .sttl {
      font-size: 2.6rem;
      line-height: 1.5;
      color: #01A0E9;
      font-weight: bold; }
      @media (max-width: 999px) {
        #home04 .boxs3 .sttl {
          font-size: 1.8rem;
          text-align: center; } }
    #home04 .boxs3 .picBox {
      width: 55rem;
      margin-top: 2rem; }
      @media (max-width: 999px) {
        #home04 .boxs3 .picBox {
          width: 100%;
          margin-top: 0; } }
    #home04 .boxs3 .picTtl {
      padding: 1rem;
      background: #6EBAF2;
      text-align: center;
      color: #fff;
      font-weight: 700;
      line-height: 1.5;
      font-size: 2rem;
      border-radius: 2rem 2rem 0 0; }
      @media (max-width: 999px) {
        #home04 .boxs3 .picTtl {
          padding: 0.5rem;
          font-size: 1.6rem; } }
    #home04 .boxs3 .pic {
      padding: 2rem;
      background: #fff;
      margin-bottom: 1rem;
      border-radius: 0 0 2rem 2rem; }
      @media (max-width: 999px) {
        #home04 .boxs3 .pic {
          padding: 1rem;
          margin-bottom: 0.5rem;
          border-radius: 0 0 1rem 1rem; } }
    #home04 .boxs3 .note {
      font-size: 1.4rem;
      line-height: 1.5; }
      @media (max-width: 999px) {
        #home04 .boxs3 .note {
          font-size: 1.2rem; } }

/* 
---------------------------------------
home05
---------------------------------------
*/
#home05 {
  padding: 16rem 0;
  margin: 6rem;
  border-radius: 2rem;
  background: url("../img/home/05_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (max-width: 999px) {
    #home05 {
      margin: 2rem;
      padding: 6rem 0rem;
      border-radius: 1rem;
      min-height: -webkit-fill-available;
      background: url(../img/home/05_bg_sp.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; } }
  #home05 .ttlBox {
    text-align: center; }
    #home05 .ttlBox .ttlIco {
      width: 15rem;
      height: auto;
      margin: -10rem auto 3rem; }
      @media (max-width: 999px) {
        #home05 .ttlBox .ttlIco {
          width: 7rem;
          margin: -5rem auto 1.5rem; } }
    #home05 .ttlBox .ttl {
      font-size: 4.6rem;
      line-height: 1.5;
      font-weight: 700;
      color: #01A0E9;
      text-align: center; }
      @media (max-width: 999px) {
        #home05 .ttlBox .ttl {
          font-size: 2.2rem; } }
    #home05 .ttlBox .ttlDeco {
      font-size: 2rem;
      color: rgba(110, 186, 242, 0.5); }
      @media (max-width: 999px) {
        #home05 .ttlBox .ttlDeco {
          font-size: 1rem; } }
  #home05 .btn {
    margin: 0 auto;
    max-width: 38rem; }
  #home05 .boxs {
    display: flex;
    gap: 4vw; }
    @media (max-width: 999px) {
      #home05 .boxs {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem; } }
  #home05 .box {
    width: 65rem;
    border-radius: 2rem;
    background: #fff;
    overflow: hidden; }
    @media (max-width: 999px) {
      #home05 .box {
        width: 100%;
        border-radius: 1rem; } }
  #home05 .sttlBox {
    padding: 5rem 6rem; }
    @media (max-width: 999px) {
      #home05 .sttlBox {
        padding: 2.5rem 3rem; } }
  #home05 .sttl {
    font-size: 2rem;
    color: #EF6A6B;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 700; }
    @media (max-width: 999px) {
      #home05 .sttl {
        font-size: 1.6rem;
        margin-bottom: 1rem; } }
  @media (max-width: 999px) {
    #home05 .stxt {
      font-size: 1.4rem; } }

/* 
---------------------------------------
home07
---------------------------------------
*/
#home07 {
  padding: 16rem 0;
  background: url("../img/home/07_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (max-width: 999px) {
    #home07 {
      padding: 6rem 0; } }
  @media (max-width: 999px) {
    #home07 .boxs {
      max-width: 40rem;
      margin: 0 auto 2rem; } }
  #home07 .ttlBox {
    text-align: center; }
    @media (max-width: 999px) {
      #home07 .ttlBox {
        margin-bottom: 2rem; } }
    #home07 .ttlBox .ttl {
      font-size: 4.6rem;
      line-height: 1.5;
      font-weight: 700;
      color: #01A0E9;
      text-align: center; }
      @media (max-width: 999px) {
        #home07 .ttlBox .ttl {
          font-size: 2.2rem; } }
    #home07 .ttlBox .ttlDeco {
      font-size: 2rem;
      color: rgba(110, 186, 242, 0.5); }
      @media (max-width: 999px) {
        #home07 .ttlBox .ttlDeco {
          font-size: 1rem; } }
  #home07 .txt {
    text-align: center; }
  @media (max-width: 999px) {
    #home07 .card {
      display: flex;
      margin-bottom: 2rem;
      border-radius: 2rem;
      overflow: hidden; } }
  #home07 .box {
    display: flex;
    align-items: center;
    border-radius: 2rem;
    overflow: hidden;
    background: #fff;
    margin-bottom: 2rem; }
    @media (max-width: 999px) {
      #home07 .box {
        flex-direction: column;
        margin-bottom: 0;
        border-radius: 0;
        padding: 2rem; } }
  #home07 .number {
    font-size: 6rem;
    padding: 0 3.5rem;
    background: #B6DCF8;
    color: #fff;
    height: 18rem;
    display: flex;
    align-items: center; }
    @media (max-width: 999px) {
      #home07 .number {
        font-size: 1.8rem;
        padding: 0.5rem;
        height: auto; } }
  #home07 .ico {
    margin: 0 4rem 0 6rem;
    width: 13rem;
    height: auto; }
    @media (max-width: 999px) {
      #home07 .ico {
        margin: 0 auto 1rem;
        width: 7rem; } }
  #home07 .sttl {
    font-size: 2.6rem;
    font-weight: bold;
    color: #01A0E9;
    line-height: 1.5;
    margin-bottom: 1rem; }
    @media (max-width: 999px) {
      #home07 .sttl {
        font-size: 1.8rem;
        text-align: center; } }
  #home07 .btn {
    margin: 0 auto;
    max-width: 38rem; }
    @media (max-width: 999px) {
      #home07 .btn {
        width: 90%; } }

/* 
---------------------------------------
home08
---------------------------------------
*/
#home08 {
  padding: 16rem 0;
  background: url("../img/home/08_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (max-width: 999px) {
    #home08 {
      padding: 6rem 0;
      min-height: -webkit-fill-available;
      background: url(../img/home/08_bg.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; } }
  #home08 .ttlBox {
    text-align: center; }
    @media (max-width: 999px) {
      #home08 .ttlBox {
        margin-bottom: 2rem; } }
    #home08 .ttlBox .ttl {
      font-size: 4.6rem;
      line-height: 1.5;
      font-weight: 700;
      color: #01A0E9;
      text-align: center; }
      @media (max-width: 999px) {
        #home08 .ttlBox .ttl {
          font-size: 2.2rem; } }
    #home08 .ttlBox .ttlDeco {
      font-size: 2rem;
      color: rgba(110, 186, 242, 0.5); }
      @media (max-width: 999px) {
        #home08 .ttlBox .ttlDeco {
          font-size: 1rem; } }
  #home08 .txt {
    text-align: center; }
  #home08 .btn {
    margin: 0 auto;
    max-width: 38rem; }
    @media (max-width: 999px) {
      #home08 .btn {
        width: 90%; } }
  #home08 .box {
    background: #fff;
    padding: 4rem 3vw;
    border-radius: 2rem;
    border: 2px solid #6EBAF2; }
    @media (max-width: 999px) {
      #home08 .box {
        padding: 2rem;
        border: 1px solid #6EBAF2; } }
  #home08 dl {
    display: flex;
    align-items: flex-start; }
  #home08 dl.q {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #DDDDDD; }
    @media (max-width: 999px) {
      #home08 dl.q {
        padding-bottom: 1rem;
        margin-bottom: 1rem; } }
  #home08 dt {
    width: 6rem;
    height: 6rem;
    font-size: 3rem;
    background: #6EBAF2;
    border-radius: 50%;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (max-width: 999px) {
      #home08 dt {
        margin-right: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.4rem; } }
  #home08 .q dt {
    color: #fff; }
  #home08 .q dd {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
    margin-top: 1rem; }
    @media (max-width: 999px) {
      #home08 .q dd {
        font-size: 1.8rem;
        margin-top: 0; } }
  #home08 .a dt {
    background: #F8D500; }
  #home08 .a dd {
    margin-top: 1rem;
    flex: 1;
    min-width: 0; }
    @media (max-width: 999px) {
      #home08 .a dd {
        margin-top: 0; } }

/* 
---------------------------------------
home09
---------------------------------------
*/
#home09 {
  padding: 16rem 0;
  background: #E2F1FD;
  margin: 6rem;
  border-radius: 2rem; }
  @media (max-width: 999px) {
    #home09 {
      padding: 6rem 0;
      margin: 2rem; } }
  #home09 .ttlBox {
    text-align: center; }
    @media (max-width: 999px) {
      #home09 .ttlBox {
        margin-bottom: 2rem; } }
    #home09 .ttlBox .ttl {
      font-size: 4.6rem;
      line-height: 1.5;
      font-weight: 700;
      color: #01A0E9;
      text-align: center; }
      @media (max-width: 999px) {
        #home09 .ttlBox .ttl {
          font-size: 2.2rem; } }
    #home09 .ttlBox .ttlDeco {
      font-size: 2rem;
      color: rgba(110, 186, 242, 0.5); }
      @media (max-width: 999px) {
        #home09 .ttlBox .ttlDeco {
          font-size: 1rem; } }
  #home09 .txt {
    text-align: center; }
  #home09 .btn {
    margin: 0 auto;
    max-width: 38rem;
    width: 90%; }
  #home09 .boxs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem; }
    @media (max-width: 999px) {
      #home09 .boxs {
        grid-template-columns: 1fr;
        gap: 2rem; } }
  @media (max-width: 999px) {
    #home09 .box {
      display: flex;
      justify-content: space-between; } }
  #home09 .box:hover {
    cursor: pointer;
    opacity: 1; }
  #home09 .pic {
    border-radius: 2rem;
    overflow: hidden; }
    @media (max-width: 999px) {
      #home09 .pic {
        width: calc(110/295*100%);
        height: max-content;
        margin-bottom: 0; } }
    #home09 .pic img {
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      height: 100%; }
  #home09 .sttl {
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
    transition: color 0.4s ease; }
    @media (max-width: 999px) {
      #home09 .sttl {
        width: calc(165/295*100%);
        font-size: 1.4rem; } }
  @media (max-width: 999px) {
    #home09 .stxt {
      display: none; } }
  @media (hover: hover) {
    #home09 .box:hover .pic img {
      transform: scale(1.08); }
    #home09 .box:hover .sttl {
      color: #01A0E9; } }

/* 
---------------------------------------
home10
---------------------------------------
*/
#home10 {
  padding: 10rem 0 16rem; }
  @media (max-width: 999px) {
    #home10 {
      padding: 4rem 0 6rem; } }
  #home10 .ttlBox {
    display: flex;
    align-items: flex-end;
    margin-top: -4rem;
    margin-left: -13rem;
    margin-bottom: 5rem; }
    @media (max-width: 999px) {
      #home10 .ttlBox {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 2rem; } }
  #home10 .ttlDeco {
    font-size: 10rem;
    color: #6EBAF2;
    line-height: 1; }
    @media (max-width: 999px) {
      #home10 .ttlDeco {
        font-size: 4.8rem; } }
  #home10 .ttl {
    font-size: 2rem;
    color: #6EBAF2;
    margin-left: 1.5rem;
    font-weight: bold; }
    @media (max-width: 999px) {
      #home10 .ttl {
        font-size: 1.2rem;
        margin-left: 0; } }
  #home10 .boxs {
    display: flex;
    justify-content: space-between;
    gap: 2vw; }
    @media (max-width: 999px) {
      #home10 .boxs {
        flex-direction: column-reverse; } }
  #home10 iframe {
    width: calc(600/1400*100%);
    height: 48rem;
    border-radius: 2rem; }
    @media (max-width: 999px) {
      #home10 iframe {
        width: 100%;
        height: 26rem; } }
  #home10 .box {
    width: calc(700/1400*100%); }
    @media (max-width: 999px) {
      #home10 .box {
        width: 100%;
        margin-bottom: 2rem; } }
  #home10 .btn {
    max-width: 38rem;
    width: 90%;
    margin: 0 auto; }
  #home10 .logo {
    width: 27rem;
    height: auto; }
    @media (max-width: 999px) {
      #home10 .logo {
        width: 15rem;
        margin: 0 auto 2rem; } }
