/* 共通 */
body{
    overflow-x: hidden;
}
p{
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}
img{
    width: 100%;
}
._inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.section-title {
    align-items: center;
    margin-bottom: 40px;
}
.section-title h2{
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}
.section-title h3{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: clamp(1.25rem, 1.164rem + 0.35vw, 1.625rem);
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}
.section-title p{
    color: #E4652C;
    font-family: "Noto Sans JP";
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

._flex{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

._btn{
    width: 100%;
    max-width: 240px;
    height: 50px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
._btn._red p{
    color: #F20320;
}
._btn p{
    color: #333 ;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0 !important;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
}
.header ._inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo{
    width: 20%;
    max-width: 160px;
}
.header-nav{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content:right;
    gap: 20px;
}
.header-btn-layout{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-btn{
    display: flex;
    width: 180px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: #F16529;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.header-btn p{
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-nav {
    transition: transform 0.3s ease;
}

.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.header-nav li a {
    text-decoration: none;
    color: #fff;
}

/* スマートフォン版 */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    .header-logo{
        width: 30%;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

    .header-btn-layout{
        flex-direction: column;
    }
    .header-nav .header-logo{
        width: 40%;
        max-width: 100%;
        margin: 0 auto 24px;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .header-nav li {
        border-bottom: 1px solid #eee;
    }

    .header-nav li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        color: #333;
    }

}


/* mv */
.mv{
    background-image: url(../img/mv-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}
.mv-content{
    width: 70%;
    text-align: center;
}
.mv-content h1{
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: clamp(1.5rem, 1.136rem + 1.55vw, 3rem);
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
}
.mv-content > p{
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 16px;
}
.mv-btn-layout{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
@media screen and (max-width: 900px) {
    .mv{
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/mv-bg.webp);
        background-position: 70% ;
        backdrop-filter: blur(10px)
        ;
    }
    .mv-btn-layout{
        flex-direction: column;
    }
    .mv-content{
        width: 100%;
    }
}
/* banner */
.banner{
    margin: 80px 0;
}
.banner img{
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* about */
#about{
    padding: 80px 0;
    background: #FAFAFA;
}
.about-img{
    margin-top: 40px;
}


/* feature */
#feature{
    padding: 80px 0;
}
.feature-layout{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.feature-item{
    text-align: center;
}
.feature-item img{
    margin-bottom: 8px;
}
.feature-item h3{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 8px;
}
.feature-item p{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}
.feature-table{
    max-width: 880px;
    margin: 0 auto 80px;
}
.feature-table h3{
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 24px;
}
.feature-table h3 span{
    font-size: 24px;
    color: #E4021D;
}
.feature-table-list{
    margin: 0 auto;
    list-style: disc;
    padding: 24px 24px 24px 40px;
    border-radius: 8px;
    border: 1px solid #E4021D;
    margin-bottom: 40px;
}
.feature-table-list li{
    list-style: disc;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 8px;
}
.feature-table-list li span{
    color: #E4021D;
    font-weight: 700;
}
.feature-issue{
    padding-bottom: 80px;
}
.feature-issue-layout{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}
.feature-issue-item{
    position: relative;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #fff;
    box-sizing: border-box;
}
.feature-issue-item h3{
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    background: linear-gradient(180deg, transparent 0%, transparent 70% ,#FFEA90 70%);
}
.feature-issue-item:last-child h3{
    background: linear-gradient(180deg, transparent 0%, transparent 70% ,#F6B3BC 70%);
}
.feature-issue-item ul{
    list-style: disc;
    padding-left:16px;
}
.feature-issue-item ul li{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 8px;
    list-style: disc;
}
.feature-issue-item img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    max-width: 200px;
    object-fit: contain;
    transform: translateY(80%);
}
.feature-issue-item:last-child img{
    left: auto;
    right: 0;
}
@media screen and (max-width: 900px) {
    #feature{
        padding-bottom: 0;
    }
    .feature-layout{
        grid-template-columns: repeat(1, 1fr);
    }
    .feature-table{
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
        margin-bottom: 40px;
    }
    .feature-table-list li{
        font-size: 14px;
    }
    .feature-issue-item img{
        display: none;
    }
    .feature-issue-layout{
        grid-template-columns: repeat(1, 1fr);
    }
    .feature-issue-item{
        padding: 24px;
    }
    .feature-issue-item h3{
        font-size: 18px;
    }
    .feature-issue-item ul li{
        font-size: 16px;
    }
}

/* solution */
.solution-main{
    padding: 80px 0;
    background: #F4C10C;
}
/* .solution-main h2{
    color: #fff;
} */
.solution-layout{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.solution-layout{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}
.solution-item{
    background: #fff;
    padding:40px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}
.solution-item img{
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 16px;
}
.solution-item h3{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    text-decoration: underline #FFE8D2 4px;
    margin-bottom: 32px;
}
.solution-item h3::after{
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background: #F4C10C;
    margin: 32px auto ;
}
.solution-item p{
    font-weight: 700;
}

.solution-flow{
    padding: 80px 0;
}
.solution-flow-layout{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
    margin-bottom: 80px;
}
.solution-flow-item{
    position: relative;
    text-align: center;
}
.solution-flow-item::before{
    content: '';
    display: block;
    width: 24px;
    height: 40px;
    background: #F4C10C;
    position: absolute;
    top: 40%;
    right: -28px;
    transform: translate(50%, -50%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.solution-flow-item:last-child::before{
    display: none;
}
.solution-flow-item img{
    object-fit: contain;
    width: 90%;
    margin: 0 auto;
    display: block;
}
.solution-flow-item h3{
    color: #F6CC38;
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    margin-bottom: 16px;
}
.solution-flow-item p{
    font-weight: 700;
}
.solution-flow-text{
    min-height: 140px;
    margin-top: -24px;
    padding: 24px;
    border: 4px solid #F4C10C;
}

.solution-function{
    padding: 80px 0;
    background: #FAFAFA;
}
.solution-function-img{
    position: relative;
    margin-top: 80px;
}
.solution-function-img img{
    width: 80%;
    display: block;
}
.solution-function-text{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    padding:24px 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}
.solution-function-text h3{
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP";
    background-image: url(../img/solution-function-text-bg.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
}
.solution-function-text ul li{
    display: flex;
    align-items: center;
    gap: 16px;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 8px;
    padding:8px 16px;
    border: 2px solid #F4C10C;
}
.solution-function-text ul li::before{
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../img/icon_check.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.solution-function-text > p{
    font-size: 24px;
    color: #F4C10C;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    text-align: right;
}
@media screen and (max-width: 900px) {
    .solution-flow-layout{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .solution-flow-item{
        width: 100%;
        margin: 0 auto;
    }
    .solution-flow-item img{
        width: 60%;
        margin: 0 auto;
        display: block;
    }
    .solution-flow-item::before{
        display: none;
    }
    .solution-function-img img{
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .solution-function-text{
        width: 100%;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 24px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        margin-top: 24px;
        transform: none;
        box-sizing: border-box;
    }
    .solution-function-text h3{
        font-size: 20px;
    }
    .solution-function-text ul li{
        font-size: 16px;
    }
    .solution-function-text > p{
        font-size: 18px;
    }
    }
/* function */
#function{
    padding: 80px 0;
}
.function-layout{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 160px;
}
.function-item{
    text-align: center;
}
.function-item img{
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin: 0 auto 24px;
}
.function-item h3{
    padding: 8px 16px;
    border:4px solid #E71B31;
}
.function-segment img{
    width: 100%;
    max-height: 900px;
    object-fit: contain;
    margin: 0 auto 80px;
}
.function-segment-banner{
    width: 100%;
    max-width: 720px;
    object-fit: contain;
    margin: 0 auto;
}
@media screen and (max-width: 900px) {
    .function-layout{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    .function-item img{
        width: 80%;
    }
    .function-item h3{
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
        padding: 8px ;
        box-sizing: border-box;


    }
    .function-segment-img img{
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .function-segment-banner img{
        width: 100%;
        margin: 0 auto;
        display: block;}

    .function-segment-img{
        margin-bottom: 40px;
    }
}
/* flow */
#flow{
    padding: 80px 0;
    background: #FAFAFA;
}
.flow-img{
    width: 100%;
    max-width: 1080px;
    margin: 24px auto 80px;
}
.flow-layout{
    position: relative;
    padding-top: 100px;
    margin-bottom: 80px;
}
._secondary.flow-layout{
    margin-bottom: 0;
}
.flow-layout::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image:url(../img/flow-item-bg1.webp);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    z-index: 1;
}
._secondary.flow-layout::after{
    background-image:url(../img/flow-item-bg2.webp);
    right: auto;
    left: 0;
}
.flow-item{
    position: relative;
    z-index: 2;
    width: 60%;
    background: #fff;
    padding: 40px;
}
._secondary .flow-item{
    margin-left: auto;
}
.flow-text{
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.flow-text::before{
    content: '';
    display: block;
    width: 40%;
    max-width: 140px;
    height: 4px;
    background: #F4C10C;
    position: absolute;
    bottom: 0;
    left: 0;
}
._secondary .flow-text::before{
    background: #F18E3A;
}
.flow-text h3{
    width: fit-content;
    background: #F4C10C;
    padding: 8px 16px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    margin-bottom: 24px;
}
._secondary .flow-text h3{
    background: #F18E3A;
}
.flow-text p{
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}
.flow-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.flow-grid-item{
    background: #fff;
    border: 4px solid #F4C10C;
}
._secondary .flow-grid-item{
    border: 4px solid #F18E3A;
}
.flow-grid-item h4{
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    padding: 8px 16px;
    background: #F4C10C;
}
._secondary .flow-grid-item h4{
    background: #F18E3A;
}
.flow-grid-item p{
    color: #333;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    padding: 24px 32px;
}
@media screen and (max-width: 900px) {
    #flow{
        padding: 40px 0;
    }
    .flow-img{
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .flow-layout{
        margin-bottom: 40px;
        padding-top: 40px;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        box-sizing: border-box;
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .flow-layout::after{
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        box-sizing: border-box;
        width: 100%;
        aspect-ratio: 1/1;
    }
    .flow-item{
        width: 100%;
        padding: 24px;
        box-sizing: border-box;
    }
    .flow-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .flow-grid-item{
        width: 100%;
        padding: 24px;
        box-sizing: border-box;
    }
    .flow-grid-item p{
        font-size: 16px;
    }
    .flow-text{
        padding-bottom: 16px;
    }
}
/* price */
#fee{
    padding: 80px 0;
    background: #F4C10C;
}
#fee ._inner > p span{
    font-weight: 400;
}
.fee-wrap{
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 4px solid #F4C10C;
    margin-top: 40px;
}
.fee-wrap-layout{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fee-wrap-img{
    width: 40%;
}
.fee-wrap-text{
    width: 60%;
}
.fee-wrap-text h3{
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    background: linear-gradient(180deg, transparent 0%, transparent 70% ,#FFEA90 70%);
    margin-bottom: 24px;
}
.fee-wrap-text h3 span{
    color: #E4652C;
    font-weight: 700;
    font-size: 48px;
}
.fee-wrap-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin: 24px 0;
}
.fee-wrap-sns h3{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    margin-bottom: 24px;
}
.fee-wrap-sns h3 span{
    color: #E41A28;
}
.fee-wrap-sns h3::before,
.fee-wrap-sns h3::after{
    content: '';
    display: block;
    width: 10%;
    height: 4px;
    background: #E41A28;
}

.fee-wrap-sns-box{
    border: 4px solid #E41A28;
}
.fee-wrap-sns-box h4{
    background: #E41A28;
    padding: 8px 16px;
    color: #fff;
    font-family: "Noto Sans JP";
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
    margin-bottom: 24px;
}
.fee-wrap-sns-box p{
    padding: 24px 32px;
    font-size: 24px;
}
.fee-wrap-sns-box > img{
    display: block;
    margin: 24px auto;
    width: 80%;
    object-fit: contain;
    box-sizing: border-box;
}
.fee-wrap-sns-share{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    gap: 16px;
    border: 4px solid #333;
}
.fee-wrap-sns-share p{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 0;
    background: #333;
}
.fee-wrap-sns-list{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.fee-wrap-sns-share-btn-item{
    width: 30%;
    max-width: 60px;
}
.fee-wrap-sns-box ._attention{
    width: 80%;
    display: block;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 0 auto;
}
@media screen and (max-width: 900px) {
    #fee ._inner{
        width: 100%;
    }
    #fee ._inner > p{
        width: 90%;
        margin: 0 auto 40px;
        display: block;
    }
    .fee-wrap{
        padding: 24px;
    }
    .fee-wrap-layout{
        flex-direction: column;
        gap: 20px;
    }
    .fee-wrap-img{
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .fee-wrap-text{
        width: 100%;
    }
    .fee-wrap-text p{
        font-size: 16px;
    }
    .fee-wrap-grid{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .fee-wrap-grid-item{
        width: 42%;
    }
    .fee-wrap-sns h3{
        display: block;
    }
    .fee-wrap-sns h3::before,
    .fee-wrap-sns h3::after{
        display: none;
    }
    .fee-wrap-sns-box h4{
        font-size: 20px;
    }
    .fee-wrap-sns-box p{
        font-size: 16px;
    }
    .fee-wrap-sns-box picture img{
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    .fee-wrap-sns-share{
        margin-top: 16px;
        width: 90%;
        flex-direction: column;
    }
    .fee-wrap-sns-share p{
        font-size: 16px;
    }
    .fee-wrap-sns-list{
        width: 100%;
        gap: 16px;
    }
}
/* option */
#option{
    padding: 80px 0;
}
.option-table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}
.option-table thead th{
    padding: 24px;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    background-color: #F3A96E;
    color: #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.option-table-feature{
    background-color: #C6B06C !important;
    border: none;
}
.option-table-header{
    border-left: 1px solid #F3A96E;
}
.option-table tbody td{
    padding: 20px 16px;
    vertical-align: middle;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
}
.option-table-feature-name{
    background-color: #F18E3A;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    width: 200px;
    padding: 0 ;
}
.option-table-price{
    background-color: #F5E6D3;
    color: #E4652C;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    border-left: 1px solid #E4652C;
    width: 150px;
}
.option-table-price span{
    font-size: 16px;
}
.option-table-detail{
    background-color: #F5E6D3;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    border-left: 1px solid #E4652C;
}
.option-table-detail p{
    text-align: left;
    color: #333;
    margin-bottom: 16px;
}
.option-table-detail-btn{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background-color: #F16529;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 700;
}
.option-table-detail-btn span{
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .option-table{
        display: block;
        overflow-x: auto;
    }
    .option-table thead,
    .option-table tbody,
    .option-table tr,
    .option-table td,
    .option-table th{
        display: block;
    }
    .option-table thead tr{
        display: none;
    }
    .option-table tbody tr{
        overflow: hidden;
        border-bottom: 4px solid #fff;
    }
    .option-table-feature-name{
        width: 100%;
        padding: 16px;
    }
    .option-table-price{
        width: 100%;
        border-left: none;
        border-top: 1px solid #E4652C;
    }
    .option-table-detail{
        width: 100%;
        border-left: none;
        border-top: 1px solid #E4652C;
    }
    .option-table tbody td{
        padding: 16px;
        box-sizing: border-box;
        border: none;
    }
}


/* faq */
#faq{
    padding: 80px 0;
    background: #FAFAFA;
}
.faq-item{
    background: #fff;
    padding: 24px;
    border: 1px dashed #ddd;
    margin-bottom: 8px;
}
.faq-item:nth-child(even){
    margin-bottom: 40px;
}
.faq-item h3{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 8px;
    text-align: left;
}
.faq-item h3 span{
    color: #E4021D;
    font-weight: 700;
    font-size: 24px;
}
.faq-item p{
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0;
}





/* series */

.series{
    padding: 80px 0;
    background: #F0EDEC;
}
.series .section-title h2{
    text-align: center;
    margin-bottom: 40px;
}
.series .section-title p{
    text-align: center;
    margin-bottom: 16px;
}
.series ._inner > p{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 40px;
}
.series-layout{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.bit-sleep{
    grid-column: 2;
}
.series-layout:last-child{
    margin-bottom: 0;
}

/* footer */
.footer-dev{
    height: 400px;
    background: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer-dev ._inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-dev-item h2{
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 56px;
}
.footer-dev-item p{
    text-align: center;
}
.footer-dev-price h3{
    width: fit-content;
    padding: 0 16px;
    margin: 24px auto 0;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 16px;
    background: linear-gradient(180deg, transparent 0%, transparent 70% ,#FFEA90 70%);
}
.footer-dev-price h3 span{
    color: #E4021D;
}

.footer-info{
    padding: 80px 0 0;
    background: #fafafa;
}
.footer-info > h3{
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 40px;
}
.footer-info ._inner{
    max-width: 900px;
}

.footer-info-item h3{
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 24px;
}
.footer-info-tel{
    margin: 0 auto;
    display: block;
    text-align: center;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 24px;
    text-decoration: underline ;
}
.footer-info-tel span{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.footer-info-btn{
    width: 100%;
    max-width: 300px;
    height: 60px;
    border-radius: 8px;
    background: #E41A28;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.footer-info-btn p{
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 0;
}
.footer-info-nav{
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.footer-info-nav-item{
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.line-partner h3{
    font-size: 20px;
    background: #FFC107;
    padding: 8px 16px;
    color: #fff;
    margin-bottom: 0;
}
.line-partner img{
    width: 100%;
    max-width: 140px;
    margin-top: 16px;
}
.footer-info-adress h3{
    text-align: left;
    margin-top: 24px;
    font-size: 20px;
    margin-bottom: 8px;
}
.footer-info-adress p{
    text-align: left;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0;
}
.footer-copyright{
    padding: 24px 0;
    background: #333;
}
.footer-copyright p{
    text-align: center;
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0;
}

.sp-only{
    display: none;
}
@media screen and (max-width: 768px) {
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }
    ._flex{
        flex-direction: column;
        gap: 40px;
    }
    ._inner{
        width: 90%;
    }


    /* series */
    .series-layout{
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .bit-sleep{
        grid-column: 1;
    }
    /* footer */
    .footer-cta-img{
        display: none;
    }
    .footer-cta-item{
        width: 100%;
        margin-left: 0;
    }
    .footer-cta-item p{
        text-align: center;
        font-size: 16px;
    }
    .footer-cta-btn{
        max-width: 100%;
    }
    .line-partner{
        width: 100%;
    }
    .line-partner h3{
        text-align: left;
        width: 100%;
        font-size: 16px;
        padding: 16px;
        box-sizing: border-box;
    }
    .footer-info ._inner{
        flex-direction: column-reverse;
        align-items: center;
    }
    .footer-info-tel{
        display: block;
        text-align: center;
        text-decoration: none;
        margin: 0 auto;
    }
    .footer-info-nav{
        flex-wrap: wrap;
    }
}

