@charset "UTF-8";

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
table,
th,
td,
a i {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

/*
  TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    *font-size: 100%;
    /*to enable resizing for IE*/
}

/*because legend doesn't inherit in IE */
legend {
    color: #000;
}

/*
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////

$$　各EC共通 基本スタイル

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
*/
/* ▼▼ 基本スタイル ▼▼ */
html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
    background: #FFF;
    color: #303030;
}

body {
    font-family: "YakuHanJP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, sans-serif;
    line-height: 1;
    font-feature-settings: "plat"1;
    -webkit-font-smoothing: subpixel-antialiased;
    min-width: 1160px;
}

/* ▼▼ 基本スタイル リンク ▼▼ */
a {
    display: inline-block;
    color: #303030;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.1s linear;
}

a:hover {
    opacity: 0.6;
    text-decoration: none;
}

/* ▼▼ 基本スタイル その他一般タグ ▼▼ */
img {
    vertical-align: bottom;
    display: inline-block;
}

hr {
    display: inline-block;
}

em {
    color: #c6383e;
}

i {
    font-style: normal;
}

::-moz-selection {
    background: #eee;
    color: #ddd;
    text-shadow: none;
}

::selection {
    background: #eee;
    color: #ddd;
    text-shadow: none;
}

/* ▼▼ 基本スタイル フォーム ▼▼ */
input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input::-webkit-input-placeholder {
    font-size: 1.2rem;
    color: #303030;
}

input:-moz-placeholder {
    font-size: 1.2rem;
    color: #303030;
}

input::-moz-placeholder {
    font-size: 1.2rem;
    color: #303030;
}

input:-ms-input-placeholder {
    font-size: 1.2rem;
    color: #303030;
}

/* ▼▼ ブレークタグ使い分け ▼▼ */
.br-pc {
    display: block;
}

.br-sp {
    display: none;
}

/* ▼▼ フローティング ▼▼ */
.floating-banner {
    position: fixed;
    width: 100%;
    height: 80px;
    bottom: 0;
    z-index: 9999;
    text-align: center;
    vertical-align: middle;
    transition: .3s;
    transform: translateY(100%);
}

.floating-banner__wrapper {
    display: inline-block;
}

.floating-banner__image--pc {
    display: inline-block;
}

.floating-banner__image--sp {
    display: none;
}

.is_show {
    transform: translateY(0);
}

/*
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////

$$ 各EC共通 特集用 基本スタイル Media Queries for smartphone

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 736px) {
    body {
        min-width: initial;
    }

    a:hover {
        opacity: 1;
    }

    input::-webkit-input-placeholder {
        font-size: 3.5vw;
    }

    input:-moz-placeholder {
        font-size: 3.5vw;
    }

    input::-moz-placeholder {
        font-size: 3.5vw;
    }

    input:-ms-input-placeholder {
        font-size: 3.5vw;
    }

    /* ▼▼ ブレークタグ使い分け ▼▼ */
    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }

    .only-txt--pc {
        display: none;
    }

    /* ▼▼ フローティング ▼▼ */
    .floating-banner {
        position: fixed;
        width: 100vw;
        height: auto;
        bottom: 0;
        z-index: 2;
        text-align: center;
    }

    .floating-banner__image--pc {
        display: none;
    }

    .floating-banner__image--sp {
        display: inline-block;
        width: 100%;
        height: auto;
    }
}

/*
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////

$$　各EC共通 モジュール

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
*/
/* ▼▼ 要素のサイズ・配置基本設定 @extend用 ▼▼ */
.w-1160__m-0auto,
.global-header-shoulder,
.global-header-logo,
.global-header-menu,
.global-header-usp,
.footer-usp__list,
.footer-menu-wrapper,
.footer-switch__list,
.footer-world__list {
    box-sizing: border-box;
    width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
}

.flexbox__jc-sb__ai-center,
.global-header-shoulder,
.global-header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexbox__jc-center,
.footer-sns__list,
.footer-copyright {
    display: flex;
    justify-content: center;
}

.flexbox__jc-center-ai-center,
.footer-sns__link,
.footer-sns__item--twitter,
.footer-switch__list,
.footer-world__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexbox__fd-column__ai-center,
.chapter-header,
.footer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ▼▼ タイプキット設定 @extend用 ▼▼ */
/* ▼　brandon-grotesque ▼ */
.type-kit__brandon-grotesque--300--italic {
    font-family: "brandon-grotesque";
    font-weight: 300;
    font-style: italic;
}

.type-kit__brandon-grotesque--400--italic {
    font-family: "brandon-grotesque";
    font-weight: 400;
    font-style: italic;
}

.type-kit__brandon-grotesque--500 {
    font-family: "brandon-grotesque";
    font-weight: 500;
}

.type-kit__brandon-grotesque--500--italic {
    font-family: "brandon-grotesque";
    font-weight: 500;
    font-style: italic;
}

.type-kit__brandon-grotesque--700--italic {
    font-family: "brandon-grotesque";
    font-weight: 700;
    font-style: italic;
}

/* ▼ TUBゴシック ▼ */
.type-kit__tbudgothic-std--400,
.footer-usp__item-txt,
.footer-menu__heading {
    font-family: "tbudgothic-std";
    font-weight: 400;
}

.type-kit__tbudgothic-std--700,
.more-btn:before,
.chapter-header__ja,
.footer-header__ja,
.global-header-menu__nav-ja,
.global-header-usp__item,
.global-header-usp__item-txt em {
    font-family: "tbudgothic-std";
    font-weight: 700;
}

/* ▼▼ 汎用ボタン設定（もっと見る）@extend用 ▼▼ */
.more-btn {
    display: flex;
    align-items: center;
}

.more-btn:before {
    content: "もっと見る";
    box-sizing: border-box;
    display: inline-block;
    width: 340px;
    height: 60px;
    font-size: 1.6rem;
    text-align: center;
    border-top: 2px solid #303030;
    border-bottom: 2px solid #303030;
    border-left: 2px solid #303030;
    border-right: none;
    padding-top: 20px;
    padding-left: 70px;
    border-radius: 30px 0 0 30px/30px 0 0 30px;
}

.more-btn:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f105";
    box-sizing: border-box;
    display: inline-block;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    padding-top: 15px;
    text-align: center;
    border-top: 2px solid #303030;
    border-bottom: 2px solid #303030;
    border-right: 2px solid #303030;
    border-radius: 0 30px 30px 0/0 30px 30px 0;
}

/* ▼▼ 汎用見出し設定（トップページ各セクション大見出し）@extend用 ▼▼ */
.chapter-header {
    margin-bottom: 30px;
    text-align: center;
}

.chapter-header__en,
.footer-header__en {
    font-family: "brandon-grotesque";
    font-weight: 300;
    font-style: italic;
    display: block;
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.chapter-header__ja,
.footer-header__ja {
    font-size: 1.3rem;
}

/* ▼▼ 汎用アイコン設定（角丸長方形）@extend用 ▼▼ */
.icon-rounded-corners {
    display: inline-block;
    font-size: 1.4rem;
    height: 20px;
    line-height: 20px;
    padding-right: 20px;
    padding-left: 20px;
    border: 2px solid #303030;
    border-radius: 17px 17px 17px 17px;
}

/*
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////

$$ 各EC共通 特集用 基本スタイル Media Queries for smartphone

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 736px) {

    /* ▼▼ 要素のサイズ・配置基本設定 @extend用 ▼▼ */
    .w-1160__m-0auto,
    .global-header-shoulder,
    .global-header-logo,
    .global-header-menu,
    .global-header-usp,
    .footer-usp__list,
    .footer-menu-wrapper,
    .footer-switch__list,
    .footer-world__list {
        padding: 0;
    }

    /* ▼▼ 汎用見出し設定（トップページ各セクション大見出し）@extend用 ▼▼ */
    .chapter-header {
        margin-bottom: 5vw;
    }

    .chapter-header__en,
    .footer-header__en {
        width: 100vw;
        font-size: 9vw;
        margin-bottom: 2vw;
    }

    .chapter-header__ja,
    .footer-header__ja {
        font-size: 3vw;
    }

    /* ▼▼ 汎用ボタン設定（もっと見る）@extend用 ▼▼ */
    .more-btn {
        display: flex;
        align-items: center;
    }

    .more-btn:before {
        width: 76vw;
        height: 11.5vw;
        font-size: 3.5vw;
        text-align: center;
        padding-top: 3.5vw;
        padding-left: 11vw;
        border-right: none;
    }

    .more-btn:after {
        font-size: 5vw;
        width: 12vw;
        height: 11.5vw;
        padding-top: 2.5vw;
        padding-left: 1vw;
        text-align: center;
    }

    /* ▼▼ 汎用アイコン設定（角丸長方形）@extend用 ▼▼ */
    .icon-rounded-corners {
        font-size: 2.5vw;
        height: 4vw;
        line-height: 4vw;
        padding-right: 3vw;
        padding-left: 3vw;
        border: 1px solid #303030;
        border-radius: 3.4vw;
    }
}


/*
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////

$$ Pickup 共通マージン

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
*/


.pickup {
    padding-top: 100px;
}

@media screen and (max-width: 736px) {
.pickup {
    padding-top: 6vw;
}
}