@charset "UTF-8";

/* ページ全体のスタイル
------------------------------------------ */
body {
    color: #333333;
    font-family: "Zen Maru Gothic", sans-serif;
    background-color: #ffffff;
}

a {
    color: #3a4856;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

li {
    list-style: none;
}

/* 共通
------------------------------------------ */
h2 {
    position: relative;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1.5rem;
    z-index: 1;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

.js-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-zoom.is-animated {
    opacity: 1;
    transform: scale(1);
}


.h2-bl {
    color: #333333;
}

@media (min-width:768px) {
    .sp_only {
        display: none;
    }
}

/* 問い合わせボタン */
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.contact-button {
    display: inline-block;
    cursor: pointer;
}

/* hover時に少し浮かせる */
.contact-button:hover {
    transform: translateY(-4px);
}

.contact p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}


/* ヘッダー
------------------------------------------ */
header {
    text-align: center;
}

header p {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    header p {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .logo {
        text-align: left;
        padding-left: 1rem;
    }
}

@media (min-width: 768px) {
    .smile {
        padding-left: 7rem;
    }
}

/* cover
------------------------------------------ */
.fv {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

picture {
    display: flex;
    justify-content: center;
    position: relative;
    /* z-index: -100; */
    z-index: 0;
}

.fv img {
    width: 85%;
}

.main-copy {
    display: flex;
    position: absolute;
    flex-direction: column;
    gap: 12px;
    /* 行間の余白 */
    align-items: flex-end;
    max-width: 720px;
    margin: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    top: 1.5rem;
    right: 5%;
    z-index: 10;
}

@media (min-width:560px) {
    .main-copy {
        top: 2rem;
    }
}

@media (min-width: 768px) {
    .main-copy {
        align-items: start;
        gap: 36px;
        top: 12rem;
        right: 0%;
        left: 5%;
    }
}

.main-copy.fadeup.is-animated {
    animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

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

/* タグ風のラベル */
.tag {
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    /* 本体の背景（白） */
    padding: 0.2rem 0 0.2rem 0.2rem;
    border-radius: 5px;
    /* 角丸 */
    font-size: 1.5rem;
    /* 必要に応じ調整 */
    line-height: 1.2;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    /* 軽い落ち影（任意） */
}

@media (min-width:560px) {
    .tag {
        font-size: 2rem;
    }
}

@media (min-width:720px) {
    .tag {
        font-size: 2.5rem;
    }
}


/* カラフルなオフセット影（角丸に沿う） */
.tag::before {
    content: "";
    position: absolute;
    inset: 0;
    /* 親と同じサイズ */
    background-color: #7EBCED;
    border-radius: inherit;
    /* 親と同じ角丸 */
    transform: translate(5px, 5px);
    /* 影のオフセット量（調整可） */
    z-index: -1;
    /* 背面に配置 */
}

/* レスポンシブ（小さな画面で文字を縮める） */
@media (max-width: 480px) {
    .tag {
        font-size: 20px;
        padding: 10px 16px;
        border-radius: 10px;
    }

    .tag::before {
        transform: translate(6px, 6px);
    }
}

/* usp全体を並べる親要素 */
.usp-wrapper {
    display: flex;
    justify-content: center;
    position: static;
    gap: 0.5rem;
    margin-top: -20px;
}


@media (min-width: 768px) {
    .usp-wrapper {
        gap: 1.5rem;
    }
}

/* 各usp */
.usp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #fff;
    padding: 1rem 0;
    border-radius: 5px;
    width: 7.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease;
}

@media (max-width:375px) {
    .usp {
        width: 7rem;
    }
}

@media (min-width:560px) {
    .usp {
        width: 10rem;
    }
}

@media (min-width:720px) {
    .usp {
        width: 13rem;
    }
}

@media (min-width: 768px) {
    .usp {
        width: 15rem;
        padding: 1.5rem 0;
    }
}

/* hover時に少し浮かせる */
.usp:hover {
    transform: translateY(-4px);
}

/* 上のマスキングテープ */
.usp::before {
    content: "";
    position: absolute;
    top: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.25rem;
    height: 0.625rem;
    background: #D7C4F2;
    /* テープの色（淡い紫） */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

/* テキスト */
.usp-text {
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1.6;
    font-weight: bold;
}

@media (min-width:560px) {
    .usp-text {
        font-size: 1rem;
    }
}

@media (min-width:720px) {
    .usp-text {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .usp-text {
        font-size: 1.35rem;
    }
}

/* テキスト中のハイライト（黄色い下線風） */
.usp-text mark {
    background: linear-gradient(transparent 60%, #FFC86F 60%);
    padding: 0 2px;
}





/* 背景 */
.firstview-bg {
    position: relative;
    background: #A7E8BD;
    overflow: hidden;
    z-index: 0;
    padding: 0 0 100px 0;
}

/* 上の斜めカット */
.firstview-bg::before {
    content: "";
    position: absolute;
    top: -80px;
    /* 斜めの高さ調整 */
    left: 0;
    width: 100%;
    height: 400px;
    /* 斜め部分の高さ */
    background: #ffffff;
    /* 上部の白背景 */
    transform: skewY(-10deg);
    /* ここで斜めに */
    transform-origin: top left;
    z-index: 0;
}

/* achievements
------------------------------------------ */
.achievements {
    position: relative;
    padding: 3rem 0;
}

.achievements::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1.5rem;
    width: 100%;
    height: 120px;
    background: url(/images/wave-bottom.svg) no-repeat bottom;
    background-size: cover;
}

@media (min-width: 768px) {
    .achievements::before {
        top: -2rem;
        height: 210px;
    }
}

.achievements::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7rem;
    width: 100%;
    height: 120px;
    background: url(/images/wave-top.svg) no-repeat bottom;
    background-size: cover;
}

@media (min-width: 768px) {
    .achievements::after {
        bottom: -12rem;
        height: 200px;
    }
}

@media (min-width: 768px) {
    .achievements img {
        width: 836px;
    }
}

/* problem
------------------------------------------ */
.problem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0 3rem;
    overflow: hidden;
    z-index: -1000;
    background-color: #7EBCED;
    background-image: url(/images/dot.png);
    background-repeat: repeat;
}

@media (min-width: 768px) {
    .problem {
        padding: 6rem 0 5rem;
    }
}

.problem h2 {
    background-color: #7EBCED;
}

.problem h2::before {
    content: url("/images/decoration.svg");
    position: absolute;
    top: -1.8rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7EBCED;
}

@media (min-width: 768px) {
    .problem h2::before {
        top: -2.5rem;
    }
}



.problem ul {
    width: 83%;
    background-color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    padding: 1.5rem 0.5rem;
}

@media (min-width: 768px) {
    .problem ul {
        width: 60%;
        padding: 1.5rem 5rem;
    }
}

.problem li {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: #333333 dashed 1px;
    padding: 0.5rem 0;
}

.problem li:last-child {
    border-bottom: none;
}

.bi-check-square-fill {
    font-size: 1.25rem;
    color: #FFC86F;
    padding: 0 1rem 0 0.5rem;
}

.dot-background {
    background-color: #A8D0F0;
    /* 水色部分 */

}

/* about
------------------------------------------ */

.about {
    position: relative;
    background-color: #FFC86F;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .about {
        padding: 4rem 1rem 6rem;
    }
}

.about::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6rem;
    width: 100%;
    height: 120px;
    background: url(/images/wave-bottom.svg) no-repeat bottom;
    background-size: cover;
}

@media (min-width: 768px) {
    .about::after {
        bottom: -10rem;
        height: 210px;
    }
}

.about h2 {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.about h2::before {
    content: "About";
    position: absolute;
    font-family: "Allura", cursive;
    font-size: 3rem;
    font-weight: normal;
    color: #D7C4F2;
    z-index: -1;
    transform: translateX(-170%) rotate(-17.46deg);
    top: -1.3rem;
    left: 50%;
}

@media (min-width: 768px) {
    .about h2::before {
        transform: translateX(-200%) rotate(-17.46deg);
        font-size: 3.5rem;
    }
}

.about p {
    text-align: center;
    margin-bottom: 1rem;
}




/* service
------------------------------------------ */
.service {
    text-align: center;
}

@media (min-width:560px) {
    .service {
        padding: 0 1rem 2rem;
    }
}

.service h2 {
    padding-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.service h2::before {
    content: "Service";
    position: absolute;
    font-family: "Allura", cursive;
    font-size: 3rem;
    font-weight: normal;
    color: #D7C4F2;
    z-index: -1;
    transform: translateX(-130%) rotate(-17.46deg);
    top: 1.4rem;
    left: 50%;
}

@media (min-width: 768px) {
    .service h2::before {
        font-size: 3.5rem;
    }
}

.service p {
    text-align: center;
    margin-bottom: 1rem;
}

.lesson-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.125rem;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .lesson-title {
        font-size: 1.3rem;
    }
}

.service ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lesson-item {
    position: relative;
    color: #333333;
    background-color: rgba(126, 188, 237, 0.7);
    width: 20rem;
    height: 5.625rem;
    padding: 0.5rem 1rem;
    border-radius: 0 10px 10px 10px;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .lesson-item {
        width: 35rem;
        height: 7rem;
        padding: 1.5rem 0 1.5rem 1.5rem;
    }
}

/*タブ*/
.lesson-item:after {
    position: absolute;
    font-weight: bold;
    content: 'POINT 1';
    background: #7EBCED;
    color: #ffffff;
    left: 0px;
    bottom: 100%;
    border-radius: 10px 10px 0 0;
    padding: 0.3rem 1rem 0.1rem;
    font-size: 1em;
    letter-spacing: 0.1rem
}

.lesson-item:nth-child(2)::after {
    content: 'POINT 2';
}

.lesson-item:nth-child(3)::after {
    content: 'POINT 3';
}

.lesson-item:nth-child(4)::after {
    content: 'POINT 4';
}

.lesson-item h3 {
    font-size: 1rem;
    font-weight: normal;
    text-align: left;
}

@media (min-width: 768px) {
    .lesson-item h3 {
        font-size: 1.15rem;
    }
}

.lesson-item p {
    font-size: 1rem;
    font-weight: normal;
    text-align: left;
    line-height: 1.2;
    padding-top: 0.5rem;
    padding-left: 1rem;
}

@media (min-width: 768px) {
    .lesson-item p {
        font-size: 1.1rem;
    }
}

.js-fadeup {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fadeup.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* voice
------------------------------------------ */

.voice {
    background-color: #FFC86F;
    padding-bottom: 4rem;
}

.voice h2 {
    padding-top: 2.5rem;
}

.voice h2::before {
    content: "Voice";
    position: absolute;
    font-family: "Allura", cursive;
    font-size: 3rem;
    font-weight: normal;
    color: #D7C4F2;
    z-index: -1;
    transform: translateX(-130%) rotate(-17.46deg);
    top: 1.1rem;
    left: 50%;
}

@media (min-width: 768px) {
    .voice h2::before {
        font-size: 3.5rem;
    }
}

@media (min-width: 768px) {
    .slide-items {
        display: flex;
        flex-direction: row;
        justify-content: center;
        column-gap: 1rem;
        margin-bottom: 3rem;
    }
}

.slick-slide {
    height: 21.25rem !important;
}

.voice-wrappar {
    width: 20rem;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 1.5rem 1rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

@media (min-width: 768px) {
    .voice-wrappar {
        min-width: 15rem;
        width: 25%;
        margin-left: 0;
        margin-right: 0;
    }
}

.voice-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 0.5rem;
    border-bottom: #333333 dashed 1px;
}

.voice-top img {
    width: 4.0625rem;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .voice-top img {
        width: 25%;
        max-width: 4.0625rem;
        height: 25%;
        max-height: 4.0625rem;
    }
}

.voice-right {
    padding-left: 0.8rem;
}

.voice-right h3 {
    font-size: 1rem;
    font-weight: normal;
}

@media (max-width:375px) {
    .voice-right h3 {
        font-size: 0.875rem;
    }
}

.voice-right p {
    font-size: 0.8125rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.voice-bottom {
    font-size: 0.8125rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding-top: 1rem;
}

/* テキストのカラー変更 */
.slide-items span {
    color: #7EBCED;
    font-weight: bold;
}

/* dotsを丸くカスタマイズ */
.dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.875rem;
}

.dots-wrap li {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 5px;
    background: #ffffff;
    opacity: 50%;
    border-radius: 50%;
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #ffffff;
    opacity: 100%;
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/* flow
------------------------------------------ */
.flow {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 11%;
    padding-right: 11%;
}

@media (min-width: 768px) {
    .flow {
        padding-left: 25%;
        padding-right: 25%;
    }
}

.flow::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 100%;
    height: 120px;
    background: url(/images/wave-bottom.svg) no-repeat bottom;
    background-size: cover;
}

@media (min-width: 768px) {
    .flow::before {
        top: -2rem;
        height: 210px;
    }
}


.flow h2 {
    padding-top: 2rem;
}

.flow h2::before {
    content: "Flow";
    position: absolute;
    font-family: "Allura", cursive;
    font-size: 3rem;
    font-weight: normal;
    color: #D7C4F2;
    z-index: -1;
    transform: translateX(-220%) rotate(-17.46deg);
    top: 0.5rem;
    left: 50%;
}

@media (min-width: 768px) {
    .flow h2::before {
        transform: translateX(-230%) rotate(-17.46deg);
        font-size: 3.5rem;
    }
}

.flow ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.flow li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.flow-wrapper {
    border: #7EBCED solid 2px;
    border-radius: 10px;
    padding: 1.3rem 0.8rem;
    width: 100%;
}

@media (min-width: 768px) {
    .flow-wrapper {
        padding: 1.3rem 2rem;
    }
}

.flow-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: #7EBCED dashed 1px;
    padding-bottom: 0.1rem;
}

.flow-nmber {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7EBCED;
}

@media (min-width: 768px) {
    .flow-nmber {
        font-size: 1.7rem;
    }
}

.flow-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    padding-left: 0.5rem;
}

@media (min-width: 768px) {
    .flow-title {
        font-size: 1.3rem;
    }
}

.flow-title.small {
    font-size: 1rem;
    letter-spacing: -0.009rem;
}

@media (min-width: 768px) {
    .flow-title.small {
        font-size: 1.3rem;
    }
}

.flow-text {
    font-size: 0.75rem;
    line-height: 1.16;
    padding-top: 0.5rem;
}

@media (min-width: 768px) {
    .flow-text {
        font-size: 1rem;
    }
}

.polygon {
    width: 10%;
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .polygon {
        width: 5%;
    }
}

/* faq
------------------------------------------ */

.faq {
    background-color: #7EBCED;
    padding-bottom: 2rem;
    padding-left: 8%;
    padding-right: 8%;
}

@media (min-width: 768px) {
    .faq {
        padding-left: 20%;
        padding-right: 20%;
    }
}

.faq h2 {
    padding-top: 2.5rem;
}

.faq h2::before {
    content: "FAQ";
    position: absolute;
    font-family: "Allura", cursive;
    font-size: 3rem;
    font-weight: normal;
    color: #D7C4F2;
    z-index: -1;
    transform: translateX(-140%) rotate(-17.46deg);
    top: 1.1rem;
    left: 50%;
}


@media (min-width: 768px) {
    .faq h2::before {
        font-size: 3.5rem;
    }
}

.faq li {
    border-top: #ffffff dashed 1px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .faq li {
        padding: 1.25rem 2.5rem;
    }
}

.faq li:last-child {
    border-bottom: #ffffff dashed 1px;
}

.faq h4 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.125;
}

@media (min-width: 768px) {
    .faq h4 {
        font-size: 1.25rem;
    }
}

.answer {
    color: #ffffff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    padding-top: 0.1rem;
}

@media (min-width: 768px) {
    .answer {
        font-size: 1.1rem;
    }
}

.faq-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .faq-text {
        font-size: 1.25rem;
    }
}

/* profile
------------------------------------------ */

.profile {
    position: relative;
    background-color: #FFC86F;
    background-image: url(/images/dot.png);
    background-repeat: repeat;
    padding: 4rem 8% 4rem 8%;
}

@media (min-width: 768px) {
    .profile {
        padding-left: 20%;
        padding-right: 20%;
    }
}

.profile-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .profile-wrapper {
        padding: 1.5rem 3rem;
    }
}

.profile-wrapper h2 {
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.profile-wrapper h2::before {
    content: "Profile";
    position: absolute;
    font-family: "Allura", cursive;
    font-size: 3rem;
    font-weight: normal;
    color: #D7C4F2;
    z-index: 1;
    transform: translateX(-110%) rotate(-17.46deg);
    top: 1.1rem;
    left: 50%;
}

@media (min-width: 768px) {
    .profile-wrapper h2::before {
        font-size: 3.5rem;
    }
}

.profile-wrapper img {
    width: 125px;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .profile-wrapper img {
        width: 250px;
    }
}

.profile-about {
    display: flex;
    flex-direction: column;
}

.name-kana {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 0.625rem;
    text-align: center;
}

@media (min-width: 768px) {
    .name-kanae {
        font-size: 0.8rem;
    }
}

.name {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .name {
        font-size: 1.25rem;
    }
}

.description {
    font-size: 0.875rem;
    line-height: 1.28;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .description {
        font-size: 1rem;
    }
}

.description mark {
    background: linear-gradient(transparent 60%, #D7C4F2 40%);
    padding: 0 2px;
}

.profile::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6rem;
    width: 100%;
    height: 120px;
    background: url(/images/wave-bottom-bleu.svg) no-repeat bottom;
    background-size: cover;
}

@media (min-width: 768px) {
    .profile::after {
        bottom: -11rem;
        height: 210px;
    }
}

/* message
------------------------------------------ */
.message {
    background-color: #7EBCED;
    padding: 2.5rem 10% 3rem;
}

@media (min-width: 768px) {
    .message {
        padding: 2.5rem 15% 3rem;
    }
}

.message h2 {
    color: #ffffff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    border-top: #ffffff solid 1px;
    border-bottom: #ffffff solid 1px;
}

.first-message {
    color: #ffffff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 0.875rem;
    line-height: 1.35;
}

@media (min-width: 768px) {
    .first-message {
        position: relative;
        font-size: 1.2rem;
    }
}

.last-message-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.2rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .last-message-wrapper {
        row-gap: 0.5rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
}

.last-message {
    font-size: 1.5rem;
    background-color: #ffffff;
    width: fit-content;
    padding-left: 0.1rem;
}

@media (max-width:390px) {
    .last-message {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .last-message {
        font-size: 1.7rem;
    }
}

/* footer
------------------------------------------ */
@media (min-width: 768px) {
    .footer {
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.privacypolicy {
    text-align: center;
    font-size: 0.65rem;
}

@media (min-width: 768px) {
    .privacypolicy {
        font-size: 0.825rem;
    }
}

.copyright {
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: center;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .copyright {
        font-size: 1rem;
    }
}

/* privacy-policy
------------------------------------------ */

.privacy-policy {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    background-color: #7EBCED;
    padding: 2rem 8% 2rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .privacy-policy {
        padding: 2rem 16% 2rem;
    }
}

.privacy-policy-wrapper {
    color: #333333;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .privacy-policy-wrapper {
        padding: 2rem 16% 2rem;
    }
}

.privacy-policy-wrapper h2 {
    padding-top: 1rem;
    color: #333333;
}

.privacy-policy h3 {
    font-size: 1rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .privacy-policy h3 {
        text-align: center;
        font-size: 1.25rem;
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }
}

.privacy-policy p {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .privacy-policy p {
        font-size: 1rem;
    }
}

.privacy-policy ul {
    font-size: 0.875rem;
    padding-left: 2rem;
}

@media (min-width: 768px) {
    .privacy-policy ul {
        font-size: 1rem;
    }
}

.privacy-policy li {
    list-style: disc;
}

.return {
    border-bottom: #ffffff solid 1px;
    width: fit-content;
    margin-top: 1rem;
}

.return a {
    color: #ffffff;
}

@media (min-width: 768px) {
    .return a {
        font-size: 1.5rem;
    }
}