@charset "utf-8";

/****************************
 home
****************************/
#home #loading{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 30000;
  transition: .3s;
  overflow: hidden;
}
#home #loading.none{
  opacity: 0;
  pointer-events: none;
}
#home #loading .circle{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  transition: .6s;
  opacity: 0;
}
#home #loading .circle.move{
  opacity: 1;
}
#home #loading .circle .txt{
  width: 460px;
  height: 460px;
  background-color: var(--c-yellow);
  border-radius: 500px;
  position: relative;
  display: block;
  animation: fuwafuwa 2s infinite;
  transition: .5s;
}
#home #loading .circle .txt.move{
  width: 200vw;
  height: 200vh;
}
#home #loading .circle .txt img{
  display: block;
  max-width: 270px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: .6s;
}
#home #loading .circle .txt img.move{
  opacity: 1;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media only screen and (max-width: 798px) {
  #home #loading .circle .txt{
    width: 300px;
    height: 300px;
  }
  #home #loading .circle .txt img{
    max-width: 200px;
  }
}

#home header{
  transition: .3s;
  transform: translateY(-100%);
}
#home header.on{
  transform: translateY(0);
}
#home .mv{
  position: relative;
  z-index: 1;
  height: 91vh;
  width: 100%;
}
#home .mv .mv-logo{
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--c-black);
}
#home .mv .mv-logo img{
  display: block;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#home .mv .main-txt{
  position: absolute;
  left:100px;
  font-size: clamp(2rem,5.2vw, 5.8rem);
  line-height: 2;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
  width: 100%;
  text-align: center;
}
#home .mv .main-txt strong{
  font-size: clamp(4.8rem,11.2vw, 12rem);
  line-height: 1;
  transform: translateY(20%);
  display: inline-block;
}
#home .mv .main-img{
  width: 100%;
  height: 91vh;
  overflow: hidden;
  position: relative;
}
#home .mv .main-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%,-50%);
}
#home .mv .left{
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 38%;
  transform: translateY(11%);
}
#home .mv .left .midashi{
  max-width: 270px;
  margin: 0 auto 20px;
}
#home .mv .left .circle{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: center;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
#home .mv .left .circle li{
  width: calc(100% / 3 - 10px);
  background: url(../img/home/mv-circle.svg) no-repeat center center / contain;
  position: relative;
  height: 0;
  padding-top: 30%;
}
#home .mv .left .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;
}
#home .mv .left .circle li > p strong{
  display: block;
  font-size: clamp(1.3rem,1.8vw, 2rem);
}
#home .mv .left .txt{
  text-align: center;
  font-size: clamp(1rem,1.3vw, 1.4rem);
  line-height: 1.4;
  margin: 20px 0;
}
#home .mv .left .txt span{
  background:linear-gradient(transparent 20%, #fff 20%);
  display: inline-block;
  padding: 0 10px;
}
#home .mv .left .btn-box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
#home .mv .left .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;
  align-items: center;
  justify-content: center;
}
#home .mv .left .btn-box a:nth-of-type(1){
  background-color: #EA596B;
}
#home .mv .left .btn-box a:nth-of-type(2){
  background-color: #97ECFF;
}
#home .mv .left .btn-box a:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url(../img/common/arw-black02.svg) no-repeat center center / contain;
  width: 20px;
  height: 16px;
  transition: .3s;
}
#home .mv .left .btn-box a:hover{
  background-color: var(--c-black);
  color: #fff;
}
#home .mv .left .btn-box a:hover:after{
  background-image: url(../img/common/arw-white02.svg);
}
#home .mv .right{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  transform: translateY(34%);
}
#home .mv .right .area{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
#home .mv .right .area .house{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-right: 10px;
}
#home .mv .right .area .house li{
  background: url(../img/home/mv-house.svg) no-repeat center center / contain;
  text-align: center;
  padding: 22px 20px 15px;
  margin: 0 8px 0 0;
}
#home .mv .right .area .house li strong{
  display: block;
  color: var(--c-yellow);
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  line-height: 1;
}
#home .mv .right .area .house li span{
  display: block;
  color: #686868;
  font-size: 1rem;
  line-height: 1;
  margin-top: 5px;
}
#home .mv .right .area .txt{
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1.4;
  color: #fff;
  text-shadow: 2px 2px 0 var(--c-black);
}
#home .mv .right .pickup{
  position: relative;
  margin-top: 20px;
  background-color: #fff;
  padding: 20px 20px 20px 80px;
  border-radius: 30px 0 0 30px;
  box-shadow: 5px 5px 5px rgba(40,40,40,.25);
}
#home .mv .right .pickup .link{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  transition: .3s;
}
#home .mv .right .pickup .link:hover{
  opacity: .7;
}
#home .mv .right .pickup .tit{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: var(--c-black);
  color: #fff;
  border-radius: 100px;
  padding: 2% 2.35%;
  text-align: center;
  font-size: clamp(1rem,1.3vw, 1.4rem);
  line-height: 1.4;
  box-shadow: 5px 5px 5px rgba(40,40,40,.25);
}
#home .mv .right .pickup .tit span{
  display: block;
  max-width: 70px;
  margin: 0 auto 5px;
}
#home .mv .right .pickup .img{
  max-width: 195px;
}
#home .mv .right .pickup .txt-box{
  margin: 0 0 0 20px;
  width: calc(100% - 215px);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#home .mv .right .pickup .txt-box .box1{
  max-width: 226px;
}
#home .mv .right .pickup .txt-box .name{
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  line-height: 1.4;
  margin: 0 0 5px;
}
#home .mv .right .pickup .txt-box .data p{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.4;
  margin: 0 0 5px;
}
#home .mv .right .pickup .txt-box .data p span{
  display: block;
  min-width: 70px;
  width: 70px;
  padding-right: 10px;
  position: relative;
}
#home .mv .right .pickup .txt-box .data p span:before{
  content: '\ff1a';
  position: absolute;
  top: 0;
  right: 0;
}
#home .mv .right .pickup .txt-box .data p strong{
  display: block;
  width: calc(100% - 70px);
}
#home .mv .right .pickup .txt-box .box2{
  width: calc(100% - 270px);
  margin-left: 10px;
}
#home .mv .right .pickup .txt-box .price-box{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#home .mv .right .pickup .txt-box .price-box .txt{
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.2;
  border: solid 1px var(--c-black);
  padding: 2% 4%;
  border-radius: 0 10px 0 0;
}
#home .mv .right .pickup .txt-box .price-box .price{
  margin-left: 3%;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 1.2;
}
#home .mv .right .pickup .txt-box .price-box .price strong{
  font-size: clamp(1.4rem, 1.8vw, 2.2rem);
  color: var(--c-red1);
}
#home .mv .right .pickup .link-btn{
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.2;
  max-width: 200px;
  padding: 15px 30px;
  line-height: 1.4;
  position: absolute;
  margin: 0;
  bottom: 20px;
  left: 65%;
}
#home .mv .right .pickup .link-btn:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url(../img/common/arw-white02.svg) no-repeat center center / contain;
  width: 20px;
  height: 16px;
  transition: .3s;
}
#home .mv .right .pickup .link-btn:hover:after{
  background-image: url(../img/common/arw-black02.svg);
}
@media only screen and (max-width: 1450px) {
  #home .mv .left{
    left: 2%;
  }
  #home .mv .right{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    transform: translateY(34%);
  }
  #home .mv .right .pickup .tit{
    transform: translate(-40%,-50%);
  }
  #home .mv .right .pickup .txt-box{
    display: block;
  }
  #home .mv .right .pickup .txt-box .box1{
    max-width: none;
    width: 100%;
    padding-bottom: 5px;
  }
  #home .mv .right .pickup .txt-box .box2{
    width: 100%;
    margin: 0;
  }
  #home .mv .right .pickup .link-btn{
    margin: 15px auto 0;
    position: relative;
    bottom: initial;
    left: initial;
  }
}
@media only screen and (max-width: 1100px) {
  #home .mv .main-txt{
    transform: translateY(-70%);
  }
  #home .mv .left{
    transform: translateY(20%);
  }
  #home .mv .right .area{
    display: block;
  }
  #home .mv .right .area .txt br{
    display: none;
    margin-top: 5px;
  }
  #home .mv .right .pickup{
    margin-top: 10px;
    padding: 10px 10px 10px 80px;
  }
  #home .mv .right .pickup .img{
    max-width: 140px;
  }
  #home .mv .right .pickup .txt-box{
    width: calc(100% - 160px);
  }
}
@media only screen and (max-width: 798px) {
  #home .mv{
    position: relative;
    background-color: var(--c-yellow);
    height: auto;
  }
  #home .mv .mv-logo{
    width: 100px;
    height: 100px;
  }
  #home .mv .mv-logo img{
    width: 75px;
  }
  #home .mv .main-img{
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 100%;
  }
  #home .mv .main-img img{
    position: absolute;
    width: 180%;
    top: 50%;
    left: 55%;
    transform: translate(-50%,-50%);
  }
  #home .mv .main-txt{
    transform: none;
    top: 120px;
  }
  #home .mv .left{
    position: relative;
    bottom: initial;
    left: initial;
    max-width: 560px;
    width: 90%;
    transform: none;
    margin: -30% auto 10px;
  }
  #home .mv .left .midashi{
    max-width: 270px;
    margin: 0 auto 20px;
  }
  #home .mv .left .circle{
    max-width: 450px;
    width: 100%;
  }
  #home .mv .left .circle li{
    width: calc(100% / 3 - 5px);
    padding-top: 28%;
  }
  #home .mv .left .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;
  }
  #home .mv .left .txt{
    margin: 10px 0;
  }
  #home .mv .left .btn-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  #home .mv .left .btn-box a{
    border: solid 2px var(--c-black);
    padding: 5px 10px;
  }
  #home .mv .left .btn-box a:after{
    width: 15px;
    height: 12px;
  }
  #home .mv .right{
    position: relative;
    bottom: initial;
    right: initial;
    max-width: none;
    width: 100%;
    transform: none;
  }
  #home .mv .right .area{
    display: block;
    max-width: 300px;
    width: 90%;
    margin: 0 auto 5px;
  }
  #home .mv .right .area .house{
    padding-right: 0;
    justify-content: center;
  }
  #home .mv .right .area .house li{
    margin: 0 2px 0;
    width: calc(100% / 5 - 4px);
    padding: 15px 9px 10px;
  }
  #home .mv .right .area .txt{
    text-align: center;
    color: var(--c-black);
    text-shadow: 1px 1px 0 #fff;
    margin-top: 5px;
  }
  #home .mv .right .pickup{
    display: block;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    box-shadow: 3px 3px 3px rgba(40,40,40,.25);
    margin: 40px 0 0 auto;
    width: 95%;
  }
  #home .mv .right .pickup .tit{
    top: 0;
    transform: translate(-15%,-50%);
    width: fit-content;
    box-shadow: 3px 3px 3px rgba(40,40,40,.25);
  }
  #home .mv .right .pickup .tit span{
    display: block;
    max-width: 40px;
    margin: 0 auto 5px;
  }
  #home .mv .right .pickup .img{
    max-width: 400px;
    width: 100%;
    margin: 0 auto 10px;
  }
  #home .mv .right .pickup .txt-box{
    margin: 0;
    width: 100%;
    display: block;
  }
  #home .mv .right .pickup .txt-box .box1{
    max-width: none;
    width: 100%;
  }
  #home .mv .right .pickup .txt-box .data p span{
    display: block;
    min-width: 50px;
    width: 50px;
    padding-right: 10px;
    position: relative;
  }
  #home .mv .right .pickup .txt-box .data p strong{
    display: block;
    width: calc(100% - 50px);
  }
  #home .mv .right .pickup .txt-box .box2{
    width: 100%;
  }
  #home .mv .right .pickup .txt-box .price-box{
    align-items: center;
  }
  #home .mv .right .pickup .link-btn{
    max-width: 300px;
    margin: 10px auto 0;
  }
  #home .mv .right .pickup .link-btn:after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background: url(../img/common/arw-white02.svg) no-repeat center center / contain;
    width: 20px;
    height: 16px;
    transition: .3s;
  }
  #home .mv .right .pickup .txt-box .link-btn:hover:after{
    background-image: url(../img/common/arw-black02.svg);
  }
}
#home .intro{
  position: relative;
  padding: 120px 0 80px;
}
#home .intro:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
  height: 130%;
  background-color: var(--c-yellow);
  border-radius: 0 0 200px 0;
}
#home .intro .inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1060px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#home .intro .inner .txt{
  font-size: clamp(2.2rem,3.5vw,5rem);
  line-height: 2;
  width: calc(100% - 370px);
}
#home .intro .inner .img{
  max-width: 353px;
}
@media only screen and (max-width: 798px) {
  #home .intro{
    padding: 40px 0 30px;
  }
  #home .intro:before{
    width: 100%;
    height: 130%;
    border-radius: 0 0 50px 0;
  }
  #home .intro .inner{
    display: block;
  }
  #home .intro .inner .txt{
    line-height: 1.8;
    width: 100%;
    text-align: center;
  }
  #home .intro .inner .img{
    max-width: 260px;
    width: 100%;
    margin: 20px auto 0;
  }
}
#home .flow{
  position: relative;
  z-index: 1;
}
#home .flow ul{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#home .flow ul li{
  width: calc(100% / 2 - 70px);
  border-radius: 50px;
  padding: 0 10px 20px;
  background-color: #fff;
  box-shadow: 5px 5px 5px rgba(40,40,40,.25);
  position: relative;
}
#home .flow ul li:first-child:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(130%,-50%);
  width: 90px;
  height: 50px;
  background: url(../img/home/flow-cross.svg) no-repeat center center / contain;
}
#home .flow ul li .tit{
  text-align: center;
  font-size: clamp(2rem,3vw,4rem);
  line-height: 1;
  margin: 0;
}
#home .flow ul li .tit strong{
  display: block;
  max-width: 350px;
  width: 90%;
  margin: -10% auto 5px;
}
#home .flow ul li.variation .tit strong{
  margin-bottom: 17px;
}
#home .flow ul li.area .txt{
  max-width: 370px;
  width: 90%;
  margin: 37px auto 0;
}
#home .flow ul li.area .btn-list{
  max-width: 350px;
  width: 90%;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#home .flow ul li.area .btn-list a{
  display: block;
  width: calc(100% / 3 - 10px);
  margin: 0 5px;
  transition: .3s;
}
#home .flow ul li.area .btn-list a:hover{
  transform: scale(1.1);
}
#home .flow ul li.variation .txt{
  max-width: 350px;
  width: 90%;
  margin: 20px auto 0;
}
#home .flow ul li .sub{
  text-align: center;
  margin-top: 20px;
  font-size: clamp(1rem,2vw, 1.6rem);
  line-height: 1.4;
}
#home .flow ul li.area .sub{
  color: var(--c-green);
}
#home .flow ul li.variation .sub{
  color: var(--c-pink);
}
#home .flow .completion{
  position: relative;
  padding-top: 250px;
}
#home .flow .completion{
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
#home .flow .completion .tit{
  max-width: 500px;
  width: 90%;
  margin: 0 auto 20px;
}
#home .flow .completion .txt1 {
  text-decoration: underline;
  text-decoration-color: var(--c-black);
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  font-size: clamp(2.2rem, 4vw, 5rem);
  line-height: 2;
  color: var(--c-black);
  text-align: center;
  margin: 0 0 60px;
}
#home .flow .completion .ill{
  position: absolute;
}
#home .flow .completion .i01{
  bottom: 0;
  left: -5%;
  max-width: 108px;
  width: 15%;
}
#home .flow .completion .i02{
  top: 100px;
  right: -3%;
  max-width: 190px;
  width: 15%;
}
#home .flow .arw{
  width: 21px;
  margin: 0 auto;
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
}
#home .flow .arw .head{
  width: 10px;
  margin-bottom: 5px;
}
#home .flow .arw .btm:before{
  content: '';
  width: 10px;
  height: 0;
  display: block;
  background-color: var(--c-black);
  transition: 1s;
}
#home .flow .arw.run .btm:before{
  height: 300px;
}
#home .flow .bottom{
  position: relative;
  padding-top: 70px;
}
#home .flow .bottom .txt{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(4rem, 10vw, 12rem);
  line-height: 1;
  color: #f0f0f0;
  z-index: 1;
}
#home .flow .bottom .img{
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 798px) {
  #home .flow ul{
    display: block;
    max-width: 500px;
    margin: 0 auto;
  }
  #home .flow ul li{
    width: 100%;
    border-radius: 10px;
    padding: 0 10px 10px;
    box-shadow: 3px 3px 3px rgba(40,40,40,.25);
  }
  #home .flow ul li:first-child{
    margin-bottom: 50px;
  }
  #home .flow ul li:first-child:after{
    content: '';
    position: absolute;
    top: initial;
    right: initial;
    bottom: -41px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 30px;
  }
  #home .flow ul li .tit{
  }
  #home .flow ul li .tit strong{
    display: block;
    max-width: 280px;
    width: 90%;
    margin: 0 auto -15px;
    transform: translateY(-20px);
  }
  #home .flow ul li.variation .tit strong{
    margin: 0 auto -15px;
  }
  #home .flow ul li.area .txt{
    margin: 10px auto 0;
  }
  #home .flow ul li.variation .txt{
    margin: 10px auto 0;
  }
  #home .flow ul li .sub{
    margin-top: 10px;
  }
  #home .flow .completion{
    position: relative;
    padding-top: 150px;
  }
  #home .flow .completion .tit{
    max-width: 300px;
    margin: 0 auto 10px;
  }
  #home .flow .completion .txt1 {
    margin: 0 0 30px;
  }
  #home .flow .completion .i01{
    bottom: -30px;
    left: 1%;
    width: 12%;
  }
  #home .flow .completion .i02{
    top: 30px;
    right: 1%;
    width: 20%;
  }
  #home .flow .arw{
    width: 12px;
    top: 10px;
  }
  #home .flow .arw .head{
    width: 5px;
    margin-bottom: 5px;
  }
  #home .flow .arw .btm:before{
    width: 5px;
  }
  #home .flow .arw.run .btm:before{
    height: 100px;
  }
  #home .flow .bottom{
    position: relative;
    padding-top: 10%;
  }
  #home .flow .bottom .img{
    overflow: hidden;
    width: 100%;
    padding-top: 25%;
  }
  #home .flow .bottom .img img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
  }
}
#home .property {
  padding: 120px 0;
  background: url(../img/home/property-bg.jpg) top left / 8px;
}
#home .property .head{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 50px;
}
#home .property .head .conts-midashi{
  width: fit-content;
  font-size: clamp(1.3rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin: 0;
  text-align: left;
  min-width: 250px;
  width: 250px;
}
#home .property .head .conts-midashi strong{
  display: block;
  font-size: clamp(2rem,2.4vw,3rem);
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
  line-height: 1.8;
}
#home .property .head .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.8;
  width: calc(100% - 450px);
}
#home .property .land-list{
  position: relative;
}
#home .property .land-list:before,
#home .property .land-list:after{
  content: '';
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  background-color: #fff;
  opacity: .7;
  z-index: 1;
}
#home .property .land-list:before{
  left: 0;
}
#home .property .land-list:after{
  right: 0;
  width: calc(10% - 4px);
}
#home .property .land-list .slick-track{
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
#home .property .land-list li{
  margin: 0 -2px 0 0;
  height: auto !important;
  text-align: left;
}
#home .property .land-list .slick-prev{
  background: url(../img/home/slide-arw.svg) no-repeat center center / contain;
  left: calc(10% - 40px);
}
#home .property .land-list .slick-next{
  background: url(../img/home/slide-arw.svg) no-repeat center center / contain;
  right: calc(10% - 40px);
  transform: translate(0, -50%) scale(-1,1);
}
#home .property .land-list .slick-prev,
#home .property .land-list .slick-next{
  width: 80px;
  height: 80px;
  top: 50%;
  z-index: 3;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
  border-radius: 40px;
  transition: .3s;
}
#home .property .land-list .slick-prev:hover,
#home .property .land-list .slick-next:hover{
  opacity: 1;
  box-shadow: 0 0 0 rgba(0, 0, 0, .25);
}
#home .property .summary{
  font-size: clamp(1.6rem,1.8vw,2rem);
  line-height: 1.4;
  margin: 80px 0 30px;
  text-align: center;
}
#home .property .link-btn{
  max-width: 350px;
  margin: 0 auto;
}
@media only screen and (max-width: 798px) {
  #home .property {
    padding: 40px 0;
    background: url(../img/home/property-bg.jpg) top left / 4px;
  }
  #home .property .head{
    display: block;
    margin: 0 auto 30px;
  }
  #home .property .head .conts-midashi{
    min-width: 180px;
    width: 180px;
  }
  #home .property .head .txt{
    width: 100%;
    margin-top: 20px;
  }
  #home .property .land-list{
    position: relative;
  }
  #home .property .land-list:before,
  #home .property .land-list:after{
    content: '';
    position: absolute;
    top: 0;
    width: 8%;
    height: 100%;
    background-color: #fff;
    opacity: .7;
    z-index: 1;
  }
  #home .property .land-list:after{
    width: calc(8% - 3px);
  }
  #home .property .land-list .slick-prev{
    left: calc(8% - 25px);
  }
  #home .property .land-list .slick-next{
    right: calc(8% - 25px);
  }
  #home .property .land-list .slick-prev,
  #home .property .land-list .slick-next{
    width: 40px;
    height: 40px;
    top: 50%;
    z-index: 3;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
  }
  #home .property .land-list .slick-prev:hover,
  #home .property .land-list .slick-next:hover{
    opacity: 1;
    box-shadow: 0 0 0 rgba(0, 0, 0, .25);
  }
  #home .property .summary{
    margin: 40px 0 20px;
  }
  #home .property .link-btn{
    max-width: 300px;
    width: 90%;
    margin: 0 auto;
  }
}
#home .pickup{
  background-color: var(--c-green);
  padding: 120px 0;
}
#home .pickup .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
#home .pickup .inner .head{
  text-align: center;
  margin: 0 0 50px;
}
#home .pickup .inner .head .txt1{
  font-size: clamp(2rem,2.5vw,3rem);
  line-height: 1.4;
  margin: 0 0 20px;
}
#home .pickup .inner .head .txt2{
  font-size: clamp(1.4rem,1.7vw,2rem);
  line-height: 1.4;
}
#home .pickup .inner .list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#home .pickup .inner .line3 li{
  width: calc(100% / 3 - 10px);
}
#home .pickup .inner .line2 li{
  width: calc(100% / 2 - 40px);
}
#home .pickup .inner .list li .num{
  background: url(../img/home/pickup-num.svg) no-repeat bottom center / contain;
  width: 84px;
  height: 84px;
  position: relative;
  margin: 0 auto 5px;
  text-align: center;
}
#home .pickup .inner .list li .num span{
  font-size: clamp(2.4rem,2.7vw,3.4rem);
  line-height: 1;
  display: block;
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
}
#home .pickup .inner .list li .box{
  background-color: #fff;
}
#home .pickup .inner .list li .box .in{
  padding: 30px 20px;
}
#home .pickup .inner .line2 li .box .in{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 30px 10px;
}
#home .pickup .inner .list li .box .in .icon{
  max-width: 104px;
  margin: 0 auto 15px;
}
#home .pickup .inner .line2 li .box .in .icon{
  margin: 0;
}
#home .pickup .inner .list li .box .in .txt1{
  font-size: clamp(1.6rem,1.9vw,2.2rem);
  line-height: 1.4;
  text-align: center;
}
#home .pickup .inner .line2 li .box .in  .txt1{
  width: calc(100% - 120px);
  text-align: left;
}
#home .pickup .inner .list li .box .txt2{
  font-size: clamp(1.3rem,1.5vw,1.6rem);
  line-height: 1.8;
  padding: 0 30px 20px;
}
#home .pickup .inner .list li .box .link-btn{
  border-radius: 0;
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  min-width: 94px;
  height: 94px;
  position: relative;
}
#home .pickup .inner .list li .box .link-btn span{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
#home .pickup .inner .list li .box .link-btn:hover{
  background: var(--c-black);
  color: #fff;
}
#home .pickup .inner .list li .box .link-btn:hover:after {
  background: url(../img/common/arw-white.svg) no-repeat center center;
}
#home .pickup .inner .list li a:hover .box .link-btn{
  background: #fff;
  color: var(--c-black);
}
#home .pickup .inner .list li a:hover .box .link-btn:after {
  background-image: url(../img/common/arw-black.svg);
}
@media only screen and (max-width: 1000px) {
  #home .pickup .inner .line2 li{
    width: calc(100% / 2 - 20px);
  }
}
@media only screen and (max-width: 798px) {
  #home .pickup{
    background-color: var(--c-green);
    padding: 40px 0 20px;
  }
  #home .pickup .inner .head{
    margin: 0 0 20px;
  }
  #home .pickup .inner .head .txt1{
    margin: 0 0 10px;
  }
  #home .pickup .inner .list{
    display: block;
  }
  #home .pickup .inner .list li{
    width: 100%;
    margin: 0 0 20px;
  }
  #home .pickup .inner .list li .num{
    width: 60px;
    height: 60px;
  }
  #home .pickup .inner .list li .box .in{
    padding: 20px 15px;
  }
  #home .pickup .inner .line2 li .box .in{
    display:block;
    padding: 20px 15px;
  }
  #home .pickup .inner .list li .box .in .icon,
  #home .pickup .inner .line2 li .box .in .icon{
    max-width: 70px;
    margin: 0 auto 10px;
  }
  #home .pickup .inner .line2 li .box .in  .txt1{
    width: 100%;
    text-align: center;
  }
  #home .pickup .inner .list li .box .txt2{
    padding: 0 15px 15px;
  }
  #home .pickup .inner .list li .box .link-btn{
    min-width: 70px;
    height: 70px;
  }
}
#home .faq {
  padding: 120px 0;
}
#home .faq .head{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 50px;
}
#home .faq .head .conts-midashi{
  width: fit-content;
  font-size: clamp(1.3rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin: 0;
  text-align: left;
  min-width: 250px;
  width: 250px;
}
#home .faq .head .conts-midashi strong{
  display: block;
  font-size: clamp(2rem,2.4vw,3rem);
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
  line-height: 1.8;
}
#home .faq .head .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.8;
  width: fit-content;
}
#home .faq .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
#home .faq .inner dl{
  border-top: solid 1px var(--c-gray2);
}
#home .faq .inner dl:last-of-type{
  border-bottom: solid 1px var(--c-gray2);
}
#home .faq .inner dt{
  position: relative;
  padding: 4% calc(4% + 40px) 4% 4%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  line-height: 1.4;
  cursor: pointer;
  transition: .3s;
}
#home .faq .inner dt:hover{
  color: var(--c-green);
}
#home .faq .inner dt:before,
#home .faq .inner dt:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 3%;
  width: 26px;
  height: 3px;
  background-color: var(--c-black);
  transition: .3s;
  transform: translateY(-50%);
}
#home .faq .inner dt:after{
  transform: translateY(-50%) rotate(90deg);
}
#home .faq .inner dt.open:after{
  transform: translateY(-50%) rotate(0);
}
#home .faq .inner dt span{
  display: block;
  min-width: 35px;
  width: 35px;
}
#home .faq .inner dt strong{
  display: block;
  width: calc(100% - 40px);
}
#home .faq .inner dd{
  display: none;
  padding: 0 calc(4% + 40px) 4%;
}
#home .faq .inner dd .a{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(1.6rem,2vw,2.4rem);
  line-height: 1.4;
  color: var(--c-green);
}
#home .faq .inner dd .a span{
  display: block;
  min-width: 35px;
  width: 35px;
}
#home .faq .inner dd .a strong{
  display: block;
  width: calc(100% - 40px);
}
#home .faq .inner dd .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.6;
  margin-top: 20px;
}
@media only screen and (max-width: 798px) {
  #home .faq {
    padding: 40px 0;
  }
  #home .faq .head{
    display: block;
    margin: 0 auto 30px;
  }
  #home .faq .head .conts-midashi{
    min-width: 180px;
    width: 180px;
  }
  #home .faq .head .txt{
    margin-top: 20px;
    width: 100%;
  }
  #home .faq .inner{
    max-width: 1040px;
    width: 90%;
    margin: 0 auto;
  }
  #home .faq .inner dl{
    border-top: solid 1px var(--c-gray2);
  }
  #home .faq .inner dl:last-of-type{
    border-bottom: solid 1px var(--c-gray2);
  }
  #home .faq .inner dt{
    padding: 4% calc(4% + 30px) 4% 4%;
  }
  #home .faq .inner dt:before,
  #home .faq .inner dt:after{
    right: 2;
    width: 20px;
    height: 1px;
  }
  #home .faq .inner dt span{
    min-width: 25px;
    width: 25px;
  }
  #home .faq .inner dt strong{
    width: calc(100% - 30px);
  }
  #home .faq .inner dd{
    padding: 0 calc(4% + 30px) 4%;
  }
  #home .faq .inner dd .a span{
    min-width: 25px;
    width: 25px;
  }
  #home .faq .inner dd .a strong{
    width: calc(100% - 30px);
  }
  #home .faq .inner dd .txt{
    margin-top: 10px;
  }
}
#home .news {
  padding: 120px 0;
  background-color: var(--c-gray3);
}
#home .news .inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
#home .news .head{
  width: 40%;
  position: relative;
}
#home .news .head .conts-midashi{
  width: fit-content;
  font-size: clamp(1.3rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: fit-content;
}
#home .news .head .conts-midashi strong{
  display: block;
  font-size: clamp(2rem,2.4vw,3rem);
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
  line-height: 1.8;
}
#home .news .ill{
  max-width: 140px;
  position: absolute;
  bottom: initial;
  left: initial;
}
#home .news .article{
  width: 50%;
}
#home .news .article li{
  padding: 30px 0;
  border-bottom: solid 1px var(--c-gray2);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#home .news .article li .day{
  font-size: clamp(1.2rem,1.5vw,1.6rem);
  line-height: 1;
  min-width: 100px;
  width: 100px;
  padding: 10px 0 0;
}
#home .news .article li .cat{
  background-color: #fff;
  min-width: 80px;
  width: 80px;
  padding: 10px 5px;
  font-size: clamp(1.1rem,1.3vw,1.4rem);
  line-height: 1;
  margin: 0 20px 0 0;
  text-align: center;
}
#home .news .article li a{
  width: calc(100% - 200px);
  font-size: clamp(1.2rem,1.5vw,1.6rem);
  line-height: 1.4;
  padding: 5px 0;
  transition: .3s;
}
#home .news .article li a:hover{
  color: var(--c-green);
}
#home .news .article .link-btn{
  max-width: 200px;
  margin: 30px 0 0 auto;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  padding: 15px 20px;
}
@media only screen and (max-width: 798px) {
  #home .news {
    padding: 40px 0;
  }
  #home .news .inner{
    display: block;
  }
  #home .news .head{
    width: 100%;
    margin: 0 0 10px;
  }
  #home .news .ill{
    max-width: 80px;
    position: absolute;
    bottom: initial;
    left: initial;
    top: 35px;
    right: 0;
  }
  #home .news .article{
    width: 100%;
  }
  #home .news .article li{
    padding: 10px 0;
    display: flex;
  }
  #home .news .article li .day{
    font-size: clamp(1.4rem,1.5vw,1.6rem);
    line-height: 1;
    min-width: 80px;
    width: 80px;
    padding: 5px 0 0;
  }
  #home .news .article li .cat{
    min-width: 70px;
    width: 70px;
    padding: 5px;
    margin: 0 0 0 20px;
  }
  #home .news .article li a{
    width: 100%;
    padding: 8px 0 0;
  }
  #home .news .article .link-btn{
    margin: 20px auto 0;
  }
}

/****************************
 land
****************************/
#land.archive .mv .inner .ill{
  transform: translateY(110px);
  max-width: 210px;
  width: 25%;
}
#land.detail .mv .inner .ill{
  transform: translateY(110px);
  max-width: 260px;
  width: 25%;
}
@media only screen and (max-width: 798px) {
  #land.archive .mv .inner .ill{
    max-width: 100px;
    transform: translateY(-20px);
  }
  #land.detail .mv .inner .ill{
    max-width: 110px;
    transform: translateY(-20px);
  }
}
#land.archive .conts-midashi{
  width: fit-content;
  font-size: clamp(2rem,2.5vw,3rem);
  line-height: 1.4;
  margin: 0 0 50px;
  letter-spacing: .25rem;
}
#land.archive .conts-midashi span{
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: solid 1px var(--c-black);
  font-size: clamp(1.2rem,1.3vw,1.5rem);
  letter-spacing: 0;
}
#land.archive .search-filter-area{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 100px;
}
#land.archive .search-filter-area .check{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
#land.archive .search-filter-area .check .check-box{
  width: fit-content;
  margin: 0 20px 20px 0;
  display: block;
}
#land.archive .search-filter-area .check .name{
  cursor: pointer;
  padding: 15px 40px;
  position: relative;
  border: solid 1px var(--c-gray1);
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.4;
  transition: .3s;
  background-color: #fff;
  display: flex;
  width: 100%;
  align-items: center;
}
#land.archive .search-filter-area .check .name:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--c-gray1);
  background: #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
#land.archive .search-filter-area .check .name:before{
}
#land.archive .search-filter-area .check input[type="checkbox"] {
    display: none;
}
#land.archive .search-filter-area .check input[type="checkbox"]:checked + .name::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-top: 3px solid var(--c-green);
  border-right: 3px solid var(--c-green);
  transform: translateY(-75%) rotate(135deg);
  position: absolute;
  left: 15px;
  top: 50%;
}
#land.archive .search-filter-area .check input[type="checkbox"]:checked + .name{
  background-color: var(--c-gray1);
}
#land.archive .search-filter-area .btn-box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#land.archive .search-filter-area input[type=submit]{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.4;
  padding: 15px 40px;
  border-radius: 50px;
  border: solid 1px var(--c-black);
  background-color: var(--c-black);
  color:#fff;
  transition: .3s;
  width: fit-content;
  cursor: pointer;
}
#land.archive .search-filter-area input[type=submit]:hover{
  color: var(--c-black);
  background: #fff;
}
#land.archive .search-filter-area .btn-box span{
  display: block;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.4;
  margin-left: 20px;
}
#land .land-list{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#land .summary-txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 2;
  margin: 0 auto 150px;
  width: 90%;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  #land.archive .conts-midashi{
    margin: 0 0 30px;
  }
  #land.archive .conts-midashi span{
    padding-top: 5px;
    margin-top: 5px;
  }
  #land.archive .search-filter-area{
    margin: 0 auto 50px;
  }
  #land.archive .search-filter-area .check{
    padding-bottom: 5px;
  }
  #land.archive .search-filter-area .check .check-box{
    margin: 0 10px 10px 0;
  }
  #land.archive .search-filter-area .check .name{
    padding: 10px 30px;
  }
  #land.archive .search-filter-area .check .name:before {
    width: 16px;
    height: 16px;
    left: 5px;
  }
  #land.archive .search-filter-area .check input[type="checkbox"]:checked + .name::after {
    left: 10px;
  }
  #land.archive .search-filter-area input[type=submit]{
    padding: 10px 20px;
    margin: 0 auto 10px;
  }
  #land.archive .search-filter-area .btn-box{
    display: block;
    text-align: center;
  }
  #land.archive .search-filter-area .btn-box span{
    text-align: center;
    margin-left: 0;
  }
  #land .summary-txt{
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    margin: 0 auto 60px;
  }
}

#land.detail .head{
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
#land.detail .head .txt-box{
  width: 65%;
}
#land.detail .head .txt-box .tit{
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.4;
  margin: 0 0 10px;
}
#land.detail .head .txt-box .add{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.4;
  margin: 0 0 40px;
}
#land.detail .head .txt-box .txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 2;
  margin: 0;
}
#land.detail .head .price-box{
  width: 32%;
}
#land.detail .head .price-box .box1{
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--c-black);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
#land.detail .head .price-box .box1 .txt{
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
  line-height: 1.2;
  background-color: var(--c-black);
  color:#fff;
  padding: 5px 20px;
  border-radius: 0 10px 0 0;
}
#land.detail .head .price-box .box1 .price{
  margin-left: 15px;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.2;
}
#land.detail .head .price-box .box1 .price strong{
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  color: var(--c-red1);
}
#land.detail .head .price-box .box2 .txt1{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  padding-bottom: 5px;
}
#land.detail .head .price-box .box2 .txt2{
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  line-height: 1.4;
  margin: 5px 0 0;
  padding-left: 20px;
  position: relative;
}
#land.detail .head .price-box .box2 .txt2:before{
  content: '';
  width: 10px;
  height: 10px;
  border: solid 1px var(--c-black);
  position: absolute;
  top: 3px;
  left: 0;
}
#land.detail .head .price-box .box2 .txt3{
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.6;
  margin: 10px 0 0;
}
#land.detail .page-nav-wrap{
  height: auto;
  transition: .3s;
}
#land.detail .page-link{
  background-color: #fff;
  padding: 120px 0 60px;
  transition: .3s;
  width: 100%;
}
#land.detail .page-link.none{
  opacity: 0;
  pointer-events: none;
}
#land.detail .page-link ul{
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
#land.detail .page-link li{
  width: calc(100% / 6 );
}
#land.detail .page-link li a{
  display: block;
  border-right: solid 1px var(--c-black);
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  text-align: center;
  padding-bottom: 35px;
  position: relative;
}
#land.detail .page-link li a:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 25px;
  background: url(../img/land/detail/nav-arw.svg) no-repeat center center / contain;
  transition: .3s;
}
#land.detail .page-link li a:hover:after{
  bottom: -5px;
}
#land.detail .page-link li:first-child a{
  border-left: solid 1px var(--c-black);
}
#land.detail .page-link li a span{
  display: block;
  max-width: 46px;
  margin: 0 auto 10px;
}
#land.detail .basic{
  background-color: var(--c-gray1);
  padding: 80px 0;
  margin-bottom: 200px;
}
#land.detail .basic .inner{
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
}
#land.detail .basic .inner .main-img{
  margin: 0 0 50px;
}
#land.detail .basic .inner .table{
  border-top: solid 1px var(--c-gray2);
  border-left: solid 1px var(--c-gray2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#land.detail .basic .inner .table li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#land.detail .basic .inner .table li.short{
  width: 50%;
}
#land.detail .basic .inner .table li .th{
  background-color: var(--c-gray3);
  padding: 15px;
  text-align: center;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  width: 200px;
  border-right: solid 1px var(--c-gray2);
  border-bottom: solid 1px var(--c-gray2);
}
#land.detail .basic .inner .table li .td{
  padding: 15px;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  display: flex;
  align-items: center;
  width: calc(100% - 200px);
  background-color: #fff;
  border-right: solid 1px var(--c-gray2);
  border-bottom: solid 1px var(--c-gray2);
}
#land.detail .anker{
  display: block;
  padding-top: 250px;
  margin-top: -350px;
}
#land.detail .conts{
  margin-bottom: 200px;
}
#land.detail .conts-midashi{
  width: fit-content;
  font-size: clamp(1.1rem,1.2vw,1.3rem);
  line-height: 1.4;
  margin: 0 auto 50px;
  text-align: center;
}
#land.detail .conts-midashi strong{
  display: block;
  font-size: clamp(1.6rem,2vw,2.5rem);
  padding: 0 20px 5px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
}
#land.detail #gallery .slider{
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}
#land.detail #gallery .slider li{
  position: relative;
}
#land.detail #gallery .slider li .img{
  position: relative;
}
#land.detail #gallery .slider .slick-prev{
  background: url(../img/land/detail/gallery-arw.svg) no-repeat center center / contain;
  left: -50px;
}
#land.detail #gallery .slider .slick-next{
  background: url(../img/land/detail/gallery-arw.svg) no-repeat center center / contain;
  right: -50px;
  transform: translate(0, -50%) scale(-1,1);
}
#land.detail #gallery .slider .slick-prev,
#land.detail #gallery .slider .slick-next{
  width: 80px;
  height: 80px;
  top: 50%;
  z-index: 1;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
  border-radius: 40px;
  transition: .3s;
}
#land.detail #gallery .peger{
  max-width: 850px;
  width: 90%;
  margin: 20px auto 0;
}
#land.detail #gallery .peger li{
  margin: 0 12px 10px 0;
  position: relative;
  padding-bottom: 5px;
}
#land.detail #gallery .peger li .img{
  position: relative;
  display: block;
}
#land.detail #gallery .peger li .img:after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
#land.detail #gallery .peger li.slick-current .img:after{
  opacity: 0;
}
#land.detail #location ul{
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#land.detail #location ul li{
  width: calc(100% / 4 -  15px);
  margin: 0 20px 20px 0;
}
#land.detail #location ul li:nth-child(4n){
  margin-right: 0;
}
#land.detail #location ul li .txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  margin-top: 10px;
}
#land.detail #location ul li .img{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 62%;
}
#land.detail #location ul li .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
}
#land.detail .map-box{
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
}
#land.detail .map-box .map{
  width: 100%;
  height: 350px;
}
#land.detail .map-box .map iframe{
  width: 100%;
  height: 100%;
}
#land.detail .map-box .link{
  text-align: right;
  margin-top: 10px;
}
#land.detail .map-box .link a{
  display: inline-block;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  text-decoration: underline;
}
#land.detail .map-box .link a:hover{
  text-decoration: none;
}
#land.detail #myhome.anker{
  margin-top: -150px;
  padding-top: 250px;
}
#land.detail .myhome{
  background-color: var(--c-gray1);
  padding: 10px 0 80px;
}
#land.detail .myhome .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
#land.detail .myhome .flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 80px;
}
#land.detail .myhome .tit .conts-midashi{
  width: fit-content;
  font-size: clamp(1.3rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin: 0;
  text-align: left;
  min-width: 250px;
  width: 250px;
}
#land.detail .myhome .tit .conts-midashi strong{
  display: block;
  font-size: clamp(2rem,2.4vw,3rem);
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
  line-height: 1.8;
}
#land.detail .myhome .tit .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.8;
  width: calc(100% - 450px);
}
#land.detail .myhome .plan {
  background-color: #fff;
  padding: 1px 90px;
}
#land.detail .myhome .plan.line2{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#land.detail .myhome .plan .box{
  padding: 50px 0;
  border-bottom: solid 1px var(--c-gray1);
}
#land.detail .myhome .plan.line2 .box{
  width: calc(100% / 2 - 20px);
  margin: 0 40px 0 0;
}
#land.detail .myhome .plan.line2 .box:nth-of-type(2n){
  margin-right: 0;
}
#land.detail .myhome .plan .box:last-of-type{
  border-bottom: none;
}
#land.detail .myhome .plan .box .txt-box{
  margin: 0 0 50px;
  align-items: flex-start;
}
#land.detail .myhome .plan.line2 .box .txt-box{
  display: block;
}
#land.detail .myhome .plan .box .txt-box .left{
  width: 55%;
}
#land.detail .myhome .plan.line2 .box .txt-box .left,
#land.detail .myhome .plan.line2 .box .txt-box .right{
  width: 100%;
}
#land.detail .myhome .plan .box .txt-box .left .midashi{
  font-size: clamp(1.6rem,2vw,2.5rem);
  line-height: 1.6;
  margin: 0;
}
#land.detail .myhome .plan .box .txt-box .left .midashi span{
  display: block;
  min-width: 100px;
  width: 100px;
  padding-right: 20px;
  position: relative;
}
#land.detail .myhome .plan .box .txt-box .left .midashi span:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background-color: var(--c-black);
}
#land.detail .myhome .plan .box .txt-box .left .midashi strong{
  display: block;
  width: calc(100% - 130px);
}
#land.detail .myhome .plan .box .txt-box .left .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.8;
  margin-top: 30px;
}
#land.detail .myhome .plan .box .txt-box .right{
  width: 43%;
  margin: 0;
  background-color: var(--c-gray1);
  padding: 20px;
  align-items: flex-start;
}
#land.detail .myhome .plan .box .txt-box .right .data{
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1.4;
  width: calc(100% - 160px);
}
#land.detail .myhome .plan .box .txt-box .right .data strong{
  display: block;
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  margin-bottom: 10px;
}
#land.detail .myhome .plan .box .txt-box .right .price-box{
  margin: 0;
  line-height: 1.4;
  min-width: 155px;
  width: 155px;
}
#land.detail .myhome .plan .box .txt-box .right .price-box .txt{
  background-color: var(--c-black);
  color: #fff;
  padding: 0 5px;
  min-width: 40px;
  width: 40px;
  font-size: clamp(1rem,1.1vw,1.1rem);
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#land.detail .myhome .plan .box .txt-box .right .price-box .price{
  width: calc(100% - 50px);
  font-size: clamp(1.2rem,1.3vw,1.4rem);
}
#land.detail .myhome .plan .box .txt-box .right .price-box .price strong{
  font-size: clamp(1.6rem,2vw,2.4rem);
  color: var(--c-red1);
}
#land.detail .myhome .plan .box .txt-box .right .price-box .price span{
  display: block;
  font-size: clamp(1rem,1.1vw,1.2rem);
}
#land.detail .myhome .plan .box .img-list{
  margin: 0;
}
#land.detail .myhome .plan .box .img-list .img{
  width: 49%;
}
@media only screen and (max-width: 1120px) {
  #land.detail .myhome .plan .box .txt-box .left .midashi span{
    min-width: 90px;
    width: 90px;
  }
  #land.detail .myhome .plan .box .txt-box .left .midashi strong{
    width: calc(100% - 110px);
  }
  #land.detail .myhome .plan .box .txt-box .left .txt{
    margin-top: 20px;
  }
  #land.detail .myhome .plan .box .txt-box .right{
    padding: 15px;
  }
  #land.detail .myhome .tit .txt{
    width: calc(100% - 350px);
  }
  #land.detail .myhome .plan {
    padding: 1px 40px;
  }
}
#land.detail .req-bn{
  background: url(../img/land/detail/req-bg.jpg) no-repeat center left / contain var(--c-black);
  padding: 50px 0;
}
#land.detail .req-bn .inner{
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-end;
}
#land.detail .req-bn .inner .box1{
  width: 45%;
  background-color: var(--c-yellow);
  position: relative;
  padding: 2.5% 17% 2.5% 2.5%;
  border-radius: 20px;
  font-size: clamp(1.3rem, 1.6vw, 1.8rem);
  line-height: 1.6;
}
#land.detail .req-bn .inner .box1 .img{
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 41%;
}
#land.detail .req-bn .inner .box2{
  width: 50%;
  margin-left: 5%;
  color: #fff;
  position: relative;
}
#land.detail .req-bn .inner .box2 .txt1{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.4;
}
#land.detail .req-bn .inner .box2 .txt2{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.4;
  border: solid 1px #fff;
  padding: 10px 40px;
  width: fit-content;
  margin: 20px 0;
}
#land.detail .req-bn .inner .box2 .link-btn{
  max-width: 350px;
  margin: 50px 0 0;
}
#land.detail .req-bn .inner .box2 .ill{
  position: absolute;
  bottom: 0;
  right: 7%;
  width: 30%;
}
@media only screen and (max-width: 1320px) {
  #land.detail .req-bn .inner .box1{
    padding: 2.5% 14% 2.5% 2.5%;
  }
  #land.detail .req-bn .inner .box1 .img{
    width: 36%;
  }
  #land.detail .req-bn .inner .box2 .link-btn{
    max-width: none;
    width: 60%;
    margin: 50px 0 0;
  }
}
#land.detail #detail-table.anker{
  margin-top: -150px;
  padding-top: 250px;
}
#land.detail .detail-table{
  background-color: var(--c-gray1);
  padding: 10px 0 80px;
}
#land.detail .detail-table .inner{
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
}
#land.detail .detail-table .inner table{
  border-top: solid 1px var(--c-gray2);
  border-left: solid 1px var(--c-gray2);
  width: 100%;
}
#land.detail .detail-table .inner table tbody{
  width: 100%;
}
#land.detail .detail-table .inner table th{
  background-color: var(--c-gray3);
  padding: 15px;
  text-align: center;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  min-width: 200px;
  width: 200px;
  border-right: solid 1px var(--c-gray2);
  border-bottom: solid 1px var(--c-gray2);
}
#land.detail .detail-table .inner table td{
  padding: 15px;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  width: calc(100% - 200px);
  background-color: #fff;
  border-right: solid 1px var(--c-gray2);
  border-bottom: solid 1px var(--c-gray2);
}
#land.detail .other {
  padding: 100px 0 50px;
}
#land.detail .other .tit{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 80px;
}
#land.detail .other .tit .conts-midashi{
  width: fit-content;
  font-size: clamp(1.3rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin: 0;
  text-align: left;
  min-width: 250px;
  width: 250px;
}
#land.detail .other .tit .conts-midashi strong{
  display: block;
  font-size: clamp(2rem,2.4vw,3rem);
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
  line-height: 1.8;
}
#land.detail .other .link-btn{
  max-width: 350px;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 799px) {
  #land.detail .page-link.fixed{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
}
@media only screen and (max-width: 798px) {
  #land.detail .head{
    display: block;
  }
  #land.detail .head .txt-box{
    width: 100%;
    margin: 0 0 30px;
  }
  #land.detail .head .txt-box .tit{
    margin: 0 0 5px;
  }
  #land.detail .head .txt-box .add{
    margin: 0 0 20px;
  }
  #land.detail .head .txt-box .txt{
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    line-height: 2;
    margin: 0;
  }
  #land.detail .head .price-box{
    width: 100%;
  }
  #land.detail .page-link{
    padding: 30px 0;
  }
  #land.detail .page-link li{
    width: calc(100% / 3 );
    margin: 0 0 15px;
  }
  #land.detail .page-link li a{
    padding-bottom: 20px;
  }
  #land.detail .page-link li a:after{
    width: 18px;
    height: 18px;
  }
  #land.detail .page-link li:first-child a,
  #land.detail .page-link li:nth-child(4n) a{
    border-left: solid 1px var(--c-black);
  }
  #land.detail .page-link li a span{
    display: block;
    max-width: 30px;
    margin: 0 auto 5px;
  }
  #land.detail .basic{
    padding: 40px 0;
    margin-bottom: 50px;
  }
  #land.detail .basic .inner .main-img{
    margin: 0 0 20px;
  }
  #land.detail .basic .inner .table li{
    width: 100%;
  }
  #land.detail .basic .inner .table li.short{
    width: 100%;
  }
  #land.detail .basic .inner .table li .th{
    padding: 10px;
    min-width: 100px;
    width: 100px;
  }
  #land.detail .basic .inner .table li .td{
    padding: 10px;
    width: calc(100% - 100px);
  }
  #land.detail .anker{
    padding-top: 10px;
    margin-top: 0;
  }
  #land.detail .conts{
    margin-bottom: 50px;
  }
  #land.detail .conts-midashi{
    margin: 0 auto 30px;
  }
  #land.detail .conts-midashi strong{
    padding: 0 10px 3px;
    margin-bottom: 5px;
  }
  #land.detail #gallery .slider .slick-prev{
    left: -15px;
  }
  #land.detail #gallery .slider .slick-next{
    right: -15px;
  }
  #land.detail #gallery .slider .slick-prev,
  #land.detail #gallery .slider .slick-next{
    width: 30px;
    height: 30px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
    border-radius: 15px;
  }
  #land.detail #gallery .peger{
    margin: 10px auto 0;
  }
  #land.detail #gallery .peger li{
    margin: 0 5px 0 0;
  }
  #land.detail #location ul li{
    width: calc(100% / 2 -  5px);
    margin: 0 10px 20px 0;
  }
  #land.detail #location ul li:nth-child(2n){
    margin-right: 0;
  }
  #land.detail #myhome.anker{
    margin-top: 0;
    padding-top: 50px;
  }
  #land.detail .myhome{
    padding: 1px 0 40px;
  }
  #land.detail .myhome .flex{
    display: block;
    margin: 0 0 40px;
  }
  #land.detail .myhome .tit .conts-midashi{
    margin: 0 0 20px;
  }
  #land.detail .myhome .tit .txt{
    width: 100%;
  }
  #land.detail .myhome .plan {
    padding: 1px 20px;
  }
  #land.detail .myhome .plan .box{
    padding: 20px 0;
  }
  #land.detail .myhome .plan .box .txt-box{
    margin: 0 0 20px;
  }
  #land.detail .myhome .plan .box .txt-box .left{
    width: 100%;
  }
  #land.detail .myhome .plan .box .txt-box .left .midashi{
    font-size: clamp(1.6rem,2vw,2.5rem);
    line-height: 1.6;
    margin: 0;
  }
  #land.detail .myhome .plan .box .txt-box .left .midashi span{
    min-width: auto;
    width: 100%;
    padding: 0 0 10px;
    margin: 0 0 10px;
  }
  #land.detail .myhome .plan .box .txt-box .left .midashi span:after{
    top: initial;
    right: initial;
    bottom: 0;
    left: 10px;
    width: 30px;
    height: 2px;
  }
  #land.detail .myhome .plan .box .txt-box .left .midashi strong{
    width: 100%;
  }
  #land.detail .myhome .plan .box .txt-box .left .txt{
    margin-top: 10px;
  }
  #land.detail .myhome .plan .box .txt-box .right{
    width: 100%;
    margin: 10px 0 0;
    padding: 10px;
  }
  #land.detail .myhome .plan .box .txt-box .right .data{
    width: 100%;
  }
  #land.detail .myhome .plan .box .txt-box .right .data strong{
    margin-bottom: 5px;
  }
  #land.detail .myhome .plan .box .txt-box .right .price-box{
    margin: 10px 0 0;
    min-width: auto;
    width: 100%;
    display: flex;
  }
  #land.detail .myhome .plan .box .txt-box .right .price-box .txt{
    padding: 5px 10px;
    min-width: auto;
    width: fit-content;
    text-align: center;
    margin: 0;
  }
  #land.detail .myhome .plan .box .txt-box .right .price-box .price{
    width: calc(100% - 70px);
  }
  #land.detail .myhome .plan .box .img-list{
    margin: 0;
    display: flex;

  }
  #land.detail .myhome .plan .box .img-list .img{
    width: 49%;
  }
  #land.detail .myhome .plan.line2{
    display: block;
  }
  #land.detail .myhome .plan .box{
    padding: 20px 0;
  }
  #land.detail .myhome .plan.line2 .box{
    width: 100%;
    margin: 0;
  }
  #land.detail .req-bn{
    background: url(../img/land/detail/req-bg.jpg) no-repeat center top / cover var(--c-black);
    padding: 30px 0;
  }
  #land.detail .req-bn .inner{
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  #land.detail .req-bn .inner .box1{
    width: 100%;
    background-color: var(--c-yellow);
    position: relative;
    padding: 15px 100px 15px 15px;
    border-radius: 10px;
    line-height: 1.6;
    margin: 0 0 20px;
  }
  #land.detail .req-bn .inner .box1 .img{
    max-width: 102px;
    width: 102px;
    right: -10px;
  }
  #land.detail .req-bn .inner .box2{
    width: 100%;
    margin: 0;
  }
  #land.detail .req-bn .inner .box2 .txt1{
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    line-height: 1.4;
  }
  #land.detail .req-bn .inner .box2 .txt2{
    padding: 10px 20px;
    margin: 20px auto;
  }
  #land.detail .req-bn .inner .box2 .link-btn{
    max-width: 350px;
    margin: 50px 0 0;
  }
  #land.detail .req-bn .inner .box2 .ill{
    position: absolute;
    bottom: 0;
    right: 7%;
    width: 30%;
  }
  #land.detail #detail-table.anker{
    margin-top: 0;
    padding-top: 50px;
  }
  #land.detail .detail-table{
    padding: 1px 0 40px;
  }
  #land.detail .detail-table .inner table th{
    padding: 10px;
    min-width: 90px;
    width: 90px;
  }
  #land.detail .detail-table .inner table td{
    padding: 10px;
    width: calc(100% - 90px);
  }
  #land.detail .other {
    padding: 50px 0 20px;
  }
  #land.detail .other .tit{
    margin: 0 auto 30px;
  }
}

/****************************
 voice
****************************/
#voice.archive .mv .inner .ill{
  transform: translateY(220px);
  max-width: 230px;
  width: 25%;
}
#voice.detail .mv .inner .ill{
  transform: translateY(200px);
  max-width: 180px;
  width: 25%;
}
@media only screen and (max-width: 798px) {
  #voice.archive .mv .inner .ill{
    max-width: 100px;
    transform: translateY(-20px);
  }
  #voice.detail .mv .inner .ill{
    max-width: 90px;
    transform: translateY(-20px);
  }
}
#voice .wrap{
  padding: 120px 0 20px;
  background: url(../img/voice/bg.jpg) top left / 16px;
}
#voice.detail .wrap{
  padding: 120px 0;
}
#voice .voice-head{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 20px;
  box-shadow: 8px 0 8px rgba(0,0,0,.15);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
}
#voice.archive .voice-head{
  margin-bottom: 100px;
}
#voice.detail .voice-head{
  margin-bottom: 80px;
}
#voice .voice-head .num-box{
  background-color: var(--c-yellow);
  width: 12%;
  height: 0;
  padding-top: 12%;
  position: relative;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 4px 4px 8px rgba(0,0,0,.3);
}
#voice.archive .voice-head .num-box{
  top: 25px;
  left: 25px;
}
#voice.detail .voice-head .num-box{
  top: 0px;
  transform: translateY(-20%);
  left: 50px;
}
#voice .voice-head .num-box .num{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
#voice .voice-head .num-box .num span{
  display: block;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1;
  margin-bottom: 8%;
}
#voice .voice-head .num-box .num strong{
  display: block;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1;
}
#voice.detail .voice-head{
  display: block;
}
#voice.detail .voice-head .flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  flex-flow: row-reverse;
  max-width: 670px;
  width: 100%;
  margin: 0 auto;
}
#voice.archive .voice-head .img{
  width: 20%;
}
#voice.archive .voice-head .img img{
  display: block;
  width: 80%;
  margin-left: auto;
}
#voice.detail .voice-head .img{
  width: 26%;
}
#voice.archive .voice-head .txt-box{
  width: 45%;
  margin: 0 5% 0 3%;
}
#voice.detail .voice-head .txt-box{
  width: 70%;
  margin: 0;
}
#voice .voice-head .txt-box .txt1{
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.4;
  width: fit-content;
  margin: 0 0 5px;
}
#voice .voice-head .txt-box .hensai{
  padding-bottom: 1px;
  margin-bottom: 20px;
  border-bottom: solid 1px var(--c-black);
  transition: .3s;
  display: inline-block;
}
#voice .voice-head .txt-box a.hensai:hover{
  opacity: .7;
}
#voice .voice-head .txt-box .hensai strong{
  color: var(--c-green);
}
#voice .voice-head .txt-box .txt2{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.4;
}
#voice .voice-head .txt3 span{
  display: block;
}
#voice.archive .voice-head .txt-box .txt3{
  margin-top: 15px;
  font-size: clamp(1.4rem, 1.7vw, 1.8rem);
  line-height: 1.4;
}
#voice.archive .voice-head .txt-box .txt3 span{
  max-width: 148px;
  margin-bottom: 15px;
}
#voice.detail .wrap > .voice-head .txt3{
  margin-top: 15px;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.8;
  padding-top: 20px;
  margin: 20px auto 0;
  border-top: solid 1px var(--c-black);
  width: 100%;
  max-width: 800px;
}
#voice.detail .wrap > .voice-head .txt3 span{
  max-width: 198px;
  margin: 0 auto 15px;
}
#voice .voice-head .btn{
  display: block;
  background: var(--c-gray3);
  color: var(--c-black);
  padding: 20px 25px;
  position: relative;
  line-height: 1;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  border: solid 2px var(--c-gray3);
  transition: .3s;
  border-radius: 100px;
  width: 20%;
  text-align: center;
}
#voice .voice-head .btn:after{
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: url(../img/common/arw-black.svg) no-repeat center center;
  transition: .3s;
}
#voice .voice-head .btn:hover{
  background: var(--c-black);
  color: #fff;
}
#voice .voice-head .btn:hover:after{
  background-image: url(../img/common/arw-white.svg);
}
#voice .summary-txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.8;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  padding: 100px 0 60px;
}
#voice.archive .pagination a{
  background-color: #fff;
}
#voice.archive .pagination a:hover{
  background-color: var(--c-black);
}
@media only screen and (max-width: 1100px) {
  #voice .voice-head{
    padding: 30px 10px;
  }
  #voice.detail .voice-head{
    padding: 30px 20px;
  }
  #voice.archive .voice-head .num-box{
    top: 20px;
    left: 20px;
  }
  #voice.detail .voice-head .num-box{
    top: 0px;
    transform: translateY(-45%);
    left: 15px;
  }
  #voice.archive .voice-head .img{
    width: 20%;
  }
  #voice.archive .voice-head .img img{
    display: block;
    width: 80%;
    margin-left: auto;
  }
  #voice.archive .voice-head .txt-box{
    width: 52%;
    margin: 0 3%;
  }
  #voice.archive .voice-head .txt-box .txt3 span{
    max-width: none;
    width: 28%;
  }
  #voice.detail .wrap > .voice-head .txt3 span{
    max-width: none;
    width: 24%;
  }
}
@media only screen and (max-width: 798px) {
  #voice .wrap{
    padding: 40px 0 10px;
    background: url(../img/voice/bg.jpg) top left / 8px;
  }
  #voice.detail .wrap{
    padding: 40px 0;
  }
  #voice .voice-head{
    padding: 20px;
  }
  #voice.archive .voice-head{
    margin-bottom: 50px;
  }
  #voice.detail .voice-head{
    margin-bottom: 30px;
  }
  #voice .voice-head .num-box{
    width: 80px;
    height: 80px;
    box-shadow: 2px 2px 4px rgba(0,0,0,.3);
  }
  #voice.detail .voice-head .num-box{
    transform: translateY(-65%);
  }
  #voice.detail .voice-head .flex{
    align-items: flex-end;
  }
  #voice.archive .voice-head .img{
    width: 170px;
    min-width: 170px;
    margin: 0 20px 0 0;
  }
  #voice.archive .voice-head .txt-box{
    width: calc(100% - 190px);
    margin: 0;
  }
  #voice .voice-head .btn{
    width: 200px;
    margin: 20px auto 0;
    text-align: center;
  }
  #voice .summary-txt{
    padding: 50px 0 30px;
  }
}
@media only screen and (max-width: 500px) {
  #voice .voice-head{
    display: block;
    box-shadow: 4px 0 4px rgba(0,0,0,.15);
  }
  #voice.archive .voice-head{
    margin-bottom: 30px;
  }
  #voice.detail .voice-head .num-box{
    top: -10px;
    left: -10px;
    transform: none;
  }
  #voice.archive .voice-head .num-box{

  }
  #voice.archive .voice-head .img{
    max-width: 170px;
    width: 100%;
    margin: 0 auto 20px;
  }
  #voice.archive .voice-head .img img{
    margin: 0;
    width: 100%;
  }
  #voice.archive .voice-head .txt-box{
    width: 100%;
    margin: 0;
  }
  #voice.archive .voice-head .txt-box .txt3{
    margin-top: 10px;
  }
  #voice.archive .voice-head .txt-box .txt3 span{
    max-width: 100px;
    width: 100%;
    margin-bottom: 10px;
  }
  #voice.detail .voice-head .flex{
    display: block;
  }
  #voice.detail .voice-head .img{
    max-width: 170px;
    width: 100%;
    margin: 0 auto 20px;
  }
  #voice.detail .voice-head .txt-box{
    width: 100%;
    margin: 0;
  }
  #voice.detail .wrap > .voice-head .txt3{
    margin-top: 10px;
  }
  #voice.detail .wrap > .voice-head .txt3 span{
    max-width: 100px;
    width: 100%;
    margin-bottom: 10px;
  }
}
#voice.detail .comment{
  max-width: 800px;
  width: 90%;
  margin: 0 auto 110px;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 2;
}
#voice.detail .img-list{
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}
#voice.detail .img-list p{
  margin: 0 0 80px;
}
#voice.detail .conts-midashi{
  width: fit-content;
  font-size: clamp(1.1rem,1.2vw,1.3rem);
  line-height: 1.4;
  margin: 0 auto 50px;
  text-align: center;
}
#voice.detail .conts-midashi strong{
  display: block;
  font-size: clamp(1.6rem,2vw,2.5rem);
  padding: 0 20px 5px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
}
#voice.detail #gallery{
  margin-bottom: 150px;
}
#voice.detail #gallery .slider{
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}
#voice.detail #gallery .slider li{
  position: relative;
}
#voice.detail #gallery .slider li .img{
  position: relative;
}
#voice.detail #gallery .slider .slick-prev{
  background: url(../img/land/detail/gallery-arw.svg) no-repeat center center / contain;
  left: -50px;
}
#voice.detail #gallery .slider .slick-next{
  background: url(../img/land/detail/gallery-arw.svg) no-repeat center center / contain;
  right: -50px;
  transform: translate(0, -50%) scale(-1,1);
}
#voice.detail #gallery .slider .slick-prev,
#voice.detail #gallery .slider .slick-next{
  width: 80px;
  height: 80px;
  top: 50%;
  z-index: 1;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
  border-radius: 40px;
  transition: .3s;
}
#voice.detail #gallery .peger{
  max-width: 850px;
  width: 90%;
  margin: 20px auto 0;
}
#voice.detail #gallery .peger li{
  margin: 0 12px 10px 0;
  position: relative;
  padding-bottom: 5px;
}
#voice.detail #gallery .peger li .img{
  position: relative;
  display: block;
}
#voice.detail #gallery .peger li .img:after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
#voice.detail #gallery .peger li.slick-current .img:after{
  opacity: 0;
}
#voice.detail .other .conts-midashi strong{
  padding: 0 0 10px;
  margin-bottom: 0;
  border-bottom: none;
}
#voice.detail .other .link-btn{
  max-width: 350px;
  width: 90%;
  margin: 0 auto;
}
#voice.detail .other .voice-list{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#voice.detail .other .voice-list .voice-head{
  width: calc(100% / 2 - 20px);
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 30px;
}
#voice.detail .other .voice-list .voice-head .left{
  width: 28%;
}
#voice.detail .other .voice-list .voice-head .left .num-box{
  width: 100%;
  padding-top: 100%;
  position: relative;
  top: inherit;
  left: initial;
  transform: none;
}
#voice.detail .other .voice-list .voice-head .left .img{
  width: 100%;
  margin-top: 20px;
}
#voice.detail .other .voice-list .voice-head .txt-box{
  width: 67%;
}
#voice.detail .other .voice-list .voice-head .txt-box .txt1{
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  width: 100%;
}
#voice.detail .other .voice-list .voice-head .txt-box .hensai{
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}
#voice.detail .other .voice-list .voice-head .txt-box .hensai strong{
  display: block;
}
#voice.detail .other .voice-list .voice-head .txt-box .txt2{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
}
#voice.detail .other .voice-list .voice-head .txt-box .flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  flex-flow: initial;
  margin-top: 30px;
}
#voice.detail .other .voice-list .voice-head .txt-box .flex .txt3{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  width: calc(100% - 125px);
}
#voice.detail .other .voice-list .voice-head .txt-box .flex .txt3 span{
  width: 100px;
  display: block;
  margin: 0 0 5px;
}
#voice.detail .other .voice-list .voice-head .txt-box .flex .btn{
  min-width: 130px;
  width: 130px;
  padding: 10px;
}
@media only screen and (max-width: 1100px) {
  #voice.detail .other .voice-list .voice-head{
    width: calc(100% / 2 - 10px);
    padding: 20px;
  }
}
@media only screen and (max-width: 798px) {
  #voice.detail .comment{
    margin: 0 auto 50px;
  }
  #voice.detail .img-list{
    padding-bottom: 20px;
  }
  #voice.detail .img-list p{
    margin: 0 0 30px;
  }
  #voice.detail .conts-midashi{
    margin: 0 auto 30px;
  }
  #voice.detail .conts-midashi strong{
    padding: 0 10px 3px;
    margin-bottom: 5px;
  }
  #voice.detail #gallery{
    margin-bottom: 50px;
  }
  #voice.detail #gallery .slider .slick-prev{
    left: -15px;
  }
  #voice.detail #gallery .slider .slick-next{
    right: -15px;
  }
  #voice.detail #gallery .slider .slick-prev,
  #voice.detail #gallery .slider .slick-next{
    width: 30px;
    height: 30px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
    border-radius: 15px;
  }
  #voice.detail #gallery .peger{
    margin: 10px auto 0;
  }
  #voice.detail #gallery .peger li{
    margin: 0 5px 0 0;
  }
  #voice.detail .other .voice-list{
    margin: 0 auto 30px;
    display: block;
  }
  #voice.detail .other .voice-list .voice-head{
    width: 100% ;
    padding: 30px 20px;
    margin: 0 0 30px;
  }
  #voice.detail .other .voice-list .voice-head .left{
    width: 30%;
  }
  #voice.detail .other .voice-list .voice-head .left .num-box{
    width: 80px;
    height: 80px;
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-40%,-30%);
  }
  #voice.detail .other .voice-list .voice-head .left .img{
    margin: 0;
  }
  #voice.detail .other .voice-list .voice-head .txt-box .flex{
    margin-top: 10px;
  }
  #voice.detail .other .voice-list .voice-head .txt-box .flex .txt3{
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
    width: calc(100% - 110px);
  }
  #voice.detail .other .voice-list .voice-head .txt-box .flex .txt3 span{
    width: 80px;
    margin: 0 0 5px;
  }
  #voice.detail .other .voice-list .voice-head .txt-box .flex .btn{
    min-width: 130px;
    width: 130px;
    padding: 10px;
  }
}
@media only screen and (max-width: 500px) {
  #voice.detail .other .voice-list .voice-head{
    display: block;
  }
  #voice.detail .other .voice-list .voice-head .left{
    max-width: 170px;
    width: 100%;
    margin: 0 auto 20px;
  }
  #voice.detail .other .voice-list .voice-head .left .num-box{
    top: -10px;
    left: -10px;
    transform: none;
  }
  #voice.detail .other .voice-list .voice-head .img{
    width: 100%;
  }
  #voice.detail .other .voice-list .voice-head .img img{
    margin: 0;
    width: 100%;
  }
  #voice.detail .other .voice-list .voice-head .txt-box{
    width: 100%;
    margin: 0;
  }
  #voice.archive .voice-head .txt-box .txt3{
    margin-top: 10px;
  }
  #voice.archive .voice-head .txt-box .txt3 span{
    max-width: 100px;
    width: 100%;
    margin-bottom: 10px;
  }
  #voice.detail .voice-head .flex{
    display: block;
  }
  #voice.detail .voice-head .img{
    max-width: 170px;
    width: 100%;
    margin: 0 auto 20px;
  }
  #voice.detail .voice-head .txt-box{
    width: 100%;
    margin: 0;
  }
  #voice.detail .other .voice-list .voice-head .txt-box .flex{
    display: block;
    margin-top: 10px;
  }
  #voice.detail .other .voice-list .voice-head .txt-box .flex .txt3{
    width: 100%;
  }
  #voice.detail .other .voice-list .voice-head .txt-box .flex .btn{
    min-width: 160px;
    width: 160px;
    margin: 20px auto 0;
  }
}

/****************************
 news
****************************/
#news .mv .inner .ill{
  transform: translateY(180px);
  max-width: 167px;
  width: 25%;
}
@media only screen and (max-width: 798px) {
  #news .mv .inner .ill{
    max-width: 90px;
    transform: translateY(-20px);
  }
}
#news.archive .cat-btn{
  max-width: 1060px;
  width: calc(90% + 40px) ;
  margin: 0 auto;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#news.archive .cat-btn a{
  display: flex;
  align-items: center;
  width: calc(100% / 4 - 30px);
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  padding: 20px 55px 20px 20px;
  border-radius: 50px;
  border: solid 1px var(--c-black);
  transition: .3s;
  position: relative;
  margin: 0 15px 20px;
}
#news.archive .cat-btn a:after{
  content: '';
  width: 25px;
  height: 25px;
  border-radius: 25px;
  background: url(../img/common/arw-white02.svg) no-repeat center center / 40% var(--c-black);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(90deg);
}
#news.archive .cat-btn a:hover,
#news.archive .cat-btn a.act{
  border: solid 1px var(--c-gray3);
  background-color: var(--c-gray3);
}
#news .article{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
#news .article li{
  padding: 30px 0;
  border-bottom: solid 1px var(--c-gray2);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#news .day{
  font-size: clamp(1.2rem,1.5vw,1.6rem);
  line-height: 1;
  min-width: 100px;
  width: 100px;
  padding: 10px 0 0;
}
#news .cat{
  background-color: var(--c-gray3);
  min-width: 80px;
  width: 80px;
  padding: 10px 5px;
  font-size: clamp(1.1rem,1.3vw,1.4rem);
  line-height: 1;
  margin: 0 20px 0 0;
  text-align: center;
  display: block;
}
#news.archive .article{
  padding-bottom: 80px;
}
#news .article li a{
  width: calc(100% - 200px);
  font-size: clamp(1.2rem,1.5vw,1.6rem);
  line-height: 1.4;
  padding: 5px 0;
  transition: .3s;
}
#news .article li a:hover{
  color: var(--c-green);
}
#news .summary-txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.8;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  padding: 100px 0 60px;
}
@media only screen and (max-width: 798px) {
  #news.archive .cat-btn{
    width: calc(90% + 20px) ;
    padding-bottom: 20px;
  }
  #news.archive .cat-btn a{
    width: calc(100% / 3 - 10px);
    padding: 15px 35px 15px 10px;
    margin: 0 5px 10px;
  }
  #news.archive .cat-btn a:after{
    width: 20px;
    height: 20px;
    right: 10px;
  }
  #news.archive .article{
    padding-bottom: 0;
  }
  #news .article li{
    padding: 10px 0;
    display: flex;
  }
  #news.archive .day{
    font-size: clamp(1.4rem,1.5vw,1.6rem);
    line-height: 1;
    min-width: 80px;
    width: 80px;
    padding: 5px 0 0;
  }
  #news.archive .cat{
    min-width: 70px;
    width: 70px;
    padding: 5px;
    margin: 0 0 0 20px;
  }
  #news .article li a{
    width: 100%;
    padding: 8px 0 0;
  }
  #news .summary-txt{
    padding: 50px 0 30px;
  }
}
@media only screen and (max-width: 500px) {
  #news.archive .cat-btn{
    width: calc(90% + 20px) ;
    padding-bottom: 20px;
  }
  #news.archive .cat-btn a{
    width: calc(100% / 2 - 6px);
    padding: 15px 35px 15px 10px;
    margin: 0 3px 10px;
  }
}
#news.detail .wrap{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 80px;
}
#news.detail .wrap .head{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 0 80px;
}
#news.detail .wrap .head .tit{
  width: calc(100% - 120px);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
}
#news.detail .wrap .head .tit strong{
  display: block;
  font-size: clamp(1.8rem,1.9vw,2rem);
  line-height: 1.4;
  margin-right: 10px;
  max-width: calc(100% - 100px);
}
#news.detail .wrap .head .tit .cat{
  margin: 0 0 0 10px;
}
#news.detail .wrap .head .day{
  min-width: 110px;
  width: 110px;
  text-align: right;
  padding-top: 5px;
}
#news.detail .wrap .eye-catch{
  max-width: 850px;
  width: 100%;
  margin: 0 auto 80px;
}
#news.detail .wrap .content > p{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 2.4;
  margin-bottom: 40px;
}
#news.detail .article .midashi{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  margin-bottom: 10px;
}
#news.detail .link-btn{
  max-width: 350px;
  width: 90%;
  margin: 50px auto;
}
@media only screen and (max-width: 798px) {
  #news.detail .wrap{
    padding-bottom: 40px;
  }
  #news.detail .wrap .head{
    display: block;
    margin: 0 0 20px;
  }
  #news.detail .wrap .head .tit{
    width: 100;
    display: block;
  }
  #news.detail .wrap .head .tit strong{
    margin: 0 0 10px;
    max-width: none;
    width: 100%;
  }
  #news.detail .wrap .head .tit .cat{
    margin: 0 0 10px;
  }
  #news.detail .wrap .head .day{
    min-width: 110px;
    width: 110px;
    text-align: left;
    padding-top: 5px;
  }
  #news.detail .wrap .eye-catch{
    margin: 0 auto 20px;
  }
  #news.detail .wrap .content > p{
    font-size: clamp(1.4rem,1.5vw,1.6rem);
    line-height: 2;
    margin-bottom: 20px;
  }
  #news.detail .link-btn{
    max-width: 350px;
    width: 90%;
    margin: 30px auto;
  }
}

/****************************
 faq
****************************/
#faq .mv .inner .ill{
  transform: translateY(180px);
  max-width: 100px;
  width: 25%;
}
#faq main .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 100px;
}
#faq main .inner > .midashi{
  font-size: clamp(2rem,2.5vw,3rem);
  line-height: 1.4;
  color: var(--c-green);
  margin: 130px 0 30px;
}
#faq main .inner .list{
  margin: 0;
}
#faq main .inner dl{
  border-top: solid 1px var(--c-gray2);
}
#faq main .inner dl:last-of-type{
  border-bottom: solid 1px var(--c-gray2);
}
#faq main .inner dt{
  position: relative;
  padding: 4% calc(4% + 40px) 4% 4%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  line-height: 1.4;
  cursor: pointer;
  transition: .3s;
}
#faq main .inner dt:hover{
  color: var(--c-green);
}
#faq main .inner dt:before,
#faq main .inner dt:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 3%;
  width: 26px;
  height: 3px;
  background-color: var(--c-black);
  transition: .3s;
  transform: translateY(-50%);
}
#faq main .inner dt:after{
  transform: translateY(-50%) rotate(90deg);
}
#faq main .inner dt.open:after{
  transform: translateY(-50%) rotate(0);
}
#faq main .inner dt span{
  display: block;
  min-width: 45px;
  width: 45px;
}
#faq main .inner dt strong{
  display: block;
  width: calc(100% - 50px);
}
#faq main .inner dd{
  display: none;
  padding: 0 calc(4% + 40px) 4%;
}
#faq main .inner dd .a{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(1.6rem,2vw,2.4rem);
  line-height: 1.4;
  color: var(--c-green);
}
#faq main .inner dd .a span{
  display: block;
  min-width: 35px;
  width: 35px;
}
#faq main .inner dd .a strong{
  display: block;
  width: calc(100% - 40px);
}
#faq main .inner dd .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.6;
  margin-top: 20px;
}
#faq main .inner dd .txt a{
  text-decoration: underline;
}
#faq main .inner dd .txt a:hover{
  text-decoration: none;
  opacity: .7;
}
#faq main .inner dd .txt a.tel{
  pointer-events: none;
  text-decoration: none;
}
#faq .summary-txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.8;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  padding: 40px 0 60px;
}
@media only screen and (max-width: 798px) {
  #faq .mv .inner .ill{
    max-width: 50px;
    transform: translateY(-20px);
  }
  #faq main .inner{
    padding-bottom: 50px;
  }
  #faq main .inner > .midashi{
    margin: 50px 0 20px;
  }
  #faq main .inner dl{
    border-top: solid 1px var(--c-gray2);
  }
  #faq main .inner dl:last-of-type{
    border-bottom: solid 1px var(--c-gray2);
  }
  #faq main .inner dt{
    padding: 4% calc(4% + 30px) 4% 4%;
  }
  #faq main .inner dt:before,
  #faq main .inner dt:after{
    right: 2;
    width: 20px;
    height: 1px;
  }
  #faq main .inner dt span{
    min-width: 25px;
    width: 25px;
  }
  #faq main .inner dt strong{
    width: calc(100% - 35px);
  }
  #faq main .inner dd{
    padding: 0 calc(4% + 35px) 4%;
  }
  #faq main .inner dd .a span{
    min-width: 20px;
    width: 20px;
  }
  #faq main .inner dd .a strong{
    width: calc(100% - 25px);
  }
  #faq main .inner dd .txt{
    margin-top: 10px;
  }
  #faq main .inner dd .txt a.tel{
    pointer-events: initial;
    text-decoration: underline;
  }
  #faq main .inner dd .txt a.tel:hover{
    text-decoration: none;
  }
  #faq .summary-txt{
    padding: 10px 0 40px;
  }
}

/****************************
 about
****************************/
#about .mv .inner .ill{
  transform: translateY(230px);
  max-width: 97px;
  width: 25%;
}
#about #strengths .one-box{
  padding: 120px 0;
}
#about #strengths .one-box:nth-of-type(2n){
  background-color: var(--c-gray1);
}
#about #strengths .one-box .in-box{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about #strengths .one-box:nth-of-type(2n) .in-box{
  flex-flow: row-reverse;
}
#about #strengths .one-box .in-box .txt-box{
  width: 45%;
}
#about #strengths .one-box:nth-of-type(1) .in-box .txt-box{
  width: 40%;
}
#about #strengths .one-box .in-box .txt-box .txt1{
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.6;
  margin-bottom: 25px;
}
#about #strengths .one-box .in-box .txt-box .txt2{
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 2;
}
#about #strengths .one-box .in-box .link-btn{
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  padding: 15px 25px;
  max-width: 400px;
  margin: 30px auto 0;
}
#about #strengths .one-box .in-box .img{
  width: 50%;
}
#about #strengths .one-box .in-box .list{
  width: 55%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about #strengths .one-box .in-box .list li{
  width: calc(100% / 2 - 30px);
  border-radius: 25px;
  padding: 0 10px 20px;
  background-color: #fff;
  box-shadow: 3px 3px 4px rgba(40,40,40,.25);
  position: relative;
}
#about #strengths .one-box .in-box .list li:first-child:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(130%,-50%);
  width: 47px;
  height: 27px;
  background: url(../img/home/flow-cross.svg) no-repeat center center / contain;
}
#about #strengths .one-box .in-box .list li .tit{
  text-align: center;
  font-size: clamp(1.4rem,1.8vw,2rem);
  line-height: 1;
  margin: 0;
}
#about #strengths .one-box .in-box .list li .tit strong{
  display: block;
  max-width: 350px;
  width: 90%;
  margin: -10% auto 5px;
}
#about #strengths .one-box .in-box .list li.variation .tit strong{
  margin-bottom: 15px;
}
#about #strengths .one-box .in-box .list li.area .txt{
  max-width: 370px;
  width: 90%;
  margin: 30px auto 0;
}
#about #strengths .one-box .in-box .list li.variation .txt{
  max-width: 350px;
  width: 90%;
  margin: 14px auto 0;
}
#about #strengths .one-box .in-box .list li .sub{
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.4;
}
#about #strengths .one-box .in-box .list li.area .sub{
  color: var(--c-green);
}
#about #strengths .one-box .in-box .list li.variation .sub{
  color: var(--c-pink);
}
#about .tit .conts-midashi{
  width: fit-content;
  font-size: clamp(1.3rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin: 0;
  text-align: left;
}
#about .tit .conts-midashi strong{
  display: block;
  font-size: clamp(2rem,2.4vw,3rem);
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
  line-height: 1.8;
}
#about .tit .txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.8;
  width: calc(100% - 450px);
}
#about #voice{
  padding: 120px 0;
  background: url(../img/voice/bg.jpg) top left / 16px;
}
#about #voice .tit{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 100px;
}
#about #voice .link-btn{
  max-width: 400px;
  width: 90%;
  margin: 0 auto 0;
}
#about #process{
  padding: 120px 0 0;
}
#about #process .w-bg{
  max-width: 1040px;
  width: 94%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 8px 0 8px rgba(0,0,0,.15);
}
#about #process .in-box{
  max-width: 800px;
  width: 90%;
  margin: 0 auto 80px;
  padding: 100px 0;
}
#about #process .in-box .tit{
  margin: 0 auto 100px;
}
#about #process .list > li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 80px;
  margin: 0 0 20px;
  position: relative;
}
#about #process .list > li:before,
#about #process .list > li:after{
  content: '';
  position: absolute;
}
#about #process .list > li:last-child:before,
#about #process .list > li:last-child:after{
  display:none;
}
#about #process .list > li:before{
  width: 20px;
  height: 18px;
  background: url(../img/about/arw01.svg) no-repeat center center;
  bottom: 0;
  left: 90px;
}
#about #process .list > li:after{
  width: 2px;
  height: calc(100% - 180px);
  background: var(--c-black);
  bottom: 10px;
  left: 99px;
}
#about #process .list > li .txt-box{
  width: calc(100% - 500px);
}
#about #process .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;
}
#about #process .list > li .txt-box .txt{
  font-size: 1.6rem;
  line-height: 1.8;
}
#about #process .list > li .right-box{
  min-width: 470px;
  width: 470px;
}
#about #process .list > li:nth-child(1) .right-box{
  background-color: #E0F6FC;
  padding: 20px;
}
#about #process .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;
}
#about #process .list > li:nth-child(1) .right-box .checklist{
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#about #process .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;
}
#about #process .list > li:nth-child(3) .txt-box{
  width: calc(100% - 550px);
}
#about #process .list > li:nth-child(3) .right-box{
  min-width: 520px;
  width: 520px;
}
#about #process .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;
}
#about #process .flow-summary:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10%,-83%);
  width: 134px;
  height: 64px;
  background: url(../img/about/flow-hand.svg) no-repeat center center / contain;
}
#about .summary-txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.8;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  padding: 40px 0 60px;
}
@media only screen and (max-width: 920px) {
  #about #process .list > li .txt-box{
    width: calc(100% - 430px);
  }
  #about #process .list > li .right-box{
    min-width: 410px;
    width: 410px;
  }
  #about #process .list > li:nth-child(3) .txt-box{
    width: calc(100% - 450px);
  }
  #about #process .list > li:nth-child(3) .right-box{
    min-width: 440px;
    width: 440px;
  }
}
@media only screen and (max-width: 798px) {
  #about .mv .inner .ill{
    max-width: 50px;
    transform: translateY(120px);
  }
  #about #strengths .one-box{
    padding: 40px 0;
  }
  #about #strengths .one-box .in-box{
    display: block;
  }
  #about #strengths .one-box .in-box .txt-box{
    width: 100%;
    margin: 0 0 20px;
  }
  #about #strengths .one-box:nth-of-type(1) .in-box .txt-box{
    width: 100%;
  }
  #about #strengths .one-box .in-box .txt-box .txt1{
    margin-bottom: 20px;
  }
  #about #strengths .one-box .in-box .txt-box .txt2{
    line-height: 1.8;
  }
  #about #strengths .one-box .in-box .link-btn{
    max-width: 300px;
    margin: 20px auto 0;
  }
  #about #strengths .one-box .in-box .img{
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
  }
  #about #strengths .one-box .in-box .list{
    display: block;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  #about #strengths .one-box .in-box .list li{
    width: 100%;
    border-radius: 10px;
    padding: 0 10px 10px;
    box-shadow: 3px 3px 3px rgba(40,40,40,.25);
  }
  #about #strengths .one-box .in-box .list li:first-child{
    margin-bottom: 50px;
  }
  #about #strengths .one-box .in-box .list li:first-child:after{
    content: '';
    position: absolute;
    top: initial;
    right: initial;
    bottom: -41px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 30px;
  }
  #about #strengths .one-box .in-box .list li .tit{
  }
  #about #strengths .one-box .in-box .list li .tit strong{
    display: block;
    max-width: 280px;
    width: 90%;
    margin: 0 auto -15px;
    transform: translateY(-20px);
  }
  #about #strengths .one-box .in-box .list li.variation .tit strong{
    margin: 0 auto -15px;
  }
  #about #strengths .one-box .in-box .list li.area .txt{
    margin: 10px auto 0;
  }
  #about #strengths .one-box .in-box .list li.variation .txt{
    margin: 10px auto 0;
  }
  #about #strengths .one-box .in-box .list li .sub{
    margin-top: 10px;
  }
  #about #voice{
    padding: 40px 0;
    background: url(../img/voice/bg.jpg) top left / 8px;
  }
  #about #voice .tit{
    margin: 0 auto 40px;
  }
  #about #process{
    padding: 50px 0 0;
  }
  #about #process .w-bg{
    box-shadow: 4px 0 4px rgba(0,0,0,.15);
  }
  #about #process .in-box{
    margin: 0 auto 40px;
    padding: 50px 0;
  }
  #about #process .in-box .tit{
    margin: 0 auto 50px;
  }
  #about #process .list > li{
    display: block;
    padding-bottom: 50px;
    margin: 0 0 10px;
  }
  #about #process .list > li:before{
    width: 15px;
    height: 12px;
    background: url(../img/about/arw01.svg) no-repeat center center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #about #process .list > li:after{
    width: 2px;
    height: 30px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  #about #process .list > li .txt-box{
    width: 100% ;
    text-align: center;
    margin-bottom: 20px;
  }
  #about #process .list > li .txt-box .step{
    width: 200px;
    margin: 0 auto 20px;
  }
  #about #process .list > li .right-box{
    min-width: auto;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  #about #process .list > li:nth-child(1) .right-box{
    background-color: #E0F6FC;
    padding: 20px;
  }
  #about #process .list > li:nth-child(1) .right-box .checklist{
    max-width: 280px;
    margin: 0 auto;
  }
  #about #process .list > li:nth-child(3) .txt-box{
    width: 100%;
  }
  #about #process .list > li:nth-child(3) .right-box{
    min-width: auto;
    width: 100%;
  }
  #about #process .summary{
    width: 96%;
  }
  #about #process .summary:before{
    transform: translate(10%,-83%);
    width: 77px;
    height: 33px;
  }
}

/****************************
 company
****************************/
#company .mv .inner .ill{
  transform: translateY(180px);
  max-width: 179px;
  width: 25%;
}
#company .tit .conts-midashi{
  width: fit-content;
  font-size: clamp(1.3rem,1.4vw,1.5rem);
  line-height: 1.4;
  margin: 0 0 70px;
  text-align: left;
}
#company .tit .conts-midashi strong{
  display: inline-block;
  font-size: clamp(2rem,2.4vw,3rem);
  padding: 0 0 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px var(--c-black);
  line-height: 1.8;
}
#company .tit .conts-midashi span{
  display: block;
}
#company .conts{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 100px;
  padding-top: 30px;
}
#company .profile table{
  width: 100%;
  border-top: solid 1px var(--c-gray2);
}
#company .profile table th{
  background-color: var(--c-gray3);
  border-bottom: solid 1px var(--c-gray2);
  padding: 15px 5px;
  text-align: center;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
  max-width: 200px;
  width: 200px;
  vertical-align: middle;
}
#company .profile table td{
  border-bottom: solid 1px var(--c-gray2);
  padding: 15px 25px;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.4;
}
#company .history .scr{
  padding: 10px 0;
}
#company .history .timeline{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: solid 1px var(--c-gray2);
}
#company .history .timeline .box1{
  width: 20%;
}
#company .history .timeline .box2{
  width: 45%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#company .history .timeline .box2 .one-box{
  width: 46%;
}
#company .history .timeline .year{
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 1;
  position: relative;
  padding: 50px 0 20px;
}
#company .history .timeline .year:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: var(--c-green);
  transform: translateY(-50%);
}
#company .history .timeline .txt{
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 1.6;
}
#company .history .timeline .txt strong{
  display: block;
  margin-bottom: 10px;
}
#company .slide-box{
  position: relative;
}
#company .slide-box .ill{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 1080px;
  width: 94%;
}
#company .slider .slick-track{
  padding: 100px 0;
}
#company .slider .sld-img{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 10px;
  transition: transform 0.3s, opacity 0.3s;
  opacity:1;
}
.slider .item.center {
  opacity:1;
}
#company .slider .sld-img.sld-img1{
}
#company .slider .sld-img.sld-img1 img{
  animation: sld-img1 2.5s ease-in-out infinite alternate;
}
#company .slider .sld-img.sld-img2{
}
#company .slider .sld-img.sld-img2 img{
  animation: sld-img2 2s ease-in-out infinite alternate;
}
#company .slider .sld-img.sld-img3{
}
#company .slider .sld-img.sld-img3 img{
  animation: sld-img1 2.5s ease-in-out infinite alternate;
}
#company .slider .sld-img.sld-img4{
}
#company .slider .sld-img.sld-img4 img{
  animation: sld-img2 2.5s ease-in-out infinite alternate;
}
#company .slider .sld-img.sld-img5{
}
#company .slider .sld-img.sld-img5 img{
  animation: sld-img2 2s ease-in-out infinite alternate;
}
@keyframes sld-img1 {
  0% {
      transform: translate(0,0px);
  }
  100% {
      transform: translate(0,-10px);
  }
}
@keyframes sld-img2 {
  0% {
      transform: translate(0,-10px);
  }
  100% {
      transform: translate(0,0px);
  }
}
@keyframes sld-zoom {
  0% {
      transform: scale(.75);
  }
  50% {
      transform: scale(1);
  }
  100% {
      transform: scale(.75);
  }
}

#company .summary-txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.8;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  padding: 40px 0 60px;
}
@media only screen and (max-width: 798px) {
  #company .mv .inner .ill{
    max-width: 90px;
    transform: translateY(20px);
  }
  #company .tit .conts-midashi{
    margin: 0 0 30px;
  }
  #company .conts{
    max-width: 1040px;
    width: 90%;
    margin: 0 auto 40px;
    padding-top: 20px;
  }
  #company .profile table th{
    max-width: 100px;
    width: 100px;
  }
  #company .profile table td{
    padding: 15px;
    line-height: 1.6;
  }
  #company .history .scr .timeline{
    width: 600px;
  }
  #company .history .timeline .box1{
    width: 25%;
  }
  #company .history .timeline .box2{
    width: 60%;
  }
  #company .history .timeline .box2 .one-box{
    width: 48%;
  }
  #company .history .timeline .year{
    padding: 30px 0 10px;
  }
  #company .history .timeline .year:before{
    width: 8px;
    height: 8px;
    border-radius: 8px;
  }
  #company .history .timeline .txt strong{
    margin-bottom: 5px;
  }
  #company .slider .slick-list{
    padding: 30px 0;
  }
  #company .slider .sld-img{
    margin: 0 5px;
  }
}
/****************************
 performance
****************************/
#performance .mv .inner .ill{
  transform: translateY(200px);
  max-width: 135px;
  width: 25%;
}
#performance .conts{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10px;
}
#performance .conts .one-box{
  margin: 0 auto 100px;
  padding-bottom: 100px;
  border-bottom: solid 1px var(--c-black);
}
#performance .conts .one-box .flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#performance .conts .one-box:nth-of-type(2n) .flex{
  flex-flow: row-reverse;
}
#performance .conts .one-box:last-of-type{
  border-bottom: none;
}
#performance .conts .one-box .txt-box{
  width: 45%;
}
#performance .conts .one-box .txt-box .num{
  font-size: clamp(4rem, 6.2vw, 7.5rem);
  margin: 0 0 30px;
  line-height: 1;
  background: url(../img/performance/num-line.svg) no-repeat bottom left / contain;
  padding: 0 5px 5px 0;
  display: inline-block;
}
#performance .conts .one-box .txt-box .txt1{
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  margin: 0 0 30px;
  line-height: 1.4;
}
#performance .conts .one-box .txt-box .txt2{
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 2;
}
#performance .conts .one-box .txt-box .txt3{
  font-size: clamp(1.6rem, 1.8vw, 2.4rem);
  line-height: 1.4;
  margin: 30px 0 10px;
}
#performance .conts .one-box .img{
  width: 50%;
}
#performance .conts .one-box .ill{
  border: solid 1px var(--c-gray1);
}
#performance .conts .one-box .feature{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
}
#performance .conts .one-box .feature li{
  width: calc(100% / 3 - 15px);
}
#performance .conts .one-box .feature li img{
  display: block;
  background-color: var(--c-gray1);
  border-radius: 10px;
}
#performance .conts .one-box .feature li span{
  display: block;
  margin-top: 5px;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.4;
  text-align: right;
}
#performance .support{
  background-color: var(--c-gray1);
  padding: 70px 0 90px;
  position: relative;
}
#performance .support .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
#performance .support .txt-box{
  width: 47%;
  padding-bottom: 60px;
}
#performance .support .txt-box .txt1{
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  margin: 0 0 30px;
  line-height: 1.4;
}
#performance .support .txt-box .txt2{
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 2;
}
#performance .support .txt-box .link-btn{
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  padding: 15px 25px;
  max-width: 400px;
  margin: 90px 0 0;
}
#performance .support .summary-txt{
  width: 28%;
  height: 0;
  padding-top: 28%;
  border-radius: 280px;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, .3);
  position: relative;
  background-color: #fff;
  margin-left: 20px;
}
#performance .support .summary-txt span{
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: clamp(1.4rem,1.6vw,2rem);
  line-height: 1.6;
}
#performance .support .img{
  position: absolute;
  top: -70px;
  right: 0;
  width: 50%;
  height: 480px;
  border-radius: 100px 0 0 100px;
  overflow: hidden;
}
#performance .support .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 798px) {
  #performance .mv .inner .ill{
    max-width: 60px;
    transform: translateY(-30px);
  }
  #performance .conts .one-box{
    margin: 0 auto 40px;
    padding-bottom: 40px;
  }
  #performance .conts .one-box .flex{
    display: block;
  }
  #performance .conts .one-box .txt-box{
    width: 100%;
    margin: 0 0 10px;
  }
  #performance .conts .one-box .txt-box .num{
    margin: 0 auto 15px;
    width: fit-content;
    display: block;
  }
  #performance .conts .one-box .txt-box .txt1{
    margin: 0 0 15px;
    text-align: center;
  }
  #performance .conts .one-box .txt-box .txt2{
    line-height: 1.8;
  }
  #performance .conts .one-box .txt-box .txt3{
    margin: 15px 0 5px;
  }
  #performance .conts .one-box .img{
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
  }
  #performance .conts .one-box .feature{
    width: 100%;
    margin: 20px auto 0;
    justify-content: center;
  }
  #performance .conts .one-box .feature li{
    width: calc(100% / 2 - 8px);
    margin: 0 2px 4px;
  }
  #performance .conts .one-box .feature li img{
    border-radius: 5px;
  }
  #performance .conts .one-box .feature li span{
    margin-top: 2px;
  }
  #performance .support{
    padding: 30px 0 40px;
  }
  #performance .support .inner{
    display: block;
  }
  #performance .support .txt-box{
    width: 100%;
    padding-bottom: 0;
  }
  #performance .support .txt-box .txt1{
    margin: 0 0 20px;
    text-align: center;
  }
  #performance .support .txt-box .link-btn{
    max-width: 300px;
    margin: 30px auto 0;
  }
  #performance .support .summary-txt{
    width: 180px;
    height: 180px;
    padding-top: 0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    margin: 20px 0 0;
  }
  #performance .support .img{
    position: absolute;
    top: initial;
    right: 0;
    bottom: 10px;
    width: calc(100% - 160px);
    height: 200px;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
  }
  #performance .support .img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (max-width: 400px) {
  #performance .conts .one-box .feature{
    display: block;
    max-width: 200px;
  }
  #performance .conts .one-box .feature li{
    width: 100%;
    margin: 0 0 5px;
  }
}

/****************************
 sale
****************************/
#sale .mv .inner .ill{
  transform: translateY(180px);
  max-width: 90px;
  width: 25%;
}
#sale .intro{
  padding-bottom: 100px;
  position: relative;
}
#sale .intro:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url(../img/sale/intro-bg.jpg) top left / 8px;
}
#sale .intro .midashi{
  font-size: clamp(1.6rem,2.4vw,3rem);
  line-height: 1.6;
  text-align: center;
  margin: 0 0 80px;
}
#sale .intro .worries{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 60px;
  border: solid 2px var(--c-black);
  background-color: var(--c-gray1);
  border-radius: 50px;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}
#sale .intro .worries .balloon{
  max-width: 650px;
  width: 90%;
  margin: 0 auto;
  background-color: var(--c-black);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  font-size: clamp(1.4rem,2.4vw,3rem);
  line-height: 1.2;
  padding: 20px 5px;
  position: relative;
  transform: translateY(-50%);
}
#sale .intro .worries .balloon span{
  color: var(--c-yellow);
}
#sale .intro .worries .balloon:after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--c-black) transparent transparent transparent;
  border-width: 20px 15px 0px 15px;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}
#sale .intro .worries .list{
  width: 100%;
  height: 0;
  padding-top: 32%;
  position: relative;
}
#sale .intro .worries .list .item{
  position: absolute;
}
#sale .intro .worries .list .i01{
  bottom: -45%;
  left: 0;
  width: 30%;
}
#sale .intro .worries .list .i02{
  top: 0;
  left: 12%;
  width: 35%;
}
#sale .intro .worries .list .i03{
  top: 0;
  right: 5%;
  width: 45%;
}
#sale .intro .worries .list .i04{
  bottom: -50%;
  right: 5%;
  width: 28%;
}
#sale .intro .worries .ill{
  max-width: 350px;
  margin: 0 auto -20px;
}
#sale .intro .txt{
  background:linear-gradient(transparent 60%, var(--c-yellow) 60%);
  display: block;
  padding: 0 10px;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(1.6rem,3vw,4rem);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
#sale .merit{
  background-color: var(--c-green);
  padding: 100px 0;
}
#sale .merit .midashi{
  text-align: center;
  font-size: clamp(1.4rem,2.4vw,3rem);
  line-height: 1.2;
  margin: 0 0 60px;
}
#sale .merit .list{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#sale .merit .list li{
  width: calc(100% / 3 - 20px);
}
#sale .merit .list li .num {
  background: url(../img/sale/merit-num.svg) no-repeat bottom center / contain;
  width: 84px;
  padding: 30px 0 8px;
  position: relative;
  margin: 0 auto 10px;
  text-align: center;
  font-size: clamp(1.2rem,1.4vw,1.6rem);
  line-height: 1.2;
}
#sale .merit .list li .txt1{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 10px;
  text-align: center;
  font-size: clamp(1.6rem,1.8vw,2.2rem);
  line-height: 1.6;
  color: #fff;
}
#sale .merit .list li .txt2{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.8;
}
#sale .merit .summary-txt {
  text-decoration: underline;
  text-decoration-color: var(--c-black);
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 2.4;
  color: var(--c-black);
  text-align: center;
  margin: 0;
}
#sale .flow{
  padding: 100px 0;
}
#sale .flow .midashi{
  font-size: clamp(1.6rem,2.4vw,3rem);
  line-height: 1.6;
  text-align: center;
  margin: 0 0 70px;
}
#sale .flow .list{
  max-width: 850px;
  width: 90%;
  margin: 0 auto;
}
#sale .flow .list li{
  width: 100%;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 60px;
  position: relative;
}
#sale .flow .list li:after{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--c-green) transparent transparent transparent;
  border-width: 20px 15px 0px 15px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}
#sale .flow .list li:last-child:after{
  display: none;
}
#sale .flow .list li .tit-box{
  width: 35%;
  border-right: solid 1px var(--c-gray1);
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#sale .flow .list li .tit-box .step{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.4;
  width: 68%;
}
#sale .flow .list li .tit-box .step strong{
  display: block;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  color: var(--c-green);
  margin-bottom: 5px;
}
#sale .flow .list li .tit-box .ill{
  width: 30%;
}
#sale .flow .list li .txt{
  width: 62%;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.8;
}
#sale .flow .summary-txt{
  text-align: center;
}
#sale .flow .summary-txt strong{
  display: block;
  max-width: 350px;
  margin: 0 auto 20px;
}
#sale .flow .summary-txt span {
  text-decoration: underline;
  text-decoration-color: var(--c-black);
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 2.4;
  color: var(--c-black);
  text-align: center;
  margin: 0;
}
#sale .contact{
  padding: 100px 0;
  background-color: var(--c-gray1);
}
#sale .contact .midashi{
  font-size: clamp(1.6rem,2.4vw,3rem);
  line-height: 1.6;
  text-align: center;
  margin: 0 0 40px;
}
#sale .contact .midashi span{
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  display: block;
}
#sale .contact .head-txt{
  font-size: clamp(1.4rem,1.7vw,2rem);
  line-height: 2;
  text-align: center;
  margin: 0 0 70px;
}
#sale .contact .inner table tr{
  border-bottom: solid 1px #c9c9c9;
  padding: 40px 0;
  display: flex;
  align-items: center;
}
#sale .contact .inner table tr.top{
  align-items: flex-start;
}
#sale .contact .inner table tr.no-border{
  padding-bottom: 0;
  border: none;
}
#sale .contact .inner table th,
#sale .contact .inner table td{
  padding: 0;
}
#sale .contact .inner table td p span{
  display: block;
}
#sale .contact .inner input[type=text],
#sale .contact .inner textarea{
  background-color: #fff;
}
#sale .contact .inner .radio .wpcf7-radio > span{
  margin-bottom: 0;
}
#sale .contact .inner table td .flex > p{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
#sale .contact .inner table td .flex > p:first-of-type{
  padding-right: 2%;
  border-right: solid 1px #c9c9c9;
}
#sale .contact .inner table td .flex > p span{
  display: block;
  margin: 0 0 0 10px;
}
@media only screen and (max-width: 1040px) {
  #sale .intro .worries .ill{
    max-width: none;
    width: 40%;
  }
  #sale .flow .summary-txt strong{
    max-width: none;
    width: 40%;
  }
}
@media only screen and (max-width: 798px) {
  #sale .mv .inner .ill{
    max-width: 50px;
    transform: translateY(-30px);
  }
  #sale .intro{
    padding-bottom: 40px;
  }
  #sale .intro:after{
    background: url(../img/sale/intro-bg.jpg) top left / 4px;
  }
  #sale .intro .midashi{
    margin: 0 0 30px;
  }
  #sale .intro .worries{
    margin: 0 auto 30px;
    border: solid 1px var(--c-black);
    border-radius: 20px;
    padding: 0 20px;
  }
  #sale .intro .worries .balloon{
    max-width: 400px;
    width: 94%;
    padding: 10px 2px;
  }
  #sale .intro .worries .balloon:after{
    border-width: 15px 10px 0px 10px;
    bottom: -9px;
  }
  #sale .intro .worries .list{
    padding-top: 90%;
  }
  #sale .intro .worries .list .i01{
    bottom: -15%;
    left: -5%;
    width: 46%;
  }
  #sale .intro .worries .list .i02{
    top: 28%;
    left: -7%;
    width: 56%;
  }
  #sale .intro .worries .list .i03{
    top: 0%;
    right: -11%;
    width: 75%;
  }
  #sale .intro .worries .list .i04{
    bottom: 0%;
    right: 0%;
    width: 46%;
  }
  #sale .intro .worries .ill{
    max-width: 350px;
    margin: 0 auto -20px;
  }
  #sale .intro .txt{
    padding: 0 5px;
  }
  #sale .merit{
    padding: 50px 0;
  }
  #sale .merit .midashi{
    margin: 0 0 30px;
  }
  #sale .merit .list{
    margin: 0 auto 30px;
    display: block;
  }
  #sale .merit .list li{
    width: 100%;
    margin: 0 0 20px;
  }
  #sale .merit .list li .num {
    margin: 0 auto 5px;
    font-size: clamp(1.4rem,1.4vw,1.6rem);
  }
  #sale .merit .summary-txt {
    text-underline-offset: 8px;
    line-height: 2;
  }
  #sale .flow{
    padding: 50px 0;
  }
  #sale .flow .midashi{
    margin: 0 0 30px;
  }
  #sale .flow .list li{
    border-radius: 15px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
    padding: 20px 10px;
    display: block;
    margin: 0 0 40px;
  }
  #sale .flow .list li:after{
    border-width: 15px 10px 0px 10px;
    bottom: -30px;
  }
  #sale .flow .list li .tit-box{
    width: 100%;
    border: none;
    border-bottom: solid 1px var(--c-gray1);
    padding: 0 0 20px;
  }
  #sale .flow .list li .tit-box .step{
    width: calc(100% - 70px);
  }
  #sale .flow .list li .tit-box .ill{
    max-width: 60px;
    width: auto;
  }
  #sale .flow .list li .txt{
    width: 100%;
    padding-top: 10px;
  }
  #sale .flow .summary-txt{
    text-align: center;
  }
  #sale .flow .summary-txt strong{
    display: block;
    max-width: 350px;
    margin: 0 auto 10px;
  }
  #sale .flow .summary-txt span {
    text-underline-offset: 8px;
    line-height: 2;
  }
  #sale .contact{
    padding: 50px 0;
    background-color: var(--c-gray1);
  }
  #sale .contact .midashi{
    margin: 0 0 20px;
  }
  #sale .contact .head-txt{
    margin: 0 0 30px;
  }
  #sale .contact .inner table tr{
    padding: 20px 0;
    display: block;
  }
  #sale .contact .inner table tr.no-border{
    padding-bottom: 0;
    border: none;
  }
  #sale .contact .inner table th{
    padding-bottom: 10px;
  }
  #sale .contact .inner table td{
    padding: 0;
  }
  #sale .contact .inner table td p span{
    display: block;
  }
  #sale .contact .inner input[type=text],
  #sale .contact .inner textarea{
    background-color: #fff;
  }
  #sale .contact .inner .radio .wpcf7-radio > span{
    margin-bottom: 0;
  }
  #sale .contact .inner table td .flex > p{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  #sale .contact .inner table td .flex > p:first-of-type{
    padding-right: 2%;
    border-right: solid 1px #c9c9c9;
  }
  #sale .contact .inner table td .flex > p span{
    display: block;
    margin: 0 0 0 10px;
  }
}

/****************************
 support
****************************/
#support .mv .inner .ill{
  transform: translate(30px,150px);
  max-width: 133px;
  width: 25%;
}
#support .conts{
  padding: 80px 0;
}
#support .conts .inner{
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}
#support .conts .head{
  margin: 0 auto 80px;
}
#support .conts .head .pickup{
  max-width: 82px;
  width: 90%;
  margin: 0 auto 25px;
}
#support .conts .head .txt1{
  font-size: clamp(1.8rem,2.4vw,2.8rem);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 40px;
}
#support .conts .head .txt2{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 2;
  text-align: center;
  margin: 0 auto;
}
#support #jio .img{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background-color: #eff9f8;
  padding: 30px 70px;
}
#support #after{
  background-color: var(--c-gray1);
}
#support #after .img{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 70px;
}
#support #equipment .continuation{
  max-width: 900px;
  width: 100%;
  margin: -30px auto 80px;
}
#support #equipment .continuation .in-box{
  background: url(../img/home/property-bg.jpg) top left / 8px;
  padding: 40px 10px;
}
#support #equipment .continuation .in-box .txt1{
  font-size: clamp(1.6rem,1.6vw,2rem);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 20px;
}
#support #equipment .continuation .in-box .txt1 span{
  background: linear-gradient(transparent 60%, var(--c-yellow) 60%);
  padding: 0 10px;
}
#support #equipment .continuation .in-box .txt2{
  font-size: clamp(1.3rem,1.5vw,1.6rem);
  line-height: 2;
  text-align: center;
  margin: 0 auto;
}
#support #equipment .notes{
  font-size: clamp(1.1rem,1.3vw,1.4rem);
  text-align: right;
  display: block;
  margin-top: 5px;
  line-height: 1.4;
}
#support #equipment .img{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
#support #equipment .img-txt{
  font-size: clamp(1.6rem,1.8vw,2rem);
  line-height: 1.4;
  text-align: center;
  margin: 10px auto 0;
}
#support #equipment .img-txt strong{
  color: var(--c-green);
}
#support #equipment .img-txt strong strong{
  font-size: clamp(2.8rem,3.6vw,4rem);
}
#support #warranty{
  background-color: var(--c-gray1);
}
#support #warranty .head .notes{
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1.8;
  text-align: center;
  margin: 40px auto 0;
}
#support #warranty .items-tit{
  width: fit-content;
  display: block;
  margin: 0 auto 10px;
  padding: 0 10px 10p;
  position: relative;
  font-size: clamp(1.6rem,1.6vw,2rem);
  line-height: 1.4;
}
#support #warranty .items-tit:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 3px;
  background-color: var(--c-black);
}
#support #warranty .items{
  padding-bottom: 60px;
  margin-bottom: 90px;
  border-bottom: solid 1px var(--c-gray2);
}
#support #warranty .items:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
}
#support #warranty .items .midashi{
  margin: 0 auto 40px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  text-align: center;
}
#support #warranty .items .list{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -15px 0;
}
#support #warranty .items .list li{
  width: calc(100% / 3 - 30px);
  margin: 0 15px 30px;
}
#support #warranty .items .list li span{
  display: block;
  font-size: clamp(1.2rem,1.5vw,1.6rem);
  line-height: 1.4;
  margin-top: 10px;
  text-align: center;
}
#support #warranty .ft-txt{
  margin: 0 auto 30px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 2;
  text-align: center;
}
#support .summary-txt{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.8;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  padding: 80px 0 60px;
}
@media only screen and (max-width: 798px) {
  #support .mv .inner .ill{
    max-width: 70px;
    transform: translateY(-30px);
  }
  #support .conts{
    padding: 40px 0;
  }
  #support .conts .head{
    margin: 0 auto 30px;
  }
  #support .conts .head .pickup{
    max-width: 70px;
    margin: 0 auto 15px;
  }
  #support .conts .head .txt1{
    margin: 0 auto 20px;
  }
  #support .conts .head .txt2{
    text-align: left;
  }
  #support #jio .img{
    padding: 10px;
    width: 550px;
  }
  #support #after .img{
    padding: 10px;
    width: 550px;
  }
  #support #equipment .img{
    width: 600px;
  }
  #support #equipment .continuation{
    margin: -10px auto 30px;
  }
  #support #equipment .continuation .in-box{
    background: url(../img/home/property-bg.jpg) top left / 4px;
    padding: 20px 10px;
  }
  #support #equipment .continuation .in-box .txt1{
    margin: 0 auto 15px;
  }
  #support #equipment .continuation .in-box .txt2{
    text-align: left;
  }
  #support #warranty .head .notes{
    margin: 10px auto 0;
    text-align: left;
  }
  #support #warranty .items{
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  #support #warranty .items .midashi{
    margin: 0 auto 20px;
  }
  #support #warranty .items .list{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0;
  }
  #support #warranty .items .list li{
    width: calc(100% / 2 - 5px);
    margin: 0 10px 20px 0;
  }
  #support #warranty .items .list li:nth-child(even){
    margin-right: 0;
  }
  #support #warranty .items .list li span{
    margin-top: 5px;
  }
  #support #warranty .ft-txt{
    margin: 0 auto 20px;
  }
  #support .summary-txt{
    padding: 40px 0 30px;
  }
}
