/* 
|
|
| 変数
|
|
*/
:root {
    --green-color          : #23C653;
    --blue-color           : #296692;
    --brown-color          : #603933;
    --black-color          : #2A2A2A;
    --gray-color           : #CFCFCF;
    --gray-light-color     : #E9E9E9;
    --white-color          : #FFFFFF;
    --white-opacity-color  : #ffffff2A;
    --blue-gradient-color  : linear-gradient(-45deg, #39ADF4, #278BD2);
    --yellow-gradient-color: linear-gradient(-45deg, #F4BD26, #FFDC17);
    --bg-color             : #F2F7F4;
    --bg-stripe-color      : #F2FCF6;
    --text-color           : #202020;
    --shadow-color         : #E1E1E1;
}
/* 
|
|
| 共通部品
|
|
*/
/* shadow */
.shadow {
    box-shadow: 0 4px 0 0 var(--shadow-color);
    top: 0 ;
    transition: all 0.3s ease;
}

.shadow:hover {
    top: 4px ;
    box-shadow: 0 0 0 0 var(--shadow-color);
}

/* bg-stripe */
.bg-stripe {
    background-color: var(--bg-stripe-color);
}

/* bg-pop */
.bg-pop {
    background-color: var(--green-color) ;
    background-image: url(../img//bg/bg-pop.svg) ;
}

.bg-stripe {
    background-size: auto auto ;
    background-color: var(--bg-stripe-color) ;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, var(--bg-color) 10px, var(--bg-color) 20px ) ;
}

.fa-question {
    display: block;
    width: 12px ;
    height: auto ;
    background-image: url(../img/icon/question-solid.svg) ;
    background-size: cover ;
    background-position: center ;
    background-repeat: no-repeat ;
    object-fit: cover;
}

/* text */
.text-6px {
    font-size: 6px;
}

.text-8px {
    font-size: 8px;
}

.text-10px {
    font-size: 10px;
}

.text-12px {
    font-size: 12px;
}

.text-14px {
    font-size: 14px;
}

.text-16px {
    font-size: 16px;
}

.text-20px {
    font-size: 20px;
}

.text-24px {
    font-size: 24px;
}
/* 
|
|
| BODY
|
|
*/
main {
    background-color: var(--green-color) ;
    background-image: url(../img/bg/bg.svg) ;
    background-size: cover ;
}
.body::-webkit-scrollbar{
    display:none;
}
/* 
|
|
| HEADER
|
|
*/
.header {
    position: fixed ;
    width: 100% ;
    z-index: 10000 ;
}

.header_container {
    position: relative ;
    width: calc(100% - 24px * 2) ;
    height: 28px ;
    border-radius: 28px ;
    display: flex ;
    justify-content: space-between ;
    align-items: center ;
    background-color: var(--white-color) ;
    padding: 10px 12px ;
    margin: 16px 12px ;
}

.header_logo {
    height: 28px ;
}

.header_logo_img {
    height: 28px ;
    object-fit: cover ;
}

/* nav */
.header_menu {
    right: 6px ;
    height: 28px ;
    width: 28px ;
}

.menu_btn {
    display: block ;
    position: relative ;
    display: flex;
    height: 100% ;
    width: 100% ;
    justify-content: center ;
    align-items: center ;
    cursor: pointer ;
}
.menu_btn span {
    position: relative ;
    display: block ;
    height: 8px ;
    width: 100% ;
}

.menu_btn span:before,
.menu_btn span:after {
    content: '' ;
    position: absolute ;
    right: 6px ;
    display: block ;
    height: 2.4px ;
    width: 20px ;
    border-radius: 3px ;
    background-color: var(--black-color) ;
    /* transform-origin: center; */
    transform-origin: 50% ;
    transition: transform 0.3s ease, opacity 0.3s ease ;
}
.menu_btn span:before {
    bottom: 0 ;
}

.menu_btn span:after {
    top: 0 ;
}

#header_menu_btn {
    display: none ;
}

#header_menu_btn:checked ~ .menu_btn span {
    height: 2.4px ;
}

#header_menu_btn:checked ~ .menu_btn span::before {
    bottom: 0 ;
    transform: rotate(45deg) ;
}

#header_menu_btn:checked ~ .menu_btn span::after {
    top: 0 ;
    transform: rotate(-45deg) ;
}

.header_menu_content {
    display: none ;
    width: 100vw ;
    height: 100vh ;
    position: fixed ;
    top: 0 ;
    left: 0 ;
    z-index: -100 ;
    background-color: var(--green-color) ;
    animation: .3s forwards green-out;
}

@keyframes green-out {
    0% {
        background-color: var(--green-color);
        opacity: 0 ;
    }
    100% {
        background-color: var(--green-color) ;
    }
}

#header_menu_btn:checked ~ .header_menu_content {
    display: block;
}

.header_nav_list {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    row-gap: 24px ;
    height: 100% ;
    padding-left: 0 ;
    margin: 0 ;
}

.header_nav_item {
    position: relative ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    height: 32px ;
}

.header_nav_item_icon {
    content: '' ;
    position: absolute ;
    top: 0 ;
    left: -40px ;
    width: 32px ;
    height: 32px ;
    border-radius: 32px 32px 32px 4px ;
    background-color: var(--white-color) ;
    cursor: pointer;
    transition: width 0.2s ease-in-out ;
}

.header_nav_item_icon::before {
    content: '' ;
    position: absolute ;
    top: 4px ;
    left: 4px ;
    width:24px ;
    height: 24px ;
    border-radius: 100%;
    background-color: var(--green-color) ;
}

.header_nav_item:hover .header_nav_item_icon {
    width: 112px ;
    z-index: -1 ;
}

.header_nav_item:hover .header_nav_item_text {
    color: var(--green-color) ;
}

.header_nav_item_text {
    font-weight: bold ;
    text-decoration: none;
    color: var(--white-color) ;
}

@media screen and (min-width: 1024px) {
    .header_container {
        width: calc(100% - (12px + 20px) * 2) ;
        height: 40px ;
        border-radius: 36px ;
        padding: 8px 20px ;
    }

    .header_logo {
        height: 40px ;
    }

    .header_logo_img {
        height: 40px ;
    }

    .header_menu {
        height: 40px ;
        width: 100% ;
    }

    .menu_btn,
    .menu_btn span,
    .menu_btn span:before,
    .menu_btn span:after {
        display: none ;
    }

    .header_menu_content {
        display: block ;
        width: 100% ;
        height: auto ;
        position: relative ;
        top: 0 ;
        right: -8px ;
        left: auto ;
        z-index: 100 ;
        background-color: transparent ;
        animation: none ;
    }

    .header_nav_list {
        flex-direction: row ;
        justify-content: end ;
        align-items: center ;
        gap: 28px ;
        height: 40px ;
        padding-left: 0 ;
        margin: 0 ;
    }

    .header_nav_item {
        height: 40px ;
    }

    .header_nav_item_icon {
        background-color: var(--green-color) ;
    }

    .header_nav_item_icon::before {
        top: 6px ;
        left: 6px ;
        width: 20px ;
        height: 20px ;
        background-color: var(--white-color) ;
    }
    
    .header_nav_item_text {
        font-size: 14px ;
        color: var(--font-color) ;
    }

    /* .header_nav_item:hover .header_nav_item_text {
        color: var(--green-color) ;
    } */

    .header_nav_item .btn {
        box-sizing: border-box ;
        padding: 0 24px ;
        height: 100% ;
    }

    .header_nav_item .btn-text {
        font-size: 12px ;
        color: var(--white-color) ;
    }
}
/* 
|
|
| MV
|
|
*/
.mv {
    position: relative ;
    overflow: hidden;
    width: 100% ;
}

.mv_container {
    position: relative ;
    height: 100vh ;
    display: flex ;
    justify-content: center ;
    background-color: var(--green-color) ;
    transition: all 0.3s ease-in-out ;

}

.mv_inner {
    width: 100% ;
    height: auto ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
}

.mv_box {
    position: relative ;
    width: 100% ;
    height: auto ;
    display: flex ;
    flex-direction: column;
    justify-content: center ;
    align-items: center ;
}

.mv_img {
    width: auto ;
    height: calc(100vh - 380px) ;
    object-fit: cover ;
    margin-bottom: 16px;
}

.mv_textbox {
    width: 100% ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    color: var(--white-color);
}

.mv_title {
    font-weight: bold ;
    text-align: center;
}

.mv_accent {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: 8px ;
    margin-bottom: 16px ;
}

.mv_accent_textbox {
    justify-content: center ;
    align-items: center ;
    background-color: var(--white-color);
    border-radius: 8px ;
    padding: 4px 8px ;
}

.mv_accent_text {
    font-weight: bold ;
    color: var(--green-color) ;
    white-space: nowrap ;
}

.mv_logobox {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: 16px ;
    margin-bottom: 16px ;
}

.mv_logo {
    width: auto ;
    height: 64px ;
    object-fit: cover ;
}

.btnbox {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: 12px ;
}

.btn {
    position: relative ;
    width: 136px ;
    height: 24px ;
    padding: 8px 16px ;
    border-radius: 24px ;
    border: 2px solid var(--white-color) ;
    font-weight: bold ;
}

.btn-blue {
    color: var(--white-color) ;
    background: var(--blue-gradient-color) ;
}

.btn-yellow {
    color: var(--white-color) ;
    background: var(--yellow-gradient-color) ;
    transition: all .3s ease-in-out ;
}

.btn-text {
    display: flex ;
    justify-content: center ;
    align-items: center ;
    width: 100% ;
    height: 100%;
    text-align: center ;
    text-decoration: none ;
    color: var(--white-color) ;
    white-space: nowrap ;
}

.mv_mascot_box {
    position: absolute ;
    top: 50% ;
    left: -72px ;
    transform: translateY(-50%) ;
    justify-content: center ;
    align-items: center ;
    transition: all 0.3s ease-in-out ;
}

.mv_mascot_inner {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: -24px ;
    transition: all 0.3s ease-in-out ;
}

.mv_mascot_image {
    width: 160px ;
    height: auto ;
    object-fit: cover ;
}

.mv_mascot_textbox {
    position: absolute ;
    top: -4px ;
    right: -24px ;
    width: auto ;
    color: var(--white-color) ;
    transform: rotate(-10deg) ;
}

.mv_mascot_text {
    position: relative ;
    font-size: 6px ;
    font-weight: bold ;
    padding: 6px 0 ;
}

.mv_mascot_text::before,
.mv_mascot_text::after {
    content: '' ;
    position: absolute ;
    left: 0 ;
    width: 32px ;
    height: 1.6px ;
    border-radius: 1.6px;
    background-color: var(--white-color) ;
    transform-origin: 0 0;
}

.mv_mascot_text::before {
    top: 0 ;
    transform: rotate(-40deg) ;
}

.mv_mascot_text::after {
    bottom: 0 ;
    transform: rotate(40deg) ;
}


@media screen and (min-width: 768px) {
    .mv_container {
        padding-top: 0 ;
        padding: 0 40px ;
        display: flex ;
        justify-content: center ;
        align-items: center ;
        flex-direction: column-reverse ;
        row-gap: 16px ;
    }

    .mv_inner {
        width: auto ;
        display: flex ;
        flex-direction: column;
        justify-content: start ;
        row-gap: 8px ;
        max-width: 600px ;
    }

    .mv_box {
        flex-direction: row;
        justify-content: start ;
        align-items: start ;
        column-gap: 24px ;
    }

    .mv_img {
        width: 112px ;
        height: auto ;
        margin-bottom: 0 ;
    }

    .mv_textbox {
        width: 100% ;
        display: flex ;
        flex-direction: column ;
        justify-content: center ;
        align-items: start ;
        color: var(--white-color);
    }

    .mv_title {
        text-align: start ;
        font-size: 20px;
    }

    .mv_title span {
        font-size: 12px ;
    }

    .mv_accent {
        width: 100% ;
        display: flex ;
        justify-content: center ;
        align-items: center ;
        gap: 6px ;
        margin-bottom: 16px ;
    }

    .mv_accent_textbox {
        justify-content: center ;
        align-items: center ;
        background-color: var(--white-color);
        border-radius: 8px ;
        padding: 4px 8px ;
        font-size: 16px ;
    }

    .mv_accent_text {
        font-weight: bold ;
        color: var(--green-color) ;
    }

    .mv_logobox {
        width: 100% ;
        display: flex ;
        justify-content: center ;
        align-items: center ;
        gap: 16px ;
        margin-bottom: 16px ;
    }

    .mv_logo {
        height: 112px ;
    }

    .btnbox {
        width: 100% ;
        display: flex ;
        justify-content: center ;
        align-items: center ;
        row-gap: 12px ;
    }

    .btn {
        width: 100% ;
        height: 32px ;
        padding: 8px 16px ;
        border-radius: 32px ;
        border: 2px solid var(--white-color) ;
        font-weight: bold ;
    }

    .btn-blue {
        color: var(--white-color) ;
        background: var(--blue-gradient-color) ;
    }

    .btn-yellow {
        color: var(--white-color) ;
        background: var(--yellow-gradient-color) ;
    }

    .btn-text {
        display: flex ;
        justify-content: center ;
        align-items: center ;
        width: 100% ;
        height: 100%;
        text-align: center ;
        text-decoration: none ;
        color: var(--white-color) ;
        font-size: 16px ;
    }

    .mv_mascot_box {
        position: relative ;
        height: auto ;
        top: 0 ;
        left: 0 ;
        transform: translateY(0%) ;
        display: flex ;
        justify-content: center ;
        align-items: center ;
    }

    .mv_mascot_inner {
        position: relative ;
        left: 32px;
    }

    .mv_mascot_image,
    .mv_mascot_inner::before,
    .mv_mascot_inner::after {
        width: 380px ;
        height: 380px ;
    }

    .mv_mascot_inner::before,
    .mv_mascot_inner::after {
        content: '' ;
        position: absolute ;
        top: 0 ;
        z-index: 100 ;
        background-image: url("../img/onigiri/onigiri-koshi.png") ;
        background-size: cover ;
    }

    .mv_mascot_image {
        object-fit: cover ;
        z-index: 20;
    }

    .mv_mascot_inner::before {
        left: calc(80px * (-1)) ;
        z-index: 10;
    }

    .mv_mascot_inner::after {
        left: calc(80px * 1) ;
        z-index: 30 ;
    }
    
    .mv_mascot_textbox {
        top: calc(50% - 160px) ;
        right: -80px;
    }

    .mv_mascot_text {
        font-size: 8px ;
    }
}

@media screen and (min-width: 1200px) {
    .mv {
        display: flex ;
        justify-content: center ;
        align-items: center ;
    }
    .mv_container {
        align-items: center ;
        flex-direction: row ;
        gap: 24px ;
        /* background: #892c2c80; */
        width: calc(100% - 24px * 3) ;
    }

    .mv_inner {
        width: 100% ;
        /* background: #892c2c80; */
    }

    .mv_imgbox {
        width: 100% ;
        /* background: #892c2c80; */
    }

    .mv_textbox {
        width: 100% ;
        /* background: #892c2c80; */
    }

    .mv_logo {
        width:calc(100% - 32px);
        height: auto ;
        /* background: #892c2c80; */
    }

    .btn {
        height: 40px ;
        /* background: #892c2c80; */
    }

    .mv_logobox {
        justify-content: start ;
        width: 100% ;
        /* background: #892c2c80; */
    }

    .mv_mascot_box {
        left: 0 ;
        /* background: #892c2c80; */
    }

    .mv_mascot_image,
    .mv_mascot_inner::before,
    .mv_mascot_inner::after {
        width: 420px ;
        height: 420px ;
    }
    
    .mv_mascot_inner::before {
        left: calc(100px * (-1)) ;
    }

    .mv_mascot_inner::after {
        left: calc(100px * 1) ;
    }

    .mv_mascot_textbox {
        position: fixed ;
        top: 0 ;
        right: -136px ;
        width: auto ;
        color: var(--white-color) ;
        transform: rotate(-10deg) ;
        /* background: #892c2c80; */
    }

    .mv_mascot_text {
        font-size: 12px ;
    }
}
/* 
|
|
| section
|
|
*/
.section_title {
    font-size: 16px ;
    font-weight: bold ;
    text-align: center ;
    margin-bottom: 48px ;
}

.section_title-accent {
    margin: 0 8px ;
    padding: 8px 24px ;
    font-size: 24px ;
    border-radius: 4px 48px 48px 48px ;
    background-color: var(--green-color) ;
    color: var(--white-color) ;
}

.section_logo {
    width: auto ;
    height: 40px ;
    object-fit: cover ;
}

.section_text {
    font-size: 12px ;
    color: var(--white-color) ;
    max-width: 480px ;
}

.box {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    padding: 32px ;
    background: var(--white-color) ;
    border-radius: 12px ;
    width: calc(100% - 32px * 2) ;
    height: calc(100% - 32px * 2) ;
}

.icon-xxs {
    width: 20px ;
    height: calc(20px - 2px) ;
    padding-top: 2px;
    border-radius: 2px 20px 20px 20px ;
    background-color: var(--gray-color) ;
    color: var(--white-color) ;
    text-align: center ;
    font-size: 10px ;
}

.icon-xs {
    width: 24px ;
    height: 24px ;
    border-radius: 2px 24px 24px 24px ;
    background-color: var(--green-color) ;
    color: var(--white-color) ;
    text-align: center ;
    line-height: 24px ;
    font-size: 14px ;
}

.icon-s {
    width: 32px ;
    height: 32px ;
    border-radius: 4px 32px 32px 32px ;
    background-color: var(--green-color) ;
}

.icon-m {
    width: 40px ;
    height: 40px ;
    border-radius: 4px 40px 40px 40px ;
    background-color: var(--green-color) ;
}

@media screen and (min-width: 768px) {
    .section_title {
        font-size: 24px ;
        margin-bottom: 80px ;
    }

    .section_title-accent {
        margin: 0 24px ;
        padding: 12px 48px ;
        font-size: 40px ;
        border-radius: 4px 48px 48px 48px ;
    }

    .section_logo {
        height: 64px ;
    }

    .section_text {
        font-size: 14px ;
        max-width: 800px ;
    }
}
/* 
|
|
| 悩み
|
|
*/
.trouble {
    position: relative ;
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.trouble_container {
    position: relative ;
    display: flex ;
    flex-direction: column;
    justify-content: center ;
    align-items: center ;
    padding: 80px 0 160px;
    width: 100% ;
    max-width: 640px ;
}

.trouble_box {
    width: calc(100% - 20px * 2) ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.trouble_list {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: start ;
    row-gap: 40px ;
    padding: 80px 48px 120px ;
}

.trouble_item {
    position: relative ;
    display: flex ;
    flex-direction: row ;
    justify-content: start ;
    align-items: start ;
    column-gap: 8px ;
}

.trouble_textbox {
    display: flex ;
    flex-direction: column ;
    width: calc(100% - 32px) ;
}

.trouble_title {
    width: 100% ;
    height: calc(32px - 2px) ;
    padding-top: 2px ;
    font-size: 16px ;
    vertical-align: text-top ;
    white-space: nowrap ;
    color: var(--text-color) ;
    margin-bottom: 8px ;
}

.trouble_text {
    font-size: 12px ;
    color: var(--text-color) ;
}

.trouble_mascot_box {
    position: absolute ;
    bottom: 40px ;
    right: 50% ;
    transform: translateX(40%) ;
    justify-content: center ;
    align-items: center ;
}

.trouble_mascot_inner {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.trouble_mascot_image {
    width: 160px ;
    height: auto ;
    object-fit: cover ;
}

.trouble_mascot_textbox, 
.trouble_mascot_text {
    color: var(--text-color);
    width: auto ;
}

.trouble_mascot_textbox {
    position: absolute ;
    top: 0;
    right: -72px ;
}

.trouble_mascot_text::before,
.trouble_mascot_text::after {
    background: var(--text-color) ;
}

@media screen and (min-width: 768px) {
    .trouble_mascot_box {
        bottom: 40px ;
        right: 24px ;
        transform: translateX(0) ;
    }
}

@media screen and (min-width: 960px) {
    .trouble_mascot_textbox {
        right: -128px ;
    }
}
/* 
|
|
| 概要
|
|
*/
.about {
    position: relative ;
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    background-color: var(--green-color) ;
}

.about_container {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 56px 32px ;
    width: calc(100% - 32px * 2) ;
    max-width: 640px ;
}

.about_textbox {
    display: flex ;
    flex-direction: column ;
    justify-content: start ;
    align-items: center ;
    margin-bottom: 24px ;
}

.about_textbox .section_title {
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: 8px ;
    font-size: 16px ;
    color: var(--white-color);
    margin-bottom: 32px ;
}

.about_subtitle {
    font-size: 16px ;
    color: var(--white-color) ;
    margin-bottom: 16px ;
    text-align: center;
}

.about_text {
    font-size: 12px ;
    color: var(--white-color) ;
}

.about_imgbox {
    position: relative ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    width: 100% ;
    max-width: calc(320px + (104px / 2)) ;
    height: 264px ;
}

.about_phone_img {
    position: absolute ;
    bottom: 0 ;
    left: 0 ;
    width: 104px ;
    height: auto ;
    object-fit: cover ;
    z-index: 200;
}

.about_pc_img {
    position: absolute ;
    top: 0 ;
    right: 0 ;
    width: 320px ;
    height: auto ;
    object-fit: cover ;
}

@media screen and (min-width: 768px) {
    .about_textbox {
        margin-bottom: 48px ;
    }
    
    .about_textbox .section_title {
        gap: 16px ;
        font-size: 28px ;
    }

    .about_subtitle {
        font-size: 24px ;
        margin-bottom: 8px ;
    }
    
    .about_text {
        font-size: 16px ;
    }
}

@media screen and (min-width: 960px) {
    .about_container {
        flex-direction: row ;
        justify-content: start ;
        max-width: 1000px ;
        padding: 80px 40px ;
        gap: 40px ;
    }

    .about_textbox {
        align-items: start ;
        margin-bottom: 24px ;
    }

    .about_subtitle {
        text-align: start;
    }

    .about_phone_img {
        width: 120px ;
    }
    .about_pc_img {
        width: 360px ;
    }
    .about_imgbox {
        width: 1000px ;
        height: 296px;
    }
}
/* 
|
|
| 選ばれる理由
|
|
*/
.reason {
    position: relative ;
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.reason_container,
.step_container,
.faq_container,
.plan_container,
.function_container {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 56px 32px ;
    width: calc(100% - 32px * 2) ;
}

.reason_container .section_title,
.support_container .section_title,
.step_container .section_title,
.faq_container .section_title,
.plan_container .section_title,
.function_container .section_title {
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: 8px ;
    font-size: 16px ;
    color: var(--text-color) ;
    margin-bottom: 32px ;
}

.reason_box {
    width: 100%;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.reason_list {
    display: flex ;
    flex-direction: row ;
    justify-content: center ;
    align-items: center ;
    align-content: center ;
    gap: 80px 64px ;
    flex-wrap: wrap;
    padding: 40px 0 120px ;
    max-width: 320px ;
}

.reason_item {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    row-gap: 8px ;
    max-width: 320px ;
}

.reason_imgbox {
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    margin-bottom: 16px ;
}

.reason_img {
    height: 120px ;
}

.reason_textbox {
    text-align: center;
    margin-bottom: 16px ;
}

.reason_title {
    font-size: 16px ;
    height: 32px ;
    color: var(--green-color) ;
    white-space: nowrap ;
}

.reason_text {
    font-size: 12px ;
    color: var(--text-color) ;
}

@media screen and (min-width: 768px) {
    .reason_list {
        display: grid ;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
        padding: 0;
        list-style: none;
        max-width: 1200px ;
    }

    .reason_list:only-child {
        display: flex;
        justify-content: center;
    }

    .reason_item {
        max-width: 320px ;
    }

    .reason_container .section_title,
    .support_container .section_title,
    .step_container .section_title,
    .faq_container .section_title,
    .plan_container .section_title,
    .function_container .section_title {
        font-size: 24px ;
    }
}
/* 
|
|
| contact_label
|
|
*/
.contact_label {
    position: relative ;
    width: 100% ;
    background-color: var(--green-color) ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.contact_label_container {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 24px ;
    width: calc(100% - 24px * 2) ;
    gap: 24px ;
}

.contact_label_mascot_box {
    width: 100% ;
}

.contact_label_textbox {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    margin-bottom: 24px ;
    width: 100% ;
}

.contact_label_title {
    display: flex ;
    justify-content: center ;
    align-items: center ;
    font-size: 16px ;
    color: var(--white-color) ;
    margin-bottom: 16px ;
    text-align: center ;
    white-space: nowrap ;
}

.contact_label_title img {
    width: 160px ;
    height: auto ;
    margin: 0 4px ;
}

.contact_label_text {
    width: 100%;
    text-align: start ;
    color: var(--white-color) ;
    font-size: 12px ;
    margin-bottom: 16px ;
}

.contact_label_btnbox {
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: 12px ;
    width: 100% ;
}

.contact_label_mascot_box {
    position: relative ;
    padding-left: 40px ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    width: calc(100% - 40px) ;
}

.contact_label_mascot_image,
.contact_label_mascot_box::before {
    width: 160px ;
    height: 160px ;
}

.contact_label_mascot_image {
    object-fit: cover ;
}

.contact_label_mascot_box::before {
    content: '' ;
    position: absolute ;
    top: 0 ;
    right: 50% ;
    transform: translateX(32%) ;
    z-index: 100 ;
    background-image: url("../img/onigiri/onigiri-koshi.png") ;
    background-size: cover ;
}

@media screen and (min-width: 768px) {
    .contact_label_container {
        flex-direction: row ;
        padding: 56px 0 ;
        max-width: 720px ;
        gap: 24px ;
    }

    .contact_label_mascot_image,
    .contact_label_mascot_box::before {
        width: 224px ;
        height: 224px ;
    }

    .contact_label_title {
        font-size: 20px ;
    }

    .contact_label_title img {
        width: 200px ;
        margin: 0 16px ;
    }

    .contact_label_text {
        font-size: 12px ;
        margin-bottom: 32px ;
    }

    .contact_label_mascot_box {
        max-width: 240px ;
        padding-left: 0 ;
    }
}

@media screen and (min-width: 960px) {
    .contact_label_container {
        flex-direction: row ;
        justify-content: center ;
        align-items: center ;
        padding: 56px 0 ;
        max-width: 1000px ;
        gap: 24px ;
    }

    .contact_label_mascot_image,
    .contact_label_mascot_box::before {
        width: 360px ;
        height: 360px ;
    }

    .contact_label_title {
        font-size: 28px ;
    }

    .contact_label_title img {
        width: 320px ;
        margin: 0 16px ;
    }

    .contact_label_text {
        font-size: 16px ;
        margin-bottom: 32px ;
    }

    .contact_label_mascot_box {
        max-width: 300px ;
        padding-left: 0 ;
    }
}
/* 
|
|
| サポート体制
|
|
*/
.support {
    position: relative ;
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.support_container {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 56px 16px ;
    width: calc(100% - 16px * 2) ;
}

.support_list {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    row-gap: 40px ;
    padding: 40px 32px 80px ;
    width: calc(100% - 32px * 2) ;
    max-width: 400px ;
}

.support_item {
    position: relative ;
}

.support_item_inner {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 24px 0 ;
    gap: 24px ;
}

.support_imgbox {
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.support_imgbox img {
    width: 100px ;
    height: auto ;
    object-fit: cover ;
}

.support_textbox {
    width: 100% ;
}

.support_title {
    width: 100% ;
    font-size: 16px ;
    color: var(--green-color) ;
    margin-bottom: 8px ;
    text-align: center;
}

.support_text {
    width: 100% ;
    font-size: 12px ;
    color: var(--text-color) ;
    text-align: start ;
}

@media screen and (min-width: 768px) {
    .support_list {
        max-width: 800px ;
    }

    .support_item {
        padding: 16px 32px ;
    }    

    .support_item_inner {
        flex-direction: row ;
        justify-content: start ;
        align-items: center ;
    }

    .support_imgbox img {
        width: 120px ;
    }

    .support_title {
        text-align: start ;
    }
}
/* 
|
|
| 導入の流れ
|
|
*/
.step {
    position: relative ;
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    background-color: var(--green-color) ;
}

.step_container .section_title, 
.step_container .section_text {
    color: var(--white-color) ;
}

.step_box {
    width: 100% ;
    margin: 32px 0 ;
    max-width: 560px ;
}

.step_list {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    gap: 24px ;
    width: 100% ;
}

.step_item {
    position: relative ;
    display: flex ;
    flex-direction: row ;
    justify-content: start ;
    align-items: start ;
    gap: 16px ;
    /* min-width: 180px ; */
}

.step_iconbox .icon-m {
    display: flex ;
    justify-content: center ;
    align-items: center ;
    vertical-align: text-top ;
    font-size: 18px ;
    color: var(--white-color) ;
}

.step_textbox {
    display: flex ;
    flex-direction: column ;
    gap: 8px ;
}

.step_title {
    height: 40px ;
    display: flex ;
    align-items: center ;
    font-size: 20px ;
    color: var(--font-color) ;
}

.step_text {
    font-size: 12px ;
    color: var(--font-color) ;
}

@media screen and (min-width: 768px) {
    .step_box {
        margin: 64px 0 ;
        max-width: 800px ;
    }

    .step_item {
        min-height: 104px ;
    }
}
/* 
|
|
| よくある質問
|
|
*/
.faq {
    position: relative ;
    width: 100% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
}

.faq_container .section_text {
    color: var(--text-color) ;
}

.faq_list {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    gap: 24px ;
    width: 100% ;
    margin: 32px 80px ;
}

.faq_item {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    gap: 24px ;
    width: 100% ;
}

.faq_item input {
    display: none ;
}

.faq_question,
.faq_answer {
    flex-direction: row ;
    align-items: start ;
    padding: 16px 24px ;
    gap: 16px ;
}

.faq_question {
    display: flex ;
}

.faq_question .icon-s,
.faq_answer .icon-s {
    width: 32px ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    color: var(--white-color) ;
}

.faq_answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq_toggle:checked ~ .faq_answer {
    display: flex;
    max-height: 240px;
    opacity: 1;
    transform: translateY(0);
}

.faq_textbox {
    display: flex ;
    flex-direction: column ;
    justify-content: start ;
    width: calc(100% - 32px - 16px) ; /* icon幅(32px) + gap(16px) */
}

.faq_text {
    display: flex ;
    justify-content: start ;
    align-items: center ;
    width: 100% ;
    height: 32px ;
}

.faq_textbox span {
    font-size: 12px ;
    color: var(--font-color) ;
    margin-top: 8px ;
}

@media screen and (min-width: 768px) {
    .faq_list {
        max-width: 1000px ;
    }
    
    .faq_list {
        padding: 40px 32px 80px ;
        width: calc(100% - 32px * 2) ;
        max-width: 1000px ;
    }

}
/* 
|
|
| プラン
|
|
*/
.plan {
    background: var(--bg-color) ;
}

.plan_container {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 56px 32px ;
    width: calc(100% - 32px * 2) ;
}

.plan_box {
    width: 100% ;
    max-width: calc((240px + 40px) * 3 + 24px * 2) ;
    display: flex ;
    flex-direction: column ;
    justify-content: start ;
    align-items: center ;
}

.plan_item {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: start ;
    align-items: center ;
    gap: 24px ;
    width: 100% ;
    height: 100% ;
}

.plan_block {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    width: 240px ;
    height: 224px ;
    background: var(--white-color) ;
    border-radius: 16px ;
    box-shadow: 8px 8px 0 0 var(--shadow-color);
}

.plan_textbox {
    position: relative ;
    font-size: 12px ;
    padding: 24px ;
    width: calc(100% - 24px * 2) ;
    height: 100% ;
    color: var(--font-color) ;
    margin-bottom: 16px ;
}

.plan_text {
    position: absolute ;
    top: 17% ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    gap: 4px ;
    padding: 0 8px ;
    transform: rotate(-15deg);
    font-size: 10px ;
    text-align: center ;
}

.plan_text::before,
.plan_text::after {
    content: '' ;
    position: absolute ;
    bottom: 0 ;
    width: 20px ;
    height: 1.6px ;
    border-radius: 1.6px;
    background-color: var(--text-color) ;
}

.plan_text::before {
    left: 0 ;
    transform: rotate(245deg) ;
    transform-origin: bottom left;
}

.plan_text::after {
    right: 0 ;
    transform: rotate(-245deg) ;
    transform-origin: bottom right;
}

.plan_title {
    position: relative;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    width: 100% ;
    height: 100% ;
    font-size: 16px ;
    gap: 4px ;
}

.plan_title-accent {
    font-size: 40px ;
    letter-spacing: 2px ;
}

.text-blue {
    color: var(--blue-color) ;
}

.text-brown {
    color: var(--brown-color) ;
}

.text-black {
    color: var(--black-color) ;
}

.text-blue::before,
.text-brown::before,
.text-black::before {
    position: absolute ;
    top: 30% ;
    left: 36% ;
    transform: translate(-50%, -50%) ;
    font-size: 10px ;
}

.text-blue::before {
    content: 'AO-OBI' ;
    color: var(--blue-color) ;
}

.text-brown::before {
    content: 'CHA-OBI' ;
    color: var(--brown-color) ;
}

.text-black::before {
    content: 'KURO-OBI' ;
    color: var(--black-color) ;
}

.plan_imgbox {
    position: absolute ;
    bottom: 16px  ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    width: 100% ;
    height: auto ;
}

.plan_imgbox img {
    width: 100% ;
    height: auto ;
    object-fit: cover ;
}

.plan_listbox {
    position: relative ;
    width: 100% ;
    max-width: 240px;
}

.plan_function_list {
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: start ;
    gap: 12px ;
    width: calc(100% - 8px * 2) ;
    padding: 16px 8px 40px ;
}

.plan_function_item_inner {
    position: relative ;
    display: flex ;
    flex-direction: row ;
    justify-content: start ;
    align-items: center ;
    gap: 14px ;
}

.plan_function_item_inner .icon-xs i {
    width: 24px ;
    height: 24px ;
    object-fit: cover ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    color: var(--white-color) ;
}

.plan_function_title {
    position: relative ;
    display: flex ;
    justify-content: start ;
    align-items: center ;
    height: 32px ;
    font-size: 14px ;
    white-space: nowrap ;
}
    
.plan_function_item_inner .icon-xxs {
    cursor: pointer ;
}

.plan_function_textbox {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 24px;
    right: -54px;
    background-color: var(--bg-color);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease, transform 0.3s ease;
    color: var(--text-color) ;
}

.plan_function_item:hover .plan_function_textbox {
    opacity: 1;
    transform: translatex(0);
    overflow: hidden ;
}

.plan_item-notice .plan_function_item_inner:hover .plan_function_textbox {
    opacity: 0 ;
}

.function_text {
    font-size: 12px ;
    color: var(--text-color) ;
}

.plan_item-notice .plan_function_item_inner .icon-xs i, 
.plan_item-notice .plan_function_item_inner .icon-xxs {
    display: none ;
}

.plan_item-notice .plan_function_item_inner .icon-xs {
    background-color: var(--gray-color) ;
}

.plan_item-notice .plan_function_title {
    color: var(--gray-color) ;
}

@media screen and (min-width: 768px) {
    .plan_box {
        flex-direction: row;
        justify-content: start;
        align-items: start;
        gap: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .plan_box::-webkit-scrollbar {
        display: none; /* Chrome, Safari, and Opera */
    }

    .plan_item {
        scroll-snap-align: center;
    }
    
}

@media screen and (min-width: 960px) {
    .plan_box {
        flex-direction: row ;
        justify-content: start;
        align-items: center;
        gap: 24px;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
}
/* 
|
|
| footer
|
|
*/
.footer {
    background-color: var(--bg-color);
    padding: 40px 16px;
    color: var(--text-color);
    text-align: center;
    width: calc(100% - 16px * 2) ;
}

.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 0 0 ;
}

.footer_logo img {
    width: 280px;
    height: auto;
    object-fit: cover;
}

.footer_nav {
    margin: 16px 0;
}

.footer_nav_list {
    display: flex;
    flex-direction: row ;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_item {
    display: flex;
    flex-direction: column;
    justify-content: start ;
    align-items: start ;
    gap: 16px ;
}

.footer_item a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer_item a:first-child {
    font-size: 18px ;
}

.footer_item a:hover {
    color: var(--green-color);
}

.footer_contact {
    position: relative ;
    display: flex ;
    flex-direction: row ;
    justify-content: center ;
    gap: 24px;
    font-size: 12px;
    padding: 48px 40px 40px ;
    box-sizing: border-box ;
    width: 100vw ;
}

.footer_contact::before {
    content: '' ;
    position: absolute ;
    top: 0 ;
    left: 50% ;
    transform: translateX(-50%) ;
    width: calc(100% - 40px * 2) ;
    height: 4px ;
    border-radius: 4px ;
    background-color: var(--gray-light-color) ;
}

.footer_contact a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer_contact a:hover {
    color: var(--green-color);
}

.footer_copyright {
    margin-top: 24px;
    font-size: 12px;
    color: var(--gray-color);
}
/* 
|
|
| 機能紹介
|
|
*/
.function_container {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 56px 0 ;
    width: 100% ;
}

.function_container .section_title {
    color: var(--white-color) ;
}

.function_box {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    padding: 48px 0 ;
    width: 100% ;
    overflow: hidden ;
}

.function_slider {
    position: relative ;
    width: 100vw ;
    margin: 0 auto ;
    overflow: hidden;
    display: flex ;
    justify-content: center ;
    /* align-items: center ; */
    align-items: stretch ;
    /* padding: 0 48px ; */
    box-sizing: border-box ;
    gap: 10vw ;
}

.function_item {
    position: relative ;
    display: flex ;
    flex-direction: column ;
    justify-content: space-between ;
    align-items: center ;
    /* left: 24px ; */
    width: 90vw ;
    height: inherit;
    /* max-width: 90% ; */
    box-sizing: border-box ;
    padding: 20px ;
    transition: all 0.5s ease ;
    flex-shrink: 0 ;
    gap: 24px ;
    background: var(--bg-color) ;
    margin-bottom: 16px ;
    /* transform: translateX(50%) ; */
}

/* 表示しているスライド以外は::beforeを使用 */
.function_item.inactive::before {
    content: '' ;
    position: absolute ;
    top: 0 ;
    left: 0 ;
    width: 100% ;
    height: calc(100% + 4px) ;
    background-color: var(--green-color) ;
    opacity: 0.4 ;
    z-index: 100 ;
    transition: all 0.5s ease ;
}

.function_textbox {
    width: 100% ;
}

.function_titlebox {
    display: flex ;
    justify-content: start ;
    align-items: start ;
    gap: 8px ;
    font-size: 16px ;
    color: var(--text-color) ;
    margin-bottom: 24px ;
}

.function_title {
    width: calc(100% - 32px - 8px) ; /* icon幅(32px) + gap(8px) */
    height: calc(32px - 4px) ;
    padding-top: 4px ;
    font-size: 18px ;
}

.function_aboutbox {
    height: calc(100% - 32px - 24px) ; /* タイトル高(32px) + mb(24px) */
    display: flex ;
    flex-direction: column ;
    justify-content: start ;
    align-items: start ;
    gap: 16px ;
}

.function_about_title {
    font-size: 16px ;
    color: var(--green-color) ;
}

.function_about_text {
    font-size: 12px ;
    color: var(--text-color) ;
}

.function_imgbox {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1; /* Maintains the square ratio */
    position: relative ;
}

.function_imgbox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button_area {
    position: absolute ;
    top: 50% ;
    max-width: 1200px ;
    width: calc(100vw - 32px * 2 - 8px) ;
    display: flex ;
    justify-content: space-between ;
    transform: translateY(-50%) ;
    /* background-color: rgba(0, 0, 255, 0.7); */
}

.prev,
.next {
    position: relative ;
    background: var(--bg-color);
    width: 48px ;
    height: 48px ;
    color: var(--green-color) ;
    border: 4px solid var(--green-color) ;
    box-sizing: border-box ;
    padding: 10px ;
    cursor: pointer ;
    border-radius: 4px 48px 48px 48px ;
    transition: all 0.2s ease-in ;
    z-index: 100 ;
}

.prev:before,
.next:before {
    content: '' ;
    position: absolute ;
    top: 50% ;
    left: 50% ;
    width: 16px ;
    height: 16px ;
    background-image: url('../img/icon/arrow-solid.svg') ;
    background-size: cover ;
    background-position: center ;
    background-repeat: no-repeat ;
    transform: translate(-50%, -50%) rotate(-135deg) ;
}

.prev {
    left: 0 ;
    transform: rotate(-45deg) ;
}

.next {
    right: 0 ;
    transform: rotate(135deg);
}

.prev:hover{
    left: -6px ;
}

.next:hover {
    right: -6px ;
}

.dot_box  {
    position: absolute ;
    bottom: 0 ;
    left: 0 ;
    display: flex ;
    justify-content: center ;
    align-items: center ;
    width: 100% ;
    gap: 12px ;
    height: 32px ;
}

.dot {
    width: 16px ;
    height: 16px ;
    border-radius: 2px 16px 16px 16px ;
    cursor: pointer ;
    background: var(--bg-color) ;
}

.dot.active {
    background-color: #44E274 ;
}

@media screen and (min-width: 768px) {
    .function_slider {
        padding: 0 120px ;
        /* gap: 10vw; */
    }

    .function_item {
        flex-direction: row ;
        justify-content: start ;
        align-items: start ;
        width: 70vw ;
        padding: 40px ;
    }

    .function_title {
        font-size: 20px ;
        
    }

    .function_about_title {
        font-size: 18px ;
    }

    .function_about_text {
        font-size: 14px ;
    }

    .function_imgbox {
        max-width: 380px;
        top: 50% ;
        transform: translateY(-50%) ;
    }

    .button_area {
        max-width: 76vw ;
        width: calc(100vw - 100px * 2) ;
    }

    .prev,
    .next {
        width: 56px ;
        height: 56px ;
        border-radius: 4px 56px 56px 56px ;
    }

    .prev:before,
    .next:before {
        width: 20px ;
        height: 20px ;
    }
}