@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");
@import url(default.css);
@import url(utility.css);
@import url(animate.css);
@import url(header.css);
@import url(footer.css);

/* ==================================
    共通箇所
================================== */

html {
    font-size: 62.5%;
}

body {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #fafafa;
    font-family: "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    color: black;
    letter-spacing: 0px;
}

#wrapper {
    min-width: 100%;
    height: 100%;
}

.mincho {
    font-family: "Noto Serif JP", "游明朝", YuMincho medium, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #040404;
    text-decoration: none;
}

a:hover {
    opacity: .8;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-decoration: underline;
}

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

.sp_cnt {
    display: none;
}

object {
    pointer-events: none;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .sp_cnt {
        display: block;
    }
    .pc_cnt {
        display: none;
    }
}


/* ==================================
    MAIN CONTENTS
================================== */

.contents_box {
    position: relative;
    max-width: 1305px;
    width: 90%;
    margin: 0 auto;
    z-index: 2;
}

.flex_box_sb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex_box_fs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex_box_cnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex_box_fd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.more_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 60px;
    border-radius: 3px;
    border: none;
    background-color: #f9423a;
    font-family: "Noto Sans JP", "游ゴシック", "メイリオ", "ヒラギノ角ゴ Pro W3", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.7px;
    color: #fafafa;
    text-decoration: none;
}

.more_btn:after {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    width: 0%;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    background-color: #efefef;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.more_btn:hover {
    opacity: 1;
    text-decoration: none;
}

.more_btn:hover:after {
    width: 100%;
}

.movie_box {
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.movie_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.online_shop_bnr {
    position: fixed;
    max-width: 65px;
    width: 100%;
    top: 35%;
    right: 0;
    z-index: 100;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.online_shop_bnr:hover {
    top: 36%;
}

.fixed_btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.fixed_btn_inner {
    align-items: center;
    width: 100%;
}

.fixed_btn .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed_btn .btn:hover {
    text-decoration: none;
}

.fixed_btn .buttom_shop {
    width: calc(678/768*100vw);
    height: 14vw;
}

.fixed_btn .buttom_pageTop {
    width: 11.71875vw;
    height: 14vw;
}

.fixed_btn .sp_online_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #f9423a;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    color: #fafafa;
}

.fixed_btn .page_top_sp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #000;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.7px;
    color: #fafafa;
}

@media screen and (max-width: 768px) {
    .online_shop_bnr {
        display: none;
        position: fixed;
        max-width: 65px;
        width: 100%;
        top: 35%;
        right: 0;
        z-index: 100;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    .online_shop_bnr:hover {
        top: 36%;
    }
    .fixed_btn {
        display: none;
    }
    .page_top {
        display: none;
    }
    .online_shop_bnr {
        width: 8.46354vw;
    }
    .scroll {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        -webkit-overflow-scrolling: touch;
    }
    .scroll:before {
        content: "※横にスクロールします。";
        font-size: 82.5%;
        display: block;
        margin: 0px 0 5px;
    }
    .scroll:after {
        content: "※横にスクロールします。";
        font-size: 82.5%;
        display: block;
        margin: 5px 0 20px;
    }
    .scroll table {
        max-width: 100%;
    }
    .scroll table th[scope="col"] {
        padding: 15px 15px;
    }
    .scroll table th[scope="row"] {
        padding: 15px 10px;
    }
    .scroll table td {
        padding: 15px;
    }
}


/* ledlenser
---------------------------------------- */

.ledlenser {
    padding: 9px 0;
    background: #edf4f5;
    text-align: right;
    line-height: 1;
}

.ledlenser p {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


/* ----------------------------------------
	notice
---------------------------------------- */

#notice {
    position: relative;
    padding: 0px 0 0 0;
    background: #f2f2f2;
    z-index: 100;
}

#notice p {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    line-height: 40px;
}

#notice p time {
    padding: 0 2.0em 0 0;
}

@media screen and (max-width: 768px) {
    #notice {
        padding: 10px 0;
    }
    #notice p {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    #notice p time {
        display: block;
        padding: 0 0 5px 0;
    }
}