@charset "UTF-8";
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}
.header::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1E3C55;
  z-index: -1;
  transform: translateY(0);
  transition: .4s ease;
}
.header.is-active::before{
  transform: translateY(-100%);
}
.logo{
  width: min(100%,96px);
}
.line-link{
  width: min(100%,220px);
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #AA8D68;
  gap: 10px;
  color: #fff;
  padding: 0 16px;
  border: 1px solid #AA8D68;
  font-size: 1.4rem;
  font-family: serif;
}
.line-link .mark01{
  width: 22px;
}
.line-link .mark02{
  width: 4px;
}
.cls-2 {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke: #fff;
  transition: .2s ease;
}
.cls-1 {
  fill: #fff;
  stroke-width: 0px;
  transition: .2s ease;
}

a{
  color: inherit;
  transition: .2s ease;
}
@media (hover: hover) {
  .line-link:hover{
    background: #fff;
    color: #AA8D68;
  }
  .line-link:hover .cls-2{
    stroke: #AA8D68;
  }
  .line-link:hover .cls-1{
    fill: #AA8D68;
  }
}
.footer{
  position: relative;
}
.f-nav-list{
  display: flex;
  margin-bottom: 17px;
}
.f-nav-item:nth-of-type(1){
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #fff;
}
.footer .inner{
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%,0);
  width: min(100% - 32px,1200px);
}
@media (hover: hover) {
  .f-nav-item a:hover{
    opacity: .7;
  }
}
.mv{
  position: relative;
}
.mv-item{
  position: absolute;
  bottom: 3vw;
  left: 5vw;
  width: min(100%,400px);
  text-align: center;
}
.mv-item .line-link{
  width: min(100%,400px);
  height: 80px;
  border-radius: 40px;
  font-size: 3.2rem;
  justify-content: center;
}
.mv-item .line-link
.mv-item .line-link .mark01{
  width: 40px;
}
.mv-item p{
  display: inline-block;
  position: relative;
  text-align: center;
  margin-bottom: 23px;
  font-size: 2rem;
  padding: 0 .5em;
}
.mv-item p:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  background: linear-gradient(90deg,#fff 0%,#fff 46%,#ffffff00 46.1%,#ffffff00 50%,#fff 50.1%,#fff 100%);
}
.mv-item p::after{
  content: "";
  position: absolute;
  bottom: -4px;
  left: 49.6%;
  width: 1px;
  height: 15px;
  background: #fff;
  transform: rotate(213deg);
  transform-origin: right bottom;
}
.head{
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: bold;
}
.note{
  font-size: 1.8rem;
  line-height: 2;
}
.col-3{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: flex-start;
}
.trouble .col-3{
  gap: 60px;
}
.sub-head{
  font-size: 2rem;
  line-height: 1.5;
}
.trouble .sub-head{
  color: #1E3C55;
}
.item{
  position: relative;
}
.trouble .sub-head{
  position: absolute;
  width: 100%;
  top: 60px;
  left: 50%;
  transform: translate(-50%,0);
  text-align: center;
}
.merit .col-3{
  gap: 20px;
}
.merit .note{
  line-height: 1.5;
}
.merit .item{
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.merit .sub-head{
  padding: 16px 8px;
}
.merit .note{
  padding: 16px 16px 0;
}
.price .head{
  margin-bottom: 10px;
}
.price-list{
  margin-top: 40px;
}
.flow .list{
  border-radius: 10px;
  margin-bottom: 10px;
}
.flow .note{
  line-height: 1.5;
}
.flow .item{
  position: relative;
  padding: 32px 16px 0;
  height: 390px;
}
.flow .num{
  display: inline-block;
  font-size: 2rem;
  width: 86px;
  height: 26px;
  border-radius: 13px;
  padding: 2px 0 0;
  margin-bottom: 10px;
}
.flow .list .sub-head{
  margin-bottom: 15px;
  font-weight: bold;
}
.flow .item:nth-of-type(2)::before,
.flow .item:nth-of-type(3)::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 195px solid transparent;
  border-bottom: 195px solid transparent;
  border-left: 17px solid #fff;
  border-right: 0;
}
.flow .item:nth-of-type(3)::before{
  border-left: 17px solid #F3FBFF;
}
.question-item{
  border-radius: 10px;
  overflow: hidden;
}
.question-item + .question-item{
  margin-top: 15px;
}
.question-item dt,
.question-item dd{
  padding: 16px 32px;
}
.question-item dd{
  display: none;
}
.question-item.is-open dd{
  display: block;
}
.question-item .sub-head{
  position: relative;
}
.question-item .sub-head::before,
.question-item .sub-head::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translate(0,-50%);
  width: 22px;
  height: 4px;
  background: #fff;
}
.question-item .sub-head::after{
  transform: translate(0,-50%) rotate(90deg);
  transition: .2s ease;
}
.question-item.is-open .sub-head::after{
  transform: translate(0,-50%) rotate(0deg);
}
.contact{
  position: relative;
}
.contact .mv-item{
  position: static;
}
.contact .clo-2{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact .head{
  margin-bottom: 0;
  line-height: 1.5;
}
.contact .mv-item p:before{
  background: linear-gradient(90deg, #AA8D68 0%, #AA8D68 46%, #aa8d6800 46.1%, #aa8d6800 50%, #AA8D68 50.1%, #AA8D68 100%);
}
.contact .mv-item p::after{
  background: #AA8D68;
}
.about{
  position: relative;
}
.about .img{
  position: absolute;
}
.about .img.-item01{
  top: 0;
  left: 0;
  width: min(100%,335px);
}
.about .img.-item02{
  bottom: 0;
  right: 0;
  width: min(100%,270px);
}
.triangle,
.is-sp-fixed{
  display: none;
}
.is-sp-fixed.is-active{
  position: relative;
}
.fadeIn {
  opacity: 0;
  transform: translateY(50px);
}

.fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px){
  .mv .mv-item{
    display: none;
  }
  .header{
    padding: 16px;
  }
  .head{
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .note{
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .col-3{
    grid-template-columns: 1fr;
  }
  .sub-head{
    font-size: 1.6rem;
  }
  .trouble .sub-head{
    padding-left: 70px;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .trouble .col-3{
    gap: 15px;
  }
  .merit .item .note,
  .merit .item .note + img{
    display: none;
  }
  .merit .item.is-open .note,
  .merit .item.is-open .note + img{
    display: block;
    margin: 0 auto;
  }
  .merit .item img{
    margin-top: 20px;
    width: 160px;
  }
  .flow .item{
    position: relative;
    text-align: left;
    height: auto;
  }
  .flow .num{
    background: none;
    color: #1E3C55;
    font-size: 1.1rem;
    height: auto;
    margin-bottom: 0;
  }
  .flow .item .flow-img{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    height: 130px;
    width: auto;
  }
  .flow .item{
    padding: 32px 16px;
  }
  .flow .item:nth-of-type(2)::before,
  .flow .item:nth-of-type(3)::before{
    display: none;
  }
  .triangle{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .flow .list + p{
    text-indent: -1em;
    padding-left: 1em;
  }
  .question-item .sub-head{
    text-indent: -1em;
  }
  .question-item dt,
  .question-item dd{
    padding: 16px 16px 16px calc(16px + 1em) ;
  }
  .question-item .sub-head::before, 
  .question-item .sub-head::after{
    right: 16px;
  }
  .contact .clo-2{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer .inner{
    bottom: 24px;
  }
  .f-nav-list{
    margin-bottom: 5px;
  }
  .f-nav-item:nth-of-type(1){
    padding-right: 15px;
    margin-right: 15px 
  }
  .mv-item .line-link{
    font-size: 2.5rem;
    height: 60px;
  }
  .about .img.-item01{
    width: 200px;
  }
  .about .img.-item02{
    width: 200px;
  }
  .is-sp-fixed{
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    font-size: 2.5rem;
    height: 100px;
  }
  .is-sp-fixed p{
    position: absolute;
    top: 15px;
    font-size: 1.5rem;
  }
  .line-link.is-sp-fixed .mark01{
    width: 35px;
  }
  .line-link.is-sp-fixed .mark02{
    width: 8px;
    margin-left: 15px;
  }
  .line-link.is-sp-fixed span{
    display: inline-block;
    transform: translate(0,15px);
  }
  .merit .sub-head{
    position: relative;
  }
  .merit .sub-head img{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0,-50%);
    width: 15px;
    margin: 0;
  }
  .merit .is-open .sub-head img{
    transform: translate(0,-50%) rotate(180deg);
  }
}