main{
    overflow-x: hidden;
    
}
/*  */
/* header */
/*  */

/* header main */
.header{
    display: flex;
    justify-content: space-between;
    /* background-color: #f5f5f5;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); */
    padding: 10px 3%;
    position: fixed;
    width: 100vw;
    z-index: 10;
}
.header .logo{
    width: 140px;
}

/*  */
/* fixed-reservation */
/*  */
.fixed-reservation{
    background-color: #333;
    color: #fff;
    writing-mode: vertical-rl;
    text-decoration: none;
    position: fixed;
    bottom: 10%;
    right: 0;
    z-index: 10;
    padding: 20px;
    letter-spacing: .5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border: #333 2px solid;
}
.fixed-reservation:hover{
    background-color: #fff;
    color: #333;
}

/* hamburger menu */
.header-right{
    margin: auto 0;
    height: fit-content;
}
.hamburger {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    z-index: 1000;
    margin-left: 15px;
    margin: auto 0;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    background-color: #333; 
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    position: absolute;
    transition: all .3s ease-in-out;
}

.hamburger::before {
    top: 0;
}

.hamburger span {
    top: 11px;
}

.hamburger::after {
    bottom: 0;
}

.hamburger.active::before {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span {
    opacity: 0;
}

.hamburger.active::after {
    transform: translateY(-11px) rotate(-45deg);
}

.menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.menu.active {
    display: block;
    transform: translateX(0);
}

.menu ul {
    padding: 60px 0 0 0;
    margin: 0;
    list-style: none;
}

.menu ul li {
    padding: 0;
    margin: 0;
}

.menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.menu ul li a:hover {
    background-color: #f5f5f5;
    padding-left: 25px;
    color: #ff7900;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 998;
}

.overlay.active {
    display: block;
}
.menu ul > a{
    background-color: #434343;
    color: #fff;
    padding: 10px 0;
    width: 90%;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    text-decoration: none;
    text-align: center;
    border: #434343 2px solid;
}
.menu ul > a:hover{
    background-color: #fff;
    color: #434343;
}

/*  */
/* hero */
/*  */

/* .hero > img{
    width: 60%;
    height: 90vh;
    object-fit: cover;
    position: relative;
}
.hero{
    display: flex;
}
.hero > span{
    color: #fff;
    font-size: 5em;
    line-height: 1.5;
    font-weight: 900;
    position: absolute;
    top:50%;
    left: 3%;
    transform:translate(0,-50%);
} */

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero > span {
    color: #fff;
    font-size: 5em;
    line-height: 1.5;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translate(0, -50%);
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-contents {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #fff;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding: 3% 3% 0 6%;
    
    /* 斜めの境界線 */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-contents p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    text-align: center;
}
.hero-contents p.mission{
    font-weight: 900;
}

.hero-contents h2 {
    font-size: 3rem;
    color: #333;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(90deg, #82f369 0%, #91cfff 40%, #ffaacc 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.hero-contents a {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

.hero-contents a:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/*  */
/* .about-us */
/*  */

.about-us {
    background-color: #0c96ff;
    color: #fff;
    padding: 30px 0 0;
    position: relative;
    z-index: 2;
}
.about-us > h2{
    text-align: center;
    font-size: 2rem;
}
.about-us > p{
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    line-height: 2rem;
    font-size: 1.2rem;
}
.about-us > svg{
    fill: #0c96ff;
    background-color: #fff;
}
.shape-fill{
    fill: #0c96ff
}
.about-us > svg.wave-2{
    position: absolute;
    width: 150vw;
    left: -40vw;
    bottom: 0;
}
.about-us > svg.wave-2 > .shape-fill{
    fill: #a2d7ff;
}

/*  */
/* service */
/*  */

.service{
    padding: 40px 3% 60px;
    /* width: 95%; */
    margin: -45px auto -30px;
    background-color: #fff;
}
.service > h2{
    font-size: 3rem;
}
.service > p{
    font-size: 1.3rem;
    margin-top: 5px;
}
.service > ul{
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}
.service  > ul > li > a{
    text-decoration: none;
    color: #333;
}
.service > ul > li{
    width: 30%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    list-style: none;
}
.service > ul > li >a > img{
    width: 100%;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}
.service > ul > li > a > h3{
    font-size: 1.2rem;
    margin: 10px 0 5px;
}
.service > ul > li > a > p{
    font-size: .9rem;
    padding: 10px;
}
.service-list-content{
    padding: 15px;
}


/*  */
/* review */
/*  */

.review{
    background-color: #ff7900;
    position: relative;
}
.review > svg{
    margin-bottom: -2px;
    fill: #ff7900;
}
.review > svg > path{
    fill: #fff;
}
.review > svg >.shape-fill{
    fill: #ff7900;
}
.review-contents{
    padding: 80px 3% 20px;
    /* background-color: #ff7900; */
    max-width: 1100px;
    margin: 0 auto;
}
.review-contents > h2{
    font-size: 3rem;
    /* color: #fff; */
}
.review-contents > p{
    font-size: 1.2rem;
    /* max-width: 600px; */
    /* margin: 10px auto; */
    /* color: #fff; */
}
.review-contents > ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 20px;
    margin: 30px 0;
}
.review-contents > ul > li{
    list-style: none;
    width: 30%;
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    /* border-radius: 20px; */

}
.review-contents > ul > li > img{
    width: 100%;
    /* border-top-right-radius: 20px; */
    /* border-top-left-radius: 20px; */
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
.review-intro{
    display: flex;
    text-align: right;
    justify-content: right;
}
.review-intro > img{
    width: 40px;
    margin-left: 10px;
}
.review-intro > p{
    font-size: 1.3rem;
    margin-right: 10px;
    margin: auto 0;
}
.review-content{
    padding: 10px 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 276px;
}

.review > img{
    position: absolute;
    top: -1px;
    width: 120px;
    transform: rotate(-180deg);
    left:0;
    right:0;
    margin:0 auto;
}
.review > svg{

}


/*  */
/* flow */
/*  */
.work-flow{
    padding: 0 3%;
    margin-top: -80px;
    position: relative;
    background-color: #fff;
}
.work-flow > h2{
    color: #333;
    font-size: 3rem;
    text-align: center;
}
.work-flow > p{
    color: #333;
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}
.flow{
    max-width: 800px;
    width: 90%;
    margin: 20px auto;
    /* background-color: #fff; */
    padding-bottom: 70px;
}

.flow > li {
    position: relative;
    list-style: none;
  }
  .flow > li:not(:last-child) {
    margin-bottom: 40px;
  }
  .flow > li:not(:first-child)::before {
    content: "";
    height: 60px;
    display: block;
    border-left: 4px dotted #e5e5e5;
    position: absolute;
    top: -40px;
    left: -webkit-calc(10% + 30px - 2px);
    left: calc(10% + 30px - 2px);
    z-index: 10;
  }
  .flow > li dl {
    width: 100%;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid rgb(107,144,219);
    border-radius: 10px;
    position: relative;
    flex-direction: column;
  }
  .flow > li:not(:last-child) dl::before,
  .flow > li:not(:last-child) dl::after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .flow > li:not(:last-child) dl::before {
    border-width: 22px;
    border-top-color: rgb(107,144,219);
  }
  .flow > li:not(:last-child) dl::after {
    border-width: 20px;
    border-top-color: #fff;
  }
  .flow > li dl dt {
    font-size: 20px;
    font-weight: 600;
    color: rgb(107,144,219);
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    margin-right: 2vw;
    text-align: center;
  }
  .flow > li dl dt .icon {
    font-size: 12px;
    color: #fff;
    background: rgb(107,144,219);
    background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
    background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
    background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
    padding: 5px 10px;
    margin-bottom: 10px;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 5;
}


/*  */
/* CTA section */
/*  */

.cta-section{
    padding: 20px 3%;
    color: #fff;
}
.cta-section > h2{
    font-size: 2rem;
}
.cta-section > p{
    font-size: 1.2rem;
}
.cta-section > a{
    text-decoration: none;
    background-color: #333;
    color: #fff;
    border: #333 2px solid;
    border-radius: 20px;
    padding: 10px 50px;
    display: block;
    margin: 20px auto;
    width: fit-content;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.cta-section > a:hover{
    background-color: #fff;
    color: #333;
}

.cta-section {
    background: transparent;
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    /* filter: blur(2px); */
 }
 
 .cta-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-pic.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(2px);
    z-index: -1;
 }


 /*  */
 /* footer */
 /*  */

footer{
    background-color: #000000;
    color: #fff;
    padding: 30px 3%;
    display: flex;
    justify-content: center;
}
footer > .footer-left{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-left > a{
    text-decoration: none;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
}
.footer-left > ul{
    width: 100%;
    display: flex;
    justify-content: space-around;
    max-width: 250px;
    margin: 30px 0;
}
.footer-left > ul > li{
    list-style: none;
    /* width: 30%; */
    padding: 2px;
    border-radius: 6px;
    background-color: #fff;
    width: 50px;
    height: 50px;

}
.footer-left > ul > li > a >img{
    /* width: 100%; */
    width: 50px;
    height: 50px;
    margin: 3px;
}
footer > ul{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    padding: 50px 3%;
    max-height: 300px;
}
footer > ul > li{
    list-style: none;
}
footer > ul > li > a{
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
}
.copy-right{
    display: none;
}


/*  */
/*  */
/* service */
/*  */
/*  */

.service-main{
    background-color: #f5f5f5;
}
/*  */
/* service/hero */
/*  */
.service-hero{
    padding: 70px 3%;
    position: relative;
}
.service-hero > img{
    width: 100%;
    aspect-ratio: 16/7;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}
.service-hero > div{
    background-color: #ff8500;
    padding: 20px 40px;
    position: absolute;
    bottom: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #fff;
}
.service-hero > div > h2{
    font-size: 2rem;
    
}
.service-hero > div > p{
    font-size: 1.2rem;
}


/*  */
/* service-description */
/*  */

.service-description{
    margin: 30px 0;
    padding: 0 3%;
    /* display: flex; */
}
.service-description-main{
    display: flex;
    background-color: #fff;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    padding: 20px;
}
.service-description-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 3%;
}
.service-description-right{
    width: 50%;
    max-width: 600px;
    aspect-ratio: 16/9;
    object-fit: cover;
    height: fit-content;
    margin: auto 0;
}
.service-description-right > img{
    width: 100%;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}
.service-description-left > h3{
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    line-height: 1;
    color: #000000;
    font-size: 50px;
    text-shadow: 0px 20px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}
.service-description-left > p{
    margin-top: 30px;
    font-size: 1rem;
}

/*  */
/* features */
/*  */
.features{
    margin: 30px 0;
    padding: 0 3%;
}
.features-main{
    padding: 20px;
    background-color: #fff;
    box-shadow: 40px 50px 30px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    display: flex;
}
.features-left > h3{
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    line-height: 1;
    color: #000000;
    font-size: 50px;
    text-shadow: 0px 20px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    /* text-align: center; */
    margin: 30px 0;
    position: absolute;
    top: 0;
    left: 20px;
}
.features-left{
    width: 45%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
}
.features-right{
    width: 55%;
}
.features-right > ul{
    margin-top: 30px;
    max-width: fit-content;
    margin: 0 auto;
}
.features-left > p{
    width: 80%;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}
.features-right > ul > li{
    list-style: none;
    margin: 20px 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.features-right > ul > li > h4{
    background-color: #ff7900;
    color: #fff;
    padding: 5px 20px;
    width: fit-content;
    border-top-left-radius: 10px;

}
.features-right > ul > li > p{
    padding: 10px 20px;
    /* border: #000000 2px solid; */
    /* background-color: #f5f5f5; */

}
.features-left > img{
    aspect-ratio: 9/16;
    height: auto;
    object-fit: cover;
    max-height: 500px;
    margin: auto;
    max-width: 90%;
}

/*  */
/* service reivew */
/*  */

.service-review{
    background-color: #ff7900;
    padding: 40px 3%;
}
.service-review > h2{
    background-color: #f5f5f5;
    color: #ff7900;
    padding: 10px 90px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    width: fit-content;
    margin: 20px auto;
    font-size: 1.5rem;
    position: relative;
}
/* 影効果を作る擬似要素 */
.service-review > h2::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: 3px;
    bottom: 3px;
    background-color: #fff;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    z-index: -1;
}

.service-review > ul{
    display: flex;
    overflow-x: scroll;

}
.service-review > ul > li{
    list-style: none;
    background-color: #fff;
    padding: 20px 20px;
    margin: 0 20px;
    width: 340px;
}
.review-profile{
    display: flex;
}
.review-profile > img{
    width: 40px;
    height: 40px;
    display: block;
    margin: auto 20px auto 20px;

}
.review-profile-names > p{
    font-weight: 900;
    font-size: 1.1rem;
    color: #000000;
}
.review-profile-names > span{
    display: block;
    font-size: .9rem;
    color: #555;
}



/*  */
/* qanda */
/*  */
.service-qandq > h3{
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    line-height: 1;
    color: #000000;
    font-size: 50px;
    text-shadow: 0px 20px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    /* text-align: center; */
    margin: auto 50px auto 0;
    line-height: 1.3;
}
.service-qandq{
    padding: 20px 3%;
    display: flex;
    justify-content: center;
}
.qanda-main{
    max-width: 600px;
}
.qanda-main > ul > li{
    list-style: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 10px 20px;
}

.service-answer {
    display: none;
    margin-top: 5px;
    transition: all 0.3s ease;
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); */
}

.service-question {
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 20px;
}

.service-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    transition: transform 0.3s;
  }

.service-question.open::after {
    content: "−";
}

.cta-section {
    position: relative;
    color: #fff;
    padding: 100px 3%;
    text-align: center;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
  }
  
  .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-pic.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* ← これでも内部で固定に見える */
    z-index: -1;
    opacity: 0.3;
    pointer-events: none; /* ← 背景の上でもクリックが効くように */
  }
  

@media (max-width: 870px) {
    .hero{
        flex-direction: column;
        position: static;
        height: fit-content;
    }
    .hero > img{
        position: static;
        height: 90vh;
    }
    .hero > span {
        position: absolute;
        top: 30vh; /* 70vhの半分 = 画像の中央 */
        /* left: 50%; */
        left: 30%;
        transform: translate(-30%, -30%);
        z-index: 3;
        font-size: 4.5em;
        /* text-align: center; */
        color: #fff;
        /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
    }
    .hero-contents{
        width: 100%;
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
        padding: 20% 3% 6% 6%;
        /* background-color: #0c96ff; */
        margin-top: -30vh;
        position: static;
    }
    .service{
        position: relative;
        /* z-index: -1; */
    }


    /*  */
    /* about-us */
    /*  */
    .about-us > p{
        width: 100%;
        padding: 0 10px;
        font-size: 1.1rem;
    }

    /*  */
    /* service */
    /*  */
    .service > ul{
        flex-direction: column;
    }
    .service > ul > li{
        width: 90%;
        max-width: 350px;
        margin: 20px auto;
    }

    /*  */
    /* review */
    /*  */
    .review-contents > ul {
        display: flex;
        overflow: hidden;
        transition: transform 0.5s ease;
        flex-wrap: nowrap;
        width: 300%;
        justify-content: center; /* 中央配置 */
    }
    
    .review-contents > ul > li {
        flex: 0 0 calc(33.333% - 30px);
        width: calc(33.333% - 30px);
        flex-shrink: 0;
        margin: 0 15px;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .review-contents > ul > li > img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .slider-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .dot.active {
        background-color: #fff;
    }

    /*  */
    /* review */
    /*  */
    .review{
        /* padding-bottom: 100px; */
    }
    .review > svg{
        /* background-color: #fff; */
        margin-left: -100px;
    }
    .review > svg > path{
        fill: #fff;
    }

    /*  */
    /* work-flow */
    /*  */
    .work-flow{
        margin-top: 0;
    }
    .flow > li dl dt{
        margin-right: 0;
        flex-direction: column;
    }
    .flow > li dl dt .icon{
        width: fit-content;
        margin: 10px auto;
        padding: 5px 60px;
    }

    /*  */
    footer > .footer-left{
        width: 100%;
    }
    .footer-left > p{
        display: none;
    }
    footer{
        flex-direction: column;
    }
    .copy-right{
        display: block;
        text-align: center;
    }
    footer > ul > li{
        margin: 10px 0;
    }
}
@media (max-width: 700px) {
    .service-hero > div{
        padding: 10px 20px;
        bottom: 30px;
    }
    .service-hero > div > h2{
        font-size: 1.3rem;
    }
    .service-hero > div > p{
        font-size: .9rem;
    }
    .service-hero > img{
        height: 40vh;
        object-fit: cover;
    }
    .service-description{
        margin: 0 0 30px;
    }
    .service-description-main{
        flex-direction: column;
        border-radius: 10px;
    }
    .service-description-left{
        width: 100%;
    }
    .service-description-left > p{
        margin-top: 20px;
    }
    .service-description-right{
        width: 100%;
    }
    .service-description-right > img{
        height: 100%;
        border-radius: 10px;
    }
    .features-main{
        flex-direction: column;
        border-radius: 10px;
    }
    .features-left > img{
        display: none;
    }
    .features-right{
        width: 100%;
    }
    .features-left > h3{
        position: static;
        margin: 20px 0;
    }
    .service-review{
        padding: 20px 3% 40px;
    }
    .service-review > h2{
        padding: 10px 30px;
        text-align: center;

    }

    .service-qandq{
        flex-direction: column;
    }
    .service-qandq > h3{
        margin: 10px auto;
    }
}

/* 　　　　　　　　　　 */
/* 　　　　　　　　　　 */
/*　　　　共通ページ　　*/
/*　　　　　　　　　　  */
/* 　　　　　　　　　　 */
/*  　　　　　　　　　　*/

/*  */
/* star-rating */
/*  */
.star-rating {
    display: inline-block;
    font-size: 24px;
    color: #ddd;
    margin: 10px;
}

.star-rating .star {
    color: #ffd700;
}

.star-rating .star.half {
    position: relative;
    color: #ddd;
}

.star-rating .star.half::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffd700;
    width: 50%;
    overflow: hidden;
}

/*  */
/* レビュー */
/*  */
.carousel-container {
    max-width: 1020px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-track > li {
    flex: 0 0 320px;
    margin: 0 10px;
    box-sizing: border-box;
    background-color: #fff;
    list-style: none;
    padding: 20px;
    max-width: 320px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    background-color: #ccc;
    cursor: pointer;
}
.carousel-dots button.active {
    background-color: #000;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .carousel-track > li {
        flex: 0 0 45%;
    }
}
@media (max-width: 768px) {
    .carousel-track > li {
        flex: 0 0 80%;
    }
}
@media (max-width: 480px) {
    .carousel-track > li {
        flex: 0 0 100%;
    }
}



/* Buy Hover */
/*  */
/* Delete this when you make website */
/*  */
.buy-hover{
    position: fixed;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    flex-direction: column;
}
.buy-hover > span{
    display: block;
    margin: auto 0;
}
.buy-hover-btns{
    display: flex;
    width: fit-content;
    margin: 20px auto 10px;
}
.buy-hover-btns > a{
    background-color: #e3fc03;
    color: #1a1a1a;
    font-size: .9rem;
    display: block;
    padding: 10px 40px 10px 30px;
    width: fit-content;
    text-align: center;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    /* min-width: 160px; */
    position: relative;
    margin: auto 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}
.buy-hover-btns > a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 4px solid #000000;
    border-right: 4px solid rgb(0, 0, 0);
}
.buy-hover-btns > a:hover{
    background-color: #d4ed02;
    transform: translateY(-2px);
    transition: all .3s ease-in;
}
.buy-hover-btns > a.buy-hover-btns-back{
    background-color: #333;
    color: #fff;
    /* border: #1a1a1a 1px solid; */
}
.buy-hover-btns > a.buy-hover-btns-back::after{
    border-color: #fff;
}
@media (max-width: 600px) {
    .buy-hover{
        flex-direction: column;
    }
    .buy-hover > a{
        margin: 20px auto 0;
    }
    .buy-hover > span{
        font-size: .85rem;
    }
}