@charset "utf-8";
html {
  scroll-behavior: smooth;
}
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ここから*/
main {
  margin: 0 auto;
}
section {
  width: 1200px;
  margin: 100px auto;
}
div, p {
  line-height: 1.8em;
  text-align: justify;
  text-justify: inter-ideograph;
}
h1, h2, h3, h4 {
  line-height: 1.6em;
}
.small_txt {
  display: inline-block;
  line-height: 1.5em;
  font-size: .7em;
}
.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 (min-width: 641px) and (max-width: 1024px) {
  section {
    width: 700px;
  }
}
/*--------------*/
/*------------------------------全体の設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  section {
    width: 90vw;
    margin: 10vw 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;
    font-size: 2.5vw;
    margin: 0 auto;
  }
  .mgt50 {
    margin: 10vw auto 0;
  }
  .mgt20 {
    margin: 3vw auto 0;
  }
  .mgb20 {
    margin: 0 auto 5vw;
  }
  .pc_img {
    display: none;
  }
  .sp_img {
    display: block;
  }
}
/*--------------*/
/*------------------------------ヘッダーPC*/
#header .head-flex {
  display: flex;
}
#header .head_logo {
  width: 250px;
  margin: 20px auto 0 20px;
}
#header .head-btn {
  width: 300px;
  margin: 25px 100px 0 0;
}
/*ここからナビ*/
#nav_list {
  width: 50%;
  height: 100%;
  background: #fbecef;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  visibility: hidden;
  overflow: auto;
}
.nav_list ul {
  margin: 50px 100px;
}
.nav_list li {
  background: #fff;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 50px;
  padding: 15px 20px;
  margin: 0 0 20px;
}
.nav_list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #559f9d;
}
.nav_list li a img {
  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: 70px;
  height: 70px;
  background: #e8efee;
  border-radius: 50%;
  top: 20px;
  right: 10px;
  cursor: pointer;
  z-index: 999999;
  padding: 20px;
}
.navBtn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #559f9d;
  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 (min-width: 641px) and (max-width: 1024px) {
  /*ここからナビ*/
  #nav_list {
    width: 70%;
  }
}
/*--------------*/
/*------------------------------ヘッダー*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#header .head_logo {
  width: 32vw;
  margin: 2vw auto 0 2vw;
}
#header .head-btn {
  width: 48vw;
  margin: 2vw 14vw 0 0;
}    
    
  /*ここからナビ*/
  #nav_list {
    width: 80%;
    height: 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 #559f9d;
      border-radius: 0;
    padding: 4vw 0;
      margin: 0 0 ;
  }

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

  /*---------------------
navigation btn
----------------------*/
    
  .navBtn {
    width: 10vw;
    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*/
.bg {
  width: 100%;
  background: #e8efee;
  background-image: url("../img/green-wave-bg.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  margin: -50px 0 0;
  z-index: -1;
}
#mv {
  max-width: 1400px;
  min-width: 800px;
  margin: 80px auto 0;
  position: relative;
}
#mv h1 span {
  font-family: "Arial Black", Gadget, "sans-serif";
  display: inline-block;
  background: #559c9a;
  color: #fff;
  font-size: 4.3em;
  font-weight: bolder;
  padding: 40px 30px;
  margin: 20px 0 0;
  position: sticky;
  z-index: 99;
}
#mv .mv-kit-ph {
  width: 550px;
  margin: 0 0 0 50px;
  position: sticky;
  z-index: 99;
}
#mv .mv-emblem {
  width: 250px;
  position: absolute;
  bottom: 60px;
  right: 20px;
  z-index: 99;
}
#mv .mv_bg {
  max-width: 1000px;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
/*--------------*/
/*------------------------------メインビュー*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  .bg {
    width: 100%;
    background: #e8efee;
    background-image: url("../img/green-wave-bg.webp");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    margin: -50px 0 0;
    z-index: -1;
  }
  #mv {
    max-width: 1200px;
    min-width: 600px;
  }
  #mv h1 span {
    font-size: 2.8em;
    padding: 25px 20px;
    margin: 20px 0 0;
  }
  #mv .mv-kit-ph {
    width: 400px;
    margin: 0 0 0 50px;
  }
  #mv .mv-emblem {
    bottom: 20px;
    right: 10px;
  }
  #mv .mv_bg {
    max-width: 700px;
  }
}
/*--------------*/
/*------------------------------メインビュー*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#mv {
  max-width: 100vw;
  min-width: inherit;
    padding:  0 0 100vw;
  margin: 15vw auto 0;
}
#mv h1 span {
  font-size:8vw;
  padding: 1.5vw 3vw;
  margin: 2vw 0 0;
}
#mv .mv-kit-ph {
  width: 62vw;
  margin:0 0;
    position: absolute;
    bottom: 0;
    right: 0;
}
#mv .mv-emblem {
  width: 33vw;
  bottom: 0;
  right: inherit;
    left: 5vw;
}
#mv .mv_bg {
  max-width: 94vw;
  top: 18vw;
  right: 0;
  z-index: 0;
}    
    
    
}
/*--------------*/
/*------------------------------全体設定PC*/
.h2-ttl {
  width: 100%;
  text-align: center;
  margin: 0 auto 80px;
}
.small-txt {
  display: inline-block;
  line-height: 1.5em;
  font-size: .7em;
  margin: 10px 0 0;
}
/*--------------*/
/*------------------------------全体設定*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  .h2-ttl {
    width: 600px;
  }
  .small-txt {
    display: inline-block;
    line-height: 1.5em;
    font-size: .7em;
    margin: 10px 0 0;
  }
}
/*--------------*/
/*------------------------------全体設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
.h2-ttl {
  width: 100%;
  margin: 0 auto 8vw;
}
.small-txt {
  font-size: 3vw;
  margin:2vw 0 0;
}    
}
/*--------------*/
/*------------------------------worriesPC*/
#worries, #arousa {
  width: 100%;
  background: #e8efee;
  padding: 50px 0;
  margin: 0 auto;
}
.wrap {
  width: 1200px;
  margin: 0 auto;
}
#worries img {
  width: 1200px;
}
/*--------------*/
/*------------------------------worries*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  .wrap {
    width: 700px;
  }
  #worries img {
    width: 700px;
  }
}
/*--------------*/
/*------------------------------worries*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#worries, #arousa {
  padding: 8vw 0;
}
.wrap {
  width: 100vw;
}
#worries img {
  width: 100%;
}    
}
/*--------------*/
/*------------------------------arousaPC*/
#arousa h2 {
  width: 100%;
  text-align: center;
  margin: 0 auto 100px;
}
#arousa .arousa-img {
  width: 800px;
  margin: 0 200px;
}
#arousa h3 {
  width: 100%;
  text-align: center;
  margin: 50px auto 100px;
}
#arousa h3 img {
  width: 700px;
  object-fit: cover;
}
/*--------------*/
/*------------------------------arousa*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #arousa .arousa-img {
    width: 700px;
    margin: 0 0;
  }
}
/*--------------*/
/*------------------------------arousa*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#arousa h2 {
  width: 100%;
  margin: 0 auto 8vw;
}
#arousa .arousa-img {
  width:90vw;
  margin: 0 auto;
}
#arousa h3 {
  width: 90vw;
  margin: 5vw auto;
}
#arousa h3 img {
  width: 100%;
}    
}
/*--------------*/
/*------------------------------featuresPC*/
#features h3 {
  text-align: center;
}
#features .features-flex {
  display: flex;
}
#features .features-flex div {
  width: 360px;
  background: #f7eff1;
  border-radius: 10px;
  padding: 30px;
  margin: 60px 60px 0 0;
}
#features .features-flex div:nth-child(3) {
  margin: 60px 0 0 0;
}
#features .features-flex div img {
  width: 80%;
  margin: 0 10% 20px;
}
/*--------------*/
/*------------------------------features*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #features .features-flex div {
    width: 400px;
    padding: 20px;
    margin: 50px 20px 0 0;
  }
  #features .features-flex div:nth-child(3) {
    margin: 50px 0 0 0;
  }
  #features .features-flex div img {
    width: 100%;
    margin: 0 0 20px;
  }
  #features .features-flex div p {
    font-size: .9em;
  }
}
/*--------------*/
/*------------------------------features*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#features h3 {
  text-align: center;
}
#features .features-flex {
  flex-direction: column;
}
#features .features-flex div {
  width: 100%;
  border-radius: 4vw;
  padding: 6vw;
  margin: 5vw auto 0;
}
#features .features-flex div:nth-child(3) {
  margin: 5vw auto 0;
}
#features .features-flex div img {
  width: 90%;
  margin: 0 0;
}    
}
/*--------------*/
/*------------------------------lineupPC*/
#lineup {
  background: #e8efee;
  border-radius: 20px;
  padding: 50px;
  margin: 150px auto 100px;
}
.lineup-h2 {
  width: 480px;
  text-align: center;
  margin: -80px auto 30px;
}
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  margin: 20px 0 0;
}
.carousel-item {
  scroll-snap-align: start;
  display: flex;
  flex: none;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  margin: 0 30px 30px 0;
}
.carousel-item img {
  border-radius: 20px 20px 0 0;
}
.carousel-item a {
  display: block;
  text-decoration: none;
  color: #514841;
}
.carousel-item .carousel-txt {
  padding: 20px 30px;
}
.carousel-item .carousel-txt h4 {
  font-size: 1.2em;
  font-weight: bolder;
}
.carousel-item .carousel-txt .price {
  font-size: 1.4em;
  font-weight: bolder;
}
.carousel-item .carousel-txt .price .price-ttl {
  background: #e5e5e5;
  font-size: .6em;
  font-weight: normal;
  padding: 1px 3px;
  margin: 0 10px 0 0;
}
.carousel-item .carousel-txt .price .tax {
  font-size: .5em;
  font-weight: normal;
}
.carousel-item .carousel-txt p {
  line-height: 1.5em;
  font-size: .9em;
}
/*--------------*/
/*------------------------------lineup*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  .lineup-h2 {
    width: 400px;
  }
}
/*--------------*/
/*------------------------------lineup*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#lineup {
  border-radius: 3vw;
  padding: 6vw;
  margin: 20vw auto 10vw;
}
.lineup-h2 {
  width: 80vw;
  margin: -13vw auto 5vw;
}
.carousel {
    margin: 2vw 0 0;
  }
.carousel-item {
  width: 60vw;
  background: #fff;
  border-radius: 3vw;
  margin: 0 5vw 5vw 0;
}
.carousel-item img {
  border-radius: 3vw 3vw 0 0;
}
.carousel-item .carousel-txt {
  padding: 5vw;
}
.carousel-item .carousel-txt h4 {
  font-size: 4.5vw;
}
.carousel-item .carousel-txt .price {
  font-size: 4.5vw;
}
.carousel-item .carousel-txt .price .price-ttl {
  font-size: 3vw;
  padding: .5vw 1vw;
  margin: 0 2vw 0 0;
}
.carousel-item .carousel-txt .price .tax {
  font-size: 3vw;
}
.carousel-item .carousel-txt p {
  font-size: 3.5vw;
    margin: 2vw 0 0;
}    
}
/*--------------*/
/*------------------------------risk-contentsPC*/
#risk .risk-contents {
  margin: 100px auto;
}
#risk .risk-contents .graph_frame {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin: 0 auto;
}
#risk .risk-contents .graph_frame img {
  margin: 0 0 30px;
}
#risk .risk-contents h3 {
  font-size: 2em;
  font-weight: bolder;
  text-align: center;
  color: #559c9a;
  margin: 50px 0;
}
#risk .risk-contents .graph {
  width: 600px;
  text-align: center;
  margin: 0 auto;
}
#risk .risk-contents .graph img {
  width: 100%;
}
#risk .risk-contents .risk-value {
  color: #559c9a;
  font-size: 3em;
  font-weight: bolder;
  text-align: center;
  margin: -30px 0 20px;
}
#risk .risk-contents h4 {
  font-size: 1.2em;
  font-weight: bolder;
  text-align: center;
  margin: 20px 0;
}
#risk .risk-contents p {
  margin: 0 auto 30px;
}
#risk .risk-contents .important{
    background: linear-gradient(transparent 60%, #FFF9C9 30%);
}
#risk .risk-contents .risk-btn {
  width: 560px;
  text-align: center;
  margin: 0 auto;
}
/*--------------*/
/*------------------------------risk-contents*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #risk .risk-contents .graph_frame img {
    margin: 0 0 30px;
  }
  #risk .risk-contents h4 {
    margin: 30px 0;
  }
  #risk .risk-contents .risk-btn {
    width: 600px;
  }
}
/*--------------*/
/*------------------------------risk-contents*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#risk .risk-contents {
  margin: 15vw auto;
}
#risk .risk-contents .graph_frame {
  width: 70vw;
}
#risk .risk-contents .graph_frame img {
  margin: 0 0 5vw;
}
#risk .risk-contents h3 {
  font-size:6vw;
  margin: 8vw 0;
}
#risk .risk-contents .graph {
  width: 86vw;
}
#risk .risk-contents .risk-value {
  font-size:10vw;
  margin: -3vw 0 3vw;
}
#risk .risk-contents h4 {
  font-size: 3.5vw;
  margin: 5vw 0;
}
#risk .risk-contents p {
  margin: 0 auto 5vw;
}
#risk .risk-contents .risk-btn {
  width: 90vw;
}    
    
}
/*--------------*/
/*------------------------------flowPC*/
#flow {
  width: 100%;
  background: #fff7e5;
  padding: 100px 0;
  margin: 0 auto;
}
#flow .flow-img {
  width: 80%;
  margin: 0 10%;
}
.top-bg, .bottom-bg {
  width: 100%;
  height: 13vh;
  background-image: url("../img/yellow-bg-top.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}
.bottom-bg {
  height: 16vh;
  background-image: url("../img/yellow-bg-bottom.webp");
  background-position: bottom 16vh;
  position: sticky;
  z-index: 99;
}
.top-bg-pink {
  background-image: url("../img/pink-bg-top.webp");
}
.bottom-bg-pink {
  background-image: url("../img/pink-bg-bottom.webp");
}
/*--------------*/
/*------------------------------flow*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #flow .flow-img {
    width: 100%;
    margin: 0 0;
  }
}
/*--------------*/
/*------------------------------flow*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#flow {
  padding: 8vw 0;
}
#flow .flow-img {
  width: 90vw;
  margin: 0 0 0 10vw;
}
.top-bg, .bottom-bg {
  height: 6.5vh;
}
.bottom-bg {
  height: 6.5vh;
  background-position: bottom 6.5vh;
}
   
}
/*--------------*/
/*------------------------------ctaPC*/
#cta {
  width: 100%;
  background: #559c9a;
  padding: 20vh 0 100px;
  margin: -15vh auto 100px;
}
#cta .kit {
  display: flex;
  width: 900px;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  margin: 0 auto;
}
#cta .cta-txt {
  width: 450px;
}
#cta .cta-txt h2 {
  font-size: 1.7em;
  font-weight: bolder;
}
#cta .cta-txt .price {
  font-size: 1.7em;
  font-weight: bolder;
}
#cta .cta-txt .price span {
  font-size: .6em;
  font-weight: normal;
}
#cta .cta-txt h3 {
  background: #e5e5e5;
  font-size: .9em;
  padding: 1px 5px;
  margin: 0 0 5px;
}
#cta .cta-txt p {
  line-height: 1.5em;
  font-size: .8em;
}
#cta .cta-txt .cv_btn a {
  display: flex;
  background: #f37938;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0 0;
}
#cta .cta-txt .cv_btn p {
  font-size: .9em;
  margin: 0 auto;
}
#cta .cta-txt .cv_btn img {
  width: 30px;
  object-fit: contain;
}
#cta .kit .cta-kit-img {
  width: 300px;
  object-fit: contain;
  margin:0 auto 0 0;
}
/*--------------*/
/*------------------------------cta*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #cta .kit {
    width: 700px;
    padding: 30px;
  }
  #cta .cta-txt {
    width: 350px;
  }
  #cta .cta-txt h2 {
    font-size: 1.5em;
  }
  #cta .cta-txt .price {
    font-size: 1.5em;
  }
  #cta .cta-txt .cv_btn a {
    padding: 20px;
  }
  #cta .cta-txt .cv_btn p {
    font-size: .8em;
  }
  #cta .cta-txt .cv_btn img {
    width: 20px;
  }
  #cta .kit .cta-kit-img {
    width: 250px;
  }
}
/*--------------*/
/*------------------------------cta*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#cta {
  padding: 8vh 0 10vw;
  margin: -6.5vh auto 10vw;
}
#cta .kit {
    flex-direction: column;
  width: 80vw;
  border-radius: 3vw;
  padding: 6vw;
}
#cta .cta-txt {
  width: 100%;
}
#cta .cta-txt h2 {
  font-size: 5vw;
}
#cta .cta-txt .price {
  font-size: 4vw;
}
#cta .cta-txt .price span {
  font-size: 4vw;
}
#cta .cta-txt h3 {
  font-size: 3vw;
  padding: .2vw 1vw;
  margin: 2vw 0 1vw;
}
#cta .cta-txt p {
  font-size: 3vw;
}
#cta .cta-txt .cv_btn a {
  border-radius: 3vw;
  padding: 5vw;
  margin: 5vw 0 0;
}
#cta .cta-txt .cv_btn p {
  font-size: 3vw;
}
#cta .cta-txt .cv_btn img {
  width: 4vw;
}
#cta .kit .cta-kit-img {
  width: 80%;
  object-fit: contain;
  margin: 0 10% 5vw;
}    
}
/*--------------*/
/*------------------------------detailPC*/
#detail {
  background: #e8efee;
  border-radius: 20px;
  padding: 50px;
  margin: 150px auto 100px;
}
#detail .slick_js{
  display: none;
}
#detail .details-contents a {
  display: flex;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 3px 3px 10px #D8E0DF;
  margin: 0 auto 50px;
}
#detail .details-contents .details-contents-txt {
  width: 100%;
  padding: 50px;
}
#detail .details-contents .details-contents-txt h3 {
  color: #559c9a;
  font-size: 1.4em;
  font-weight: bolder;
  margin: 0 0 10px;
}
#detail .details-contents .details-img img {
  object-fit: cover;
}
#detail .details-btn {
  background: #559c9a;
  border-radius: 0 20px 20px 0;
  padding: 170px 20px 0;
}
/*--------------*/
/*------------------------------detail*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #detail .details-contents a {
    flex-direction: column;
  }
  #detail .details-contents .details-contents-txt h3 {
    font-size: 1.3em;
  }
  #detail .details-contents .details-img {
    width: 400px;
    height: 300px;
    margin: 80px auto 0;
    object-fit: cover;
    object-position: 0 20%;
  }
  #detail .details-btn {
    text-align: center;
    border-radius: 0 0 20px 20px;
    padding: 15px 0;
  }
  #detail .details-btn img {
    width: 30px;
    transform: rotate(90deg);
  }
}
/*--------------*/
/*------------------------------detail*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#detail {
  border-radius: 3vw;
  padding: 6vw;
  margin: 15vw auto 10vw;
    position: relative;
}
#detail .details-flex{
  display: none;
}    
#detail .slick_js{
  display: block;
    overflow-x: hidden;
}
#detail .details-contents{
    float: left;
    margin: 0 8vw 0 0;
}    
#detail .details-contents a {
    display: block;
  border-radius: 3vw;
  box-shadow: .5vw .5vw 3vw #D8E0DF;
    margin: 0 auto;
}
#detail .details-contents .details-contents-txt {
  width: 100%;
  padding: 6vw;
}
#detail .details-contents .details-contents-txt h3 {
    line-height: 1.5em;
  font-size: 3.5vw;
  margin: 0 0 3vw;
}
#detail .details-contents .details-contents-txt p {
  font-size: 3vw;
}    
 #detail .details-contents .details-img {
    width: 100%;
    height: 60vw;
    margin: 0 auto;
     border-radius: 3vw 3vw 0 0;
    object-fit: cover;
    object-position: 0 30%;
  }
#detail .details-btn {
  display: none;
}
    
.slick-prev {
	color: #559c9a;
	font-size:3.5vw;
	position: absolute;
	top:60%;
    left: 2vw;
}
.slick-next {
	color: #559c9a;
	font-size: 3.5vw;
	position: absolute;
	top:60%;	
    right: 8vw;
}
.slick-prev.slick-disabled {
    visibility: hidden;
}
.slick-next.slick-disabled {
    visibility: hidden;
}     
}
/*--------------*/
/*------------------------------accuracyPC*/
#accuracy .accuracy-contents {
  display: flex;
  margin: 0 auto 100px;
}
#accuracy .accuracy-contents img {
  width: 450px;
  margin: 0 50px 0 0;
}
#accuracy .accuracy-contents h3 {
  color: #559c9a;
  font-size: 1.5em;
  font-weight: bolder;
  margin: 0 0 20px;
}
/*--------------*/
/*------------------------------accuracy*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #accuracy .accuracy-contents {
    flex-direction: column;
    margin: 0 auto 50px;
  }
  #accuracy .accuracy-contents img {
    width: 400px;
    margin: 0 auto 30px;
    object-fit: contain;
  }
  #accuracy .accuracy-contents h3 {
    font-size: 1.2em;
  }
}
/*--------------*/
/*------------------------------accuracy*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#accuracy .accuracy-contents {
    width: 80vw;
  flex-direction: column;
  margin: 0 auto 10vw;
}
#accuracy .accuracy-contents img {
  width: 100%;
  margin: 0 auto;
}
#accuracy .accuracy-contents h3 {
  font-size: 4.5vw;
  margin: 5vw 0 3vw;
}    
}
/*--------------*/
/*------------------------------kit-listPC*/
#kit-list {
  width: 100%;
  background: #f7eff1;
  padding: 100px 0;
  margin: 0 auto;
}
#kit-list .merit {
  color: #559e9c;
  font-size: 1.2em;
  font-weight: bolder;
  text-align: center;
  margin: 0 0 10px;
}
#kit-list .merit img {
  width: 40px;
  margin: 0 20px 0 0;
}
#kit-list .kit-apply_card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin: 50px auto;
}
#kit-list .kit-apply_card img {
  object-fit: contain;
}
#kit-list .kit-apply_card .kit-txt {
  padding: 10px 30px 10px 50px;
}
#kit-list .kit-apply_card .kit-txt h3 {
  font-size: 1.7em;
  font-weight: bolder;
}
#kit-list .kit-apply_card .kit-txt .kit-txt-p {
  margin: 20px auto;
}
#kit-list .kit-apply_card .kit-txt h4 {
  font-size: .8em;
  border: 2px solid #e5e5e5;
  padding: 10px;
  margin: 0 0 20px;
}
#kit-list .kit-apply_card .kit-txt .price {
  font-size: 1.5em;
  font-weight: bolder;
}
#kit-list .kit-apply_card .kit-txt .price span {
  font-size: .5em;
  font-weight: normal;
}
#kit-list .kit-apply_card .kit-txt .cv-btn a {
  display: flex;
  background: #f37938;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0 0;
}
#kit-list .kit-apply_card .kit-txt .cv-btn p {
  font-size: 1.2em;
  margin: 0 auto;
}
#kit-list .kit-apply_card .kit-txt .cv-btn img {
  width: 30px;
}
#kit-list .caution {
  background: #f9f9f9;
  font-size: .9em;
  padding: 30px;
}
#kit-list .caution h3, #kit-list .caution h4 {
  font-size: 1.3em;
  font-weight: bolder;
}
#kit-list .caution p {
  margin: 10px 0;
}
#kit-list .caution div {
  border: 1px solid #333;
  padding: 20px;
  margin: 30px auto 0;
}
/*--------------*/
/*------------------------------kit-list*/
/*----------------------------------------------タブレット*/
@media (min-width: 641px) and (max-width: 1024px) {
  #kit-list {
    padding: 50px 0;
  }
  #kit-list .kit-apply_card {
    flex-direction: column;
    padding: 80px;
  }
  #kit-list .kit-apply_card .kit-txt {
    padding: 50px 0 0;
  }
  #kit-list .caution h3, #kit-list .caution h4 {
    font-size: 1.2em;
    font-weight: bolder;
  }
}
/*--------------*/
/*------------------------------kit-list*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#kit-list {
  padding: 8vw 0;
}
#kit-list .merit {
  font-size: 3.5vw;
  margin: 0 0 2vw;
}
#kit-list .merit img {
  width: 5vw;
  margin: 0 2vw 0 0;
}
#kit-list .kit-apply_card {
    width: 86vw;
  flex-direction: column;
  border-radius: 3vw;
  padding: 8vw;
  margin: 5vw auto;
}
#kit-list .kit-apply_card .kit-txt {
  padding:5vw 0 0;
}
#kit-list .kit-apply_card .kit-txt h3 {
  font-size: 6vw;
}
#kit-list .kit-apply_card .kit-txt .kit-txt-p {
  margin: 3vw auto;
}
#kit-list .kit-apply_card .kit-txt h4 {
    line-height: 1.5em;
  font-size: 3vw;
  border: .2vw solid #e5e5e5;
  padding: 2vw 2vw;
  margin: 0 0 3vw;
}
#kit-list .kit-apply_card .kit-txt .price {
  font-size: 5vw;
}
#kit-list .kit-apply_card .kit-txt .price span {
  font-size: 3vw;
}
#kit-list .kit-apply_card .kit-txt .cv-btn a {
  border-radius: 3vw;
  padding:5vw;
  margin: 5vw 0 0;
}
#kit-list .kit-apply_card .kit-txt .cv-btn p {
  font-size: 3vw;
    margin: 0 auto;
}
#kit-list .kit-apply_card .kit-txt .cv-btn img {
  width: 6vw;
}
#kit-list .caution {
  width: 86vw;
  font-size: 3vw;
  padding: 5vw;
    margin: 10vw auto 0;
}
#kit-list .caution h3, #kit-list .caution h4 {
    line-height: 1.5em;
  font-size: 3.5vw;
}
#kit-list .caution p {
  margin: 3vw 0 0;
}
#kit-list .caution div {
  border:.1vw solid #333;
  padding: 5vw;
  margin: 5vw auto 0;
}    
    
}
/*--------------*/
/*------------------------------faqPC*/
#faq .faq-contents {
  width: 700px;
  font-size: 1.1em;
  margin: 0 auto;
}
#faq .faq-contents h3 {
  display: flex;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}
#faq .faq-contents span {
  margin: 0 0 0 auto;
}
/*--------------*/
/*------------------------------faq*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#faq .faq-contents {
  width: 86vw;
  font-size: 3.5vw;
  margin: 0 auto;
}
#faq .faq-contents h3 {
  border-bottom: .2vw solid #333;
  padding: 5vw 0;
}
#faq .faq-contents span {
  margin: 0 0 0 auto;
}    
}
/*--------------*/
/*------------------------------inquiryPC*/
#inquiry {
  width: 100%;
  background: #e8efee;
  color: #595757;
  padding: 80px 0;
}
#inquiry h2 {
  font-size: 1.2em;
  font-weight: bolder;
  text-align: center;
  padding: 0 0 30px;
}
#inquiry .inquiry-flex {
  display: flex;
  justify-content: space-between;
  width: 600px;
  margin: 0 auto;
}
#inquiry .inquiry-flex div {
  text-align: center;
}
#inquiry .inquiry-flex div h3 {
  font-weight: bolder;
}
#inquiry .inquiry-flex div .tel {
  font-size: 1.7em;
  font-weight: bolder;
}
#inquiry .inquiry-flex div .tel a{
  text-decoration: none;
   color: #595757; 
}
#inquiry .form-btn {
  width: 320px;
  margin: 50px auto 0;
}
/*--------------*/
/*------------------------------inquiry*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
#inquiry {
  padding: 10vw 0;
    margin: 10vw auto 0;
}
#inquiry h2 {
  font-size: 3.8vw;
  padding: 0 0 5vw;
}
#inquiry .inquiry-flex {
  flex-direction: column;
  justify-content: center;
  width: 70vw;
  margin: 0 auto;
}
#inquiry .inquiry-flex div {
  margin: 0 auto 5vw;
}    
#inquiry .inquiry-flex p{
  text-align: center;
}
#inquiry .inquiry-flex div h3 {
  font-size: 3.8vw;
}    
#inquiry .inquiry-flex div .tel {
  font-size: 6vw;
    margin: 0 auto;
}
#inquiry .form-btn {
  width: 70vw;
  margin: 5vw auto 0;
}    
}
/*--------------*/
/*------------------------------開閉ボックスの設定PC*/
#upbtn, #upbtn2, #upbtn3, #upbtn4, #upbtn5, #upbtn6, #upbtn7, #upbtn8, #upbtn9, #upbtn10, #upbtn11, #upbtn12, #upbtn13, #upbtn14, #upbtn15, #upbtn16, #upbtn17, #upbtn18, #upbtn19, #upbtn20, #upbtn21, #upbtn22, #upbtn23, #upbtn24, #upbtn25, #upbtn26, #upbtn27 {
  cursor: pointer;
}
.upbox, .upbox2, .upbox3, .upbox4, .upbox5, .upbox6, .upbox7, .upbox8, .upbox9, .upbox10, .upbox11 {
  display: none;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  font-size: .9em;
  padding: 30px;
}
.upbox12, .upbox13, .upbox14, .upbox15, .upbox16 {
  display: none;
  width: 600px;
  height: 100%;
  margin: 50px auto 0;
}
/*--------------*/
/*------------------------------開閉ボックスの設定*/
/*------------------------------スマホ*/
@media (max-width: 640px) {
  /*開閉ボックスの設定*/
.upbox, .upbox2, .upbox3, .upbox4, .upbox5, .upbox6, .upbox7, .upbox8, .upbox9, .upbox10, .upbox11 {
  background: #f9f9f9;
  font-size: 3.5vw;
  padding: 5vw;
}
.upbox12, .upbox13, .upbox14, .upbox15, .upbox16 {
  width:90%;
  height: 100%;
  margin: 5vw auto 0;
}
}
/*--------------*/
/*------------------------------フッターPCここから*/
#footer {
  background: #fff;
}
#footer .foot_logo {
  width: 250px;
  margin: 0 auto 20px;
}
#footer .add, #footer .registration-number {
  font-size: .7em;
  text-align: center;
  margin: 0 auto;
}
#footer .registration-number {
  background: #ededed;
  font-size: .6em;
  padding: 10px 0;
}
#footer .foot_list {
  display: flex;
  justify-content: center;
}
#footer .foot_list li {
  font-size: .7em;
  font-weight: 300;
  text-align: center;
  padding: 15px 30px;
  margin: 30px 20px;
}
#footer .foot_list li a {
  text-decoration: none;
  color: #767676;
}
#footer .small_box {
  background: #559c9a;
  color: #fff;
  font-size: .5em;
  text-align: center;
  padding: 5px 0;
}
/*--------------*/
/*------------------------------フッター*/
/*----------------------------------------------スマホ*/
@media (max-width: 640px) {
  #footer {
    padding: 8vw 0 20vw;
  }
  #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;
}