/*
 * CSS Variabls
 */
:root {
    --rcs-s0-head-size: 120px;
    --rcs-s0-head-size-md: 120px;
    --rcs-s0-head-size-sm: 70px;
}
/* DEBUG 各要素の枠線を表示 */
/*
* {
    outline: 1px solid #ff0099;
}
*/
/*
 * common class
 */
a {
    color: var(--rcs-fc-body) !important;
}
p {
    max-width: none !important;
}
.rcs-s0-background {
    --x-width: 100vw;
}
#rcs-s0-wrapper {
    margin: var(--rcs-s0-head-size) 0 0 0;
    --x-max-width: 100%;
    background-color: var(--rcs-bgc-body);
}
@media screen and (min-width: 916px) {
    #rcs-s0-wrapper {
        margin: var(--rcs-s0-head-size) 0 0 0;
    }
}
@media screen and (min-width: 481px) and (max-width: 915px) {
    #rcs-s0-wrapper {
        margin: var(--rcs-s0-head-size-md) 0 0 0;
    }
}
@media screen and (max-width: 480px) {
    #rcs-s0-wrapper {
        margin: var(--rcs-s0-head-size-sm) 0 0 0;
        overflow-x: hidden;
    }
}
#rcs-s0-wrapper__main {
    margin: 0 6vw;
}
.rcs-s0-stacker {
    margin: 30px 0 0 0;
}
@media screen and (min-width: 916px) and (max-width: 1024px) {
    .rcs-s0-stacker {
        margin: 20px 0 0 0;
    }
}
@media screen and (max-width: 915px) {
    .rcs-s0-stacker {
        margin: 20px 0 0 0;
    }
}
@media screen and (min-width: 481px) and (max-width: 915px) {
    .rcs-s0-stacker {
        margin: 20px 0 0 0;
    }
}
@media screen and (max-width: 480px) {
    .rcs-s0-stacker {
        margin: 20px 0 0 0;
    }
    #rcs-s0-wrapper__main {
        margin: 10px;
    }
}

/*
 * Footer メニュー
 */
rcs-footer.footer {
    --background-color: var(--rcs-bgc-footer);
    --margin: 20px 0 0 0;
}
rcs-footer::part(toprow) {
    display: none;
}
rcs-footer::part(bottom) {
    padding: 10px 0 10px 10px;
}
.rcs-s0-footer-ul li {
    font-size: var(--rcs-s1);
    list-style: none;
}
@media screen and (min-width: 916px) and (max-width: 1024px) {
}
@media screen and (max-width: 915px) {
}
@media screen and (min-width: 481px) and (max-width: 915px) {
}
@media screen and (max-width: 480px) {
    rcs-footer.footer {
        margin: 10px 0 10px;
    }
}
/*
 rcs-hzmenu メニューコンポーネント
*/
rcs-hzmenu.hzmenu {
    --height: var(--rcs-s0-head-size);
    display: flex;
    position: fixed;
    list-top: 50px;
    background-color: var(--rcs-bgc-body);
}
rcs-hzmenu::part(logo) {
    margin: 20px 10px;
    flex-basis: 20%;
}
rcs-hzmenu::part(list) {
    flex-basis: 70%;
}
rcs-hzmenu::part(info) {
    /* NOT USED */
    flex-basis: 10%;
}
.rcs-s0-hzmenu-logo {
    margin: 1px 0 0 3px;
    --x-width: 100%;
    width: 233px;
}
.rcs-s0-hzmenu-list-ul {
    display: flex;
    margin: 50px 0 0 100px;
}
.rcs-s0-hzmenu-list-ul li {
    list-style: none;
    font-size: var(--rcs-s1);
}
.rcs-s0-hzmenu-info-ul {
    display: flex;
    margin: 50px 0 0 0;
}
.rcs-s0-hzmenu-info-ul li {
    list-style: none;
    font-size: var(--rcs-s1);
    height: 50px;
}
rcs-hzmenu ul li:not(:last-child) {
    margin-right: 1.5rem;
}
.rcs-s0-hzmenu-facebook {
    fill: #3b579d;
    width: 50px;
    height: 50px;
    position: relative;
    --x-top: 10px;
}
.rcs-s0-hzmenu-instagram {
    fill: #3b579d;
    width: 50px;
    height: 50px;
    position: relative;
    --x-top: 10px;
}
rcs-hzmenu a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
rcs-hzmenu a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 5px;
    margin: auto;
    content: "";
    background-color: skyblue;
    transition: width 0.2s;
}
rcs-hzmenu a:hover {
    color: skyblue;
}
rcs-hzmenu a:hover::after {
    width: 100%;
}
@media screen and (min-width: 916px) and (max-width: 1024px) {
}
@media screen and (min-width: 481px) and (max-width: 915px) {
    rcs-hzmenu.hzmenu {
        --height: var(--rcs-s0-head-size-md);
    }
    rcs-hzmenu::part(logo) {
        flex-basis: 30%;
    }
    rcs-hzmenu::part(info) {
        display: block;
        position: absolute;
        right: 100px;
        top: 5px;
    }
    .rcs-s0-hzmenu-facebook {
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 480px) {
    rcs-hzmenu.hzmenu {
        --height: var(--rcs-s0-head-size-sm);
    }
    rcs-hzmenu::part(logo) {
        flex-basis: 60%;
    }
    rcs-hzmenu::part(info) {
        display: block;
        position: absolute;
        top: 20px;
        right: 50px;
    }
    rcs-hzmenu ul li:not(:last-child) {
        margin: 0;
    }
    .rcs-s0-hzmenu-info-ul {
        display: flex;
        margin: 10px 0 0 0;
    }
    .rcs-s0-hzmenu-info-ul li {
        list-style: none;
        font-size: var(--rcs-s1);
        height: 30px;
    }
    .rcs-s0-hzmenu-facebook {
        width: 30px;
        height: 30px;
    }
    .rcs-s0-hzmenu-instagram {
        height: 30px;
    }
    rcs-hzmenu::part(logo) {
        width: 50%;
    }
}
/*
 * ハンバーガーメニュー
 */
rcs-hbmenu.hbmenu {
    line-height: 1.33;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
    /* ３本線の色 */
    --line-color: lightpink;
    --icon-color: white;
    --icon-top: 50px;
    --menu-background-color: silver;
}
/* ナビメニュー */
rcs-hbmenu::part(nav) {
    color: #313131;
    font-size: var(--rcs-s2);
    top: 60px;
}
/* ３本線の表示位置 */
rcs-hbmenu::part(cb-open) {
    top: 50px;
    right: 10px;
}

@media screen and (min-width: 481px) and (max-width: 915px) {
    rcs-hbmenu.hbmenu {
        display: block;
        --icon-top: 50px;
        --icon-right: 10px;
    }
    rcs-hbmenu::part(cb-open) {
        right: 20px;
    }
    .rcs-s0-hbmenu-list-ul li {
        margin-left: 10px;
        font-size: var(--rcs-s2);
    }
}
@media screen and (max-width: 480px) {
    rcs-hbmenu.hbmenu {
        display: block;
        --icon-top: 10px;
        --icon-right: 5px;
    }
    .rcs-s0-hbmenu-list-ul li {
        margin-left: 10px;
        font-size: var(--rcs-s2);
        line-height: 5rem;
    }
    .rcs-s0-hbmenu-list-ul li p {
        margin-left: 100px;
        font-size: var(--rcs-s1);
    }
    rcs-hbmenu::part(cb-open) {
        right: 10px;
        top: 25px;
    }
}
/*
 */
.rcs-s0-shopinfo {
    clear: both;
    width: 100%;
    text-align: left;
    margin: 10px 10px 5px 80px;
    font-size: calc(10px + 4 * (100vw - 380px) / 820);
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝",
        "MS PMincho", sans-serif;
}
.rcs-s0-shopinfo div dt {
    float: left;
}
.rcs-s0-shopinfo div dd {
    padding-left: 5em;
}
.rcs-s0-title {
    margin: 10px 0 0 0;
    font-size: calc(20px + 4 * (100vw - 380px) / 820);
}
.rcs-s0-title::before {
    content: url("");
    background-image: url("../assets/svg/keyaki-hato-pink.svg");
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin: 0 7px 8px 0;
    background-size: contain;
    vertical-align: middle;
}
.rcs-s0-subtitle {
    margin: 0 0 0 1rem;
    font-size: calc(20px + 4 * (100vw - 380px) / 820);
}
.rcs-s0-subtitle::before {
    content: url("");
    background-image: url("");
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0;
    background-size: contain;
    vertical-align: middle;
}
.rcs-s0-flexbox {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
@media screen and (max-width: 480px) {
    .rcs-s0-flexbox {
        flex-direction: column;
    }
}
.rcs-s0-contents-wrapper {
    margin: 5px 10px 5px;
    max-width: 98vw;
    padding-right: 0px;
    padding-left: 0px;
    flex-direction: row;
}

@media screen and (max-width: 480px) {
    .rcs-s0-contents-wrapper {
        margin: 0px 0px;
    }
}

/* 共通のアイコンエフェクト */
/* Style all font awesome icons */
.rcs-s0-faicon {
    padding-left: 20px;
    display: inline-block;
    font-size: 2rem;
    --text-decoration: none;
}

/* Add a hover effect if you want */
.rcs-s0-faicon:hover {
    opacity: 0.7;
}

/* Set a specific color for each brand */

/* Instagram */
.rcs-s0-fa-instagram {
    color: #c6529a;
}
.rcs-s0-fa-instagram a {
    display: inline-block;
}
/* Facebook */
.rcs-s0-fa-facebook {
    --background: #3b5998;
    color: white;
}

/* Twitter */
.rcs-s0-fa-twitter {
    color: #55acee;
}
