/*-----共通-----*/
html,
body{
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}
html { scroll-behavior: smooth;}
ul{
    list-style: none;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
}
img, .your-element {
    display: block;
}
img, .your-element {
    display: block;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wide-element {
    width: 100%;
    height: auto;
    display: block; 
}
.hidden {
    display: none;
}
p{
    font-size: 16px;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
h1,
h2,
h3,
h4{
    font-family: "Noto Sans JP", serif;
    font-weight: 700;
}
.sp{
    display: none;
}
@media (max-width: 768px){
    .sp{
        display: block;
        width: 100%;
    }
    .pc{
        display: none;
    }
}

/*-----アニメーション-----*/
@keyframes shine {
    0% { left: -150%; opacity: 0.6;}
    100% { left: 150%; opacity: 0.6;}
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1;}
    50% { transform: scale(1.02); opacity: 0.95;}
}

/*----- header -----*/
header{
    background-color: #fff;
    /* position: fixed; */
    width: 100%;
    z-index: 200;
    position: relative;
}
.header-content{
    width: 55%;
    margin: 0 auto;
    padding: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 0;
}
.header-content .logo{
    width: 60%;
}
.logo img{
    width: 100%;
}
.header-content .header-logo{
    width:50%;
}
.header-content a{
    width: 100%;
}
.header-btn_sp{
    width: 100%;
    position: relative;
    right: -24%;
}
.header-btn,
.header-btn_sp{
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    animation: pulse 0.7s infinite ease-in-out;
}
.header-btn::before,
.header-btn_sp::before{
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(-45deg);

    /* 5秒ごとにスムーズに動くように修正 */
    animation: shine 1s ease-in-out infinite;
    animation-delay: 0s; /* すぐに発動 */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
}
.header-btn:hover::before,
.header-btn:hover::before{
    animation: shine 1s ease-in-out infinite;
    animation-delay: 10s; /* 5秒ごとに発生 */
}
.header-btn img{
    width: 100%;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.hamburger-menu span {
    width: 2vw;
    height: 3px;
    background: #0281C7;
    border-radius: 20px;
    margin: 5px 0;
    transition: all 0.3s;
}
@media (max-width: 768px){
    .header-content{
        width: 90%;
        min-height: 60px;
    }
     .header-btn_sp img{
        display: block;
        width: 100%;
    }
    .header-content .logo{
        width: 100%;
    }
    header{
        position: static;
    } 
    .hamburger-menu span{
        width: 8vw;
        height: 5px;
    }
    .header-content a{
        width: 17%;
    }
}
/*----- ハンバーガーメニュー -----*/
.nav-menu {
    display: none; 
    position: absolute;
    top: 4vw;
    right: 0;
    width: 100%;
    background: #0281C7;
    padding: 20px;
    z-index: 100;
}
.nav-menu ul{
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
}
.nav-menu li {
    padding: 10px 0;
    border-bottom: 1px solid white;
    text-align: center;
    font-size: 20px;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.nav-menu a {
    color: white;
    text-decoration: none;
}
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}
@media screen and (min-width: 769px) {
    .nav-menu {
        position: fixed;
    }
}
@media (max-width: 1024px){
    .nav-menu li {
        font-size: 16px;
    }
}
@media (max-width: 900px){
    .nav-menu li {
        font-size: 14px;
    }
}
@media (max-width: 768px){
    .nav-menu{
        top: 10vw;
        padding-bottom: 10vw;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(15px) rotate(45deg);
    }    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-15px) rotate(-45deg);
    }
    .nav-menu ul{
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    .nav-menu li {
        font-size: 23px;
        padding: 30px 0;
    }
}
@media (max-width: 425px){
    .nav-menu{
        top: 17vw;
    }
    .nav-menu li {
        font-size: 18px;
    }
}

/*----- FV -----*/
.FV{
    width: 100%;
    /* margin-top: 7vh; */
    position: relative;
    z-index: 0;
}
.FV-content img{
    width: 100%;
}
.FV-content-btn {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    animation: pulse .7s ease-in-out infinite; /* 5秒ごとに拡大縮小 */
}
.FV-content-btn .FV-btn {
    position: relative;
    display: block;
    overflow: hidden;
}
.FV-content-btn .FV-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(-45deg);

    /* 5秒ごとにスムーズに動くように修正 */
    animation: shine 1s ease-in-out infinite;
    animation-delay: 0s; /* すぐに発動 */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
}
.FV-content-btn .FV-btn:hover::after{
    animation: shine 1s ease-in-out infinite;
    animation-delay: 10s; /* 5秒ごとに発生 */
}
.FV-btn img{
    width: 100%;
}

@media (max-width: 1024px){
    .FV{
        margin-top: 5.5vh;
    }
}
@media (max-width: 768px){
    .FV{
        margin-top: 0;
    }
    .FV-content-btn {
        top: 74%; /* SP向けに少し位置を調整 */
        width: 90%; /* SPではボタンを大きく */
        left: 5%;
        transform: translate(-50%, -50%);
    }

    .FV-content-btn .FV-btn::after {
        animation: shine 1s linear infinite; /* SPでも光る */
    }
    .FV-content-btn .FV-btn:hover::after{
        animation: shine 1s ease-in-out infinite;
        animation-delay: 10s; /* 5秒ごとに発生 */
    }
}

/*----- Attention -----*/
.attention{
    background-color: #fff;
}
.attention-content{
    width: 55%;
    margin: 0 auto;
}
.attention-title{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1.8vw;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 50px;
}
.attention-icon{
    margin-right: 20px;
    width: 8%;
}
.attention-icon img{
    width: 100%;
}
.attention-title img{
    width: 100%;
}
.attention-wrapper{
    display: flex;
    margin-bottom: 65px;
    margin-top: 15px;
    align-items: center;
}
.attention-wrapper p{
    font-size: 22px;
    line-height: 2;
}
.attention-img{
    width: 80%;
    margin-left: 20px;
}
.attention-img img{
    width: 100%;
}
.attention-wrapper.__sp{
    display: none;
}
.attention-wrapper p span{
    background-color: #fff;
    color: #FC2D50;
}
@media (max-width: 1440px){
    .attention-img{
        width: 100%;
    }
    .attention-wrapper p{
        font-size: 18px;
    }
    .attention-wrapper{
        align-items: end;
    }
}
@media (max-width: 1024px){
    .attention-wrapper p{
        font-size: 16px;
    }
}
@media (max-width: 768px){
    .attention-content{
        width: 90%;
    }
    .attention_back img{
        height: 20px;
    }
    .attention-wrapper{
        margin-bottom: 10px;
    }
    .attention-wrapper.__sp{
        display: block;
        margin-bottom: 0;
    }
    .attention-wrapper.__sp p{
        font-size: 3.8vw;
    }
    .attention-wrapper.__sp p span{
        background-color: #fff;
        color: #FC2D50;
    }
    .attention-title{
        font-size: 3.5vw;
        margin-top: 50px;
    }
    .attention-img{
        width: 50%;
    }
    .attention-wrapper.__sp .attention-wrapper_inner{
        display: flex;
    }
    .attention-img img{
        margin-top: 0;
    }
}
@media (max-width: 425px){
    .attention-title{
        margin-top: 20px;
    }
}
@media (max-width: 375px){
    .attention-title{
        margin-top: 30px;
    }
}

.attention-bottom{
    background-image: url(../img/SP/anshin_bg.jpg);
    margin-top: 20px;
    padding-bottom: 20px;
}

.attention-bottom img{
    width: 100%;
}
.attention-anshin{
    background-image: url(../img/PC/attention-anshin_fukidashi_pc.png);
    background-size: 100% 100%;
    background-position: center;
    padding: 34px 0 60px;
    min-height: 100px;
}
.attention-anshin img{
    width: 27%;
    margin: 0 auto;
}
.attention-bottom p{
    background-color: #fff;
    width: 55%;
    margin: 0 auto;
    padding: 30px 100px;
    border-radius: 10px;
    margin-top: 10px;
    position: relative;
    line-height: 29px;
    font-size: 18px;
}
.attention-bottom p span{
    color: #FC2D50;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 2px dotted #FC2D50; /* 点線の下線を追加 */
}
.attention-bottom p::after{
    content: "";
    display: block;
    width: 95px;
    height: 117px;
    background-image: url(../img/SP/dog.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 3%;   
    bottom: 2%; 
}

@media (max-width: 768px){
    .attention-anshin img{
        width: 87%;
        margin: 0 auto;
        margin-top: -15px;
    }
    .attention-anshin{
        padding: 10px 0;
        background-image: url(../img/SP/attention-anshin_fukidashi.png);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .attention-bottom p{
        background-color: #fff;
        width: 94%;
        margin: 0 auto;
        padding: 20px 16px 30px;
        border-radius: 10px;
        margin-top: 10px;
        position: relative;
        line-height: 29px;
        font-size: 16px;
    }
    .attention-bottom p::after{
        width: 85px;
        height: 107px;
    }
    .attention-bottom p span{
        color: #FC2D50;
        font-size: 19px;
        font-weight: 600;
        border-bottom: 2px dotted #FC2D50; /* 点線の下線を追加 */
        padding-bottom: 2px
        
    }
}


/*----- Achievements -----*/
.achievements{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}
.achievements-content{
    width: 45%;
    margin: 0 auto;
}
.achievements-wrapper{
    display: flex;
    padding: 3.91vh 0 20px 0;
    justify-content: space-around;
}
.achievements-img{
    width: 28%;
}
.achievements-img img{
    width: 100%;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));

}
.achievements-credit{
    /* background-color: #0281C7; */
    border-radius: 10px;
    padding: 20px 0 30px 0;
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    max-width: 1100px;
}
.achievements-credit img{
    width: 60%;
    margin: 0 auto;
}
.achievements-wrapper.__02{
    padding: 0 0 3.91vh 0;
    width: 100%;
    display: block;
}
.achievements-wrapper.sp{
    display: none;
}
.achievements-img.__03.sp{
    display: none;
}
@media (max-width: 768px){
    .achievements{
    
    }
    .achievements-content{
        width: 94%;
    }
    .achievements-wrapper.pc{
        display: none;
    }
    .achievements-wrapper.sp{
        display: flex;
    }
    .achievements-img.__03.sp{
        display: block;
    }
    .achievements-wrapper.sp .achievements-img,
    .achievements-img.__03{
        width: 44%;
    }
    .achievements-wrapper{
        padding-bottom: 10px;
        padding-top: 4vh;
    }
    .achievements-img.__03{
        margin: 0 auto;
        margin-bottom: 15px;
        position: relative;
        top: -13px;
    }
    .achievements-wrapper.__02{
        /* padding-bottom: 4vh; */
    }
    .achievements-credit{
        border-radius: 0;
        padding: 0;
        width: 90%;
    }
    .achievements-credit img{
        width: 100%;
    }
}

/*----- menu/price -----*/
.menu{
    background-image: url(../img/PC/menu-back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}
.menu-content{
    width: 55%;
    margin: 0 auto;
    padding: 3.91vw 0;
}
.menu-title-text{
    text-align: center;
    font-size: 2.5vw;
    color: #0281C7;
    margin-bottom: 3.13vw;
    letter-spacing: 2px;
}
.menu-title-icon{
    width: 5%;
    margin: 0 auto;
}
.menu-title-icon img{
    width: 100%;
}
.menu-wrapper01{
    display: flex;
    width: 100%;
    gap: 10px;
    justify-content: space-between
}
.menu-inner{
    /* width: 24%;
    margin-right: 1.04vw;
    background-color: white;
    border: 2px solid #0281C7;
    padding: 0.78vw;
    */
    border-radius: 11px;
    background-color: white;
    position: relative;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.menu-inner.__end{
    margin-right: 0;
}
.menu-inner-title{
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-inner-title{
    display: block;
    background-image: url(../img/SP/menu_tit_bg.png);
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 10px;
    border-radius: 11px 11px 0 0;
    overflow: hidden;
    text-align: center;
    max-height: 110px;
}
.menu-inner-title p{
    font-size: 15px;
    color: #fff;
}
.menu-inner-title-text{
    padding: 0.16vw;
}
.menu-inner-title-text span{
    color: #fced00;
    font-size: 21px;
    display: inline-block;
}
.menu-inner-title-text.__kitchen span{
    /* font-size: 19px; */
    display: inline-block;
}
.menu-inner-img{
    width: 100%;
}
.menu-inner-img img{
    width: 100%;
}
.menu-inner-price,
.menu-inner-list{
    display: flex;
    align-items: center;
}
.menu-inner-proce-icon,
.menu-inner-list-icon{
    margin-right: 5px;
}
.menu-inner-price{
    justify-content: center;
    margin-top: 5px;
}
.menu-inner-proce-icon{
    width: 20%;
}
.menu-inner-proce-icon img{
    width: 100%;
}
.menu-inner-proce-text,
.menu-inner-content-price p{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #FC2D50;
    font-size: 2.2vw;
}
.menu-inner-list{
    width: 100%;
    margin: 0 auto;
    margin-top: 5px;
    margin-left: 1vw;
}
.menu-inner-list-icon{
    width: 6%;
}
.menu-inner-list-icon img{
    width: 100%;
}
.menu-inner-list p,
.menu-inner-content-text p{
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}
.menu-wrapper02{
    background-color: white;
    margin-top: 40px;
    border-radius: 11px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.menu-wrapper02 .menu-inner_icon{
    width: 6%;
}
.menu-inner02{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}
.menu-inner-content-text,
.menu-inner-content-price{
    display: flex;
    align-items: center;
}
.menu-inner-content-img{
    width: 100%;
    margin-top: 1vw;
    margin-bottom: .5vw;
}
.menu-inner-content-img img{
    width: 100%;
}
.menu-inner-content-text{
    justify-content: center;
}
.menu-inner-content-price-img{
    width: 100%;
    margin-right: 10px;
}
.menu-inner-content{
    margin-right: .9vw;
    width: 24%;

}
.menu-wrapper02{
    position: relative;
}
.menu_dog{
    position: absolute;
    width: 95px;
    right: 10%;
    bottom: -15%;
}

.menu-inner_icon{
    width: 25%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -5%;

}
.menu-inner_icon img{
    width: 100%;
}
.menu-text-area{
    padding: 10px;
}
@media (max-width: 1735px){
    .menu-inner-title.__kitchen{
        display: block;
        text-align: center;
    }
}
@media (max-width: 1427px){
    .menu-inner-title.__toilet{
        display: block;
        text-align: center;
    }
}
@media (max-width: 1300px){
    .menu-inner-title.__bath,
    .menu-inner-title.__washroom{
        display: block;
        text-align: center;
    }

    .menu-inner-title-text span{
        font-size: 16px;
    }
    .menu-inner-title-text.__kitchen span{
        /* font-size: 14px; */
    }
    .menu-inner-list p,
    .menu-inner-title p,
    .menu-inner-content-text p{
        font-size: 12px;
    }
    .menu-inner-list{
        margin-left: 0;
    }
}
@media (max-width: 1024px){
    .menu-inner-content-price-img img{
        width: 30px;
    }
}
@media (max-width: 1000px){
    .menu-inner-title-text span{
        font-size: 14px;
    }
    .menu-inner-title-text.__kitchen span{
        /* font-size: 11px; */
    }
    .menu-inner-list p,
    .menu-inner-title p,
    .menu-inner-content-text p{
        font-size: 9px;
    }
    .menu-inner-list{
        margin-left: 0;
    }
}
@media (max-width: 768px){
    .menu{
        background-image: url(../img/SP/menu_bg.jpg);
        background-size: cover;
        background-position: top;
    }
    .menu-content{
        width: 90%;
        padding: 30vw 0 6vw;
    }
    .menu-title-icon{
        width: 8%;
    }
    .menu-title-text{
        font-size: 9vw;
        margin-bottom: 8.13vw;
    }
    .menu-wrapper01{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .menu-wrapper02{
        margin-top: 20px;
    }
    .menu-inner{
        width: calc(50% - 5px);
        border-radius: 11px;
        margin-bottom: 20px;
    }
    .menu-inner02{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 10px;
        padding: 0;
        padding-bottom: 20px;
    }
    .menu-inner-content{
        width: calc(50% - 20px);
    }
    .menu-inner{
        /* padding: 2vw; */
        margin-right: 0;
    }

    .menu-wrapper02 .menu-inner_icon{
        width: 12%;
    }
    .menu-inner-title{
        display: block;
        background-image: url(../img/SP/menu_tit_bg.png);
        background-repeat: repeat-x;
        padding-top: 20px;
        padding-bottom: 10px;
        border-radius: 11px 11px 0 0;
        overflow: hidden;
        text-align: center;
        max-height: 93px;
    }
    .menu-inner-title-text{
        width: 90%;
        margin: 0 auto;   
        text-align: center;
    }
    .menu-inner-title-text span{
        font-size: 3.6vw;
        line-height: 2.5rem;
    }
    .menu-inner-title-text.sp-only{
        width: 80%;
        margin: 0 auto;   
        text-align: center;
    }
    .menu-inner-title-text.sp-only span{
        font-size: 3.6vw;
    }
    .menu-inner-title p{
        font-size: 3vw;
        font-weight: 700;
        text-align: center;
        display: inline-block;
        margin-top: -20px;
    }
    .menu-inner-price{
        display: block;
    }
    .menu-inner-proce-text,
    .menu-inner-content-price p{
        font-size: 27px;
        text-align: center;
    }
    .menu-inner-list p,
    .menu-inner-content-text p{
        font-size: 2.5vw;
    }
    .menu-inner-list-icon{
        width: 6%;
    }
    .menu-inner-list-icon.__02{
        width: 4%;
    }
    .menu-inner-list{
        width: 70%;
    }
    .menu-inner-content-price{
        display: block;
    }
    .menu-inner-content-price-img{
        width: 59%;
    }
    .menu-inner-content-price.__last{
        position: relative;
        display: flex;
    }
}
@media (max-width: 425px){
    .menu-inner-title-text.sp-only{
        width: 100%;
    }
    .menu-inner-title-text.sp-only span{
        font-size: 6vw;
        letter-spacing: -0.1rem;
    }
    .menu-inner-title-text{
        width: 100%;
        display: inline;
    }
    .menu-inner-title-text span{
        font-size: 7vw;
        display: inline-block;
    }
    .menu-inner-title p{
        font-size: 5vw;
    }
    .menu-inner-proce-icon{
        width: 36%;
    }
    .menu-inner-list{
        width: 90%;
    }
    .menu-inner-list p,
    .menu-inner-content-text p{
        font-size: 3.7vw;
    }
    .menu-inner-list-icon.__02{
        width: 6%;
    }
}


/*----- cta -----*/
.cta{
    background-image: url(../img/PC/cta_back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.cta-content{
    width: 55%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1vw;
}
.cta-content-text{
    margin-top: -2.9vw;
    position: absolute;
    width: 100%;
}
@media screen and (min-width: 769px) {
    .cta-content-text{
        position: relative;
        width: 50%;
    }
}
.cta-content-text img{
    width: 100%;
}
.cta-content-btn{
    width: 43%;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    animation: pulse 0.7s infinite ease-in-out;
}
.cta-content-btn.pc{
    position: relative;
    top: -10px;
}
.cta-content-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(-45deg);

    /* 5秒ごとにスムーズに動くように修正 */
    animation: shine 1s ease-in-out infinite;
    animation-delay: 0s; /* すぐに発動 */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
}
.cta-content-btn:hover::before{
    animation: shine 1s ease-in-out infinite;
    animation-delay: 10s; /* 5秒ごとに発生 */
}
.cta-content-btn img{
    width: 100%;
}

@media (max-width: 1280px){
.cta-content-btn.pc{
    position: relative;
    top: -5px;
}
}


@media (max-width: 768px){
    .cta{
        background-image: url(../img/SP/cta-back_sp.png);
        height: 199px;
    }
    .cta-content{
        width: 100%;
        display: block;
        padding: 5vw 0;
        position: relative;
    }
    .cta-content-text{
        width: 100%;
        position: absolute;
        left: 0;
        top: -42%;
    }
    .cta-content-btn{
        width: 92%;
        margin: 0 auto;
        margin-top: 88px;
    }
}

/*----- reason -----*/
.reason{
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/PC/reason_bg_pc.png);
}
.reason-content{
    width: 55%;
    margin: 0 auto;
    padding: 3.91vw 0;
}
.reason-title-icon{
    width: 5%;
    margin: 0 auto;
}
.reason-title-icon img{
    width: 100%;
}
.reason-title{
    width: 84%;
    margin: 0 auto;
    text-align: center;
}
.reason-title img{
    display: inline;
    width: 50%;
}
.reason-title-text{
    text-align: center;
    font-size: 2.5vw;
    color: #0281C7;
    margin-bottom: 3.13vw;
    letter-spacing: 2px;
}
.reason-wrapper01{
    display: flex;
    justify-content: space-between;
}
.reason-wrapper02{
    display: flex;
    justify-content: center;
    margin-top: 3vw;
}
.reason-inner{
    background: white;
    width: 35%;
    border: 1px solid #0281C7;
    padding: 1.04vw;
    position: relative;
    text-align: center;
    margin-right: 3vw;
    box-sizing: border-box;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
.reason-inner.__end{
    margin-right: 0;
}
.reason-inner-number{
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
}
.reason-inner-number img{
    width: 45%;
}
.reason-inner-img{
    width: 100%;
}
.reason-inner-img img{
    width: 100%;
}
.reason-inner-text{
    margin-top: 1vw;
}
.reason-inner-text p{
    text-align: left;
    margin-top: .5vw;
    line-height: 2;
}
.reason-inner-text-title{
    font-size: 25px;
    color: #FC2D50;
}
.pricing-row{
    display: flex;
    width: 100%;
    margin: .5vw 0;
    border: 1.5px solid #0281C7;
    align-items: center;
}
.pricing-row .label{
    width: 30%;
    background-color: #0281C7;
    color: white;
    margin-right: 1vw;
    padding: .3vw;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
}
.pricing-row .price{
    color: #0281C7;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
}
@media (max-width: 1400px){
    .pricing-row .label{
        width: 40%;
    }
}
@media (max-width: 1300px){
    .reason-inner-text-title{
        font-size: 17px;
    }
    .reason-inner-text p{
        font-size: 14px;
    }
}
@media (max-width: 1024px){
    .middle{
        display: none;
    }
    .pricing-row .label{
        width: 40%;
    }
}
@media (max-width: 768px){
    .reason{
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(../img/SP/reason_bg_sp.png);
    }
    
    .reason-content{
        width: 90%;
        padding: 9vw 0;
    }
    .reason-wrapper01,
    .reason-wrapper02{
        display: block;
    }
    .reason-title-text{
        font-size: 7vw;
        margin-bottom: 5.13vw;
        line-height: 1;
    }
    .reason-title-text span{
        font-size: 11vw;
    }
    .reason-title-icon{
        width: 8%;
        margin-bottom: 4vw;
    }
    .reason-inner{
        width: 100%;
        margin: 3vw 0;
        padding: 5vw;
    }
    .reason-inner-text-title{
        font-size: 5vw;
    }
    .reason-inner-text p{
        font-size: 2.5vw;
    }
    .pricing-row .price,
    .pricing-row .label{
        font-size: 2.5vw;
    }
    .reason-inner-number img{
        width: 30%;
    }
    .reason-title img{
        display: inline;
        width: 86%;
    }
}
@media (max-width: 425px){
    .reason-inner-text-title{
        font-size: 6vw;
    }
    .reason-inner-text p{
        font-size: 3.9vw;
    }
    .pricing-row .price,
    .pricing-row .label{
        font-size: 3.9vw;
    }
    .pricing-row{
        margin: 1vw 0;
    }
    .reason-inner-text p{
        margin-top: 2vw;
    }
    .reason-inner-text{
        margin-top: 3vw;
    }
}

/*----- flow -----*/
.flow{
    background-image: url(../img/SP/flow_bg_sp.jpg);
    background-size: cover;
    padding-bottom: 2vw;
}

.flow_tit_copy{
    width: 100%;
}
.flow-content{
    width: 65%;
    margin: 0 auto;
    padding: 3.91vw 0 1vw;
    max-width: 1100px;
}
.flow-title-icon{
    width: 5%;
    margin: 0 auto;
}
.flow-title-icon img{
    width: 100%;
}
.flow-title-text{
    width: 50%;
    margin: 0 auto;
    margin-bottom: 4vw;
}
.flow-title-text img{
    width: 100%;
}
.flow-wrapper01{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flow-wrapper02{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5vw;
}
.flow-inner{
    display: flex;
    align-items: center;
    width: 31%;
    height: 150px;
    background-color: white;
    padding: 1vw;
    border-radius: 10px;
    position: relative;
    border: solid 2px #0082CA;
}
.flow-inner_step{
    position: absolute;
    width: 40px;
    left: 2%;
    top: -20%;
    z-index: 0;
}
.flow-inner_step img{
    width: 100%;
}
.flow-inner.__02{
    margin-right: 2vw;
}
/* .flow-inner::after{
    content: "";
    height: 7px;
    width: 40%;
    background-color: #0281C7;
    position: absolute;
    left: 100%;
} */
.flow-inner.__end::after{
    display: none;
}
.flow-inner-img{
    width: 30%;
}
.flow-inner-img img{
    width: 100%;
}
.flow-inner-text{
    width: 70%;
    margin-left: .5vw;
}
.flow-inner-text h4{
    font-size: 1.04vw;
    color: #FC2D50;
}
.middle{
    display: none;
}
.flow-msg{
    width: 90%;
    padding: 12vw 0;
    margin: 0 auto;
    border: solid 1px #FC2D50;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    max-width: 1000px;
    background-color: #fff;
}
.flow-msg p{
    font-size: 15px;
    color: #FC2D50;
}
.flow-msg p span{
    background-color: #FC2D50;
    color: #fff;
    padding: 0px 5px;
}
.flow-msg img{
    width: 70px;
}

.flow-inner::after{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 18px solid #0082CA;
    border-bottom: 0;
    position: absolute;
    bottom: 40%;
    right: -40px;
    transform: rotate(-90deg);
}
@media (max-width: 1300px){
    .flow{
        background-color: #E9F9FF;
        padding-bottom: 4vw;
    }
    .flow-inner-text h4{
        font-size: 17px;
    }
    .flow-inner-text p{
        font-size: 14px;
    }
}
@media (max-width: 1024px){
    .flow-inner-text p{
        letter-spacing: 1px;
    }
    .middle{
        display: block;
    }
}
@media (max-width: 768px){
    .flow-content{
        width: 90%;
        padding: 8vw 0 3vw;
    }
    .flow-title-text{
        width: 80%;
        margin: 0 auto;
        margin-bottom: 8vw;
    }
    .flow-title-text img{
        width: 100%;
    }
    .flow-title-icon{
        width: 8%;
    }
    .flow-wrapper01,
    .flow-wrapper02{
        display: block;
    }
    .flow-inner{
        width: 100%;
        justify-content: center;
        justify-content: flex-start;
        margin: 5vw 0 8vw;
        height: auto;
        padding: 0;
        padding: 10px;
    }
    .flow-inner::after{
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 20px solid transparent;
        border-left: 20px solid transparent;
        border-top: 18px solid #0082CA;
        border-bottom: 0;
        position: absolute;
        bottom: -20px;
        right: 43%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: rotate(0deg);
    }
    .flow-inner.__end{
        margin-bottom: 0;
    }
    .flow-inner-img{
        width: 40%;
        position: relative;
    }
    .flow-inner-img.__end::after{
        content: "";
        height: 0;
        width: 0;
    }
    .flow-inner-text{
        width: 63%;
    }
    .flow-inner-text h4{
        font-size: 5vw;
        margin-top: 3px;
    }
    .middle{
        display: none;
    }
    .flow-inner-text p{
        font-size: 2.7vw;
    }
    .flow-inner-text{
        margin-left: 4vw;
    }
    .flow-inner.__02{
        margin-right: 0;
    }
    .flow-inner_step{
        position: absolute;
        width: 30px;
        left: 2%;
        top: -20%;
        z-index: 1;
    }
    .flow-msg p{
        font-size: 16px;
    }
}
@media (max-width: 425px){
    .flow-inner-text p{
        font-size: 3.9vw;
    }
    .flow-inner-text h4{
        font-size: 5vw;
    }
}

/*----- reviews -----*/
.reviews{
    background-image: url(../img/SP/review_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}
.reviews-content{
    width: 55%;
    margin: 0 auto;
    padding: 3.91vw 0;
}
.reviews-title{
    width: 55%;
    margin: 0 auto;
    margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
    .reviews-title{
        width: 35%;
    }
}
.reviews-title img{
    width: 100%;
}
.reviews-title-icon{
    width: 5%;
    margin: 0 auto;
}
.reviews-title-icon img{
    width: 100%;
}
.reviews-title-text{
    text-align: center;
    font-size: 2.5vw;
    color: white;
    margin-bottom: 3.13vw;
    letter-spacing: 2px;
}
.reviews-wrapper01,
.reviews-wrapper02{
    display: flex;
    justify-content: center;
    gap: 1.5vw;
}
.reviews-wrapper02{
    margin-top: 1.5vw;
}
.reviews-inner{
    width: 50%;
    background-color: #fff;
    /* margin-right: 1.5vw ; */
    padding: 1vw;
    
}
/* .reviews-inner .slick-active{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
} */
.reviews-inner.__end{
    margin-right: 0;
}
.reviews-inner-title{
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}
.reviews-inner-title-img-content{
    display: flex;
    align-items: center;
    width: 38%;
}
.reviews-inner-title h4{
    width: 90%;
    color: #fff;
    background-image: url(../img/SP/review_tag.png);
    background-size: 100% 100%;
    min-height: 40px;
    font-size: 1.04vw;
    padding-left: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}
.reviews-inner-title-img{
    width: 20%;
}
.reviews-inner-title-img img{
    width: 100%;
}
.reviews-inner-title-img-content p{
    margin-left: .5vw;
    font-size: 13px;
    color: #0281C7;
}
.reviews-inner-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: .5vw; */
}
.reviews-inner-text.--handwriting{
    flex-direction: column;
}
.reviews-inner-text.--handwriting .reviews-inner-text-img{
    width: 97%;
    margin-right: 0vw;
    margin: 0 auto;
    margin-top: 10px;
}
.reviews-inner-text-img{
    width: 10.94vw;
    margin-right: 1vw;
}
.reviews-inner-text-img img{
    width: 10.94vw;
}
.reviews-inner-text.--handwriting .reviews-inner-text-img img{
    width: 100%;
}
.reviews-inner-text p{
    line-height: 1.5;
    font-size: 15px;
}

.reviews-inner-text-msg img{
    width: 100%;
    margin-top: 20px;
}

@media screen and (min-width: 769px) {
    .reviews-slider{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1.5vw;
    }
    .reviews-inner{
        width: calc(50% - 1vw);

    }

}

.middle{
    display: none;
}
@media (max-width: 1300px){
    .reviews-inner-title h4{
        font-size: 17px;
    }
    .reviews-inner-text p{
        font-size: 13px;
    }
}
@media (max-width: 1024px){
    .middle{
        display: block;
    }
    .reviews-inner-text-img{
        width: 12vw;
    }
    .reviews-inner-text-img img{
        width: 12vw;
    }
}
@media (max-width: 768px){
    .reviews-content{
        width: 94%;
        padding: 12vw 0;
    }
    .reviews-title-text{
        font-size: 7vw;
        margin-bottom: 3.13vw;
    }
    .reviews-title-icon{
        width: 8%;
    }
    .reviews-inner{
        width: 100%;
        padding: 4vw 5vw;
        /* margin: 3vw 4.8vw; */
    }
    .reviews2 .reviews-inner{
        height: auto;
    }

    .reviews2 .reviews-inner .--inner{
    }
    .middle{
        display: none;
    }
    .reviews-inner-title{
        display: block;
    }
    .reviews-inner-text{
        display: block;
    }
    .reviews-inner-title h4{
        width: 100%;
        font-size: 3vw;
        line-height: 27px;
    }
    
    .reviews-inner-text-img img{
        width: 100%;
    }
    .reviews-inner-title-img-content{
        width: 100%;
        margin: 2vw 0 0;
        margin-left: 4vw;
    }
    .reviews-inner-title-img{
        width: 10%;
    }
    .reviews-inner-title-img img{
        width: 120%;
    }
    .reviews-inner-title-img-content p{
        font-size: 3vw;
        margin-left: 4vw;
    }
    .reviews-inner-text-img{
        width: 100%;
    }
    .reviews-inner-text p{
        font-size: 2.7vw;
        margin-top: 2vw;
        line-height: 2;
    }
    .slick-dots{
        bottom: -40px;
    }
    .slick-dots li button {
        width: 10px;
        height:  10px;
        background:  #fff; /* 背景色は透明に */
        border: 1px solid #0082CA; /* ボーダーの太さと色を指定 */
        border-radius: 50%;       /* 丸くしたい場合 */
        padding: 0px;            /* ボーダーと中身の余白 */
    }
    .slick-dots li.slick-active button {
        background:  #0082CA; 
        border: 1px solid #fff; 
    }
    
    .slick-arrow {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .slick-prev, .slick-next {
        width: 51px; 
        height: 51px; 
        z-index: 1000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer; 
    }
    .slick-prev {
        left: -1px;
        background: url('../img/SP/left-arrow.png') no-repeat center center;
        background-size: contain !important;
    }
    .slick-next {
        right: -1px; 
        background: url('../img/SP/right-arrow.png') no-repeat center center;
        background-size: contain !important;
    }
    .slick-prev:before, 
    .slick-next:before {
        display: none !important;
    }
    .slick-prev:focus,
    .slick-prev:hover,
    .slick-prev:active{
        background: url('../img/SP/left-arrow.png') no-repeat center center !important;
        background-size: contain !important;
        opacity: 1 !important;
    }
    .slick-next:focus,
    .slick-next:hover,
    .slick-next:active{
        background: url('../img/SP/right-arrow.png') no-repeat center center !important;
        background-size: contain !important;
        opacity: 1 !important;
    }
    .slick-list{
        overflow: hidden !important;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.slick-dots li button::before {
    content: "";
}
}
    
@media (max-width: 425px){
    .reviews-inner-title h4{
        font-size: 4.5vw;
        padding: 1.5vw;
        padding-left: 6vw;
    }
    .reviews-inner-title-img-content p{
        font-size: 4vw;
    }
    .reviews-inner-text p{
        font-size: 3.9vw;
    }
    .reviews-inner{
        height: 128vw;
    }
    .slick-prev, .slick-next{
        width: 31px;
        height: 31px;
    }
}

/*----- strengths -----*/
.strengths{
    background-image: url(../img/PC/achievements-back.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}
.strengths-content{
    width: 55%;
    margin: 0 auto;
    padding: 3.91vw 0;
}
.strengths-title{
    max-width: 738px;
    width: 64%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.strengths_man{
    position: absolute;
    width: 20%;
    right: 0;
    bottom: 0;
}
.strengths-title img{
    width: 100%;
}
.strengths-title-text{
    background-color: #06B4FA;
    padding: .5vw 3vw;
    margin-right: 2vw;
}
.strengths-title-text.__end{
    margin-right: 0;
}
.strengths-title-text span{
    color: white;
    display: inline-block;
    transform: rotate(-5deg);
}
.strengths-wrapper-content{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: white;
    padding: 1vw 0;
    position: relative;
}
.strengths-wrapper-content p{
    font-size: 2vw;
    font-weight: 600;
}
.strengths-wrapper-content-logo{
    width:36%;

}
.strengths-wrapper-content-logo img{
    width: 100%;
}

.strengths-inner{
    display: flex;
    justify-content: space-between;
    width: 82%;
    margin: 0 auto;
    margin-top: 1.5vw;
}
.strengths-inner-content{
    width: 28%;
}
.strengths-inner-content img{
    width: 100%;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
.strengths-inner.sp{
    display: none;
}

@media (max-width: 1600px){
    .strengths-title{
        margin-left: 0;
        margin-right: auto;
        width: 76%;
    }
    .strengths-wrapper-content{
        justify-content: flex-start;
        padding-left: 30px;
    }
    
}
@media (max-width: 768px){
    .strengths-content{
        width: 100%;
        padding: 9vw 0;
    }
    .strengths-title{
        width: 70%;
        margin: 0 auto;
    }
    .strengths-title img{
        width: 100%;
    }
    .strengths-wrapper-content{
        display: block;
        margin: 0 auto;
        padding: 4vw 0 4vw;
    }
    .strengths-wrapper-content-logo{
        margin: 0 auto;
        width: 60%;
    }
    .strengths-wrapper-content p{
        font-size: 4vw;
        text-align: center;
    }
    .strengths-inner.pc{
        display: none;
    }
    .strengths-inner.sp{
        display: flex;
        justify-content: space-around;
        width: 94%;
        margin-top: 5vw;
    }
    .strengths-inner-content{
        width: 44%;
    }
    
    .strengths-inner-content.sp.__end{
        width: 44%;
        margin: 0 auto;
        position: relative;
        top: -13px;
    }

    .strengths_man{
        position: absolute;
        width: 30%;
        right: 0;
        bottom: 0;
    }
    .strengths-wrapper-content-logo img{
        width: 100%;
    }
}
@media (max-width: 425px){
    .strengths-wrapper-content-logo{
        width: 63%;
        margin-left: 10px;
    }
    .strengths-wrapper-content p{
        font-size: 7.1vw;
        font-weight: 700;
        width: 80%;
    }
    .strengths-title{
        font-size: 8vw;
    }
    .strengths-wrapper-content{
        margin-top: 8vw;
    }
}

/*----- question -----*/
.question{
    background-image: url(../img/SP/question_bg_sp.jpg);
    background-size: cover;
}
.question-content{
    width: 55%;
    margin: 0 auto;
    padding: 3.91vw 0;
}
.question-title-icon{
    width: 5%;
    margin: 0 auto;
}
.question-title-icon img{
    width: 100%;
}
.question-title-text{
    text-align: center;
    font-size: 2.5vw;
    color: black;
    margin-bottom: 3.13vw;
    letter-spacing: 2px;
}
.question-title-text span{
    color: #0281C7;
}
.question-wrapper{
    width: 100%;
    height: 9vw;
    margin-bottom: 2vw;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.question-wrapper-Q{
    display: flex;
    align-items: center;
    background-color: #0281C7;
    padding: .3vw .5vw;
}
.question-wrapper-Q h2{
    color: #fced00;
    margin-right: .5vw;
    font-size: 24px;
    margin-top: -.3vw;
}
.question-wrapper-Q h3{
    color: white;
    font-weight: 500;
    letter-spacing: 1.5;
    font-size: 16px;
}
.question-wrapper-A{
    padding: .7vw 2vw;
}
@media (max-width: 1300px){
    .question-wrapper-Q h3,
    .question-wrapper-A p{
        font-size: 14px;
    }
    .question-wrapper-Q h2{
        font-size: 20px;
    }
}
@media (max-width: 1024px){
    .question-wrapper{
        height: 11vw;
    }
}
@media (max-width: 768px){
    .question-content{
        width: 90%;
        padding: 12vw 0;
    }
    .question-title-text{
        font-size: 8vw;
        margin-bottom: 3.13vw;
    }
    .question-title-icon{
        width: 8%;
    }
    .question-wrapper{
        height: auto;
        margin-bottom: 3vw;
    }
    .question-wrapper-Q h2{
        font-size: 3vw;
    }
    .question-wrapper-Q h3{
        font-size: 2.7vw;
    }
    .question-wrapper-A{
        padding: 4vw;
    }
    .question-wrapper-A p{
        font-size: 2.7vw;
    }
    .question-wrapper-Q{
        padding: .8vw 1vw;
    }
}
@media (max-width: 425px){
    .question-wrapper-Q h2{
        font-size: 4.2vw;
    }
    .question-wrapper-Q h3,
    .question-wrapper-A p{
        font-size: 3.9vw;
        line-height: 1.8;
    }
    .question-wrapper-Q{
        padding: 2.5vw 3vw;
    }
}

/*----- erea -----*/
.erea{
    background-image: url(../img/PC/erea-back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}
.erea-content{
    width: 55%;
    margin: 0 auto;
    padding: 3.91vw 0;
}
.erea-title-icon{
    width: 5%;
    margin: 0 auto;
}
.erea-title-icon img{
    width: 100%;
}
.erea-title-text{
    text-align: center;
    font-size: 2.5vw;
    color: #0281C7;
    margin-bottom: 3.13vw;
    letter-spacing: 2px;
}
.erea-wrapper{
    background-color: white;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%);
    filter: drop-shadow(30px 30px 5px rgba(0, 0, 0, 0.3));
    padding: 4vw 2vw;

}
.erea-wrapper-img{
    width: 45%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.erea-wrapper-img img{
    width: 76%;

}
.erea-wrapper-text h4{
    font-size: 18px;
    background-color: #0281C7;
    color: white;
    width: 50%;
    border-radius: 20px;
    text-align: center;
    margin-bottom: .5vw;
}
.erea-wrapper-text p{
    margin-bottom: 1vw;
    letter-spacing: 1.5px;
}
.erea-wrapper-text__end{
    margin-bottom: 0 !important;
}

.erea-wrapper-img img.erea_dog{
    width: 79px;
}
.erea_point ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.erea_point ul li{
    background-color: #FCEB0C;
    border-radius: 12px;
    font-size: 16px;
    color: #0082CA;
    font-weight: 600;
    text-align: center;
    /* padding: 10px; */
    justify-content: center;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 107px;
    width: 32%;
    line-height: 1.5rem;
    margin-bottom: 20px;
    font-family: "Noto Sans JP", serif;
}
.erea_point ul li span{
    font-size: 21px;
}
.erea_point ul li img{
    max-width: 56px;
    margin-bottom: 5px;
}

.p-area__content{
    width: 50%;
}

@media (max-width: 1300px){
    .erea-wrapper-text p{
        font-size: 14px;
    }
}
@media (max-width: 768px){
    .erea-content{
        width: 94%;
        padding: 12vw 0;
    }
    .erea-title-text{
        font-size: 7vw;
        margin-bottom: 3.13vw;
    }
    .erea-title-icon{
        width: 8%;
    }
    .erea-wrapper{
        display: block;
    }
    .erea-wrapper-img{
        position: relative;
        padding-bottom: 40px;
        width: 93%;
    }
    .erea-wrapper-img img{
        width: 100%;
    }
    .erea-wrapper-text p{
        font-size: 2.7vw;
        margin-bottom: 3vw;
    }
    .erea-wrapper-text h4{
        font-size: 3.5vw;
    }
    /* .erea-wrapper-img img.erea_dog{
        width: 79px;
        position: absolute;
        bottom: 5%;
        left: 10%;
    } */
    .p-area__content{
        width: 100%;
    }
    
}
@media (max-width: 425px){
    .erea-wrapper-img img{
        width: 80%;
    }
    .erea-wrapper-text p{
        font-size: 3.9vw;
        margin-bottom: 5vw;
    }
    .erea-wrapper-text h4{
        font-size: 4.5vw;
    }
    .erea-wrapper{
        padding: 6vw;
    }
}



.f-accordion__head {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-accordion__icon{
    /* width: 10%; */
    margin-right: 2rem;
}
.f-accordion__head p{
    position: relative;
}

@media (max-width: 768px) {
    .f-accordion__head {
        align-items: flex-start;
    }
    .f-accordion__head p{
        padding: 0;
    }
    .f-accordion__icon{
        width: 34px;
        margin-right: 1rem;
    }
}


/*
    アコーディオンの開閉ボタン
*/
.f-accordion__head::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.4s;
}

.f-accordion__head::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.4s;
}

.f-accordion__item.active .f-accordion__head::before {
    opacity: 0;
}
.f-accordion__item.active .f-accordion__head::after {
    transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 768px) {
.f-accordion__head::before {
    width: 13px;
    height: 2px;
    right: 20px;
}

.f-accordion__head::after {
    width: 13px;
    height: 2px;
    right: 20px;
}
}
.f-accordion__body {
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: all .2s ease;
    position: relative;
}
.f-accordion__item.active .f-accordion__body {
    height: auto;
}

.p-area__list__head{
background-color: #06B4FA;
color: #fff;
text-align: center;
height: 55px;
border-radius: 100vh;
font-size: 20px;
margin-bottom: 10px;
font-family: "Noto Sans JP", serif;
}

.p-area__list.active .p-area__list__body {
    font-size: 16px;
    font-family: "Noto Sans JP", serif;
}
.p-area__list.active .p-area__list__body ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 92%;
    margin: 0 auto;

}
.p-area__list.active .p-area__list__body ul li{
    width: 28%;
}
.p-area__list{
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .p-area__list__head{
        height: 43px;
        font-size: 18px;
        line-height: 43px;
        margin-bottom: 0px;
        }
    .p-area__list.active .p-area__list__body {
        padding-top: 6px;
        margin-top: 5px;
        font-size: 14px;
    }
    .p-area__list{
        margin-bottom: 16px;
    }
    
}

.follow-cta{
    position: fixed;
    display: block ;
    bottom: 0;
    left: 0;
    background-color: #F15A24;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0px -3px 13px rgba(0, 0, 0, 0.2);
}
.follow-cta-content.pc{
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    width: 80%;
    position: relative;
}
.follow-cta-content.pc .follow_text_pc{
    width: 40%;
}
.follow-cta-content.pc img.follow_dog{
    position: absolute;
    right: -8%;
    bottom: 0%;
    width: 102px;
}
.follow-cta-content.pc .c-tel_btn_wrapper{
    width: 45%;
}

.follow-cta-content .c-tel_btn_wrapper img{
   width: 6%;
   margin-top: -6px;
}

@media (max-width: 768px){
    .follow-cta{
        width: 100%;
        z-index: 10000;
        cursor: pointer;
        transition: opacity 0.5s ease;
        background-color: #F15A24;
        padding: 0;
    }
    .follow-cta:hover{
        opacity: .8;
    }
    .follow-cta-content{
        width: 100%;
        display: block ;
        position: relative;
    }
    .follow-cta-content.pc{
        display: none;
    }
    .follow-cta-content img{
        width: 100%;
    }
    .follow-cta-content a img{
        animation: pulse 0.7s infinite ease-in-out;
    }
    .follow-cta-btn-sp img{
        width: 88%;
    }
    .follow-cta-content{
        padding: 4px 15px 1px;
    }
    .follow-cta-content p{
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 1px;
        font-weight: 700;
    }
    .follow-cta-content span{
        color: #ffff00;
        font-size: 18px;
        font-weight: 600;
    }
    .follow-cta-content span.--price{
        color: #ffff00;
        font-size: 18px;
        font-family: Inter, sans-serif;
        font-weight: 600;
    }
    .follow-cta-content p b{
        color: #ffff00;
        font-size: 23px;
        font-weight: 600;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    img.follow_dog{
        position: absolute;
        right: -6%;
        bottom: 20%;
        width: 69px;
    }
    .follow-cta-content p.follow_24h{
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .follow-cta-content p.follow_24h span{
        text-align: right;
        font-size: 12px;
        font-weight: 600;
    }
    .follow-cta-content p.follow_24h span b{
        font-size: 14px;
        font-weight: 600;
        /* font-family: Inter, sans-serif;
        font-weight: 600; */
    }
    .follow_24h::before{
        content: "";
        background-image: url(../img/SP/24harrow.png);
        background-size: contain;
        background-repeat: no-repeat;
        position: relative;
        width: 43px;
        height: 15px;
        display: inline-block;
        background-color: #F15A24;
    }
    .follow-cta-content.sp{
        width: 94%;
    }
    .follow-cta-content .c-tel_btn_wrapper img{
    width: 6%;
    margin-top: -5px;
    }
}




/*----- footer -----*/
footer{
    background-color: #ffffff;
    text-align: center;
    padding: 2vw 0;
    padding-bottom: 10vw;
}
footer img{
    display: inline-block;
}
footer p{
    color:  #000;
    text-align: center;
    font-size: 12px;
}
@media (max-width: 768px){
    footer{
        margin-bottom: 33vw;
        text-align: center;
        padding: 5vw 0;
    }
}

.note{
    font-size: 12px;
    text-indent: -1.5rem;
    margin-left: 1.5rem;
}

.note_wrap{
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    max-width: 1000px;
}

.menu .note_wrap{
    margin: 0 auto;
    margin-top: -50px;
    width: 55%;
}
.menu{
    padding-bottom: 100px;
}

@media (min-width: 769px){
    .flow .note{
        text-align: center;
    }
}
@media (max-width: 768px){
    .menu .note_wrap{
        margin-top: 0px;
        width: 90%;
    }
    .menu{
        padding-bottom: 50px;
    }
}


/* --------promise-------- */
.promise{
    /* padding-bottom: 20px; */
}
.promise img{
    width: 30%;
    margin: 0 auto;
}
@media (max-width: 768px){
    .promise img{
        width: 100%;
    }
}

.training{
    background-image: url(../img/SP/training_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 50px;
}
.training_tit{
    margin-top: -15px;
    position: relative;
}
.training_tit h2{
    background-color: #0082CA;
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 40px 0 40px;
}
.training_tit h2 span{
    font-size: 30px;
    border-bottom: solid 3px #ffff00;
    line-height: 2rem;
}

.training_tit__look{
    position: absolute;
    text-align: center;
    width:8%;
    margin: 0 auto;
    top: -16%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.training_tit__look img{
    display: inline;
    width: 100%;
}
.training__content{
    width: 55%;
    margin: 0 auto;
    margin-top: 20px;
    padding-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.training__content__list{
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    min-height: 256px;
}
.training__content__list p{
    font-size: 15px;
}
.training__content__list h3{
    display: flex;
    align-items: center;

}
.training__content__list h3 img{
    margin-right: 10px;
}
.training__content__list .training_img{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 768px){
    .training_tit__look{
        position: absolute;
        text-align: center;
        width:30%;
        margin: 0 auto;
        top: -15%;
        left: 50%;
    }
    .training_tit__look img{
        display: inline;
    }
    .training_tit h2{
        font-size: 16px;
        text-align: center;
        padding: 22px 0 10px;
    }
    .training_tit h2 span{
        font-size: 21px;
        border-bottom: solid 3px #ffff00;
        line-height: 2rem;
    }
    .training__content{
        flex-direction: column;
        width: 94%;
        gap: 0px;
    }
    .training__content__list{
        min-height: 270px;
    }
}

@keyframes flipInYTwice {
    0% {
      opacity: 0;
      transform: perspective(400px) rotateY(0deg);
    }
    100% {
      opacity: 1;
      transform: perspective(400px) rotateY(720deg); /* 360deg × 2周 */
    }
  }
  
  .animate__flipInYTwice {
    animation-name: flipInYTwice;
    animation-duration: 1.2s;
    animation-fill-mode: both;
  }
  @keyframes flyInRightBounceRight {
    0% {
      opacity: 0;
      transform: translateX(150%) scale(1);
    }
    30% {
      opacity: 1;
      transform: translateX(-5px) scale(1);
    }
    70% {
      transform: translateX(5px) scale(1); /* 少し右に移動 */
    }
    100% {
      transform: translateX(0) scale(1); /* 最後は定位置 */
    }
  }
  
  .animate__flyInRightBounceRight {
    animation-name: flyInRightBounceRight;
    animation-duration: 0.5s; /* 少し遅めでバウンド感を出す */
    animation-fill-mode: both;
    animation-timing-function: ease-out;
  }
  

  @keyframes popInScale {
    0% {
      opacity: 0;
      transform: scale(0.6);
    }
    60% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .animate__popInScale {
    animation-name: popInScale;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
  }
  

  .c-tel_btn{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-decoration: none;
    background: linear-gradient(180deg, #fff 88%, rgba(202, 200, 200, 1) 100%);
    border-radius: 8px;
    position: relative;
    padding: 5px 10px 0;
    margin: 3px;
    width: 98%;
  }

  .follow-cta-content   .c-tel_btn{
        padding: 8px 10px 8px;
  }


  .c-tel_btn::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 8px;
    background: linear-gradient(to bottom, #fdd835, #f57c00); /* 上黄〜下オレンジ */
    box-shadow: 0 5px 0px rgba(157, 56, 0, 1);
    transform: none;
    will-change: opacity;
    z-index: -3;
  }
  
/* キラッ用の光エフェクト */
.c-tel_btn_wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.header-content .c-tel_btn_wrapper{
    overflow: visible;
    margin: 8px;
}
.c-tel_btn_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: kiratto 2s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
  }
    @keyframes kiratto {
        0% {
        left: -100%;
        opacity: 0;
        }
        10% {
        opacity: 1;
        }
        50% {
        left: 120%;
        opacity: 1;
        }
        60% {
        opacity: 0;
        }
        100% {
        left: 120%;
        opacity: 0;
        }
    }
    


.c-tel_btn .header-tel-copy{
    font-size: 13px;
    background-color: #1C1B38;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}
.c-tel_btn .header-tel-copy b{
    color:  #FAD900;

}
.c-tel_btn .header-tel-num{
    font-size: 30px;
    color:#1C1B38;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;
}
.c-tel_btn img{
    width: 8%;
    margin-top: -8px;

}
.c-tel_btn .c-tel_text{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.cta {
    position: relative;
    z-index: 0;
}
.cta .c-tel_btn{
    justify-content: space-evenly;
}
.cta .c-tel_btn::before{
    z-index: -1;

}
.cta .c-tel_btn_wrapper{
    width: 46%;
    
}

@media (max-width: 768px){
   .cta .c-tel_btn_wrapper{
        width: 90%;
        position: absolute;
        bottom: -355%;
        left: 4%;
        z-index: 1;
    }
    .follow-cta-content .c-tel_btn .header-tel-num{
        font-size: 22px;
        margin-left: 14px;
        /* margin-bottom: 5px; */
    }
    .follow-cta-content .c-tel_btn .header-tel-copy {
        font-size: 12px;
    }
    .follow-cta-content .c-tel_btn{
        justify-content: left;
        gap: 30px;
        padding: 2px 10px 0px;
        padding-bottom: 5px;
    }
    .follow-cta-content .c-tel_btn img{
        margin-left: 10px;
    }
    .follow-cta-content.sp {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    }
    .follow-cta-content.sp.active {
        display: block;
        opacity: 1;
    }
}
@media (max-width: 400px){
   .cta .c-tel_btn_wrapper{
        width: 90%;
        position: absolute;
        bottom: -400%;
        left: 4%;
        z-index: 1;
    }
}

.c-tel_btn img{
    animation: poyon 1.8s ease-in-out infinite;
    transition: transform 0.2s ease;
}

/* ぽよんぽよんアニメーション */
@keyframes poyon {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.1); }
    50%  { transform: scale(0.97); }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}