@charset "utf-8";
html {
  scroll-behavior: smooth;
    background: #F9F9F9;
}
body {
  font-size: 18px;
  font-family: "Noto Sans CJK JP", "游ゴシック", "YuGothic", "Segoe UI", "Roboto", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 'Noto Sans JP', "Droid Sans", "ＭＳ Ｐゴシック", "Verdana", sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  color: #333;
}
/*-----------------------------------------トップボタン*/
#backtop {
  width: 20px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
/*----------------*/
/*------------------------------トップボタン*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  #backtop {
    width: 3vw;
    bottom: 20vw;
    right: 1vw;
    z-index: 99999;
  }
}
/*--------------*/
/*-----------------------------------------固定CVボタン*/
#cv_fix {
  display: none;
}
/*----------------*/
/*------------------------------固定CVボタン*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  #cv_fix {
    display: block;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
  }
}
/*--------------*/

/*------------------------------パンくずリストPC*/
#breadcrumb {
    background: none;
  padding: 10px 0;
}

#breadcrumb li {
  display: inline;
}

#breadcrumb li:after {
  content: '>';
  padding: 0 10px;
  color: #333;
vertical-align: middle;    
}

#breadcrumb li:last-child:after {
  content: '';
}

#breadcrumb li a {
    font-size:.6em;
  text-decoration: none;
    color: #333;
}

#breadcrumb li a:hover {
  text-decoration: underline;
}
/*--------------*/

/*------------------------------パンくずリスト*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#breadcrumb {
    background: #fff;
  padding:0 5vw;
}
#breadcrumb li:after {
  content: '>';
  padding: 0 1vw;
}
#breadcrumb li a {
    font-size:2.5vw;
}
}
/*--------------*/


/*------------------------------ヘッダーPC*/
#header{
    background: #fff;
    padding: 10px 20px;
}

#header .head_logo {
  width: 150px;
}

/*ここからナビ*/
#nav_list {
  width: 40%;
  height: 100%;
  background: #ecf8fd;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  visibility: hidden;
  overflow: auto;
}
.nav_list ul {
  margin:100px 50px;
}
.nav_list li {
  font-family: "Kosugi Maru", sans-serif;
    background: #fff;
  font-size: 1.1em;
    border-radius: 30px;
  padding: 15px 20px;
  margin: 0 0 20px;
}
.nav_list li a {
    display: flex;
   align-items: center;
  text-decoration: none;
  color: #4a509a;
}
.nav_list li a img{
    width: 40px;
    margin: 0 10px 0 0;
}
#nav_list .nav_logo {
  width: 250px;
  text-align: center;
  margin: 0 auto 50px;
  object-fit: contain;
}
/*--openNav---*/
.openNav #nav_list {
  visibility: visible;
}
/*---------------------
navigation btn
----------------------*/
.navBtn {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 20px;
  right: 10px;
  cursor: pointer;
  z-index: 999999;
}
.navBtn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #4a509a;
  transition: opacity .3s, transform .5s;
}
.navBtn span:nth-of-type(1), .navBtn span:nth-of-type(2) {
  margin-bottom: 10px;
}
.navBtn span:nth-of-type(1), .navBtn span:nth-of-type(3) {
  transition-delay: 0s;
}
.navBtn span:nth-of-type(2) {
  transition: .2s;
  transition-delay: .1s;
}
/*--.openNav-------*/
.openNav #jsNavBtn span:nth-of-type(1) {
  transform: translateY(13px) rotate(45deg);
  transition-delay: .1s;
}
.openNav #jsNavBtn span:nth-of-type(2) {
  width: 0;
  opacity: 0;
  transition-delay: 0s;
}
.openNav #jsNavBtn span:nth-of-type(3) {
  transform: translateY(-13px) rotate(-45deg);
  transition-delay: .1s;
}
/*--------------*/

/*------------------------------ヘッダー*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#header{
    padding: 1vw 3vw;
}

#header .head_logo {
  width: 23vw;
}   
    
  /*ここからナビ*/
  #nav_list {
    width: 100%;
    z-index: 999999999;
  }
  .nav_list ul {
    margin: 15vw 10vw;
  }
  .nav_list li {
      background: none;
    font-size: 3.5vw;
    font-weight: 600;
    border-bottom: .5vw dotted #4a509a;
      border-radius: 0;
    padding: 4vw 0;
      margin: 0 0 ;
  }

  .nav_list li a img {
    width: 8vw;
    margin: 0 2vw 0 0;
  }
  #nav_list .nav_logo {
    width: 40vw;
  }

  /*---------------------
navigation btn
----------------------*/
    
  .navBtn {
    width: 14vw;
    height: 10vw;
    top: 2vw;
    right: 1vw;
      padding: 2.5vw 3vw;
      z-index: 99999999999;
  }
  .navBtn span {
    width: 100%;
    height: .5vw;
    transition: opacity .3s, transform .5s;
  }
  .navBtn span:nth-of-type(1), .navBtn span:nth-of-type(2) {
    margin-bottom: 1.5vw;
  }
  /*--.openNav-------*/
  .openNav #jsNavBtn span:nth-of-type(1) {
    transform: translateY(1.9vw) rotate(45deg);
    transition-delay: .1s;
  }
  .openNav #jsNavBtn span:nth-of-type(3) {
    transform: translateY(-1.9vw) rotate(-45deg);
    transition-delay: .1s;
  }
}
/*--------------*/


/*------------------------------全体の設定PCここから*/
main {
    width: 700px;
    box-shadow: 0 0 10px #E3E3E3;    
  margin: 0 auto;
}
section,#footer {
  width: 700px;
    padding: 100px 50px;
  margin: 0 auto;
    overflow-x: hidden;
}
div, p {
  line-height: 1.8em;
  text-align: justify;
  text-justify: inter-ideograph;
}
h1, h2, h3, h4 {
  line-height: 1.6em;
}
.flex{
    display: flex;
}
.small-txt {
  display: inline-block;
  line-height: 1.5em;
  font-size: .7em;
  margin: 10px 0 0;
}
.mgt50 {
  margin: 50px auto 0;
}
.mgt20 {
  margin: 20px auto 0;
}
.mgb20 {
  margin: 0 auto 20px;
}
.hover {
  transition: .5s;
}
.hover:hover {
  transform: scale(1.05);
  opacity: .8;
}
.sp_img {
  display: none;
}

/*--------------*/

/*------------------------------全体の設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
main {
    width: 100vw;
    box-shadow: none;    
}    
section,#footer {
  width: 100vw;
    padding: 15vw 5vw;
  margin: 0 auto;
}
  div, p {
    line-height: 1.7em;
    word-break: break-all;
  }
  p {
    font-size: 3.5vw;
  }
  h1, h2, h3, h4 {
    line-height: 1.8em;
  }
.small-txt {
  line-height: 1.5em;
  margin:2vw 0 0;
    font-size: 3vw;
}   
  .mgt50 {
    margin: 10vw auto 0;
  }
  .mgt20 {
    margin: 3vw auto 0;
  }
  .mgb20 {
    margin: 0 auto 5vw;
  }
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
}
/*--------------*/


/*------------------------------メインビューPC*/
#mv{
    background: #fddfe4;
    padding: 50px 30px 100px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}
h1 p{
    color: #4a509a;
    font-size: 1.5em;
    text-align: center;
}
h1 img{
    width: 520px;
    margin: 0 60px;
}
#mv .mv-woman-left{
    width: 180px;
    position: absolute;
    top:170px;
    left:-40px;
}
#mv .mv-woman-right{
    width: 185px;
    position: absolute;
    top:170px;
    right:-40px;
}
#mv .mv-feature{
    width: 380px;
    justify-content: space-between;
    margin: 10px auto 30px;
}
#mv .mv-feature div{
    width: 180px;
    height: 60px;
    line-height: 60px;
    background: #ecf8fd;
    color: #4a509a;
    font-family: "Kosugi Maru", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
}
#mv .mv-movie{
    width: 640px;
    border-radius: 20px;
}
#mv .mv-movie iframe{
    width: 100%;
    height: 360px;
    border-radius: 20px;
    object-fit: cover;
}
#mv .emblem img{
    width: 290px;
    margin: 20px auto 50px;
}
/*--------------*/

/*------------------------------メインビュー*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#mv{
    padding: 5vw 5vw 10vw;
}
h1 p{
    font-size: 4vw;
}
h1 img{
    width: 76vw;
    margin: 0 7vw;
}
#mv .mv-woman-left{
    width: 28vw;
    top:22vw;
    left:-7vw;
}
#mv .mv-woman-right{
    width: 28vw;
    top:22vw;
    right:-8vw;
}
#mv .mv-feature{
    width: 56vw;
    margin: 0 auto 5vw;
}
#mv .mv-feature div{
    width: 27vw;
    height: 10vw;
    line-height: 10vw;
    font-size: 3.5vw;
    border-radius: 1vw;
}
#mv .mv-movie{
    width: 90vw;
    border-radius: 3vw;
}
    
#mv .mv-movie iframe{
    height: 50.7vw;
    border-radius: 3vw;
}    
#mv .emblem img{
    width: 42vw;
    margin: 5vw auto;
}
}
/*--------------*/

/*------------------------------CTA設定PC*/
.cta-wrap{
    background: #fff;
    padding: 0 30px 100px;
}
.cta-wrap2{
    padding: 50px 30px 100px;
}
.cta-title{
    width: 100%;
}
.cta{
    width: 600px;
    background: #fff;
    box-shadow:3px 3px 15px 0 rgba(156,156,156,0.30); 
    padding:20px 30px;
    margin: -20px auto 0;
}
.cta h2{
    font-size: 2.5em;
    font-weight: 900;
}
.cta p{
    margin: 0 0 15px;
}
.cta .caution-txt{
    line-height: 1.5em;
    color: #4A4A4A;
    font-size: .8em;
}
.cta img{
    object-fit: contain;
}
.cta .cv-btn{
    width: 106%;
    margin: 0 0 10px -15px;
    object-fit: cover;
}
/*--------------*/

/*------------------------------CTA設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
.cta-wrap{
    padding: 5vw 3vw;
}
.cta-wrap2{
    padding: 5vw 3vw;
}

.cta{
    width: 86vw;
    box-shadow:.5vw .5vw 3vw 0 rgba(156,156,156,0.30); 
    padding:8vw 5vw 5vw;
    margin: -5vw auto 5vw;
}
.cta h2{
    font-size: 6vw;
}
.cta p{
    margin:0 0;
}
.cta .caution-txt{
    font-size: 3vw;
}
    .cta img{
        width: 100%;
        text-align: center;
        margin: 1vw auto;
    }    
.cta .cta-kit-ph{
    width: 30vw;
    margin: 0 0 0 2vw;
}
.cta .cv-btn{
    width: 106%;
    margin: 0 0 0 -3%;
}
 
}
/*--------------*/


/*------------------------------sec1設定PC*/
#howtouse{
    background: #ecf8fd;
    overflow-x: hidden;
}
.h2_title {
    position: relative;
}
.h2_title img{
    width: 100%;
    object-fit: contain;
}
.h2_title .flex{
    margin: 50px auto;
}
.h2_title .chara{
    width: 230px;
    position: absolute;
    right: -10px;
}


.character {
  opacity: 0;
}

@keyframes popIn {
  0% {
    transform: translateX(210px) scale(0.9);
    opacity: 0;
  }
  50% {
    transform: translateX(40px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateX(40px) scale(1);
    opacity: 1; /* ← 最後も表示されたまま */
  }
}

.character.active {
  animation: popIn 1s cubic-bezier(0.68,-0.55,0.27,1.55) forwards; /* ← forwardsを追加 */
}


.h2_title p{
    width: 400px;
    font-size: 1.1em;
    color:#f8788e; 
    margin: 20px 0 0;
}
.h2_title_2 div img{
    width: 350px;
}
.h2_title_2 .chara{
    width: 250px;
    margin: 0 0 0 50px;
}

/*--------------*/

/*------------------------------sec1設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
.h2_title {
    position: relative;
    margin: 0 auto 5vw;
}
.h2_title img{
    width: 90vw;
    margin: 0 auto;
}
.h2_title .flex{
    margin: 5vw auto;
}
.h2_title .chara{
    width: 40vw;
    right: -1vw;
}
    .h2_title .h2_title-img{
      width: 55vw;
    margin: 0 0 0 5vw;
    }
.character {
  opacity: 0;
}
.h2_title p{
    width:50vw;
    font-size: 3.5vw;
    margin: 3vw 0 0 5vw;
}
.h2_title_2 .chara{
    width: 40vw;
}

 
}
/*--------------*/


/*------------------------------sec2設定PC*/
#womens-worries{
    background: #ecf8fd;
    padding: 0 0;
      -ms-overflow-style: none;
  scrollbar-width: none;
}
#womens-worries .h2_title{
    padding: 0 50px;
}
#womens-worries .womens-worries-contents{
    height: 1200px;
    margin: 50px 50px 0;
    position: relative;
}
#womens-worries::-webkit-scrollbar{
  display:none;
}
.worries1{
    position: absolute;
    top:0;
    left:0;
}
.worries1t{
    position: absolute;
    top:30px;
    right:0;
}
.worries2{
    position: absolute;
    top:230px;
    right:0;
}
.worries2t{
    position: absolute;
    top:300px;
    left:30px;
}
.worries3{
    position: absolute;
    top:500px;
    left:0;
}
.worries3t{
    position: absolute;
    top:480px;
    right:0;
}
.worries4{
    position: absolute;
    top:680px;
    right:0;
}
.worries4t{
    position: absolute;
    top:800px;
    left:0;
}
.worries5{
    position: absolute;
    top:1000px;
    left:0;
}
.worries5t{
    position: absolute;
    top:1050px;
    right:0;
}
/*--------------*/

/*------------------------------sec2設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {

#womens-worries .h2_title{
    padding: 0 5vw 5vw;
}
#womens-worries .womens-worries-contents{
    height: 160vw;
    margin: 5vw 5vw 10vw;
}
.worries1{
    width: 50vw;
    top:0;
    left:0;
}
.worries1t{
    width: 50vw;
    top:5vw;
    right:0;
}
.worries2{
    width: 45vw;
    top:30vw;
    right:0;
}
.worries2t{
    width: 45vw;
    top:38vw;
    left:8vw;
}
.worries3{
    width: 40vw;
    top:58vw;
    left:0;
}
.worries3t{
    width: 45vw;
    top:65vw;
    right:10vw;
}
.worries4{
    width: 50vw;
    top:90vw;
    right:0;
}
.worries4t{
    width: 45vw;
    top:105vw;
    left:2vw;
}
.worries5{
    width: 40vw;
    top:130vw;
    left:10vw;
}
.worries5t{
    width: 45vw;
    top:135vw;
    right:0;
}
 
}
/*--------------*/


/*------------------------------sec4設定PC*/
#flow{
    background: #fddfe4;
}
#flow .flow li{
    width: 560px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin: 0 0 40px 40px;
    position: relative;
}
#flow .flow li .tag{
    width: 40px;
    height: 100px;
    background: #4a509a;
    color:#fff;
    text-align: center;
    border-radius: 10px 0 0 10px;
    writing-mode: sideways-lr;
    position: absolute;
    top:30px;
    left:-40px;
}
#flow .flow li img{
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 30px 0 0;
}
/*--------------*/

/*------------------------------sec4設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
    #flow .flow{
        margin: 10vw 0 0;
    }
#flow .flow li{
    width: 84vw;
    border-radius: 5vw;
    padding: 5vw;
    margin: 0 0 5vw 6vw;
}
#flow .flow li .tag{
    width: 6vw;
    height: 18vw;
    line-height: 6vw;
    font-size: 3.5vw;
    border-radius: 2vw 0 0 2vw;
    writing-mode: sideways-lr;
    position: absolute;
    top:5vw;
    left:-6vw;
}
#flow .flow li img{
    width:35vw;
    height: 35vw;
    margin: 0 3vw 0 0;
}
 
}
/*--------------*/

/*------------------------------sec5設定PC*/
#review{
    background: #fddfe4;
    padding: 0 50px 100px;
}

#review .h2_title .flex{
    margin: 0 auto 50px;
}
#review .review-list li{
    align-items: flex-start;
    margin: 0 auto 50px;
}
#review .review-list li p{
    background: #fdf3eb;
    border-radius: 20px;
    padding: 30px 40px;
}
#review .review-list li img{
    width: 150px;
    margin: 0 -10px 0 0;
    object-fit:contain;
}
.more-review{
    background: #4a509a;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    border-radius: 10px;
    padding: 30px 0;
    margin: 0 0 50px;
}
.more-review:after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
}
/*--------------*/

/*------------------------------sec5設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#review{
    padding: 0 5vw 15vw;
}

#review .h2_title .flex{
    margin: 0 0 10vw;
}
#review .review-list li{
    margin: 0 auto 8vw;
}
#review .review-list li p{
    border-radius:5vw;
    padding: 5vw 8vw;
}
#review .review-list li img{
    width: 25vw;
    margin: 0 -1.5vw 0 0;
}
.more-review{
    font-size: 3.5vw;
    border-radius: 3vw;
    padding: 5vw 0;
    margin: 0 0 5vw;
}
.more-review:after {
    transform: scale(1.5);
  right: 5vw;
}
 
}
/*--------------*/

/*------------------------------sec6設定PC*/
#usefulness{
    background: #d2e4f8;
}
#usefulness .h2_title .chara{
    top:-90px;
}

#usefulness .usefulness-contents{
    background: #fff;
    border-radius: 20px;
    padding:50px;
    margin: 50px auto;
}

#usefulness h3{
    color: #4a509a;
    font-size: 1.7em;
    font-weight: 600;
}
#usefulness .usefulness-contents h4{
    color: #4a509a;
    font-size: 1.5em;
    font-weight: 600;
    border-left:10px solid #4a509a;
    padding: 2px 0 2px 10px;
}
#usefulness .usefulness-contents p{
    padding: 20px 0 30px;
}
/*--------------*/

/*------------------------------sec6設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#usefulness .h2_title .chara{
    top:-10vw;
}

#usefulness .usefulness-contents{
    border-radius: 3vw;
    padding:6vw 8vw 8vw;
    margin: 5vw auto;
}

#usefulness h3{
    font-size: 4.5vw;
}
#usefulness .usefulness-contents h4{
    font-size: 4.5vw;
    border-left:2vw solid #4a509a;
    padding:0 0 0 2vw;
}
#usefulness .usefulness-contents p{
    padding: 3vw 0 5vw;
}
 
}
/*--------------*/


/*------------------------------sec7設定PC*/
#knowledge{
    background: #d2e4f8;
    background-image: url("../img/bg.webp");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    padding: 100px 80px 150px;
}
#knowledge .h2_title{
    width: 440px;
    margin: 0 auto;
}
#knowledge .knowledge-contents{
    margin: 0 0 50px;
}
#knowledge .knowledge-contents:nth-child(3),#knowledge .knowledge-contents:nth-child(4){
    margin: 180px 0 50px;
}
#knowledge .knowledge-contents h3{
    color: #4a509a;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 3.5em;
    font-weight: 600;
    margin: 50px 0 30px;
}
#knowledge .knowledge-contents h3 span{
    display: block;
    line-height: 1.5em;
    font-size: .7em;
}
#knowledge .knowledge-contents:nth-child(4) h3{
    text-align: center;
}
#knowledge .knowledge-contents:nth-child(5) h3{
    color: #fff;
    text-align: center;
    margin: 280px 0 50px;
}
#knowledge .knowledge-contents h4{
    color: #4a509a;
    font-size: 2em;
    font-weight: 600;
    margin: 0 0 50px;
}
#knowledge .knowledge-contents .graph{
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}
#knowledge .knowledge-contents p{
    color: #4a509a;
    font-size: 1.1em;
    text-shadow: 2px 2px 6px #fff;
    margin: 30px auto;
}
#knowledge .knowledge-contents .knowledge-img{
    width: 360px;
    margin: 0 100px;
}
/*--------------*/

/*------------------------------sec7設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {

#knowledge{
    padding:10vw 10vw 27vw;
}
#knowledge .h2_title{
    width: 56vw;
}
#knowledge .knowledge-contents{
    margin: 0 0 5vw;
}
#knowledge .knowledge-contents:nth-child(3),#knowledge .knowledge-contents:nth-child(4){
    margin: 20vw 0 5vw;
}
#knowledge .knowledge-contents h3{
    font-size: 8.5vw;
    text-align: center;
    margin: 7vw 0 3vw;
}
#knowledge .knowledge-contents h3 span{
    line-height: 1.5em;
    font-size: 6vw;
}

#knowledge .knowledge-contents:nth-child(5) h3{
    margin: 40vw 0 5vw;
}
#knowledge .knowledge-contents h4{
    font-size:5vw;
    margin: 0 0 5vw;
}
#knowledge .knowledge-contents .graph{
    border-radius: 3vw;
    padding: 5vw;
}
#knowledge .knowledge-contents p{
    font-size: 3.5vw;
    margin: 5vw auto;
}
#knowledge .knowledge-contents .knowledge-img{
    width: 50vw;
    margin: 0 15vw;
} 
}
/*--------------*/


/*------------------------------sec8設定PC*/
#result{
    background: #d2e4f8;
    padding: 100px 0;
}

.heading-16 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4a509a;
    font-family: "Kosugi Maru", sans-serif;
    font-size: 2.3em;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 5vw;
}
.heading-16::before,
.heading-16::after {
    width: 3px;
    height: 100px;
    background-color: #4a509a;
    content: '';
}

.heading-16::before {
    transform: rotate(-30deg);
    margin:100px 40px 0 0;
}

.heading-16::after {
    transform: rotate(30deg);
    margin:100px 0 0 40px;
}
#result .result-sample{
    position: relative;
}

#result .result-img{
    width: 100%;
}
#result .result-img-scale{
    position: absolute;
    top: 300px;
    left:50px;
}
.result-txt{
    width: 80%;
    font-size: .8em;
    margin: 20px auto;
}
.other-btn{
    width: 500px;
    text-align: center;
    margin: 0 auto;
}
/*--------------*/

/*------------------------------sec8設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#result{
    padding: 10vw 0;
}

.heading-16 {
    line-height: 1.6em;
    font-size: 6vw;
    margin: 0 auto 5vw;
}
.heading-16::before,
.heading-16::after {
    width: .5vw;
    height: 20vw;
}

.heading-16::before {
    transform: rotate(-30deg);
    margin:10vw 6vw 0 0;
}

.heading-16::after {
    transform: rotate(30deg);
    margin:10vw 0 0 6vw;
}
#result .result-img-scale{
    width: 53vw;
    top: 38vw;
    left:5vw;
}
.result-txt{
    width: 80%;
    font-size: 3vw;
    margin: 3vw auto;
}
.other-btn{
    width: 80vw;
    margin: 0 auto 5vw;
}
 
}
/*--------------*/


/*------------------------------sec9設定PC*/
#know{
    background: #ecf8fd;
}

#know .know-contents{
    box-shadow: 3px 3px 10px 0 #B1CDE0;
    margin: 30px auto 0;
}
#know .know-title{
    background: #f8788e;
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    padding: 30px 0;
}
#know .accordion_contents{
    background: #fff;
    padding: 40px;
}
#know .accordion_contents .knowledge{
    background: #fddfe4;
    padding: 30px;
    margin: 30px 0 0;
}
#know .accordion_contents p{
    line-height: 2.5em;
    font-weight: 600;
}
#know .know-title:after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
}
/*--------------*/

/*------------------------------sec9設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#know .know-contents{
    margin: 8vw auto 0;
}
#know .know-title{
    font-size: 4vw;
    padding: 5vw 0;
}
#know .accordion_contents{
    padding: 8vw;
}
#know .accordion_contents .knowledge{
    font-size: 3.5vw;
    padding: 5vw;
    margin: 5vw 0 0;
}
#know .accordion_contents p{
    font-size: 4vw;
}
#know .know-title:after {
  transform: scale(1.5);
  right: 5vw;
}
}
/*--------------*/


/*------------------------------sec10設定PC*/
#recommend{
    background: #ecf8fd;
    padding: 50px 50px 100px;
}
#recommend .recommend-list{
    width: 560px;
    flex-wrap: wrap;
    margin: 0 auto;
}
#recommend .recommend-list li{
    width: 250px;
    margin: 0 auto 30px 0;
}
#recommend .recommend-list li:nth-child(2n){
    margin: 0 0 30px;
}
#recommend .recommend-list li img{
    width: 200px;
    margin: 0 25px 25px;
}
/*--------------*/

/*------------------------------sec10設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#recommend{
    padding: 0 5vw 15vw;
}     
#recommend .h2_title .flex{
    margin: 0 0 10vw;
}
#recommend .recommend-list{
    width:86vw;
    margin: 0 auto;
}
#recommend .recommend-list li{
    width: 40vw;
    margin: 0 auto 5vw 0;
}
#recommend .recommend-list li:nth-child(2n){
    margin: 0 0 5vw;
}
#recommend .recommend-list li img{
    width: 30vw;
    margin: 0 5vw 3vw;
} 
}
/*--------------*/


/*------------------------------sec11設定PC*/
/*------------------------------sec11設定PC*/
#lineup{
    background: #fddfe4;
}
#lineup .kit{
    background: #fdf3eb;
    color: #4a509a;
    border-radius: 20px;
    box-shadow:3px 3px 15px 0 rgba(156,156,156,0.30); 
    padding: 50px;
    margin: 50px auto;
}
#lineup .kit h3{
    font-family: "Kosugi Maru", sans-serif;
    line-height: 1.3em;
    font-size: 3.2em;
    font-weight: 800;
    text-align: center;
}
#lineup .kit h3 span{
    display: block;
    line-height: 2em;
    font-size: .4em;
    font-weight: 400;
}

#lineup .kit .item{
    display: flex;
    width: 420px;
    margin: 20px auto 40px;
}
#lineup .kit .item li{
    align-content: center;
    width: 100px;
    height: 100px;
    line-height: 1.5em;
    background: #4a509a;
    color: #fff;
    font-size: .8em;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
}

#lineup .kit .kit-detail{
    background: #fff;
    text-align: center;
    border:4px solid #4a509a;
    border-radius: 20px;
    padding: 30px;
}
#lineup .kit .kit-detail p{
    font-family: "Kosugi Maru", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    text-align: center;
    margin: 0 0 30px;
}
#lineup .kit .kit-detail .more-btn{
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: #4a509a;
    color: #fff;
    font-size: 1.1em;
    text-align: center;
    border-radius: 10px;
    margin: 30px auto 0;
    position: relative;
}
#lineup .kit .kit-detail .more-btn img{
    width: 25px;
    object-fit: contain;
    position: absolute;
    top:35%;
    right: 20px;
}
#lineup .kit .kit-detail .more-btn a{
    display: block;
    text-decoration: none;
    color:#fff;
}


#lineup .h2_title p{
    color: #4a509a;
}

#lineup .std-kit-title{
    color: #4a509a;
    font-family: "Kosugi Maru", sans-serif;
    font-size: 2.3em;
    font-weight: 800;
    text-align: center;    
}
#lineup .std-kit .graph{
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin: 30px auto;
}

#lineup .std-kit-lineup{
    width:230px;
    background: #fff;
    box-shadow:3px 3px 15px 0 rgba(156,156,156,0.30); 
    padding: 30px;
    margin: 50px auto 100px 0;
}
#lineup .std-kit-lineup:nth-child(2){
    margin:50px 0 100px;
}

#lineup .std-kit-lineup h3{
    height: 100px;
    font-size: 1.5em;
    font-weight: 600;
}
#lineup .std-kit-lineup .std-item{
    flex-wrap: wrap;
}
#lineup .std-kit-lineup .std-item li{
    background: #f2f2f2;
    font-size: .8em;
    padding:0 10px;
    margin:0 10px 10px 0;
}
#lineup .std-kit-lineup .std-price{
    font-size: 1.1em;
    font-weight: 600;
    text-align: right;
}
#lineup .std-kit-lineup .std-price .small-txt{
    font-weight: 100;
}
#lineup .std-kit-lineup .std-buy-btn{
    width: 100%;
    height: 60px;
    background: #4a509a;
    color: #fff;
    border-radius: 10px;
    margin: 20px auto 0;
    position: relative;
}
#lineup .std-kit-lineup .std-buy-btn p{
    line-height: 60px;
        text-align:center;
    margin: 0 0 0 20px;
}
#lineup .std-kit-lineup .std-buy-btn img{
    width: 23px;
    object-fit: contain;
    position: absolute;
    top:32%;
    left: 20px;
}
#lineup .std-kit-lineup .std-buy-btn a{
    display: block;
    text-decoration: none;
    color:#fff;
}
#lineup .link-txt{
    text-align: center;
}
/*--------------*/

/*------------------------------sec11設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#lineup .kit{
    border-radius: 5vw;
    padding: 8vw;
    margin: 5vw auto ;
}
#lineup .kit h3{
    font-size: 10vw;
}
#lineup .kit h3 span{
    font-size: 4vw;
}

#lineup .kit .item{
    width: 72vw;
    margin: 5vw auto;
}
#lineup .kit .item li{
    width: 17vw;
    height: 17vw;
    line-height: 1.3em;
    font-size: 2.8vw;
}

#lineup .kit .kit-detail{
    border:1vw solid #4a509a;
    border-radius: 4vw;
    padding: 5vw;
}
#lineup .kit .kit-detail p{
    font-size: 4vw;
    text-align: left;
    margin: 0 0 5vw;
}
    #lineup .kit .kit-detail .kit-ph{
        width: 70%;
    }
#lineup .kit .kit-detail .more-btn{
    width: 100%;
    height: 16vw;
    line-height: 16vw;
    font-size: 3.5vw;
    border-radius: 2vw;
    margin: 8vw auto 0;
}
#lineup .kit .kit-detail .more-btn img{
    width: 4vw;
    top:37%;
    right: 2vw;
}  

#lineup .std-kit-title{
    font-size: 6vw;
    margin: 10vw auto 0;
}
#lineup .std-kit .h2_title{
    margin: 15vw auto 0;
}    
    
#lineup .std-kit .graph{
    border-radius: 5vw;
    padding: 8vw;
    margin: 5vw auto;
}

#lineup .std-kit-lineup{
    width:37vw;
    padding: 3vw;
    margin: 5vw auto 10vw 0;
}
#lineup .std-kit-lineup:nth-child(2){
    margin:5vw 0 10vw;
}

#lineup .std-kit-lineup h3{
    height: 17vw;
    line-height: 1.5em;
    font-size: 4.5vw;
}
#lineup .std-kit-lineup .std-item li{
    font-size: 2.5vw;
    padding:0 2vw;
    margin:0 1vw 1vw 0;
}
#lineup .std-kit-lineup .std-price{
    font-size: 3.5vw;
}
#lineup .std-kit-lineup .std-buy-btn{
    height: 13vw;
    border-radius: 2vw;
    margin: 5vw auto 0;
}
#lineup .std-kit-lineup .std-buy-btn p{
    line-height: 13vw;
    font-size: 3vw;
    margin: 0 0 0 5vw;
}
#lineup .std-kit-lineup .std-buy-btn img{
    width: 4vw;
    top:32%;
    left: 3vw;
}
}
/*--------------*/



/*------------------------------secFAQ設定PC*/
#faq{
    background: #4a509a;
}
#faq h2{
    color: #fff;
    font-family: "Kosugi Maru", sans-serif;
    font-size: 2.3em;
    font-weight: 800;
    text-align: center;    
}
#faq .faq-contents{
    margin:  30px auto;
}
#faq .faq-contents .faq-title{
    display: flex;
    align-items: center;
    width: 580px;
    background: #fdf3eb;
    color: #4a509a;
    font-family: "Kosugi Maru", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    padding: 20px 0 20px 20px;

}
#faq .faq-contents .faq-title img{
    width: 60px;
    margin: 0 20px 0 0;
}
#faq .faq-contents .faq-title p{
    width: 400px;
}

#faq .faq-contents .faq-title:after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 30px;
}

#faq .faq-contents .accordion_contents{
    background: #fff;
    padding: 40px;
}
#faq .faq-contents .accordion_contents img{
    margin: 30px 0 0;
}
/*--------------*/

/*------------------------------secFAQ設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#faq h2{
    font-size: 6vw;
}
#faq .faq-contents{
    margin:  5vw auto;
}
#faq .faq-contents .faq-title{
    width: 85vw;
    font-size: 4vw;
    padding: 5vw 0 5vw 5vw;

}
#faq .faq-contents .faq-title img{
    width: 10vw;
    margin: 0 5vw 0 0;
}
#faq .faq-contents .faq-title p{
    width: 56vw;
}

#faq .faq-contents .faq-title:after {
  transform: scale(1.5);
  right: 5vw;
}

#faq .faq-contents .accordion_contents{
    padding: 8vw;
}
#faq .faq-contents .accordion_contents img{
    margin: 5vw 0 0;
}
 
}
/*--------------*/




/*------------------------------問合せ設定PC*/
#inquiry{
    background: #fff;
}
#inquiry .inquiry_contents{
    background: #ecf8fd;
    color: #4a509a;
    border-radius: 20px;
    padding: 50px;
    margin: 0 auto 80px;
}
#inquiry .inquiry_contents h2{
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
}
#inquiry .inquiry_contents h3{
    font-weight: 600;
    text-align: center;
    margin: 30px 0 0;
}
#inquiry .inquiry_contents .tel{
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
}
#inquiry .inquiry_contents p{
    text-align: center;
}
#inquiry .inquiry_contents a{
    text-decoration: none;
    color: #4a509a;
}

#inquiry .inquiry_contents .form-btn{
    width: 400px;
    margin: 30px auto 0;
}
#inquiry .chat-btn{
    width: 400px;
    margin: 0 auto;
}
/*--------------*/

/*------------------------------問合せ設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#inquiry .inquiry_contents{
    border-radius: 5vw;
    padding: 8vw;
    margin: 0 auto 8vw;
}
#inquiry .inquiry_contents h2{
    font-size: 4vw;
}
#inquiry .inquiry_contents h3{
    margin: 5vw 0 0;
}
#inquiry .inquiry_contents .tel{
    font-size: 8vw;
}
#inquiry .inquiry_contents .form-btn{
    width: 70vw;
    margin: 5vw auto 0;
}
#inquiry .chat-btn{
    width: 70vw;
}
}
/*--------------*/



/*------------------------------開閉ボックスの設定PC*/

.accordion_title {
  display: block;
  width: 100%;
  position: relative;
  cursor: pointer;
}

summary.accordion_title::-webkit-details-marker {
  display:none;
}

.accordion_title:after {
  content: "＋";
    font-size: .7em;
  line-height: 1;
  pointer-events: none;
}

.accordion::details-content {
  opacity: 0;
  block-size: 0;
  transition: .3s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
}

.accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}

.accordion[open] .accordion_title:after {
  content: "－";
}


/*--------------*/
/*------------------------------開閉ボックスの設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  /*開閉ボックスの設定*/

}
/*--------------*/
/*------------------------------フッターPCここから*/
#footer {
  background: #fff;
  padding: 0 0;
}
#footer h2{
    text-align: center;
}

#footer .foot_logo {
  width: 250px;
  margin: 50px auto 20px;
}
#footer .add, #footer .registration-number {
  font-size: .7em;
  text-align: center;
  margin: 0 auto;
}
#footer .registration-number {
  font-size: .6em;

}

#footer .foot_list li {
  font-size: .8em;
  font-weight: 300;
  text-align: center;
  margin: 20px auto;
}
#footer .foot_list li a {
  text-decoration: none;
  color: #333;
}
#footer .small_box {
  font-size: .5em;
  text-align: center;
  padding: 30px 0 10px;
}
/*--------------*/
/*------------------------------フッター*/
/*----------------------------------------------スマホ*/
@media (max-width: 640px) {
  #footer {
    padding: 0 0 20vw;
  }
#footer h2{
    font-size: 3.5vw;
    margin: 0 auto 5vw;
}    
    
  #footer .foot_logo {
    width: 50vw;
    margin: 0 auto 2vw;
  }
  #footer .add, #footer .registration-number {
    font-size:2.5vw;
      padding: 3vw 0;
    margin: 0 auto;
  }
  #footer .foot_list {
    flex-direction: column;
    margin: 5vw auto;
  }
  #footer .foot_list li {
    width: 70vw;
    font-size: 3vw;
    padding: 2vw 0;
    margin: 0 auto;
  }
  #footer .small_box {
    font-size: 2vw;
    margin: 0 auto;
  }
}
/*--------------*/
/*------------------------------フェード設定ここから*/
/* fadein bottom to top */
.fadein_bottom_to_top_start {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}
.fadein_bottom_to_top_end {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
/* fadein right to left */
.fadein_right_to_left_start {
  display: block;
  opacity: 0;
  transform: translateX(100%);
}
.fadein_right_to_left_end {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
/*--------------*/
/*--------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}