@charset "UTF-8";

/*Butler*/

@font-face {
    font-family: 'Butler';
    src: url(../font/Butler_Ultra_Light.otf);
    font-weight: 100;
}

@font-face {
    font-family: 'Butler';
    src: url(../font/Butler_Light.otf);
    font-weight: 200;
}

@font-face {
    font-family: 'Butler';
    src: url(../font/Butler_Regular.otf);
    font-weight: 300;
}

@font-face {
    font-family: 'Butler';
    src: url(../font/Butler_Medium.otf);
    font-weight: 400;
}

@font-face {
    font-family: 'Butler';
    src: url(../font/Butler_Bold.otf);
    font-weight: 500;
}

@font-face {
    font-family: 'Butler';
    src: url(../font/Butler_ExtraBold.otf);
    font-weight: 600;
}

@font-face {
    font-family: 'Butler';
    src: url(../font/Butler_Black.otf);
    font-weight: 700;
}

/*ダーツフォント*/

@font-face {
    font-family: 'dartsfont';
    src: url(../font/dartsfont.ttf);
}



/******************************************************************************
*
* [共通]初期設定
*
******************************************************************************/

* {
    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.8;
    font-weight: 400;
    color: #ffffff;
    background: #14141E;
}

/*段落・フォント*/

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

.font-gothic {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN", apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
}

.en {
    font-family: 'Butler', 'Arial', sans-serif;
    font-weight: 300;
}

.df {
    font-family: "dartsfont", 'Noto Serif JP', Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}


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

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

/*全体*/

article.content_article {
    padding: 80px 0;
}

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: 1250px;
    margin: 0 auto;
}

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

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

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

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

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

/*一般*/

small {
    font-size: 80%;
}

strong {
    font-weight: 900;
}

/*見出し(2)*/

.common_h2 {
    text-align: center;
    margin-bottom: 80px;
}

.common_h2 h2 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 300;
}

.common_h2 .sub {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.common_h2 .name {
    background: #fff;
    color: #14141e;
    width: 160px;
    margin: auto;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 5px 0 0;
    margin-bottom: 10px;
}

.common_h2.l h2 {
    font-size: 100px;
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    left: 10px;
}

.common_h2.l .sub {
    font-size: 24px;
}

.common_h2.l .name {
    width: 390px;
    font-size: 26px;
    padding: 6px 0 0;
    margin-bottom: 30px;
    transform: skewX(-15deg)
}

.common_h2.l .name span {
    display: block;
    transform: skewX(15deg)
}

/*---------------------
* 共通ボタン
---------------------*/

.common_btn {
    width: 320px;
    margin: auto;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: ease .2s;
    background: #fff;
}

.common_btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #d2b998;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

.common_btn:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.common_btn a {
    display: block;
    color: #14141e;
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 25px 0;
    position: relative;
    z-index: 3;
}

.common_btn a::before {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    border-top: solid 1px #14141e;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
}




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

.lp_img img {
    display: block;
}

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

.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;
}


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

/*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: 12px;
    }

    p {
        font-size: 12px;
    }

    /*見出し(2)*/

    .common_h2 {
        margin-bottom: 40px;
    }

    .common_h2 h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .common_h2 .sub {
        font-size: 11px;
    }

    .common_h2 .name {
        width: 160px;
        font-size: 18px;
        padding: 5px 0 0;
        margin-bottom: 10px;
    }

    .common_h2.l h2 {
        font-size: 74px;
        left: 8px;
    }

    .common_h2.l .sub {
        font-size: 16px;
    }

    .common_h2.l .name {
        width: 260px;
        font-size: 20px;
        padding: 5px 0 0;
        margin-bottom: 20px;
    }

    /*---------------------
    * 共通ボタン
    ---------------------*/

    .common_btn {
        width: 220px;
    }

    .common_btn a {
        font-size: 12px;
        letter-spacing: 0.1em;
        padding: 20px 0;
    }

    .common_btn a::before {
        width: 30px;
    }

    /*---------------------
    * 浮遊背景(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: 40px 0;
    }

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

    ._pc {
        display: none !important;
    }

    ._sp {
        display: block !important;
    }

}

/*375px以下*/

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

/*360px以下*/

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

/*330px以下*/

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