/**
         * メインカラー：#F6ADC6　撫子色(246, 173, 198)
         * アクセントカラー：#006e54　萌葱色 R:0 G:110 B:84
         *
         * メインカラー：#262626　鉄黒(38, 38, 38)
         * アクセントカラー：#F6ADC6　撫子色(246, 173, 198)
         * アクセントカラー：#F05F8D　ローズレッド
         * アクセントカラー2：#006e54　萌葱色 R:0 G:110 B:84
         *
         **/

/** ※重要※ **/
body {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}
main {
    flex: 1;
}
.h-5 {
    height: 5%;
}
.h-10 {
    height: 10%;
}
.h-15 {
    height: 15%;
}
.h-20 {
    height: 20%;
}
.h-33 {
    height: 33.33%;
}
.h-40 {
    height: 40%;
}
.h-45 {
    height: 45%;
}
.h-50 {
    height: 50%;
}
.h-60 {
    height: 60%;
}
.h-65 {
    height: 65%;
}
.h-70 {
    height: 70%;
}
/* ヘッダーサブタイトル文字変更 */
@media screen and (max-width: 767.98px) {
    h6 {
        font-size: 0.95rem;
    }
}
/* パンくず[/] */
.breadcrumb {
    display: block;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    /* IE, Edge スクロールバーを非表示 */
    scrollbar-width: none;
    /* Firefox スクロールバーを非表示 */
    -ms-overflow-style: none;
}
.breadcrumb::-webkit-scrollbar {
    /* Chrome, Safari スクロールバーを非表示 */
    display:none;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.breadcrumb .breadcrumb-item {
    display: inline-block;
    color: #fff;
}
.breadcrumb-item a {
    color: #fff;
}
@media screen and (max-width: 767.98px) {
    .breadcrumb {
        font-size: 0.9rem;
    }
}
/* ヘッダー */
.bg-header {
    /*background-color: #F6ADC6 !important;*/
    background-color: #262626 !important;
}
.bg-header-top {
    background-color: #262626 !important;
    height: 100vh;
}

.header-img {
    width: 180px;
}
.header-text {
    color: #F6ADC6 !important;
    padding-top: 0.25rem;
    text-align: left;
}

.header-icon {
    margin: 0;
}
.header-icon img {
    width: 180px;
}
.header-icon dt {
    text-align: center;
}
.header-icon dd {
    margin: 0;
    color: #F6ADC6 !important;
    padding-top: 0.25rem;
    white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
    .header-icon img {
        width: 120px;
    }
    .header-img {
        width: 120px;
    }
}
.header-area-icon {
    display: none;
}
.header-area-menu {
    display:none;
}
.header-area-shop {
    display:none;
}

.header-area-menu ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header-area-menu .menu-item {
    height: 100%;
    margin: 0;
}
.menu-item .item-img {
    height: 75%;
    margin: 0;
}
.menu-item .item-img a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-item .item-img img {
    width: 100%;
    height: 100%;
    max-width: 75px;
    max-height: 75px;
}
.menu-item .item-detail {
    height: 25%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ヘッダー改行調整 */
.navbar-brand {
    white-space: normal;
}
.navbar-collapse {
    white-space: nowrap;
}

/* テキストアクセントカラー */
.text-accent {
    color: #006e54 !important;
}

/* 枠線アクセントカラー */
.border-accent {
    border-color: #006e54 !important;
}
.border-accent2 {
    border-color: #F05F8D !important;
}
.border-2 {
    border-width:2px !important;
}

/* ボタン */
.btn-outline-accent {
    color: #F05F8D;
    border-color: #F05F8D;
    background-color: transparent;
    background-image: none;
}
.btn-outline-accent:hover {
    color: #fff;
    background-color: #F05F8D;
    border-color: #F05F8D;
}
.btn-outline-accent:focus {
    box-shadow: 0 0 0 0.2rem rgba(240, 95, 141, 0.5);
}
.btn-outline-accent:disabled {
    opacity: 0.65;
    color: #F05F8D;
    background-color: #fff;
}
.btn-outline-accent2 {
    color: #006e54;
    background-color: transparent;
    background-image: none;
    border-color: #006e54;
}
.btn-outline-accent2:hover {
    color: #fff;
    background-color: #006e54;
    border-color: #006e54;
}
.btn-outline-accent2:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 110, 84, 0.5);
}
.btn-accent {
    color: #fff;
    background-color: #006e54;
    border-color: #006e54;
}
.btn-accent:hover {
    color: #fff;
    background-color: #006e54;
    border-color: #006e54;
}
.btn-accent:focus, .btn-accent.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 110, 84, 0.5);
}
.btn-accent2 {
    color: #fff;
    background-color: #F05F8D;
    border-color: #F05F8D;
}
.btn-accent2:hover {
    color: #fff;
    background-color: #F05F8D;
    border-color: #F05F8D;
}
.btn-accent2:focus, .btn-accent2.focus {
    box-shadow: 0 0 0 0.2rem rgba(240, 95, 141, 0.5);
}

.area-menu-control span {
    font-size: 0.75rem;
    white-space: nowrap;
}

.area-order-confirm p {
    word-break: break-all;
}

/** カート **/
.cart-badge{
    color: #fff;
    padding: 0.25em 0.4em;
    font-size: 60%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50%;
    position:absolute;
    top: -3px;
    left: 60%;
}
.cart-badge:empty {
    display: none;
}

.cart-list .cart-menu {
    word-break: break-all;
}
.cart-list .cart-shop {
    display: block;
    color: #6c757d;
    word-break: break-all;
    line-height: 1.2;
}

.cart-list img {
    max-height: 140px;
}

.cart-list .close {
    outline: none;
}

/** ステップフロー **/
.step-bar {
    display: flex;
    position: relative;
    text-align: center;
    padding: 0;
}
.step-bar li {
    font-size: 12px;
    list-style: none;
    position: relative;
    width: 33.333%;
}
.step-bar li:after {
    background: #D0E1F9;
    content: "";
    width: calc(100% - 62px);
    height: 5px;
    position: absolute;
    left: calc(-50% + 32px);
    top: 27px;
}
.step-bar li:first-child:after {
    display: none;
}
.step-bar li span {
    font-weight: bold;
    background: #D0E1F9;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 5px;
    padding: 20px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 999;
}
.step-bar .visited:after {
    background: #F6ADC6;
}
.step-bar .visited span {
    background: #F6ADC6;
}

.step-flow {
    display: flex;
    position: relative;
    text-align: center;
    padding: 0;
}
.step-flow li {
    font-weight: bold;
    list-style: none;
    position: relative;
    width: 33.333%;
}
.step-flow li:after {
    background: #F6ADC6;
    content: "";
    width: calc(100% - 10px);
    height: 2px;
    position: absolute;
    left: calc(-50% + 5px);
    top: calc(50% - 5px);
}
.step-flow li:first-child:after {
    display: none;
}
.step-flow li p {
    margin: 0;
}
.step-flow li span {
    font-weight: bold;
    background: #F6ADC6;
    color: #ffffff;
    display: inline-block;
    margin-top: 4px;
    margin-bottom: 0.5rem;
    padding: 6px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 999;
}

.menu-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1.3em;
}
.menu-list .img-menu {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 150px;
}
.menu-list .img-shop {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 32px;
}
@media screen and (max-width: 767.98px) {
    .menu-title {
        font-size: 0.75rem;
        line-height: 1.2em;
    }
    .menu-detail{
        font-size: 0.75rem;
        line-height: 1.2em;
    }
    .menu-list .shop-name {
        font-size: 0.55rem;
        line-height: 1.2em;
    }
    .menu-list .img-shop {
        max-height: 16px;
    }
}

footer {
    /*margin-top: auto;
    padding: 30px 0;
    background: #89c7de;
    color: #fff;
    text-align: center;*/
}


.footer-menu {
    margin:0;
    padding:0;
    background-color:#fff;/*背景色*/
    border-top:2px solid #6c757d;/*バーの上の線*/
    border-bottom:2px solid #6c757d;/*バーの下の線*/
    z-index:0;
}
.footer-menu li {
    list-style-type:none;
    text-align:center;
    line-height:5px;
}
.footer-menu li a {
    color:#6c757d;/*アイコン＆文字の色*/
    text-decoration:none;
}
.footer-menu li a:hover {
    color:#a9a9a9;/*マウスオーバー時の色*/
}
.footer-menu .footer-text {

}
.footer-menu dl {
    margin: 0;
}
.footer-menu dt {
    font-size:20px;/*アイコンのサイズ*/
}
.footer-menu dd {
    margin: 0;
    padding-top: 0.5rem;
    font-size:10px;
}

/* liScroll styles */
.tickercontainer { /* the outer div with the black border */
    /*border: 1px solid #000;
    background: #fff;*/
    background: #262626;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
    /*position: relative;
    left: 10px;
    top: 8px;
    overflow: hidden;*/
}
ul.newsticker { /* that's your list */
    position: relative;
    left: 100%;
    font: bold 10px Verdana;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.newsticker li {
    float: left; /* important: display inline gives incorrect results when you check for elem's width */
    margin: 0;
    padding: 0;
    /*background: #fff;*/
    background: #262626;
    font-size:1rem;
    /*color: #F6ADC6;*/
    color:  #fff;
    white-space:nowrap;
}
ul.newsticker a {
    white-space: nowrap;
    padding: 0;
    color: #ff0000;
    font: bold 10px Verdana;
    margin: 0 50px 0 0;
}




/* 装飾 */

.section-info {
    line-height: 1.2;
}

.shop-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.shop-list li{
    opacity: 0;
}
.shop-list .title {
    font-size: 0.75rem;
    text-align: left;
    line-height: 1.3em;
    overflow-x: scroll;
    /** 改行させない設定 **/
    /*word-break: keep-all;
    white-space: nowrap;*/
    /* IE, Edge スクロールバーを非表示 */
    scrollbar-width: none;
    /* Firefox スクロールバーを非表示 */
    -ms-overflow-style: none;
}
.shop-list .title::-webkit-scrollbar {
    /* Chrome, Safari スクロールバーを非表示 */
    display:none;
}
.shop-list .img-height {
    height: 110px
}
.shop-list img {
    max-height: 105px
}
@media screen and (max-width: 767.98px) {
    .shop-list .title {
        font-size: 0.75rem;
        line-height: 1.2em;
    }
    .shop-list .img-height {
        height: 90px
    }
    .shop-list img {
        max-height: 85px
    }
}


.head {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.head2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.head span,.head2 span {
    display: inline-block;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #006e54;
}

@media screen and (max-width: 767.98px) {
    .head2 {
        font-size: 1.1rem;
    }
}

/* タイムライン */

.timeline {
    margin: 0 auto;
    padding:0 30px;
}

.timeline li {
    /*線の起点とするためrelativeを設定*/
    position: relative;
    list-style: none;
    padding:0 0 10px 0;
}

.timeline dl {
    margin:0 0 0px 3em;
}

.timeline dd {
    display: block;
    padding:10px 0;
    margin-bottom: 0;
}

.border-line {
    /*線の位置*/
    position: absolute;
    left:0.25em;
    top:12px;
    width:2px;/*線の太さ*/
    height:0;/*はじめは高さを0に*/
    background: #F6ADC6;
}

.timeline li::after {
    content:'';
    position: absolute;
    top:7px;
    left:0;
    width:10px;
    height: 10px;
    background:#F6ADC6;
    border-radius: 50%;
}

/* Pagination */

.p-link {
    padding:0.4rem 0.75rem;
    border-radius: 20px;
    background: #fff;
    color: #F6ADC6;
    border: 1px solid #F6ADC6;
}
.p-link:hover {
    background: #F6ADC6;
    color: #fff;
}

.page-active {
    background: #F6ADC6;
    color: #fff;
}

/* スライダー */

.shop-slider .slick-list,
.shop-slider .slick-track {
    height: 100%;
}

.shop-slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.shop-slider img {
    width: 30vw;
    height: auto;
    max-height: 100%;
}

@media screen and (max-width: 576px) {
    .shop-slider img {
        width: 30vw;
    }
}

.shop-slider .slick-slide {
    transform: scale(0.8);
    transition: all .5s;
    opacity: 0.5;
}

.shop-slider .slick-slide.slick-center {
    transform: scale(1);
    opacity: 1;
}

.step-slider {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.step-slider li {
    width: 400px;
    padding: 0 4rem;
}

.step-slider img{
    max-height: 160px;
}

.step-slider .slick-list,
.step-slider .slick-track {
    width: 100%;
    height: 100%;
}

.step-slider .slick-prev,
.step-slider .slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    background: #006e54;
    border-radius: 15px;
    font-weight: bold;
    height: 30px;
    width: 30px;
    padding-bottom: 0px;
    z-index: 999;
}

.step-slider .slick-prev {
    left: 1.5%;
}
.step-slider .slick-next {
    right: 1.5%;
}

.step-slider .slick-disabled {
    display: none !important;
}

/* アコーディオン */

.accordion-area {
    list-style: none;
    width: 100%;
    margin:0 auto;
    padding: 0;
}

.accordion-area li {
    margin: 0;
}

.accordion-area section {
    border: 1px solid #ccc;
}

.accordion-title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}
.accordion-title::before,
.accordion-title::after {
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;

}
.accordion-title::before {
    top:48%;
    left: 15px;
    transform: rotate(0deg);

}
.accordion-title::after {
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
.accordion-title.accordion-close::before {
    transform: rotate(45deg);
}
.accordion-title.accordion-close::after {
    transform: rotate(-45deg);
}
.accordion-box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
    margin:0 3% 3% 3%;
    padding: 3%;
}
.accordion-box li {
    background: #f3f3f3;
}

/** タブ **/

.member-tab a {
    display: block;
    width: 100%;
    font-size: 12px;
    text-align: center;
    background: #fff;
    color: #006e54;
    padding:10px 20px;
    border: 2px solid #006e54;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}
.member-tab li {
    list-style:none;
}
.member-tab li.active a {
    font-weight: bold;
    background:#006e54;
    color: #fff;
    text-decoration: none;
}
.tab-area {
    display: none;/*はじめは非表示*/
    opacity: 0;/*透過0*/
}
.tab-area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/** アニメーション **/

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.flip {
    transform: translate3d(0,0,0);
}

.flipRight {
    animation-name: flipRightAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    perspective-origin: right center;
    opacity: 0;
}

@keyframes flipRightAnime {
    from {
        transform: perspective(600px) translate3d(0,0,0) rotateY(-30deg);
        opacity: 0;
    }
    to {
        transform: perspective(600px) translate3d(0,0,0) rotateY(0deg);
        opacity: 1;
    }
}

.detail-menu a {
    font-size: 1rem;
    font-weight: bold;
}

/*リンクの形状*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#F6ADC6;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 1000;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(200px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
    from {
        opacity: 0;
        transform: translateY(200px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove{
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(200px);
    }
}