﻿@charset "utf-8";

/*--------
【記載ルール】
・ブレークポイント、キーフレームでインデント
・不要な半角スペースやタブは削除
・短縮できるものは短縮（例）0.7 → .7、#FFFFFF → ＃FFF
・継承を考え、無駄なプロパティを削除（特にSP）
--------*/
/* RESET CSS */
article, aside, details, figcaption, figure, footer, header, hgroup, img, menu, nav, section {
    display: block;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

:root {
    /* テキストカラー */
    --mainTxtColor: #111111;
    /* 2つの値の大きい方が指定される (横幅)*/
    --contentWidth: max(500px, 20vw);
    --white: #ffffff;
    --black: #111111;
    --blue: #020239;
    --blue2: #0525a0;
    --navy: #030f38;
    --red: #b60b2b;
    --orange: #d45a1c;
    --yellow: #ead86a;
    --yellow2: #b0912e;
    --gray: #4B4B4B;
    --gray2: #cfcccc;
    --gray3: #f6f6f6;
    --notcieGray: #8a8a8a;

    --gold: #fcea9c;
    --gold2: #c2921a;
    --gold3: #b0912e;
    --gold4: #75580c;
}

a:hover,
button:hover {
    cursor: pointer;
}

.r {
    color: var(--red);
}

.or {
    color: var(--orange);
}

.y {
    color: var(--yellow);
}

.y2 {
    color: var(--gold);
}

.blue {
    color: var(--blue);
}

.blue2 {
    color: var(--blue2);
}

.blue3 {
    color: var(--blue3);
}

.wht {
    color: var(--white);
}

.grad_bl {
    background: linear-gradient(90deg, var(--blue), var(--blue3), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grad_or {
    background: linear-gradient(90deg, var(--orange), var(--orange2), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.b {
    font-weight: bold;
}

.b600 {
    font-weight: 600;
}

.b700 {
    font-weight: 700;
}

.b900 {
    font-weight: 900;
}

.u {
    text-decoration: underline;
}

.italic {
    font-style: italic;
}

.bg_wht {
    background: #fff;
}

.bg_blk {
    background: var(--black);
}

.bg_blk2 {
    background: #222222;
}

.bg_skyblue {
    background: var(--blue4);
}

.bg_skyblue2 {
    background: #e5f0f9;
}

.bg_y {
    background: #fffee2;
}

.bg_gry {
    background: var(--gray);
}

.bg_gry2 {
    background: var(--gray3);
}

.bg_gry3 {
    background: #bbb;
}

.bg_gry4 {
    background: #f7f7f7;
}

.bg_or {
    background: var(--orange);
}

.bg_r {
    background: var(--red);
}

.bg_blue {
    background: var(--blue);
}

.bg_grad_gold {
    background: linear-gradient(to right, var(--gold) 0%, var(--gold2) 100%);
}

.bg_grad_gold2 {
    background: linear-gradient(90deg, var(--gold4), var(--gold3), var(--gold4));
}

.bg_grad_blue {
    background: linear-gradient(90deg, var(--blue), var(--blue2), var(--blue));
}

.bg_grad_or {
    background: linear-gradient(0deg, var(--orange) 0%, #ff4830 100%);
}

.bg_grad_r {
    background: linear-gradient(90deg,#a6071f, #ef2323,#a6071f);
}
.arrow2 {
    width: 1.2em;
    height: 1.2em;
    border: 3px solid;
    border-color: transparent transparent var(--white) var(--white);
    transform: rotate(-45deg);
    margin: 0rem auto 5rem;
    position: relative;
}

.arrow_img img {
    width: auto;
    max-width: 240px;
}


.box {
    padding: 5rem 5%;
    border-radius: 12px;
}

body {
    background: #eeeeee;
    background-repeat: repeat;
    background-position: top center;
    background-attachment: fixed;
    width: 100%;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.7;
    -webkit-font-feature-settings: 'palt'1;
    font-feature-settings: 'palt'1;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", 'Noto Sans JP', "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;

}

.display_none {
    display: none !important;
}

/* ----------------------
font-size
---------------------- */
.font40 {
    font-size: 40%;
}

.font50 {
    font-size: 50%;
}

.font60 {
    font-size: 60%;
}

.font65 {
    font-size: 65%;
}

.font70 {
    font-size: 70%;
}

.font80 {
    font-size: 80%;
}

.font85 {
    font-size: 85%;
}

.font90 {
    font-size: 90%;
}

.font95 {
    font-size: 95%;
}

.font110 {
    font-size: 110%;
}

.font115 {
    font-size: 115%;
}

.font120 {
    font-size: 120%;
}

.font125 {
    font-size: 125%;
}

.font130 {
    font-size: 130%;
}

.font140 {
    font-size: 140%;
}

.font145 {
    font-size: 145%;
}

.font150 {
    font-size: 150%;
}

.font160 {
    font-size: 160%;
}

.font170 {
    font-size: 170%;
}

.font180 {
    font-size: 180%;
}

.font190 {
    font-size: 190%;
}

.font200 {
    font-size: 200%;
}

.font250 {
    font-size: 250%;
}

.font270 {
    font-size: 270%;
}

/* line-height */
.lh_11 {
    line-height: 1.1;
}

.lh_12 {
    line-height: 1.2;
}

.lh_13 {
    line-height: 1.3;
}

.lh_14 {
    line-height: 1.4;
}

.lh_17 {
    line-height: 1.7;
}

/* text-align */
.txt_c {
    text-align: center;
}

.txt_r {
    text-align: right;
}

.txt_l {
    text-align: left;
}

.bottom {
    margin-bottom: 1rem;
}

.bottomx2 {
    margin-bottom: 2rem;
}

.bottomx3 {
    margin-bottom: 3rem;
}

.bottomx4 {
    margin-bottom: 4rem;
}

.bottomx5 {
    margin-bottom: 5rem;
}

.bottomx6 {
    margin-bottom: 6rem;
}

.bottomx7 {
    margin-bottom: 7rem;
}

.bottomx8 {
    margin-bottom: 8rem;
}

.bottomx9 {
    margin-bottom: 9rem;
}

.bottomx10 {
    margin-bottom: 10rem;
}

.bottomx11 {
    margin-bottom: 11rem;
}

.bottomx12 {
    margin-bottom: 12rem;
}

.bottomx15 {
    margin-bottom: 15rem;
}

.bottomx18 {
    margin-bottom: 18rem;
}

.bottomx20 {
    margin-bottom: 20rem;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table+p {
    margin-top: 2rem;
}

img {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

#contents {
    max-width: var(--contentWidth);
    margin-inline: auto;
    box-shadow: 0 0 20rem 0 rgba(87, 87, 87, 0.3);
    background-color: var(--white);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: #666;
}

/*--------Basic--------*/
html {
    font-size: min(1vw, calc(var(--contentWidth) / 100));
    overflow-x: hidden;
}


#hidden_contents_wrap {
    width: 100%;
    max-width: 900px;
    margin:0 auto;
    display: none;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.img_right {
    float: right;
    padding: 0 0 2rem 2rem;
}

.img_left {
    float: left;
    padding: 0 2rem 2rem 0;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.flex>p+p {
    margin-top: 0;
}

.flex+.flex {
    margin: 2rem 0 0;
}

.caption {
    width: 100%;
    padding: 1rem;
    margin: 0 !important;
    border-left: 2px solid #110604;
    color: #110604;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
}

.comment_wrap{
    padding-top: 3rem;
}
video {
    width: 100%;
}

.video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    vertical-align: bottom;
    margin-bottom: 3rem;
}

.mv_btn {
    text-align: center;
}

.mv_btn a {
    display: inline-block;
    background: #ddd;
    padding: 5px 20px;
    margin: 1rem auto 5rem;
    border-radius: 30px;
    font-size: 80%;
    text-decoration: none;
    text-align: center;
    color: #000;
}

.mv_btn p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 120%;
}

/*-------- btn --------*/
.btn {
    width: 100%;
    display: block;
    text-decoration: none;
    background: #00B900;
    color: #fff;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, .2);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
    font-size: 140%;
    padding: 3rem;
    position: relative;
    line-height: 1.3;
    animation: btn_animation 1.5s infinite;
}

@keyframes btn_animation {
    0% {
        transform: scale(0.9, 0.9);
    }

    50% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(0.9, 0.9);
    }
}

.btn:after {
    position: absolute;
    content: "";
    width: 3rem;
    height: 3rem;
    border-style: solid;
    border-color: #fff;
    border-width: 3.5px 3.5px 0 0;
    transform: rotate(45deg) translateY(-50%);
    top: 47%;
    right: 6rem;
}


.txt_btn {
    width: 100%;
    display: block;
    margin: -8rem auto 8rem;
    /*border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
    /*background: #09c755;←ボタン色*/
    text-decoration: none;
    /*transition: all .3s;
	border: 2px solid #fff;*/
    color: #000;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
    font-size: 120%;
}

.txt_btn:hover {
    color: #ff2f2f;
}

.btn p {
    padding: 3rem;
    font-size: 100%;
    text-align: center;
    line-height: 1.2;
    position: relative;
}

.icon_btn {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 0.7em;
    height: 0.7em;
    border-bottom: 3px solid;
    border-right: 3px solid;

}


.btn:hover {
    filter: brightness(1.3)
}

.btn.red {
    background: #b5004b;
    border: 2px solid #ffbad6;
    text-shadow: 0 1px 5px #b5004b;
}

/* ===========================-
 heading
===========================- */
h1 {
    font-weight: normal !important;
    font-feature-settings: "palt"1;
}

/*-------- decoration --------*/
.u {
    text-decoration: underline;
}

.mark {
    background: linear-gradient(transparent 50%, #ffff84 50%);
}

.serif {
    font-family: 游明朝, "Yu serif", Yuserif, "Hiragino serif ProN", "Hiragino serif Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

/*-------- text align --------*/
.txt_c {
    text-align: center;
}

.txt_r {
    text-align: right;
}

.txt_l {
    text-align: left;
}


p+img, img+p {
    margin-top: 2rem;
}

p+p {
    margin-top: -1rem;
}

.view_timer {
    display: none;
}

.shadow {
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.1));
}

/* ===========================-
animation
===========================- */
.move {
    display: block;
    visibility: visible !important;
    animation-fill-mode: both !important;
    -webkit-animation-fill-mode: both !important;
    -webkit-animation-iteration-count: infinite !important;
    animation-iteration-count: infinite !important;
    -webkit-animation: move 1.8s;
    animation: move 1.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes move {
    0% {
        transform: scale(1);

        opacity: 1;
    }

    25% {
        transform: scale(1.04);
    }

    40% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    60% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.03);

        opacity: 1;
    }

    80% {
        transform: scale(1);
    }

    90% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes move {
    0% {
        transform: scale(1);

        opacity: 1;
    }

    25% {
        transform: scale(1.04);
    }

    40% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    60% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.03);

        opacity: 1;
    }

    80% {
        transform: scale(1);
    }

    90% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/*--------Header--------*/
header {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    text-align: center;
    background-size: cover;
}

.header_inner {
    width: 750px;
    margin: 0 auto;

}

#header_img h1 {
    width: 960px;
    margin: 0 auto;
    position: relative;
}

header h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 130%;
    line-height: 1.4;
}

header h1 img {
    padding: 3rem 0 0;
    width: 3.5rem;
    height: auto;
    display: inline-block;
}


.show-after {
    opacity: 0;
    display: none;
    transition: all .3s ease;
}

.show-after.is-show {
    display: block;
    opacity: 1;
}


#mv_more {
    padding: 4rem 0;
    position: relative;
}

#mv_more .arrow2 {
    display: none;
    position: absolute;
    left: 5%;
    top: 50%;
    animation: move-y2 .8s infinite alternate ease-in-out;
}

@keyframes move-y2 {
    from {
        top: 40%;
    }

    to {
        top: 50%;
    }
}

#mv_more .arrow2.right {
    right: 5%;
    left: auto;
}

#mv_more.bg_grad_blue .arrow2 {
    display: block !important;
}

#mv_more.bg_grad_blue .txt_c {
    position: relative;
    animation: blinking .8s infinite alternate ease-in-out;
}

@keyframes blinking {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#mvintro{
    padding-bottom: 8rem;
}

#mvintro .box {
    border: 1px solid #222222;
}

#mv_time{
    padding-bottom: 8rem;
}
#mv_time table {
    font-weight: normal;
    font-size: 80%;
    background: var(--white);
}

#mv_time table th {
    width: 20%;
    text-align: center;
    border: 1px solid #ccc;
}

#mv_time table td {
    width: 75%;
    line-height: 1.2;
    border: 1px solid #ccc;
}

#mv_time table th,
#mv_time table td {
    padding: 1rem 2rem;
}

/* ==============================
   動画視聴完了ポップアップ
============================== */

#mv_popup {
    position: fixed;
    inset: 0;
    bottom: 7rem;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

/* 表示状態 */
#mv_popup.is-show {
    opacity: 1;
    pointer-events: auto;
}

/* 中身 */
#mv_popup .mv_popup_wrap {
    background: #fff;
    padding:0;
    border-radius: 12px;
    position: relative;
    max-width: 460px;
    width: 90%;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.35s ease;
}

#mv_popup .mv_popup_wrap #thanks_message{
    padding: 3rem 0 3rem;
    color: var(--blue);
    font-weight: bold;
    font-size: 130%;
    background-color: var(--yellow);
}
/* 表示時のアニメーション */
#mv_popup.is-show .sec_inner {
    transform: translateY(0) scale(1);
}

/* 閉じるボタン */
.mv_popup_close {
    position: absolute;
    z-index: 100;
    top: -2rem;
    right: -2rem;
    width: 7rem;
    height: 7rem;
    border:none;
    border-radius: 50%;
    background: var(--blue);
    color: var(--yellow);
    font-size: 7rem;
    line-height: 0;
    cursor: pointer;
}

.mv_popup_close:hover {
    background: #ddd;
    transform: scale(1.05);
}
#mv_popup svg{
    position: relative;
    bottom: -1.2rem;
    margin-right: 6px;
}

/*--------settlement Header--------*/
#scheader {
    z-index: 100;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 70%;
    font-weight: bold;
    text-align: center;
    background: var(--blue2);
    color: #fff;
    padding: 1rem 0;
    line-height: 1;
}

#scheader .countdown {
    padding: 1rem 0;
    margin: 0 auto;
    line-height: 1.2;
    /* Retained specific line-height */
    font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif, monospace;
}

#scheader .countdown .timer_num {
    display: inline-block;
    padding: 0 .4rem;
    margin: 0 .4rem;
    border-radius: 3px;
    color: var(--black);
    font-size: 150%;
    background: #fff;
}

.thanks_txt {
    background: var(--yellow);
    color: var(--black);
    text-align: center;
    padding: 1rem;
    font-size: 110%;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
}

.thanks_notice {
    max-width: 100%;
    text-align: center;
    margin-top: 3rem;
    font-size: 90%;
    font-family: 'Noto Sans JP', sans-serif;
    border: 2px solid var(--gold);
    padding: 1rem;
    line-height: 1.5;
}

/*---iframe---*/

.iframe_wrapper {
    width: 100%;
    height: 100%;
    max-width: 90%;
    margin: auto;
    position: relative;
    padding-bottom: 10rem;
}

.iframe_wrapper .iframe_inner .iframe_mv {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.iframe_wrapper .iframe_inner .iframe_mv iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header_mv {
    width: 100%;
    aspect-ratio: 16/9;
}

.header_mv iframe {
    width: 100%;
    height: 100%;
}

.contents_ttl {
    background: rgba(252, 146, 51, 0.1);
}

.bottom_ttl {
    max-width: 750px;
    margin: auto;
    margin-top: -5rem;
}

.contents_check {
    max-width: 750px;
    padding: 1.5rem 3rem;
    margin: 0 auto 5rem;
    margin-top: 1rem;
}

.contents_check li {
    padding: 1.2rem 0 1.2rem 7rem;
    /* font-weight: bold; */
    line-height: 1.5;
    position: relative;
}

.contents_check li:before,
.contents_check li:after {
    content: "";
    position: absolute;
}

.contents_check li:before {
    top: 2.5rem;
    left: 1.75rem;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 1rem;
    height: 2.5rem;
    border-right: 3px solid #ff4830;
    border-bottom: 3px solid #ff4830;
}

.contents_check li:after {
    left: 0;
    top: 2rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid #ff4830;
    border-radius: 2px;
}

#line .contents_ttl {
    background: rgba(0, 168, 68, 0.1);
}

#line .contents_check li:before {
    border-right: 3px solid #00a844;
    border-bottom: 3px solid #00a946;
}

#line .contents_check li:after {
    border: 2px solid #00a946;
}

#line .box {
    border: 2px solid #00a946;
}

.comment_ttl {
    padding: 2rem 0 2rem 0;
    /*文字周りの余白*/
    background: #fff7cc;
    /*背景色*/
    border-left: solid 5px #9e6e3f;
    /*左線（実線 太さ 色）*/
    text-align: center;
    font-size: 120%;
    font-weight: 900;
    line-height: 1.3;
}

.comment_pre .box {
    border: 2px solid #ff4830;
}

.comment_step h2 {
    text-align: center;
    background: var(--gray2);
    font-size: 120%;
    font-weight: 700;
    padding: 1rem;
}


.step_inner {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding-left: 0;
    margin-top: 5rem;
}

.step_item {
    position: relative;
    display: flex;
    width: 100%;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--white);
    padding: 3rem;
}

.step_img {
    width: 30%;
    text-align: center;
    margin: 0 auto 0 0;
}

.step_txt {
    width: 65%;
    text-align: left;
    padding-left: 0;
}

.step_item+.step_item {
    margin-top: 8rem;
}

.step_item+.step_item::before {
    position: absolute;
    content: "\f078";
    transform: translateX(-50%);
    font-size: 120%;
    left: 50%;
    top: -6.5rem;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.comment_qa h2 {
    text-align: center;
    border-top: 2px solid #bbb;
    border-bottom: 2px solid #bbb;
    font-size: 120%;
    font-weight: 800;
    padding: 1rem;
    margin: 8rem auto 20px;
}

.qa {
    padding-bottom: 5rem;
}

.qa_item {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px dashed #ccc;
    align-items: center;
}

.qa_num {
    width: 10%;
    font-size: 200%;
    font-weight: 700;
    text-align: center;
}

.qa_txt {
    width: 85%;
    font-size: 90%;
    text-align: left;
}


.top_img {
    margin-top: 8rem;
}

.top_img2 {
    margin-bottom: -6rem;
}

.bottom_img {
    margin-bottom: 6rem;
}

.button_img {
    margin-top: 4rem;
    transition: filter 0.2s ease;
}

.button_img:hover {
    filter: brightness(1.20);
}


.special_notice {
    text-align: center;
    margin-top: -5rem;
}

#letter {
    overflow: hidden;
    padding-top: 8rem;
    background-image: url(../img/bg_silver.jpg);
    background-size: 100%;
    position: relative;
}

#letter a {
    position: relative;
    opacity: 1;
    overflow: hidden;
    position: relative;
    transition: transform .6s ease;
}

#letter .btn {
	background-color: #2979ff;
	animation: btn_animation 1.5s infinite;
	display: none;
}

#letter a img {
    transition: transform .6s ease;
}

#letter::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.9);
	left: 0;
	top: 0;
	z-index: 998;
	position: absolute;
	
}

#letter::after {
  content: "6月4日(木) \A Coming soon...";
  white-space: pre-line;
  position: absolute;
  left: -12%;
  top: 50%;
  width: 120%;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 280%;
  font-weight: bold;
  color: #fff;
  text-align: center;
  transform: translateY(-50%) rotate(-10deg);
  transform-origin: center;
  z-index: 999;
  box-sizing: border-box;
  text-shadow:
    0 0 8px #030f38,
    0 0 16px #5ee4f8;
}
#letter.open_after::before,
#letter.open_after::after {
	display: none;
}

#letter.open_after .btn {
	display: block;
}

.auto-slide{
  height: 150px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 5rem;
  background-image: url("../img/slide.jpg"); /* 4000x300 -> 2000x150 */
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: 2000px 150px;
  animation: bgSlide 100s linear infinite;
}


/* 動きが苦手な人向けの配慮（推奨） */
@media (prefers-reduced-motion: reduce) {
  .auto-slide { animation: none; }
}


@keyframes bgSlide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}

@keyframes slideX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2000px);
  }
}
/* #letter a::before {
    background-color: #fff;
    position: absolute;
    content: '';
    display: inline-block;
    top: -100px;
    left: 0;
    width: 50px;
    height: 100%;

    opacity: 0;
    animation: kiran 3s ease-in-out infinite;
    z-index: 1;
}

@-webkit-keyframes kiran {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 0.8;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

#letter a:hover img {
    transform: scale(1.025);
} */

/*--------Section / sub_head / sec_inner--------*/
/* 共通 */
section {
    padding: 5rem 0;
    background-color: var(--white);
}

.sub_head {
    font-size: 120%;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-feature-settings: 'palt'1;
    font-feature-settings: 'palt'1;
    margin: 0 auto 4rem;
}

.sec_inner {
    padding: 0;
    margin: 0 5%;
    position: relative;
}

.video_inner {
    padding: 8rem 5rem 3rem;
}

.thanks_inner {
    width: 750px;
    margin: 0 auto;
    background: #e08e7e;
}

.bg2 {
    background: rgba(29, 53, 92, 0.1);
}

.bg2 .sec_inner {
    width: 960px;
    margin: 0 auto;
    padding: 5rem;
    background: #fff;
}

#header h2 {
    font-size: 120%;
    padding: 2rem 0;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.line_icon {
    margin: 0 3rem 0 0;
    width: 100px
}

.g {
    color: #00a946;
}


.line_ttl_img {
    margin: auto;
    margin-top: 5rem;
}


.arrow {
    width: 30px;
    height: 30px;
    border: 5px solid;
    border-color: transparent transparent #a62728 #a62728;
    transform: rotate(-45deg);
    margin: 4rem auto 6rem;
}


.btn_wrap {
    margin-top: 5rem;
}



.btn_wrap+.lead {
    margin: 5rem auto 3rem
}

.line_box .present2 {
    width: 100%;
    margin-bottom: 2rem;
}


.qr_touroku {
    width: 45%;
}

.id_touroku {
    width: 53%;
}

.line_ttl {
    padding: 2rem 0 2rem 0;
    /*文字周りの余白*/
    background: #ebf8f4;
    /*背景色*/
    text-align: center;
    font-size: 120%;
    font-weight: 900;
    line-height: 1.3;
}

.line_registration {
    text-align: center;
}

.line_registration img {
    width: auto;
}

.line_item h3, .line_item2 h3 {
    display: table;
    position: relative;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    line-height: 1;
    font-size: 110%;
    font-weight: 800;
    color: #093A44;
    padding: 0 20px;
    margin: 0 auto;
}

.line_item, .line_item2 {
    width: 100%;
    position: relative;
    border: 1px solid #777;
}

.line_qr {
    width: 40%;
    margin: 0 auto;
}

.line_step {
    background: #f5f5f5;
    padding: 10px 10px 10px 30px;
    margin: 3rem;
    font-size: 90%;
    color: #093a44;
    font-weight: 700;
}

.line_btn p {
    text-align: center;
    color: #093A44;
}

.line_btn a {
    display: table;
    margin: 10px auto 0;
}

.line_id {
    font-size: 120%;
    font-weight: bold;
}


.present1_ttl, .present2_ttl {
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    padding: 2rem 1rem 2rem 9rem;
    font-size: 2.7rem;
}

.present1_ttl {
    background: url(../img/settle/bg_mail.jpg)no-repeat 1rem .6rem, #144772;
}

.present2_ttl {
    background: url(../img/settle/bg_line.png)no-repeat 1.5rem 2.5rem, #00b900;
    background-size: 7%;
}

.qr_touroku {
    width: 49%;
}

.id_touroku {
    width: 49%;
}


.flow li:nth-child(2) {
    margin: 4rem 0;
}

/* 注釈 */
.notice {
    font-size: 2.4rem;
    color: var(--black);
    letter-spacing: 1px;
    position: relative;
}

.notice.wht {
    color: var(--white);
}

.notice.blk {
    color: #444;
}

.notice li {
    position: relative;
    padding-left: 3rem;
    display: inline-block;
}

.notice li::before {
    content: "※";
    position: absolute;
    left: 0;
}



/*--------　list / box --------*/
/* 共通 */
ul.list {
    margin: 3rem 0;
}

ul.list li {
    padding: 1.5rem 0 1.5rem 4rem;
    border-bottom: 1px dashed #aaa;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
}

ul.list li:nth-child(2n), ul.list2 li:nth-child(2n) {
    background-color: #fffff0;
}

ul.list li {
    padding-top: .8rem;
}

ul.list li {
    background: url(../img/base/ico_cheack_04.png) 0 2rem no-repeat;
}

/*-------- button:hover --------*/
@-webkit-keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px)
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px)
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.hvr-wobble-vertical {
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-wobble-vertical:active, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:hover {
    -webkit-animation-name: hvr-wobble-vertical;
    animation-name: hvr-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/*--------footer--------*/
footer {
    display: grid;
    grid-template-columns: 1fr;
    background: #eee;
    color: #333;
    padding: 5rem;
    -webkit-font-feature-settings: 'palt'0;
    font-feature-settings: 'palt'0;
    text-align: center;
    font-size: 60%;
}

#footer_logo {
    text-align: center;
}

#footer_info p {
    font-size: 100%;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
}

#footer_info ul {
    text-align: center;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, auto);
    column-gap: 2rem;
}

footer a {
    font-size: 100%;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}

/* アニメーションのスタイル */
@-webkit-keyframes anim {
    0% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes anim {
    0% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }

    18.5% {
        -webkit-transform: translateX(7px);
        transform: translateX(7px);
    }

    31.5% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }

    43.5% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }

    18.5% {
        -webkit-transform: translateX(7px);
        transform: translateX(7px);
    }

    31.5% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }

    43.5% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation: headShake 1.5s ease-in-out infinite;
    animation: headShake 1.5s ease-in-out infinite;
}

/*購入フォーム調整*/
#form .form_data.grid,
#form .form_item.grid {
    grid-template-columns: none;
}

#form .form_item:has(.form_data) {
    grid-column: span 3 !important;
}


/* comment */
#comment {
    position: relative;
    padding-bottom: 0;
    background-color: #fffee2;
}

#comment input,
#comment textarea {
    background-color: #fff;
    border: 1px solid #ccc;
    min-height: 60px;
}

#comment input:focus,
#comment textarea:focus {
    border: none;
}

#comForm {
    scroll-margin-top: 150px;
}

.comForm {
    padding: 10rem 5%;
    padding-top: 2rem;
}

.comSlide-txt {
    font-weight: 400;
    margin-bottom: 2rem;
    white-space: pre-wrap;
    /* 改行を表示する */
    word-break: break-word;
    /* 長文のはみ出し防止（保険） */
}

.comSlide-name {
    color: var(--gold4);
    font-size: 80%;
}

.comForm .sub_head {
    padding: 0;
}

.comForm .form-group label {
    display: block;
    margin-bottom: 2rem;
    font-weight: bold;
    line-height: 1.4;
}

.comForm .form-group .required {
    color: var(--red);
}

.comForm input, .comForm textarea {
    background: #eee;
    width: 100%;
    padding: 2rem;
    border-radius: 5px;
}

.comForm textarea {
    resize: vertical;
    height: 200px;
}

.comForm .txt_ct {
    text-align: right;
}

.comForm #textlength1 {
    display: inline;
}

.comForm #textlength2 {
    display: inline;
}

.comForm button {
    border: none;
    display: block;
    width: 100%;
    background: #ff7800;
    text-align: center;
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    font-weight: bold;
    margin: 5rem auto 0;
    line-height: 1.4;
    box-shadow: 0 7px 0px #cb5907;
    font-size: 120%;
    transition: 0.3s;
}

.comForm button:hover {
    filter: brightness(1.3);
}

.comForm button span {
    font-size: 80%;
    display: inline-block;
}

.comment_area {
    position: relative;
    padding: 8rem 0 5rem;
   background-image: url(../img/bg_yellow.jpg);
   background-size: cover;
    background-size: 100%;
    overflow: hidden;
}

.comment_area .detail {
    position: absolute;
    width: 55%;
    right: 5%;
    bottom: -1px;
}

.comment_archive_area {
    margin:2rem 5rem 5rem;
    position: relative;
}
.comment_archive {
    position: relative;
    margin-bottom: 5rem;
    background: #fff;
    padding: 2rem 3% 5rem;
    /* overflow-y: scroll; */
}

.comment_archive .comment_archive_inner {
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--gray2);
}
.comment_archive .comment_archive_inner:last-of-type{
    border-bottom: none;
    padding-bottom: 0;
}
#commentLoadMore {
  display: none;
  width: 100%;
  font-size: 110%;
  padding: 4.5rem 3rem;
  border-radius: 1.5rem;
  border: none;
  background-color: #000;
  box-shadow: 0 7px 0px #666;
  color: var(--white);
  font-weight: bold;
  transition: .3s;
}

#commentLoadMore:hover{
    opacity: .8;
}
#commentLoadMore.is-visible {
  display: block;
}

/* ================================
   PICK UP ラベル（上部見出し）
================================ */
.comment-pickup-label{
  display:inline-block;
  font-size:80%;
  font-weight: 700;
  margin-bottom: 1rem;
  padding:0 0.5em;
  color: var(--white);
  background-color: var(--red);
}

#line{
    padding-top: 8rem;
}
#youtubelive{
    padding-bottom: 8rem;
    padding-top: 0;
}
#youtubelive h2{
    text-align: center;
    padding: 5rem;
    line-height: 1.6;

}
