@charset "UTF-8";

/*
# 共通項目
・見出し
・テキスト（フォント）
・ボタン
・アイコン
・ヘッダー
・フッター

# css共通ルール
・各ページで差分が出るものは各ページのcssで上書きする
・各ページcssではセクションごとに「sec_01」、「sec_02」と順番にクラスを振り分け、それらの下層のcssを設定する
・テキスト、ボタンなど種類のあるものは「text--◯◯」、「btn--◯◯」（◯◯には種類名が入る）のクラス名にする
*/
/* html {
    visibility: hidden;
}
html.wf-active, html.loading-delay {
    visibility: visible;
} */

.sp_only, .sp_only--header {
    display: none !important;
}
.pc_only, .pc_only--header {
    display: block !important;
}

*, *::before,*::after {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}
li {
    list-style: none;
}
img {
    width: 100%;
}
a:link,a:visited,a:hover,a:active {
    text-decoration: none;
    color: #121212;
}
/* 見出し */
.heading_03 {
    font-weight: 100;
    font-family: linotype-didot, serif;
    font-size: 5.4rem;
    margin: 0 0 13px;
    letter-spacing: 1px;
}
.heading_04 {
    font-family: ryo-text-plusn, serif;
    font-size: 1.8rem;
    margin: 0 0 15px;
    line-height: 1.6;
    letter-spacing: 2px;
    font-weight: 400;
}
.heading_05 {
    font-weight: 400;
}
/* /見出し */
/* テキスト（フォント）*/
.text--eng {
    font-family: linotype-didot-headline, serif;
    font-size: 2.6rem;
    margin: 0 0 15px;
    letter-spacing: 1px;
}
.text--tiny_eng {
    font-family: montserrat, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: normal;
}
.text--disp {
    font-size: 1.3rem;
    line-height: 2;
    font-weight: normal;
    letter-spacing: 1px;
    }
.text--tiny_gray {
    font-family: montserrat, sans-serif;
    font-size: 1.2rem;
    color: #8e8e8e;
    letter-spacing: 2px;
    font-weight: normal;
}

.heading_04 .text__reg {
    font-size: 1.2rem;
    vertical-align: 16px;
}
.heading_04 .text_little_top {
    font-size: 0.8rem;
    vertical-align: 11px;
}
.text_caution {
    font-size: 1rem;
	vertical-align: 11px;
}
.heading_top_text .text__reg {
    font-size: 1.2rem;
    vertical-align: 6px;
}
.heading_05 .text__reg {
    font-size: 1.4rem;
    vertical-align: 6px;
}
.text--disp .text__reg {
    font-size: 0.8rem;
    vertical-align: 4px;
}
.border_text .text__reg {
    font-size: 0.8rem;
    vertical-align: 4px;
}


/* /テキスト（フォント） */

/* グラデーションボタン */
.btn--grad{
    position:relative;
    display: inline-block;
    letter-spacing: 1px;
    overflow: hidden;
    border-left: 1px solid #e28d93;
    border-right: 1px solid #f8dab5;
    padding: 12px 43px;
}
.btn--grad::before, .btn--grad::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, #e28d93, #f8dab5);
    position: absolute;
    left: 0;
    width: 100%;
}
.btn--grad::before {
    top: 0;
}
.btn--grad::after {
    bottom: 0;
}
.btn--grad .btn--grad__bg{
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, #e28d93, #f8dab5);
    opacity:0;
    transition:opacity .7s;
    position: absolute;
    top:0;
    left:0;
    z-index: 1;
}
.btn--grad .btn--grad__text{
    font-size: 1.2rem;
    font-family: linotype-didot-headline, serif;
}
.btn--grad .btn--grad__arrow {
    position: absolute;
    top: 37%;
    right: 6%;
    width: 4px;
    height: 8px;
    z-index: 1;
    background: url("../img/common/footer_icon/btn_arrow.png") no-repeat;
    background-size: contain;
}
.btn--grad:hover .btn--grad__bg{
    opacity:1;
}
.btn--grad:hover .btn--grad__text{
    transition:opacity .7s;
    color:#fff;
    position: relative;
    z-index: 2;
}

/* /グラデーションボタン */

/* グレーボタン */
.btn--gray{
    display: inline-block;
    letter-spacing: 1px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    padding: 3px 2px;
    min-width: 105px;
}
.btn--gray__text{
    font-size: 1.2rem;
    padding: 5px 10px;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}

/* /グレーボタン */
/* ページトップボタン */

.arrowWrap {
    position: fixed;
    right: 14px;
    bottom: 23px;
    height: 180px;
    z-index: 2;
}

.arrowWrap .arrowInner .text--tiny_gray {
    font-size: 1.2rem;
    text-align: end;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #767676;
    position: relative;
    top: 33px;
}

.arrowWrap .arrow {
    width: 1px;
    height: 34px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.arrowWrap .arrow::before {
    content: '';
    width: 1px;
    height: 100px;
    margin: 50px auto 0;
    background-color: #767676;
    position: absolute;
    top: -50px;
    left: 0;
}
.arrowWrap:hover .arrow::before {
    top: 50px;
    -webkit-animation: arrow 2s ease 0s infinite normal;
    animation: arrow 2s ease 0s infinite normal;
}

@keyframes arrow {
    0% {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    }

    60% {
    -webkit-transform: translate3d(50%, -100px, 0);
    transform: translate3d(50%, -100px, 0);
    }

    100% {
    -webkit-transform: translate3d(50%, -100px, 0);
    transform: translate3d(50%, -100px, 0);
    }
}
/* /ページトップボタン */
/* アイコン */
.youtube_icon {
    width: 29px;
    height: 29px;
    background: url("../img/common/sns_icon/youtube_icon.png") no-repeat;
    background-size: cover;
    display: inline-block;
}
.insta_icon {
    width: 28px;
    height: 28px;
    background: url("../img/common/sns_icon/insta_icon.png") no-repeat;
    background-size: cover;
    display: inline-block;
}
.fb_icon {
    width: 29px;
    height: 29px;
    background: url("../img/common/sns_icon/fb_icon.png") no-repeat;
    background-size: cover;
    display: inline-block;
}
.line_icon {
    width: 29px;
    height: 29px;
    background: url("../img/common/sns_icon/line_icon.png") no-repeat;
    background-size: cover;
    display: inline-block;
}
.mypage_icon {
    width: 23px;
    height: 22px;
    background: url("../img/common/header_icon/mypage_icon.png") no-repeat;
    background-size: cover;
    display: inline-block;
}
.cart_icon {
    width: 21px;
    height: 21px;
    background: url("../img/common/header_icon/cart_icon.png") no-repeat;
    background-size: cover;
    display: inline-block;
}
.contact_icon {
    width: 20px;
    height: 15px;
    background: url("../img/common/header_icon/contact_icon.png") no-repeat;
    background-size: cover;
    display: inline-block;
}
/* /アイコン */

/* ヘッダー */
.header {
    background: #fff;
    display: flex;
    padding: 16px 7% 20px;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    top: 0;
    z-index: 10;
}
.header .heading_01 {
    width: 16%;
    position: absolute;
    top: 2.8rem;
}
.header .nav {
    width: 100%
}
.header .heading_01 img {
    width: 100%;
    max-width: 184px;
}
/* ヘッダーナビ上 */
.top_nav {
    /* margin: 3px 0 9px; */
    margin: 2px 0 11px;
    display: flex;
    justify-content: flex-end;
    font-size: 1.1rem;
    align-items: center;
    letter-spacing: 1.5px;
}
.top_nav li {
    transition: .5s;
    margin-right: 1.9%;
}
.top_nav li:not(:nth-child(5)):hover {
    opacity: .4;
}
.top_nav li:nth-last-of-type(1),
.top_nav li:nth-last-of-type(2),
.top_nav li:nth-last-of-type(3) {
    margin-top: 2px;
}
.top_nav li:nth-last-of-type(1) {
    margin-right: 0.5%;
}
.top_nav li:nth-last-of-type(2) {
    margin-right: 1.7%;
}
.top_nav li:nth-last-of-type(3) {
    margin-right: 1.7%;
}
/* /ヘッダーナビ上 */
/* ヘッダーナビ下 */
.bottom_nav {
    font-family: ryo-text-plusn, serif;
    font-size: 1.4rem;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    letter-spacing: 1px;
}
.bottom_nav li {
    margin-right: 2.9%;
}
.bottom_nav li:nth-last-of-type(1) {
    margin-right: 0;
}
.bottom_nav a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.bottom_nav a::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #333;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.bottom_nav a:hover::after {
    bottom: -4px;
    opacity: 1;
    visibility: visible;
}

.bottom_nav .bottom_nav__first {
    position: relative;
    margin-right: 4%;
}
.first__arrow {
    position: absolute;
    top: 37%;
    right: -21%;
    width: 4px;
    height: 8px;
    z-index: 1;
    background: url("../img/home/recode/btn_arrow.png") no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
}
.first__arrow--on {
    transform: rotate(90deg);
}
.bottom_nav__first:hover .first__arrow {
    transform: rotate(90deg);
}
.bottom_nav__second {
    position: absolute;
    padding-left: 0;
    top: 46px;
    left: -57%;
    width: 143px;
    opacity: 0.85;
    overflow: hidden;
}
.bottom_nav__first::before {
    content: '';
    width: 95px;
    height: 27px;
    position: absolute;
    top: 20px;
    left: -10px;
}
.bottom_nav__second li {
    background: #fff;
    margin-right: 0;
}
.bottom_nav__second li:not(:first-child) {
    border-top: solid 1px #adadad;
}
.bottom_nav__second li a {
    position: relative;
    letter-spacing: -1px;
    padding: 7px 13px 7px 0;
    display: block;
    text-align: center;
}
.bottom_nav__second li a:hover {
    text-decoration: none;
    background: #dedede;
}
.second__arrow {
    position: absolute;
    top: 37%;
    right: 8%;
    width: 4px;
    height: 8px;
    z-index: 1;
    background: url("../img/home/recode/btn_arrow.png") no-repeat;
    background-size: contain;
}
.bottom_nav__second a:hover::after {
    opacity: 0;
}
/* /ヘッダーナビ下 */

/* /ヘッダー */

/* フッター上リンク */
.footer_link_box {
    display: flex;
    width: 100%;
    padding-left: 0;
    margin: 0;
}
.footer_link_box li {
    width: 25%;
    height: auto;
    padding-top: 15.7%;
    position: relative;
}
.footer_link_box li::before {
    opacity: .6;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    transition: .7s;
}
.footer_link_box li:hover::before {
    opacity: .4;
}
.footer_link_box li::after {
    content: "";
    background: url("../img/common/footer_icon/footer_link_arrow.png");
    background-size: cover;
    width: 8px;
    height: 14px;
    display: block;
    position: absolute;
    bottom: 15px;
    right: 16px;
}
.footer_link_box li a{
    color: #fff;
    letter-spacing: 2px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}
.footer_link_box li a .link_btn_text{
    display: block;
    font-family: linotype-didot-headline, serif;
    font-size: 2.8rem;
    display: block;
    margin: 0 auto;
}
.footer_link_box li a .link_btn_ruby{
    font-family: ryo-text-plusn, serif;
    font-size: 1.3rem;
    display: block;
}
.link_btn--consept {
    background: url("../img/common/footer_icon/footer_link_btn_01.jpg") no-repeat;
    background-size: cover;
}
.link_btn--message {
    background: url("../img/common/footer_icon/footer_link_btn_02.jpg") no-repeat;
    background-size: cover;
}
.link_btn--theory {
    background: url("../img/common/footer_icon/footer_link_btn_03.jpg") no-repeat;
    background-size: cover;
}
.link_btn--product {
    background: url("../img/common/footer_icon/footer_link_btn_04.jpg") no-repeat;
    background-size: cover;
}
/* /フッター上リンク */

/* フッター */
.footer {
    padding: 110px 0 50px;
    text-align: center;
    background: #f5f5f5;
}
/*　フッター よくある質問 */
.footer .footer_qa {
    margin: 0 0 40px;
}
.footer .footer_qa a {
    position: relative;
    transition: .5s;
}
.footer .footer_qa a:hover {
    opacity: .4;
}
.footer .footer_qa a .btn--grad__arrow {
    position: absolute;
    top: 21%;
    right: -17%;
    width: 6px;
    height: 12px;
    z-index: 1;
    background: url(../img/common/footer_icon/btn_arrow.png) no-repeat;
    background-size: contain;
}
/* コンタクト */
.footer .heading_03 {
    font-size: 4.4rem;
    margin: 0 0 31px;
}
.footer .heading_04 {
    margin: 0;
}
.footer .contact_container {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto 36px;
}
.footer .contact_container::after {
    content: "";
    display: block;
    width: 1px;
    height: 70px;
    top: 23px;
    left: 50%;
    background: #808080;
    position: absolute;
}
.footer .contact_box{
    width: 50%;
    max-width: 425px;
}
.footer .contact_box:nth-child(2) {
    padding-left: 1%;
}
.footer .contact_box .btn--grad {
    padding: 11px 0;
    width: 80%;
    margin-top: 14px;
}
.footer .contact_box .btn--grad__text {
    font-size: 1.8rem;
}

.footer .free_tel_icon {
    background: url("../img/common/footer_icon/free_tel_icon.png") no-repeat;
    background-size: cover;
    width: 36px;
    height: 24px;
    display: inline-block;
    margin-right: 20px;
}
.footer .contact_tel {
    font-size: 3.8rem;
    display: inline-block;
    font-family: ryo-text-plusn, serif;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 2px;
}
.footer .contact_disp {
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 1px;
}
/* /コンタクト */
/* sns */
.sns_container {
    display: flex;
    justify-content: center;
    width: 21.5%;
    margin: 25px auto 75px;
}
.sns_container .text--tiny_eng{
    min-width: 106px;
    font-size: 1.4rem;
    margin: 5px 9% 0 0;
    letter-spacing: 2px;
}
.sns_container a:not(:last-of-type){
    margin-right: 6%;
}
.sns_container a{
    vertical-align: 2px;
    transition: .5s;
}
.sns_container a:hover{
    opacity: .4;
}
/* /sns */

/* フッターナビ上 */
.footer__nav_top {
    font-size: 1.3rem;
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto 25px;
    flex-wrap: wrap;
    padding-left: 0;
    letter-spacing: 1px;
}
.footer__nav_top_tablet {
    display: none;
}
.footer__nav_top .text--tiny_eng {
    font-size: 1.3rem;
}
.footer__nav_top li {
    margin: 0 1%;
    transition: .5s;
}
.footer__nav_top li:hover {
    opacity: .4;
}
.footer__nav_top li:nth-of-type(1){
    margin-left: 0;
}
.footer__nav_top li:nth-last-of-type(1){
    margin-right: 0;
    margin: 0 0 0 1.2%;
}
.footer__nav_top li:nth-last-of-type(2){
    margin: 0 1.2% 0 1.2%;
}
.footer__nav_top li:nth-last-of-type(3) {
    position: relative;
    margin: 0 1.2% 0 2.7%;
}
.footer__nav_top li:nth-last-of-type(4) {
    margin: 0 2.7% 0 1.8%;
}
.footer__nav_top li:nth-last-of-type(3)::before  {
    content: "";
    display: block;
    width: 1px;
    height: 13px;
    top: 2px;
    left: -40%;
    background: #808080;
    position: absolute;
}
/* /フッターナビ上 */
/* フッターナビ下 */
.footer__nav_bottom {
    font-size: 1rem;
    display: flex;
    padding-left: 0;
    width: 38%;
    justify-content: center;
    margin: 0 auto 77px;
    flex-wrap: wrap;
}
.footer__nav_bottom .text--tiny_eng {
    font-size: 1rem;
}
.footer__nav_bottom li {
    margin-right: 3%;
    transition: .5s;
}
.footer__nav_bottom li:hover {
    opacity: .4;
}
.footer__nav_bottom li:nth-last-of-type(1)  {
    margin-right: 0;
}
/* /フッターナビ下 */
.footer small .text--tiny_gray {
    margin: 0;
}
/* /フッター */

/* ----------------------------------
SP
----------------------------------- */
@media screen and (max-width:768px){

    .sp_only--header {
        display: block !important;
    }
    .pc_only--header {
        display: none !important;
    }
    /* ヘッダー */
    .header {
        align-items: center;
        padding: 0 5%;
        height: 50px;
    }
    .header .heading_01 {
        width: auto;
        position: relative;
        top: 0;
    }
    .header .heading_01 img{
        height: auto;
        width: 106px;
    }
    .header .header_right_menu {
        width: 50%;
    }

    .header .icon_nav li {
        margin-right: 50px;
    }
    .header .icon_nav {
        position: relative;
        display: flex;
        margin: 19px 3% 0 0;
        justify-content: flex-end;
        align-items: center;
    }
    .header .nav_btn {
        background: #000;
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        z-index: 99;
    }
    .header .sp_nav {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        right: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        padding-top: 0;
        transition: all .6s;
        z-index: 21;
        overflow-y: auto;
    }
    .header .hamburger {
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }

    .sp_nav__header {
        position: relative;
    }
    .sp_nav__header img {
        position: absolute;
        width: 107px;
        left: 5%;
    }
    .s-header-utilityList__icon img {
        position: relative;
    }
    .sp_nav__header .icon_nav {
        margin: 13px 56px 0 0;
        justify-content: flex-end;
        padding-top: 6px;
    }
    .sp_nav__header .icon_nav li {
        margin-right: 7.4%;
    }
    .sp_nav__header .icon_nav li:nth-last-of-type(1) {
        margin-right: 6.5%;
    }

    /* ナビ上 */
    .header .sp_top_nav {
        margin: 31px 0 59px;
        padding: 0;
        list-style: none;
        font-family: ryo-text-plusn, serif;
        font-size: 1.2rem;
    }
    .header .sp_top_nav .text--tiny_eng {
        letter-spacing: 2px;
        font-size: 1.3rem;
    }
    .header .sp_top_nav li {
        text-align: center;
        padding: 0;
    }
    .header .sp_top_nav li:nth-last-of-type(3) {
        margin-top: 37px;
        font-size: 1.2rem;
        letter-spacing: 1px;
        position: relative;
    }

    .header .sp_top_nav li:nth-last-of-type(3)::before {
        content: "";
        display: block;
        width: 50px;
        height: 1px;
        top: -19px;
        left: calc(50% - 25px);
        background: #808080;
        position: absolute;
    }
    .header .sp_top_nav li:nth-last-of-type(1) {
        font-size: 1.2rem;
        letter-spacing: 1px;
        position: relative;
    }
    .header .sp_top_nav li:nth-last-of-type(1)::after {
        content: "";
        display: block;
        width: 50px;
        height: 1px;
        bottom: -21px;
        left: calc(50% - 25px);
        background: #808080;
        position: absolute;
    }
    .header .sp_top_nav li a {
        display: block;
        padding: 17px 0;
        color: #111;
    }
    .header .sp_top_nav li:nth-last-of-type(1) a,
    .header .sp_top_nav li:nth-last-of-type(2) a,
    .header .sp_top_nav li:nth-last-of-type(3) a {
        font-family: sans-serif;
        padding: 14px 0;
        font-size: 1.1rem;
    }

    .header .sp_top_nav .top_nav__first {
        margin-right: 0;
        position: relative;
    }
    .header .sp_top_nav .first__arrow {
        top: 10.6%;
        right: 39%;
        transform: rotate(90deg);
    }
    .header .sp_top_nav .top_nav__second {
        position: relative;
        padding-left: 0;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 1;
        overflow: hidden;
    }
    .header .sp_top_nav .top_nav__second li {
        background: #8e8e8e;
        margin-top: 0;
        margin-right: 0;
    }
    .header .sp_top_nav .top_nav__second li:not(:first-of-type) {
        border-top: solid 1px #fff;
    }
    .header .sp_top_nav .top_nav__second li a {
        padding: 17px 13px;
        font-size: 1.2rem;
        font-family: ryo-text-plusn, serif;
        color: #fff;
        position: relative;
    }
    .header .sp_top_nav .top_nav__second li a:hover {
        background: transparent;
    }
    .header .sp_top_nav .second__arrow {
        top: 43%;
        right: 31%;
        width: 4.5px;
        height: 8.5px;
        background: url("../img/common/header_icon/btn_arrow_white.png") no-repeat;
        background-size: contain;
    }

    /* /ナビ上 */
    /* ナビ下 */
    .header .sp_bottom_nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        margin-bottom: 39px;
    }
    .header .sp_bottom_nav li {
        margin-right: 8%;
        margin-bottom: 18px;
    }

    .header .sp_bottom_nav li:nth-of-type(1) {
        margin-right: 13%;
    }
    .header .sp_bottom_nav li:nth-of-type(2) {
        margin-right: 10%;
    }
    .header .sp_bottom_nav li:nth-of-type(3n) {
        margin-right: 0;
    }

    .header .sp_bottom_nav li .text--tiny_eng {
        letter-spacing: 2px;
    }
    /* ナビ下 */
    /* ナビ内フッター */
    .header .footer {
    padding-bottom: 5px;
    }
    /* /ナビ内フッター */
    .header .nav_btn__line {
        z-index: 100;
        position: absolute;
        right: 16px;
        width: 15px;
        height: 1px;
        background-color: #fff;
        transition: all .6s;
    }
    .header .nav_btn__line--01 {
        top: 21px;
    }
    .header .nav_btn__line--02 {
        top: 28px;

    }
    /* メニュー表示時CSS */

    .nav--open .header .nav_btn {
        background: unset;
    }
    .nav--open .header .sp_nav {
        opacity: 1;
        visibility: visible;
        background: rgba(255,255,255,.96)
    }
    .nav--open .header .nav_btn__line--01 {
        background-color: #000;
        transform: rotate(45deg);
        top: 25px;
    }
    .nav--open .header .nav_btn__line--02 {
        background-color: #000;
        transform: rotate(-45deg);
        top: 25px;
    }
    /* /ヘッダー */
}

@media screen and (max-width:767px){
    .sp_only {
        display: block !important;
    }
    .pc_only {
        display: none !important;
    }
    /* 見出し */
    .heading_03 {
        font-size: 3.7rem;
    }
    .heading_04 {
        font-size: 1.5rem;
    }
    /* /見出し */

    /* テキスト */
    .text--eng {
        font-size: 1.5rem;
    }
    .text--disp {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin: 1rem 0;
    }
    .text--tiny_gray {
        font-size: 1.1rem;
    }
    .heading_04 .text__reg {
        font-size: 1rem;
        vertical-align: 5px;
    }
	.heading_04 .text_little_top{
    font-size: 0.6rem;
    vertical-align: 11px;
    }
    .heading_05 .text__reg {
        font-size: 1rem;
        vertical-align: 7px;
    }
    /* /テキスト */

    /* グラデーションボタン */
    .btn--grad {
        padding: 12px 57px;
    }
    .btn--grad .btn--grad__arrow {
        top: 40%;
    }
    .btn--grad:hover .btn--grad__bg{
        opacity:0;
    }
    .btn--grad:hover .btn--grad__text{
        color: #121212;
    }
    /* /グラデーションボタン */
    /* ページトップボタン */

    .arrowWrap {
        right: -14px;
    }

    .arrowWrap:hover .arrow::before {
        top: -50px;
        -webkit-animation: unset;
        animation: unset;
    }

    /* /ページトップボタン */
    /* アイコン */
    .youtube_icon {
        width: 25px;
        height: 25px;
    }
    .insta_icon {
        width: 24px;
        height: 24px;
    }
    .fb_icon {
        width: 25px;
        height: 25px;
    }
    .line_icon {
        width: 25px;
        height: 25px;
    }
    .mypage_icon {
        width: 17px;
        height: 16px;
    }
    .cart_icon {
        width: 16px;
        height: 16px;
    }
    .contact_icon {
        position: relative;
        top: -2px;
        width: 16px;
        height: 12px;
    }
    /* /アイコン */

    /* ヘッダー */
    .header .icon_nav li {
        margin-right: 16%;
    }
    .header .icon_nav {
        margin: 10px 16% 0 0;
    }

    .sp_nav__header .icon_nav {
        margin: 13px 47px 0 0;
    }
    .sp_nav__header .icon_nav li {
        margin-right: 7%;
    }
    /* /ヘッダー */

    /* フッター上リンク */
    .footer_link_box {
        flex-wrap: wrap;
    }
    .footer_link_box li {
        width: 50%;
        padding-top: 31.9%;
        position: relative;
    }
    .footer_link_box li::after {
        width: 4px;
        height: 8px;
        bottom: 6px;
        right: 9px;
}
    .footer_link_box li a .link_btn_text{
        font-size: 1.8rem;
    }
    .footer_link_box li a .link_btn_ruby{
        font-size: 1rem;
    }
    /* /フッター上リンク */

    /* フッター */

    .footer {
        padding: 50px 0 40px;
    }
    .footer .heading_03 {
        font-size: 2.9rem;
        margin: 0 0 19px;
    }
    .footer .footer_qa a .btn--grad__arrow {
        top: 20%;
        right: -17%;
        width: 5px;
        height: 10px;
    }
    .footer .heading_04 {
        letter-spacing: 1px;
    }
    .footer .contact_container {
        display: block;
        width: 85%;
        margin: 0 auto 45px;
    }
    .footer .contact_container::after {
        max-width: 320px;
        width: 100%;
        margin: auto;
        height: 1px;
        top: 49%;
        left: 0;
        right: 0;
    }
    .footer .contact_box{
        width: 100%;
        margin: 0 auto;
    }
    .footer .contact_box:nth-child(1) {
        padding-bottom: 20px;
    }
    .footer .contact_box:nth-child(2) {
        padding-left: 0;
        padding-top: 24px;
    }
    .footer .contact_box .btn--grad {
        width: 93%;
    }
    .footer .contact_box .btn--grad__text {
        font-size: 1.2rem;
    }
    .footer .free_tel_icon {
        width: 29px;
        height: 19px;
        margin-right: 10px;
    }
    .footer .contact_tel {
        font-size: 3.1rem;
    }
    .footer .contact_disp {
        font-size: 1.1rem;
    }
    .sns_container {
        width: 73%;
        margin: 0 auto 40px;
    }
    .footer .sns_container .text--tiny_eng{
        font-size: 1.2rem;
        margin: 5px 5% 0 0;
    }
    .footer .sns_container a:not(:last-of-type) {
        margin-right: 5%;
    }
    .footer .footer__nav_top, .footer .footer__nav_bottom {
        display: none;
    }
    .footer small .text--tiny_gray {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    /* /フッター */
}
/* ----------------------------------
header footer カラム落ち防止
----------------------------------- */
@media screen and (min-width:768px) and ( max-width:1050px) {
    /* header */
    .bottom_nav li {
        margin-right: 2%;
    }
    /* footer */
    .footer__nav_top_tablet {
        position: relative;
        display: block;
        font-size: 1.3rem;
        display: flex;
        width: 100%;
        max-width: 1200px;
        justify-content: center;
        margin: 0 auto 28px;
        flex-wrap: wrap;
        padding-left: 0;
        letter-spacing: 1px;
    }
    .footer__nav_top_tablet::before {
        content: "";
        display: block;
        width: 36em;
        height: 1px;
        top: -11px;
        background: #808080;
        position: absolute;
    }
    .footer__nav_top_tablet li {
        margin: 0 1%;
        transition: .5s;
    }
    .footer__nav_top_tablet li:nth-of-type(1) {
        margin-left: 0;
    }
    .footer__nav_top {
        margin-bottom: 20px;
    }
    .footer__nav_top li:nth-of-type(6) {
        margin-right: 0;
    }
    .footer__nav_top li:nth-child(n+7) {
        display: none;
    }
    .footer__nav_top li:nth-last-of-type(3)::before {
        display: none;
    }
    .footer__nav_top li:nth-last-of-type(4) {
        margin: 0 1%;
    }
}

/* ----------------------------------
IE
----------------------------------- */
@media all and (-ms-high-contrast: none){
.btn--grad {
    padding: 12px 43px 10px;
}
.arrowWrap:hover .arrow::before {
    top: -50px;
    -webkit-animation: unset;
    animation: unset;
}
.first__arrow {
    top: 14%;
}
.bottom_nav__second li a {
    padding: 12px 13px 0 0;
}
}


/*-------------------------------------
add common_old
---------------------------------------*/
/*s-header-miniCart
------------------------------------------------------------- */
.s-header-miniCart {
  display: none;
}

@media screen and (min-width: 992px) {
  .s-header-miniCart {
    display: block;
    width: 32rem;
    height: calc(100vh - 8.4rem);
    padding: 0;
    position: fixed;
    top: 8.4rem;
    right: 0;
    z-index: 1;
    background: #fff;
    opacity: 1;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    transition: transform 0.4s ease;
    transform: translate(100vw, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

    .s-header-miniCart.active {
      visibility: visible;
      transform: translate(0, 0);
    }

  .s-header-miniCart-headBlock {
    display: block;
    width: calc(100% - 4rem);
    margin: 0 auto;
    border-bottom: 1px solid var(--color-gray);
  }

  .s-header-miniCart-headBlock__headLink {
    display: block;
  }

    .s-header-miniCart-headBlock__headLink:hover {
      opacity: var(--hover-opacity);
      transition: opacity var(--transition-default);
    }

  .s-header-miniCart-head {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 6rem;
    margin: 0 auto;
    padding: 0 0;
  }

  .s-header-miniCart-head__upper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 0.3rem;
  }

  .s-header-miniCart-head__icon {
    display: block;
    width: 3.8rem;
    height: auto;
  }

  .s-header-miniCart-head__title {
    width: calc(100% - 4.1rem);
    font-family: var(--font-en);
    text-align: left;
    font-size: 1.1rem;
  }

  .s-header-miniCart-head__price {
    font-family: var(--font-en);
    text-align: left;
    font-size: 1.5rem;
  }

  .s-header-miniCart-body {
    display: block;
    width: 100%;
    max-height: calc(100vh - 8.4rem - 6rem - 10.9rem);
    padding: 0 2rem;
    overflow-y: auto;
  }

  .s-header-miniCart-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--color-gray);
  }

    .s-header-miniCart-item:nth-last-of-type(1) {
      border-bottom: none;
    }

  .s-header-miniCart-item__img {
    display: block;
    width: 6.5rem;
    height: 6.5rem;
    overflow: hidden;
  }

    .s-header-miniCart-item__img:hover {
      opacity: var(--hover-opacity);
      transition: opacity var(--transition-default);
    }

    .s-header-miniCart-item__img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 50%;
    }

  .s-header-miniCart-item__itemInfo {
    display: block;
    width: calc(100% - 7.5rem);
  }

  .s-header-miniCart-item__name {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
  }

    .s-header-miniCart-item__name a:hover {
      opacity: var(--hover-opacity);
      transition: opacity var(--transition-default);
    }

  .s-header-miniCart-item__info {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.1rem;
  }

  .s-header-miniCart-item__price {
    font-size: 1.3rem;
  }

  .s-header-miniCart-item__quantity {
    font-size: 1.1rem;
  }

  .s-header-miniCart-item__deleteBtn {
    display: block;
    width: 3rem;
    margin: 0 0 0 auto;
    padding: 0 1rem;
  }

    .s-header-miniCart-item__deleteBtn:hover {
      opacity: var(--hover-opacity);
      transition: opacity var(--transition-default);
    }

  .s-header-miniCart-button {
    display: block;
    width: calc(100% - 4rem);
    margin: 1.5rem auto 0;
    padding: 2rem 3rem 3rem;
    border-top: 1px solid var(--color-gray);
  }
}
/*s-header-utilityList
------------------------------------------------------------- */
.s-header-utilityList {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.s-header-utilityList__text {
  display: flex;
  align-items: center;
  /* margin-right: 1rem; */
}

.s-header-utilityList__item {
  display: block;
  width: 3.8rem;
  flex-shrink: 0;
}

.s-header-utilityList__item._mypage {
  width: 1.7rem;
  height: auto;
}
.s-header-utilityList__item._minicart {
  width: 2.1rem;
}

.s-header-utilityList__item._contact {
  width: 1.6rem;
}

.s-header-utilityList__icon {
  display: inline-block;
  width: 100%;
}

  .s-header-utilityList__icon img {
    display: block;
    width: 100%;
    height: auto;
  }

.s-header-utilityList__icon--cart {
  position: relative;
}

@media screen and (min-width: 992px) {
  .s-header-utilityList {
    gap: 0 3rem;
  }

  .s-header-utilityList__icon {
    cursor: pointer;
  }
  .s-header-utilityList__item._mypage {
    width: 2.3rem;
    height: auto;
  }
  
  .s-header-utilityList__item._contact {
    width: 2rem;
  }

    .s-header-utilityList__icon:hover {
      opacity: var(--hover-opacity);
      transition: opacity var(--transition-default);
    }
}
@media screen and (max-width: 767px) {
    .s-header-utilityList__item._minicart {
        width: 1.6rem;
      }
}

/**
* #Hidden Responsive
*/
.u-hidden {
  display: none !important;
}

@media screen and (min-width: 576px) {
  .u-hidden-sm-up {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-md-up {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .u-hidden-lg-up {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-hidden-xl-up {
    display: none !important;
  }
}

@media screen and (min-width: 1400px) {
  .u-hidden-xxl-up {
    display: none !important;
  }
}

@media screen and (max-width: 575px) {
  .u-hidden-sm-down {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-md-down {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .u-hidden-lg-down {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .u-hidden-xl-down {
    display: none !important;
  }
}

@media screen and (max-width: 1399px) {
  .u-hidden-xxl-down {
    display: none !important;
  }
}

.u-contents--loading {
  display: none;
}

.u-contents--loaded {
  display: block;
}

/*-- マイページ関連の追加CSS --*/
.m-userSectCol-typeSep__button-wrap {
    max-width: 32.775rem;
    margin: 2rem auto 3rem;
}
@media screen and (max-width: 768px) {
    .m-userSectCol-typeSep__button-wrap {
        max-width: 100%;
        margin: 2rem auto 3rem;
    }
    .m-userSectCol-typeSep-button {
        width: 100%!important;
    }
}

/**
* #Hidden Responsive
*/