@charset "utf-8";

/****************************
 font
****************************/
/* light */
@font-face {
  font-family: 'LINE Seed JP_OTF Thin';
  src: url('../fonts/LINESeedJP_OTF_Th.otf');
} 
/* nomal */
@font-face {
  font-family: 'LINE Seed JP_OTF Reguler';
  src: url('../fonts/LINESeedJP_OTF_Rg.otf');
} 
/* bold */
@font-face {
  font-family: 'LINE Seed JP_OTF Bold';
  src: url('../fonts/LINESeedJP_OTF_Bd.otf');
} 
/* heavy */
@font-face {
  font-family: 'LINE Seed JP_OTF ExtraBold';
  src: url('../fonts/LINESeedJP_OTF_Eb.otf');
}
.thin {
  font-family: 'LINE Seed JP_OTF Thin';
}
.reguler {
  font-family: 'LINE Seed JP_OTF Reguler';
}
.bold {   
  font-family: 'LINE Seed JP_OTF Bold';
}
.extrabold {
  font-family: 'LINE Seed JP_OTF ExtraBold';
}


.pc{display:block;}
.sp{display:none;}
@media only screen and (max-width: 798px) {
.pc{display:none;}
.sp{display:block;}
}

img{
  width: 100%;
}

*{
  box-sizing: border-box;
}

:root {
  --c-yellow: #FFFF00;
  --c-black: #282828;
}

@keyframes fluffy {
  0% {
      transform: translate(0,0px);
  }
  100% {
      transform: translate(0,-10px);
  }
}
.fluffy{
  animation: fluffy 2s ease-in-out infinite alternate;
}

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

フェードイン

-----------------------------------------------------------------------------  ***/
.show-cnt{
  transform: translateY(10px);
  transition: 0.5s ease-out;
  opacity: 0;
}
.show-cnt.run{
  transform:translateY(0);
  opacity: 1;
}


html, body{
  font-size: 62.5%;
  line-height:1.2;
  font-family:'LINE Seed JP_OTF Reguler';
  font-weight: 500;
  color: color: var(--c-black);;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  position: relative;
  background-color: #fff;
}

.h-logo{
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--c-black);
}
.h-logo img{
  display: block;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media only screen and (max-width: 798px) {
  .h-logo{
    width: 100px;
    height: 100px;
  }
  .h-logo img{
    width: 75px;
  }
}

.mv{
  position: relative;
}
.mv:before{
  content: '';
  position: absolute;
  top: 50%;
  height: 100%;
  left: 0;
  width: calc(100% - 170px);
  background-color: var(--c-yellow);
  border-radius: 0 0 150px 0;
}
.mv .img{
  width: calc(100% - 170px);
  position: relative;
  margin-left: auto;
  border-radius: 0 0 0 150px;
  overflow: hidden;
}
.mv .main-txt{
  position: absolute;
  bottom: 30%;
  left:100px;
  font-size: clamp(2.4rem,4vw, 5.8rem);
  line-height: 1.2;
  z-index: 1;
  text-shadow: 2px 2px 0 #fff;
}
.mv .main-txt strong{
  -webkit-text-fill-color: #5CC0BD;
  -webkit-text-stroke: 3px var(--c-black);
}
.mv .main-txt .num{
  font-size: clamp(5.5rem,9vw, 13rem);
  -webkit-text-stroke: 4px var(--c-black);
}
.mv .txt-box{
  position: absolute;
  max-width: 1230px;
  bottom: 30%;
  right: 5%;
  width: 38%;
}
.mv .txt-box .circle{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
.mv .txt-box .circle li{
  width: calc(100% / 3 - 10px);
  background: url(../img/mv-circle.svg) no-repeat center center / contain;
  position: relative;
  height: 0;
  padding-top: 30%;
}
.mv .txt-box .circle li > p{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(1rem,1.3vw, 1.6rem);
  line-height: 1.4;
}
.mv .txt-box .circle li > p strong{
  display: block;
  font-size: clamp(1.3rem,1.8vw, 2rem);
}
.mv .txt-box .txt{
  text-align: center;
  font-size: clamp(1rem,1.3vw, 1.4rem);
  line-height: 1.4;
  margin: 20px 0;
}
.mv .txt-box .txt span{
  background:linear-gradient(transparent 40%, #fff 40%);
  display: inline-block;
  padding: 0 10px;
}
.mv .txt-box .btn-box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
.mv .txt-box .btn-box a{
  display: flex;
  text-decoration: none;
  border: solid 4px var(--c-black);
  padding: 15px 20px;
  border-radius: 50px;
  font-size: clamp(1rem,1.3vw, 1.6rem);
  line-height: 1.4;
  color: var(--c-black);
  align-items: center;
  width: 49%;
  position: relative;
  transition: .3s;
}
.mv .txt-box .btn-box a:nth-of-type(1){
  background-color: #EA596B;
}
.mv .txt-box .btn-box a:nth-of-type(2){
  background-color: #97ECFF;
}
.mv .txt-box .btn-box a:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url(../img/arw01.svg) no-repeat center center / contain;
  width: 20px;
  height: 16px;
  transition: .3s;
}
.mv .txt-box .btn-box a:hover{
  background-color: var(--c-black);
  color: #fff;
}
.mv .txt-box .btn-box a:hover:after{
  background-image: url(../img/arw01-w.svg);
}
@media only screen and (max-width: 1000px) {
  .mv .img{
    width: calc(100% - 120px);
    position: relative;
    margin-left: auto;
    border-radius: 0 0 0 100px;
    overflow: hidden;
  }
  .mv .main-txt{
    left:50px;
    bottom: 20%;
  }
  .mv .txt-box{
    bottom: 20%;
  }
}
@media only screen and (max-width: 798px) {
  .mv{
    z-index: 2;
  }
  .mv:before{
    display: none;
  }
  .mv .img{
    width: 100%;
    border-radius: 0 0 0 50px;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 110%;
  }
  .mv .img img{
    position: absolute;
    width: 180%;
    top: 50%;
    left: 55%;
    transform: translate(-50%,-50%);
  }
  .mv .main-txt{
    position: absolute;
    top: 50%;
    left:0;
    width: 100%;
    text-align: center;
    font-size: clamp(2.4rem,7vw, 5.8rem);
  }
  .mv .main-txt strong{
    -webkit-text-stroke: 1px var(--c-black);
  }
  .mv .main-txt .num{
  font-size: clamp(5.5rem,9vw, 13rem);
    -webkit-text-stroke: 2px var(--c-black);
  }
  .mv .txt-box{
    top: 80%;
    width: 90%;
  }
  .mv .txt-box .circle{
    max-width: 450px;
    width: 90%;
    margin: 0 auto;
  }
  .mv .txt-box .circle li{
    width: calc(100% / 3 - 5px);
  }
  .mv .txt-box .circle li > p{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
    font-size: clamp(1rem,2vw, 1.6rem);
    line-height: 1.4;
  }
  .mv .txt-box .txt{
    margin: 20px 0;
  }
  .mv .txt-box .txt span{
    background:linear-gradient(transparent 40%, #fff 40%);
    display: inline-block;
    padding: 0 10px;
  }
  .mv .txt-box .btn-box a{
    border: solid 2px var(--c-black);
    padding: 10px;
  }
  .mv .txt-box .btn-box a:after{
    width: 15px;
    height: 12px;
  }
}
.intro{
  text-align: center;
  position: relative;
  z-index: 1;
  margin: -110px 0 60px;
}
.intro .txt1{
  font-size: clamp(1.6rem,2vw, 2.4rem);
  line-height: 1.4;
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto 20px;
}
.intro .txt2{
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 2px var(--c-black);
  font-size: clamp(5rem,8vw, 10rem);
  line-height: 1;
  margin: 0 auto 20px;
}
.intro .txt3{
  font-size: clamp(1.6rem,2.4vw, 3rem);
  line-height: 2;
}
@media only screen and (max-width: 1000px) {
  .intro{
    margin: -60px 0 60px;
  }
}
@media only screen and (max-width: 798px) {
  .intro{
    text-align: center;
    margin: 160px 0 0;
  }
  .intro:before{
    content: '';
    position: absolute;
    top: -410px;
    height: 500px;
    left: 0;
    width: 97%;
    background-color: var(--c-yellow);
    border-radius: 0 0 50px 0;
    z-index: -1;
  }
  .intro .txt1{
    background: none;
    padding: 0;
    width: 100%;
    margin: 0 auto 20px;
  }
  .intro .txt2{
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 2px var(--c-black);
    font-size: clamp(5rem,8vw, 10rem);
    line-height: 1;
    margin: 0 auto 20px;
  }
}

.pickup{
  position: relative;
  z-index: 3;
  padding-bottom: 70px;
}
.pickup .inner{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10px;
}
.pickup .inner li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  margin: 0 0 80px;
}
.pickup .inner li:nth-child(even){
  flex-flow: row-reverse;
}
.pickup .inner li .img{
  border: solid 2px var(--c-black);
  padding: 10px;
  position: relative;
  background-color: #F2F2ED;
  max-width: 700px;
  width: 60%;
}
.pickup .inner li .img:after{
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100px;
  background: url(../img/line-bg.jpg) repeat center center / 8px;
  z-index: -1;
}
.pickup .inner li .img strong{
  display: block;
}
.pickup .inner li .txt-box{
  background-color: var(--c-black);
  color: #fff;
  font-size: clamp(2rem,2.5vw, 3rem);
  line-height: 1.8;
  padding: 60px 5px;
  width: calc(100% - 670px);
  margin: 0 -30px 30px 0;
  position: relative;
  z-index: 1;
}
.pickup .inner li .txt-box:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10%,-83%);
  width: 250px;
  height: 60px;
  background: url(../img/pickup-hand.svg) no-repeat center center / contain;
}
.pickup .inner li .txt-box strong{
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.pickup .inner li:nth-child(even) .txt-box{
  margin: 0 0 30px -30px;
}
.pickup .inner li .ill{
  position: absolute;
  z-index: 1;
}
.pickup .inner li .i01{
  width: 320px;
  top: -50px;
  left: 40px;
}
.pickup .inner li .i02{
  width: 350px;
  bottom: -150px;
  right: 40px;
}
.pickup .inner li .i03{
  width: 260px;
  bottom: -180px;
  right: 50%;
}
.pickup .inner li .i04{
  width: 118px;
  bottom: -110px;
  left: -40px;
}
@media only screen and (max-width: 1280px) {
  .pickup{
    padding-bottom: 40px;
  }
  .pickup .inner li .img{
    max-width: none;
    width: 60%;
  }
  .pickup .inner li .txt-box{
    width: 45%;
    margin: 0 -5% 30px 0;
  }
  .pickup .inner li:nth-child(even) .txt-box{
    margin: 0 0 30px -5%;
  }
  .pickup .inner li .txt-box:before{
    width: 40%;
    height: 0;
    padding-top: 10%;
    transform: translate(10%, -67%);
  }
  .pickup .inner li .i01{
    width: 24%;
    top: -10%;
    left: 4%;
  }
  .pickup .inner li .i02{
    width: 27%;
    bottom: -31%;
    right: 4%;
  }
  .pickup .inner li .i03{
    width: 18%;
    bottom: -29%;
    right: 50%;
  }
  .pickup .inner li .i04{
    width: 8%;
    bottom: -11%;
    left: -4%;
  }
}
@media only screen and (max-width: 798px) {
  .pickup{
    position: relative;
    z-index: 3;
    padding-top: 50px;
  }
  .pickup .inner{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  .pickup .inner li{
    display: block;
    margin: 0 0 30px;
  }
  .pickup .inner li .img{
    border: solid 1px var(--c-black);
    padding: 5px;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
  }
  .pickup .inner li .img:after{
    bottom: -5px;
    right: -5px;
  }
  .pickup .inner li .txt-box{
    padding: 20px 25px;
    width: fit-content;
    margin: 0 auto -30px;
    text-align: center;
  }
  .pickup .inner li:nth-child(even) .txt-box{
    margin: 0 auto -30px 0;
  }
  .pickup .inner li .txt-box:before{
    transform: translate(10%,-70%);
    width: 120px;
    height: 30px;
    padding: 0;
  }
  .pickup .inner li .txt-box strong{
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  .pickup .inner li .ill{
    position: relative;
    z-index: 1;
  }
  .pickup .inner li .i02{
    width: 220px;
    bottom: initial;
    right: initial;
    margin: -60px 30px 0 auto;
  }
  .pickup .inner li .i03{
    width: 180px;
    bottom: initial;
    right: initial;
    margin: -60px auto 0 30px;
  }
  .pickup .inner li .i04{
    width: 65px;
    bottom: initial;
    left: initial;
    margin: -90px 30px 0 auto;
  }
}

.conts{
}
.conts-tit{
  width: fit-content;
  font-size: clamp(1.5rem,1.8vw, 2rem);
  line-height: 1;
  background-color: var(--c-black);
  transform: translateY(-50%);
  margin: 0 auto 20px;
  border-radius: 50px;
  padding: 10px 100px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.conts-head-txt{
  font-size: clamp(2rem,3vw, 4rem);
  line-height: 1.4;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.conts .bn-box{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.conts .bn-box li{
  width: 49%;
}
.conts .bn-box li a{
  display: block;
  position: relative;
  transition: .3s;
}
.conts .bn-box li a:after{
  content: '';
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: -3px;
  right: -3px;
  background-color: rgba(0, 0, 0, .25);
  transition: .3s;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  z-index: -1;
}
.conts .bn-box li a:hover{
  transform: translateY(-10px);
}
@media only screen and (max-width: 798px) {
  .conts-tit{
    margin: 0 auto 10px;
    padding: 10px 50px;
  }
  .conts-head-txt{
    margin: 0 auto 30px;
  }
  .conts .bn-box{
    display: block;
    max-width: 500px;
  }
  .conts .bn-box li{
    width: 100%;
    margin-bottom: 20px;
  }
  .conts .bn-box li a:after{
    bottom: -2px;
    right: -2px;
  }
}

#case{
  position: relative;
  padding-bottom: 180px;
}
#case:before{
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  background-color: #5CC0BD;
  border-radius: 0 150px 0 0;
}
#case .slider{
  border-top: solid 2px var(--c-black);
  border-bottom: solid 2px var(--c-black);
  background-color: #fff;
  margin-bottom: 80px;
}
#case .splide__slide{
  padding: 20px;
  border-right: solid 2px var(--c-black);
}
#case .price{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  font-size: clamp(1.7rem,1.8vw, 2rem);
  line-height: 1.4;
  margin: 10px 0;
}
#case .price span{
  display: block;
  background-color: var(--c-black);
  color: #fff;
  padding: 5px;
  font-size: clamp(1.4rem,1.5vw, 1.7rem);
  line-height: 1;
  border-radius: 0 5px 0 0;
  margin-right: 10px;
  transform: translateY(-5px);
}
#case .price  strong{
  color: #FF2828;
  font-size: clamp(3rem,3.5vw, 4rem);
  line-height: 1;
}
#case .bonus{
  font-size: clamp(1.7rem,1.8vw, 2rem);
  line-height: 1.4;
  text-align: center;
}
#case .bonus.none{
  color: #5CC0BD;
}
#case .data{
  margin: 15px 0;
  padding-top: 10px;
  border-top: solid 3px #E6E6E6;
  font-size: clamp(1.4rem,1.5vw, 1.6rem);
  line-height: 1.4;
}
#case .data strong{
  display: block;
  font-size: clamp(2rem,2.2vw, 2.4rem);
}
#case .voice-txt{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.4rem,1.5vw, 1.6rem);
  line-height: 1.4;
}
#case .voice-txt strong{
  display: block;
  min-width: 50px;
  width: 50px;
}
#case .voice-txt span{
  display: block;
  width: calc(100% - 60px);
}
#case .notes{
  font-size: clamp(1rem,1.1vw, 1.2rem);
  line-height: 1.4;
  margin-top: 10px; 
}
@media only screen and (max-width: 798px) {
  #case{
    padding-bottom: 80px;
  }
  #case:before{
    border-radius: 0 50px 0 0;
  }
  #case .slider{
    margin-bottom: 40px;
  }
  #case .splide__slide{
    padding: 15px;
  }
}

#flow{
  background: url(../img/line-bg.jpg) repeat center center / 8px;
  padding-bottom: 120px;
}
#flow .w-bg{
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 8px 0 8px rgba(0,0,0,.15);
}
#flow .inner{
  max-width: 800px;
  width: 90%;
  margin: 0 auto 80px;
  padding-bottom: 100px;
}
#flow .list > li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 80px;
  margin: 0 0 20px;
  position: relative;
}
#flow .list > li:before,
#flow .list > li:after{
  content: '';
  position: absolute;
}
#flow .list > li:last-child:before,
#flow .list > li:last-child:after{
  display:none;
}
#flow .list > li:before{
  width: 20px;
  height: 18px;
  background: url(../img/arw02.svg) no-repeat center center;
  bottom: 0;
  left: 90px;
}
#flow .list > li:after{
  width: 2px;
  height: calc(100% - 180px);
  background: var(--c-black);
  bottom: 10px;
  left: 99px;
}
#flow .list > li .txt-box{
  width: calc(100% - 500px);
}
#flow .list > li .txt-box .step{
  font-size: clamp(1.6rem,2.2vw, 2.8rem);
  line-height: 1;
  border-radius: 50px;
  border: solid 2px var(--c-black);
  background-color: var(--c-yellow);
  text-align: center;
  padding: 10px 5px;
  width: 200px;
  margin: 0 0 20px;
}
#flow .list > li .txt-box .txt{
  font-size: 1.6rem;
  line-height: 1.8;
}
#flow .list > li .right-box{
  min-width: 470px;
  width: 470px;
}
#flow .list > li:nth-child(1) .right-box{
  background-color: #E0F6FC;
  padding: 20px;
}
#flow .list > li:nth-child(1) .right-box .midashi{
  font-size: clamp(1.4rem,1.7vw, 2rem);
  line-height: 1;
  margin: 0 0 20px;
  text-align: center;
}
#flow .list > li:nth-child(1) .right-box .checklist{
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#flow .list > li:nth-child(1) .right-box .checklist li{
  width: 49%;
  font-size: clamp(1.3rem,1.5vw, 1.7rem);
  line-height: 1;
  margin: 0 0 10px;
}
#flow .list > li:nth-child(3) .txt-box{
  width: calc(100% - 550px);
}
#flow .list > li:nth-child(3) .right-box{
  min-width: 520px;
  width: 520px;
}
#flow .summary{
  background-color: var(--c-black);
  color: var(--c-yellow);
  text-align: center;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  transform: rotate(2deg);
  font-size: clamp(1.5rem,3vw, 2.4rem);
  line-height: 1.6;
  padding: 20px 5px;
  position: relative;
}
#flow .summary:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10%,-83%);
  width: 134px;
  height: 64px;
  background: url(../img/flow-hand.svg) no-repeat center center / contain;
}
@media only screen and (max-width: 920px) {
  #flow .list > li .txt-box{
    width: calc(100% - 430px);
  }
  #flow .list > li .right-box{
    min-width: 410px;
    width: 410px;
  }
  #flow .list > li:nth-child(3) .txt-box{
    width: calc(100% - 450px);
  }
  #flow .list > li:nth-child(3) .right-box{
    min-width: 440px;
    width: 440px;
  }
}
@media only screen and (max-width: 798px) {
  #flow{
    padding-bottom: 60px;
  }
  #flow .w-bg{
    box-shadow: 4px 0 4px rgba(0,0,0,.15);
  }
  #flow .inner{
    margin: 0 auto 40px;
    padding-bottom: 50px;
  }
  #flow .list > li{
    display: block;
    padding-bottom: 50px;
    margin: 0 0 10px;
  }
  #flow .list > li:before{
    width: 15px;
    height: 12px;
    background: url(../img/arw02.svg) no-repeat center center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #flow .list > li:after{
    width: 2px;
    height: 30px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  #flow .list > li .txt-box{
    width: 100% ;
    text-align: center;
    margin-bottom: 20px;
  }
  #flow .list > li .txt-box .step{
    width: 200px;
    margin: 0 auto 20px;
  }
  #flow .list > li .right-box{
    min-width: auto;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  #flow .list > li:nth-child(1) .right-box{
    background-color: #E0F6FC;
    padding: 20px;
  }
  #flow .list > li:nth-child(1) .right-box .checklist{
    max-width: 280px;
    margin: 0 auto;
  }
  #flow .list > li:nth-child(3) .txt-box{
    width: 100%;
  }
  #flow .list > li:nth-child(3) .right-box{
    min-width: auto;
    width: 100%;
  }
  #flow .summary{
    width: 96%;
  }
  #flow .summary:before{
    transform: translate(10%,-83%);
    width: 77px;
    height: 33px;
  }
}

footer{
  background-color: var(--c-black);
  padding: 30px 0;
}
footer .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
footer .inner .logo{
  max-width: 300px;
  width: 300px;
}
footer .inner .txt{
  width: 50%;
  font-size: clamp(1.2rem,1.5vw, 1.6rem);
  line-height: 1.6;
  color: #fff;
}
footer .inner .txt span{
  font-size: clamp(1.1rem,1.3vw, 1.4rem);
  display: block;
  margin-top: 10px;
}
@media only screen and (max-width: 798px) {
  footer .inner{
    display: block;
  }
  footer .inner .logo{
    max-width: 225px;
    margin: 0 auto 20px;
  }
  footer .inner .txt{
    width: 96%;
    margin: 0 auto;
  }
}


/***** フォームページ *****/
.contact{
  padding: 150px 0;
}
.contact .inner{
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.contact .inner .feature{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 60px;
}
.contact .inner .feature li{
    width: calc(100% / 4 - 10px);
    border: solid 4px var(--c-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 165px;
    border-radius: 200px;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    line-height: 1.6;
    background-color: #97ECFF;
}
.contact .inner .mw_wp_form_confirm .feature{
  display: none;
}
.contact .inner .midashi{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--c-black);
}
.contact .inner .confirm-txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
  color: #FF2828;
  display: none;
}
.contact .inner .mw_wp_form_confirm .confirm-txt{
  display: block;
}
.contact .inner .txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 20px;
}
.contact .inner .txt.mt{
  margin-top: 30px;
}
.contact .inner .txt a{
  color: var(--sub_color);
  text-decoration: underline;
}
.contact .inner .txt a:hover{
  text-decoration: none;
}
.contact .inner table{
  margin: 30px 0 60px;
  width: 100%;
}
.contact .inner table th,
.contact .inner table td{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
.contact .inner table th {
  min-width: 280px;
  width: 280px;
  padding: 10px 0 15px;
  vertical-align: top;
}
.contact .inner table th p{
  display: flex;
  align-items: flex-start;
}
.contact .inner table th strong{
  display: block;
  background-color: #FF2828;
  color: #fff;
  padding: 5px 10px;
  margin: -5px 10px 0 0;
  vertical-align: top;
  width: 60px;
  text-align: center;
}
.contact .inner table th strong.any{
  background: none;
  border: solid 1px #FF2828;
  color: #FF2828;
}
.contact .inner table th span{
  display: block;
}
.contact .inner table td{
  width: calc(100% - 280px);
  padding: 0 0 15px;
  position: relative;
}
.contact .inner table td .error{
  position: absolute;
  display: inline-block;
  background-color: #B70000;
  color: #fff;
  padding: 5px 10px;
  margin: 0;
  width: fit-content;
  top: -10px;
  left: 10px;
  font-size: 1.2rem;
  line-height: 1;
}
.contact .inner table td .flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact .inner table td .flex > p{
  width: 45%;
  margin-right: 2%;
}
.contact .inner table td .flex > p:first-child{
}
.contact .inner select,
.contact .inner input[type=text].day,
.contact .inner input[type=text],
.contact .inner textarea,
.contact .inner .mw_wp_form_confirm td p,
.contact .inner .mw_wp_form_confirm td .check{
  -webkit-appearance: none;
  appearance: none;
  padding: 15px;
  padding-right: 1em;
  border: none;
  outline: 0;
  background: #eee;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
  width: 100%;
  border-radius: 0;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
.contact .inner input[type=text]{
  width: 80%;
  cursor: inherit;
}
.contact .inner input[type=text].short{
  width: 30%;
}
.contact .inner input[type=text].long{
  width: 100%;
}
.contact .inner input::placeholder{
  color: #d3d3d3;
}
.contact .inner  .select {
  display: block;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
.contact .inner .select::after{
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  content: "";
  background-color: var(--c-black);
  opacity: .6;
}
.contact .inner .select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
  content: "";
  pointer-events: none;
  background: url(../img/arw03.svg) no-repeat center center / contain;
  opacity: .6;
}
.contact .inner .mw_wp_form_confirm .select::after,
.contact .inner .mw_wp_form_confirm .select::before{
  display: none;
}
.contact .inner select::-ms-expand {
  display: none;
}
.contact .inner .pp-txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 40px;
}
.contact .inner .pp-txt a{
  color: #0000EE;
  text-decoration: underline;
}
.contact .inner .pp-txt a:hover{
  text-decoration: none;
}
.contact .inner .btn-wrap{
  display: flex;
  justify-content: center;
}
.contact .inner button[type=submit]{
  display: block;
  border-radius: 100px;
  border: solid 2px var(--c-black);
  background-color: var(--c-yellow);
  padding: 20px 45px 20px 30px;
  transition: .3s;
  position: relative;
  text-align: left;
  font-size: clamp(1.3rem, 1.5vw, 1.7rem);
  line-height: 1.6;
  font-weight: 300;
  width: 48%;
  max-width: 350px;
  margin: 0 5px;
  text-align: center;
}
.contact .inner button[type=submit].back{
  background-color: #D0D6D3;
  border: solid 2px #D0D6D3;
}
.contact .inner button[type=submit]:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 16px;
  background: url(../img/arw01.svg) no-repeat center center / contain;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.contact .inner button[type=submit].back:after{
  background: url(../img/arw01.svg) no-repeat center center / contain;
}
.contact .inner button[type=submit]:hover{
  background-color: #fff;
  color: var(--c-black);
}
.contact .inner button[type=submit]:hover:after{
  background: url(../img/arw01.svg) no-repeat center center / contain;
}
.contact .inner .check{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.contact .inner .check > span{
  display: flex;
  width: calc(100% / 3 - 10px);
  margin: 0 10px 10px 0;
}
.contact .inner .check > span label {
  display: flex;
  width: 100%;
}
.contact .inner .check .mwform-checkbox-field-text{
  cursor: pointer;
  padding: 10px 10px 10px 50px;
  position: relative;
  display: block;
  border: solid 1px #E6E6E6;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  transition: .3s;
  background-color: #fff;
  border-radius: 5px;
}
.contact .inner .check .mwform-checkbox-field-text{
  display: flex;
  width: 100%;
  align-items: center;
}
.contact .inner .check .mwform-checkbox-field-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E6E6E6;
  background: #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.contact .inner .check input[type="checkbox"] {
    display: none;
}
.contact .inner .check input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-top: 3px solid var(--c-black);
  border-right: 3px solid var(--c-black);
  transform: translateY(-75%) rotate(135deg);
  position: absolute;
  left: 15px;
  top: 50%;
}
.contact .inner .check input[type="checkbox"]:checked + .mwform-checkbox-field-text{
  background-color: var(--c-yellow);
}
@media only screen and (max-width: 798px) {
  .contact{
    padding: 120px 0;
  }
  .contact .inner .feature{
    max-width: 300px;
    margin: 0 auto 30px;
  }
  .contact .inner .feature li{
      width: calc(100% / 2 - 5px);
      border: solid 2px var(--c-black);
      height: 145px;
      margin: 0 0 10px;
  }
  .contact .inner .midashi{
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    line-height: 1;
    display: flex;
    align-items: center;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--c-black);
  }
  .contact .inner .txt{
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .contact .inner table{
    margin: 20px 0 40px;
    width: 100%;
  }
  .contact .inner table th{
    min-width: auto;
    width: 100%;
    padding: 10px 0 10px;
    display: block;
  }
  .contact .inner table th strong{
    max-width: 50px;
  }
  .contact .inner table th p{
  }
  .contact .inner table td{
    padding: 0 0 10px;
    width: 100%;
    display: block;
  }
  .contact .inner table td p{
    margin-bottom: 5px;
  }
  .contact .inner table td input[type=text],
  .contact .inner table td textarea{
    padding: 10px;
    width: 100%;
  }
  .contact .inner .btn-wrap{
    display: block;
  }
  .contact .inner button[type=submit]{
    display: block;
    border-radius: 100px;
    padding: 20px 45px 20px 30px;
    transition: .3s;
    position: relative;
    text-align: left;
    font-size: clamp(1.3rem, 1.5vw, 1.7rem);
    line-height: 1.6;
    font-weight: 300;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
  .contact .inner button[type=submit]:after{
    width: 15px;
    height: 13px;
  }
  .contact .inner .check{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .contact .inner .check > span{
    display: flex;
    width: calc(100% / 2 - 5px);
    margin: 0 5px 5px 0;
  }
}

footer#thanks {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.contact.thanks .inner .txt{
  text-align: center;
  line-height: 1.8;
  margin: 0 0 60px;
}
.contact.thanks a{
  display: block;
  border-radius: 100px;
  border: solid 2px var(--c-black);
  background-color: var(--c-yellow);
  color: var(--c-black);
  padding: 20px 45px 20px 30px;
  transition: .3s;
  position: relative;
  text-align: left;
  font-size: clamp(1.3rem, 1.5vw, 1.7rem);
  line-height: 1.6;
  font-weight: 300;
  width: 48%;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}
.contact.thanks a:after{
  content: '';
  position: absolute;
  width: 20px;
  height: 16px;
  background: url(../img/arw01.svg) no-repeat center center / contain;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.contact.thanks a:hover{
  background-color: #fff;
  color: var(--c-black);
}
.contact.thanks a:hover:after{
  background: url(../img/arw01.svg) no-repeat center center / contain;
}
@media only screen and (max-width: 798px) {
footer#thanks {
  position: relative;
  left: initial;
  bottom: initial;
  width: 100%;
}
.contact.thanks .inner .txt{
    margin: 0 0 30px;
}
  .contact.thanks a{
    width: 90%;
  }
}