/*************************/
/* 共通パーツ */
/*************************/
.faq-marker {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(60%, #ffe279));
    background: linear-gradient(transparent 70%, #ffe279 60%);
    font-size: 110%;
    color: #444;
    font-weight: 600;
}

.faq-wrap a {
    word-break: break-all;
    text-decoration: underline;
}

a.linkMark {
    text-decoration: underline;
}

a.linkMark:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f35d";
    padding-left: 6px;
}

/* for PC */

@media screen and (min-width:768px) {
    .faq-wrap h2 {
        font-size: 180%;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .faq-wrap h2 {
        font-size: 130%;
    }
}

/*************************/
/* 分類リンク */
/*************************/


ul.faq-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    width: calc(100% - 40px);
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 120%;
}

ul.faq-category li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 10px;
}

.faq-category li a {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #c1681b;
}

.faq-category li a:after {
    content: '';
    -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.25rem 0.125rem 0 rgba(0, 0, 0, 0.08);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-category li a:hover:after,
.faq-category li a:focus:after {
    opacity: 1;
}

.faq-category li a:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    display: block;
    font-size: 36px;
    padding-bottom: 10px;
    color: #e6bd85;
}

.faq-category li a:hover {
    color: #228be6;
    text-decoration: none;
    background-color: #f5f5f5;
}

.faq-category li a:hover:before {
    color: #ffd090;
}

li.faq-order a:before {
    content: "\f291";
}

li.faq-payment a:before {
    content: "\f651";
}

li.faq-receipt a:before {
    content: "\f570";
}

li.faq-deliver a:before {
    content: "\f0d1";
}

li.faq-cancel a:before {
    content: "\f362";
}

li.faq-point a:before {
    content: "\f51e";
}

li.faq-wrapping a:before {
    content: "\f06b";
}

li.faq-wine a:before {
    content: "\f72f";
}

li.faq-web a:before {
    content: "\f108";
}

li.faq-other a:before {
    content: "\f059";
}

/* for PC */

@media screen and (min-width:768px) {
    ul.faq-category {
        margin: 0 20px;
    }

    ul.faq-category li {
        width: calc(25% - 20px);
    }
}

/* for SP */
@media screen and (max-width:767px) {
    ul.faq-category {
        margin: 25px 20px;
    }

    ul.faq-category li {
        width: calc(50% - 20px);
    }

    .faq-category li a {
        font-size: 1.6rem;
    }
}

/*************************/
/* カテゴリー別目次 */
/*************************/
ul.faq-toc {
    list-style: none;
    background-color: #f5f5f5;
    padding: 20px;
}


ul.faq-toc li {
    margin-bottom: 10px;
}

ul.faq-toc li:last-child {
    margin-bottom: 0px;
}

ul.faq-toc li:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    margin-right: 7px;
}

/* for PC */

@media screen and (min-width:768px) {
    ul.faq-toc {
        font-size: 120%;
        margin: 20px;
    }
}

/* for SP */
@media screen and (max-width:767px) {

    ul.faq-toc {
        margin: 15px;
    }

}

/*************************/
/* 質問コンテンツ */
/*************************/
.faq-main h2 {
    background-color: #b3d6f5;
    padding: 10px 20px 5px;
    color: #1f3c76;
    border-bottom: #b3d6f5 solid;
}

.faq-main h2:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

h2#faq-order:before {
    content: "\f291";
}

h2#faq-payment:before {
    content: "\f651";
}

h2#faq-receipt:before {
    content: "\f570";
}

h2#faq-deliver:before {
    content: "\f0d1";
}

h2#faq-cancel:before {
    content: "\f362";
}

h2#faq-point:before {
    content: "\f51e";
}

h2#faq-wrapping:before {
    content: "\f06b";
}

h2#faq-wine:before {
    content: "\f72f";
}

h2#faq-web:before {
    content: "\f108";
}

h2#faq-other:before {
    content: "\f059";
}

dl.faq-area dt {
    border-bottom: solid 1px #1f3c76;
    padding: 5px 8px;
    position: relative;
    margin-top: 35px;
    font-size: 120%;
    font-weight: bold;
    color: #1f3c76;
}

dl.faq-area {
    margin: 20px;
}

dl.faq-area dt:before {
    content: "Q";
    font-size: 2rem;
    background-color: #1f3c76;
    color: #fff;
    padding: 1px 10px;
    margin-right: 6px;
    height: 30px;
    display: inline-block;
    border-radius: 4px;
}

.faq-area dd {
    margin: 0;
    padding: 20px 10px;
}

a.back-to-top {
    text-align: right;
    display: block;
    position: relative;
    padding-right: 20px;
    text-decoration: none;
}

a.back-to-top:hover {
    text-decoration: underline;
}

a.back-to-top:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f139";
    font-size: 16px;
    position: absolute;
    right: 0;
    bottom: 2px;
}

/* for PC */

@media screen and (min-width:768px) {
    .faq-main h2 {
        margin-top: 60px;
    }

    dl.faq-area {
        font-size: 120%;
    }

    .faq-area dd {
        font-size: 110%;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .faq-main h2 {
        margin-top: 40px;
    }

    .faq-area dd {
        line-height: 1.4;
    }
}


.fs-c-productList__message.fs-c-noResultMessage {
    display: none;
}


/*************************/
/* その他個別 */
/*************************/

/* ワッシーズから届くメールについて*/


.sendingMailTitle {
    list-style: none;
    padding-bottom: 1.8rem;
}

.orderComp {
    border: 1px solid #e29e13;
    display: inline-block;
    border-radius: 3px;
    padding: 0 4px;
    background-color: #f5f5f5;
    font-size: 1.6rem;
}

.deliveryComp {
    border: 1px solid #e2133d;
    display: inline-block;
    border-radius: 3px;
    padding: 0 4px;
    background-color: #f5f5f5;
    font-size: 1.6rem;
}

.arrow:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f103";
    margin-right: 7px;
}

.arrow,
.or {
    color: #9e9e9e;
    font-size: 1.5rem;
    padding-left: 20px;
}

.ttl {
    background-color: #eee;
    padding: 0 6px;
    margin-right: 6px;
    font-size: 1.6rem;
}

/* for PC */

@media screen and (min-width:768px) {
    p.sendingMailTitle-hl {
        margin-bottom: 10px;
    }
}

/* for SP */
@media screen and (max-width:767px) {
    .sendingMailTitle {
        padding-left: 10px;
    }

    .ttl {
        display: block;
    }

    .arrow,
    .or {
        margin: 4px 0;
    }

    p.sendingMailTitle-hl {
        margin-bottom: 18px;
    }
}