
/*------------------------------------------------------------
  web fonts
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500,600,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');

/*
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
*/
/*
  font-family: "Noto Sans JP", sans-serif;
*/

/*------------------------------------------------------------
  汎用スタイル
------------------------------------------------------------*/

:root {
  --main_color: #282828;
  --sub_color: #00a04d;
}

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

a{
  text-decoration:none;
  color: #333;
}

a:hover{
}

html, body{
  font-size: 62.5%;
  line-height:1.4;
  font-weight: 400;
  font-family:"Noto Sans JP", sans-serif;
  color:#000;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body{
}
body main{
  overflow-x: hidden;
}

img{
  width: 100%;
}

*{
  box-sizing: border-box;
}

.min{
  font-family: "Shippori Mincho B1", serif;
}
.en{
  font-family: "Montserrat", sans-serif;
}

@media only screen and (min-width: 799px) {
  a {
    transition: 1.0s ;
  }
  a:hover {
  }
}


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

フェードイン

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

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

共通

-----------------------------------------------------------------------------  ***/
.submit-btn{
  position: relative;
  width: 100%;
  background: url(../img/submit-btn.svg) no-repeat center center / contain;
}
.submit-btn:after{
  content: '';
  width: 20px;
  height: 1px;
  background-color: var(--sub_color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%,-50%);
  transition: .3s;
}
.submit-btn:hover:after{
  right: -5px;
}
.submit-btn a,
.submit-btn input[type=submit]{
  background: none;
  display: block;
  border: none;
  padding: 15px 5px;
  text-align: center;
  font-size: clamp(2rem, 2.1vw, 2.2rem);
  font-weight: 600;
  width: 100%;
  color: var(--sub_color);
}

.fix-btn{
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: .3s;
  opacity: 0;
  pointer-events: none;
  max-width: 130px;
  z-index: 100;
}
.fix-btn.on{
  opacity: 1;
  pointer-events: inherit;
}

.form-bn{
  max-width: 650px;
  width: 90%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
}
.form-bn:after{
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 90%;
  bottom: 0;
  right: 0;
  box-shadow: 3px 3px 5px rgba(0,0,0,.2);
  transition: .3s;
}
.form-bn:hover:after{
  box-shadow: 0 0 0 rgba(0,0,0,.2);
}
.border-tit{
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: 1.6;
  text-align: center;
  position: relative;
  margin: 0 0 90px;
}
.border-tit:before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-110%);
  width: 1px;
  height: 100px;
  background-color: var(--main_color);
}
@media only screen and (min-width: 799px) {
  .fix-btn:hover{
    opacity: .7;
  }
}
@media only screen and (max-width: 798px) {
  .fix-btn{
    bottom: 0;
    right: initial;
    max-width: none;
    width: 100%;
    background-color: var(--sub_color);
    padding: 10px;
  }
  .fix-btn img.sp{
    display: block;
    max-width: 330px;
    margin: 0 auto;
  }
  .border-tit{
    margin: 0 0 40px;
  }
  .border-tit:before{
    height: 50px;
  }
  input,
  select{
    font-size: 1.6rem;
  }
}

.mv{
  width: 100%;
  height: 100vh;
  position:relative;
  overflow: hidden;
}
.mv .movie{
  position:relative;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
.mv .movie video{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
}
.mv .logo{
  position: absolute;
  max-width: 250px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.mv .inner{
  max-width: 980px;
  width: 90%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.mv .txt-box .txt1{
  z-index: 1;
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  line-height: 1.8;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  word-break: keep-all;
  letter-spacing: .25rem;
  margin-bottom: 15%;
  -webkit-filter: blur(30px);
  -moz-filter: blur(30px);
  -o-filter: blur(30px);
  -ms-filter: blur(30px);
  filter: blur(30px);
  transition: filter 1s;
  opacity: 0;
}
.mv .txt-box .txt1.move{
  -webkit-filter: blur(0);
  -moz-filter: blur(0);
  -o-filter: blur(0);
  -ms-filter: blur(0);
  filter: blur(0);
  opacity: 1;
}
.mv .txt-box .txt2{
  opacity: 0;
  transition: 1s;
}
.mv .txt-box .txt2.move{
  opacity: 1;
}
.mv .txt-box .txt2 span{
  display: block;
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  font-weight: 600;
}
.mv .txt-box .txt2 strong{
  display: inline-block;
  font-size: clamp(2.4rem, 3.4vw, 4.8rem);
  line-height: 1.6;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--main_color);
  text-decoration-thickness: 4px;
  text-underline-offset: 12px;
}
.mv .inner .rsv-box{
  max-width: 300px;
  background-color: rgba(255,255,255,.9);
  padding: 0 30px 30px;
  opacity: 0;
  transition: 1s;
}
.mv .inner .rsv-box.move{
  opacity: 1;
}
.mv .inner .rsv-box .head .img{
  margin: -68% -20% 0;
  width: 140%;
}
.mv .inner .rsv-box .head .txt{
  display: block;
  border: solid 1px var(--sub_color);
  color: var(--sub_color);
  background-color: #fff;
  padding: 5px 10px 8px;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(2rem, 2.1vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
}
.mv .inner .rsv-box .midashi{
  text-align: center;
  font-size: clamp(1.5rem, 1.5vw, 1.6rem);
  color: var(--sub_color);
  font-weight: 600;
}
.mv .inner .rsv-box .midashi strong{
  display: block;
  font-size: clamp(3rem, 3.2vw, 3.3rem);
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
            -2px 2px 0 #FFF, 2px -2px 0 #FFF,
            0px 2px 0 #FFF,  0-2px 0 #FFF,
            -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.mv .inner .rsv-box .sel-tit{
  margin: 10px 0 5px;
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  font-weight: 600;
}
.mv .inner .rsv-box .select {
  display: block;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
.mv .inner .rsv-box select,
.mv .inner .rsv-box input {
  -webkit-appearance: none;
  appearance: none;
  padding: 11px 15px;
  padding-right: 1em;
  border: solid 2px var(--main_color);
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
  width: 100%;
  color: var(--main_color);
  border-radius: 0;
}
.mv .inner .rsv-box input::placeholder{
  color: var(--main_color);
}
.mv .inner .rsv-box .select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
  content: "";
  pointer-events: none;
  background: url(../img/arw01.svg) no-repeat center center / contain;
}
.mv .inner .rsv-box select::-ms-expand {
  display: none;
}
.mv .inner .rsv-box .submit-btn{
  margin: 15px 0 0;
}
@media only screen and (max-width: 798px) {
  .mv{
    height: auto;
    overflow: inherit;
    padding-bottom: 10px;
  }
  .mv .movie video{
    min-width: auto;
    width: 100%;
  }
  .mv .movie .txt-box{
    position: absolute;
    width: 90%;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    z-index: 1;
  }
  .mv .movie .txt-box .txt1{
    margin: 0 auto 20%;
  }
  .mv .movie .txt-box .txt2{
    text-align: center;
  }
  .mv .txt-box .txt2 strong{
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
  }
  .mv .logo{
    max-width: 200px;
    top: 3%;
  }
  .mv .inner{
    position: relative;
    bottom: inherit;
    left: inherit;
    transform: none;
    display: block;
    width: 100%;
  }
  .mv .inner .rsv-box{
    max-width: 300px;
    width: 100%;
    padding: 0 30px 15px;
    margin: -35px auto 0;
    box-shadow: 2px 2px 4px rgba(0,0,0,.2);
  }
  .mv .inner .rsv-box .head{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    transform: translateY(-60px);
    margin: 0 0 -50px;
  }
  .mv .inner .rsv-box .head .img{
    margin: 0 -10% 0 -10%;
    width: 80%;
  }
  .mv .inner .rsv-box .head .txt{
    width: 36%;
    margin: 0 0 20px;
  }
  .mv .inner .rsv-box .midashi{
    text-align: center;
    font-size: clamp(1.5rem, 1.5vw, 1.6rem);
    color: var(--sub_color);
    font-weight: 600;
  }
  .mv .inner .rsv-box .midashi strong{
    display: block;
    font-size: clamp(3rem, 3.2vw, 3.3rem);
    text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0-2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
  }
  .mv .inner .rsv-box .sel-tit{
    margin: 10px 0 5px;
    font-size: clamp(1.3rem, 1.4vw, 1.4rem);
    font-weight: 600;
  }
  .mv .inner .rsv-box .select {
    display: block;
    position: relative;
    vertical-align: middle;
    width: 100%;
  }
  .mv .inner .rsv-box select,
  .mv .inner .rsv-box input {
    -webkit-appearance: none;
    appearance: none;
    padding: 11px 15px;
    padding-right: 1em;
    border: solid 2px var(--main_color);
    outline: 0;
    background: #fff;
    background-image: none;
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    cursor: pointer;
    width: 100%;
  }
  .mv .inner .rsv-box input::placeholder{
    color: var(--main_color);
  }
  .mv .inner .rsv-box .select::before {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-width: 8px 5px 0 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    content: "";
    pointer-events: none;
  }
  .mv .inner .rsv-box select::-ms-expand {
    display: none;
  }
}

.intro{
  padding: 120px 0;
}
.intro .txt-box{
  text-align: center;
  margin: 0 0 80px;
}
.intro .txt-box .txt1{
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
.intro .txt-box .txt1 p{
  padding: 0 40px;
  position: relative;
}
.intro .txt-box .txt1 p:after{
  content: '';
  position: absolute;
  right: -12px;
  bottom: 20px;
  width: 30px;
  height: 18px;
  background: url(../img/intro-cross.svg) no-repeat center center / contain;
}
.intro .txt-box .txt1 p:last-of-type:after{
  display: none;
}
.intro .txt-box .txt1 p span{
  display: block;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
}
.intro .txt-box .txt1 p strong{
  display: block;
  font-weight: 400;
  font-size: clamp(4rem, 4.6vw, 5.5rem);
  line-height: 1;
}
.intro .txt-box .txt2{
  font-size: clamp(2rem, 2.6vw, 3.4rem);
  line-height: 1.8;
}
.intro .splide__list li{
  border: solid 1px #e3e3e3;
  background-color: #fff;
  margin-right: -1px;
}
.intro .splide__list li .txt{
  padding: 10px 45px 45px;
  font-size: clamp(1.3rem, 1.3vw, 1.4rem);
  line-height: 1.6;
}
.intro .splide__pagination{
  bottom: -30px;
}
.intro .splide__pagination__page.is-active{
  background-color: var(--main_color);
  transform: none;
}
@media only screen and (max-width: 798px) {
  .intro{
    padding: 80px 0;
  }
  .intro .txt-box{
    margin: 0 0 40px;
  }
  .intro .txt-box .txt1{
    display: block;
    margin: 0 0 1px;
  }
  .intro .txt-box .txt1 p{
    padding: 0 0 50px;
  }
  .intro .txt-box .txt1 p:after{
    content: '';
    position: absolute;
    right: initial;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .intro .splide__list li .txt{
    padding: 10px 25px 25px;
    line-height: 1.6;
  }
  .intro .splide__arrow svg{
    display: none;
  }
  .intro .splide__arrow{
    background: no-repeat center center /contain;
  }
  .intro .splide__arrow--prev{
    background-image: url(../img/slide-prev.png);
  }
  .intro .splide__arrow--next{
    background-image: url(../img/slide-next.png);
  }
}

.housedata{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10%;
}
.housedata .l-box{
  max-width: 260px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.housedata .l-box .tit{
  font-size: clamp(5rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: var(--main_color);
  text-decoration-thickness: 1px;
  text-underline-offset: 0;
  margin-bottom: 20px;
}
.housedata .l-box .plan-name{
  position: relative;
  color: #fff;
  padding: 50px 50px 50px 0;
  flex-grow: 1;
}
.housedata .l-box .plan-name:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--main_color);
  width: 1000%;
  height: 100%;
  z-index: -1;
}
.housedata .l-box .plan-name .name{
  font-size: clamp(5rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.housedata .l-box .plan-name .name span{
  display: block;
  font-size: clamp(1.3rem, 1.5vw, 1.8rem);
  margin-bottom: 5px;
}
.housedata .l-box .plan-name .txt{
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 20px;
}
.housedata .l-box .plan-name .tel{
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  pointer-events: none;
}
.housedata .r-box{
  position: relative;
  padding-left: 100px;
}
.housedata .r-box:before{
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  background-color: #f2eee6;
  width: 1000%;
  height: 100%;
  z-index: -1;
}
.housedata .r-box table th{
  text-align: right;
  min-width: 140px;
  border-right: solid 1px var(--main_color);
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.4;
  padding: 10px;
}
.housedata .r-box table td{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.4;
  padding: 10px;
}
.housedata .r-box .price{
  max-width: 440px;
  margin: 60px 0;
}
.housedata .r-box .txt{
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.6;
  position: relative;
  padding: 20px 0;
}
.housedata .r-box .txt strong{
  color: var(--sub_color);
}
.housedata .r-box .txt:before{
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  background-color: #fff;
  width: 1000%;
  height: 100%;
  z-index: -1;
}
.housedata .bn{
  width: 100%;
  margin-top: 100px;
}
@media only screen and (max-width: 1000px) {
  .housedata .l-box .plan-name{
    padding: 15% 10% 10% 0;
  }
  .housedata .r-box{
    padding-left: 50px;
  }
  .housedata .r-box .price{
    max-width: none;
    width: 80%;
  }
}
@media only screen and (max-width: 798px) {
  .housedata{
    display: block;
    margin-top: 0;
  }
  .housedata .l-box{
    max-width: none;
    width: 100%;
    display: block;
  }
  .housedata .l-box .tit{
    text-align: center;
    margin-bottom: 20px;
  }
  .housedata .l-box .plan-name{
    padding: 25px;
    background-color: var(--main_color);
    width: 90%;
  }
  .housedata .l-box .plan-name:before{
    display: none;
  }
  .housedata .l-box .plan-name .tel{
    pointer-events: inherit;
    text-decoration: underline;
  }
  .housedata .r-box{
    padding: 20px 10px;
  }
  .housedata .r-box:before{
    top: -10%;
    left: initial;
    right: 0;
    width: calc(100% - 15px);
    height: 110%;
  }
  .housedata .r-box table th{
    min-width: 110px;
  }
  .housedata .r-box .price{
    max-width: 300px;
    margin: 30px auto 0;
  }
  .housedata .r-box .txt{
    font-size: clamp(1.4rem, 1.6vw, 2rem);
    line-height: 1.6;
    position: relative;
    padding: 20px;
  }
  .housedata .r-box .txt:before{
    display: none;
  }
  .housedata .bn{
    width: 100%;
    margin-top: 50px;
  }
}

.commitment{
  padding: 250px 0 50px;
}
.commitment .inner{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.commitment .inner .box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 150px;
}
.commitment .inner .box:nth-of-type(2n){
  flex-flow: row-reverse;
}
.commitment .inner .box .main{
  max-width: 500px;
}
.commitment .inner .box .txt-box{
  width: calc(100% - 550px);
}
.commitment .inner .box .txt-box .t1{
  font-size: clamp(2rem, 2.6vw, 3.5rem);
  line-height: 1.6;
  margin: 0 0 20px;
}
.commitment .inner .box:nth-of-type(2n) .txt-box .t1{
  text-align: right;
  margin: -12px 0 15px;
}
.commitment .inner .box .txt-box .t2{
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  line-height: 1.8;
  margin: 0 0 25px;
}
.commitment .inner .box:nth-of-type(2n) .txt-box .t2{
  margin: 0 0 15px;
}
.commitment .inner .box .txt-box ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.commitment .inner .box .txt-box ul li{
  width: 48%;
  margin: 0 0 4%;
}
.commitment .inner .box .txt-box ul li strong{
  display: block;
  background-color: #a4a098;
  color: #fff;
  text-align: center;
  padding: 10px 2px;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 1000px) {
  .commitment{
    padding: 150px 0 50px;
  }
  .commitment .inner .box .main{
    max-width: none;
    width: 50%;
  }
  .commitment .inner .box .txt-box{
    width: 46%;
  }
}
@media only screen and (max-width: 798px) {
  .commitment{
    padding: 150px 0 30px;
  }
  .commitment .inner{
    width: 100%;
  }
  .commitment .inner .box{
    display: block;
    margin: 0 auto 50px;
  }
  .commitment .inner .box .main{
    max-width: none;
    width: 100%;
  }
  .commitment .inner .box .txt-box{
    width: 90%;
    margin: 20px auto 0;
  }
  .commitment .inner .box .txt-box .t1,
  .commitment .inner .box:nth-of-type(2n) .txt-box .t1{
    text-align: center;
    margin: 0 0 20px;
  }
  .commitment .inner .box .txt-box .t2{
    margin: 0 0 20px;
  }
  .commitment .inner .box .txt-box ul li{
    width: 49%;
    margin: 0 0 2%;
  }
}

.comfortable{
  background-color: #f2faf6;
  padding: 60px 0 150px;
}
.comfortable .inner{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.comfortable .inner .list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-bottom: 150px;
}
.comfortable .inner .list:last-of-type{
}
.comfortable .inner .list li{
  width: calc(100% / 2 - 20px);
  margin: 0 0 30px;
}
.comfortable .inner .list li .midashi{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.comfortable .inner .list li .midashi.sp{
  display: none;
}
.comfortable .inner .list li .midashi .icon{
  display: block;
  min-width: 70px;
  width: 70px;
}
.comfortable .inner .list li .midashi .txt{
  display: block;
  width: calc(100% - 85px);
  color: var(--sub_color);
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
}
.comfortable .inner .list li .midashi .txt strong{
  display: block;
  font-size: clamp(2.4rem, 2.8vw, 3.5rem);
}
.comfortable .inner .list li .img{
  margin: 0 0 10px;
}
.comfortable .inner .list li > .txt{
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  line-height: 1.8;
  margin-top: 10px;
}
.comfortable .inner .list li > .txt span{
  display: block;
  font-size: clamp(1.2rem, 1.2vw, 1.3rem);
  margin-top: 5px;
}
.comfortable .inner .list li > ol {
  margin-top: 15px;
}
.comfortable .inner .list li > ol li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 500px;
  margin: 0 0 10px;
  width: 100%;
}
.comfortable .inner .list li > ol li strong{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--sub_color);
  color: #fff;
  min-width: 40px;
  width: 40px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 500px 0 0 500px;
}
.comfortable .inner .list li > ol li span{
  display: flex;
  font-size: clamp(1.4rem, 1.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--sub_color);
  padding: 10px;
  width: calc(100% - 40px);
}
.comfortable .inner .list li > ol li span sup{
  font-size: clamp(1rem, 1.1vw, 1.2rem);
}
.comfortable .inner .marker{
  margin: -50px 0 100px;
  text-align: center;
}
.comfortable .inner .marker span{
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  color: var(--sub_color);
  line-height: 1.8;
  background: linear-gradient(transparent 30%, #fff 0%);
  display: inline;
  padding: 0 1px 5px;
}
.comfortable .inner .summary{
  font-size: clamp(2.6rem, 3vw, 3.5rem);
  line-height: 1.8;
  font-weight: 700;
  color: var(--sub_color);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--sub_color);
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
  margin: 0 0 50px;
}
@media only screen and (max-width: 798px) {
  .comfortable{
    background-color: #f2faf6;
    padding: 30px 0 60px;
  }
  .comfortable .inner .list{
    display: block;
    margin: 0 auto;
    padding-bottom: 70px;
  }
  .comfortable .inner .list li{
    width: 100%;
    margin: 0 0 30px;
  }
  .comfortable .inner .list li .midashi.pc{
    display: none;
  }
  .comfortable .inner .list li .midashi.sp{
    display: flex;
    justify-content: center;
    margin: 0 auto 10px;
  }
  .comfortable .inner .list li .midashi .icon{
    display: block;
    min-width: 48px;
    width: 48px;
    margin-right: 8px;
  }
  .comfortable .inner .list li .midashi .txt{
    width: auto;
  }
  .comfortable .inner .list li > ol li strong{
    min-width: 60px;
    width: 60px;
  }
  .comfortable .inner .list li > ol li span{
    width: calc(100% - 60px);
  }
  .comfortable .inner .marker{
    margin: -50px 0 50px;
    text-align: center;
  }
  .comfortable .inner .summary{
    text-underline-offset: 8px;
    margin: 0 0 40px;
  }
}

.outline{
  padding: 160px 0;
}
.outline .tit{
  text-align: center;
  font-size: clamp(2rem, 2.3vw, 2.5rem);
  line-height: 1;
  font-weight: 500;
  margin: 0 0 50px;
}
.outline table{
  border-bottom: solid 1px #bfbfbf;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.outline table th,
.outline table td{
  border-top:  solid 1px #bfbfbf;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
.outline table th {
  min-width: 300px;
  width: 300px;
  text-align: center;
  font-weight: 700;
  background-color: #f5f5f5;
  padding: 15px;
  vertical-align: middle;
}
.outline table td{
  padding: 15px 30px;
}
@media only screen and (max-width: 798px) {
  .outline{
    padding: 60px 0;
  }
  .outline .tit{
    margin: 0 0 30px;
  }
  .outline table th {
    min-width: auto;
    width: 100%;
    display: block;
    padding: 10px;
  }
  .outline table td{
    text-align: center;
    width: 100%;
    display: block;
    padding: 10px;
    border-top: none;
  }
}

#form{
  padding: 80px 0;
  background-color: #f2eee6;
}
#form .inner{
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
#form .tit{
  text-align: center;
  font-size: clamp(2rem, 2.3vw, 2.5rem);
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 50px;
}
#form .ill{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  margin: 0 auto 60px;
}
#form .ill li{
  width: 23%;
}
#form .midashi{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
#form .midashi:after{
  content: '';
  height: 1px;
  margin-left: 1rem;
  background-color: #000;
  flex-grow: 1;
}
#form .txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.6;
}
#form .txt.mt{
  margin-top: 30px;
}
#form .txt a{
  color: var(--sub_color);
  text-decoration: underline;
}
#form .txt a:hover{
  text-decoration: none;
}
#form table{
  margin: 30px 0 60px;
  width: 100%;
}
#form table th,
#form table td{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
#form table th {
  min-width: 280px;
  width: 280px;
  padding: 5px 0 15px;
  vertical-align: top;
}
#form table th p{
  display: flex;
  align-items: center;
}
#form table th strong{
  display: block;
  background-color: var(--sub_color);
  color: #fff;
  padding: 5px 15px;
  margin: -5px 10px 0 0;
  vertical-align: top;
}
#form table th strong.any{
  background: none;
  border: solid 1px var(--sub_color);
  color: var(--sub_color);
}
#form table th span{
  display: block;
}
#form table td{
  width: calc(100% - 280px);
  padding: 0 0 15px;
}
#form table td .flex{
  display: flex;
  flex-wrap: wrap;
}
#form table td .flex > p{
  width: 45%;
  margin-right: 2%;
}
#form select,
#form input[type=text].day,
#form input[type=text],
#form textarea {
  -webkit-appearance: none;
  appearance: none;
  padding: 15px;
  padding-right: 1em;
  border: none;
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
  width: 100%;
  color: var(--main_color);
  border-radius: 0;
}
#form input[type=text]{
  width: 80%;
  cursor: inherit;
}
#form input[type=text].short{
  width: 30%;
}
#form input[type=text].long{
  width: 100%;
}
#form input::placeholder{
  color: #d3d3d3;
}
#form  .select {
  display: block;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
#form .select::after{
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  content: "";
  background-color: var(--main_color);
  opacity: .6;
}
#form .select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
  content: "";
  pointer-events: none;
  background: url(../img/arw01.svg) no-repeat center center / contain;
  opacity: .6;
}
#form select::-ms-expand {
  display: none;
}
#form .submit-btn{
  max-width: 240px;
  margin: 30px auto 0;
}
#form .submit-btn input{
  cursor: pointer;
}
.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover{
  box-shadow: none;
}
table#mfp_confirm_table{
  border-top: solid 1px #ccc;
}
table#mfp_confirm_table tr.mfp_achroma,
table#mfp_confirm_table tr.mfp_colored{
  background: none;
}
table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td{
  border: none;
  border-bottom: solid 1px #ccc;
  background: none;
}
table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
table#mfp_confirm_table tr th {
  min-width: 280px;
  width: 280px;
  padding: 15px 0;
  vertical-align: top;
}
table#mfp_confirm_table tr td{
  padding: 15px;
}
div.mfp_buttons{
  max-width: 240px;
  margin: 30px auto 0;
}
div.mfp_buttons span{
  display: block;
  position: relative;
  width: 100%;
  background: url(../img/submit-btn.svg) no-repeat center center / contain;
}
div.mfp_buttons span:after{
  content: '';
  width: 20px;
  height: 1px;
  background-color: var(--sub_color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%,-50%);
  transition: .3s;
}
div.mfp_buttons span:hover:after{
  right: -5px;
}
div.mfp_buttons span button{
  background: none;
  display: block;
  border: none;
  padding: 15px 5px;
  text-align: center;
  font-size: clamp(2rem, 2.1vw, 2.2rem);
  font-weight: 600;
  width: 100%;
  color: var(--sub_color);
}
.mfp_element_button:hover{
  background: none;
}

@media only screen and (max-width: 798px) {
  #form{
    padding: 50px 0;
  }
  #form .tit{
    margin: 0 0 30px;
  }
  #form .ill{
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  #form .ill li{
    width: 48%;
    margin: 0 0 3%;
  }
  #form .midashi{
    display: block;
    margin: 0 0 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px #000;
  }
  #form .midashi:after{
    display: none;
  }
  #form table{
    margin: 20px 0 30px;
  }
  #form table th {
    min-width: auto;
    width: 100%;
    display: block;
    padding: 0 0 10px;
  }
  #form table td{
    width: 100%;
    display: block;
    padding: 0 0 20px;
  }
  #form table td .flex{
    justify-content: space-between;
  }
  #form table td .flex > p{
    width: 49%;
    margin-right: 0;
  }
  #form select,
  #form input.day {
    padding: 10px;
  }
  #form .select::after{
    right: 20px;
  }
  #form .select::before {
    right: 5px;
    width: 10px;
  }
}


footer{
  background-color: #fff;
  padding: 80px 0 50px;
  text-align: center;
}
footer .logo{
  max-width: 250px;
  margin: 0 auto 30px;
}
footer .txt{
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 1.8;
}
footer .txt a{
  pointer-events: none;
  color: var(--main_color);
}
@media only screen and (max-width: 798px) {
  footer{
    padding: 40px 0;
  }
  footer .logo{
    max-width: 200px;
    margin: 0 auto 10px;
  }
  footer .txt{
    line-height: 2;
  }
  footer .txt a{
    pointer-events: inherit;
    display: inline-block;
    color: var(--main_color);
    font-weight: 700;
    font-size: 1.8rem;
  }
  footer .txt span{
    display: none;
  }
}

/***** thanks *****/
.thanks .mv{
  width: 100%;
  height: auto;
  position:relative;
  overflow: inherit;
}
.thanks .mv .logo{
  position: relative;
  max-width: 250px;
  margin: 30px auto;
  top: inherit;
  left:  inherit;
  transform: none;
}
#req {
  background-color: #f2eee6;
}
#req .inner .txt-box.thanks{
  text-align: center;
}
#req .inner .txt-box.thanks .t1{
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 500;
  line-height: 2;
  color: var(--color-main);
  margin: 0 0 30px;
}
#req .inner .txt-box.thanks{
  padding: 100px 0;
  margin-top: 50px;
}
#req .inner .txt-box.thanks .t3{
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  font-weight: 500;
  line-height: 1.8;
}
#req .inner .txt-box.thanks .t3 strong{
  display: block;
  margin: 0 0 20px;
}
@media only screen and (max-width: 798px) {
  .thanks .mv .logo{
    max-width: 200px;
  }
}