/* styles.css */ 

html {
    font-size: 100%;
}

body {
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu gothic medium", "游ゴシック medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: rgb(0, 0, 0);
    z-index: 1;

}

:root {
    --maincolor: #C1272D;
    --subcolor: #E6E6E6;
    --pointcolor: #F7E3E4;
    --text-color: #000;
    --text-subcolor: #fff;
    --text-color-hover: #484848;
    --text-subcolor-hover: #b0b0b0;
    --line-color: #00B900;
}

span {

    color: var(--maincolor);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* 
共通キーフレーム 
*/
/* ノーマルフェードイン */
@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*下からフェイドインアニメーション*/
@keyframes slideinY {

    /*slideinYの変化を記述*/
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左からスライドインアニメーション */
@keyframes slidein-left {
    0% {
        transform: translateX(-50);
    }

    100% {
        transform: translateX(0);
    }
}

/* ホバリングアニメーション */
@keyframes floating {
    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

/* */
/*ハンバーガーメニューここから↓↓↓*/
.hamburger {
    display: block;
    z-index: 2;
}

.sp-header {
    position: fixed;
    width: 100%;
    height: 52px;
    margin-top: 0px;
}

/* Nav items */
.menu {
    list-style: none;
    position: absolute;
    width: 20%;
    max-width: 200px;
    height: auto;
    top: 0;
    left: 10px;
    margin-top: 52px;
    padding: 0 0 10px 0;
    border-radius: 20px;
    clear: both;
    background: var(--maincolor);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(0, 1);
    transform-origin: top;
    opacity: 0.8;
}

/* Hamburger menu button */
.menu.active {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 100%;
    text-transform: capitalize;
    color: var(--text-subcolor);
    opacity: 0;
    transition: 0.5s;
}

.menu li {
    padding: 15px 0;
    margin: 0 10%;
    opacity: 0;
    transition: 0.5s;
}

.menu li:not(:first-child) {
    border-top: 1px solid var(--text-subcolor);
}

.menu.menu.active a,
.menu.menu.active li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

/*　メニューアイコン */
.menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
    background: var(--maincolor);
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: var(--maincolor);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
    top: 9px;
}

.navicon:after {
    bottom: 9px;
}

/* Hamburger Menu Animation Start */
.navicon.active:before {
    transform: rotate(-45deg);
    top: 0;
}

.navicon.active::after {
    transform: rotate(45deg);
    bottom: 0;
}


.navicon.active {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger Menu Animation End */
/*ハンバーガーメニューここまで↑↑↑*/

.split-bar {
    background-color: var(--maincolor);
    width: 100%;
    height: 15px;
    margin: 0px 0;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

/* 料金ボックス */
.pickup-fee {
    position: absolute;
    background-color: var(--line-color);
    border-radius: 20px;
    top: 100px;
    right: 40px;
    z-index: 4;
    animation: floating 2s infinite;
}

.pickup-fee h2 {
    color: var(--text-subcolor);
    font-size: 36px;
    text-align: center;
    padding: 10px 20px;
}


/* ヘッダーとナビゲーション */
.logo {
    height: 50px;
    margin-top: 14px;
    margin-left: 20px;
}

header {
    background-color: var(--maincolor);
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 25px;
    justify-content: flex-end;
}

header nav li:nth-child(1) {
    animation: fadein 2s 1 2.5s forwards;
}

header nav li:nth-child(2) {
    animation: fadein 2s 1 2.7s forwards;
}

header nav li:nth-child(3) {
    animation: fadein 2s 1 2.9s forwards;
}

header nav li:nth-child(4) {
    animation: fadein 2s 1 3.1s forwards;
}

header nav li:nth-child(5) {
    animation: fadein 2s 1 3.3s forwards;
}

header nav li:nth-child(6) {
    animation: fadein 2s 1 3.8s forwards;
}

header nav ul li {
    margin-left: 20px;
    opacity: 0;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text-subcolor);
}

header nav ul li :hover {
    color: var(--text-subcolor-hover);
}

/* フルスクリーン画像 */
.section1 {
    margin: 0 0;
    padding: 0 0;
    background-color: var(--pointcolor);
    animation: fadein 3s 1 forwards;
    position: relative;
    z-index: 3;
}

.fullscreen-image {
    text-align: center;
    height: auto;
    width: 100%;
}

.fullscreen-image img {
    width: 100vw;
    height: 100%;
}

/*スライドショー*/
#slide-img {
    position: relative;
}

#slide-img h2 {
    text-align: center;
    margin-top: 20px;
}

/* slickプラグイン
    スライドショー */
.slide-items {
    width: 500px;
    margin: 20px auto 0;
}

.slide-items img {
    width: 100%;
    object-fit: cover;
}

.slick-next {
    right: -20px;
}

.slick-prev {
    left: -50px;
}

.slick-prev::before,
.slick-next::before {
    color: #000;
    font-size: 50px;
}

.slick-prev:before,
.slick-next:before {
    color: var(--maincolor);
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--maincolor);
}

.slick-dots li button:before {
    font-size: 20px;
    top: 6px;
    color: var(--maincolor);
}

/* スライダー用キーフレーム */
@keyframes slider {
    0% {
        transform: translateX(0);
    }

    18% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-600px);
    }

    38% {
        transform: translateX(-600px);
    }

    40% {
        transform: translateX(-1200px);
    }

    58% {
        transform: translateX(-1200px);
    }

    60% {
        transform: translateX(-1800px);
    }

    78% {
        transform: translateX(-1800px);
    }

    80% {
        transform: translateX(-2400px);
    }

    100% {
        transform: translateX(-2400px);
    }
}

/* プロモ動画リンク */
.promo-move {
    text-align: center;
}

.promo-move a {
    text-decoration: underline;
}

.promo-move a:visited {
    color: var(--text-color);
}

.promo-move a:hover {
    color: var(--maincolor);
}

/*お悩みパート*/

#section3 {
    background-color: var(--pointcolor);
    border-radius: 20px;
    padding: 20px 0px;
    text-align: center;
    margin: 50px 0 50px;
}

#section3 h2 {
    text-align: center;
    font-size: 150%;
    margin-bottom: 50px;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section3 .question {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}

#section3 .question img {
    height: auto;
    width: 250px;
    animation: floating 2s infinite;
}

#section3 ul {
    text-align: center;
    display: inline-block;
    list-style: none;
    margin: 50px 0 0;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section3 li {
    text-align: left;
}


/*特徴と利点*/
#section4 div {
    text-align: center;
    margin: 0px 20px 0px;
}

#section4 .group ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    place-items: center;
    background-color: var(--subcolor);
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    margin: 10px 0px 0;
}

#section4 h2 {
    text-align: center;
    margin: 30px auto 30px;
    font-size: 150%;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section4 .group li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 500px;
    margin-top: 10px;
    margin-bottom: 50px;
}

#section4 .group li p {
    font-size: 80%;
    text-align: left;
    animation: slideinY forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}


#section4 .group h3 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}


#section4 .group img {
    width: 150px;
}



/*お客様の声*/

#section5 .group {
    background-color: var(--pointcolor);
    border-radius: 20px;
    padding: 20px 0;
    text-align: center;
    margin: 20px 50px 50px;
}

#section5 h2 {
    text-align: center;
    font-size: 150%;
    margin-bottom: 20px;
    margin-top: 20px;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section5 .onemove {
    max-width: 560px;
}

#section5 .onemove h2 {
    font-size: 120%;
    margin-bottom: 0;
}

#section5 .onemove iframe {
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section5 .onemove h3 {
    text-align: right;
    animation: slideinY forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section5 .onemove p {
    animation: slideinY forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section5 .onemove span {
    font-size: 150%;
}

#section5 .staff-voice {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 100px 0;
}

#section5 .staff-voice img {
    height: auto;
    width: 400px;
    margin-top: 0;
}

#section5 .staff-voice-text {
    text-align: center;
    margin: auto;
    width: 700px;
}

#section5 .staff-voice-text p {
    text-align: left;
    font-size: 90%;
    animation: slideinY forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section5 .staff-voice-text h3 {
    text-align: right;
    font-size: 100%;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 50px;
    animation: slideinY forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}


/*ご利用料金*/
#about-fees {
    text-align: center;
    background-color: var(--subcolor);
    border-radius: 20px;
    margin: 50px 0;
    padding: 20px 0;
}

#about-fees h2 {
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

.about-fees {
    align-items: center;
    margin: 0 auto;
}

/* ５回無料キャンペーン用ボックス */
#about-fees .campaign-5 {
    background-color: #fcb7ba;
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto 50px;
    animation: floating 2s infinite;
    width: 60%;
}

#about-fees .campaign-5 h3 {
    font-size: 130%;
    text-shadow: 0.8px 0.8px 0 #FFF, -0.8px -0.8px 0 #FFF,
        -0.8px 0.8px 0 #FFF, 0.8px -0.8px 0 #FFF,
        0px 0.8px 0 #FFF, 0-0.8px 0 #FFF,
        -0.8px 0 0 #FFF, 0.8px 0 0 #FFF;
}

#about-fees .campaign-5 h3 span {
    color: #03d931;
}

#about-fees .campaign-5 p {
    font-size: 100%;
    padding: 0 50px;
    max-width: 100%;
    margin: 10px auto 0;
    text-align: center;
}

/* 料金表 */
.fee-box {
    margin: 0 50px;
}

.fee-box p {
    font-size: 70%;
    line-height: 1em;
}

.fee-container {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-gap: 20px;
}

/* grid表示 */
.fee-item {
    display: grid;
    background-color: var(--text-subcolor);
    border-radius: 20px;
    padding: 10px 10px;
    height: 400px;
    position: relative;
}

.plan-name1 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--maincolor);
    font-size: 130%;
    width: 90%;
}

.fee-price1 {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200%;
    color: var(--maincolor);
    width: 90%;
}

.plan-name2 {
    color: var(--maincolor);
    font-size: 130%;
}

.fee-price2 {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200%;
    color: var(--maincolor);
    width: 90%;
}

.fee-item1 p {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70%;
    width: 90%;
}

.fee-item1 ul {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.fee-item1 li {
    list-style: none;
    font-size: 80%;
    text-align: left;
}

.fee-boxs {
    padding: 10px 10px;
}

.fee-box2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.fee-item2 {
    position: relative;
    display: grid;
    background-color: var(--pointcolor);
    border-radius: 20px;
    padding: 10px 0px;
    margin: 0;
}

.fee-item2:nth-child(1) {
    border-color: var(--maincolor);
    border-style: solid;
    border-width: 3px;
}

.rcm-title {
    padding: .2em;
    font-size: 80%;
    font-weight: normal;
    border-radius: 5px;
    background-color: var(--maincolor);
    color: var(--text-subcolor);
    position: absolute;
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
}

.fee-item2 p {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70%;
    width: 90%;
}

.fee-item2 ul {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.fee-item2 li {
    list-style: none;
    font-size: 80%;
    text-align: left;
}

.start-btn1 {
    width: 150px;
    height: 50px;
    background-color: var(--maincolor);
    border-radius: 10px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.start-btn2 {
    width: 150px;
    height: 50px;
    background-color: var(--maincolor);
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.start-btn1 h4,
.start-btn2 h4 {
    font-size: 120%;
    font-weight: normal;
    text-align: center;
    margin: 10px 0;
    color: var(--text-subcolor);
}

.start-btn1 a,
.start-btn2 a {
    text-decoration: none;
    color: var(--text-subcolor);
}

.start-btn1 a:hover,
.start-btn2 a:hover {
    color: var(--pointcolor);
}

#about-fees .payment {
    text-align: left;
    width: 100%;
    padding: 0 auto;
    margin: 20px 0 0 50px;
    font-size: 80%;
    font-weight: normal;
}

/*キャンペーン*/
#campaign {
    background-color: var(--pointcolor);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin: 50px 10% 20px;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#campaign h2 {
    font-size: 150%;
    margin-bottom: 20px;
}

#campaign ul {
    display: inline-block;
    text-align: center;
}

#campaign li {
    text-align: left;
    font-size: 120%;
    font-weight: bold;
    list-style: none;
}

/*登録リンク*/
.section6 {
    text-align: center;
    margin: 100px auto 0;
}

#section6 h2 {
    text-align: center;
    font-size: 150%;
    animation: fadein forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

.register {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    margin: 50px 0;
    animation: slideinY forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

.register img {
    max-width: 200px;
}

#section6 .official-line {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    margin: 50px 0;
    animation: slideinY forwards;
    animation-timeline: view();
    animation-range: contain 0% contain 10%;
    opacity: 0;
}

#section6 .official-line p {
    text-align: center;
    font-size: 100%;
    font-weight: normal;
}

#section6 .official-line img {
    width: 200px;
}

/*注意点*/
.section7 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50 0px;
    margin-top: 2%;
}

.security,
.privacy,
.about-ai {
    background-color: var(--subcolor);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.security h2,
.privacy h2,
.about-ai h2 {
    text-align: center;
    font-size: 100%;
}

.security p,
.privacy p,
.about-ai p {
    margin: 0 100px;
    font-size: 14px;
}


/*フッター*/
footer {
    background-color: var(--maincolor);
    color: var(--text-subcolor);
    padding: 10px;
    text-align: center;
}

footer nav {
    text-align: left;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer nav ul li {
    display: inline-block;
    font-size: 80%;
    margin-right: 10px;
}

footer nav ul li:last-child {
    margin-right: 0;
}

footer nav ul li a {
    color: var(--text-subcolor);
    text-decoration: none;
}

footer nav ul li :hover {
    color: var(--text-subcolor-hover);
}

footer p {
    font-size: 50%;
    margin-top: 5px;
}

/*利用規約とプライバシーポリシーのcss*/
/*privacy-policy.html,terms-of-service.html*/
#terms-privacy {
    margin: 20px auto 20px;
}

#terms-privacy h1 {
    text-align: center;
    font-size: 120%;
    margin-bottom: 20px;
}

#terms-privacy h2 {
    font-size: 90%;
    margin: 30px 0 5px 20px;
}

#terms-privacy p {
    font-size: 80%;
    margin-left: 30px;
}

#terms-privacy li {
    font-size: 80%;
    margin-left: 30px;
    list-style: none;
}

/*特商法ページ*/
/*specified-commercial-transactions.html*/
#specified-commercial-transactions {
    padding: 20px;
}

#specified-commercial-transactions h2 {
    font-size: 120%;
    text-align: center;
}

.specified-commercial-transactions table {
    border: solid 1px;
}

.specified-commercial-transactions th {
    border: solid 1px;
    background-color: var(--subcolor);
    padding: 10px;
    text-align: center;
    font-size: 100%;
}

.specified-commercial-transactions td {
    border: solid 1px;
    text-align: left;
    padding: 0 0 0;
    font-size: 90%;
}

/*
タブレット対応
*/
/*601〜1024pxで表示させるCSS*/
@media screen and (max-width: 1024px) {

    /* ヘッダーとナビゲーション */
    .logo {
        height: 30px;
        margin-top: 10px;
        margin-left: 10px;
    }

    header {
        height: 40px;
        padding: 10px;
    }

    header nav ul {
        margin-top: 20px;
    }

    header nav ul li {
        margin-left: 20px;
    }

    header nav ul li a {
        font-size: 70%;
    }

    /* フルスクリーン画像 */
    .fullscreen-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin: 0;
    }

    /* 料金ボックス */
    .pickup-fee {
        position: absolute;
        background-color: var(--line-color);
        border-radius: 20px;
        top: 50px;
        right: 20px;
        z-index: 4;
        animation: floating 2s infinite;
    }

    .pickup-fee h2 {
        color: var(--text-subcolor);
        font-size: 30px;
        text-align: center;
        padding: 10px;
    }

    /*スライドショー*/
    .slider {
        width: 600px;
        height: 600px;
        overflow: hidden;
        margin: 0 auto;
    }

    .slider-item {
        width: 600px;
        float: left;
        margin: 10px auto 50px;
    }

    img {
        width: 100%;
    }

    .slider-inner {
        width: 600%;
        animation: slider 30s ease 5s infinite both;
    }

    @keyframes slider {
        0% {
            transform: translateX(0);
        }

        18% {
            transform: translateX(0);
        }

        20% {
            transform: translateX(-600px);
        }

        38% {
            transform: translateX(-600px);
        }

        40% {
            transform: translateX(-1200px);
        }

        58% {
            transform: translateX(-1200px);
        }

        60% {
            transform: translateX(-1800px);
        }

        78% {
            transform: translateX(-1800px);
        }

        80% {
            transform: translateX(-2400px);
        }

        100% {
            transform: translateX(-2400px);
        }
    }

    /*お悩みパート*/
    #section3 {
        animation: fadein forwards;
        animation-timeline: view();
        animation-range: contain 0% contain 10%;
        opacity: 0;
    }

    #section3 h2 {
        font-size: 110%;
    }

    #section3 .question {
        display: block;
        gap: 0px;
        margin: 0 0;
    }

    #section3 .question img {
        width: 10%;
    }


    #section3 ul {
        text-align: center;
        display: inline-block;
        width: auto;
        list-style: none;
        margin: 0px 0 0;

    }

    /*特徴と利点*/

    #section4 .group ul {
        grid-gap: 10px;
        margin: 10px 0px 10px;
    }

    #section4 h2 {
        margin: 10px auto 0;
        width: 100%;
    }

    #section4 .group li {
        width: auto;
    }

    #section4 .group p {
        font-size: 70%;
        padding: 0 20px;
    }

    #section4 .group h3 {
        font-size: 80%;
    }

    /*お客様の声*/
    #section5 .group {
        margin: 20px 30px 20px;
    }

    #section5 h2 {
        margin-bottom: 20px;
    }

    #section5 .staff-voice {
        flex-direction: column;
    }

    #section5 .staff-voice img {
        width: 60%;
    }

    #section5 .staff-voice-text {
        width: 100%;
    }

    /*ご利用料金*/
    #about-fees {
        margin: 20px 0;
    }

    #about-fees h2 {
        font-size: 120%;
        margin-bottom: 0px;
    }

    .about-fees {
        flex-direction: column;
    }

    .about-fees img {
        max-width: 100%;
        padding: 0 20px;
    }

    /* ５回無料キャンペーン用ボックス */
    #about-fees .campaign-5 {
        padding: 10px;
        margin: 0 auto 30px;
        width: 80%;
    }

    #about-fees .payment {
        text-align: center;
        width: 100%;
        padding: 0 20px;
        margin: 20px auto 0;
        font-size: 70%;
    }

    /* 料金ボックス */
    .fee-box {
        margin: 0 20px;
    }

    .fee-container {
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }

    /* grid表示 */
    .fee-item {
        height: 400px;
    }

    .plan-name1 {
        top: 20px;
        font-size: 120%;
    }

    .fee-price1 {
        top: 80px;
        font-size: 180%;
    }

    .plan-name2 {
        font-size: 120%;
    }

    .fee-price2 {
        top: 70px;
        font-size: 180%;
    }

    .fee-item1 li {
        list-style: none;
        font-size: 80%;
        text-align: left;
    }

    .fee-boxs {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .fee-item2:nth-child(1) {
        border-width: 2px;
    }

    .rcm-title {
        padding: .2em;
        font-size: 70%;
    }

    /*登録リンク*/
    #section6 {
        margin: 20px auto 0;
    }

    #section6 h2 {
        font-size: 110%;
    }

    .register,
    .official-line {
        flex-direction: column;
        gap: 10px;
    }

    #section6 img {
        animation: slidein-left ease forwards;
    }

    /*プライバシーポリシー*/
    #section7 {
        gap: 10px;
        padding: 10px 0px;
    }

    .security,
    .privacy,
    .about-ai {
        padding: 20px;
        margin-bottom: 20px;
    }

    .security h2,
    .privacy h2,
    .about-ai h2 {
        margin-bottom: 10px;
    }

    .security p,
    .privacy p,
    .about-ai p {
        margin: 0 20px;
        font-size: 80%;
    }
}


/*
スマホ対応
*/
/*〜600pxで表示させるCSS*/
@media screen and (max-width: 600px) {

    .menu {
        list-style: none;
        position: absolute;
        width: 50%;
        max-width: 200px;
        height: auto;
        top: 0;
        left: 10px;
        margin-top: 52px;
        padding: 0 0 10px 0;
        border-radius: 20px;
        clear: both;
        background: var(--maincolor);
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
        transform: scale(0, 1);
        transform-origin: top;
        opacity: 0.8;
    }

    /* ヘッダーとナビゲーション */
    .logo {
        height: 20px;
        width: 52.63px;
    }

    header {
        height: 40px;
        padding: 10px;
    }

    header nav ul {
        margin-top: 20px;
    }

    header nav ul li a {
        font-size: 60%;
        display: none;
    }

    /* 料金ボックス */
    .pickup-fee {
        position: absolute;
        background-color: var(--line-color);
        border-radius: 20px;
        top: 40px;
        right: 10px;
        z-index: 4;
        animation: floating 2s infinite;
    }

    .pickup-fee h2 {
        color: var(--text-subcolor);
        font-size: 16px;
        text-align: center;
        padding: 10px;
    }

    /* フルスクリーン画像 */
    .fullscreen-image img {
        width: 100%;
        height: auto;
        margin: 0px 0 0px;
    }

    /*スライドショー*/
    .slider {
        width: 300px;
        height: 300px;
        overflow: hidden;
        margin: 0 auto;
    }

    .slider-item {
        width: 300px;
        float: left;
        margin: 10px auto 50px;
    }

    img {
        width: 100%;
    }

    .slider-inner {
        /* スライド枚数によってwidth: 100％×枚数を指定 */
        width: 500%;
        /* スマホはディレイタイム2s */
        animation: slider 30s ease 2s infinite both;
    }

    @keyframes slider {
        0% {
            transform: translateX(0);
        }

        18% {
            transform: translateX(0);
        }

        20% {
            transform: translateX(-300px);
        }

        38% {
            transform: translateX(-300px);
        }

        40% {
            transform: translateX(-600px);
        }

        58% {
            transform: translateX(-600px);
        }

        60% {
            transform: translateX(-900px);
        }

        78% {
            transform: translateX(-900px);
        }

        80% {
            transform: translateX(-1200px);
        }

        100% {
            transform: translateX(-1200px);
        }
    }

    .slide-items {
        width: 300px;
        margin: 20px auto 0;
    }

    .promo-move h2 {
        font-size: 100%;
    }

    /*お悩みパート*/

    #section3 {
        margin: 10px 0px 10px;
    }

    #section3 h2 {
        font-size: 110%;
        margin-bottom: 20px;
    }

    #section3 .question {
        display: block;
        justify-content: center;
        gap: 0px;
        margin: 0 0;
    }

    #section3 .question img {
        visibility: hidden;
        width: 0%;
    }

    #section3 ul {
        margin: 0 20px 0;
        font-size: 75%;
    }

    /*特徴と利点*/
    #section4 .group ul {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        margin: 10px 0px 10px;
    }

    #section4 h2 {
        margin: 10px auto 10px;
        padding: 0 30px;
        font-size: 85%;
        width: 100%;
    }

    #section4 .group li {
        width: auto;
    }

    #section4 .group p {
        font-size: 70%;
        text-align: left;
        padding: auto;
    }

    #section4 .group h3 {
        gap: 10px;
        font-size: 80%;
    }


    /*お客様の声*/
    #section5 .group {
        margin: 20px 20px 20px;
    }

    #section5 h2 {
        font-size: 90%;
        margin-bottom: 20px;
        padding: 0 25px;
    }

    /* ONEMOVE動画 */
    #section5 .onemove h2 {
        font-size: 100%;
        margin-bottom: 0;
    }

    #section5 .onemove h3 {
        text-align: right;
        font-size: 100%;
    }

    #section5 .onemove p {
        font-size: 90%;
    }

    #section5 .onemove span {
        font-size: 120%;
    }

    .onemove {
        max-width: 300px;
    }

    .onemove iframe {
        max-width: 300px;
        max-height: 168px;
    }

    /* ONEMOVE動画ここまで */

    #section5 .staff-voice {
        flex-direction: column;
        margin: 0 30px 0;
    }

    #section5 .staff-voice img {
        width: 100%;
    }

    #section5 .staff-voice-text {
        width: 100%;
    }

    /*ご利用料金*/
    #about-fees {
        margin: 20px 0;
        padding: 20px 0;
    }

    .about-fees {
        flex-direction: column;
        align-items: center;
    }

    #about-fees .campaign-5 {
        padding: 10px;
        margin: 0 auto 50px;
        animation: floating 2s infinite;
        width: 100%;
    }

    #about-fees .campaign-5 h3 {
        font-size: 120%;
    }

    #about-fees .campaign-5 p {
        padding: 0 10px;
        max-width: 90%;
        font-size: 80%;
    }

    /* 料金ボックス */
    /* grid表示 */
    .fee-item {
        height: 400px;
    }

    .plan-name1 {
        top: 20px;
        font-size: 100%;
    }

    .fee-price1 {
        top: 90px;
        font-size: 130%;
    }

    .plan-name2 {
        font-size: 100%;
    }

    .fee-price2 {
        top: 80px;
        font-size: 130%;
    }

    .start-btn1 {
        width: 120px;
    }

    .start-btn2 {
        width: 120px;
    }

    .start-btn1 h4,
    .start-btn2 h4 {
        font-size: 110%;
    }

    .about-fees img {
        max-width: 100%;
        padding: 0 20px;
    }

    #about-fees .payment {
        width: 100%;
        padding: 0 20px;
        margin: 10px auto 0;
        font-size: 70%;
    }

    .about-fees div {
        padding: 0 40px;
    }

    #campaign h2 {
        font-size: 100%;
    }

    #campaign li {
        text-align: center;
        font-size: 100%;
    }

    #campaign span {
        display: inline-block;
    }

    /*登録リンク*/
    #section6 {
        margin: 20px auto 0;
    }

    #section6 h2 {
        font-size: 110%;
    }

    .register,
    .official-line {
        flex-direction: column;
        gap: 10px;
    }

    /*利用規約、プライバシーポリシー*/
    #section7 {
        gap: 10px;
        padding: 10px 0px;
    }

    .security,
    .privacy,
    .about-ai {
        padding: 20px;
        margin-bottom: 20px;
    }

    .security h2,
    .privacy h2,
    .about-ai h2 {
        margin-bottom: 10px;
    }

    .security p,
    .privacy p,
    .about-ai p {
        margin: 0 20px;
        font-size: 80%;
    }
}