@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
    --default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
    display: block;
}

ul,
li,
ol,
dl {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

a {
    display: inline-block;
    margin: 0;
    padding: 0;
}
@media (hover: hover) and (pointer: fine) {
    a:hover {
        text-decoration: none;
    }
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 0.1rem dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:after,
*:before {
    -webkit-appearance: none;
    word-break: break-all;
    box-sizing: border-box;
}

video {
    filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media screen and (min-width: 1081px) {
    .tab-off {
        display: none !important;
    }
}
/* PC(768px以上)のみ非表示 */
@media screen and (min-width: 768px) {
    .pc-off {
        display: none !important;
    }
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
    .sp-off {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    a[href^="tel:"] {
        color: var(--default-text-color);
    }
}
/* @media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
} */

html {
    font-size: 62.5%;
    letter-spacing: 0;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-text-size-adjust: none;
    scroll-behavior: smooth;

    @media screen and (min-width: 1081px) and (max-width: 1919px) {
        font-size: calc(10 / 1919 * 100 * 1vw);
    }

    /* あまりにも文字サイズが小さくなった場合 */
    @media screen and (min-width: 768px) and (max-width: 1080px) {
        font-size: calc(12 / 1920 * 100 * 1vw);
    }

    /* スマホ用（デザインサイズが375の場合） */
    @media screen and (max-width: 767px) {
        font-size: calc(10 / 375 * 100 * 1vw);
    }
}

body {
    font-size: 1.6rem;
    line-height: 1;
    overflow: auto;

    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
    }
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    @media screen and (max-width: 767px) {
        /* スマホ画像長押し禁止対策 */
        pointer-events: none;
    }
}

a {
    color: var(--default-text-color);
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
    html {
        font-size: calc(10 / 1919 * 100 * 14px);
    }
    body {
        -webkit-print-color-adjust: exact;
        position: relative;
        width: 1400px;
        zoom: 70%;
    }
}
@page {
    size: A4;
    margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
    --sb-track-color: #ddd;
    --sb-thumb-color: #000;
    --sb-size: 0;
    /* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
    overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
    width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
    overflow: hidden;

    @media screen and (max-width: 767px) {
    }
}

.menu-active {
    overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;

    @media screen and (max-width: 767px) {
    }

    /* メニューボタン */
    .menu-btn {
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        z-index: 9999;

        @media screen and (max-width: 767px) {
            display: block;
        }

        &:after {
            /* content: "MENU"; */
            content: "";
            position: absolute;
            left: 50%;
            bottom: 1.1rem;
            color: #8e0097;
            font-weight: 500;
            letter-spacing: 0.05em;
            font-size: 1.1rem;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        & a {
            position: relative;
            width: 10rem;
            height: 10rem;
            vertical-align: top;
            transition: ease 0.25s all;

            @media screen and (max-width: 767px) {
                width: 6.2rem;
                height: 6.2rem;
            }

            & span {
                position: absolute;
                left: 50%;
                top: 50%;
                display: block;
                margin-left: -1.8rem;
                width: 3.4rem;
                height: 0.2rem;
                background: #8e0097;
                border-radius: 0.3rem;

                @media screen and (max-width: 767px) {
                    margin-left: -1.4rem;
                    width: 2.8rem;
                    height: 0.2rem;
                }

                &:before,
                &:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: #8e0097;
                    border-radius: 0.3rem;
                    transition: ease 0.25s all;
                }

                &:before {
                    margin-top: -1.1rem;
                }
                @media screen and (max-width: 767px) {
                    &:before {
                        margin-top: -0.7rem;
                    }
                }
                &:after {
                    margin-top: 1.1rem;
                }
                @media screen and (max-width: 767px) {
                    &:after {
                        margin-top: 0.7rem;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 767px) {
    .nav {
        position: fixed;
        left: 100%;
        z-index: 999;
        width: 100%;
        pointer-events: none;
    }
}

.menu-active {
    #header {
        .menu-btn {
            /* position: fixed; */
            & a {
                background-color: #fff;
                & span {
                    background-color: transparent;
                    &:before {
                        margin-top: 0;
                        transform: rotate(45deg);
                        -webkit-transform: rotate(45deg);
                    }
                    &:after {
                        margin-top: 0;
                        transform: rotate(-45deg);
                        -webkit-transform: rotate(-45deg);
                    }
                }
            }
        }

        @media screen and (max-width: 767px) {
            .nav {
                left: 0;
                pointer-events: auto;
            }
        }
    }
}

.menu-active {
    #header {
        .logomark {
        }

        .nav {
            @media screen and (max-width: 767px) {
                left: 0;
                pointer-events: auto;
            }
        }

        .menu-btn {
            & a {
                & span {
                    background-color: transparent;

                    &:before {
                        margin-top: 0;
                        transform: rotate(45deg);
                        -webkit-transform: rotate(45deg);
                    }

                    &:after {
                        margin-top: 0;
                        transform: rotate(-45deg);
                        -webkit-transform: rotate(-45deg);
                    }
                }
            }
        }
    }
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
    padding: 2.4rem 0;

    @media screen and (max-width: 767px) {
        display: none;
    }
    & ol {
        display: flex;
        flex-wrap: wrap;
    }
    & li {
        position: relative;
        margin-right: 3.7rem;
        font-weight: 500;
        font-size: 1.2rem;
        letter-spacing: 0.1em;

        &:last-child {
            margin-right: 0;
            &:after {
                display: none;
            }
        }

        &:after {
            content: "";
            position: absolute;
            right: -2.7rem;
            top: 50%;
            z-index: 0;
            display: block;
            width: 1.4rem;
            height: 1px;
            background: #bcbcbc;
            &:last-child:after {
                display: none;
            }
        }
    }
    & a {
        text-decoration: underline;
        color: #7aa3c6;

        @media (hover: hover) and (pointer: fine) {
            &:hover {
                text-decoration: none;
            }
        }
    }
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
    position: fixed;
    left: 2.2rem;
    top: 2rem;
    width: calc(100% - 4.4rem);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 7.7rem;
    border-radius: 38.5rem;
    background-color: #fff;
    box-shadow: 0 0 5px 2px rgba(60, 60, 60, 0.2);

    @media screen and (max-width: 767px) {
        left: 1.2rem;
        top: 1.2rem;
        width: calc(100% - 2.4rem);
        padding: 0 1.8rem;
        height: 4.4rem;
        border-radius: 2.2rem;
    }

    .logomark {
        .logolink {
            display: flex;
            align-items: center;
            padding-left: 0.8rem;

            @media screen and (max-width: 767px) {
                flex-direction: row;
                width: 11rem;
            }

            .logo {
                width: 19.6rem;
                @media screen and (max-width: 1450px) {
                    width: 22.5rem;
                }

                @media screen and (max-width: 767px) {
                    width: 15.1rem;
                    margin-left: 0;
                }
            }

            .sns {
                margin-left: 2.7rem;
                width: 17.3rem;

                @media screen and (max-width: 767px) {
                    margin-left: 0.8rem;
                    width: 10.5rem;
                }
            }
        }
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 3rem;

        @media screen and (max-width: 1300px) {
            gap: 2rem;
        }

        @media screen and (max-width: 767px) {
            background-color: #fff;
            position: fixed;
            top: 0;
            left: 100%;
            z-index: 999;
            width: 100%;
            pointer-events: none;
            transition: all ease 0.3s;
            flex-direction: column;
            padding-top: 6rem;
            gap: 0;
            height: 100dvh;
        }

        .main-list {
            display: flex;
            align-items: center;
            gap: 2.8rem;

            @media screen and (max-width: 767px) {
                width: initial;
                flex-direction: column;
                gap: 2.6rem;
                margin-top: 3.5rem;
            }

            .list {
                .link {
                    font-family: "Noto Sans JP";
                    font-weight: bold;
                    font-size: 1.5rem;
                    letter-spacing: 0.01em;
                    text-align: right;
                    color: black;
                    text-decoration: none;
                    transition: 0.2s ease-in-out;
                    @media screen and (max-width: 767px) {
                        color: #8e0097;
                    }
                }
                .link:hover {
                    opacity: 0.5;
                }
            }
        }

        .contact-btn {
            width: 15rem;
            height: 4.5rem;
            border-radius: 22.5px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(#c0fce4 0%, #71f5f2 53.56%, #23f3ee 100%);
            text-decoration: none;
            transition: 0.2s ease-in-out;

            @media screen and (max-width: 767px) {
                width: 22rem;
                height: 5.4rem;
                border-radius: 2.7rem;
                margin: 2.9rem auto 0;
            }

            .contact-text {
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 1.5rem;
                letter-spacing: 0.01em;
                text-align: right;
                color: black;
            }
        }

        .contact-btn:hover {
            opacity: 0.5;
        }
    }

    .menu-btn {
        display: none;

        @media screen and (max-width: 767px) {
            display: block;
            position: absolute;
            top: 50%;
            right: 1.8rem;
            transform: translateY(-50%);
            z-index: 999;
        }

        & a {
            position: relative;
            width: 1.8rem;
            height: 1.8rem;
            vertical-align: top;
            transition: ease 0.25s all;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;

            & span {
                position: absolute;
                display: block;
                width: 100%;
                height: 0.3rem;
                border-radius: 1.5px;
                /* background-color: var(--purple); */

                &:before,
                &:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    /* background-color: var(--purple); */
                    border-radius: 0.3rem;
                    transition: ease 0.25s all;
                }

                &:before {
                    margin-top: -0.7rem;
                }

                &:after {
                    margin-top: 0.7rem;
                }
            }
        }
    }
}

.contact-sp-button {
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 35rem;
    height: 5.4rem;
    border-radius: 2.7rem;
    background: linear-gradient(#c0fce4 0%, #71f5f2 53.56%, #23f3ee 100%);
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 888;
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
footer {
    background: url(../img/footer-bk.png) no-repeat;
    background-size: cover;
    background-position: center top;
    background-color: #ff5454;
    width: 100%;
    padding-top: 21.7rem;
    margin-top: 0rem;
    padding-bottom: 3.7rem;
    @media screen and (max-width: 767px) {
        background: url(../img/footer-bk.png) no-repeat;
        background-color: #ff5454;
        background-size: contain;
        background-position: center top;
        padding-top: 2.5rem;
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    footer::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 80rem;
        background: #ff5454;
        bottom: -6rem;
        z-index: -2;
    }
}

.footer-top-img-container {
    width: 74.3rem;
    /* margin: 0 auto; */
    margin-left: 31rem;
    margin-bottom: 1.7rem;
    @media screen and (max-width: 767px) {
        width: 65%;
        margin: 3rem auto 0;
    }
}

.footer-head {
    display: inline-block;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3.3rem;
    letter-spacing: 0.01em;
    text-align: center;
    color: white;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
    }
}

.footer-head::before,
.footer-head::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 0.2rem;
    height: 6.5rem;
    background-color: white;
    @media screen and (max-width: 767px) {
        height: 2.5rem;
    }
}

.footer-head::before {
    left: -4.5rem;
    transform: rotate(-15deg);
    @media screen and (max-width: 767px) {
        left: -1.5rem;
    }
}

.footer-head::after {
    right: -4.5rem;
    transform: rotate(15deg);
    @media screen and (max-width: 767px) {
        right: -1.5rem;
    }
}

/* footer .red-titles-flex-container p {
  color: white;
}

footer .red-titles-flex-container p::before {
  background-color: white;
}

footer .red-titles-flex-container p::after {
  background-color: white;
} */

.other-sns-title {
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.4;
    text-align: center;
    color: #000;
    margin-top: 2rem;
    margin-bottom: 4rem;
    @media screen and (max-width: 767px) {
        font-size: 2rem;
        line-height: 4rem;
        margin-bottom: 1rem;
    }
}

.lp-banners {
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    max-width: 140rem;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        margin-top: 0;
    }
}

.lp-banners-item {
    flex: 1;
    width: 68.4rem;
    max-width: 100%;
}

.lp-banners-item .footer-head {
    margin-bottom: 2rem;
    position: relative;
}

.lp-banners a {
    width: 100%;
    margin-top: 3.7rem;
    @media screen and (max-width: 767px) {
        margin-top: 0;
    }
}

.lp-banners img {
    width: 100%;
    border-radius: 3rem;
    @media screen and (max-width: 767px) {
        border-radius: 1.9rem;
    }
}

.company-infos-white-container {
    width: 108rem;
    border-radius: 1.9rem;
    background: #fff;
    margin: 9.2rem auto 0;
    padding-top: 5.4rem;
    padding-bottom: 5rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin: 3.2rem auto 0;
        padding-top: 0.5rem;
        padding-bottom: 0rem;
    }
}

.sofcom-logo-footer {
    width: 18.3rem;
    margin: 0 auto;
    @media screen and (max-width: 767px) {
        width: 12rem;
    }
}

.footer-table-container {
    margin-top: 4.3rem;
    padding-left: 10.6rem;
    @media screen and (max-width: 767px) {
        margin-top: 2rem;
        padding: 0 1.5rem 2rem;
        margin-top: 2rem;
    }
}

.flex-table-info-container {
    display: flex;
    padding-bottom: 0;
    gap: 2.4rem;
    margin-bottom: 1.5rem;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.3rem;
        margin-bottom: 0;
    }
}

.info-th {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 2.4rem;
    text-align: left;
    color: #fd2c55;
    width: 8.5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
}

.info-tc {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 2.4rem;
    text-align: left;
    color: #000;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
}

.info-tc a {
    text-decoration: none;
    position: relative;
    color: #fd2c55;
    transition: 0.2s ease-in-out;
}

.info-tc a:hover {
    text-decoration: underline;
}

.info-tc a::after {
    position: absolute;
    content: "";
    background: url(../img/go-to-icon.svg) no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    top: 0;
    bottom: 0;
    right: -1.7rem;
    margin: auto;
    background-size: 100%;
}

footer .copyright {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-align: center;
    color: #fff;
    margin-top: 3.9rem;
    display: block;
    @media screen and (max-width: 767px) {
        margin-top: 2.5rem;
    }
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;

    @media screen and (max-width: 767px) {
        width: calc(100% - 3rem);
    }
}

.w962 {
    max-width: 96.2rem;
}
.w1000 {
    max-width: 100rem;
}
.w1080 {
    max-width: 108rem;
}
.w1100 {
    max-width: 110rem;
}
.w1030 {
    max-width: 103rem;
}
.w1200 {
    max-width: 120rem;
}
.w1220 {
    max-width: 120rem;
}
.w1440 {
    max-width: 144rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
    text-align: right;
}
.tal {
    text-align: left;
}
.tac {
    text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title.type01 {
    text-align: center;
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;

    & p {
        margin-bottom: 2rem;
        &:last-child {
            margin-bottom: 0;
        }
    }
}
/* table-scroll */
@media screen and (max-width: 767px) {
    .table-scroll {
        position: relative;
        padding-bottom: 2rem;
        overflow-x: scroll;
        &:after {
            content: "←";
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 1;
            margin-left: -1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            width: 3rem;
            height: 3rem;
            border-radius: 1.5rem;
            border: 0.1rem solid #000;
            animation: arrowtable 2s infinite forwards;
        }
        .common-table {
            width: 80rem;
        }
    }
}
@keyframes arrowtable {
    50% {
        opacity: 1;
        right: 0;
    }
    100% {
        opacity: 0;
        right: 100%;
    }
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
    margin-bottom: 0rem !important;
}
.mb10 {
    margin-bottom: 1rem !important;
}
.mb20 {
    margin-bottom: 2rem !important;
}
.mb30 {
    margin-bottom: 3rem !important;
}
.mb40 {
    margin-bottom: 4rem !important;
}
.mb50 {
    margin-bottom: 5rem !important;
}
.mb60 {
    margin-bottom: 6rem !important;
}
.mb70 {
    margin-bottom: 7rem !important;
}
.mb80 {
    margin-bottom: 8rem !important;
}
.mb90 {
    margin-bottom: 9rem !important;
}
.mb100 {
    margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
    .mb10 {
        margin-bottom: 0.5rem !important;
    }
    .mb20 {
        margin-bottom: 1rem !important;
    }
    .mb30 {
        margin-bottom: 1.5rem !important;
    }
    .mb40 {
        margin-bottom: 2rem !important;
    }
    .mb50 {
        margin-bottom: 2.5rem !important;
    }
    .mb60 {
        margin-bottom: 3rem !important;
    }
    .mb70 {
        margin-bottom: 3.5rem !important;
    }
    .mb80 {
        margin-bottom: 4rem !important;
    }
    .mb90 {
        margin-bottom: 4.5rem !important;
    }
    .mb100 {
        margin-bottom: 5rem !important;
    }
}

.mt0 {
    margin-top: 0rem !important;
}
.mt10 {
    margin-top: 1rem !important;
}
.mt20 {
    margin-top: 2rem !important;
}
.mt30 {
    margin-top: 3rem !important;
}
.mt40 {
    margin-top: 4rem !important;
}
.mt50 {
    margin-top: 5rem !important;
}
.mt60 {
    margin-top: 6rem !important;
}
.mt70 {
    margin-top: 7rem !important;
}
.mt80 {
    margin-top: 8rem !important;
}
.mt90 {
    margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
    .mt10 {
        margin-top: 0.5rem !important;
    }
    .mt20 {
        margin-top: 1rem !important;
    }
    .mt30 {
        margin-top: 1.5rem !important;
    }
    .mt40 {
        margin-top: 2rem !important;
    }
    .mt50 {
        margin-top: 2.5rem !important;
    }
    .mt60 {
        margin-top: 3rem !important;
    }
    .mt70 {
        margin-top: 3.5rem !important;
    }
    .mt80 {
        margin-top: 4rem !important;
    }
    .mt90 {
        margin-top: 4.5rem !important;
    }
    .mt100 {
        margin-top: 5rem !important;
    }
}

.pb0 {
    padding-bottom: 0 !important;
}
.pb10 {
    padding-bottom: 1rem !important;
}
.pb20 {
    padding-bottom: 2rem !important;
}
.pb30 {
    padding-bottom: 3rem !important;
}
.pb40 {
    padding-bottom: 4rem !important;
}
.pb50 {
    padding-bottom: 5rem !important;
}
.pb60 {
    padding-bottom: 6rem !important;
}
.pb70 {
    padding-bottom: 7rem !important;
}
.pb80 {
    padding-bottom: 8rem !important;
}
.pb90 {
    padding-bottom: 9rem !important;
}
.pb100 {
    padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
    .pb10 {
        padding-bottom: 0.5rem !important;
    }
    .pb20 {
        padding-bottom: 1rem !important;
    }
    .pb30 {
        padding-bottom: 1.5rem !important;
    }
    .pb40 {
        padding-bottom: 2rem !important;
    }
    .pb50 {
        padding-bottom: 2.5rem !important;
    }
    .pb60 {
        padding-bottom: 3rem !important;
    }
    .pb70 {
        padding-bottom: 3.5rem !important;
    }
    .pb80 {
        padding-bottom: 4rem !important;
    }
    .pb90 {
        padding-bottom: 4.5rem !important;
    }
    .pb100 {
        padding-bottom: 5rem !important;
    }
}

.pt0 {
    padding-top: 0 !important;
}
.pt10 {
    padding-top: 1rem !important;
}
.pt20 {
    padding-top: 2rem !important;
}
.pt30 {
    padding-top: 3rem !important;
}
.pt40 {
    padding-top: 4rem !important;
}
.pt50 {
    padding-top: 5rem !important;
}
.pt60 {
    padding-top: 6rem !important;
}
.pt70 {
    padding-top: 7rem !important;
}
.pt80 {
    padding-top: 8rem !important;
}
.pt90 {
    padding-top: 9rem !important;
}
.pt100 {
    padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
    .pt10 {
        padding-top: 0.5rem !important;
    }
    .pt20 {
        padding-top: 1rem !important;
    }
    .pt30 {
        padding-top: 1.5rem !important;
    }
    .pt40 {
        padding-top: 2rem !important;
    }
    .pt50 {
        padding-top: 2.5rem !important;
    }
    .pt60 {
        padding-top: 3rem !important;
    }
    .pt70 {
        padding-top: 3.5rem !important;
    }
    .pt80 {
        padding-top: 4rem !important;
    }
    .pt90 {
        padding-top: 4.5rem !important;
    }
    .pt100 {
        padding-top: 5rem !important;
    }
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 7rem;

    @media screen and (max-width: 767px) {
        margin-top: 3.5rem;
    }

    .back {
        margin: 0 8.3rem;
        @media screen and (max-width: 767px) {
            margin: 0 1rem;
        }
    }

    .prev,
    .next {
        width: 14rem;
        @media screen and (max-width: 767px) {
            width: 4.6rem;
        }
        & a {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
            height: 4.6rem;
            font-weight: 500;
            text-decoration: underline;
            letter-spacing: 0.08rem;
            color: #000;
            box-sizing: border-box;

            @media screen and (max-width: 767px) {
                padding: 0;
                font-size: 0;
                color: transparent;
            }

            @media (hover: hover) and (pointer: fine) {
                &:hover {
                    text-decoration: none;
                }
            }

            &:after {
                content: "";
                position: absolute;
                top: 50%;
                margin-top: -2.3rem;
                display: block;
                width: 4.6rem;
                height: 4.6rem;
                border-radius: 2.3rem;
                background-color: #2987d9;
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:after {
                    background-color: #2987d9;
                }
            }
            @media screen and (max-width: 767px) {
                .&:after {
                    width: 4.8rem;
                    height: 4.8rem;
                    margin-top: -2.4rem;
                    border-radius: 0;
                }
            }

            &:before {
                content: "";
                position: absolute;
                top: 50%;
                z-index: 1;
                margin-top: -0.4rem;
                display: block;
                width: 0.8rem;
                height: 0.8rem;
                border-top: 0.2rem solid #fff;
                box-sizing: border-box;
                transition: ease 0.25s border;
            }
        }
    }

    .prev {
        & a {
            padding-left: 7.3rem;
            &:after {
                left: 0;
            }
            &:before {
                left: 2.2rem;
                border-left: 0.2rem solid #fff;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:before {
                    border-left-color: #fff;
                }
            }
        }
    }
    .next {
        & a {
            padding-right: 7.3rem;
            &:after {
                right: 0;
            }
            &:before {
                right: 2.2rem;
                border-right: 0.2rem solid #fff;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }
        }
    }
}

/* navigation pagination */
.navigation.pagination {
    margin: 7rem 0 0;

    @media screen and (max-width: 767px) {
        margin: 3rem 0 0;
    }

    .disable {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

        @media screen and (max-width: 767px) {
            position: relative;
            padding-bottom: 5rem;
        }
    }

    .pager {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 0 0.8rem;
        width: 4.4rem;
        height: 5rem;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        letter-spacing: 0.08em;
        color: #2987d9;
        background: #fff;
        text-decoration: none;
        transition: ease 0.25s all;
        /* border-radius: 0.4em; */
        border: 0.1rem solid #2987d9;

        @media screen and (max-width: 767px) {
            width: 3rem;
            height: 3rem;
        }

        @media (hover: hover) and (pointer: fine) {
            &:hover {
                color: #fff;
                background: #2987d9;
                border-color: #2987d9;
            }
        }
    }

    .pager.current {
        color: #fff;
        font-weight: bold;
        background: #2987d9;
        border-color: #2987d9;
    }

    .next,
    .prev {
        @media screen and (max-width: 767px) {
            /*position: absolute;*/
            /*bottom: 0;*/
            /*width: 48%;*/
            /*height: 4rem;*/
        }

        & a {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            width: 4.4rem;
            height: 5rem;
            font-size: 0;
            font-family: "Roboto", sans-serif;
            font-weight: bold;
            letter-spacing: 0.08em;
            text-decoration: none;
            color: #000;
            background: #fff;
            border: 0.1rem solid #2987d9;
            transition: ease 0.25s background, ease 0.25s color;

            @media screen and (max-width: 767px) {
                width: 2.8rem;
                height: 2.8rem;
            }

            @media (hover: hover) and (pointer: fine) {
                &:hover {
                    color: #fff;
                    background-color: #2987d9;
                    &:after {
                        border-top-color: #fff;
                    }
                }
            }

            &:after {
                content: "";
                position: absolute;
                top: 50%;
                margin-top: -0.4rem;
                display: block;
                width: 0.8rem;
                height: 0.8rem;
                border-top: 0.1rem solid #2987d9;
                box-sizing: border-box;
                transition: ease 0.25s border;
            }
        }
    }

    .prev {
        @media screen and (min-width: 768px) {
            margin-right: 0.8rem;
        }
        @media screen and (max-width: 767px) {
            margin-right: 1rem;
        }
        & a {
            &:after {
                left: 50%;
                margin-left: -0.2rem;
                border-left: 0.1rem solid #2987d9;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:after {
                    border-left-color: #fff;
                }
            }
        }
    }
    .next {
        @media screen and (min-width: 768px) {
            margin-left: 0.8rem;
        }
        @media screen and (max-width: 767px) {
            margin-left: 1rem;
            /*right: 0;*/
        }
        & a {
            &:after {
                right: 50%;
                margin-right: -0.2rem;
                border-right: 0.1rem solid #2987d9;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:after {
                    border-right-color: #fff;
                }
            }
        }
    }
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
    padding: 100px 30px;
    line-height: 1.8;
    text-align: center;
}

/* ------------------------------------------- */
/* index*/
/* ------------------------------------------- */
.section-top-bk-container {
    width: 100%;
    position: relative;
    height: 88rem;

    &::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.5rem;
        height: 13rem;
        z-index: 10;
        background: url("../img/white-eclipse.png") no-repeat center bottom;
        background-size: 100% 100%;
    }

    @media screen and (max-width: 1024px) {
        &::after { height: 10rem; }
    }

    @media screen and (max-width: 767px) {
        /* height: auto; */
        min-height: 100svh;
        padding-bottom: 12rem;

        &::after {
            bottom: 0;
            transform: none;
            background-image: url("../img/white-eclipse-sp.png");
            background-repeat: no-repeat;
            background-position: center bottom;
            background-size: 100%;
            height: 10rem;
            z-index: 9999;
        }
    }
}


.top-bk-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    & img {
        height: 87rem;
        width: 100%;
        background-size: cover;
    }
}

.text-top-container {
    /* padding-top: 24.3vh; */
    padding-top: 22.1rem;
    @media screen and (max-width: 1081px) {
        padding-top: 15.1rem;
    }

    @media screen and (max-width: 1024px) {
        padding-top: 25rem;
    }
    @media screen and (max-width: 767px) {
        padding-top: 7.2rem;
    }
}

.white-text-top {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: left;
    color: #fff;
    padding-left: 2rem;
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
        padding-left: 0;
        text-align: center;
    }
}

.tik-tok-top-title-container {
    width: 53.3rem;
    padding-top: 3.7rem;
    padding-left: 2rem;
    @media screen and (max-width: 767px) {
        padding: 0;
        width: 27.2rem;
        margin: 2rem auto 0;
    }
}

.blue-top-container {
    margin-top: 3rem;
    width: 51.7rem;
    height: 12.3rem;
    border: 0.3rem solid #23f3ee;
    border-radius: 1.2rem;
    margin-left: 1.1rem;
    padding-top: 4.2rem;
    display: flex;
    justify-content: center;
    padding-left: 1.2rem;
    position: relative;
    @media screen and (max-width: 767px) {
        margin: 2.5rem auto 0;
        width: 33rem;
        height: 6.5rem;
        margin-left: 0;
        padding-top: 0;
        padding-left: 0;
        align-items: center;
        transform: translateX(8px);
    }
}

.blue-top-container::after {
    content: "";
    position: absolute;
    background-color: #23f3ee;
    width: 8.3rem;
    height: 0.3rem;
    top: 5.4rem;
    border-radius: 1rem;
    right: -5rem;
    transform: rotate(-44deg);
}

@media screen and (max-width: 767px) {
    .blue-top-container::after {
        width: 5rem;
        height: 0.3rem;
        top: 6rem;
        right: 14rem;
    }
}

.blue-top-container p {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: center;
    color: #23f3ee;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
    }
}

.about-tiktok {
    /* margin-top: -10rem; */
    /* padding-top: 15rem; */

    @media screen and (max-width: 1081px) {
        margin-top: 5rem;
    }

    @media screen and (max-width: 1024px) {
        margin-top: 0;
        padding-top: 0;
    }
    @media screen and (max-width: 767px) {
        margin-top: 0rem;
        padding-top: 0;
    }
}

.about-tiktok-flex-container {
    display: flex;
    gap: 7.5rem;
}

.about-tiktok-txt-right {
    max-width: 70rem;
}

.about-top-txt-flex-container {
    display: flex;
    gap: 0.4rem;
    @media screen and (max-width: 767px) {
        justify-content: center;
    }
}

.icon-about-container {
    width: 7rem;
    height: 5.5rem;
    @media screen and (max-width: 767px) {
        width: 3.5rem;
        height: 2.8rem;
    }
}

.about-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 5.6rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: left;
    color: #000;
    @media screen and (max-width: 767px) {
        font-size: 2.5rem;
    }
}

.about-red-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 4.5rem;
    letter-spacing: 0.01em;
    line-height: 6rem;
    text-align: left;
    color: #fd2c55;
    margin-top: 4.5rem;
    margin-bottom: 6rem;
    @media screen and (max-width: 767px) {
        font-size: 2.3rem;
        line-height: 3rem;
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }
}

.paragraph-about {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 3.4rem;
    text-align: left;
    color: #000;
    max-width: 70rem;
    @media screen and (max-width: 767px) {
        line-height: 2.5rem;
        max-width: 100%;
    }
}

.paragraph-about span {
    font-weight: 600;
    color: #fd2c55;
}

.about-left-pic-container {
    width: 24.6rem;
    margin-top: -1.7rem;
    @media screen and (max-width: 767px) {
        width: 8rem;
        margin: 2.5rem auto 0;
    }
}

.why-tiktok {
    background-color: #abe8ff;
    margin-top: 9rem;
    padding-top: 7.5rem;
    padding-bottom: 4rem;
    @media screen and (max-width: 767px) {
        margin-top: 4rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.flex-container-why-section {
    display: flex;
    gap: 1.5rem;
    padding-left: 5rem;
    @media screen and (max-width: 767px) {
        gap: 0.5rem;
        padding-left: 0;
    }
}

.svg-why-container {
    width: 7.1rem;
    padding-top: 1.2rem;
    @media screen and (max-width: 767px) {
        width: 3.5rem;
    }
}

.why-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 5.6rem;
    letter-spacing: 0.01em;
    line-height: 7.8rem;
    text-align: center;
    color: #000;
    @media screen and (max-width: 767px) {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

.why-red-black-text {
    margin-top: 3.7rem;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 2.2rem;
    letter-spacing: 0.01em;
    line-height: 4.1rem;
    text-align: center;
    color: #000;
    margin-bottom: 3.5rem;
    @media screen and (max-width: 767px) {
        margin-top: 1.5rem;
        font-size: 1.8rem;
        line-height: 2.5rem;
        text-align: left;
        color: #000;
        margin-bottom: 3rem;
    }
}

.why-red-black-text2 {
    margin-top: 1.5rem;
    margin-right: 1rem;
    letter-spacing: 0.1em;
    line-height: 4.4rem;
    @media screen and (max-width: 767px) {
        margin-top: 0;
        margin-right: 0;
        letter-spacing: 0.1em;
        line-height: 2.4rem;
        font-size: 1.6rem;
    }
}

.why-red-black-text span {
    color: #fd2c55;
    font-weight: 800;
}

.img-why-container {
    width: 96.2rem;
    margin-bottom: 2.5rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin-bottom: 3rem;
    }
}

.why-tiktok p {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 3.4rem;
    text-align: center;
    color: #000;
    @media screen and (max-width: 767px) {
        line-height: 2rem;
        text-align: left;
        font-size: 1.4rem;
    }
}

.merite-tiktok {
    padding-top: 14.8rem;
    @media screen and (max-width: 767px) {
        padding-top: 5rem;
    }
}

.red-title-double-lineside {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: center;
    color: #fd2c55;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
    }
}

.red-title-double-lineside::before {
    content: "";
    position: absolute;
    top: 2rem;
    bottom: 0;
    left: -6rem;
    background-color: #fd2c55;
    width: 6.4rem;
    height: 0.2rem;
    transform: rotate(76deg);
    @media screen and (max-width: 767px) {
        top: 1rem;
        left: -2rem;
        width: 2.4rem;
    }
}

.red-title-double-lineside::after {
    content: "";
    position: absolute;
    top: 2rem;
    bottom: 0;
    right: -5rem;
    background-color: #fd2c55;
    width: 6.4rem;
    height: 0.2rem;
    transform: rotate(104deg);
    @media screen and (max-width: 767px) {
        top: 1rem;
        right: -2rem;
        width: 2.4rem;
    }
}

.flex-container-merite {
    display: flex;
    gap: 1rem;
    margin-top: 5.2rem;
    justify-content: center;
    @media screen and (max-width: 767px) {
        gap: 0.5rem;
        margin-top: 2rem;
    }
}

.plan-section .flex-container-merite {
    margin-top: 2.5rem;
    margin-left: 2rem;
    @media screen and (max-width: 767px) {
        margin-left: 0;
    }
}

.sns-section .flex-container-merite {
    margin-right: 7rem;
    @media screen and (max-width: 767px) {
        margin-right: 0;
    }
}

.plan-blue-bk .flex-container-merite {
    margin-right: 7rem;
    @media screen and (max-width: 767px) {
        margin-right: 0;
    }
}

.red-bubble-svg-container {
    width: 7.3rem;
    @media screen and (max-width: 767px) {
        width: 3.5rem;
        padding-top: 0.5rem;
    }
}

.red-bubble-svg-container.bubble-margin {
    margin-right: -5.5rem;
    @media screen and (max-width: 767px) {
        margin-right: -2.5rem;
        margin-top: -0.5rem;
    }
}

.title-merite {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 6rem;
    letter-spacing: 0.01em;
    /* line-height: 88px; */
    line-height: 1.4;
    text-align: center;
    color: #000;
    @media screen and (max-width: 767px) {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

.bk-bluewhite {
    background-color: #eeffff;
    margin-top: 10.5rem;
    padding-bottom: 8rem;
    @media screen and (max-width: 767px) {
        margin-top: 3rem;
        padding-bottom: 0;
    }
}

.flag-title-flex-container {
    display: flex;
    gap: 7.9rem;
    @media screen and (max-width: 767px) {
        gap: 0.5rem;
    }
}

.flag-img-txt-container {
    position: relative;
    width: 22.4rem;
    height: 24.7rem;
    @media screen and (max-width: 767px) {
        position: relative;
        width: 8.5rem;
        height: auto;
    }
}

.flag-img {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: -1;
}

.tiktok-txt-flag {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    line-height: 1.4;
    text-align: center;
    color: #fff;
    padding-top: 5.4rem;
    @media screen and (max-width: 767px) {
        font-size: 1rem;
        padding-top: 0.5rem;
        line-height: 1.6rem;
    }
}

.txt-flag-number {
    font-family: "Noto Sans JP";
    font-weight: 600;
    font-size: 5.6rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: center;
    color: #fff;
    padding-top: 2rem;
    @media screen and (max-width: 767px) {
        padding-top: 0.5rem;
        font-size: 2.5rem;
    }
}

.title-merite-right-flag {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: 0.03em;
    line-height: 6.4rem;
    text-align: center;
    color: #000;
    padding-top: 6rem;
    @media screen and (max-width: 767px) {
        padding-top: 1rem;
        font-size: 2.5rem;
        line-height: 3.4rem;
        max-width: 25rem;
    }
}

.title-merite-right-flag span {
    color: #fd2c55;
}

.merite-content-flex {
    display: flex;
    gap: 6.3rem;
    @media screen and (max-width: 767px) {
        gap: 0;
        display: block;
    }
}

.merite-pic-container01 {
    width: 51rem;
    height: 48.6rem;
    margin-top: -1.8rem;
    @media screen and (max-width: 767px) {
        width: 65%;
        margin: 2rem auto;
        height: auto;
    }
}

.merite-content-txt-container {
    margin-top: 4.4rem;
}

.tiktok-style-container {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 3.1rem;
    text-align: left;
    color: #000;
    width: 58.8rem;
    padding-top: 2.8rem;
    padding-bottom: 3.5rem;
    border: #707070 1px solid;
    position: relative;
    padding-left: 4rem;
    padding-right: 4.5rem;
    @media screen and (max-width: 767px) {
        position: relative;
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%;
        padding-top: 2rem;
        padding-bottom: 2rem;
        font-size: 1.4rem;
        letter-spacing: 0.01em;
        line-height: 2.2rem;
    }
}

.tiktok-style-container span {
    color: #fd2c55;
    font-weight: 600;
}

.tiktok-style-container::before {
    content: "";
    position: absolute;
    width: 100.35%;
    height: 100%;
    border: 1px solid #fd2c55;
    top: -0.7rem;
    left: -0.8rem;
}

.tiktok-style-container::after {
    content: "";
    position: absolute;
    width: 100.35%;
    height: 100%;
    border: 1px solid #23f3ee;
    bottom: -0.7rem;
    right: -0.8rem;
}

.flex-container-arrow {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    @media screen and (max-width: 767px) {
        gap: 1rem;
        margin-top: 2rem;
        align-items: center;
        padding-bottom: 2rem;
    }
}

.black-arrow-container {
    width: 15.7rem;
    height: 6.4rem;
    @media screen and (max-width: 767px) {
        width: 5.7rem;
        height: auto;
    }
}

.black-arrow-txt-right {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    line-height: 3.2rem;
    text-align: left;
    color: #000;
    max-width: 40.8rem;
    @media screen and (max-width: 767px) {
        max-width: 27rem;
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}

.title-merite-right-flag.flag2 {
    padding-top: 10rem;
    @media screen and (max-width: 767px) {
        padding-top: 1rem;
        font-size: 2.5rem;
        line-height: 3.4rem;
    }
}
.flag-title-flex-container.flag2 {
    gap: 4.5rem;
    @media screen and (max-width: 767px) {
        gap: 0.5rem;
    }
}

.merite-content-txt-container.flag2 {
    margin-left: 5.5rem;
    @media screen and (max-width: 767px) {
        margin-left: 0;
    }
}

.flex-container-arrow.flag2 {
    gap: 2.2rem;
    @media screen and (max-width: 767px) {
        gap: 1rem;
    }
}

.merite-content-flex.flag2 {
    gap: 7rem;
}

.merite-pic-container02 {
    width: 44.8rem;
    height: 44.7rem;
    margin-top: 0;
    @media screen and (max-width: 767px) {
        width: 65%;
        height: auto;
        margin: 2.5rem auto 2rem;
    }
}

.bk-bluewhite2 {
    background-color: #eeffff;
    margin-top: 9.3rem;
    padding-bottom: 6.7rem;
    position: relative;
    @media screen and (max-width: 767px) {
        margin-top: 0;
        padding-bottom: 2rem;
    }
}

.bk-animation-blue {
    position: absolute;
    width: 100%;
    height: 30rem;
    background-color: #eeffff;
    bottom: -29rem;
    @media screen and (max-width: 767px) {
        bottom: -10rem;
    }
}

.anti-flex-sp-container {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.flex-content-first-row-third-flag {
    display: flex;
    /* justify-content: space-between; */
    padding-top: 4.5rem;
    padding-left: 2.5rem;
    @media screen and (max-width: 767px) {
        padding-top: 0;
        padding-left: 0;
        display: block;
    }
}

.pic-tiktok-style-container {
    width: 16.3rem;
    height: 16.3rem;
    margin-top: 2rem;
    @media screen and (max-width: 767px) {
        width: 8.3rem;
        height: auto;
        margin-top: 1rem;
    }
}

.up-tiktok-style-img-text {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    /* line-height: 31px; */
    text-align: center;
    color: #000;
    position: relative;
    width: fit-content;
    @media screen and (max-width: 767px) {
        font-size: 1rem;
    }
}

.up-tiktok-style-img-text::after {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 0;
    left: -3.8rem;
    background-color: black;
    width: 4.3rem;
    height: 0.2rem;
    transform: rotate(69deg);
}

@media screen and (max-width: 767px) {
    .up-tiktok-style-img-text::after {
        top: 0.4rem;
        bottom: 0;
        left: -1.2rem;
        width: 1.3rem;
    }
}

.up-tiktok-style-img-text::before {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 0;
    right: -3.5rem;
    background-color: black;
    width: 4.3rem;
    height: 0.2rem;
    transform: rotate(111deg);
}

@media screen and (max-width: 767px) {
    .up-tiktok-style-img-text::before {
        top: 0.4rem;
        bottom: 0;
        right: -1.2rem;
        width: 1.3rem;
    }
}

.tiktok-style-container-flag3 {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 3.1rem;
    text-align: left;
    color: #000;
    width: 49.5rem;
    padding-top: 2.8rem;
    padding-bottom: 3.5rem;
    border: #707070 1px solid;
    position: relative;
    padding-left: 5rem;
    padding-right: 4.5rem;
    margin-left: 16.3rem;
    margin-right: 13rem;
    margin-top: 0.5rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin: 3rem 0;
        padding: 3rem 2rem;
        font-size: 1.4rem;
        letter-spacing: 0.01em;
        line-height: 2.2rem;
    }
}

.tiktok-style-container-flag3 span {
    color: #fd2c55;
    font-weight: 600;
}

.tiktok-style-container-flag3::before {
    content: "";
    position: absolute;
    width: 100.35%;
    height: 100%;
    border: 1px solid #fd2c55;
    top: -0.7rem;
    left: -0.8rem;
}

.tiktok-style-container-flag3::after {
    content: "";
    position: absolute;
    width: 100.35%;
    height: 100%;
    border: 1px solid #23f3ee;
    bottom: -0.7rem;
    right: -0.8rem;
}

.flag-title-flex-container.flag3 {
    gap: 16rem;
    @media screen and (max-width: 767px) {
        gap: 0.5rem;
    }
}

.title-merite-right-flag.flag3 {
    padding-top: 7rem;
    @media screen and (max-width: 767px) {
        padding-top: 1rem;
    }
}

.right-pic-tiktok-style-container {
    margin-left: 3rem;
}

.flex-content-second-row-third-flag {
    display: flex;
    margin-left: 16rem;
    @media screen and (max-width: 767px) {
        margin-left: 0;
        justify-content: space-around;
    }
}

.flex-container-arrow-second-row {
    margin-left: 4rem;
    gap: 2rem;
    margin-right: 7.6rem;
    @media screen and (max-width: 767px) {
        margin-left: 0;
        gap: 1rem;
        margin-right: 0;
    }
}

.flex-container-arrow-second-row .black-arrow-txt-right {
    max-width: 30rem;
}
.up-tiktok-style-img-text-second-row {
    margin-left: 1.5rem;
}

.banner-mid-section {
    height: calc(10.77vw * 4);
    width: 100%;
    background: url(../img/banner-mid.png) no-repeat;
    background-size: 100%;
    @media screen and (max-width: 767px) {
        height: 16rem;
    }
}

.banner-mid-section.banner2 {
    height: calc(10.1vw * 4);
    width: 100%;
    background: url(../img/banner2.png) no-repeat;
    background-size: 100%;
    @media screen and (max-width: 767px) {
        height: 16rem;
    }
}

.banner1 .banner-content {
    padding-top: 21.8rem;
    @media screen and (max-width: 767px) {
        padding-top: 3rem;
    }
}

.banner-content {
    padding-top: 22.5rem;
    @media screen and (min-width: 2510px) {
        padding-top: 16.5vw;
    }
    @media screen and (max-width: 1081px) {
        padding-top: 14.5rem;
    }
    @media screen and (max-width: 767px) {
        padding-top: 3rem;
    }
}

.banner3 .banner-content {
    padding-top: 20.9rem;
    @media screen and (max-width: 767px) {
        padding-top: 3rem;
    }
}

.banner-logo-ballon {
    /* width: 5.8rem;
    height: 6.3rem; */
    width: 6.6rem;
    height: 7.3rem;
    margin: 0 auto;
    @media screen and (max-width: 767px) {
        width: 2.5rem;
        height: auto;
    }
}

#number .banner-logo-ballon {
    width: 5.7rem;
    height: 6.3rem;
    @media screen and (max-width: 767px) {
        width: 2.5rem;
        height: auto;
    }
}

.banner-logo-ballon img {
    object-fit: contain;
    width: 100%;
}

.white-banner-txt {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 5.6rem;
    letter-spacing: 0.01em;
    /* line-height: 81px; */
    text-align: center;
    color: #fff;
    margin-top: 4rem;
    margin-bottom: 5.5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
}

.black-txt-banner {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.6rem;
    letter-spacing: 0.01em;
    line-height: 4.4rem;
    text-align: center;
    color: #000;
    position: relative;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}

.black-txt-banner::before {
    content: "";
    position: absolute;
    background: url(../img/exclamation-point.svg) no-repeat;
    background-size: 100%;
    width: 11.2rem;
    height: 21.5rem;
    top: -3rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

@media screen and (max-width: 767px) {
    .black-txt-banner::before {
        width: 2rem;
        height: 4.5rem;
        top: -0.5rem;
    }
}

.sns-black-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3.2rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: center;
    color: #000;
    margin-bottom: 6.8rem;
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
        margin-bottom: 4rem;
        line-height: 2.8rem;
    }
}

.sns-pourcent-flex-container {
    display: flex;
    justify-content: space-around;
    @media screen and (max-width: 767px) {
        width: 100%;
        justify-content: space-between;
    }
}

.sns-pourcent-box p {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.6rem;
    letter-spacing: 0.01em;
    /* line-height: 44px; */
    text-align: center;
    color: #000;
    margin-bottom: 2rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 1rem;
        font-size: 1.4rem;
    }
}

.sns-img01-container {
    width: 50.9rem;
    height: 41.7rem;
    @media screen and (max-width: 767px) {
        width: calc(100% - 2rem);
        height: auto;
    }
}

.sns-img02-container {
    width: 50.9rem;
    height: 41rem;
    @media screen and (max-width: 767px) {
        width: calc(100% - 2rem);
        height: auto;
    }
}

.sns-section {
    padding-top: 0.5rem;
}

.year-text-sns {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 2.5rem;
    letter-spacing: 0.01em;
    /* line-height: 41px; */
    text-align: left;
    color: #000;
    margin-bottom: 2.8rem;
    margin-top: 6.5rem;
    margin-left: 4.5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        margin: 2rem auto 1rem;
        text-align: center;
    }
}

.sns-stats-flex {
    display: flex;
    align-items: center;
    margin-left: 4.3rem;
    @media screen and (max-width: 767px) {
        margin-left: 0;
        flex-direction: column;
    }
}

.stats-box {
    border-radius: 1.8rem;
    background: #fff;
    border: 3px solid #000;
}

.stats-box.first {
    width: 37rem;
    height: 14.2rem;
    margin-right: 2rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
        margin-right: 0;
    }
}

.stats-box.second {
    width: 24.5rem;
    height: 14.2rem;
    margin-left: 1rem;
    margin-right: 2rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-left: 0;
    }
}

.stats-box.third {
    width: 19.6rem;
    height: 14.2rem;
    margin-left: 1rem;
    margin-right: 1.7rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-left: 0;
    }
}

.stats-box.fourth {
    width: 15.2rem;
    height: 14.2rem;
    margin-left: 1rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-left: 0;
    }
}

.stats-box .up-stats {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.01em;
    /* line-height: 44px; */
    text-align: center;
    color: #000;
    margin-top: 2.8rem;
    margin-bottom: 1.5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        margin: 1rem auto 1rem;
    }
}

.stats-box .down-stats {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3.9rem;
    letter-spacing: 0.01em;
    /* line-height: 44px; */
    text-align: center;
    color: #fd2c55;
    @media screen and (max-width: 767px) {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.stats-box .down-stats span {
    font-size: 2rem;
    color: black;
}

.arrow-stats-container {
    width: 1.8rem;
    height: 4.3rem;
    @media screen and (max-width: 767px) {
        transform: rotate(90deg);
    }
}

.bk-blue-content {
    padding-top: 6rem;
    background-color: #eeffff;
    margin-top: 13.5rem;
    padding-bottom: 3rem;
    @media screen and (max-width: 767px) {
        padding-top: 2rem;
        margin-top: 4rem;
        padding-bottom: 3rem;
    }
}

.tiktok-content-paragraph {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 4rem;
    text-align: center;
    color: #000;
    /* max-width: 81.6rem; */
    margin: 5rem auto 0;
    @media screen and (max-width: 767px) {
        margin: 2rem auto 0;
        line-height: 2.4rem;
    }
}

.tiktok-content-paragraph p {
    @media screen and (max-width: 767px) {
        text-align: left;
    }
}

.red-bold {
    font-weight: 600;
    color: #fd2c55;
}

.tiktok-content-paragraph h3 {
    font-size: 2.4rem;
    line-height: inherit;
    margin-bottom: 0.9rem;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        line-height: 2.6rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
}

.red-black {
    font-weight: 900;
    color: #fd2c55;
}

.tiktok-content-white-container {
    background-color: white;
    padding-top: 3.6rem;
    width: 100%;
    padding-bottom: 4.5rem;
    margin-top: 3rem;
    padding-right: 13rem;
    padding-left: 12.2rem;
    @media screen and (max-width: 767px) {
        margin-top: 1rem;
        padding-right: 2rem;
        padding-left: 2rem;
        padding-bottom: 2.5rem;
        padding-top: 2.5rem;
    }
}

.flex-container-tiktok-logo {
    display: flex;
    gap: 2.6rem;
    justify-content: flex-end;
    align-items: flex-end;
    @media screen and (max-width: 767px) {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

.tiktok-logo-container {
    width: 25.6rem;
    height: 6.2rem;
    @media screen and (max-width: 767px) {
        width: 18rem;
        height: auto;
        margin: 0 auto;
    }
}

.soft-tiktok-link {
    font-family: "Noto Sans JP";
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    /* line-height: 44px; */
    text-align: center;
    color: #fd2c55;
    text-decoration: #fd2c55 underline;
    position: relative;
    padding-bottom: 1rem;
    text-underline-offset: 1rem;
}

.soft-tiktok-link::after {
    content: "";
    position: absolute;
    background: url(../img/tiktok-red-svg.svg) no-repeat;
    background-size: 100%;
    width: 1.2rem;
    height: 1.4rem;
    top: -1rem;
    bottom: 0;
    right: -1.6rem;
    margin: auto;
}

.tiktok-content-img-container {
    margin-top: 3.5rem;
    width: 97.3rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin-top: 2.5rem;
    }
}

.banner-mid-section.banner2 .white-banner-txt {
    line-height: 8rem;
    margin-top: 1.3rem;
    margin-bottom: 3.4rem;
    @media screen and (max-width: 767px) {
        line-height: 2rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
.nobk-banner.black-txt-banner::before {
    display: none;
}

.five-step {
    margin-top: -9rem;
    margin-bottom: 12rem;
    @media screen and (max-width: 767px) {
        margin-top: 0rem;
        margin-bottom: 5rem;
    }
}

.five-step .step {
    margin-top: 12.6rem;
    margin-bottom: 5rem;
    padding: 3.6rem;
    border-top: 3px solid #fd2c55;
    border-bottom: 3px solid #fd2c55;
    position: relative;
    @media screen and (max-width: 767px) {
        /* padding: 0.5rem; */
        margin-top: 7rem;
        margin-bottom: 2.5rem;
        padding: 3rem 0 2rem;
    }
}

.five-step .step2 {
    margin-top: 9.1rem;
    margin-bottom: 7rem;
}

.five-step .step3 {
    margin-top: 8.6rem;
    margin-bottom: 5rem;
}

.five-step .step4 {
    margin-top: 0rem;
    margin-bottom: 5rem;
}

.five-step .step5 {
    margin-top: 10rem;
    margin-bottom: 6rem;
}

.absolute-anchor {
    position: absolute;
    top: 0;
    height: 0;
    margin-top: -12rem;
    padding-top: 12rem;
}

.step-number {
    position: absolute;
    left: 5.5rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    height: 11.2rem;
    width: 11.2rem;
    border-radius: 50%;
    background-color: #fd2c55;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: 0.01em;
    line-height: 11.2rem;
    text-align: center;
    color: #fff;
    @media screen and (max-width: 767px) {
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: translateY(-50%);
        height: 5rem;
        width: 5rem;
        font-size: 3rem;
        line-height: 5rem;
    }
}

.texts .text-1 {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 5.8rem;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        line-height: 3rem;
    }
}

.texts .text-2 {
    margin-bottom: 1rem;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3.6rem;
    line-height: 6rem;
    letter-spacing: 0.01em;
    text-align: center;
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
        line-height: 2.4rem;
        margin-bottom: 0;
    }
}

.red {
    color: #fd2c55;
}

.five-step .general-txt {
    margin-top: 4rem;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2em;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;
    @media screen and (max-width: 767px) {
        margin-top: 3rem;
        font-size: 1.6rem;
        text-align: left;
        line-height: 2.2rem;
    }
}

.workflow {
    margin-top: 6.6rem;
    padding: 0 4.4rem;
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 11rem;
    align-items: center;

    @media screen and (max-width: 767px) {
        padding: 0;
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-top: 2.5rem;
    }

    .left-region {
        .logo {
            width: 22.9rem;
            margin-bottom: 2.8rem;
            margin-left: 25rem;

            @media screen and (max-width: 767px) {
                width: 100%;
                margin-bottom: 2rem;
                margin-left: 0;
            }
        }

        .box {
            display: grid;
            grid-template-columns: 1.1fr 4fr;
            align-items: center;

            .left-area {
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #8e0097;
                /* height: -webkit-fill-available; */
                height: 100%;
                border-radius: 1.6rem 0 0 16px;

                .summary {
                    font-family: "Noto Sans JP";
                    font-weight: bold;
                    font-size: 3rem;
                    letter-spacing: 0.01em;
                    text-align: left;
                    color: #fff;

                    @media screen and (max-width: 767px) {
                        font-size: 2.2rem;
                    }
                }
            }

            .right-area {
                padding: 3.9rem 13.6rem 4.1rem 3rem;
                border-radius: 0 1.6rem 1.6rem 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1.7rem;
                border: 1px solid #fd2c55;

                @media screen and (max-width: 1080px) {
                    padding: 2.6rem;
                }

                @media screen and (max-width: 767px) {
                    gap: 0.8rem;
                }

                .specific {
                    font-family: "Noto Sans JP";
                    font-weight: 900;
                    font-size: 2.2rem;
                    letter-spacing: 0.01em;
                    text-align: center;
                    line-height: 1.5;
                    color: #000;

                    @media screen and (max-width: 767px) {
                        font-size: 1.3rem;
                    }
                }

                .pink-arrow {
                    @media screen and (max-width: 767px) {
                        width: 2rem;
                    }
                }
            }

            .right-area.special {
                position: relative;

                .center-arrow {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translate(calc(-50% + -5rem), calc(100% + 2rem));

                    @media screen and (max-width: 767px) {
                        transform: translate(-50%, calc(100% + 1.2rem));
                        width: 2rem;
                    }
                }
            }
        }

        .out-arrow {
            margin: 1.6rem auto;
            visibility: hidden;

            @media screen and (max-width: 767px) {
                margin: 1.2rem auto;
                width: 2rem;
            }
        }
    }

    .right-region {
        transform: translateY(3.4rem);
        .confirm {
            font-family: "Noto Sans JP";
            font-weight: 900;
            font-size: 3.8rem;
            letter-spacing: 0.01em;
            text-align: center;
            color: #fd2c55;
            margin: auto;
            width: fit-content;
            position: relative;

            &::before {
                content: "";
                position: absolute;
                left: -2.5rem;
                top: 0;
                bottom: 0;
                margin: auto 0;
                width: 0.2rem;
                height: 6.5rem;
                background-color: #fd2c55;
                transform: rotate(-15deg);
            }

            &::after {
                content: "";
                position: absolute;
                right: -2.5rem;
                top: 0;
                bottom: 0;
                margin: auto 0;
                width: 0.2rem;
                height: 6.5rem;
                background-color: #fd2c55;
                transform: rotate(15deg);
            }

            @media screen and (max-width: 767px) {
                font-size: 2.4rem;

                &::before {
                    left: -1.5rem;
                    height: 3.5rem;
                }

                &::after {
                    right: -1.5rem;
                    height: 3.5rem;
                }
            }
        }

        .enterprise {
            margin-top: 5rem;
            padding-left: 7rem;

            @media screen and (max-width: 767px) {
                margin: 2.5rem auto;
                transform: translateX(121%);
                width: 10rem;
                padding-left: 0;
            }
        }
    }
}

.left-area2 {
    background-color: #23f3ee !important;
}
.right-area2 {
    border: 1px solid #23f3ee !important;
}

.step-2-img-container {
    width: 103.6rem;
    /* height: 19.2rem; */
    margin: 0 auto 3.8rem;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.step-text-general {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 3.3rem;
    text-align: center;
    color: #000;
    @media screen and (max-width: 767px) {
        line-height: 2.2rem;
        text-align: left;
    }
}

.step-text-general-lh {
    line-height: 3.9rem;
    @media screen and (max-width: 767px) {
        line-height: 2.2rem;
    }
}

.step-3-img-container {
    width: 111.8rem;
    /* height: 25.5rem; */
    margin: 2.3rem auto 8.5rem;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.step-4-img-container {
    width: 79.5rem;
    margin: 5.8rem auto 0;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.flex-google-calendar {
    display: flex;
    gap: 5.9rem;
    justify-content: center;
    @media screen and (max-width: 767px) {
        gap: 1.5rem;
    }
}

.calendar-img-container {
    width: 15rem;
    /* height: 15rem; */
}

.schedule-img-container {
    width: 92.6rem;
    margin: 7.8rem auto;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin: 3.8rem auto 0;
    }
}

.banner3 .white-banner-txt {
    line-height: 8rem;
    margin-top: 2.5rem;
    margin-bottom: 3.3rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        margin-top: 0.5rem;
        margin-bottom: 0.3rem;
        line-height: 2rem;
    }
}

.banner-mid-section.banner3 {
    /* height: 80.7rem; */
    height: calc(10.77vw * 4);
    width: 100%;
    background: url(../img/banner-mid-white.png) no-repeat;
    background-size: 100%;
    @media screen and (max-width: 767px) {
        height: 15.5rem;
    }
}

.little-red-marq {
    width: 5rem;
    height: 0.5rem;
    background: #fd2c55;
    margin: 5rem auto 6rem;
    @media screen and (max-width: 767px) {
        margin: 2rem auto 3rem;
    }
}

.first-price {
    font-family: "Noto Sans JP";
    font-weight: 600;
    font-size: 2.4rem;
    letter-spacing: 0.01em;
    /* line-height: 62px; */
    text-align: center;
    color: #000;
    margin-bottom: 5rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 4rem;
        font-size: 1.8rem;
    }
}

.first-price span {
    font-size: 2.8rem;
    @media screen and (max-width: 767px) {
        font-size: 2.3rem;
    }
}

.flex-three-price-container {
    display: flex;
    /* gap: 4.2rem; */
    align-items: center;
    justify-content: space-evenly;
    @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 3rem;
    }
}

.price-box {
    width: 33.9rem;
    height: 52.4rem;
    border-radius: 1.8rem;
    background: transparent;
    border: 1px solid #000;
    position: relative;
    padding-top: 7.2rem;
    @media screen and (max-width: 767px) {
        width: 22rem;
        padding-top: 2.5rem;
        height: 30rem;
    }
}

.price-box.osusume {
    height: 59.5rem;
    padding-top: 11rem;
    @media screen and (max-width: 767px) {
        height: 31rem;
        padding-top: 3.5rem;
    }
}

.price-box::before {
    content: "";
    position: absolute;
    width: 100.35%;
    height: 100%;
    border: 1px solid #fd2c55;
    top: -0.7rem;
    left: -0.8rem;
    border-radius: 1.8rem;
}

.price-box::after {
    content: "";
    position: absolute;
    width: 100.35%;
    height: 100%;
    border: 1px solid #23f3ee;
    bottom: -0.7rem;
    right: -0.8rem;
    border-radius: 1.8rem;
}

.red20-black {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 0.01em;
    /* line-height: 88px; */
    text-align: center;
    color: #fd2c55;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
    }
}

.box-title-tiktok {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.6rem;
    letter-spacing: 0.01em;
    /* line-height: 88px; */
    text-align: center;
    color: #000;
    margin-top: 2.4rem;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        margin-top: 1rem;
    }
}

.red-separator-box {
    width: 5rem;
    height: 0.5rem;
    background: #fd2c55;
    /* margin-bottom: 5.8rem; */
    margin: 4rem auto 6rem;
    @media screen and (max-width: 767px) {
        width: 3rem;
        height: 0.3rem;
        margin: 1rem auto 2rem;
    }
}

.box-price-container {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 4.1rem;
    letter-spacing: 0.1em;
    /* line-height: 88px; */
    text-align: center;
    color: #000;
    margin-bottom: 4rem;
    margin-top: 1.5rem;
    @media screen and (max-width: 767px) {
        font-size: 2rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
}

.box-price-container span {
    font-size: 2rem;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
    }
}

.box-price-container .note {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    @media screen and (max-width: 767px) {
        font-size: 1rem;
    }
}

.osusume-icon {
    position: relative;
}

.osusume-icon::before {
    content: "";
    position: absolute;
    width: 11.4rem;
    height: 11.4rem;
    background: url(../img/plan-icon.png) no-repeat;
    background-size: 100%;
    top: -13.5rem;
    right: -3rem;
    z-index: 3;
}

@media screen and (max-width: 767px) {
    .osusume-icon::before {
        width: 7.4rem;
        height: 7.4rem;
        background-size: 100%;
        top: -5.5rem;
        right: -2rem;
    }
}

.plan-section {
    margin-top: -8rem;

    .title-merite {
        max-width: 55rem;
    }
    @media screen and (max-width: 767px) {
        margin-top: 0rem;
    }
}

#plan-choice {
    scroll-margin-top: 17rem;
}

.other-plan-one {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;
    margin-top: 5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        margin-top: 3rem;
    }
}

.other-plan-one span {
    font-size: 3.4rem;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
    }
}

.fs22 {
    font-size: 2.2rem !important;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem !important;
    }
}

.plan-blue-bk {
    padding-top: 6rem;
    background-color: #eeffff;
    padding-bottom: 8.3rem;
    margin-top: 11rem;
    @media screen and (max-width: 767px) {
        padding-top: 2rem;
        background-color: #eeffff;
        padding-bottom: 4.6rem;
        margin-top: 4rem;
    }
}

.plan-blue-bk p {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    /* line-height: 88px; */
    text-align: center;
    color: #000;
    margin-top: 6rem;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
}

.blue-plan-flex-container {
    display: flex;
    margin-top: 8rem;
    justify-content: space-between;
    @media screen and (max-width: 767px) {
        flex-wrap: wrap;
        row-gap: 3rem;
        margin-top: 3rem;
    }
}

.blue-plan-box {
    display: flex;
    flex-direction: column;
    width: 27.9rem;
    @media screen and (max-width: 767px) {
        width: 16.5rem;
    }
}

.blue-plan-box .pic-container {
    width: 20rem;
    margin-bottom: 3.7rem;
    margin: 0 auto 3.7rem;
    @media screen and (max-width: 767px) {
        width: 15rem;
        margin: 0 auto 0.5rem;
    }
}

.blue-plan-box .box-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.1rem;
    letter-spacing: 0.01em;
    line-height: 3.7rem;
    text-align: left;
    color: #000;
    height: 6.7rem;
    margin-bottom: 1.8rem;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 2rem;
        height: 5rem;
        max-width: 18.1rem;
        margin-bottom: 0;
    }
}

.blue-plan-box .box-text {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 3.4rem;
    text-align: left;
    color: #000;
    max-width: 28.1rem;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        line-height: 1.8rem;
        max-width: 18.1rem;
    }
}

.plan-contact {
    padding-top: 7rem;
    @media screen and (max-width: 767px) {
        padding-top: 4rem;
    }
}
.title-pic-container {
    width: 74.3rem;
    /* margin: 0 auto; */
    margin-left: 31rem;
    margin-bottom: 1.7rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin-left: 0;
    }
}

.contact-bubble-container {
    width: 115.1rem;
    height: 12.6rem;
    position: relative;
    margin: 0 auto 0;
    /* margin-left: 3.5rem; */
    @media screen and (max-width: 767px) {
        width: 100%;
        margin-left: 0;
        height: 4.6rem;
    }
}

.contact-bubble-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.contact-bubble-container p {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.6rem;
    letter-spacing: 0.01em;
    /* line-height: 81px; */
    text-align: center;
    color: #000;
    padding-top: 4rem;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        padding-top: 1.3rem;
    }
}

.red-titles-flex-container {
    display: flex;
    margin-top: 6.1rem;
    margin-bottom: 3.7rem;
    justify-content: space-around;
    @media screen and (max-width: 767px) {
        margin-top: 3rem;
        margin-bottom: 2rem;
        justify-content: space-around;
    }
}

.red-titles-flex-container p {
    position: relative;
    width: fit-content;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3.3rem;
    letter-spacing: 0.01em;
    /* line-height: 50px; */
    color: #fd2c55;
    text-align: center;
    @media screen and (max-width: 767px) {
        margin-left: 0;
        font-size: 1.8rem;
    }
}

.red-titles-flex-container.--white p {
    color: white;
}

.red-titles-flex-container p:first-child {
    margin-left: 3rem;
}

.red-titles-flex-container p:last-child {
    margin-right: 2rem;
}

.red-titles-flex-container p::before {
    content: "";
    position: absolute;
    left: -4.5rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 0.2rem;
    height: 6.5rem;
    background-color: #fd2c55;
    transform: rotate(-15deg);
}

.red-titles-flex-container p::after {
    content: "";
    position: absolute;
    right: -3.9rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 0.2rem;
    height: 6.5rem;
    background-color: #fd2c55;
    transform: rotate(15deg);
}

.red-titles-flex-container.--white p::before,
.red-titles-flex-container.--white p::after {
    background-color: white;
}

@media screen and (max-width: 767px) {
    .red-titles-flex-container p::before {
        left: -1.5rem;
        height: 2.5rem;
    }
    .red-titles-flex-container p::after {
        right: -1.5rem;
        height: 2.5rem;
    }
}

.flex-button-blue-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 5rem;
    column-gap: 6.5rem;
    /* margin-left: 7rem; */
    margin-bottom: 5rem;
    @media screen and (max-width: 767px) {
        margin-left: 0;
        justify-content: center;
        row-gap: 1.5rem;
        margin-bottom: 0;
    }
}

.blue-button-contact {
    width: 50.7rem;
    height: 10.8rem;
    border-radius: 54.14px;
    background: linear-gradient(#c0fce4 0%, #71f5f2 53.56%, #23f3ee 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 3.1rem;
    letter-spacing: 0.01em;
    line-height: 81px;
    text-align: center;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    @media screen and (max-width: 767px) {
        width: 28rem;
        height: 6rem;
        font-size: 2rem;
    }
}

.blue-button-contact:hover {
    opacity: 0.5;
}

.phone-button {
    gap: 1.7rem;
    flex-direction: row;
}

.phone-button:hover {
    opacity: 1;
    cursor: default;
}

.phone-button-icon {
    width: 5.4rem;
    height: 5.4rem;
    @media screen and (max-width: 767px) {
        width: 2.6rem;
        height: 2.6rem;
    }
}

.phone-button-text {
    text-align: center;
    margin-top: 10px;
}

.sofcom-logo-contact {
    margin: 7.3rem auto 0;
    width: 32rem;
    @media screen and (max-width: 767px) {
        margin: 2rem auto 0;
        width: 13rem;
    }
}

.banner-mid-section-banner4 {
    /* height: 60.7rem; */
    height: calc(8.05vw * 4);
    width: 100%;
    background: url(../img/banner-mid-white-faq.png) no-repeat;
    background-size: 100%;
    margin-top: 6rem;
    @media screen and (max-width: 767px) {
        height: 12rem;
        margin-bottom: 3rem;
    }
}

.banner-mid-section-banner4 .banner-content {
    padding-top: 21.5rem;
    @media screen and (min-width: 2000px) {
        padding-top: 13.5vw;
    }
    @media screen and (max-width: 1081px) {
        padding-top: 17.5rem;
    }
    @media screen and (max-width: 767px) {
        padding-top: 3.3rem;
    }
}

.box-q-a-container {
    width: 110rem;
    margin: 0 auto 6rem;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.question-block {
    background-color: #23f3ee;
    padding: 2.3rem 2rem 2.4rem 10.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 7.5rem;
    @media screen and (max-width: 767px) {
    }
}
.question-block p {
    padding-top: 0.7rem;
    @media screen and (max-width: 767px) {
        padding-top: 0;
    }
}

.question-block::before {
    content: "Q";
    position: absolute;
    top: -1.7rem;
    left: 2.6rem;
    font-family: "TBGothicB Std";
    font-weight: normal;
    font-size: 7rem;
    letter-spacing: 0.01em;
    color: #000;
}

@media screen and (max-width: 767px) {
    .question-block::before {
        top: -0.5rem;
        left: 0.5rem;
        font-size: 2.8rem;
    }
}

.question-block {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.01em;
    text-align: left;
    color: #000;
    border-radius: 1rem;
    cursor: pointer;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        padding: 1rem 1.5rem 1rem 3rem;
        height: fit-content;
        line-height: 2rem;
    }
}

.open-button-faq {
    width: 3.5rem;
    height: 3.5rem;
    background: #fff;
    border-radius: 50%;
    position: relative;
    @media screen and (max-width: 767px) {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.open-button-faq::before {
    content: "";
    position: absolute;
    background-color: #ff9e1c;
    height: 0.3rem;
    width: 1.7rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.open-button-faq::after {
    content: "";
    position: absolute;
    background-color: #ff9e1c;
    height: 0.3rem;
    width: 1.7rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(-91deg);
    transition: 0.4s ease-in-out;
}

@media screen and (max-width: 767px) {
    .open-button-faq::before {
        height: 0.2rem;
        width: 1rem;
    }
    .open-button-faq::after {
        height: 0.2rem;
        width: 1rem;
    }
}
.open.open-button-faq::after {
    content: "";
    position: absolute;
    background-color: #ff9e1c;
    height: 0.3rem;
    width: 1.7rem;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(0deg);
}

@media screen and (max-width: 767px) {
    .open.open-button-faq::after {
        width: 1rem;
        height: 0.2rem;
    }
}

.answer-block.open {
    width: 110rem;
    height: 9.2rem;
    border-radius: 1rem;
    background: #eff;
    margin-top: -2rem;
    display: flex;
    align-items: center;
    padding-left: 3.8rem;
    padding-top: 1.7rem;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    /* line-height: 40px; */
    text-align: left;
    color: #000;
    @media screen and (max-width: 767px) {
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.6rem;
        padding-left: 1.5rem;
    }
}
.answer-block {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    /* line-height: 40px; */
    text-align: left;
    color: #000;
    width: 110rem;
    height: 0.5rem;
    border-radius: 1rem;
    background: #eff;
    margin-top: -4rem;
    padding-left: 3.8rem;
    transition: 0.4s ease-in-out;
    @media screen and (max-width: 767px) {
        width: 100%;
        font-size: 0.2rem;
        line-height: 1.6rem;
    }
}

.banner-mid-section.banner5 {
    margin-top: 18rem;
    /* height: 80.7rem; */
    height: calc(10.25vw * 4);
    width: 100%;
    background: url(../img/banner-mid-white-blue.png) no-repeat;
    background-size: 100%;
    @media screen and (max-width: 767px) {
        margin-top: 9rem;
        height: 15.5rem;
        .banner-logo-ballon {
            width: 1.5rem;
        }
    }
}

.banner5 .white-banner-txt {
    line-height: 8rem;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    @media screen and (max-width: 767px) {
        line-height: 2.3rem;
        margin-top: 0rem;
        margin-bottom: 0.5rem;
    }
}

.banner5 .black-txt-banner {
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}
.banner5 {
    position: relative;
}

.bk-animation-blue-banner5 {
    position: absolute;
    width: 100%;
    height: 30rem;
    background-color: #eeffff;
    top: 49.1em;
    @media screen and (max-width: 767px) {
        top: 15.6rem;
    }
}

/* .reason-anchor {
	padding-top: 3.8rem;
	@media screen and (max-width: 767px) {
		padding-top: 2rem;
	}
} */

/* .anchor-link-flex-container {
	display: flex;
	justify-content: space-between;
	@media screen and (max-width: 767px) {
		margin-top: 4rem;
	}
} */

.anchor-box {
    width: 39rem;
    height: 38.8rem;
    border-radius: 10px;
    background: #eff;
    display: flex;
    flex-direction: column;
    padding-top: 5.1rem;
    text-decoration: none;
    @media screen and (max-width: 767px) {
        padding-top: 2rem;
        width: 11rem;
        height: 16.5rem;
    }
}

.anchor-red-little-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: center;
    color: #fd2c55;
    @media screen and (max-width: 767px) {
        font-size: 1.2rem;
    }
}

.anchor-box .number {
    font-family: "Noto Sans JP";
    font-weight: 600;
    font-size: 5.6rem;
    letter-spacing: 0.01em;
    /* line-height: 5.8rem; */
    text-align: center;
    color: #fd2c55;
    margin-bottom: 2.8rem;
    margin-top: 1.1rem;
    @media screen and (max-width: 767px) {
        font-size: 2.5rem;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
}

.reason-title-anchor {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 4.1rem;
    letter-spacing: 0.01em;
    line-height: 6.4rem;
    text-align: center;
    color: #000;
    margin-bottom: 2.3rem;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 2rem;
        margin-bottom: 0.5rem;
    }
}

.arrow-down-container {
    width: 3.5rem;
    margin: 0 auto;
    transition: 0.4s ease-in-out;
    @media screen and (max-width: 767px) {
        width: 2.5rem;
    }
}

.anchor-box:hover .arrow-down-container {
    transform: translateY(1rem);
}

#reason1 {
    background-color: #eeffff;
    padding-top: 7rem;
    padding-bottom: 7rem;
    @media screen and (max-width: 767px) {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }
}

.reason-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    /* line-height: 58px; */
    text-align: center;
    color: #000;
    margin-bottom: 3rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 2rem;
    }
}

.reason-big-title {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 3.6rem;
    letter-spacing: 0.01em;
    /* line-height: 50px; */
    text-align: center;
    color: #000;
    @media screen and (max-width: 767px) {
        font-size: 2.5rem;
        line-height: 3.3rem;
    }
}

.reason-big-title span {
    color: #fd2c55;
    margin-bottom: 3rem;
}

.content-reason1-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    align-items: center;
    @media screen and (max-width: 767px) {
        flex-direction: column;
    }
}

.first-img-reason1-container {
    width: 30.4rem;
    @media screen and (max-width: 767px) {
        width: 55%;
        margin-bottom: 1rem;
    }
}

.content-text-reason1 {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    line-height: 4rem;
    text-align: center;
    color: #000;
    margin: 0 auto;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 2.4rem;
        text-align: left;
    }
}

#reason2 .content-text-reason1 {
    margin: 4rem auto 0rem;
}

#reason3 .content-text-reason1 {
    margin: 4.5rem auto 0rem;
    @media screen and (max-width: 767px) {
        margin: 2.5rem auto 0rem;
    }
}

.second-img-reason1-container {
    width: 32.8rem;
    @media screen and (max-width: 767px) {
        width: 65%;
        margin-top: 1rem;
    }
}

#reason2 {
    padding-top: 10.2rem;
    padding-bottom: 7.5rem;
    @media screen and (max-width: 767px) {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
}

.r-box-txt {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    /* line-height: 40px; */
    text-align: center;
    color: #000;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 3rem;
        text-align: left;
    }
}

.r-box-logo-container {
    width: 24.3rem;
    margin: 0 auto;
}

.flex-reason2-container {
    display: flex;
    margin-top: 3rem;
    align-items: flex-end;
    @media screen and (max-width: 767px) {
        flex-direction: column;
    }
}

.red-bubble-container {
    width: 29.3rem;
    height: 29.3rem;
    background: transparent;
    border: 6px solid #fd2c55;
    border-radius: 50%;
    margin-left: 2rem;
    @media screen and (max-width: 767px) {
        width: 18.3rem;
        height: 18.3rem;
        margin: 0 auto;
    }
}

.txt-black-red-bubble {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 2.4rem;
    letter-spacing: 0.07em;
    line-height: 3.6rem;
    text-align: center;
    color: #000;
    padding-top: 4rem;
    padding-bottom: 2rem;
    @media screen and (max-width: 767px) {
        font-size: 1.8rem;
        line-height: 2.6rem;
        padding-top: 2.5rem;
        padding-bottom: 1rem;
    }
}

.number-red-bubble {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 2.7rem;
    letter-spacing: 0.01em;
    line-height: 4.4rem;
    text-align: center;
    color: #fd2c55;
    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }
}

.number-red-bubble span {
    font-size: 6.4rem;
    @media screen and (max-width: 767px) {
        font-size: 3rem;
    }
}

.reason2-img-container {
    width: 84.3rem;
    @media screen and (max-width: 767px) {
        width: 100%;
        margin: 2rem auto 0;
    }
}

#reason3 {
    background-color: #eeffff;
    padding-top: 8.9rem;
    padding-bottom: 4rem;
    @media screen and (max-width: 767px) {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
}

.reason3-img-container {
    width: 73.3rem;
    margin: 3.5rem auto;
    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

#qa {
    margin-top: -7rem;
    padding-top: 10rem;
}

/* 
////////////////////////////////////////
//////////Animations////////////////////
//////////////////////////////////////// 
*/

.section-top-bk-container,
.about-tiktok,
.why-tiktok,
.merite-tiktok,
.banner-mid-section,
.sns-section,
.five-step,
.plan-section,
.campaign-banner .plan-blue-bk,
.plan-contact,
.q-and-a,
.reason-anchor,
#reason1,
#reason2,
#reason3,
.footer-top-animation-best {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
}

.section-top-bk-container.show,
.about-tiktok.show,
.why-tiktok.show,
.merite-tiktok.show,
.banner-mid-section.show,
.button_home.show,
.sns-section.show,
.five-step.show,
.plan-section.show,
.plan-blue-bk.show,
.plan-contact.show,
.q-and-a.show,
.reason-anchor.show,
#reason1.show,
#reason2.show,
#reason3.show,
.footer-top-animation-best.show {
    opacity: 1;
    transform: translateY(0);
}

/* print */

@media print {
    .section-top-bk-container,
    .about-tiktok,
    .why-tiktok,
    .merite-tiktok,
    .banner-mid-section,
    .sns-section,
    .five-step,
    .plan-section,
    .plan-blue-bk,
    .plan-contact,
    .q-and-a,
    .reason-anchor,
    #reason1,
    #reason2,
    #reason3,
    .footer-top-animation-best {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    header {
        display: none;
    }
}

/* --------------------------------------------------------------- */
/* TOP BK BOX */
/* --------------------------------------------------------------- */

.top-bk-box {
    display: flex;
    gap: 3rem;
    width: 100%;

    @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 0;
    }
}

.text-top-container {
    width: 49%;

    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

.movie-frame-container {
    width: 49%;
    position: relative;

    &::after {
        content: "";
        position: absolute;
        width: 90%;
        height: 100%;
        top: -8%;
        left: -10%;
        transform: translateX(10rem);
        background: url(../img/sparks.svg) no-repeat center / contain;
        z-index: 3;
        pointer-events: none;
    }

    @media screen and (max-width: 767px) {
        width: 100%;

        &::after {
            left: -25%;
        }
    }
}

.video-content-item {
    position: relative;
    left: 33%;
    height: 63rem;
    width: 100%;
    z-index: 5;
    overflow: visible;

    & img {
        position: relative;
        width: 33rem;
        height: 69rem;
        top: -6rem;
        border-radius: 9rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
        z-index: 1;
    }

    &::before {
        content: "";
        position: absolute;
        width: 34rem;
        height: 69rem;
        top: -6rem;
        left: 0;
        right: 0;
        margin: auto;
        background: url("../img/movie-frame.png") no-repeat center / cover;
        z-index: 2;
        pointer-events: none;
    }

    @media screen and (max-width: 1024px) {
        & img {
            top: -8rem;
        }
        &::before {
            top: -8rem;
        }
    }

    @media screen and (max-width: 767px) {
        & img {
            width: 24rem;
            height: 50rem;
        }

        &::before {
            width: 25rem;
            height: 50rem;
        }
    }
}

.fv-phone {
    position: absolute;
    bottom: 6.2rem;
    right: 25.2rem;
    width: 39.3rem;
    height: 65.2rem;

    @media screen and (min-width: 1921px) {
    }

    @media screen and (max-width: 1080px) {
        bottom: 7.2rem;
        right: 7.8rem;
        width: 33rem;
        height: 56.2rem;
    }

    @media screen and (max-width: 767px) {
        width: 18.4rem;
        height: auto;
        bottom: 0;
        top: 36.4rem;
        right: 9.4rem;
    }
}

#fv-swiper3 {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;

    @media screen and (max-width: 1024px) {
        padding-bottom: 0;
    }

    @media screen and (max-width: 767px) {
        padding-top: 0;
        padding-bottom: 0;
    }
}

#fv-swiper3 .swiper-slide {
    left: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0.5;
    transform: scale(0.7);
}

#fv-swiper3 .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

#fv-swiper3 iframe {
    /* aspect-ratio: 9/16; */
}

.swiper-wrapper {
    padding-top: 15rem;
}

.notice {
    position: relative;
}

#side-banner {
    max-width: 400px;
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 9999;
    cursor: pointer;
    transition: 0.3s opacity;

    &:hover {
        opacity: 0.8;
    }

    @media print {
        position: absolute;
    }
}

#side-banner img {
    position: absolute;
    width: 80%;
    max-width: 390px;
    vertical-align: top;
    bottom: 0.5rem;
    right: 1rem;
    z-index: 99;
    pointer-events: all;

    @media screen and (max-width: 767px) {
        width: 60%;
        bottom: 7rem;
        /* right: 2rem; */
    }
}

.campaign-banner {
    padding-top: 7rem;
    /* transition: 0.3s opacity ease-out;

    &:hover {
        opacity: 0.6;
    } */

    @media screen and (max-width: 767px) {
        padding-top: 3rem;
    }
}
.campaign-banner-img {
    width: 100%;
}
