@charset "Shift_JIS";

/*
HEADER & NAVI
FOOTER
MAIN CONTENTS
FORM
BUTTON
*/

html {
    background-color: var(--color-white);
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    color: var(--color-prime);
    font-family: var(--font-jp), sans-serif;
    font-size: 1.4em;
    font-weight: normal;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    line-height: 2;
    position: relative;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
}

a:link, a:visited { color: #000; }
a:active, a:hover { text-decoration: none; }

#wrapper {
    background-color: var(--color-prime);
    min-height: 100vh;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 640px) {
    body { font-size: 1.6em; }
}

@media screen and (min-width: 1260px) {
    a:link, a:visited { transition: var(--transition); }
    a:hover { opacity: var(--fade-opacity); }
}


/* HEADER & NAVI -------------------- */
/* Header News */
#header-news {
    background-color: var(--color-lightgrey);
    height: 40px;
}

#header-news a {
    display: flex;
    justify-content: center;
    height: 40px;
    line-height: 40px;
    padding: 0 var(--padding-rl-sp);
    text-decoration: none;
    width: 100%;
}

.header-news__date { font-size: 1rem; width: 80px; }

.header-news__title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width: 640px) {
    #header-news a { padding: 0 40px; transition: var(--transition); }
    #header-news a:hover { opacity: var(--fade-opacity); }
    .header-news__date { font-size: 1.2rem; width: 120px; }
    .header-news__title { flex: none; max-width: 80%; }
}


/* Header */
#header-pc { display: none; }

#header-sp {
    background-color: var(--color-white);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 60px;
    padding: 10px var(--padding-rl-sp);
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

#header-sp h1 {
    height: 40px;
    width: 140px;
    order: 1;
}

#header-sp h1 a {
    display: block;
    height: 40px;
    width: 140px;
}

#header-sp .header-sp__menu {
    display: flex;
    justify-content: space-between;
    height: 40px;
    width: 66px;
}

#header-sp .header-sp__menu:nth-of-type(1) { order: -1; }
#header-sp .header-sp__menu:nth-of-type(2) { order: 2; }

#header-sp__mypage,
#header-sp__favorite,
#header-sp__cart { width: 26px; }

#header-sp__mypage a { background-image: url(../img/icon_mypage.svg); }
#header-sp__favorite a { background-image: url(../img/icon_favorite.svg); }
#header-sp__cart a { background-image: url(../img/icon_cart.svg); }

#header-sp__mypage a, #header-sp__favorite a, #header-sp__cart a {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 26px auto;
    display: block;
    height: 40px;
    width: 26px;
    text-indent: -1600px;
}

@media screen and (min-width: 360px) {
    #header-sp .header-sp__menu { width: 74px; }
}

@media screen and (min-width: 640px) {
    #header-sp { height: 100px; padding: 14px 40px; }
    #header-sp h1 { height: 72px; width: 252px; }

    #header-sp h1 a {
        background-size: auto 72px;
        height: 72px;
        width: 252px;
    }

    #header-sp .header-sp__menu { height: 72px; width: 116px; }

    #header-sp__mypage,
    #header-sp__favorite,
    #header-sp__cart { width: 36px; }

    #header-sp__mypage a, #header-sp__favorite a, #header-sp__cart a {
        background-size: 36px auto;
        height: 72px;
        width: 36px;
    }
}

@media screen and (min-width: 1260px) {
    #header-sp { display: none; height: 0; }

    #header-pc {
        background-color: var(--color-white);
        display: block;
        height: 120px;
        position: relative;
    }

    #header-pc__inside {
        display: flex;
        margin: 0 auto;
        position: relative;
        width: var(--width-pc);
    }

    #header-pc h1 { padding: 30px 0; width: 210px; }
    #header-pc h1 img { height: 60px; }

    #nav-pc__list {
        display: flex;
        column-gap: 24px;
        padding-left: 32px;
    }

    #nav-pc__list > li { padding: 40px 0;}

    #nav-pc__list > li > a, #nav-pc__list > li > span {
        color: var(--color-prime);
        cursor: pointer;
        display: block;
        font-size: 1.4rem;
        line-height: 40px;
        position: relative;
        text-decoration: none;
    }

    #nav-pc__list > li:hover > span::before {
        border: 10px solid transparent;
        border-bottom: 10px solid var(--color-lightgrey);
        content: '';
        display: block;
        height: 20px;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
    }

    .navi-pc__list-sub div { display: none; }

    .navi-pc__list-sub:hover > div {
        background-color: var(--color-lightgrey);
        display: block;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: var(--width-pc);
        z-index: 100;
    }


    .navi-pc__list-sub div ul {
        display: flex;
        flex-wrap: wrap;
        column-gap: 40px;
        row-gap: 16px;
        padding: 40px;
    }

    .navi-pc__list-sub div ul li {
        position: relative;
        width: calc((100% - (40px * 3)) / 4);
    }

    .navi-pc__list-sub div ul li::before {
        border-top: 2px solid #bbb;
        border-right: 2px solid #bbb;
        content: '';
        display: block;
        height: 6px;
        position: absolute;
        top: 7px;
        left: 0;
        transform: rotate(45deg);
        width: 6px;
    }

    .navi-pc__list-sub div ul li a {
        color: var(--color-prime);
        display: block;
        font-size: 1.4rem;
        line-height: 1.6;
        padding-left: 16px;
        text-decoration: none;
    }

    .navi-pc__list-sub div ul li a:hover { text-decoration: underline; }

    #header-pc__menu {
        display: flex;
        align-content: space-between;
        flex-wrap: wrap;
        justify-content: flex-end;
        column-gap: 12px;
        height: 120px;
        padding: 20px 0;
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
    }

    #header-pc__menu li { height: 20px; }

    #header-pc__menu a {
        color: var(--color-prime);
        display: flex;
        font-size: 1.2rem;
        line-height: 20px;
        text-decoration: none;
    }

    #header-pc__mypage a { background-image: url(../img/icon_mypage.svg); }
    #header-pc__favorite a { background-image: url(../img/icon_favorite.svg); }
    #header-pc__faq a { background-image: url(../img/icon_faq.svg); }
    #header-pc__cart a { background-image: url(../img/icon_cart.svg); }

    #header-pc__mypage a, #header-pc__favorite a, #header-pc__faq a, #header-pc__cart a {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 20px auto;
        display: block;
        height: 20px;
        width: 20px;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    #header-pc__menu #header-pc__search { height: 40px; }

    .header-pc__search_form {
        border: 1px solid #ccc;
        border-radius: 4px;
        display: flex;
        flex-wrap: nowrap;
        width: 300px;
    }

    #header-pc__search .header-pc__search_input {
        border: 0;
        margin: 0;
        padding: 3px 15px;
        width: 268px;
    }

    #header-pc__search .header-pc__search_btn { margin-right: 14px; width: 16px; }
}


/* SP Drawer Button */
#header-sp__drawer-btn {
    display: flex;
    flex-direction: column;
    height: 30px;
    margin: 6px 0 0;
    cursor: pointer;
    position: relative;
    width: 28px;
}

#header-sp__drawer-btn span {
    display: block;
    transition: transform 0.2s ease-in-out;
    text-align: center;
    width: 28px;
}

#header-sp__drawer-btn span:not(:nth-child(4)) {
    background-color: var(--color-prime);
    height: 2px;
    margin-bottom: 5px;
}

#header-sp__drawer-btn span:nth-child(4) {
    font-family: var(--gfont-eng), sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    bottom: 0;
}

#header-sp__drawer-btn.header-sp__drawer-btn_open span:nth-child(1),
#header-sp__drawer-btn.header-sp__drawer-btn_open span:nth-child(3) {
    position: absolute;
    top: 8px;
}
#header-sp__drawer-btn.header-sp__drawer-btn_open span:nth-child(1) { transform: rotate(30deg); }
#header-sp__drawer-btn.header-sp__drawer-btn_open span:nth-child(2) { opacity: 0; }
#header-sp__drawer-btn.header-sp__drawer-btn_open span:nth-child(3) { transform: rotate(-30deg); }

@media screen and (min-width: 640px) {
    #header-sp__drawer-btn {
        height: 40px;
        margin: 17px 0 0;
        width: 40px;
    }

    #header-sp__drawer-btn span { width: 40px; }
    #header-sp__drawer-btn span:not(:nth-child(4)) { margin-bottom: 8px; }
    #header-sp__drawer-btn span:nth-child(4) { font-size: 1.4rem; }

    #header-sp__drawer-btn.header-sp__drawer-btn_open span:nth-child(1),
    #header-sp__drawer-btn.header-sp__drawer-btn_open span:nth-child(3) {
        top: 10px;
    }
}


/* SP NAVI */
#navi-sp {
    background-color: #eee;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    position: absolute;
    top: 60px;
    left: 0;
    transform: translateX(-100vw);
    transition: transform 0.2s ease-in-out;
    width: 100vw;
    overflow: auto;
}

#navi-sp.header-sp__drawer-btn_open { transform: translateX(0); }

#navi-sp__inside {
    display: block;
    height: auto;
    width: 100%;
    padding: 10px 0 80px;
}

#navi-sp__list { width: 100%; }

#navi-sp__list li {
    background-color: var(--color-white);
    border-top: var(--border-prime);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 48px;
    min-height: 48px;
}

#navi-sp__list li:first-child { border: none;}
#navi-sp__list li.navi-sp__list_noborder { border: none; margin-top: 10px; }

#navi-sp__list a, #navi-sp__list span {
    color: var(--color-prime);
    display: block;
    padding: 0 40px 0 20px;
    position: relative;
    text-decoration: none;
    width: 100%;
}

#navi-sp__list li a::after, #navi-sp__list span::after {
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    border-width: 2px;
    content: '';
    display: block;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 24px;
    transition: transform 0.2s ease-in-out;
    width: 9px;
}

#navi-sp__list li a::after { transform: rotate(45deg) translateY(-50%); }

#navi-sp__list span::after {
    transform: rotate(135deg) translateY(50%);
    right: 16px;
}

#navi-sp__list span.navi-sp__list-sub_open::after {
    transform: rotate(-45deg) translateY(-50%);
}

#navi-sp__list .navi-sp__list-sub ul li a::after {
    display: none;
}

#navi-sp__list #navi-sp__search {
    border-top: none;
    margin-top: 10px;
    padding: 20px;
}

.navi-sp__search_form {
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    width: 100%;
}

#navi-sp__search .navi-sp__search_input {
    flex: 1;
    border: 0;
    margin: 0;
}
#navi-sp__search .navi-sp__search_btn { margin-right: 14px; width: 16px; }
#navi-sp__list .navi-sp__list-sub { cursor: pointer; }
#navi-sp__list .navi-sp__list-sub ul { display: none; }

#navi-sp__list .navi-sp__list-sub ul li {
    border-top: var(--border-prime);
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.6;
    min-height: auto;
}

#navi-sp__list .navi-sp__list-sub ul li a { padding: 8px 40px 8px 40px; }

@media screen and (min-width: 640px) {
    #navi-sp {
        height: calc(100vh - 100px);
        height: calc(100dvh - 100px);
        top: 100px;
        transform: translateX(-360px);
        width: 360px;
    }

    #navi-sp__inside { padding-bottom: 120px; }
    #navi-sp__search .navi-sp__search_input { max-width: 285px; }
}



/* FOOTER -------------------- */
#footer { background-color: var(--color-white); }
#footer__official { border-top: var(--border-prime); padding-bottom: 40px; }

#footer__official-sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px var(--padding-rl-sp) 0;
}

#footer__official-sns img { width: 40px; }

#footer__official-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px var(--padding-rl-sp) 0;
}

#footer__official-link a {
    border: 2px solid var(--color-prime);
    color: var(--color-prime);
    display: block;
    font-family: var(--gfont-eng), var(--font-jp), sans-serif;
    font-size: 2rem;
    font-weight: bold;
    min-height: 48px;
    line-height: 1;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    min-width: 300px;
}

#footer__inside {
    background-color: var(--color-prime);
    padding: 30px var(--padding-rl-sp) 40px;
}

.footer__inside-navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
}

.footer__inside-navi a {
    color: var(--color-white);
    font-size: 1.2rem;
    text-decoration: none;
}

small {
    color: #999;
    display: block;
    font-family: var(--gfont-eng), sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding-top: 24px;
    text-align: center;
}

#btn-pagetop {
    background-color: rgba(238, 238, 238, 0.9);
    cursor: pointer;
    display: block;
    height: 36px;
    position: fixed;
    right: 10px;
    bottom: 40px;
    width: 36px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    z-index: 50;
}

#btn-pagetop::before {
    border-top: 2px solid var(--color-prime);
    border-right: 2px solid var(--color-prime);
    content: '';
    display: block;
    height: 10px;
    margin-left: -1px;
    transform: rotate(-45deg) translateX(-50%);
    position: absolute;
    top: 32%;
    left: 50%;
    width: 10px;
}

@media screen and (min-width: 640px) {
    #footer__official { padding-bottom: 80px; }
    #footer__official-sns { gap: 30px; padding: 30px 0 0; }
    #footer__official-sns img { width: 50px; }
    #footer__official-link { gap: 30px; }

    #footer__official-link a {
        min-height: 56px;
        padding: 16px 30px;
        min-width: 320px;
    }

    #footer__inside { padding: 50px var(--padding-rl-sp); }
    .footer__inside-navi { column-gap: 40px; }
    .footer__inside-navi a { font-size: 1.4rem; }

    small { font-size: 1.2rem; padding-top: 30px; }

    #btn-pagetop {
        height: 50px;
        right: 40px;
        width: 50px;
    }

    #btn-pagetop::before { height: 14px; width: 14px; }
}

@media screen and (min-width: 1260px) {
    .footer__inside-navi { column-gap: 60px; }
}


/* MAIN CONTENTS -------------------- */
main {
    background-color: var(--color-white);
    min-height: 240px;
    padding-bottom: 40px;
    width: 100%;
    word-break: break-all;
}

.contents-wrap__s {
    margin: 0 auto;
    padding: 0 var(--padding-rl-sp);
    width: 100%;
}

.contents-wrap__s.padding_top { padding-top: 40px; }
.contents-head__text { padding: 30px var(--padding-rl-sp) 0; }

.contents-wrap__lightgrey {
    background-color: var(--color-lightgrey);
    margin-top: 20px;
    padding: 20px;
    width: 100%;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 auto;
    padding: 40px var(--padding-rl-sp) 0;
    text-align: center;
}

h2.h2_eng {
    font-family: var(--gfont-eng), sans-serif;
    font-size: 2.4rem;
}

h3 {
    border-top: 1px solid var(--color-prime);
    border-bottom: 1px solid var(--color-prime);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.6;
    margin: 40px auto 20px;
    padding: 12px 0;
    text-align: center;
}

h4 {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 40px 0 8px;
}

h5 { font-weight: bold; padding-top: 30px; }
.border_top { border-top: var(--border-prime);  margin-top: 40px; }

@media screen and (min-width: 640px) {
    main { min-height: 320px; padding-bottom: 60px; }
    .contents-wrap__s.padding_top { padding-top: 60px; }
    .contents-wrap__lightgrey { margin-top: 60px; padding: 30px; }
    h2 { font-size: 3.6rem; padding: 70px var(--padding-rl-sp) 0; }
    h2.h2_eng { font-size: 4rem; }

    h3 {
        font-size: 2.4rem;
        margin: 60px auto 40px;
        padding: 16px 0;
    }

    h4 { font-size: 2rem; padding: 50px 0 12px; }
    .border_top { margin-top: 60px; }
}

@media screen and (min-width: 800px) {
    .border_top.border_top_pcnone { border-top: none; margin-top: 0; }
}

@media screen and (min-width: 1000px) {
    .contents-wrap__s { padding: 0; width: var(--width-pc-s); }

    .contents-head__text {
        margin: 0 auto;
        padding: 40px 0 0;
        width: var(--width-pc-s);
    }

    h3 { width: var(--width-pc-s); }
}

@media screen and (min-width: 1260px) {
    main { padding-bottom: 80px; }
    .border_top_spnone { border-top: var(--border-prime); margin-top: 60px; }
}


/* FORM -------------------- */
.form-table { margin: 60px auto 0; width: var(--width-pc-s); }
.form-table.mypage_fc { margin: 20px auto 0; }

.form-table tr {
    border-top: var(--border-prime);
    border-bottom: var(--border-prime);
}

.form-table th {
    background-color: var(--color-lightgrey);
    padding: 20px 20px 20px 30px;
    font-weight: bold;
    width: 30%;
}

.form-table.mypage_fc th, .form-table.mypage_favorite th { width: 40%; }
.form-table td { padding: 20px 30px; }
.form-tabele__note { color: #666; }

.form-err__text {
    background-color: var(--color-att);
    color: var(--color-white);
    font-weight: bold;
    margin: 60px auto 30px;
    padding: 30px;
    width: var(--width-pc-s);
}

@media screen and (max-width: 1001px) {
    .form-table { width: 90%; }
    .form-table th { padding: 20px; }
    .form-table td { padding: 20px; }
    .form-err__text { width: 90%; }
}

@media screen and (max-width: 801px) {
    .form-table { margin: 40px auto 0; width: 100%; }
    .form-table.border_bottom { border-bottom: var(--border-prime); }
    .form-table.mypage_fc { margin: 10px auto 0; }
    .form-table tr { border: none; }

    .form-table th, .form-table td,
    .form-table.mypage_fc th, .form-table.mypage_favorite th {
        display: block;
        width: 100%;
    }

    .form-table th { font-size: 1.6rem; padding: 4px var(--padding-rl-sp); }
    .form-table td { padding: 12px var(--padding-rl-sp) 20px; }
    .form-err__text { margin: 40px auto 20px; padding: 15px; }
}

/* INPUT */
input[type=text], input[type=password], input[type=email], textarea, select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    background: var(--color-white);
    border: 1px solid #ccc;
    border-radius: 4px;
    color: var(--color-prime);
    font-family: var(--font-jp);
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 2;
    margin: 10px 0;
    outline: none;
    padding: 8px 15px;
    max-width: 100%;
}

input[type=submit], button {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    border: none;
    border-radius: 0;
    outline: none;
    font-family: var(--font-jp);
}

select {
    background: url(../img/icon_form-select.svg) no-repeat;
    background-position: right 10px center;
    padding: 8px 32px 8px 15px;
    position: relative;
}

select option { color: var(--color-prime); }

input[type=radio]:focus,
input[type=checkbox]:focus { outline: none; }

input[type=checkbox] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--color-white);
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 30px;
    margin: 10px 10px 10px 0;
    position: relative;
    vertical-align: middle;
    width: 30px;
}

input[type=checkbox]:checked {
    background-color: var(--color-prime);
    color: var(--color-white);
}

input[type=checkbox]:checked::after {
    content: "";
    border-bottom: 3px solid var(--color-white);
    border-right: 3px solid var(--color-white);
    height: 16px;
    position: absolute;
    left: 8px;
    top: 3px;
    transform: rotate(45deg);
    width: 12px;
}

input[type=radio] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    background-color: var(--color-white);
    border: 1px solid #ccc;
    border-radius: 50%;
    height: 24px;
    margin: 10px 10px 10px 0;
    position: relative;
    vertical-align: middle;
    width: 24px;
}

input[type=radio]:checked { background-color: var(--color-white); }
input[type=radio]:disabled { cursor: text; }

input[type=radio]:checked::after {
    content: "";
    background-color: var(--color-prime);
    border-radius: 50%;
    height: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
}

::placeholder { color: #ccc; }
.input-w100per { width: 100%; }
.input-w50per { width: 100%; }
.input-zipcode { width: 100px; }
.input-tel { width: 29%; }

.form-icon__required {
    background-color: var(--color-att);
    color: var(--color-white);
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    height: 16px;
    line-height: 16px;
    margin: 0 6px 0 20px;
    text-align: center;
    vertical-align: middle;
    width: 32px;
}

@media screen and (min-width: 640px) {
    .input-w50per { width: 50%; }
    .input-tel { width: 120px; }

    .form-icon__required {
        font-size: 1.2rem;
        height: 20px;
        line-height: 20px;
        width: 40px;
    }
}


/* BUTTON -------------------- */
.btn-wrap {
    padding: 30px var(--padding-rl-sp) 0;
    text-align: center;
}

.btn, .btn-nega, a.btn, a.btn-nega, input.btn, input.btn-nega {
    background-color: var(--color-prime);
    border: 2px solid var(--color-prime);
    color: var(--color-white);
    cursor: pointer;
    display: inline-block;reen and (min-width: 1260px)
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 44px;
    margin: 10px 8px 10px 8px;
    min-height: 48px;
    min-width: 240px;
    padding: 0 20px;
    text-align: center;
    text-decoration: none;
}

.btn-nega, a.btn-nega, input.btn-nega {
    background-color: var(--color-white);
    color: var(--color-prime);
}

@media screen and (min-width: 640px) {
    .btn-wrap { padding: 40px var(--padding-rl-sp) 0; }

    .btn, .btn-nega, a.btn, a.btn-nega, input.btn, input.btn-nega {
        margin: 20px 16px 20px 16px;
    }
}

@media screen and (min-width: 1260px) {
    input.btn, input.btn-nega { transition: var(--transition); }
    input.btn:hover, input.btn-nega:hover { opacity: var(--fade-opacity);}
}


/* More Button */
.more-btn {
    border: 2px solid var(--color-prime);
    color: var(--color-prime);
    display: block;
    font-family: var(--gfont-eng), sans-serif;
    font-size: 2rem;
    font-weight: bold;
    min-height: 48px;
    line-height: 1;
    margin: 0 auto;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    width: 240px;
}

#home-btn__allitem {
    border-top: var(--border-prime);
    padding-top: 40px;
    margin-top: 40px;
}

#home-btn__allitem .more-btn { margin-bottom: 0; }

@media screen and (min-width: 640px) {
    .more-btn {
        margin-bottom: 20px;
        min-height: 56px;
        padding: 16px 30px;
        min-width: 320px;
    }

    #home-btn__allitem { padding-top: 60px; margin-top: 60px; }
}

@media screen and (min-width: 1260px) {
    #home-btn__allitem { padding-top: 80px; }
}