@charset "utf-8";
/* ==========================================
 共通
============================================*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* フォント定義 */
:root {
    --font-default: 'Hiragino Kaku Gothic Pro', 'meiryo', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    --font-serif: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-size: 16px;
    --line-height: 1.6;
}

.font-default {
    font-family: var(--font-default);
}

.font-serif {
    font-family: var(--font-serif);
}

body {
    font-family: var(--font-default);
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: #000;
    background-color: #000;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    body {
        font-size: 24px;
        background-size: auto 100vw;
    }
}

/* カラー定義 */
:root {
    --gold: #d7a750;
    --orange: #fc6f57;
    --red: #ff071e;
}

.text-red {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
    background-image: linear-gradient( 0deg , #B67B03 0.1em, #DAAF08 0.2em, #FEE9A0 0.3em, #DAAF08 0.4em, #B67B03 0.5em);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 文字サイズ */
.text-larger {
    font-size: 1.3em;
}

.text-large {
    font-size: 1.9em;
}

/* ネオンシャドウ */
.x-sign {
    text-shadow: 0 0 10px var(--color1), 0 0 20px var(--color2), 0 0 40px var(--color3), 0 0 80px var(--color4);
}

.x-sign--type1 {
    color: yellow;
    --color1: goldenrod;
    --color2: orangered;
    --color3: mediumblue;
    --color4: purple;
}

.x-sign--type2 {
    color: lightpink;
    --color1: pink;
    --color2: orangered;
    --color3: red;
    --color4: magenta;
}

.x-sign--type3 {
    color: lightyellow;
    --color1: yellow;
    --color2: lime;
    --color3: green;
    --color4: mediumblue;
}

.x-sign--type4 {
    color: lightyellow;
    --color1: gold;
    --color2: firebrick;
    --color3: pink;
    --color4: red;
}

.x-sign--type5 {
    color: azure;
    --color1: azure;
    --color2: aqua;
    --color3: dodgerblue;
    --color4: blue;
}

.x-sign--type6 {
    color: tomato;
    --color1: orangered;
    --color2: firebrick;
    --color3: maroon;
    --color4: darkred;
}

.x-sign--type7 {
    color: lightyellow;
    --color1: yellow;
    --color2: orange;
    --color3: brown;
    --color4: purple;
}

.x-sign--type8 {
    color: yellow;
    --color1: yellow;
    --color2: lime;
    --color3: green;
    --color4: darkgreen;
}

.x-sign--type9 {
    color: lightyellow;
    --color1: yellow;
    --color2: gold;
    --color3: orange;
    --color4: darkred;
}

/* 画像 */
.img-wrap {
    position: relative;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a img {
    transition: 0.3s;
}

a:hover img {
    filter: brightness(1.2);
}

/* 段落 */
p {
    margin-bottom: 1em;
}

/* スペーサー */
hr {
    margin: 0;
    border: none;
}

.spacer {
    margin-bottom: 2em;
}

.spacer--lg {
    margin-bottom: 3em;
}

/* ボタン */
.btn-wrap {
    width: 100%;
    text-align: center;
    position: relative;
}

.btn {
    position: relative;
}

.btn:focus {
    box-shadow: none;
}

/* ボタン：ゴールド */
[data-aos].btn-gold::before, [data-aos].btn-gold::after {
    box-shadow: 0 0 50px var(--gold) inset;
}

/* ボタン：オレンジ */
[data-aos].btn-orange::before, [data-aos].btn-orange::after {
    box-shadow: 0 0 50px var(--orange) inset;
}

/* ボタン：参加する */
.btn-join {
    position: fixed;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    width: 90%;
    display: block;
    z-index: 10;
}

@media (min-width: 992px) {
    .btn-join {
        left: auto;
        right: 25px;
        bottom: 25px;
        transform: none;
        width: auto;
    }
}

/* TOPに戻る */
#page-top {
    position: fixed;
    right: 5%;
    bottom: calc(20vw + 20px);
    font-size: 3vw;
    margin: 0;
    z-index: 10;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s ease-in-out;
}

#page-top.show {
    opacity: 1;
    transform: translateY(0);
}

#page-top a {
    padding: 1em;
    background: var(--gold);
    background-image: linear-gradient( 180deg , #B67B03 , #DAAF08 , #FEE9A0 , #DAAF08, #B67B03 );
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease;
    border-radius: 5px;
}

#page-top a:hover {
}

@media (min-width: 992px) {
    #page-top {
        right: 25px;
        bottom: 155px;
        font-size: 1em;
    }
}

/* 遅延ロード */
[lazyload] {
    /*content-visibility: auto;*/
}

/* ==========================================
 アニメーション
============================================*/
/* パルス */
[data-aos="pulse"] {
    animation-name: pulse;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale(1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

/* 波紋 */
[data-aos=ring]::before, [data-aos=ring]::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 150px;
    box-shadow: 0 0 50px rgb(255, 255, 255) inset;
    animation: ring 2s ease-out infinite;
}

[data-aos=ring]::after {
    animation-delay: .4s;
}

@keyframes ring {
    0% {
        transform: scale(.95);
        opacity: 1
    }

    90% {
        opacity: .1
    }

    to {
        transform: scale(1.05,1.05);
        opacity: 0
    }
}

/* ==========================================
 カウントダウン
============================================*/
.countdown {
    color: #fff;
    background-image: linear-gradient( 180deg , #B67B03 , #DAAF08 , #FEE9A0 , #DAAF08, #B67B03 );
    padding: 2vw;
    font-size: 7vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
}

@media (min-width: 992px) {
    .countdown {
        padding: 25px;
        font-size: 40px;
    }
}

/* ==========================================
 コンテナ
============================================*/
.container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

/* 画像幅の自動調整：高さはJSで計算 */
.container img {
    object-fit: cover;
    width: 100%;
}

@media (min-width: 992px) {
    .container img {
        height: auto !important;
    }
}

/* ==========================================
 コンテンツ：共通スタイル
============================================*/
/* フォント */
:root {
    --font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    --font-size: 3.7vw;
}

/* ヘッダー */
.header {
}

/* セクション */
.section {
    overflow: hidden;
    position: relative;
}

.section__header {
    position: relative;
}

.section__heading {
    margin-bottom: 0;
}

/* テキストエリア：基本スタイル */
.txtbox {
    width: calc(100% * (1000 / 1100));
    margin-left: auto;
    margin-right: auto;
    padding: 3.7vw;
    z-index: 1;
    position: relative;
}

@media (min-width: 992px) {
    .txtbox {
        width: calc(100vw * (1000 / 1920));
        padding: 50px;
    }
}

/* テキストエリア：背景ホワイト半透明 */
.txtbox--type1 {
    background-color: rgba(255,255,255,0.5);
}

/* テキストエリア：文字ホワイト */
.txtbox--type2 {
    color: var(--white);
}

/* テキストエリア：文字ホワイト＋背景ブラック半透明 */
.txtbox--type3 {
    color: var(--white);
    background-color: rgba(0,0,0,0.7);
}

/* テキストエリア：背景ホワイト */
.txtbox--type4 {
    background-color: var(--white);
}

/* テキストエリア内の全幅ボックス */
.txtbox .full {
    margin-left: -3.7vw;
    margin-right: -3.7vw;
}

@media (min-width: 992px) {
    .txtbox .full {
        margin-left: -50px;
        margin-right: -50px;
    }
}

/* ==========================================
 コンテンツ：個別スタイル
============================================*/

/* イントロ */
.s-intro01 {
    background: url(../images/section01/bg-01.jpg);
    background-size: 100% auto;
    background-position: center top;
    padding-bottom: 7.29vw;
}

.s-intro01 .section__header {
    margin-bottom: -13vw;
}

.s-intro02 {
    padding-top: 5.73vw;
    padding-bottom: 5.73vw;
    background: url(../images/section01/bg-02.jpg) no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

.s-intro03 {
    background: url(../images/section01/bg-03.jpg);
    background-size: 100% auto;
    background-position: center top;
    padding-top: 6.09vw;
}

.s-intro03 .section__header {
    margin-bottom: -78vw;
    z-index: 2;
}

.s-intro04 {
    background: url(../images/section01/bg-04.jpg) repeat-y;
    background-size: calc( (1920 / 1700) * 100vw) auto;
    background-position: center top;
    z-index: 0;
}

.s-intro04::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: -1;
}

.s-intro04 .section__heading {
    position: relative;
}

.s-intro04 .section__heading::before {
    content: "";
    background: url(../images/section01/bg-03.jpg) repeat-x;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
}

.s-intro04 .section__heading img {
    position: relative;
}

@media (min-width: 992px) {
    .s-intro01 {
        padding-bottom: 140px;
        background-attachment: fixed;
    }

    .s-intro02 {
        padding-top: 140px;
        padding-bottom: 140px;
        background-attachment: fixed;
    }

    .s-intro03 {
        padding-top: 110px;
        background-attachment: fixed;
    }

    .s-intro03 .section__header {
        margin-bottom: -42vw;
    }

    .s-intro04 {
        background-attachment: fixed;
    }

    .s-intro04 .section__header {
        background-size: auto;
    }
}

/* メリット */
.s-merit {
    background: #000 url(../images/section02/bg-01.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding-top: 4.68vw;
}

.merit__list {
    display: grid;
    grid-gap: 8.33vw;
}

.merit__item {
}

.merit__title {
    margin-bottom: 1em;
}

.merit .txtbox {
    padding-top: 0;
    padding-bottom: 5em;
    background-image: url(../images/section02/merit-footer.jpg),url(../images/section02/merit-body.jpg);
    background-repeat: no-repeat,repeat-y;
    background-position: center bottom, center top;
    background-size: 100% auto,100% auto;
}

.merit .txtbox p {
    padding-left: 2.3em;
    padding-right: 2.3em;
}

@media (min-width: 992px) {
    .s-merit {
        background-size: 145%;
        padding-top: 90px;
    }

    .merit__list {
        grid-gap: 160px;
    }

    .merit .txtbox {
        width: calc(100vw * (1051 / 1920));
    }

    .merit .txtbox p {
        padding-left: 3.7em;
        padding-right: 3.7em;
    }
}

/* プロフィール */
.s-profile {
    background: #000 url(../images/section03/bg-01.jpg);
    background-size: auto 100%;
    background-position: center top;
    clip-path: polygon(50% 5.2vw,100% 12.6vw,100% 100%,0 100%,0 12.6vw);
    padding-top: 12.6vw;
    padding-bottom: 18.75vw;
}

.s-profile .section__header {
    margin-bottom: -15vw;
}

@media (min-width: 992px) {
    .s-profile {
        background-size: cover;
        background-attachment: fixed;
        padding-top: 240px;
        padding-bottom: 360px;
    }

    .s-profile .section__header {
        margin-bottom: -127px;
    }
}

/* ツール */
.s-tool .tool__img {
    background: #000 url(../images/section03/bg-03.jpg) no-repeat;
    background-size: auto 100%;
    background-position: center top;
    padding-top: 10vw;
    padding-bottom: 10vw;
}

.tool__list {
    background: #000 url(../images/section03/bg-04.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding-top: 5vw;
    padding-bottom: 10vw;
}

.tool__item {
}

.tool__title {
    text-align: center;
    font-size: 6.6vw;
}

@media (min-width: 992px) {
    .s-tool .tool__img {
        background-size: 124% auto;
        background-attachment: fixed;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .tool__list {
        background-attachment: fixed;
        padding-top: 85px;
        padding-bottom: 170px;
    }

    .tool__title {
        font-size: 64px;
    }
}

/* ３つの現実 */
.s-real {
    background: #000 url(../images/section03/bg-04.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding-top: 8.59vw;
}

.s-real .section__header {
    margin-bottom: 7vw;
}

@media (min-width: 992px) {
    .s-real {
        padding-top: 177px;
        background-attachment: fixed;
    }

    .s-real .section__header {
        margin-bottom: 60px;
    }
}

/* レクチャー */
.s-lecture {
    background: #000 url(../images/section04/bg-01.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding-top: 7.29vw;
}

.lecture {
    padding-top: 5.2vw;
    padding-bottom: 5.2vw;
}

.lecture__list {
    display: grid;
    grid-gap: 6.25vw;
}

.lecture__item {
}

.lecture__title {
    margin-bottom: 0;
}

.lecture .txtbox {
    padding-top: 0;
    box-shadow: 2px 4px 6px rgb(0 0 0 / 20%);
}

@media (min-width: 992px) {
    .s-lecture {
        background-attachment: fixed;
        padding-top: 140px;
    }

    .lecture {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .lecture__list {
        grid-gap: 110px;
    }

    .lecture__title {
        margin-bottom: 0;
    }

    .lecture .txtbox {
    }
}

/* 特典 */
@media (min-width: 992px) {
}

/* ４つのステップ */
.s-step4 {
    background: #000 url(../images/section05/bg-step.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding-top: 3.9vw;
}

.s-step4 .section__header {
    margin-bottom: 3.12vw;
}

@media (min-width: 992px) {
    .s-step4 {
        background-attachment:fixed;
        padding-top: 90px;
    }

    .s-step4 .section__header {
        margin-bottom: 60px;
    }
}

/* 理由 */
.s-reason {
    background: url(../images/section06/bg-reason.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding-top: 6.77vw;
}

.s-reason .section__header {
    margin-bottom: 2vw;
}

@media (min-width: 992px) {
    .s-reason {
        padding-top: 130px;
        background-attachment: fixed;
    }

    .s-reason .section__header {
        margin-bottom: 90px;
    }
}

/* 申込 */
.s-entry {
    background: url(../images/section06/bg-entry.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
}

.entry-box {
    position: relative;
    padding-bottom: 10vw;
}

.entry-box .btn-wrap {
    position: absolute;
    top: 44vw;
}

.entry-box .btn>img {
    width: calc(100vw * (780 / 1100));
}

@media (min-width: 992px) {
    .s-entry {
        background-attachment:fixed;
    }

    .entry-box {
        padding-bottom: 193px;
    }

    .entry-box .btn-wrap {
        top: 26vw;
    }

    .entry-box .btn>img {
        width: calc(100vw * (750 / 1920));
    }
}

/* 利用規約 */
.guide {
    background-color: var(--white);
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.guide__heading {
    font-size: inherit;
    font-weight: bold;
    margin-bottom: 1em;
}

.guide__body {
    white-space: pre-line;
    max-height: 10em;
    overflow-y: scroll;
    border: 1px solid;
    font-size: 90%;
    line-height: 1.5;
    padding: 0.5em;
}

@media (min-width: 992px) {
    .guide {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* QA */
.s-qa {
    background-color: rgb(18,55,91);
    background-position: center top;
    padding-bottom: 10vw;
}

.qa__list {
    margin-bottom: 0;
    padding: 0;
    display: grid;
    grid-gap: 10vw;
    list-style: none;
}

.qa__item {
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

.qa__title {
    font-size: 5vw;
    font-weight: bold;
    color: var(--white);
    background-color: rgb(255,44,0);
    padding: 1em;
    margin-bottom: 0;
    position: relative;
    padding-left: 2.7em;
}

.qa__title::before {
    content: 'Q';
    display: block;
    font-family: 'Roboto';
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: 5vw;
}

.qa__desc {
    background-color: var(--white);
    padding: 5vw;
}

.qa__desc::before {
    content: 'A';
    display: block;
    font-size: 2em;
    font-family: 'Roboto';
    font-weight: bold;
    color: rgb(18,55,91);
}

@media (min-width: 992px) {
    .s-qa {
        padding-bottom: 100px;
    }

    .qa__list {
        grid-gap: 60px;
    }

    .qa__title {
        font-size: 1.6em;
        padding-left: 2.9em;
    }

    .qa__title::before {
        left: 0.75em;
        top: 0.5em;
    }

    .qa__desc {
        padding: 50px;
    }

    .qa__desc::before {
    }
}

/* 約束 */
.s-promise {
    background: #000 url(../images/section07/bg-promise.jpg);
    background-size: 100% auto;
    background-position: center top;
    padding-bottom: 9.01vw;
}

.s-promise .section__header {
    z-index: 1;
    position: relative;
}

.s-promise .section__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgb(18,55,91);
    z-index: -1;
}

.s-promise .txtbox {
    margin-top: -20vw;
    padding-top: 20vw;
    z-index: 0;
    position: relative;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

@media (min-width: 992px) {
    .s-promise {
        background-attachment:fixed;
        padding-bottom: 173px;
    }
}

/* 追伸 */
.s-ps {
    background-color: #009038;
    padding-bottom: 9.37vw;
}

.s-ps .section__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
}

.ps__list {
}

.ps__item {
    padding: 4vw 0;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

.ps__title {
    font-size: 17vw;
    font-weight: bold;
    color: var(--white);
    text-align: center;
    margin-bottom: 0.3em;
    line-height: 1;
}

@media (min-width: 992px) {
    .s-ps {
        padding-bottom: 180px;
    }

    .ps__item {
        padding: 70px 0;
    }

    .ps__title {
        font-size: 184px;
    }
}

/* 企業理念 */
.s-hilosophy {
    background: #000 url(../images/section07-1/bg-hilosophy.jpg);
    background-size: 100% auto;
    background-position: center top;
    padding-top: 3.9vw;
}

.s-hilosophy .section__header {
    margin-bottom: 5.21vw;
}

.s-hilosophy .step4 {
    padding: 1em 0 2em;
}

.s-hilosophy .txtbox {
    background-color: rgba(255,255,255,0.8);
}

@media (min-width: 992px) {
    .s-hilosophy {
        background-attachment:fixed;
        padding-top: 100px;
    }

    .s-hilosophy .section__header {
        margin-bottom: 100px;
    }
}

/* ==========================================
 フッター
============================================*/
.c-footer {
    padding: 25px 15px;
    padding-bottom: 25vw;
    color: var(--light);
    font-size: 4vw;
    text-align: center;
    background-color: #000;
}

.c-footer-menu {
    display: grid;
    grid-gap: 0.5em;
}

.c-footer-menu a {
    color: inherit;
    text-decoration: none;
    padding: 0.2em;
}

@media (min-width: 992px) {
    .c-footer {
        padding-bottom: 25px;
        font-size: 16px;
    }

    .c-footer-menu {
        display: flex;
        justify-content: center;
    }
}
