@charset "UTF-8";

/* 基本色 */
:root {
    --main-color: #7B9CFF;
    --accent-color: #E84F81;
    --dark-main-color: #1083FF;
    --text-bright-color: #fff;
    --icon-color: #fff;
    --icon-bk-color: #ddd;
    --gray-color: #ddd;
    --show-btn-color: #FFEA96;
    --sold-btn-color: #FFB59A;
    --paid-btn-color: #89E88B;
    --logistics_btn_color: #A3DCFF;
    --else2_btn_color: #CC89E8;
    --large-width: 1000px;
    --middle-width: 800px;
}

/* 基本設定：　フォントサイズ */
@media (max-width: 599px) {
    :root {
        font-size: 14px;
    }
}

@media (min-width: 600px) and (max-width: 799px) {
    :root {
        font-size: 16px;
    }
}

@media (min-width: 800px) {
    :root {
        font-size: 18px;
    }
}

/* 基本設定：　ページ全体 */
body {
    margin: 0;
    font-family: 'メイリオ',
        'Hiragino Kaku Gothic Pro',
        sans-serif;
}

/* ヘッダー */
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
}

/*           HIDDEN              */
.hidden {
    /*  !important を付けないとflexに負ける  */
    display: none!important;
}

/* hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-width: 450px;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(/images/hero.png);
    background-position: center;
    background-size: cover;
    color: #fff;
    color: var(--text-bright-color);
    text-align: center;
}

/* hero compact */
.hero.compact {
    height: 450px;
    min-height: 0;
    background-position: right bottom;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(/images/hero_compact.png);
}

.hero h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15vw;
    letter-spacing: 0.2rem;
    margin-left:0.2em;
}

.hero p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 115px;
    }

    .hero p {
        font-size: 24px;
    }
}



.nohero header {
    position: static;
    border-bottom: solid 1px #ddd;
    border-bottom: solid 1px var(--gray-color);
}

/* アレンジ：　ヘッダーを画面上部に固定 */
.head-fixed,
.nohero .head-fixed {
    position: fixed;
}

.nohero .head-fixed + * {
    margin-top: 70px;
}

/* ヘッダーA：　サイト名 */
.headA {
    display: inline-block;
    line-height: 70px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #7B9CFF;
    background-color: var(--main-color);
    color: #fff;
    color: var(--text-bright-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    text-decoration: none;
}

/* ヘッダーB：　ナビゲーションメニュー */
/* user name & sign out：　 */
.user_name_box {
    /*padding-top: 10px;*/
    padding-left: 3px;
}
.logout a {
    color: #d03c56;
    text-decoration: none;
    margin-left: 10px;
}

.logout span {
    margin-right: 5px;
}

.logout .icon {
    padding: 3px;
    border-radius: 50%;
    background-color: #d03c56;
    color: #fff;
    color: var(--icon-color);
}

.headB_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.headB_nav a {
    display: block;
    padding: 15px;
    color: inherit;;
    font-size: 12px;
    text-decoration: none;
}

.headB_nav a:hover {
    background-color: rgba(0,0,0,0.3);
}

/* 横幅が768px以上の際に適用する */
@media (min-width: 768px) {
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }

    .headB_nav ul {
        display: flex;
    }
}

/* ヘッダーC：　トグルボタン */
/* 横幅が767px以下の際に適用する */
@media (max-width: 767px) {
    header .container-small {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .headC {
        margin-right: 10px;
        padding: 0;
        border: none;
        outline: none;
        background: none;
        font-size: 28px;
        opacity: 0.5;
        cursor: pointer;
    }

    .headC:hover {
        opacity: 0.3;
    }

    .headB_nav {
        display: none;
    }
}
/* 横幅が768px以上の際に適用する */
@media (min-width: 768px) {
    .headC {
        display: none;
    }

    .headB_nav {
        display: block !important;
    }
}

/* フッター */
footer {
    color: #fff;
    color: var(--text-bright-color);
    background-color: #1083FF;
    background-color: var(--dark-main-color);
}

footer .container {
    padding: 40px 20px;
}

/* 横幅が768px以上の際に適用する */
@media (min-width: 768px) {
    footer .container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }

    .footA {
        flex: 0 0 40%;
    }

    .footB {
        flex: 0 0 60%;
    }

    .footC {
        flex: 0 0 100%;
    }
}

/* フッターA：　サイト情報 */
.footA {
    margin-bottom: 30px;
}

.footA h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    letter-spacing: 0.2em;
}

.footA p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.footA a {
    color: inherit;
    text-decoration: none;
}

/* フッターB：　フッターメニュー */
.footB div {
    margin-bottom: 20px;
}

.footB h3 {
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: solid 1px currentColor;
    font-size: 14px;
}

.footB ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footB a {
    display: block;
    padding: 5px;
    color: inherit;;
    font-size: 12px;
    text-decoration: none;
}

.footB a:hover {
    background-color: rgba(0,0,0,0.3);
}

/* 横幅が768px以上の際に適用する */
@media (min-width: 768px) {
    .footB {
        display: flex;
    }

    .footB div {
        flex: 1;
    }

    .footB div:not(:first-child) {
        margin-left: 40px;
    }
}

/* フッターC：　コピーライト */
.footC {
    font-size: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* フッターD：　SNSメニュー */
.footD {
    margin-top: 20px;
}
.footD ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footD a {
    display: block;
    margin-right: 8px;
    padding: 0;
    color: inherit;;
    font-size: 16px;
    text-decoration: none;
    border: solid 1px currentColor;
    width: 2em;
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
}

.footD a:hover {
    background-color: rgba(0,0,0,0.3);
}
/*
*+++++++++++++++++++++++++++++++++++++*
*           ここまでlayout             *
*+++++++++++++++++++++++++++++++++++++*
*/

.error_list li {
    color: #E84F81;
    color: var(--accent-color);
}

/*
*+++++++++++++++++++++++++++++++++++++*
*           Loadind Message           *
*+++++++++++++++++++++++++++++++++++++*
*/
#loading {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.8;
}
#loading .loadingMsg {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding-top: 140px;
    background: url("../images/loading.gif") center center no-repeat;
}


/* body shape nav */
.body_shape_nav {
    max-width: 1000px;
    max-width: var(--large-width);
}
.body_shape_nav .body_shape_list {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    justify-content: start;
    /*align-items: flex-start;*/
    align-content: space-around;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}
.body_shape_nav .body_shape_list .body_shape_items {
    flex: 0 0 120px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

/* secondly nav */
.secondly_nav {
    padding-top: 10px;
    text-align: center;
}
.secondly_nav h3 {
    font-size: 16px;
}

.secondly_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.secondly_nav .nav_item {
    display: block;
    margin: 0 10px;
}

.secondly_nav .nav_item a {
    display: block;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: 0.15s;
    text-decoration: none;
    padding: 5px;
    margin-bottom: 10px;
}

.secondly_nav .nav_item.active a {
    background-color: #D03C56;
    color: #fff;
    color: var(--text-bright-color);
    opacity: 0.5;
}

.secondly_nav .nav_item a:hover {
    background-color: #D03C56;
    color: #fff;
    color: var(--text-bright-color);
}

/* 横幅が768px以上の際に適用する */
@media (min-width: 768px) {
    .secondly_nav {
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }

    .secondly_nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .secondly_nav .nav_item {
        flex: 0 0 250px;
    }
}
/*
.secondly_nav {
    padding-top: 10px;
    text-align: center;
}
.secondly_nav h3 {
    font-size: 16px;
}

.secondly_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-content: space-around;
    margin-bottom: 5px;
}

.secondly_nav .nav_item {
    display: block;
    margin: 0 10px;
    flex: 1;
}

.secondly_nav .nav_item a {
    display: block;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: 0.15s;
    text-decoration: none;
    padding: 5px;
    margin-bottom: 10px;
}

.secondly_nav .nav_item.active a {
    background-color: #D03C56;
    color: #fff;
    color: var(--text-bright-color);
    opacity: 0.5;
}

.secondly_nav .nav_item a:hover {
    background-color: #D03C56;
    color: #fff;
    color: var(--text-bright-color);
}
*/
