@charset "UTF-8";

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Noto Serif JP', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    /*自動文字詰め*/
    font-feature-settings: "palt";
    /*英字の折返し*/
    word-break: break-all;
}

html {
    overflow: auto;
}

body {
    overflow: hidden;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    color: #1a1a1a;
    background: #fff;
}

/*段落・フォント*/

p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Noto Serif JP', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif
}

.font-g {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
}


/******************************************************************************
*
* [共通]動画背景
*
******************************************************************************/

#header {
    position: relative;
    height: 100vh;
    text-align: center;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

/* ローディングアイコン設定 */

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear {
    display: none;
}

/* youtube設定 */

#youtube-area {
    position: fixed;
    z-index: 1;
    /*最背面に設定*/
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
    animation-name: PageAnimeAppear;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250vh;
    height: 100vw;
    /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/

#youtube-mask {
    position: absolute;
    z-index: 2;
    /*下から2番目に表示*/
    top: 0;
    width: 100%;
    height: 100%;
}




/******************************************************************************
*
* [共通]基本設定
*
******************************************************************************/

/*---------------------
* コンテナ関係
---------------------*/

/*全体*/

article.content_article {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

article.content_article.none_pt {
    padding-top: 0;
}

article.content_article.none_pb {
    padding-bottom: 0;
}

/*内包*/

.wrap {
    width: 960px;
    margin: 0 auto;
}

.middle_wrap {
    width: 1400px;
    margin: 0 auto;
}

/*---------------------
* 背景
---------------------*/

/*要素が見えたら背景画像を浮遊化*/

.fixed_bg {
    background-position: top center;
    background-size: 100vw;
    background-repeat: no-repeat;
}

.fixed_bg.on {
    background-attachment: fixed;
}

/*---------------------
* テキスト関係
---------------------*/

h2.ch2 {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 80px;
}

/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

/*文字サイズ*/

.fsb {
    font-size: 150%;
}

.fsb2 {
    font-size: 200%;
}

/*カラー*/

.tc0 {
    color: #486886;
}

.tc1 {
    color: #ff0062;
    color: #d3401d;
    color: #980000;
}

.tc2 {
    color: #53c0bd;
    color: #0065ad;
    color: #0f5779;
}

.tc3 {
    color: #f29707;
    color: #ce9b2f;
}

.tc4 {
    color: #05c756;
    color: #018f6d;
}

.tc5 {
    color: #6e3a87;
    color: #573b77;
}

/*マーカー*/

.tm1 {
    background: linear-gradient(transparent 70%, #ffa3d1 70%);
}

.tm2 {
    background: linear-gradient(transparent 70%, #72edff 70%);
}

.tm3 {
    background: linear-gradient(transparent 70%, #ffe571 70%);
}

.tm4 {
    background: linear-gradient(transparent 70%, #b6ebb8 70%);
}

/*改行(SP時のみ改行)*/

.brSp {
    display: none;
}

/*---------------------
* 画像関係
---------------------*/

.lp_img img {
    display: block;
}

/*枠付き*/

.lp_img.be_border img {
    border: solid 1px #e0e0e0;
}

/*画像補足情報*/

figure figcaption {
    text-align: right;
    font-size: 11px;
    line-height: 2;
    color: #666;
}

/*---------------------
* 動画(埋め込み用)
---------------------*/

.mov {
    width: 100%;
    height: auto;
    position: relative;
}

.mov::before {
    content: "";
    display: block;
    padding-top: 56.2%;
}

.mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*---------------------
* 表示関係
---------------------*/

._pc {}

._sp {
    display: none !important;
}


/******************************************************************************
*
* [共通]フッター
*
******************************************************************************/

/*追従ボタン*/

#fixed_btn {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 15px 0;
    z-index: 10;
}

#fixed_btn a {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

/*フッター*/

footer {
    background: #000;
    padding: 0px 0 200px;
    text-align: center;
    position: relative;
}

footer.w {
    background: #fff;
}

footer p.copy {
    color: #ccc;
    font-size: 11px;
}

footer.w p.copy {
    color: #999;
}

footer p.tokushoho a {
    font-size: 14px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.5s;
}

footer p.tokushoho a:hover {
    opacity: 0.7;
}


/******************************************************************************
*
* [共通]ブラウザ別対応
*
******************************************************************************/

/*Firefox*/

@-moz-document url-prefix() {}

/*Safari*/

@media screen and (-webkit-min-device-pixel-ratio:0) {

    ::i-block-chrome,
    .selector {}
}

/*IE10*/

@media all and (-ms-high-contrast:none) {}

/*IE11*/

@media all and (-ms-high-contrast:none) {

    *::-ms-backdrop,
    .selector {}
}

/*Edge*/

@supports (-ms-ime-align:auto) {}


/******************************************************************************
*
* [共通]レスポンシブ対応
*
******************************************************************************/

/*1920px以下*/

@media only screen and (max-width: 1920px) {}

/*1400px以下*/

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

    /*---------------------
    * [共通]基本設定
    ---------------------*/

    .middle_wrap {
        width: 92%;
    }

}

/*960px以下*/

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

    /*---------------------
    * [共通]基本設定
    ---------------------*/

    .wrap {
        width: 92%;
    }

}

/*644px以下*/

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

    /*---------------------
    * [共通]背景/全体テキスト
    ---------------------*/

    body {
        font-size: 13px;
        line-height: 1.6;
    }

    p {
        font-size: 13px;
        line-height: 1.6;
    }

    #youtube {
        width: 350vh;
        height: 300vw;
    }

    /*---------------------
    * 浮遊背景(iOS Safari用)
    ---------------------*/

    _::-webkit-full-page-media,
    _:future,
    :root .fixed_bg.on {
        /*背景の消去*/
        background-image: none !important;
        position: relative;
        /*状況に応じて変更*/
        overflow: hidden;
        z-index: -1;
    }

    _::-webkit-full-page-media,
    _:future,
    :root .fixed_bg.on:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100vw;
    }

    _::-webkit-full-page-media,
    _:future,
    :root .fixed_bg.on .wrap {
        position: relative;
    }

    _::-webkit-full-page-media,
    _:future,
    :root selector.fixed_bg.on:before {
        /*個別に背景設定*/
        background-image: url(../images/header_img.jpg);
    }

    /*---------------------
    * [共通]コンテナ関係
    ---------------------*/

    article.content_article {
        padding: 30px 0;
    }

    /*---------------------
    * [共通]テキスト関係
    ---------------------*/

    h2.ch2 {
        font-size: 16px;
        letter-spacing: 0.05em;
        margin-bottom: 30px;
    }


    .fsb {
        font-size: 135%;
    }

    .fsb2 {
        font-size: 150%;
    }

    .brRes {
        display: none;
    }

    .brSp {
        display: block;
    }

    /*スマホ用テキストサイズ*/

    .sptxt1 {
        font-size: 100%;
    }

    .sptxt2 {
        font-size: 110%;
    }

    .sptxt3 {
        font-size: 120%;
    }

    .sptxt4 {
        font-size: 130%;
    }

    .sptxt5 {
        font-size: 140%;
    }

    /*---------------------
    * [共通]画像関係
    ---------------------*/

    figure figcaption {
        text-align: left;
        font-size: 10px;
        line-height: 1.5;
        margin-top: 5px;
    }

    /*---------------------
    * [共通]表示関係
    ---------------------*/

    ._pc {
        display: none !important;
    }

    ._sp {
        display: block !important;
    }

    /*---------------------
    * [共通]フッター
    ---------------------*/

    /*追従ボタン*/

    #fixed_btn {
        padding: 15px 0;
    }

    /*フッター*/

    footer {
        padding: 0 0 150px;
    }

    footer p.copy {
        font-size: 10px;
    }

    footer p.tokushoho a {
        font-size: 13px;
    }

}

/*375px以下*/

@media only screen and (max-width: 375px) {}

/*360px以下*/

@media only screen and (max-width: 360px) {}

/*330px以下*/

@media only screen and (max-width: 330px) {}
