@charset "UTF-8";

/* ===== 基本 ===== */
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

#top img {
    width: 100%;
    height: auto;

}

/* #top img {
    width: 100%;
    height: auto;
    display: block;
} */

section {
    width: 100%;
}


/*動き*/
.fadein_element {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein_element_is_fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 0;
    right: 0;
}

/*動き*/
.kv_fadein {
    opacity: 0;
    transform: translateY(20px);
}

.kv_fadein.animate {
    animation: kv_fadein 1s ease forwards;
}

@keyframes kv_fadein {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**/
/* 新しく追加するふわふわアニメーション */
.kv_fadein.fuwafuwa {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    opacity: 1;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    30% {
        transform: translate(0, 0) rotate(2deg);
    }

    70% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(2deg);
    }
}

/**/

/* ===== section_title 画像共通設定 ===== */
.section_title img {
    display: block;
    margin: 0 auto;
    height: auto;
}

/* =====  スクロールや表示タイミングでフェードインさせる　===== */
.fadein_element {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein_element_is_fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 0;
    right: 0;
}

/* ===== 共通設定 ===== */
.asterisk::before {
    content: '※';
}

.asterisk {
    font-size: 14px;
    text-indent: -1em;
    margin-left: 1em;
    line-height: 1.5;
    word-break: break-all;
    text-align: left;
}

/* 赤文字注釈用 */
.note_red {
    color: #D70A1D;
    font-size: 13px;
    margin-top: 5px;
    text-align: center;
}

.section_wrapper {
    max-width: 1108px;
    width: 86.67%;
    margin: 0 auto;
}

/* .section_wrapper {
    max-width: 1108px;
    width: 86.67%;
    margin: 0 auto;

} */

.mt20 {
    margin-top: 20px;
}

.fxs {
    font-size: 18px;
}

/* ===== accordion ===== */
.accordion_wrapper {
    display: block;
    width: 828px;
    width: 91%;
    margin-inline: auto;
}

/* ===== top ===== */
section#top {
    background: #FAF2E4;
    color: #454545;
    font-size: 20px;
}

/* kv と about だけに padding */
#top #about {
    padding: 100px 0;
}

#top section#kv {
    padding: 0;
}

/* ===== inner ===== */
.inner {
    max-width: 930px;
    width: 86.8%;
    margin: 0 auto;
}

/*nav*/

/* nav */
#top #nav {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 0.13em;
    padding: clamp(8px, 1.5vw, 15px) 0;
    /* ← 縮小 */
    color: #FFFFFF;
    background: #680D09;
}

#nav ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 900px;
    width: 90%;
    padding: clamp(10px, 2vw, 20px) clamp(20px, 4vw, 50px);
}

#nav ul li {
    position: relative;
    height: 65px;
    text-align: center;
    margin-bottom: 10px;
    padding: clamp(15px, 2vw, 30px);
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    white-space: nowrap;
}

#nav ul li:last-child {
    border-left: 0;
}

#nav ul li a::after {
    content: '';
    background: url(../img/nav.png);
    background-size: contain;
    width: 8px;
    height: 8px;
    display: inline-block;
    margin: auto auto 2px 9px;
}

#nav ul li:hover a {
    opacity: 0.6;
}

/* ===== about ===== */
section#about {
    padding-bottom: 130px;
    text-align: left;
    color: #552906;
}


#about .section_title {
    max-width: 578px;
    width: 80%;
    margin: auto auto 30px auto;
}

.about_text {
    font-size: 22px;
    line-height: 1.9;
}

.about_text-title {
    font-size: 22px;
    line-height: 1.9;
    text-align: center;
}

/* ===== entry ===== */
/* 共通セクション */


.entry_box {
    background: #fff;
    max-width: 828px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 30px 40px 30px;
    position: relative;
    z-index: 0;
    color: #680D09;
    text-align: center;
}

.entry_box::before {
    content: '';
    background: url(../img/alm-c.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 728px;
    height: 60px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.entry_box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: #680D09;
    z-index: 5;
}

.entry_text {
    text-align: center;
    font-size: 20px;
    line-height: 1.75;
}

/* 共通ボタン */
.btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}

.btn li {
    width: 48.179%;
    border-radius: 45px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.btn li:first-child {
    background: #D70A1D;
    border: 3px solid #90040B;
    box-shadow: 0 8px 0 #90040B;
}

.btn li:last-child {
    background: #0A51D7;
    border: 3px solid #003293;
    box-shadow: 0 8px 0 #003293;
}

.btn.brown {
    display: block;
    background: #8B5A2B;
    border: 3px solid #5A3A1A;
    box-shadow: 0 8px 0 #5A3A1A;
    width: 50%;
    text-align: center;
    line-height: 1.3;
}

.btn li:hover {
    top: 8px;
    box-shadow: none;
}

.btn li a {
    padding: 10px 5px;
}

.btn li span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.btn li::after {
    content: '';
    background: url(../img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.btn.brown::after {
    content: '';
    background: url(../img/arrow.png) no-repeat center;
    background-size: contain;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}



.asterisk {
    font-size: 14px;
    font-weight: 500;
}

/* 強調 */
.red {
    color: #D70A1D;
}

.fwb {
    font-weight: 900;
}

.big {
    font-size: 28px;
}

.min {
    font-size: 14px;
}

/* ===== present　===== */
#present {
    overflow: hidden;
    margin-top: 100px;
}

#present .section_title {
    max-width: 578px;
    width: 80%;
    margin: auto auto 60px auto;
}

.present_box {
    margin: auto auto 50px auto;
}

.present_pt {
    max-width: 366px;
    width: 100%;
    margin: auto auto 10px auto;
}

.present_box_red {
    border: 4px solid #D70A1D;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(215, 10, 29, 0.5);
    max-width: 828px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    margin-top: 50px;
}

.present_box_red .present_box_ac_title,
.present_box_red .present_box_bc_title {
    position: relative;
    padding-left: 170px;
}

.present_box_ac_title,
.present_box_bc_title {
    background: #D70A1D;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0 20px 0;
}

.present_box_red .present_box_ac_title::after {
    content: '';
    background: url(../img/acourse_tag.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: 20px;
    display: block;
    width: 128px;
    height: 128px;
}

.present_box_red .present_box_bc_title::after {
    content: '';
    background: url(../img/bcourse_tag.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: 20px;
    display: block;
    width: 128px;
    height: 128px;
}

.present_ac_img {
    max-width: 624px;
    width: 95%;
    margin: 50px auto 10px auto;
}

.present_natsuo_img {
    max-width: 624px;
    width: 95%;
    aspect-ratio: 624 / 617;
    /* 実画像比率 */
    margin: 50px auto 10px;
    position: relative;
    background: url(../img/natsuo-pc.png) no-repeat center;
    background-size: contain;
}

.present_natsuo_img .btn.brown {
    box-sizing: border-box;
}

/* ボタン */
.present_btn {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: #0A48BE;
    color: #fff;
    font-weight: bold;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.present_btn:hover {
    opacity: .85;
}

.present_box ul {
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.present_box ul p {
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #454545;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.present_box ul li {
    line-height: 1.4;
    font-weight: 400;
}

.present_box ul li.bold {
    font-weight: 700;
}

.present_box ul li.mt1 {
    margin-top: 1em;
}

.present_box ul li.disc::before {
    content: '・';
}

.present_box ul li.disc {
    margin-left: 1em;
    text-indent: -1em;
}


/* ===== fadein ===== */
.fadein_element {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.fadein_element_is_fadein {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== accordion ===== */
/* ===== 基本構造 ===== */
.accordion_header {
    cursor: pointer;
    position: relative;
    font-size: 22px;
    font-weight: 400;
    text-align: left;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion_content {
    display: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    padding: 15px 30px;
}

/* 矢印 */
.accordion_header::before,
.accordion_header::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 30px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all .3s ease-in-out;
}

.accordion_grey .accordion_header::before,
.accordion_grey .accordion_header::after {
    background-color: #454545;
}

.accordion_header::before {
    transform: rotate(90deg);
}

.accordion_header.open::before {
    transform: rotate(180deg);
}

.accordion_header.open::after {
    opacity: 0;
}

/* ===== テーマ ===== */

/* 赤テーマ */
.accordion_red .accordion_header {
    background-color: #680D09;
    border-radius: 45px;
    color: #fff;
}

/* グレーテーマ */
.accordion_grey .accordion_header {
    background-color: #E6E6E6;
    border-radius: 5px;
    color: #454545;
}


/* 共通：アコーディオン内のリスト装飾 */
.accordion_content ul li {
    list-style: none;
    padding-left: 0;
    text-indent: 0;
}

.accordion_content ul li.notes_asterisk,
.accordion_content ul li.asterisk {
    text-align: left;
    /* padding-left: 1.2em; */
    text-indent: -1.2em;
    display: inline-block;
}

.accordion_content ul li span {
    font-size: 26px;
    color: #D70A1D;
    font-weight: 700;
    margin-right: 10px;
    margin-top: -0.3em;
}

/* マージン調整 */
.accordion_header:nth-child(n+1) {
    margin-top: 30px;
}

/* ===== products ===== */

#products {
    text-align: center;
    position: relative;
    padding: 150px 0 100px 0;
    overflow: hidden;
    background: #E8F6FC;
}

/* 白背景だけ広げる */
#products .bg_white {
    background: #ffffff;
    width: 100%;
    padding-bottom: 50px;
}

/* 中のコンテンツは中央に */
#products .inner {
    max-width: 930px;
    /* 好きな中央幅 */
    width: 86.8%;
    margin: 0 auto;
    padding: 75px 0 0 0;
    box-sizing: border-box;
}

#products .section_title {
    max-width: 434px;
    width: 80%;
    margin: auto auto 60px auto;
}

#products .products_text {
    font-size: 20px;
    margin: 40px auto;
}

#products ul {
    display: flex;
    justify-content: space-between;
    margin: auto auto 60px auto;
}

#products ul li {
    width: 31.184%;
}

#products ul li p {
    margin-top: 20px;
    font-size: 14px;
}

#products ul li p.note_red {
    font-size: 13px;
    color: #D70A1D;
    margin-top: 15px;
    text-align: center;
}

#products .asterisk {
    font-size: 13px;
    text-align: left;
    font-weight: 300;
    letter-spacing: 0.06em;
}

#products .asterisk_box {
    display: inline-block;
    text-align: center;
}


/* ===== application ===== */

section#application {
    padding-bottom: 80px;
    background: #E8F6FC;
}

#application .section_title {
    max-width: 434px;
    width: 80%;
    margin: auto auto 60px auto;
}

.application_text {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* --- 応募ステップリスト共通 (PC) --- */
.application_box ul {
    text-align: left;
    background: #fff;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    padding: 100px 40px 50px 40px;
    position: relative;
    border-radius: 20px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    box-sizing: border-box;
}


.application_box ul.step2 {
    align-items: flex-start;
}

.application_box ul.step2 li:first-child {
    flex: 1;
    padding-top: 20px;
}

.application_box ul.step2 li:first-child {
    flex: 1;
    width: 100%;
    margin-left: 50px;
}

.application_box ul.step2 li:last-child img.pc {
    width: 50% !important;
    height: auto;
    margin-left: auto;
}

.application_box ul.step3 {
    display: block !important;
}

.application_box ul.step3 li:first-child {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 15px 20px;
    display: block !important;
}

.application_box ul.step3 li {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.application_box ul.step3 li:last-child {
    display: block !important;
    text-align: center;
}

.application_box ul.step3 li:last-child img.pc {
    display: block !important;
    width: 100% !important;
    /* 横幅いっぱい */
    max-width: 100% !important;
    height: auto;
    margin: 0 auto;
}


.application_box ul.step4 li {
    width: 100% !important;
    margin: 0 0 30px 0 !important;
    max-width: none;
    list-style: none;
    text-align: left;
}

/* 親要素を確実に縦並び・横幅いっぱいに */
.application_box ul.step4 {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    padding: 60px 0;
    /* 左右のpaddingを0にするか調整して広がりを確保 */
    box-sizing: border-box;
}

/* テキストが入っているliを横幅いっぱいに広げる */
.application_box ul.step4 li:first-child {
    /* 左に100px空けるなら、残りの幅をしっかり確保 */
    width: calc(90% - 100px) !important;
    margin: 60px 0 0 0 !important;
    flex: none !important;
    display: block !important;
    text-align: left;
    padding-bottom: 30px;
    box-sizing: border-box;
}

/* 中のpタグも幅いっぱいに */
.application_box ul.step4 li p {
    width: 100% !important;
    margin-left: 0 !important;
}

.application_box ul:first-of-type {
    margin-top: 40px;
}



.application_box ul:nth-of-type(3) li:first-of-type img {
    width: 84% !important;
}

/* STEPアイコンの位置調整 (PC) */
.application_box ul::before {
    content: '';
    display: block;
    position: absolute;
    left: 60px;
    top: 30px;
    width: 80px;
    height: 80px;
    z-index: 10;
    background-size: contain;
    background-repeat: no-repeat;
    transform: none;
    /* スマホ用の中央寄せを解除 */
}

.application_box ul {
    padding-top: 100px;
}

/* ステップごとの画像（共通） */
.application_box ul.step1::before {
    background-image: url('../img/step1.png');
}

.application_box ul.step2::before {
    background-image: url('../img/step2.png');
}

.application_box ul.step3::before {
    background-image: url('../img/step3.png');
}

.application_box ul.step4::before {
    background-image: url('../img/step4.png');
}

/* --- テキスト装飾 --- */
.application_box ul li:last-child p:first-child,
.application_box .step1_title {
    font-weight: 700;
    font-size: 23px;
    display: inline-block;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #680D09;
}

.application_box ul li:last-child p:first-child img,
.application_box .step1_title img {
    width: 200px !important;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.application_box ul .asterisk {
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.application_box ul .asterisk.red {
    color: #FF4123;
}

.application_box ul p:nth-child(2),
.application_box .step1_text {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.8;
}

/* --- STEP1: 会員登録ボタン --- */
.application_box ul.step1 li:first-child {
    width: 48%;
    margin-left: 50px;
}

.application_box ul.step1 li:last-child {
    width: 46.2%;
    padding-right: 5%;
    text-align: right;
}

.application_box ul.step1 li:last-child a {
    max-width: 380px;
    width: 100%;
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
    padding: 10px 5px;
    border-radius: 45px;
    font-size: 18px;
    position: relative;
    text-align: center;
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1.3;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.application_box ul.step1 li:last-child a:first-child {
    margin-bottom: 25px;
    background: #D70A1D;
    box-shadow: 0 8px 0 #90040B;
    border: solid 3px #90040B;
}

.application_box ul.step1 li:last-child a:last-child {
    background: #1162FB;
    box-shadow: 0 8px 0 #0A48BE;
    border: solid 3px #053293;
}

.application_box ul.step1 li:last-child a:hover {
    box-shadow: none;
    top: 7px;
}

.application_box ul.step1 li:last-child a::after {
    content: '';
    width: 28px;
    height: 28px;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);

    background: url(../img/arrow.png) no-repeat;
    background-size: contain;
}

.application_box ul.step1 li:last-child a span {
    font-size: 14px;
    display: block;
}

.step1_title {
    display: block !important;
}

.step1_title img.pc {
    display: block !important;
    float: none !important;
    margin-bottom: 10px !important;
}

.application_box ul.step3 li:first-child {
    width: 100% !important;
    margin: 20px 0 !important;
    padding-left: 15px;
    padding-right: 15px;
    display: block !important;
    box-sizing: border-box;
}

.application_box ul.step4 {
    padding: 120px 40px 50px 60px !important;
}

.application_box ul.step4 li:first-child {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    text-align: left;
}

.application_box ul .asterisk {
    text-indent: 0 !important;
    margin-left: 0 !important;
    padding-left: 1.2em !important;
    position: relative;
    text-align: left;
}

.application_box ul .asterisk::before {
    position: absolute;
    left: 0;
    content: "※";
}

.application_box ul.step4 li p {
    width: 100% !important;
    margin-left: 0 !important;
    box-sizing: border-box;
}


/*notes*/
#notes {
    background: #fff;
    border-radius: 13px;
    width: 100%;
    margin: 10px auto auto auto;
    position: relative;
    text-align: left;
    color: #333333;
    border: 2px solid #75B4E3;
    font-weight: 500;
}

#notes .notes_box_title {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    background: #75B4E3;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px 1em;
}

#notes .notes_inner {
    width: 89.03%;
    margin: 0 auto;
    padding: 30px 0;
}

#notes .notes_inner .t-c {
    font-size: 16px;
    line-height: 1.625;
}

#notes .notes_inner .t-l {
    font-size: 16px;
    line-height: 1.625;
    text-align: left;
}

#notes .notes_inner .t-l.mt-10 {
    margin-top: 10px;
}

#notes .notes_inner .receipt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

#notes .notes_inner .receipt li:first-child {
    width: 48.31%;
}

#notes .notes_inner .receipt li:last-child {
    width: 46.62%;
}

#notes .notes_inner .receipt li:last-child span {
    width: 89.12%;
    display: block;
    margin-bottom: 18px;
}

#notes .notes_inner .receipt_2,
#notes .notes_inner .receipt_3 {
    margin-top: 50px;
}

#notes .notes_inner .receipt_2 .notes_inner_title,
#notes .notes_inner .receipt_3 .notes_inner_title {
    border-bottom: 1px solid #454545;
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
    font-weight: 700;
}

#notes .notes_inner .receipt_2 ul {
    font-size: 16px;
    line-height: 1.75;
}

#notes .notes_inner .receipt_2 .disc::before {
    content: '・';
}

#notes .notes_inner .receipt_2 .disc {
    text-indent: -1em;
    margin-left: 1em;
}

#notes .notes_inner .receipt_2 .asterisk {
    color: #F00000;
}

#notes .notes_inner .receipt_3 ul {
    display: flex;
    justify-content: space-between;
}

#notes .notes_inner .receipt_3 ul li {
    width: 15.6%;
}

/*bg*/
section#bg {
    padding: 0;
    margin: 0;
    background: #F8D5A7;
    background: linear-gradient(180deg, #F8D5A7 0%, #FFFFFF 100%);
}

section#bg2 {
    min-height: 100vh;
    box-sizing: border-box;
    background-color: #FAF2E4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='%23E5D8C0' stroke-width='1' stroke-opacity='0.4'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 40px 40px;
}

/*faq*/
section#faq {
    padding-bottom: 0;
}

#faq p {
    text-align: center;
    font-size: 20px;
    line-height: 1.75;
}


section#faq .inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

#faq .section_title {
    max-width: 528px;
    width: 80%;
    margin: auto auto 60px auto;
}

.accordion_header,
.accordion_content {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 15px 30px;
    width: 100%;
}

.accordion_header {
    cursor: pointer;
    background-color: #F4A74D;
    color: #fff;
    position: relative;
    border-radius: 45px;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
}

.accordion_content {
    display: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.accordion_content ul li {
    display: flex;
    text-align: left;
}

.accordion_content ul li span {
    font-size: 26px;
    color: #D70A1D;
    font-weight: 700;
    margin-right: 10px;
    margin-top: -0.3em;
}

.accordion_header:nth-child(n+1) {
    margin-top: 30px;
}

.accordion_header::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 30px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

.accordion_header::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 30px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all .3s ease-in-out;
}

.accordion_header.open::before {
    transform: rotate(180deg);
}

.accordion_header.open::after {
    opacity: 0;
}

/*terms*/
section#terms {
    padding-bottom: 50px;
}

#terms .section_title {
    max-width: 666px;
    width: 80%;
    margin: auto auto 60px auto;
}

#terms p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin: auto auto 30px auto;
}

.terms_box {
    height: 330px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 25px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    background: #fff;
    word-break: break-all;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.7;
    font-weight: 400;
}

.notes_asterisk::before {
    content: '※';
}

.notes_asterisk {
    text-indent: -1em;
    margin-left: 1em;
}

.notes_asterisk_2::before {
    content: '※';
}

.notes_asterisk_2 {
    text-indent: -1.1em;
    margin-left: 2em;
}

.maru::before {
    content: '●'
}

.maru {
    text-indent: -1em;
    margin-left: 1em;
}

.terms_box ul {
    margin-bottom: 1em;
    border-bottom: 1px solid #454545;
    padding-bottom: 10px;
}

.terms_box ul li:first-child {
    font-weight: 700;
}

.terms_box ul:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.terms_box ul .bold {
    margin-bottom: 5px;
}

.terms_box a {
    text-decoration: underline;
    font-weight: normal;
    color: #109DE1;
    display: inline !important;
}

section#contact .inner {
    padding-bottom: 50px;
}


.notes_disc {
    /*    list-style: disc;*/
    /*    margin-left: 30px;*/
    text-indent: -1em;
    margin-left: 1em;
}

.notes_disc::before {
    content: '・';
}

.terms_box ul ol {
    /*	list-style: decimal;*/
    margin-left: 1.3em;
}

.mb-1 {
    margin-bottom: 1em;
}

/*お問い合わせ*/
section#contact {
    padding: 0;
    font-weight: 500;
}

.contact {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #F4A74D;
}

.contact li:first-child {
    width: 92.28%;
    font-size: 18px;
    background: #EB6D6E;
    color: #fff;
    padding: 9px 1em;
    border-radius: 45px;
    line-height: 1.2;
    margin: auto auto 10px auto;
    font-weight: 600;
}

.contact li:nth-child(2) {
    line-height: 1.5;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.contact li:nth-child(3) {
    font-size: 29px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.contact li:nth-child(4) {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact li.asterisk {
    line-height: 1.5;
    font-size: 14px;
    width: 94.53%;
    margin: 0 auto;
    text-indent: 0;
}

.contact li {
    text-align: center;
}

@media screen and (min-width: 768px) {
    #nav ul li+li {
        border-left: none;
    }

    .section_title p {
        font-size: 30px;
    }
}

@media screen and (max-width: 767px) {

    /* 共通 */
    .section_title {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .about_text {
        font-size: 17px;
    }

    .min {
        font-size: 12px !important;
    }

    .big {
        font-size: 24px;
    }

    .mt20 {
        margin-top: 20px;
    }

    /* nav */
    #top #nav {
        font-size: 15px;
        letter-spacing: 0;
        padding: 10px 0 15px 0;
    }

    #nav ul {
        width: 90.67%;
        padding: 10px 7px;
        flex-wrap: wrap;
    }

    #nav ul li {
        width: 50%;
        height: 45px;
        text-align: center;
        margin-bottom: 10px;
        padding-top: 5px;
        border-right: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
    }

    #nav ul li:nth-child(2),
    #nav ul li:last-child {
        border-left: 0;
    }

    #nav ul li::after {
        content: '';
        height: 1px;
        width: 100%;
        display: block;
        margin-top: 5px;
    }

    #nav ul li:nth-child(3),
    #nav ul li:last-child {
        margin: 0;
    }

    #nav ul li:nth-child(3)::after,
    #nav ul li:last-child::after {
        display: none;
    }

    #nav ul li a {
        position: relative;
    }

    #nav ul li a::after {
        content: '';
        background: url(../img/nav.png);
        background-size: contain;
        width: 8px;
        height: 8px;
        display: block;
        margin: 5px auto auto;

        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #top #about {
        padding: 30px 0;
    }

    #about .section_title {
        max-width: 264px;
        margin: 25px auto 15px auto;
    }

    .about_text-title {
        font-size: 20px;
    }

    .entry_box {
        padding: 20px;
    }

    .entry_box::before {
        content: '';
        background: url(../img/sp/alm-c-sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        display: block;
        width: 291px;
        height: 47px;
        position: absolute;
        top: -2%;
    }

    .entry_text {
        font-size: 14px;
    }

    /* ボタン */
    .btn {
        display: block;
        max-width: 400px;
        margin: 20px auto;
    }

    .btn li {
        width: 100%;
        font-size: 15px;
        padding: 5px 0;
    }

    .btn li:first-child {
        margin-bottom: 15px;
        box-shadow: 0 5px 0 #90040B;
    }

    .btn li:last-child {
        box-shadow: 0 5px 0 #003293;
    }

    .btn li:hover {
        top: 5px;
        box-shadow: none;
    }

    .btn li span {
        font-size: 13px;
    }

    .btn li::after {
        width: 16px;
        height: 16px;
        right: 20px;
    }

    .present_natsuo_img {
        width: 90%;
        max-width: 594px;
        height: 613px;

        margin: 10px auto 10px;
        position: relative;
        background: url(../img/sp/natsuo-sp.png) no-repeat center;
        background-size: contain;
    }


    .btn.brown {
        width: 85%;
        /* padding: 10px 50px; */
        font-size: 14px;
        line-height: 1.4;
    }

    .present_natsuo_img .btn.brown {
        padding: 14px 16px;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);

    }

    .btn.brown::after {
        right: 15px;
        width: 20px;
        height: 20px;
    }

    /* ※ */
    .asterisk {
        font-size: 12px;
        line-height: 1.6;
    }

    /* present */
    #present {
        margin-top: 50px;
    }

    #present .section_title {
        max-width: 228px;
        width: 100%;
        margin: auto auto 25px auto;
    }

    .present_box {
        margin: auto auto 50px auto;
    }

    .present_pt {
        max-width: 290px;
    }

    .present_box_red {
        max-width: 500px;
        padding-bottom: 40px;
        margin-top: 30px;
    }

    .present_box_red .present_box_ac_title,
    .present_box_red .present_box_bc_title {
        position: relative;
        padding-left: 80px;
    }

    .present_box_ac_title,
    .present_box_bc_title {
        padding: 15px 0;
        letter-spacing: 0.07em;
        line-height: 1.2;
        font-size: 18px;
    }

    .present_box_red .present_box_ac_title::after {
        top: 5px;
        left: 15px;
        display: block;
        width: 60px;
        height: 60px;
    }

    .present_box_red .present_box_bc_title::after {
        top: 5px;
        left: 15px;
        display: block;
        width: 60px;
        height: 60px;
    }

    .present_box_red_title p:last-child {
        font-size: 16px;
        display: block;
        width: 200px;
        margin: 10px auto auto auto;
    }

    .present_ac_img {
        width: 90%;
        margin: 50px auto 10px auto;
    }

    .present_box ul {
        width: 100%;
        font-size: 12px;
        padding: 10px;
    }

    .present_box ul p {
        font-size: 14px;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .present_box ul li {
        line-height: 1.6;
    }

    /* accordion */
    /* ===== 基本構造 ===== */


    .accordion_header {
        font-size: 18px;
        padding: 12px 20px;
        border-radius: 30px;
    }

    .accordion_content {
        font-size: 16px;
        line-height: 1.5;
        padding: 12px 0;
    }

    .accordion_header::before,
    .accordion_header::after {
        right: 20px;
        width: 16px;
        height: 2px;
    }

    .accordion_red .accordion_header {
        border-radius: 30px;
    }

    .accordion_grey .accordion_header {
        border-radius: 5px;
        font-size: 16px;
    }

    .accordion_content ul li.notes_asterisk,
    .accordion_content ul li.asterisk {
        /* padding-left: 1em; */
        text-indent: -1em;
    }

    /* span強調文字の調整 */
    .accordion_content ul li span {
        font-size: 20px;
        margin-right: 6px;
        margin-top: -0.2em;
    }

    /* ヘッダー間マージン調整 */
    .accordion_header:nth-child(n+1) {
        margin-top: 20px;
    }

    /* products */

    #products {
        padding: 50px 0 50px 0;
    }

    #products .section_title {
        max-width: 114px;
        width: 100%;
        margin: auto auto 25px auto;
    }

    #products .products_text {
        font-size: 15px;
        margin: 10px auto 30px auto;
    }

    #products ul {
        flex-wrap: wrap;
        justify-content: center;
        margin: auto auto 30px auto;
        letter-spacing: 0.02em;
        font-size: 14px;
    }

    #products ul li {
        width: 46.77%;
        margin-bottom: 40px;
    }

    #products ul li:nth-child(2) {
        margin-left: 5%;
    }

    #products ul li:last-child {
        margin-bottom: 0;
    }

    #products ul li p {
        margin-top: 15px;
        font-size: 12px;
    }

    #products ul li p.note_red {
        font-size: 12px;
        margin-top: 10px;
        text-align: left;
    }

    #products .asterisk {
        font-size: 12px;
        letter-spacing: 0.07em;
    }


    /* ===== application ===== */


    #application .section_title {
        max-width: 114px;
        width: 100%;
        margin: auto auto 50px auto;
    }

    @media screen and (max-width: 767px) {

        .application_box ul.step1 li,
        .application_box ul.step2 li {
            width: 100% !important;
            margin-left: 0 !important;
            padding: 0 !important;
            text-align: center;
            display: block !important;
        }

        .application_box ul.step1 li:last-child a,
        .application_box ul.step2 li:last-child a {
            margin: 0 auto 20px !important;
            max-width: 100% !important;
        }

        .step1_title,
        .step2_title {
            display: block !important;
            text-align: left;
        }
    }

    .application_box ul.step1 li:last-child a {
        width: 100%;
        font-size: 15px;
        padding: 10px 5px;
    }

    .application_box ul.step1 li:last-child a:first-child {
        box-shadow: 0 5px 0 #90040B;
    }

    .application_box ul.step1 li:last-child a:last-child {
        box-shadow: 0 5px 0 #003293;
    }

    /* SPはhover演出なし */
    .application_box ul.step1 li:last-child a:hover {
        top: 0;
        box-shadow: 0 5px 0;
    }

    .application_box ul.step1 li:last-child a span {
        font-size: 13px;
    }

    .application_box ul.step1 li:last-child a::after {
        width: 16px;
        height: 16px;
        right: 20px;
    }

    .application_box ul.step4 {
        padding: 40px 20px 30px 20px !important;
    }

    /* テキストの位置を調整 */
    .step1_title,
    .step1_text {
        text-align: center;
        display: block !important;
        margin-top: 30px;
    }

    .step1_text {
        text-align: center;
        display: block !important;
        margin-top: 30px;
    }

    .application_box .section_title {
        max-height: 74px;
        width: 60%;
        margin: 30px auto 30px auto;
    }

    .application_text {
        font-size: 16px;
    }

    .application_box ul {
        display: block;
        padding: 20px 17px 40px 17px;
        margin-bottom: 60px;
        position: relative;
    }

    .application_box ul p:nth-child(2),
    .application_box .step1_text {
        font-size: 16px;
    }

    .application_box ul::before {
        content: '';
        width: 80px;
        height: 80px;
        position: absolute;
        top: -30px;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 20;

    }

    .application_box ul li:last-child p:first-child,
    .application_box .step1_title {
        font-size: 20px;
        width: 100%;
        text-align: center;
    }

    .application_box .step1_text {
        margin-bottom: 20px !important;
    }

    /*notes*/
    #notes {
        margin: 40px auto auto auto;
    }

    #notes .notes_box_title {
        font-size: 17px;
        padding: 10px 1em 12px 1em;
    }

    #notes .notes_inner {
        padding: 20px 0 10px 0;
    }

    #notes .notes_inner p.t-l,
    #notes .notes_inner p.t-c {
        letter-spacing: 0;
        line-height: 1.73;
        text-align: left;
        font-size: 14px;
    }

    #notes .notes_inner .receipt {
        display: block;
        max-width: 400px;
        margin: 20px auto auto auto;
    }

    #notes .notes_inner .receipt li:first-child {
        width: 100%;
        margin-bottom: 10px;
    }

    #notes .notes_inner .receipt li:last-child {
        width: 100%;
    }

    #notes .notes_inner .receipt li:last-child span {
        width: 100%;
        margin-bottom: 15px;
    }

    #notes .notes_inner .receipt_2,
    #notes .notes_inner .receipt_3 {
        margin-top: 20px;
    }

    #notes .notes_inner .receipt_2 .notes_inner_title,
    #notes .notes_inner .receipt_3 .notes_inner_title {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    #notes .notes_inner .receipt_2 {
        letter-spacing: 0;
        line-height: 1.6;
    }

    #notes .notes_inner .receipt_2 ul {
        font-size: 14px;
        letter-spacing: 0;
        line-height: 1.75;
    }

    #notes .notes_inner .receipt_3 ul {
        display: flex !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
        justify-content: space-between;
    }

    #notes .notes_inner .receipt_3 ul li.pc {
        display: none !important;
    }

    #notes .notes_inner .receipt_3 ul li.sp {
        display: block !important;
        width: 48.57% !important;
        margin-bottom: 10px;
    }

    #notes .notes_inner .receipt_3 ul li.sp img {
        width: 100% !important;
        height: auto;
    }


    .accordion_header,
    .accordion_content {
        padding: 10px 10px;
        width: 100%;
    }

    .accordion_header {
        border-radius: 10px;
        font-size: 14px;
    }

    .accordion_header span {
        width: 90%;
        letter-spacing: 0.02em;
        padding-left: 10px;
    }

    .accordion_content {
        font-size: 14px;
        line-height: 1.64;
    }

    .accordion_content ul li span {
        font-size: 18px;
        margin-right: 5px;
    }

    .accordion_header:nth-child(n+1) {
        margin-top: 20px;
    }

    .accordion:first-child .accordion_header {
        margin-top: 20px;
    }

    .accordion_header::before {
        position: absolute;
        content: '';
        top: 50%;
        right: 10px;
        width: 15px;
        height: 2px;
        background-color: #fff;
        transform: rotate(90deg);
        transition: all .3s ease-in-out;
    }

    .accordion_header::after {
        position: absolute;
        content: '';
        top: 50%;
        right: 10px;
        width: 15px;
        height: 2px;
        background-color: #fff;
        transition: all .3s ease-in-out;
    }

    #faq .section_title {
        max-width: 172px;
        width: 100%;
        margin: auto auto 30px auto;
    }

    #faq p {
        font-size: 14px;
        line-height: 1.85;
    }

    #faq .inner {
        width: 100%;
        margin: 0 auto;
        padding: 30px 0 0 0;
        box-sizing: border-box;
    }

    section#faq .inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /*terms*/
    #terms .section_title {
        max-width: 258px;
        width: 100%;
        margin: auto auto 60px auto;
    }

    #terms p {
        font-size: 13px;
        letter-spacing: 0.02em;
        margin: auto auto 20px auto;
    }

    .terms_box {
        height: 220px;
        padding: 20px 17px;
        font-size: 12px;
        line-height: 1.6;
        letter-spacing: 0.07em;
    }

    .terms_box ul {
        margin-bottom: 10px;
        border-bottom: 1px solid #B9B9B9;
    }

    .terms_box ul li:first-child {
        margin-bottom: 5px;
    }

    /*お問い合わせ*/
    section#contact {
        padding: 0;
    }

    .contact {
        width: 89.1%;
        padding: 13px;
    }

    .contact li:first-child {
        width: 100%;
        font-size: 14px;
        padding: 11px 1em;
        line-height: 1.4;
    }

    .contact li:nth-child(2) {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .contact li:nth-child(3) {
        font-size: 15px;
        margin-bottom: 5px;
        letter-spacing: 0;
    }

    .contact li:nth-child(4) {
        font-size: 12px;
        margin-bottom: 5px;
        letter-spacing: 0;
    }

    .contact li.asterisk {
        font-size: 12px;
        line-height: 1.75;
        /* text-align: left; */
        letter-spacing: 0;
        text-indent: -1em;
    }
}

@media screen and (min-width: 415px) and (max-width: 430px) {
    .present_natsuo_img .btn.brown {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        max-width: 280px;
    }
}

@media screen and (min-width: 376px) and (max-width: 414px) {
    .present_natsuo_img .btn.brown {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 300px;
    }
}

@media screen and (max-width: 375px) {
    .present_natsuo_img .btn.brown {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 300px;
    }
}

/* ======================================================
   最終的な出し分け修正（ファイルの一番下に追加）
========================================================= */

/* 基本設定：PCを出す、SPを隠す */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

@media screen and (max-width: 767px) {

    .application_box ul.step3 li p:has(img.pc) {
        display: none !important;
    }

    .pc {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        overflow: hidden;
    }

    .sp {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    .application_box ul.step3 li:last-child {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .application_box ul.step3 li:last-child img.sp {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/*追加*/

.page_contents .sb8 .sbc {
    max-width: 47.3125em;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1.25em 1.5625em;
    border-radius: 2em;
    box-sizing: border-box;
}

.sb3 .sb3_top {
    background-color: #D70A1D;
    color: #fff;
    border-radius: 100em;
    text-align: center;
    font-size: 120%;
    max-width: 35em;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 3em;
    padding: 1em;
    padding-top: 1em;
    line-height: 1.3;
    /* box-shadow: 0.25em 0.25em 0.25em rgba(0, 0, 0, 0.25); */
    position: relative;
}

/* 子要素（span, b）のスタイル */
.sb3 .sb3_top span {
    font-size: 120%;
}

.sb3 .sb3_top b {
    font-size: 150%;
}


.to_big {
    opacity: 1 !important;
    transform: none !important;
}

.show_text {
    -webkit-clip-path: none !important;
    clip-path: none !important;
    opacity: 1 !important;
}

.to_big.active {
    animation: to_big 0.5s ease-out forwards;
    transform-origin: 50% 50%;
    opacity: 0;
}

.sb3 .sb3_top figure {
    position: absolute;
    width: 8.1em;
    right: -14%;
    top: -50%;
}

.rwd_show {
    display: none;
}

@media screen and (max-width: 767px) {
    .rwd_show {
        display: inline;
    }

    .sb3 .sb3_top figure {
        width: 6em;
        right: -5%;
        top: -40%;
    }

    .sb3 .sbc {
        padding-top: 40px !important;
    }

    .sb3 .sb3_top {
        max-width: 90%;
        padding: 0.8em 0.5em;
        font-size: 90%;
        margin-bottom: 2em;
        margin-bottom: 0;
    }


    .sb3 .sb3_top figure {
        width: 7em;
        right: -10%;
        top: -50%;
    }
}

.page_contents p,
.page_contents figure {
    margin: 0;
}