@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 2;
  background: #fff;
}

/* 共通 */
.section {
    padding: 80px 20px;
}
.section-title {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-title::before{
    content: "";
    height: 1px;
    background-color: #ccc;
    width: 30%;
    display: block;
    margin-right: 1em;
}
.section-title::after{
    content: "";
    height: 1px;
    background-color: #ccc;
    width: 30%;
    display: block;
    margin-left: 1em;
}
.section-title.long::before{
    width: 37%;
}
.section-title.long::after{
    width: 37%;
}
h3 {
    font-size: 18px;
    margin: 15px 0;
}
.sp{display: none;}
@media (max-width: 1080px) {
    .section-title::before{
        width: 15%;
    }
    .section-title::after{
        width: 15%;
    }
    .section-title.long::before{
        width: 30%;
    }
    .section-title.long::after{
        width: 30%;
    }
}
@media (max-width: 580px) {
    .sp{display: block;}
    .section {
        padding: 40px 5%;
    }
    .section-title {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .section-title.long::before{
        width: 20%;
    }
    .section-title.long::after{
        width: 20%;
    }
}

/* お客様の声 */
.voice {
  background: #f8f3f0;
}
.voice-list {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.voice-card{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.voice-card .photo{
    width: 100%;
}

.voice-user {
    margin-top: auto;
    font-size: 14px;
    color: #888;
    text-align: right;
}

/* 選ばれる理由 */
.reason-list {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.reason-card{
    text-align: center;
}
.reason-card h3{
    background: #faece6;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding: 1.5em 1em;
}
.reason-card h3.green {
  background: #f3efe9;
}
.reason-card h3.orenji {
  background: #f8ede2;
}
.reason-icon {
    width: 52px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    background-color: #e5a590;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: -1.2em;
    left: 0;
    right: 0;
    margin: auto;
}
.green .reason-icon{
    background-color: #98a554;
}
.orenji .reason-icon{
    background-color: #f4c08e;
}
.reason-card p{
    padding: 0 .5em;
    letter-spacing: 0;
}
.reason-card p span{
    font-size: 120%;
    font-weight: 700;
    display: block;
}
.reason-card p span:first-child{
    margin-top: .5em;
}
.reason-card p span:last-child{
    margin-bottom: .5em;
}

/* サービス */
.service {
  background: #faf2f0;
}
.service .photo{
    width: 80%;
    max-width: 700px;
    margin: auto;
    padding-bottom: 30px;
}
.service-box {
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.service-box h3{
    background-color: #ad9e85;/*#eee5dc*/
    font-size: 22px;
    font-weight: 700;
    padding: .5em 1em;
    color: #fff;
}
.service-lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #cdcdcd;
}
.service-lead span{
    font-weight: 400;
    font-size: 16px;
}
.price-box {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    background-color: #fff;
    padding: 1em;
}
.price-box h4,.pay h4{
    background-color: #eee5dc;
    margin: 0;
}
.price-box p{
    display: inline-block;
    margin: 0 1em 0 0;
    font-weight: 700;
}
.price-box p.sub_t{
    display: block;
    font-weight: 400;
    margin-top: .5em;
}
.pay{
    max-width: 700px;
    border: 3px solid #eee5dc;
    padding: 1em;
    margin: 40px auto 10px;
    text-align: center;
}
.service .link_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.link_btn{
    width: 225px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: #ac8757;
    margin: 2em 10px 0;
    border-radius: 15px;
}
.link_btn.green{
    background-color: #7b934e;
}
@media (max-width: 580px) {
    .service .photo{
        width: 100%;
        padding-bottom: 10px;
    }
    .service-box h3{
        line-height: 1.5;
    }
    .pay p{text-align: left;}
}

/* プロフィール */
.profile{
    padding-bottom: 0;
}
.profile-inner {
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.profile img {
  width: 260px;
  border-radius: 20px;
}
.profile h2{
    margin: 0;
    font-size: 24px;
}
.profile h2 span{
    font-size: 70%;
}
.profile-sub {
    color: #777;
    margin-top: 0;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}
.profile-sub span{
    display: inline-block;
}
.profile-sub span:nth-child(1)::after{
    content: "／";
}
@media (max-width: 768px) {
    .profile .link_btn{
        margin: auto;
    }
}
@media (max-width: 580px) {
    .profile .link_btn{
        margin-top: 30px;
        margin-bottom: 50px;
    }
}


/* アクセス */
.access-box {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 20px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .voice-list,
  .reason-list,
  .access-box {
    grid-template-columns: 1fr;
  }
    .access-box{text-align: center;}
  .profile-inner {
    flex-direction: column;
    text-align: center;
  }

  .profile img {
    width: 200px;
  }
}
@media (max-width: 580px) {
    .access .section-title{
        margin-bottom: 0;
    }
}

/* ================== ファーストビュー ================== */
.fv {
    position: relative;
    background: url("img/home/fv.jpg") center/cover no-repeat;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 20px 0;
    letter-spacing: 0;
    overflow: hidden;
}
.fv::before{
    content: "";
    padding-top: 48.333%
}
.img_photo{
    position: absolute;
    top: 10%;
    right: 2%;
    width: 33.333%;
    max-width: 400px;
}
.fv-inner {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.fv-text {
    padding: 40px;
    border-radius: 24px;
    margin: auto;
    position: relative;
    text-align: center;
}
.fv-text .bg{
    width: 50%;
    height: 100%;
    filter: blur(10px);
    background: rgba(255,255,255,0.88);
    display: block;
    position: absolute;
    top: 0;left: 0;right: 0;
    border-radius: 50%;
    z-index: -1;
    margin: auto;
}
.fv-catch-small {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 0;
}
.fv-catch {
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    margin: 10px 0;
}

.fv-sub {
    font-size: 22px;
    margin-bottom: 30px;
}

.btn-contact {
    width: 295px;
    height: 64px;
    display: inline-block;
    background: #7b934e;
    font-size: 22px;
    line-height: 64px;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}
@media (max-width: 1000px) {
    .img_photo{
        right: 0;
    }
    .fv-catch {
        font-size: 5.8vw;
    }
    .fv-catch-small {
        font-size: 3vw;
    }
    .fv-sub {
        font-size: 2.2vw;
    }
    .fv-text {
        margin-right: 30%;
    }
    .fv-text .bg {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .fv {
        height: auto;
        padding: 120px 20px;
    }
    .img_photo{
        top: calc(10% + 60px);
    }
}
/* ================== 580px以下 ================== */
@media (max-width: 580px) {
    .fv {
        background-position: center top;
        min-height: auto;
        padding: 60px 0 0;
        align-items: flex-start;
    }
    .fv::before {
        content: "";
        display: block;
        height: 55vh;
        background: url("img/home/fv-sp.jpg") center/cover no-repeat;
    }
    .fv-inner {
        padding: 0;
        margin-top: 50px;
    }
    .fv-text {
        margin: 0 20px;
        max-width: none;
        padding: 0;
    }
    .fv-catch {
     font-size: 40px;
    }
    .fv-catch-small {
        font-size: 22px;
    }
    .fv-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .img_photo{
        top: inherit;
        bottom: -29.31vw;
        right: 5%;
        width: 42%;
    }
    .btn-contact {
        width: auto;
        height: auto;
        padding: 1em 2em;
        font-size: 18px;
        line-height: 1;
    }
    .fv-text .bg {
        height: 110%;
        top: -10%;
    }
}

@media (max-width: 460px) {
    .img_photo{
        width: 26.38vh;
    }
}
/* ================== アニメーション ================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}