@charset "UTF-8";
/*******************************************************
 reset
********************************************************/
/* The new CSS reset - version 1.11.3 (last updated 25.08.2024) */
/* GitHub page: https://github.com/elad2412/the-new-css-reset */
/* https://github.com/elad2412/the-new-css-reset/blob/main/css/reset.css */
*:where(:not(html,iframe,canvas,img,svg,video,audio,dialog):not(svg *,symbol *)){all:unset;display:revert}*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}a,button{cursor:revert}ol,ul,menu,summary{list-style:none}ol{counter-reset:revert}img{max-inline-size:100%;max-block-size:100%}table{border-collapse:collapse}input,textarea{-webkit-user-select:auto}textarea{white-space:revert}meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert;box-sizing:border-box}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}::-webkit-details-marker{display:none}


/*******************************************************
 common
********************************************************/
:root {
  --color-base-rgb: 6 37 94;
  --color-main-rgb: 15 108 202;
  --color-gray-rgb: 123 133 147;
  --color-grayback-rgb: 244 244 246;
  --color-neo-rgb: 254 139 35;
  --color-lp-rgb: 1 80 227;
  /* #0150e3 */
}
html{
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  color: rgb(var(--color-base-rgb));
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  letter-spacing: 0.12em;
  font-optical-sizing: auto;
  font-style: normal;
  min-height: 100dvh;
  word-break: break-word;
  text-align: justify;
  font-feature-settings: "palt";
  text-size-adjust: 100%;
}
img {
  display: block;
  max-width: 100%;
}
/* ホバーコンテンツの設定（タッチ端末以外） */
@media (any-hover: hover) {
  a,
  button,
  input[type=submit] {
    -webkit-transition: opacity ease 0.3s, color ease 0.3s, border-color ease 0.3s, background-color ease 0.3s, background-image ease 0.3s;
    transition: opacity ease 0.3s, color ease 0.3s, border-color ease 0.3s, background-color ease 0.3s, background-image ease 0.3s;
  }
  a img,
  button img,
  input[type=submit] img {
    -webkit-transition: opacity ease 0.3s;
    transition: opacity ease 0.3s;
  }
  a:hover img,
  button:hover img,
  input[type=submit]:hover img {
    opacity: 0.7;
  }
  a[href*="tel:"] {
    pointer-events: none;
  }
  button {
    cursor: pointer;
  }
}
@media (any-hover: none) {
  a[href*="tel:"] {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }
}
/* 各サイズ設定 */
@media screen and (min-width: 769px) { /* PC */
  html {
    font-size: 62.5%;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) and (min-width: 769px) { /* TAB */
  html {
    font-size: 0.78125vw;
  }
  img[loading=lazy] {
    height: auto;
  }
}
@media screen and (max-width: 768px) { /* SP */
  html {
    font-size: 2.666vw;
  }
  .pc {
    display: none !important;
  }
  img {
    width: 100%;
    height: auto;
  }
}


/*******************************************************
 base-layout
********************************************************/
/* header */
header{
  background-color:#fff;
  position: fixed;
  top: 0;
  width: 100%;
  padding-inline: 2.5vw;
  z-index: 5;
  .inner{
    max-width: 152rem;
    /* height: 9rem; */
    height: 5rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
  }
  .logo{
    a{
      display: block;
      width: 23.4rem;
    }
  }
}
@media screen and (max-width: 767px) {
  header{
    padding-inline: 5.3vw;
    .inner{
      height: 5rem;
    }
    .logo{
      a{
        width: 17rem;
      }
    }
  }
}

/* footer */
footer{
  /* padding-bottom: 3rem; */
  background-color:#fff;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0;
  /*--------------*/
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  footer{
    position: static;
  }
}


/*******************************************************
 page-style--fullPageScroll
********************************************************/
/* PC */
@media screen and (min-width: 768px) {
  .section-sp{
    display: none;
  }
  body::-webkit-scrollbar,
  .section-main::-webkit-scrollbar {
    display: none;
  }
  .fullPageScroll {
    width: 100%;
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fullPageScroll::-webkit-scrollbar {
    display: none;
  }
  .section {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    .section-main{
      max-width: 120rem;
      height: 100%;
      margin-inline: auto;
      padding-block: 5rem 4rem;
      display: flex;
      overflow-y: auto;
      /* img{
        margin-inline: auto;
      } */
    }
  }
  .pagination{
    position: fixed;
    right: 1.3vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
  }
  .pagination a {
    display: block;
    width: 12px;
    height: 12px;
    margin: 20px 0;
    border-radius: 50%;
    background-color:rgb(var(--color-lp-rgb) / 50%);
    transition: transform 0.2s;
  }
  .pagination a.active {
    transform: scale(1.8);
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .fullPageScroll{
    padding-block: 5rem 4rem;
  }
  .pagination{
    display: none;
  }
}


/*******************************************************
 page-style
********************************************************/
/* PC */
@media screen and (min-width: 768px) {
  /* ボタン関係 */
  .btnarea{
    position: relative;
    margin: auto;
  }
  .cvbtn{
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
  }
  .section-title{
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .section-title:has(+ img){
    margin-bottom: 5rem;
  }
  .lead{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 3rem;
  }
  .notes{
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    span{
      font-size: 1rem;
      letter-spacing: 0.1em;
    }
  }
  .cvbtn::before{
    content: "";
    display: block;
    width: 1.6rem;
    height: 0.9rem;
    background: url(./img/icon-arw-w.svg) no-repeat right center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: rotate(-90deg) translateX(30%);
  }
  /* section1 */
  .section1{
    .box-wrap{
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 2rem;
    }
    .box-text{
      width: 47%;
      /* background-color: red; */
      padding-left: 6rem;
      .img01{
        width: 16rem;
        margin-bottom: 2rem;
      }
      .fv-title{
        font-size: 4.2rem;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.2;
      }
      .fv-lead{
        font-size: 2.7rem;
        font-weight: 700;
        letter-spacing: -0.015em;
        line-height: 1.55;
        margin-block: 1.2rem 2.6rem;
        .small{
          font-size: 2.2rem;
        }
        strong{
          margin-top: 0.5rem;
          display: inline-block;
          font-size: 4rem;
          letter-spacing: -0.05em;
          line-height: 1;
          span{
            color: rgb(var(--color-lp-rgb));
            font-size: 4.8rem;
            .value{
              font-size: 7rem;
            }
          }
        }
      }
    }
    .box-image{
      width: 50%;
      /* background-color: blue; */
      img{
        width: 100%;
      }
    }
    .box-btn{
      display: flex;
      justify-content: center;
      gap: 0 1rem;
      margin: 2rem auto 0;
      .cvbtn{
        padding: 1rem 4rem 1rem 8rem;
        width: clamp(22rem, 100%, 27rem);
        height: 8.4rem;
        font-size: 1.5rem;
        letter-spacing: 0;
        border: 1px solid rgb(var(--color-lp-rgb));
      }
      .cvbtn.cvbtn-prt{
        background: rgb(var(--color-lp-rgb)) url(./img/btnicon_prt.png) no-repeat left 1.5rem center;
        background-size: 5rem auto;
        color: #fff;
      }
      .cvbtn.cvbtn-neo{
        background: #fff url(./img/btnicon_neo.png) no-repeat left 1.5rem center;
        background-size: 5rem auto;
        color: rgb(var(--color-lp-rgb));
      }
      .cvbtn.cvbtn-neo::before{
        background: url(./img/icon-arw-lp.svg) no-repeat right center;
        background-size: 100% auto;
      }
    }
    .notes{
      text-align: center;
      padding-right: 7rem;
    }
  }
  /* section2 */
  .section2{
    .section-title{
      position: relative;
      padding-bottom: 2rem;
    }
    .section-title::before{
      content: "";
      display: block;
      width: 15rem;
      height: 0.3rem;
      background-color: rgb(var(--color-lp-rgb));
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
    }
  }
  /* section4 */
  .section4{
    .box-scroll{
      margin-top: 5rem;
      padding-inline: 6rem;
    }
  }
  /* section5 */
  .section5{
    .notes{
      text-align: right;
      padding-right: 7rem;
    }
  }
  /* section6 */
  .section6{
    .section-title span{
      position: relative;
      padding-inline: 8rem;
    }
    .section-title span::before,
    .section-title span::after{
      content: "";
      display: block;
      width: 3rem;
      height: 4.5rem;
      background: url(./img/icon-title.png) no-repeat;
      background-size: 100% auto;
      position: absolute;
      top: 50%;
    }
    .section-title span::before{
      left: 3rem;
      transform: translateY(-50%);
    }
    .section-title span::after{
      right: 3rem;
      transform: rotate(-180deg) translateY(50%);
    }
  }
  /* section8 */
  .section8{
    .box-btn{
      margin-top: 5rem;
      position: relative;
      .cvbtn{
        position: absolute;
        z-index: 1;
        bottom: 12rem;
      }
    }
    .cvbtn{
      padding: 1rem 4rem 1rem 2rem;
      width: clamp(22rem, 100%, 44.5rem);
      height: 6rem;
      font-size: 2rem;
      background: rgb(var(--color-lp-rgb));
      background-size: 5rem auto;
      color: #fff;
    }
    .cvbtn::before{
      width: 2rem;
      height: 1.3rem;
      right: 1.5rem;
    }
    .cvbtn.cvbtn-prt{
      left: 9.5rem;
    }
    .cvbtn.cvbtn-neo{
      right: 10.5rem;
      background-color: #0383aa;
    }
    .cvbtn.cvbtn-con{
      margin: 2.5rem auto 2rem;
      position: relative;
    }
  }
}
/* PC--hover */
@media (any-hover: hover) {
  .cvbtn:hover{
    opacity: 0.7;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  /* ボタン関係 */
  .cvbtn{
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-inline: auto;
    position: relative;
  }
  .cvbtn::before{
    content: "";
    display: block;
    width: 1.6rem;
    height: 0.9rem;
    background: url(./img/icon-arw-w.svg) no-repeat right center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: rotate(-90deg) translateX(30%);
  }
  .section{
    margin-top: 5rem;
    .section-title{
      font-size: 2.8rem;
      font-weight: 700;
      letter-spacing: 0.005em;
      text-align: center;
      line-height: 1.3;
      position: relative;
      margin-bottom: 2.5rem;
    }
    .section-title:has(+ img){
      margin-bottom: 2.5rem;
    }
    .lead{
      font-size: 1.6rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-align: center;
      line-height: 1.4;
      margin-block: -1rem 2.5rem;
    }
  }
  .notes{
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-top: 2rem;
    padding-inline: 2rem;
    span{
      font-size: 1rem;
      letter-spacing: 0.1em;
    }
  }
  /* section1 */
  .section1{
    margin-top: 0;
    padding-top: 1rem;
    .box-text{
      .img01{
        margin-bottom: 1rem;
      }
      .fv-title{
        font-size: 2.8rem;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.2;
        padding-left: 2rem;
      }
      .fv-lead{
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: -0.015em;
        line-height: 1.4;
        margin-block: 0.5rem 2rem;
        padding-left: 2rem;
        .small{
          font-size: 2.2rem;
        }
        strong{
          display: inline-block;
          font-size: 2.6rem;
          letter-spacing: 0;
          line-height: 1;
          span{
            color: rgb(var(--color-lp-rgb));
            font-size: 3rem;
            .value{
              font-size: 4.8rem;
            }
          }
        }
      }
    }
    .box-image{
      display: none;
    }
    .box-btn{
      margin-top: 3rem;
      .cvbtn{
        padding: 1rem 4rem 1rem 8rem;
        width: clamp(22rem, 100%, 27rem);
        height: 8.4rem;
        font-size: 1.5rem;
        letter-spacing: 0;
        border: 1px solid rgb(var(--color-lp-rgb));
      }
      .cvbtn.cvbtn-prt{
        background: rgb(var(--color-lp-rgb)) url(./img/btnicon_prt.png) no-repeat left 1.5rem center;
        background-size: 5rem auto;
        color: #fff;
        margin-bottom: 1rem;
      }
      .cvbtn.cvbtn-neo{
        background: #fff url(./img/btnicon_neo.png) no-repeat left 1.5rem center;
        background-size: 5rem auto;
        color: rgb(var(--color-lp-rgb));
      }
      .cvbtn.cvbtn-neo::before{
        background: url(./img/icon-arw-lp.svg) no-repeat right center;
        background-size: 100% auto;
      }
    }
  }
  /* section2 */
  .section2{
    .section-title{
      padding-bottom: 1rem;
    }
    .section-title::before{
      content: "";
      display: block;
      width: 6rem;
      height: 0.3rem;
      background-color: rgb(var(--color-lp-rgb));
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
    }
  }
  /* section4 */
  .section4{
    .box-scroll{
      margin: 2rem auto 0;
      width: calc(100% - 4rem);
      overflow-x: auto;
      padding-bottom: 1rem;
      .scrolllead{
        font-size: 1.0rem;
        margin-bottom: 0.7rem;
        color:rgb(var(--color-base-rgb) / 70%);
      }
      img{
        min-width: 72.8rem;
      }
    }
  }
  /* section5 */
  .section5{
    h3.section-title{
      margin-block: 2.5rem 1.7rem;
      color: rgb(var(--color-lp-rgb));
      font-size: 2.2rem;
    }
    h3 + .lead{
      font-size: 1.4rem;
      line-height: 1.5;
    }
  }
  /* section6 */
  .section6{
    .section-title::before,
    .section-title::after{
      content: "";
      display: block;
      width: 3rem;
      height: 4.5rem;
      background: url(./img/icon-title.png) no-repeat;
      background-size: 100% auto;
      position: absolute;
      top: 50%;
    }
    .section-title::before{
      left: 3rem;
      transform: translateY(-50%);
    }
    .section-title::after{
      right: 3rem;
      transform: rotate(-180deg) translateY(50%);
    }
  }
  /* section8 */
  .section8{
    padding-inline: 2rem;
    .item{
      position: relative;
      margin-bottom: 1rem;
      .cvbtn{
        width: 27rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.4rem;
      }
    }
    .cvbtn{
      padding: 1rem 4rem 1rem 2rem;
      height: 4.3rem;
      font-size: 1.6rem;
      background: rgb(var(--color-lp-rgb));
      background-size: 5rem auto;
      letter-spacing: 0.05em;
      color: #fff;
    }
    .cvbtn::before{
      right: 1.5rem;
    }
    .cvbtn.cvbtn-neo{
      background-color: #0383aa;
    }
    .cvbtn.cvbtn-con{
      margin-top: 3rem;
    }
  }
}
