@charset "utf-8";
/* 
*  SP first
*/

/* layout（共通）
---------------------------------------------------------------- */
.pd-tb{padding-top: 3em;padding-bottom: 3em;}
.pd-tp{padding-top: 3em;}
.pd-bt{padding-bottom: 3em;}

.lh16{line-height: 1.6;}
.lh20{line-height: 2;}

.top-hero,.sub-hero{width:100%;}

/* pc */
@media only screen and (min-width: 1025px){
    .top-hero,.sub-hero{margin-top: 100px;}
    .page-main .b--wrapper{display: flex;flex-wrap: wrap;}
    .page-main .b--wrapper .menu{width: 20%;}
    .page-main .b--wrapper .main-contents{width: 77%;margin-left: 3%;}
    .page-main .b--wrapper .main-contents2{width: 100%;margin-top: 100px;}
}

/* Style（共通）
---------------------------------------------------------------- */
button {
background: none;
border: none;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
select,input{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
outline: none;
background: transparent;
}
select:focus,input[type="text"]:focus{outline: none;}
.cl-red{color: #E63228;}
.cl-blue{color: #497B9B;}
.next{position: relative;}
span.next::after{
    content: "";
    position: absolute;
    color: #333;
    border-top: 1px solid #333;
    border-right: 1px solid #333F;
    width: .5em;
    height: .5em;
    top: 0;
    bottom: 0;
    right: -1em;
    margin: auto;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.underline{text-decoration: underline;}
.external-link::after{
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f35d";
    margin-left: .5em;
}
.ttl-icon{
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}
.ttl-icon::before{
    content: '';
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    margin-right: .5em;
}
.box-01{padding: 2em 1em;border: #497B9B 1px solid;}
.box-02{padding: 2em 1em;border: #CDCDCD 1px solid;}

/* header
---------------------------------------------------------------- */
.header{
    background: #fff;
    margin-top: 65px;
    width: 100%;
    padding: 15px 10px;
}
.header-top{font-size: 1.2rem;}
.header h1{margin-top: 10px;}

@media only screen and (min-width: 1025px){
    .header{
        position: fixed;
        top: 0;
        left: 0;
        margin-top: 0;
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        z-index: 999;
        box-shadow: 0px 0px 15px -5px #8f8f8f;
    }
    .header h1{text-align: left;margin-top: 5px;}
    .header .search-form>div{padding: 0;}
    .header nav{display: flex;min-width: 600px;}
    .header nav .search-form{width: 45%;}
    .header nav .nav-list{width: 55%;padding-left: 5%;}
    .header nav .nav-list li{width: calc(100%/4);}
}

/* nav
---------------------------------------------------------------- */
.nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #F5F5F5;
    padding: 0 3%;
    z-index: 999;
}
.nav-list{display: flex;width: 100%;height: 100%;}
.nav-list li{width: calc(100%/5);}
.nav-list li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.nav-list li a img{width: 28px;height: 28px;}
.nav-list li a span{display: inline-block;font-size: 1rem;margin-top: 5px;}

@media only screen and (min-width: 1025px){
    .nav-list li a span{font-size: 1.2rem;}
}

/* menu
---------------------------------------------------------------- */
.menu{
    position: fixed;
    z-index: 9999;
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;
    transition: all 0.6s;
    background: #fff;
}
.menu.active{right: 0;}
.menu.active .menu-list{
    position: fixed;
    z-index: 9999; 
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.menu-top{
    background: #F5F5F5;
}
.menu-close{
    display: flex;
    align-items: center;
    padding: 1em 1em .8em;
}
.menu-close span {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: .5em;
}
.menu-close span::before, .menu-close span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #333;
}
.menu-close span::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.menu-close span::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.menu-close p{font-size: 1.4rem;}

/* search form ---------------------- */
.search-form{
    width: 100%;
    text-align: center;
}
.search-form>div{display: flex;padding: 0 1em 1em;}
.search-form input[type="text"] {
    width: 85%;
    height: 40px;
    font-size: 1.6rem;
    background:#fff;
    border-top: 1px solid #6E6E6E;
    border-left: 1px solid #6E6E6E;
    border-bottom: 1px solid #6E6E6E;
    border-right: none;
    padding: .5em 1em;
    border-radius: 5px 0 0 5px;
    box-shadow: none;
    -webkit-appearance:none;
    box-sizing: border-box;
}
.search-form input[type="submit"] {
    width: 15%;
    height: 40px;
    font-size: 2.2rem;
    background: #6E6E6E;
    color:#fff;
    border-top: 1px solid #6E6E6E;
    border-right: 1px solid #6E6E6E;
    border-bottom: 1px solid #6E6E6E;
    border-left: none;
    box-shadow: none;
    border-radius: 0 5px 5px 0;
    box-sizing: border-box;
}
.search-form input[type="submit"]:hover{cursor:pointer;}
.search-form input[type=text]:focus {
    outline: none;
}
/* menu list ---------------------- */
.menu-list{padding: 2em 0;}
.menu-list-ttl{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1em;
    background: #F5F5F5;
}
.menu-list-ttl::before{
    content: '';
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    margin-right: .5em;
}
.menu-list-ttl.shopping::before{
    background: url(../images/common/menu_ttl_shopping.svg) center center no-repeat;
    background-size: contain;
}
.menu-list-ttl.book::before{
    background: url(../images/common/menu_ttl_book.svg) center center no-repeat;
    background-size: contain;
}
.menu-list-ttl.information::before{
    background: url(../images/common/nav_03.svg) center center no-repeat;
    background-size: contain;
}
.menu-list li ul{background: #fff;padding: .5em 0 .5em 2.9em;}
.menu-list li ul li a{
    display: block;
    width: 100%;
    padding: .5em 0 .5em .5em;
}

@media only screen and (min-width: 1025px){
    .menu{position: relative;z-index: 1;top: auto;right: auto;height: auto;}
    .menu-list{padding: 0 0 3em;}
    .menu-list-ttl{padding: .5em;}
    .menu-list>li + li{margin-top: 1em;}
    .menu-list li ul{padding: .5em 0 .5em 2.3em;font-weight: 600;}
    .menu-list li ul li {padding: .3em 0;}
}

/* shop guide
---------------------------------------------------------------- */
/* title ---------------------- */
.se-sg .ttl-icon::before{
    background: url(../images/common/ttl_sg.svg) center center no-repeat;
    background-size: contain;
}

.se-sg .col--4-2-1 .col--item a{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    padding: 2em 1em;
    border-bottom: #CDCDCD 1px solid;
}
.sg-img{width: 25%;}
.sg-txt{
    width: 75%;
    padding-left: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sg-txt h4{font-size: 1.6rem;}
.sg-txt p{font-size: 1.4rem;}

@media only screen and (min-width: 769px){
    .se-sg .col--4-2-1{margin-top: 3em;}
    .se-sg .col--4-2-1 .col--item a{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .se-sg .col--4-2-1 .col--item:nth-of-type(2n-1) a{border-right: #CDCDCD 1px solid;}
    .se-sg .col--4-2-1 .col--item:nth-of-type(n+3) a{border-bottom: none;}
    .sg-img{width: 50%;text-align: center;}
    .sg-txt{padding-left: 0;align-items: center;}
    .sg-txt h4{font-size: 1.6rem;margin-top: 2em;}
    .sg-txt p{font-size: 1.4rem;}
}
@media only screen and (min-width: 1025px){
    .se-sg .col--4-2-1 .col--item a{border-bottom: none;border-right: #CDCDCD 1px solid;}
    .se-sg .col--4-2-1 .col--item:first-of-type a{border-left: #CDCDCD 1px solid;}
}

/* footer
---------------------------------------------------------------- */
.footer{background-color: #333;padding: 1em 0 .5em;width: 100%;}
.footer-link{display: flex;flex-wrap: wrap;}
.footer-link li{margin-top: .6em;}
.footer-link li a{display: block;font-size: 1.2rem;color: #fff;width: 100%;height: 100%;padding: 0 .5em;border-right: 1px solid #fff;}
.footer-link li:last-of-type a{border-right: none;}
.footer address{font-size: 1.2rem; margin-top: 50px; background:#333; color: #FFF; padding: 5px;text-align: center;}

@media only screen and (min-width: 1025px){
    .footer-link{justify-content: center;}
    .footer-link li a{padding: 0 1em;}
}


/* Top-hero
---------------------------------------------------------------- */
/* slider-top-hero */
.slider-top-hero{position:relative;z-index: 1;width: 100%;}
.slider-top-hero .slider-item{
    width: 100%;
    max-width: 1025px;
    padding-top: 12%;
    position:relative;
}
.slider-top-hero .slider-item01{
    background:url(../images/top/slide_01.jpg) center center no-repeat;
    background-size: cover;
}
.slider-top-hero .slider-item02{
    background:url(../images/top/slide_02.jpg) center center no-repeat;
    background-size: cover;
}
.slider-top-hero .slider-item03{
    background:url(../images/top/slide_03.jpg) center center no-repeat;
    background-size: cover;
}
.slider-top-hero .slider-item04{
    background:url(../images/top/slide_04.jpg) center center no-repeat;
    background-size: cover;
}
.slider-top-hero .slider-item05{
    background:url(../images/top/slide_05.jpg) center center no-repeat;
    background-size: cover;
}
.slider-top-hero .slider-item06{
    background:url(../images/top/slide_06.jpg) center center no-repeat;
    background-size: cover;
}
.slider-top-hero a{
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 1024px){
    .slider-top-hero a:hover{
        opacity:.5;
    }
}
.slider-top-hero .slick-dots{
	position: relative;
	z-index: 3;
    text-align: center;
	margin: 20px 0 0 0;
}
.slider-top-hero .slick-dots li {
    display:inline-block;
	margin:0 5px;
}
.slider-top-hero .slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;/*ドットボタンのサイズ*/
    height: 8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius: 50%;
    background:#ccc;/*ドットボタンの色*/
    border: none;
    cursor: pointer;
    padding: 3px;
}
.slider-top-hero .slick-dots .slick-active button{
    background: #333;/*ドットボタンの現在地表示の色*/
}

@media only screen and (min-width: 600px){
    .slider-top-hero .slider-item{
        padding-top: 4.5%;
    }
    .slider-top-hero .slider-item01{
        background:url(../images/top/slide_01_pc.jpg) center center no-repeat;
        background-size: cover;
    }
    .slider-top-hero .slider-item02{
        background:url(../images/top/slide_02_pc.jpg) center center no-repeat;
        background-size: cover;
    }
    .slider-top-hero .slider-item03{
        background:url(../images/top/slide_03_pc.jpg) center center no-repeat;
        background-size: cover;
    }
    .slider-top-hero .slider-item04{
        background:url(../images/top/slide_04_pc.jpg) center center no-repeat;
        background-size: cover;
    }
    .slider-top-hero .slider-item05{
        background:url(../images/top/slide_05_pc.jpg) center center no-repeat;
        background-size: cover;
    }
    .slider-top-hero .slider-item06{
        background:url(../images/top/slide_06_pc.jpg) center center no-repeat;
        background-size: cover;
    }
}
@media only screen and (min-width: 1025px){
    .slider-top-hero .slider-item{
        padding-top: 2%;
        margin: 0 15px;
    }
}

/* Top-main-contents
---------------------------------------------------------------- */
/* title ---------------------- */
.se-top-01 .ttl-icon::before{
    background: url(../images/top/ttl_01.svg) center center no-repeat;
    background-size: contain;
    width: 2.1em;
    margin-right: .2em;
}
.se-top-02 .ttl-icon::before{
    background: url(../images/top/ttl_02.svg) center center no-repeat;
    background-size: contain;
}
.se-top-03 .ttl-icon::before{
    background: url(../images/top/ttl_03.svg) center center no-repeat;
    background-size: contain;
}
.se-top-04 .ttl-icon::before{
    background: url(../images/top/ttl_04.svg) center center no-repeat;
    background-size: contain;
}
.se-top-05 .ttl-icon::before{
    background: url(../images/top/ttl_05.svg) center center no-repeat;
    background-size: contain;
}
.se-top-06 .ttl-icon::before{
    background: url(../images/top/ttl_06.svg) center center no-repeat;
    background-size: contain;
}

/* se-top-01 ---------------------- */
#slider-recommend .item-txt-area p,
#slider-shopping-ranking .item-txt-area p{font-size: 1.4rem;}
#slider-recommend .item-txt-area h4,
#slider-shopping-ranking .item-txt-area h4{font-size: 1.6rem;}
#slider-recommend .item-txt-area dl,
#slider-shopping-ranking .item-txt-area d{font-size: 1.4rem;}
#slider-recommend .item-txt-area dl dd span,
#slider-shopping-ranking .item-txt-area dl dd span{font-size: 1.8rem;font-weight: 600;}

/* se-top-02 ---------------------- */
.category-list .col--item{margin-top: 10px!important;}
.category-list .col--item a{
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    border-radius: 8px;
    padding: 2em 1.5em;
}
.category-list .col--item a h4{font-size: 1.4rem;margin-top: 1em;}

/* se-top-03 ---------------------- */
#slider-shopping-ranking,#slider-books-ranking{counter-reset: number 0;}
#slider-shopping-ranking .slider-item::before,
#slider-books-ranking .slider-item::before{
    display: flex;
    align-items: center;
    justify-content: center;
    border: #333 2px solid;
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50%;
    width: 2.2em;
    height: 2.2em;
    counter-increment: number 1;
    content: counter(number);
    margin-bottom: .5em;
}
#slider-shopping-ranking .slider-item:nth-of-type(1)::before,
#slider-books-ranking .slider-item:nth-of-type(1)::before{
    border: #BAA23C 2px solid;
    color: #BAA23C;
}
#slider-shopping-ranking .slider-item:nth-of-type(2)::before,
#slider-books-ranking .slider-item:nth-of-type(2)::before{
    border: #B4B4B4 2px solid;
    color: #B4B4B4;
}
#slider-shopping-ranking .slider-item:nth-of-type(3)::before,
#slider-books-ranking .slider-item:nth-of-type(3)::before{
    border: #A2713F 2px solid;
    color: #A2713F;
}

/* se-top-04 ---------------------- */
#slider-books .item-txt-area dl,
#slider-books-ranking .item-txt-area dl{margin-top: 1em;}
#slider-books .item-txt-area dl dt,
#slider-books-ranking .item-txt-area dl dt{font-size: 1.4rem;}
#slider-books .item-txt-area dl dd,
#slider-books-ranking .item-txt-area dl dd{font-size: 1.6rem;font-weight: 600;}

/* se-top-05 ---------------------- */

/* se-top-06 ---------------------- */
.top-06-ttl{display: flex;justify-content: space-between;align-items: center;}
.top-06-ttl .next a{display: block;width: 100%;height: 100%;padding-right: 1em;font-size: 1.4rem;}
.top-06-ttl .next a::after{
    content: "";
    position: absolute;
    color: #333;
    border-top: 1px solid #333;
    border-right: 1px solid #333F;
    width: .5em;
    height: .5em;
    top: -.1em;
    bottom: 0;
    right: .2em;
    margin: auto;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.se-top-06 .news-list li{
    padding: 1.5em 2em 1.5em 0;
    border-bottom: #CDCDCD 1px solid;
}
.se-top-06 .news-list li a{
    display: block;
    width: 100%;
    height: 100%;
}
.se-top-06 .news-list .date{font-size: 1.4rem;}
.se-top-06 .news-list .content{font-size: 1.6rem;margin-top: .5em;}
.se-top-06 .news-list li.fs-pt-list__item{position:relative;}
.se-top-06 .news-list .next a::after,
.se-top-06 .news-list li.fs-pt-list__item a::after{
    content: "";
    position: absolute;
    color: #333;
    border-top: 1px solid #333;
    border-right: 1px solid #333F;
    width: .5em;
    height: .5em;
    top: 0;
    bottom: 0;
    right: .8em;
    margin: auto;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* slider-mein-section */
.slider-main-section{margin-top: 3em;margin-bottom: 4em;}
.slider-main-section .slider-item {
    margin-right: 10px;
    cursor: pointer;
}
.slider-main-section .slide-arrow{
    position: absolute;
    top: -3em;
    background: #6e6e6e;
    border: #6e6e6e 1px solid;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}
.slider-main-section .slide-arrow.slick-disabled{opacity:.3;}
.slider-main-section .prev-arrow{right: 3.8em;}
.slider-main-section .next-arrow{right: .5em;}
.slider-main-section .slide-arrow span{position: relative;display: block;width: 100%;height: 100%;}
.slider-main-section .slide-arrow span::after{
    content: "";
    position: absolute;
    color: #333;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: .5em;
    height: .5em;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.3s;
}
.slider-main-section .prev-arrow span::after{
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.slider-main-section .next-arrow span::after{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.slider-main-section .slide-arrow:hover span::after{
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.slider-main-section .slick-dots{
    position: absolute;
	z-index: 3;
    width: calc(100% - 7em);
    bottom: -3.2em;
}
.slider-main-section .slick-dots button {
    display: none;
}
.slider-main-section .slick-dots li{
    position: relative;
    display: inline-block;
    height: 2px;
    background: #333;
    pointer-events: none;
}
.slider-main-section .slick-dots li::before{
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #333;
}
.slider-main-section .slick-dots li.slick-active{
    background: #ccc;
}
.slider-main-section .slick-dots li.slick-active::before{
    width: 100%;
}
.slider-main-section .slick-dots li:first-of-type.slick-active{
    background: #333;
}
.slider-main-section .slick-dots li.slick-active ~ li{
    background:#ccc;
}


/* Sub-hero
---------------------------------------------------------------- */
.sub-hero{
    padding: 2em 0 1em;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    border-top: #cdcdcd 2px solid;
}
/* title ---------------------- */
.ttl-sub{
    position: relative;
    font-size: 2rem;
    text-align: center;
}
.ttl-sub::before{
    content: '';
    position: absolute;
    background: #FDC02F;
    bottom: -25px;
    left: calc(50% - 30px);
    width: 60px;
    height: 2px;
}
@media only screen and (min-width: 600px){
    .sub-hero{padding: 4em 0 2em;}
    .ttl-sub{font-size: 2.4rem;}
}
@media only screen and (min-width: 1025px){
    .sub-hero{padding: 6em 0 4em;border-top: none;}
    .ttl-sub{font-size: 2.8rem;}
}

/* Sub-main-contents
---------------------------------------------------------------- */
/* title ---------------------- */
.ttl-01{
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    padding-left: 1.5em;
}
.ttl-01:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1em;
    height: 2px;
    background: #FDC02F;
    content: '';
}
.ttl-02{
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: .5em;
    border-bottom: #333 1px solid;
}
.ttl-03{
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    padding: .5em 0;
    border-top: #A8A8A8 2px solid;
    border-bottom: #FDC02F 2px solid;
}
.ttl-04{
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    padding: .5em .5em .5em 1em;
    line-height: 1.5;
}

/* background:#F5F5F5; */

.ttl-04:before{
    content:'';
    position:absolute;
    width:6px;
    height:100%;
    top:0;
    left:0;
    background:#FDC02F;
}
.ttl-05{
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    padding: .5em 0;
    border-bottom: #FDC02F 2px solid;
    margin-bottom:1em;
}
.ttl-06{
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    padding: .5em 0 .5em 1em;
}
.ttl-06:before{
    content:'';
    position:absolute;
    width:8px;
    height:8px;
    background:#707070;
    top:0;
    bottom:0;
    left:0;
    margin-top:auto;
    margin-bottom:auto;
}
.ttl-07{
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
}

.b-guidance .ttl-icon::before{
    background: url(../images/common/nav_03.svg) center center no-repeat;
    background-size: contain;
}
.b-online .ttl-icon::before{
    background: url(../images/common/ttl_delivery.svg) center center no-repeat;
    background-size: contain;
}

@media only screen and (min-width: 1025px){
    .ttl-01, .ttl-07{font-size: 2rem;}
    .ttl-02,.ttl-03{font-size: 1.8rem;}
    .ttl-04{font-size: 2.4rem;}
    .ttl-05{font-size: 2.2rem;}
}

/* btn ---------------------- */
.btn{
    position: relative;
    display: block;
    font-size: 1.6rem;
    width: 100%;
    height: 100%;
    max-width: 335px;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 1em;
    margin-right: auto;margin-left: auto;
    cursor: pointer;
}
.btn-next::after{
    content: "";
    position: absolute;
    color: #333;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: .5em;
    height: .5em;
    top: 0;
    bottom: 0;
    right: 1.5em;
    margin: auto;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-black{
    color: #fff!important;
    background: #333;
}
.btn-orange{
    color: #fff!important;
    background: #FA8700;
    font-weight: 600;
}
.btn-blue{
    color: #497B9B!important;
    background: #fff;
    border: #497B9B 2px solid;
    font-weight: 600;
}
.btn-text-uline{
    text-decoration: underline!important;
}
.btn-blue.btn-next::after{border-top: 1px solid #497B9B;border-right: 1px solid #497B9B;}
.btn-white{
    color: #333!important;
    background: #fff;
    border: #333 1px solid;
}
.btn-white.btn-next::after{border-top: 1px solid #333;border-right: 1px solid #333;}
.btn-back{
    color: #333!important;
    width: 180px;
    border: #333 1px solid;
    padding: .8em 2em .8em 1em;
}
.btn-back.btn-next::after{border-top: 1px solid #333;border-right: 1px solid #333;}



/* layout ---------------------- */
.child-page-list .col--item{margin-top: 10px;}
.child-page-list .col--item a{display: block;width: 100%;height: 100%;font-size: 1.6rem;padding: 1em;border: #CDCDCD 1px solid;}
.child-page-list .col--item a .next{font-weight: 600;}
.child-page-list .col--item a p{margin-top: .5em;}

.contact-box .phone-num{display: block;font-size: 3rem;font-weight: 600;color: #497B9B;text-align: center;line-height: 2;}
.contact-box .note{display: block;font-size: 1.4rem;text-align: right;}

@media only screen and (min-width: 481px) and (max-width: 768px){
    .contact-box .phone-num{display: inline-block;padding-left: 1em;font-size: 4rem;}
}
@media only screen and (min-width: 769px){
    .child-page-list .col--item{min-height: 150px;}
    .col--2-2-1.child-page-list .col--item:nth-of-type(2n-1),
    .col--3-2-1.child-page-list .col--item:nth-of-type(2n-1){padding-right: 5px;}
    .col--2-2-1.child-page-list .col--item:nth-of-type(2n),
    .col--3-2-1.child-page-list .col--item:nth-of-type(2n){padding-left: 5px;}
    .contact-box .phone-num{font-size: 4rem;}
}
@media only screen and (min-width: 1025px){
    .col--3-2-1.child-page-list .col--item:nth-of-type(3n-2){padding-left: 0;padding-right: 6px;}
    .col--3-2-1.child-page-list .col--item:nth-of-type(3n-1){padding-left: 3px;padding-right: 3px;}
    .col--3-2-1.child-page-list .col--item:nth-of-type(3n){padding-left: 6px;padding-right: 0;}
}

.staff-list li{border-bottom: #CDCDCD 1px solid;padding: 2em 0;}
.staff-list li:last-of-type{border: none;}
.staff-list li h4{font-size: 1.6rem;}
.staff-col{display: flex;align-items: center;}
.staff-col .col--item{width: 50%;font-size: 1.4rem;}
.staff-col .col--item img{width: 100%;max-width: 150px;}
.staff-col .col--item:nth-of-type(2n-1){padding: 10px;}
.staff-col .col--item:nth-of-type(2n){padding-left: 10px;}
@media only screen and (min-width: 481px){
    .staff-col .col--item:nth-of-type(2n-1){width: 25%;}
    .staff-col .col--item:nth-of-type(2n){width: 75%;}
    .staff-list li h4{font-size: 1.8rem;}
}

.external-link-list li{line-height: 2.5;}

.simple-list-01 dl{padding: 1.5em 0;}
.simple-list-01 dl+dl{border-top: #CDCDCD 1px solid;}
.simple-list-01 dt{font-size: 1.4rem;}
.simple-list-01 dd{font-size: 1.6rem;}

/* dropdown menu ---------------------- */
/* ご案内メニュー */
.dropdown-01,.dropdown-02{position: relative;}
.dropdown-01-btn{
    position: relative;
    display: block;
    background: #fff;
    border: #A8A8A8 1px solid;
    font-size: 1.6rem;
    width: 100%;
    padding: .8em 1em;
    text-align: left;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    margin-bottom:20px;
}
.dropdown-01-btn::after{
    position: absolute;
    top: 42%;
    right: 1em;
    display: block;
    width: .5em;
    height: .5em;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 1px solid #333;
    border-right: 1px solid #333;
}
.dropdown-01-btn.active::after{
    transform: rotate(-45deg);
}
.dropdown-01-list{
    position: absolute;
    width: 100%;
    list-style: none;
    background: #fff;
    top: calc(100% + 5px);
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 99;
}
.dropdown-01-list li{
    overflow: hidden;
    height: 0;
    transition: .2s;
    padding-left:0!important;
    text-indent: 0!important;
}
.dropdown-01-list li::before{
    content:''!important;
    display:none!important;
}
.dropdown-01-list li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: .8em 1em;
}
.dropdown-01-list.active li{
    overflow: visible;
    height: 3.4em;
    border-right: #A8A8A8 1px solid;
    border-left: #A8A8A8 1px solid;
    border-top: #A8A8A8 1px solid;
}
.dropdown-01-list.active li:last-of-type{border-bottom: #A8A8A8 1px solid;}
/* カテゴリ */
.dropdown-02-btn{
    position: relative;
    display: block;
    background: #fff;
    border-top: #A8A8A8 1px solid;
    border-bottom: #A8A8A8 1px solid;
    border-left: none;
    border-right: none;
    font-size: 1.6rem;
    font-weight: 600;
    width: 100vw;
    padding: 1em 1.5em;
    text-align: left;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    margin: 0 calc(50% - 50vw) 1em;
}
.dropdown-02-btn::before,
.dropdown-02-btn::after{
    position: absolute;
    content: "";
    display: block;
    transition: all 0.4s;
    background: #333;
    right: 1.5em;
    top: 50%;
    width: 1em;
    height: 2px;
    transform: translateY(-50%);
}
.dropdown-02-btn::before {
    transform: translateY(-50%) rotate(180deg);
}
.dropdown-02-btn.close::before{
    transform: translateY(-50%) rotate(90deg);
}
.dropdown-02-list{
    display: block;
    border: #CDCDCD 1px solid;
}
.dropdown-02-list li + li{border-top: #CDCDCD 1px solid;}
.dropdown-02-list li a{
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    width: 100%;
    height: 100%;
    padding: 1em;
}
@media only screen and (min-width: 769px){
    .dropdown-02-list{display: flex;flex-wrap: wrap;border: none;}
    .dropdown-02-list li{width: 50%;padding-top: 10px;border: none!important;}
    .dropdown-02-list li:nth-of-type(2n-1){padding-right: 5px;}
    .dropdown-02-list li:nth-of-type(2n){padding-left: 5px;}
    .dropdown-02-list li a{border: #CDCDCD 1px solid;padding: 3em 1.5em;}
}
/* faq */
.qa-list dl {
    position: relative;
    cursor: pointer;
    font-size: 1.6rem;
    margin: 5px calc(50% - 50vw);
}
.qa-list dl::before,
.qa-list dl::after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.4s;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(135deg);
    right: 1.5em;
    top: 1.5em;
    width: .8em;
    height: .8em;
}
.qa-list dl::before{transform: rotate(90deg);}
.qa-list dl.open::before{transform: rotate(180deg);}
.qa-list dl.open:after{transform: rotate(-135deg);}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 1em 3em;
    font-weight: bold;
    background: #F5F5F5;
}
.qa-list dl dt::before {
    font-size: 1.2em;
    line-height: 1;
    position: absolute;
    top: 1em;
    left: 1em;
    display: block;
    content: 'Q';
    color: #FDC02F;
}
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 1.5em;
}
@media only screen and (min-width: 769px){
    .qa-list dl {margin: 5px 0;}
}

@media only screen and (min-width: 769px){
    .se-faq .dropdown-03-list{
        margin-top:30px;
    }
}
.se-faq .dropdown-03-list{
    margin-top:4.22535%;
}

/* ご案内 */
.guidance-about-ttl{
    padding-left: 40px;
    font-size: 1.8rem;
    position: relative;
}
.guidance-about-ttl:before{
    position: absolute;
    top:2px;
    content: url(../images/common/nav_03.svg);
    left: 0;
}
.guidance-about-ttl2:before{
    position: absolute;
    top:2px;
    content: url(../images/common/ttl_delivery.svg);
    left: 0;
}
.guidance-cols{width: 100%;display: flex;flex-wrap: wrap;}
.guidance-cols .col--item:nth-of-type(2n-1){width: 20%;padding-right: 1.5%;}
.guidance-cols .col--item:nth-of-type(2n){width: 80%;padding-left: 1.5%;}
.guidance-cols img{max-width:153px;}

@media only screen and (max-width: 768px){
.guidance-cols .col--item:nth-of-type(2n-1){width: 100%;padding-right: 0;}
.guidance-cols .col--item:nth-of-type(2n){width: 100%;padding-left: 0;}
.guidance-cols .col--item + .col--item{margin-top: 3%;}
}


/* ご利用ガイド */
.se-guide .about-mg-link{
    display:block;
}

/* お客様サポート */
.se-support .support-sample-img img{
    max-width:480px;
    width:100%;
}

/* 会員特典 */
.se-tokuten ul li{
    padding-left: 1em;
    text-indent: -1em;
}
.se-tokuten ul li::before{
    display: inline;
    content: "・";
}

/* お支払い・配送について */
.se-payment .bank-info{
    display:block;
    padding:1.5rem;
    border: 1px solid #000;
}
.se-payment img{
    width:80%;
}
.se-payment ul li{
    padding-left: 1em;
    text-indent: -1em;
}
.se-payment ul li::before{
    display: inline;
    content: "・";
}
@media only screen and (min-width: 520px){
    .se-payment img{
        width:40%;
    }
}

@media only screen and (min-width: 520px){
    .se-payment .bank-info{
        display:inline-block;
        padding:3rem;
    }
}

/* よくあるご質問 */
@media only screen and (min-width: 769px){
    .se-faq-child .dropdown-03-list li{width: 33%;padding-top: 10px;border: none!important;}
    .se-faq-child .dropdown-03-list li:nth-of-type(2n){padding-left: 0;}
    .se-faq-child .dropdown-03-list li:nth-of-type(2n-1){padding-right: 0;}
    .se-faq-child .dropdown-03-list li:nth-of-type(3n-2){padding-right: 5px;}
    .se-faq-child .dropdown-03-list li:nth-of-type(3n-1){padding: 10px 5px 0;}
    .se-faq-child .dropdown-03-list li:nth-of-type(3n){padding-left: 5px;}
    .se-faq-child .dropdown-03-list li a{border: #CDCDCD 1px solid;padding: 3em 1.5em;}
}
.ttl-sub span{
    display: block;
    padding-top:5px;
    font-size: 1.6rem;
}
@media only screen and (min-width: 769px){
    .ttl-sub span{
        font-size: 1.8rem;
    }
}



/* フォーム全体（form-wrapper） */
.form-wrapper{
    padding:40px 2%;
}

@media only screen and (min-width: 769px){
    .form-wrapper{
        padding:40px 10%;
    }
}




/* ログイン */
.login-wrapper{
    border:1px solid #497B9B;
}
.login-wrapper .fs-c-inputField__field{
    border:0;
}
.login-wrapper h2{
    font-size:1.8rem;
    color:#497B9B;
    text-align:center;
}
.login-wrapper .fs-c-textLinkContainer{
    text-align:center;
    margin-top:20px;
}
.login-wrapper .fs-c-textLink{
    text-decoration:underline;
}

.nonmember-wrapper > section{
    border:1px solid #CDCDCD;
    margin-top:30px;
    padding:40px 2%;
}
.nonmember-wrapper h2{
    font-size:1.8rem;
    text-align:center;
    margin-bottom:20px;
}


@media only screen and (min-width: 769px){
    .login-wrapper h2{
        font-size:2.2rem;
    }

    .nonmember-wrapper > section{
        padding:40px 10%;
    }
    .nonmember-wrapper h2{
        font-size:2.2rem;
    }
    .nonmember-wrapper .fs-c-subSection__message{
        text-align:center;
    }
}

/* マイページ */
.mypage-wrapper .fs-c-wishlistProduct{display: none;}
.fs-c-accountService__pageLink__label{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}
.fs-c-accountService__pageLink__label::before{
    content: '';
    display: inline-block;
    width: 5em;
    height: 5em;
    margin-bottom: 1em;
}
.fs-c-accountService__page--wishList .fs-c-accountService__pageLink__label::before{
    background: url(../images/mypage/mypage_01.svg) center center no-repeat;
    background-size: contain;
}
.fs-c-accountService__page--orderHistoryList .fs-c-accountService__pageLink__label::before{
    background: url(../images/mypage/mypage_02.svg) center center no-repeat;
    background-size: contain;
}
.fs-c-accountService__page--pointHistory .fs-c-accountService__pageLink__label::before{
    background: url(../images/mypage/mypage_03.svg) center center no-repeat;
    background-size: contain;
}
.fs-c-accountService__page--addressbook .fs-c-accountService__pageLink__label::before{
    background: url(../images/mypage/mypage_04.svg) center center no-repeat;
    background-size: contain;
}
.fs-c-accountService__page--accountPassword .fs-c-accountService__pageLink__label::before{
    background: url(../images/mypage/mypage_05.svg) center center no-repeat;
    background-size: contain;
}
.fs-c-accountService__page--accountSettingsModify .fs-c-accountService__pageLink__label::before{
    background: url(../images/mypage/mypage_06.svg) center center no-repeat;
    background-size: contain;
}
.fs-c-accountService__page--accountDelete .fs-c-accountService__pageLink__label::before{
    background: url(../images/mypage/mypage_07.svg) center center no-repeat;
    background-size: contain;
}
@media only screen and (min-width: 769px){
    .fs-c-accountService__pageLink__label{font-size: 1.6rem;}
}

/* お客様情報入力 */
.fs-c-memberInfoField .fs-c-agreementConfirmation__password__input{
    border:0;
}
.fs-c-memberInfoField .fs-c-agreementConfirmation__password__input #fs_input_password{
    border: 1px solid #6E6E6E;
}



/* メールマガジン */
.mailmagazine-register{
    background:#F5F5F5;
}
.mailmagazine-register h4{
    margin-bottom:20px;
    font-size:2.0rem;
    font-weight: 600;
}
.mailmagazine-register .fs-c-checkbox{
    display:flex;
    justify-content: center!important;
}

/* 会社概要 */
@media only screen and (max-width: 768px){
    .se-company .iframe--wrap {
        position: relative;
        padding-bottom: 56.25%; 
        height: 0;
        overflow: hidden;
    }
    
    .se-company .iframe--wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* お問い合わせ */
.se-contact .contact-box2{
    padding: 30px 10px;
    border: 1px solid #CDCDCD;
}
.se-contact .contact-box2 .phone-num{
    padding: 0;
    text-align:left;
}
.se-contact .contact-box2 a{
    color: #497B9B;
}
.se-contact .contact-box2 span:last-child{
    padding-top: 35px;
}
@media only screen and (max-width: 792px){
    .se-contact .contact-box2 .se-contact .contact-box2 span:last-child{
        display: inline-block;
    }
}
@media only screen and (max-width: 767px){
    .se-contact .contact-box2{
        display: block;
    }
    .se-contact .contact-box2 span:last-child{
        display: block;
        padding-top:0;
    }
}
.contact-form-box{
    padding:60px 10px;
    border:#CDCDCD 1px solid;
}
.contact-form-box p{
    width:40%;
}
@media only screen and (max-width: 768px){
    .contact-form-box p{
        width:100%;
    }
    .contact-form-box p:first-of-type{
        text-align:center;
        margin-bottom:20px;
    }
}
.se-contact .contact-box2 span{
    width:80%;
    display:block;
    margin-left:auto;
    margin-right:auto;
}
@media only screen and (min-width: 768px){
    .se-contact .contact-box2 span{
        width:auto;
        display:flex;
        margin-left:0;
        margin-right:0;
        align-items:center;
    }
    .se-contact .contact-box2 .phone-num{
        padding: 0 20px;
        text-align:center;
    }
    .se-contact .contact-box2 span:last-child{
        padding-top: 0;
    }
}

/* 代表挨拶 */
.se-message .plan li{
    padding-left: 1em;
    text-indent: -1em;
}
.se-message .plan li::before{
    display: inline;
    content: "・";
}

/* プライバシーポリシー */
.se-privacy ul li{
    padding-left: 1em;
    text-indent: -1em;
}
.se-privacy ul li::before{
    display: inline;
    content: "・";
}
.se-privacy ol{
    list-style-type: none; 
}
.se-privacy ol li{
    counter-increment: number;
}
.se-privacy ol li:before{
    content: counter(number) ".";
    display:inline-block;
    padding-right:5px;
}

/* ご利用規約 */
.se-terms ul li{
    padding-left: 1em;
    text-indent: -1em;
}
.se-terms ul li::before{
    display: inline;
    content: "・";
}
.se-terms ol{
    list-style-type: none; 
}
.se-terms ol li{
    counter-increment: number; 
    padding-left: 3em;
    text-indent: -3em;
}
.se-terms ol li:before{
    content: "（" counter(number) "）";
    display:inline-block;
    width: .8em;
    padding-left: 3em;
    text-indent: -3em;
}























/* article（読みもの）
---------------------------------------------------------------- */
.article-thumb img{width: 100%;}
.article-date{font-size: 1.4rem;margin-top: .5em;}
.article-ttl{font-size: 1.4rem;font-weight: 600;margin-top: .5em;}
.article-content{border-bottom: #CDCDCD 1px solid;padding-bottom: 2em;}
.article-content p{margin-top: 1.5em;line-height: 1.8;}

.se-single .article-ttl{font-size: 1.8rem;margin-top: 1em;}

.se-archive .col--3-2 .col--item a{display: block;width: 100%;height: 100%;}
.se-archive .col--3-2 .col--item:nth-of-type(-n+2){margin-top: 0;}

.pager ul.pagination {
    text-align: center;
    margin: 0;
    padding: 0;
}
.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background:#fff;
    width: 30px;
    height: 30px;
    text-align: center;
    position: relative;
}
.pager .pagination li a{
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display:table;
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    border: #333 1px solid;
}
.pager .pagination li a span{
    display:table-cell;
    vertical-align:middle;
}
.pager .pagination li a:hover,
.pager .pagination li a.active{
    color: #fff;
    background: #333;
}

.article-date-category{
    padding-bottom:10px;
    border-bottom:1px solid #cdcdcd;
    margin-bottom:10px;
    color:#6e6e6e;
}
.article-date-category div:last-child{
    margin-left:10px;
}

.article-kyozai{width: 100%;display: flex;flex-wrap: wrap;padding:20px;border:1px solid #cdcdcd;}
.article-kyozai .col--item:nth-of-type(2n-1){width: 20%;padding-right: 1.5%;}
.article-kyozai .col--item:nth-of-type(2n){width: 80%;padding-left: 1.5%;}
.article-kyozai-link{display:block;}
.article-kyozai-link:hover{transition: 0.3s ease-in-out;opacity: .5;}

.ttl-connection-article,
.ttl-connection-product{
    padding-left: 40px!important;
    font-size: 1.8rem;
    position: relative;
}
.ttl-connection-article:before{
    position: absolute;
    top:-2px;
    content: url(../images/common/menu_ttl_book.svg);
    left: 0;
}
.ttl-connection-product:before{
    position: absolute;
    top:-2px;
    content: url(../images/common/ttl_related.svg);
    left: 0;
}
#slider-connection-article img,
#slider-connection-product img{width:100%;}

@media only screen and (max-width: 767px){
.article-kyozai .col--item:nth-of-type(2n-1){width: 100%;padding-right: 0;}
.article-kyozai .col--item:nth-of-type(2n){width: 100%;padding-left: 0;}
.article-kyozai .col--item + .col--item{margin-top: 3%;}
.article-kyozai h4{margin-top:10px;}
}

@media only screen and (min-width: 769px){
    .se-archive .col--3-2 .col--item:nth-of-type(-n+3){margin-top: 0;}
    .article-ttl{font-size: 1.6rem;}
    .se-single .article-ttl{font-size: 2rem;margin-top: 2em;}
    .article-content{padding-bottom: 3em;}
}




/* ---------------------------------------------------------------- 
*                                                                 *
*   システムパーツCSS
*                                                                 *
---------------------------------------------------------------- */

/* ボタン
---------------------------------------------------------------- */
/* 拡大ボタン */
.btn-expand{
    position: relative;
    width: 3em;
    height: 4em;
}
.btn-expand span{display: none;}
.btn-expand::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f00e";
    font-size: 2.5em;
}

/* お気に入りボタン */
.btn-favorite{
    font-size: 1.4rem;
    background: #fff;
    border: #A8A8A8 1px solid;
    border-radius: 5px;
    padding: .5em 1em;
    cursor: pointer;
    text-align: left;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 200px;
}
.btn-favorite span{display: flex;align-items: center;justify-content: center;position: relative;padding-left: 1.5em;}
.btn-favorite span::before{
    position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f004";
    font-size: 1.5em;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #A8A8A8;
}
.btn-favorite-off span::before{color: #FDC02F;}

/* お気に入りアイコン */
.btn-favorite-icon span{display: none;}
.btn-favorite-icon{position: relative;display: flex;align-items: center;justify-content: center;width: 40px;height: 40px;margin-left: auto;}
.btn-favorite-icon::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f004";
    font-size: 2.5rem;
    color: #A8A8A8;
}
.btn-favorite-icon-off::before{color: #FDC02F;}


/* カートボタン */
.btn-cart{
    font-size: 1.6rem;
    width: 100%;
    color: #fff;
    background: #333333;
    border: none;
    border-radius: 5px;
    padding: 1em;
}
.btn-cart span{display: flex;align-items: center;justify-content: center;}
.btn-cart span::before{
    content: '';
    display: inline-block;
    margin-right: .5em;
    width: 2em;
    height: 1.5em;
    background: url(../images/common/btn-cart.svg) center center no-repeat;
    background-size: contain;
}


/* 並べ替え・ページャー
---------------------------------------------------------------- */
.fs-c-productList .fs-c-productList__controller:nth-of-type(1) {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
}
.fs-c-sortItems {
    width: 100%;
    padding: 0 0 2em;
    font-size: 1.4rem;
}
.fs-c-sortItems__label{
    display: flex;
    padding: 0;
    align-items: center;
}
.fs-c-sortItems__label::before{
    display: inline-block;
    content: '';
    background: url(../images/common/sort.svg) center bottom no-repeat;
    background-size: contain;
    width: 1.2em;
    height: 1.2em;
    margin-right: .5em;
}
.fs-c-sortItems__list {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: #F5F5F5;
    padding: 1em 0;
    margin: 1em calc(50% - 50vw) 0;
}
.fs-c-sortItems__list__item {
    display: inline-block;
    font-size: 1.4rem;
    border-right: 1px solid #a8a8a8;
}
.fs-c-sortItems__list__item:first-child {
    border-left: 1px solid #a8a8a8;
}
.fs-c-sortItems__list__item {
    padding: 0 1em;
}
.fs-c-sortItems__list__item.is-active {
    font-weight: 700;
}
.fs-c-productList .fs-c-productList__controller:nth-of-type(1) .fs-c-listControl {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 2;
    padding: 0;
    font-size: 1.4rem;
}
.fs-c-listControl__status {
    text-align: center;
}

.fs-c-productList .fs-c-productList__controller:nth-of-type(1) .fs-c-pagination{display: none;}
.fs-c-productList .fs-c-productList__controller:nth-of-type(n+2) .fs-c-sortItems,
.fs-c-productList .fs-c-productList__controller:nth-of-type(n+2) .fs-c-listControl__status{display: none;}

.fs-c-productList .fs-c-productList__controller:nth-of-type(n+2){margin-top: 2em;}
.fs-c-pagination{width: 100%;display: block;text-align: center;}
.fs-c-pagination__item{display: inline-block;border-radius: 50%;width: 2em;height: 2em;text-align: center;}
.fs-c-pagination__item.is-active{background: #333;color: #fff;}

.fs-c-subgroup .fs-c-listControl{display: none;}

@media only screen and (min-width: 1025px){
    .fs-c-sortItems__list {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        background: #F5F5F5;
        padding: 1em 0;
        margin: .5em 0;
    }
}


/* breadcrumb
---------------------------------------------------------------- */
.fs-c-breadcrumb{width: 100%;margin-bottom: 1em;}
.fs-c-breadcrumb__list{display: block;width: 100%;}
.fs-c-breadcrumb__list li,.breadcrumb li a{
    display: inline;
    font-size: 1.2rem;
    color: #6E6E6E;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before{content: " > ";}

@media only screen and (min-width: 1025px){
    .fs-c-breadcrumb__list{margin-bottom: 1.5em;}
}

/* 商品一覧
---------------------------------------------------------------- */
/* 商品一覧パーツ */
.fs-c-productList__list{display: flex;flex-wrap: wrap;}
.fs-c-productList__list .fs-c-productList__list__item{width: calc(100% / 2);position: relative;padding-bottom: 40px;}
@media only screen and (min-width: 769px){
.fs-c-productList__list .fs-c-productList__list__item{width: calc(100% / 3);}
}
@media only screen and (min-width: 1025px){
.fs-c-productList__list .fs-c-productList__list__item{width: calc(100% / 4);}
}

.fs-c-productList__list .fs-c-productList__list__item:nth-of-type(2n-1){padding-right: 1.5%;}
.fs-c-productList__list .fs-c-productList__list__item:nth-of-type(2n){padding-left: 1.5%;}
.fs-c-productList__list .fs-c-productList__list__item:nth-of-type(n+3){margin-top: 8%;}

.fs-c-productList__list .item-img-area .fs-c-productListItem__viewMoreImageButton{display: none;}

.fs-c-productList__list .item-txt-area {margin-top: 1em;}
/* 商品名 */
.fs-c-productList__list .item-txt-area .fs-c-productName__copy{font-size: 1.2rem;display: block;font-weight: normal;}
.fs-c-productList__list .item-txt-area .fs-c-productName__name{font-size: 1.6rem;font-weight: 600;display: inline-block;margin-top: .5em;}

/* 商品価格 */
.fs-c-productList__list .item-txt-area .fs-c-productPrice__main__label{font-size: 1.6rem;display:block;}
.fs-c-productList__list .item-txt-area .fs-c-productPrice__main__price{font-size: 2rem;display:inline-block;font-weight: 600;}
.fs-c-productList__list .item-txt-area .fs-c-productPrice--member{color: #E63228;}
.fs-c-productList__list .item-txt-area .fs-c-productPrice__addon__label{font-size: 1.4rem;}

/* お気に入りボタン */
.fs-c-productListItem__control{position: absolute;bottom: 0;right: 0;}


@media only screen and (min-width: 769px){
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(2n-1){padding-right: 0;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(2n){padding-left: 0;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(n+3){margin-top: 0;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(3n-2){padding-right: 1%;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(3n-1){padding-right: .5%;padding-left: .5%;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(3n){padding-left: 1%;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(n+4){margin-top: 5%;}
}
@media only screen and (min-width: 1025px){
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(3n-2){padding-right: 0;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(3n-1){padding-right: 0;padding-left: 0;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(3n){padding-left: 0;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(n+4){margin-top: 0;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(4n-3){padding-right: 1%;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(4n-2),.fs-c-productList__list .fs-c-productList__list__item:nth-of-type(4n-1){padding-right: .5%;padding-left: .5%;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(4n){padding-left: 1%;}
    .fs-c-productList__list .fs-c-productList__list__item:nth-of-type(n+5){margin-top: 5%;}
}

/* 商品詳細
---------------------------------------------------------------- */
/* 拡大ボタン */
.fs-c-productMainImage__expandButton{display: none;}
/* 商品名 */
.fs-c-productNameHeading{line-height: 1;}
/* 商品コピー */
.fs-c-productNameHeading__copy{font-size: 1.4rem;display: block;line-height: 1.4;}
/* 商品名 */
.fs-c-productNameHeading__name{display: block;font-size: 1.8rem;margin-top: .5em;margin-top: .2em;line-height: 1.6;font-weight: 600;}
/* 商品番号 */
.fs-c-productNumber{margin-top: .5em;}
/* 商品マーク */
.fs-c-productMarks{margin-top: 1em;}
/* 商品価格 */
.fs-c-productPrices--productDetail{border-top: #CDCDCD 1px solid;padding: 1em 0;margin-top: 1.5em;text-align: right;}
/* 通常価格 */
.product-item-cont .fs-c-productPrice--selling .fs-c-productPrice__main__price{display: inline-block;font-size: 2.8rem;font-weight: 600;}
.product-item-cont .fs-c-productPrice--selling .fs-c-productPrice__main__label{font-size: 1.6rem;}
.product-item-cont .fs-c-productPrice--selling .fs-c-productPrice__addon__label{font-size: 1.6rem;}
/* 会員価格 */
.product-item-cont .fs-c-productPrice--member{color: #E63228;}
.product-item-cont .fs-c-productPrice--member .fs-c-productPrice__main__price{display: inline-block;font-size: 2.8rem;font-weight: 600;}
.product-item-cont .fs-c-productPrice--member .fs-c-productPrice__main__label{font-size: 1.6rem;}
.product-item-cont .fs-c-productPrice--member .fs-c-productPrice__addon__label{font-size: 1.6rem;}
/* 項目選択肢 */
.fs-c-productSelection{margin-top: 1em;}
.fs-c-productSelection .fs-c-dropdown__menu{font-size: 1.4rem;padding: .5em 1em;border: #A8A8A8 1px solid;border-radius: 5px;width:100%!important;}

/* カート・バリエーション表組パーツ */
.fs-c-productQuantityAndWishlist{text-align: right;margin-top: 1em;}
.fs-c-productQuantityAndWishlist__quantity{margin-top: 1em;margin-left: auto;position: relative;}
.fs-c-productQuantityAndWishlist__quantity::before{content: '注文数：';position: absolute;top: 50%;right: 110%;transform: translateY(-50%);width: 100%;}
.fs-c-quantity__select{font-size: 1.4rem;padding: .5em 1em;border: #A8A8A8 1px solid;border-radius: 5px;text-align: right;}
.fs-c-quantity__number{font-size: 1.4rem;padding: .5em 1em;border: #A8A8A8 1px solid;border-radius: 5px;box-shadow: none;}
.fs-c-productActionButton{margin-top: 1em;}
.fs-c-productChooseVariation__variation{font-size: 1.4rem;padding: 1em 0;}
.fs-c-variationMatrix li >div{min-width: 1em;}
.fs-c-variationMatrix__row__variationName{width: 20%;}
.fs-c-variationMatrix__row__variationPanels{display: block;padding-left: 1em;width: 80%;}
.fs-c-variationMatrix__item{padding: .5em 0;}
.fs-c-variationMatrix__panel{
    display: flex;
    flex-direction: row;
}
.fs-c-variationMatrix__panel__stock{padding-left: 1em;}


/* ラジオボタン */
.fs-c-variationMatrix__item input[type="radio"] {
position: absolute;
opacity: 0;
}
.fs-c-variationMatrix__item input[type="radio"] + label{
white-space: nowrap;
cursor: pointer;
padding-left: 30px;
position:relative;
}
.fs-c-variationMatrix__item input[type="radio"] + label:hover{opacity:1;}
.fs-c-variationMatrix__item input[type="radio"] + label:before {
content: '';
background: #f7f7f7;
border-radius: 100%;
border: 1px solid #b4b4b4;
display: inline-block;
width: 1.5em;
height: 1.5em;
position: absolute;
top: 0;
left:0;
margin-right: .5em;
vertical-align: top;
text-align: center;
transition: all 250ms ease;
}
.fs-c-variationMatrix__item input[type="radio"]:checked + label{
color:#fdbf2fee;
}
.fs-c-variationMatrix__item input[type="radio"]:checked + label:before {
background-color: #FDC02F;
box-shadow: inset 0 0 0 4px #f7f7f7;
border-color: #FDC02F;
}
.fs-c-variationMatrix__item input[type="radio"]:focus + label:before {
outline: none;
border-color: #FDC02F;
}
.fs-c-variationMatrix__item input[type="radio"]:disabled + label:before {
box-shadow: inset 0 0 0 4px #f7f7f7;
border-color: #b4b4b4;
background: #b4b4b4;
}
.fs-c-variationMatrix__item input[type="radio"] + label:empty:before {
margin-right: 0;
}


@media only screen and (min-width: 769px){
.product-item-wrap{display: flex;flex-wrap: wrap;}
.product-item-img{width: 55%;padding-right: 1.5%;}
.product-item-cont{width: 45%;padding-left: 1.5%;}

.product-item-cont .fs-c-productPrice--selling .fs-c-productPrice__main__price{font-size: 2.8rem;}
.product-item-cont .fs-c-productPrice--selling .fs-c-productPrice__main__label{font-size: 1.6rem;}
.product-item-cont .fs-c-productPrice--selling .fs-c-productPrice__addon__label{font-size: 1.6rem;}
}
@media only screen and (min-width: 1025px){
.fs-c-variationMatrix__item {margin: 0.5rem 1rem 0.5rem 0;display:inline-block;}
.fs-c-variationMatrix__item input[type="radio"] + label:hover{opacity:.6;transition: 0.3s ease-in-out;}
}










/* ログイン、メルマガ、会員登録など（フォーム関連） */

/*table*/
.fs-c-inputTable{
    max-width:800px;
    margin:20px auto 0;
    width:100%;
}
.fs-c-inputTable tr{
    margin-top:10px;
    display: flex;
    flex-wrap: wrap;
}
.fs-c-inputTable__headerCell{
    width:100%;
    text-align:left;
    padding:16px 0 3px 0;
}
.fs-c-inputTable__dataCell{
    padding:0;
    width:100%;
}
.fs-c-inputTable__dataCell input[type="text"],
.fs-c-inputTable__dataCell input[type="password"],
.fs-c-inputTable__dataCell input[type="tel"],
.fs-c-inputTable__dataCell select,
#fs_input_blackmarketPassword{
    background:#fff;
    padding:5px;
    border:1px solid #6E6E6E;
    font-size:1.6rem;
    width:100%;
    box-shadow:none;
}
.fs-c-inputGroup input[type="password"] + button,
.fs-c-button--displayPassword{
    border-top:1px solid #6E6E6E;
    border-right:1px solid #6E6E6E;
    border-bottom:1px solid #6E6E6E;
    width:40px;
    border-radius:0;
    box-shadow:none;
}
.fs-c-inputGroup input[type="password"] + button:before,
.fs-c-button--displayPassword:before{
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f06e";
    font-size: 1.8rem;
    color: #A8A8A8;
}
/*checkbox*/
.fs-c-checkbox{
    display:flex;
    justify-content: flex-start;
    margin-top:20px;
}
.fs-c-checkbox__checkMark{
    border-radius:0;
    width:25px;
    height:25px;
}
.fs-c-checkbox__checkMark::before{
    font-size:1.1em;
}
.fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark{
    background: #666;
    border-color: #333;
    color: #fff;
    transition: all 0.5s 0s ease;
}

/*selectbox*/
.fs-c-inputDate__year,
.fs-c-inputDate__month,
.fs-c-inputDate__date{
    width: 25%;
}
.fs-c-dropdown__menu{
    width: 25%;
}
.fs-c-dropdown::after{
    background: #6E6E6E;
    color: #fff;
    border-radius: 0;
}

/* radio */
.fs-c-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    }
.fs-c-radio__radioMark{
    display:none;
}
.fs-c-radio__radioMark::before{
    display:none;
    background:#fff;
}
.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark::before{
    display:none;
    background:#fff;
}
.fs-c-radio input[type="radio"] + label{
    white-space: nowrap;
    cursor: pointer;
    padding-left: 30px;
    position:relative;
}
.fs-c-radio input[type="radio"] + label:hover{opacity:1;}
.fs-c-radio input[type="radio"] + label:before {
    content: '';
    background: #f7f7f7;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 0;
    left:0;
    margin-right: .5em;
    vertical-align: top;
    text-align: center;
    transition: all 250ms ease;
}
.fs-c-radio input[type="radio"]:checked + label{
    color:#333;
}
.fs-c-radio input[type="radio"]:checked + label:before {
    background-color: #666;
    box-shadow: inset 0 0 0 4px #f7f7f7;
    border-color: #333;
}
.fs-c-radio input[type="radio"]:focus + label:before {
    outline: none;
    border-color: #333;
}
.fs-c-radio input[type="radio"]:disabled + label:before {
    box-shadow: inset 0 0 0 4px #f7f7f7;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.fs-c-radio input[type="radio"] + label:empty:before {
    margin-right: 0;
}



#fs_input_blackmarketPassword input[type="password"]{
    background:#fff;
    padding:5px;
    border:1px solid #6E6E6E;
    font-size:1.6rem;
    width:100%;
    box-shadow:none;
}
#fs_input_blackmarketPassword input[type="password"] + button{
    border-top:1px solid #6E6E6E;
    border-right:1px solid #6E6E6E;
    border-bottom:1px solid #6E6E6E;
    width:40px;
    border-radius:0;
    box-shadow:none;
}
#fs_input_blackmarketPassword input[type="password"] + button:before{
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f06e";
    font-size: 1.8rem;
    color: #A8A8A8;
}

@media only screen and (min-width: 769px){
    .fs-c-inputTable__headerCell{
        width:30%;
        text-align:left;
        padding:16px 10px 16px 0;
    }
    .fs-c-inputTable__dataCell{
        padding:16px 0;
        width:70%;
    }

    /*selectbox*/
    .fs-c-inputDate__year,
    .fs-c-inputDate__month,
    .fs-c-inputDate__date{
        width:30%;
    }
    .fs-c-dropdown__menu{
        width: 30%;
    }
}

/* ご注文手続き */
#fs-buyerInfo-container, #fs-deliveryInfo-container, #fs-communicationInfo-container, #fs-orderContents-container, #fs_orderTotalContainer, #fs-pointInfo-container, .fs-c-checkout-destination, .fs-c-checkout-paymentInfo{
    padding:20px;
    border:1px solid #CDCDCD;
    margin-top:30px;
}
#fs-buyerInfo-container h2, #fs-deliveryInfo-container h2, #fs-communicationInfo-container h2, #fs-orderContents-container h2, #fs_orderTotalContainer h2, #fs-pointInfo-container h2, .fs-c-checkout-destination h2, .fs-c-checkout-paymentInfo h2{
    padding:10px;
    border-bottom:1px solid #CDCDCD;
    text-align:center;
    margin-bottom:20px;
}

#fs_input_creditCardExpirationMonth, #fs_input_creditCardExpirationYear{
    min-width: 120px;
}
.fs-c-checkout-multiDestination__deliveryMethod{
    margin-top:20px;
}
.fs-c-modal__contents{padding:0;}

@media only screen and (min-width: 769px){
    #fs_input_creditCardExpirationMonth, #fs_input_creditCardExpirationYear{
        min-width: 100px;
    }
}

#fs-amazonShippingAddressInfo-container, #fs-amazonPaymentInfo-container{
    margin-top:8px;
}

.fs-c-checkout-destination__destination{
    display:block;
}
#fs-addressInfo-container .fs-c-checkout-destination__control{
    display:flex;
    justify-content: center;
}
.fs-c-creditCardIcons{
    display:flex;
}
.fs-c-modal__inner{
    padding:20px;
}
.fs-c-checkout-customerInfo__name ruby rb{
    font-size:2rem;
}
.fs-c-checkout-customerInfo__name ruby rt{
    padding-bottom:5px;
}
.fs-c-commissionTable{
    padding:10px;
    min-width:80%;
}
.fs-c-commissionTable th, .fs-c-commissionTable td{
    border:1px solid #cdcdcd;
    padding:5px;
}
.fs-c-orderTotalTable{
    padding:10px;
    min-width:80%;
}

.fs-c-checkbox__labelText a{
    text-decoration:underline;
}

.fs-c-quantity__message{display: none;}

.fs-p-closed__image{
    display:block;
    margin:40px auto;
}

.fs-c-agreementConfirmation__password__input{
    width:80%;
}
#fs_input_password{
    background:#fff;
    padding:5px;
    font-size:1.6rem;
    width:100%;
    box-shadow:none;
    border-radius:3px 0 0 3px;
}
#fs_input_password + button{
    border-top:1px solid #6E6E6E;
    border-right:1px solid #6E6E6E;
    border-bottom:1px solid #6E6E6E;
    width:40px;
    border-radius:0;
    box-shadow:none;
}
#fs_input_password + button:before{
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f06e";
    font-size: 1.8rem;
    color: #A8A8A8;
}

/* お届け先リスト */
.fs-c-addressBookList__list{
    width:100%;
}
.fs-c-addressBookList__list tr{
    padding-top:40px;
}
.fs-c-checkout-addresseeList .fs-c-checkout-addressee{
    margin-top: 20px;
    border-top: 1px solid #cdcdcd;
    padding-top: 20px;
}
.fs-c-addressBookList__form + .fs-c-buttonContainer--myPageTop{
    padding-top:40px;
}

@media only screen and (min-width: 769px){
    .fs-c-addressBookList__list tr{
        padding-top:0;
    }
    .fs-c-addressBookList__form + .fs-c-buttonContainer--myPageTop{
        padding-top:20px;
    }
}

/* 注文履歴 */
.orders-wrap .fs-c-history__info{
    padding: 10px;
    background: #F5F5F5;
}
.orders-wrap .fs-c-history__term{
    font-size: 18px;
    color: #497B9B;
    font-weight: 600;
    margin-top:30px;
}
.orders-wrap .fs-c-history__termCtrl select{
    background:#fff;
    padding:5px;
    border:1px solid #6E6E6E;
    font-size:1.6rem;
    width:100%;
    box-shadow:none;
}
.orders-wrap dl{
    grid-column-gap:0;
}
.orders-wrap dl dt,
.orders-wrap dl dd{
    padding:15px 5px 5px;
    border-top: 1px solid #333;
}
.orders-wrap dl dt{
    font-weight: 600;
}
.orders-wrap dl dd{
    display:flex;
    justify-content: flex-end;
}
.fs-c-orderHistoryItem__orderInfo{
    display:flex;
    justify-content: space-between;
    align-items: stretch;
}
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderDate dt,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderDate dd,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderCode dt,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderCode dd,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderSummary dt,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderSummary dd{
    text-align:center;
    justify-content: center;
    background:#F5F5F5;
    border-top:0;
}
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderDate dd,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderDate dt{
    border-left:1px solid #CDCDCD;
    border-right:0;
}
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderSummary dt,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderSummary dd{
    border-left:0;
    border-right:1px solid #CDCDCD;
}

.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderDate dt,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderCode dt,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderSummary dt{
    border-top:1px solid #CDCDCD;
}
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderDate,
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderSummary{
    width:30%;
}
.fs-c-orderHistoryItem__orderInfo__info.fs-c-orderHistoryItem__orderCode{
    width:40%;
}
.fs-c-orderHistoryItem__orderInfo__info dt{
    margin-top:30px;
    justify-content: center;
}
.fs-c-orderHistoryItem__orderInfo__info dd{
    border-top: 0;
    justify-content: center;
}
.fs-c-orderHistoryItem__body .fs-c-orderHistoryItem__product{
    padding:20px;
    border-bottom:1px solid #CDCDCD;
    border-right:1px solid #CDCDCD;
    border-left:1px solid #CDCDCD;
}
.fs-c-orderHistoryItem__header__button.fs-c-buttonContainer--viewOrderHistoryDetail{
    display: block;
    text-align:center;
    padding: 15px;
    background:#F5F5F5;
    border-bottom:1px solid #CDCDCD;
    border-right:1px solid #CDCDCD;
    border-left:1px solid #CDCDCD;
    text-decoration:underline;
    color:#497B9B;
}
.fs-c-orderHistoryItem__header__button.fs-c-buttonContainer--viewOrderHistoryDetail a{
    color:#497B9B;
    font-size:18px;
}
.fs-c-orderHistory .fs-c-orderHistoryItem__productImage__image{
    margin-left:auto;
    margin-right:auto;
}
.fs-c-orderHistory .fs-c-orderHistoryItem__productName,
.fs-c-orderHistory .fs-c-price__currencyMark,
.fs-c-orderHistory .fs-c-price__value{
    font-weight:700;
}

.orders-wrap .fs-c-noResultMessage__title{
    margin-top:40px;
}
.fs-c-history__quantity:after,
.fs-c-history__number:after{
    right:-10px!important;
    top:30%!important;
}
.fs-c-history__listContainer .fs-c-listControl__status{
    margin-top:30px;
}

@media only screen and (min-width: 769px){
    .orders-wrap .fs-c-history__info{
        padding: 40px;
    }
}

/* 注文履歴詳細 */
.fs-c-orderDetail .fs-c-orderDetailList{
    border: 1px solid #CDCDCD;
}
.fs-c-orderDetail .fs-c-orderDetailList dt{
    background:#F5F5F5;
    padding: 20px 10px 10px 10px;
}
.fs-c-orderDetail .fs-c-orderDetailList dd{
    padding: 10px 10px 20px 10px;
}
.fs-c-orderDetail__addresseeInfo,
.fs-c-orderDetail__orderInfo{
    padding:20px 0;
}
.fs-c-orderDetail__addresseeInfo h2,
.fs-c-orderDetail__orderInfo h2{
    padding:0 0 20px;
    margin-top:20px;
}
.fs-c-orderDetail__addresseeInfo h3{
    background:#6E6E6E;
    padding:10px;
    color:#fff;
}
.fs-c-orderDetail__addresseeInfo dt{
    font-weight:700;
}
.fs-c-orderDetail__addresseeInfo dt.fs-c-addresseeList__name,
.fs-c-orderDetail__addresseeInfo dt.fs-c-addresseeList__address{
    margin-top:15px;
}
.fs-c-orderDetail__addresseeInfo table{
    margin:20px 0;
}
.fs-c-orderDetail__addresseeInfo .fs-c-orderPerAddressee__orderDeliveryInfo table{
    min-width:100%;
}
.fs-c-orderDetail__orderInfo table{
    margin:20px 0;
    min-width:100%; 
}
.fs-c-orderDetail__addresseeInfo .fs-c-orderTotalTable__total,
.fs-c-orderDetail__orderInfo .fs-c-orderTotalTable__grandTotal th,
.fs-c-orderDetail__orderInfo .fs-c-orderTotalTable__grandTotal td{
    border-top-width:0;
}
.fs-c-orderDetail__addresseeInfo .fs-c-orderPerAddressee__cartTable .fs-c-cartTable__row,
.fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__cartTable .fs-c-cartTable__row{
    border-top:1px solid #CDCDCD;
}
.fs-c-orderDetail__addresseeInfo .fs-c-orderTotalTable th,
.fs-c-orderDetail__addresseeInfo .fs-c-orderTotalTable td,
.fs-c-orderDetail__addresseeInfo .fs-c-deliveryInfoList dt,
.fs-c-orderDetail__addresseeInfo .fs-c-deliveryInfoList dd,
.fs-c-orderDetail__orderInfo .fs-c-orderTotalTable th,
.fs-c-orderDetail__orderInfo .fs-c-orderTotalTable td,
.fs-c-orderDetail__orderInfo .fs-c-orderPaymentTable th,
.fs-c-orderDetail__orderInfo .fs-c-orderPaymentTable td{
    padding:10px;
}
.fs-c-orderDetail__addresseeInfo .fs-c-orderTotalTable__total th,
.fs-c-orderDetail__addresseeInfo .fs-c-orderTotalTable__total td{
    border-top:0;
}
.fs-c-buttonContainer--addReview--detail{
display:none;
}
.fs-c-orderDetail__addresseeInfo .fs-c-price,
.fs-c-orderDetail__orderInfo .fs-c-price{
    display:inline-block;
}



/* 退会手続き */
.unsubscribe-wraper table tr,
.member-detail-wraper table tr{
    border-bottom: 1px solid #CDCDCD;
    padding-bottom:20px;
}
@media only screen and (min-width: 769px){
    .unsubscribe-wraper table tr,
    .member-detail-wraper table tr{
        padding-bottom:0;
    }
}







/* お問い合わせフォーム用(wp) */
/* radio (contact form) */
.contact--form-wrap input[type="radio"] {
    position: relative;
    opacity: 0;
  }
  
  .contact--form-wrap label{
    white-space: nowrap;
    cursor: pointer;
    padding-left: 5px;
    margin:3px 5px;
    display:inline-block;
    position:relative;
  }
  .contact--form-wrap .wpcf7-list-item-label{
      padding-left:20px;
  }
  .contact--form-wrap label:hover{
    opacity:.6;
    transition: 0.3s ease-in-out;
  }
  
  .contact--form-wrap label input[type="radio"] + span:before {
    content: '';
    background: #f7f7f7;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    top: 0;
    left:0;
    margin-right: .3em;
    vertical-align: top;
    text-align: center;
    transition: all 250ms ease;
  }
  
  .contact--form-wrap label input[type="radio"]:checked + span{
    color:#333;
  }
  
  .contact--form-wrap label input[type="radio"]:checked + span:before {
    background-color: #333;
    box-shadow: inset 0 0 0 4px #f7f7f7;
    border-color: #333;
  }
  
  .contact--form-wrap label input[type="radio"]:focus + span:before {
    outline: none;
    border-color: #333;
  }
  
  .contact--form-wrap label input[type="radio"]:disabled + span:before {
    box-shadow: inset 0 0 0 4px #f7f7f7;
    border-color: #b4b4b4;
    background: #b4b4b4;
  }
  
  .contact--form-wrap label input[type="radio"] + span:empty:before {
    margin-right: 0;
  }
  
  @media only screen and (max-width: 768px){
  .contact--form-wrap span{
   display:inline-block;
  }
  .contact--form-wrap label:hover{
    opacity:1;
  }
  .contact--form-wrap label {
      padding-left: 5px;
  }
  }
  
  @media only screen and (max-width: 480px){
  .contact--form-wrap label{
    display:block;
    white-space: normal;
  }
  }

/* input text (contact form) */
.contact--form-wrap input[type="text"],
.contact--form-wrap input[type="email"],
.contact--form-wrap textarea {
    background: #fff;
    padding: 5px;
    border: 1px solid #6E6E6E;
    font-size: 1.6rem;
    width: 100%;
    box-shadow: none;
}

/* submit (contact form) */
@media only screen and (min-width: 1024px){
    .contact--form-wrap input[type="button"]:hover,
    .contact--form-wrap input[type="submit"]:hover{
        opacity: .5;
    }
}
.contact--form-wrap input[type="button"],
.contact--form-wrap input[type="submit"]{
    position: relative;
    display: block;
    font-size: 1.6rem;
    width: 100%;
    height: 100%;
    max-width: 335px;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 1em;
    margin-right: auto;
    margin-left: auto;
    cursor: pointer;
    color: #fff!important;
    transition: 0.3s ease-in-out;
}
.contact--form-wrap input[type="button"]{
    color: #333!important;
    text-decoration:underline;
    margin-top:10px;
}
.contact--form-wrap input[type="submit"]{
    background: #333;
}

/* checkbox (contact form) */
.contact--form-wrap .contact-check{
    display:flex;
}
.contact--form-wrap input[type="checkbox"]{
    display:inline-flex;
    width:25px;
    height:25px;
    border:#333 1px solid;
    transition: all 0.5s 0s ease;
    margin-top:0;
    position:relative;
    z-index:2;
    border-radius:0;
}
.contact--form-wrap .contact-check label{
    margin:0;
}
.contact--form-wrap input[type="checkbox"] + span{
    border-radius:0;
    width:0;
    height:0;
    display:block;
    position:absolute;
    top:1px;
    left:20px;
}
_::-webkit-full-page-media, _:future, :root .contact--form-wrap input[type="checkbox"] + span {
    top:0;
    left:19px;
}
.contact--form-wrap input[type="checkbox"] + span:before{
    font-size:1.1em;
}
.contact--form-wrap input[type="checkbox"]:checked + span{
    background: #666;
    border-color: #333;
    color: #fff;
    transition: all 0.5s 0s ease;
    width:25px;
    height:25px;
    z-index:1;
}
_::-webkit-full-page-media, _:future, :root .contact--form-wrap input[type="checkbox"]:checked + span {
    width:24px;
}
.contact--form-wrap input[type="checkbox"]:checked + span:before {
    content:"";
    display:inline-block;
    width:9px;
    height:1px;
    background:#fff;
    position:absolute;
    color:#fff;
    z-index:1;
    left:4px;
    top:14px;
    transform:rotate(45deg);
}
.contact--form-wrap input[type="checkbox"]:checked + span:after {
    content:"";
    display:inline-block;
    width:13px;
    height:1px;
    background:#fff;
    position:absolute;
    color:#fff;
    z-index:1;
    left:9px;
    top:13px;
    transform:rotate(135deg);
}

/* a link (contact form) */
.contact--form-wrap a{text-decoration:underline;}

/* th span(*) (contact form) */
.contact--form-wrap .fs-c-inputTable__headerCell span{
    vertical-align: text-top;
}