@charset "utf-8";
/* CSS Document */
main .breadBox{
    max-width: 1100px;
}
.container{
    width: 1100px;
    position: relative;
}
.container .mainContents{
    width: 840px;
}
.container aside{
    width: 220px;
    position: sticky;
    top: 15px;
}

@media screen and (max-width: 768px) {
    .container{
        width: 100%;
        position: relative;
    }
    .container .mainContents{
        width: 100%;
    }
    .container aside{
        display: none;
    }
    
}


/*------------------------------------------------------------------------------
  top トップページ
------------------------------------------------------------------------------*/
p{
    color: #191919;
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: 0.03em;
}

/*----link----*/
a.linkBtn{
    display: block;
    width: 70%;
    max-width: 600px;
    background-color: #f95033;
    color: #fff;
    margin: 30px auto;
    padding: 20px 15px;
    font-size: 20px;
    line-height: 1.5em;
    text-align: center;
    letter-spacing: 0.03em;
    border: 2px solid #ff917e;
    border-radius: 5px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
}
a.linkBtn span{
    display: inline-block;
    padding-right: 40px;
    position: relative;
}
a.linkBtn span:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/*----Hタグ----*/
.topHTitle{
    background-image: linear-gradient(to bottom, #d5f3fc 0, #fff 100%);
    color: #24a6cc;
    margin: 0 auto 20px;
    padding: 20px;
    font-size: 32px;
    line-height: 1.5em;
    text-align: center;
    letter-spacing: 0.06em;
    text-shadow: 0 0 3px #fff;
    border-top: 5px solid #24a6cc;
}
.topHTitle span.small{
    display: block;
    font-size: 22px;
    line-height: 1.5em;
}

.topHTitle br{
    display: none;
}

/**/
.topHTitle2{
    background-color: #6dc6e0;
    color: #fff;
    padding: 5px 15px;
    font-size: 20px;
    line-height: 1.8em;
    letter-spacing: 0.05em;
    border-left: 4px solid #24a6cc;
}


/*----お問い合わせ----*/
.mainContents .contactBox{
    background-image: none;
    border: none;
}
.mainContents .contactBox ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    border: 1px solid #747474;
    border-radius: 10px;
}
.mainContents .contactBox ul > li{
    padding: 20px 25px;
    text-align: center;
}
.mainContents .contactBox ul > li.tel{
    border-right: 1px dashed #747474;
}
.mainContents .contactBox ul > li.tel p{
    font-size: 12px;
    letter-spacing: -0.03em;
}
.mainContents .contactBox ul > li.contact p{
    font-size: 13px;
    letter-spacing: -0.03em;
}
.mainContents .contactBox ul > li.contact a{
    display: block;
    background-color: #4a72ce;
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    letter-spacing: 0.03em;
    border: 2px solid #84a0df;
    border-radius: 5px;
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
}


@media screen and (max-width: 768px) {
    /*----link----*/
    a.linkBtn{
        padding: 20px 15px;
        font-size: 16px;
    }
    a.linkBtn span{
        padding-right: 40px;
    }
    
    /*----Hタグ----*/
    .topHTitle{
        padding: 20px;
        font-size: 28px;
    }
    .topHTitle span.small{
        font-size: 22px;
    }

}

@media screen and (max-width: 600px) {
    /*----お問い合わせ----*/
    .mainContents .contactBox ul{
        width: 80%;
        flex-direction: column;
    }
    .mainContents .contactBox ul > li{
        width: 100%;
        padding: 10px 15px;
    }
    .mainContents .contactBox ul > li.tel{
        border-right: none;
        border-bottom: 1px dashed #747474;
    }
    .mainContents .contactBox ul > li.contact p{
        margin-bottom: 10px;
    }
    .mainContents .contactBox ul > li.contact a{
        width: 80%;
        margin: auto;
    }
}

@media screen and (max-width: 480px) {
    /*----link----*/
    a.linkBtn{
        width: 85%;
        margin: 10px auto 50px;
        padding: 15px 10px;
        font-size: 16px;
    }
    a.linkBtn span{
        padding-right: 30px;
    }
    
    /*----Hタグ----*/
    .topHTitle{
        padding: 10px 10px 15px;
        font-size: 23px;
        letter-spacing: 0.03em;
    }
    .topHTitle span.small{
        font-size: 18px;
    }

    .topHTitle br{
        display: inline-block;
    }
    /*----お問い合わせ----*/
    .mainContents .contactBox ul{
        width: 90%;
    }
}


/*-----------------------------------------------------*/


/*------------------------------------
    メインイメージ
------------------------------------*/
.mainImg{
    display: block;
    width: fit-content;
	margin: 0 auto 30px;
}
.mainImg h1{
    font-size: 30px;
    line-height: 1.8em;
}
.mainImg img{
    margin: auto;
}
.mainImg > p{
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    line-height: 2em;
}

@media screen and (max-width: 768px) {
	.mainImg {
		width: 100%;
	}
    .mainImg h1{
        padding: 0 5px;
    }
    .mainImg img{
        width: 100%;
    }
    .mainImg > p{
        width: 95%;
        margin-top: 10px;
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .mainImg > p{
        padding: 10px;
    }
}


/*------------------------------------
    活躍シーン
------------------------------------*/
/*----アニメーション----*/
@keyframes scene-fade {
    0% { }
    100% { opacity: 1; transform: translateY(20px);}
}


.sceneBox{
    background-color: #f7f7f7;
    margin: 30px auto 65px;
    padding: 60px 0 40px;
}
.sceneBox > h2{
    font-size: 30px;
    line-height: 1.5em;
    text-align: center;
    padding: 0 30px;
}
.sceneBox > h2 span{
    display: block;
    margin: auto;
    font-size: 36px;
}

.sceneBox ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 35px;
    margin: 20px auto;
    padding: 0 40px 10px;
}
.sceneBox ul > li{
    flex-grow: 1;
    width: calc((100% - 105px) / 4);
/*    max-width: 355px;*/
    opacity: 0;
    margin: auto;
    position: relative;
}
.sceneBox ul.show > li{
	animation: scene-fade .6s ease forwards;
}
.sceneBox ul > li:nth-of-type(even){
    margin-top: 40px;
}
.sceneBox ul > li h3{
    max-height: 80%;
    background-color: #212121;
    color: #fff;
    padding: 15px 13px 20px;
    font-size: 27px;
    line-height: 1.3em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 10;
}
.sceneBox ul > li h3:before{
    content: "";
    display: block;
    background-color: #666;
    width: 100%;
    height: 25px;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    z-index: -1;
}
.sceneBox ul > li h3:after{
    content: "";
    display: block;
    background-color: #212121;
    width: 100%;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    z-index: -1;
}
.sceneBox ul > li img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/**/
.sceneBox ul > li.campaign{
	animation-delay: .0s;
}
.sceneBox ul > li.campaign h3:before{
    background-color: #f67d7b;
}
.sceneBox ul > li.hotel{
	animation-delay: .2s;
}
.sceneBox ul > li.hotel h3:before{
    background-color: #3f5a8d;
}
.sceneBox ul > li.festival{
	animation-delay: .4s;
}
.sceneBox ul > li.festival h3:before{
    background-color: #ca7ccf;
}
.sceneBox ul > li.goods{
	animation-delay: .6s;
}
.sceneBox ul > li.goods h3:before{
    background-color: #5dbbc2;
}


@media screen and (max-width: 1200px) {
    .sceneBox ul > li{
        width: calc((100% - 35px) / 2);
        max-width: auto;
    }
    .sceneBox ul > li:nth-of-type(even){
        margin-top: 0;
    }
    .sceneBox ul > li h3{
        padding: 20px 10px 30px;
        font-size: 26px;
        line-height: 1.8em;
    }
}

@media screen and (max-width: 768px) {
    .sceneBox > h2{
        font-size: 26px;
    }
    .sceneBox > h2 span{
        font-size: 30px;
    }
    .sceneBox ul{
        gap: 45px 25px;
        padding: 0 20px 10px;
    }
    .sceneBox ul > li{
        width: calc((100% - 25px) / 2);
    }
    .sceneBox ul > li h3{
        max-height: 78%;
        padding: 4% 8px 7%;
        font-size: 22px;
        left: 5%;
    }
}

@media screen and (max-width: 480px) {
    .sceneBox > h2{
        font-size: 22px;
    }
    .sceneBox > h2 span{
        font-size: 26px;
    }
    .sceneBox ul > li{
        width: 100%;
    }
    .sceneBox ul > li h3{
        min-height: 60%;
        font-size: 19px;
    }
}


/*------------------------------------
    サイズについて
------------------------------------*/
.sizeBox .sizeType{
    margin: 40px auto;
}
.sizeBox .sizeType h3{
    color: #4c4c4c;
    margin: 0 0 15px;
    padding: 5px 15px 5px 25px;
    font-size: 21px;
    font-weight: 700;
    border-left: 4px solid #24a6cc;
}

/*--table--*/
.sizeBox .sizeType table{
    width: 100%;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.12em;
    border-spacing: 0;
    border-collapse: separate;
}


.sizeBox .sizeType table tr > *{
    width: calc(100% / 5);
    background-color: #fff;
    padding: 20px 10px;
    border-bottom: 1px solid #e3e3e3;
    transition: all .2s ease;
}
.sizeBox .sizeType table tr:hover > *{
    background-color: #FEF3EF;
}
.sizeBox .sizeType table tr:nth-of-type(1) th{
    background-color: #f7f7f7;
    padding: 15px 10px;
    text-align: center;
    border-bottom: none;
    border-top: 1px solid #e3e3e3;
}
.sizeBox .sizeType table tr:not(:first-child) th{
    width: 22%;
    color: #202d66;
    font-weight: 700;
    text-align: center;
}

/**/
.sizeBox .sizeOriginal{
    min-height: 270px;
    margin: 30px auto 50px;
    padding: 40px 30px;
    padding-left: 390px;
    border: 5px solid #dcaf00;
    position: relative;
}
.sizeBox .sizeOriginal:before{
    content: "";
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #dcaf00;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
.sizeBox .sizeOriginal:after{
    content: "";
    display: block;
    width: 390px;
    height: 100%;
    background-image: url(../../_images/top/size-original-about.webp), linear-gradient(to right, #58cef0 70%, transparent 90%);
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
    left: 0;
    bottom: 0;
}

.sizeBox .sizeOriginal dt{
    margin-bottom: 10px;
    font-size: 27px;
    line-height: 1.4em;
}
.sizeBox .sizeOriginal dd{
    font-size: 16px;
    line-height: 1.8em;
}

@media screen and (max-width: 768px) {
    .sizeBox .sizeType{
        width: 95%;
    }
    .sizeBox .sizeType h3{
        padding: 5px 15px 5px 20px;
        font-size: 21px;
        font-weight: 700;
        border-left: 4px solid #24a6cc;
    }

    /*--table--*/
    .sizeBox .sizeType .scroll{
        padding-bottom: 10px;
        overflow-x: auto;
    }

    .sizeBox .sizeType table{
        width: 100%;
        min-width: 600px;
    }

    /**/
    .sizeBox .sizeOriginal{
        width: 90%;
        min-height: auto;
        padding: 5% 3%;
        padding-left: 45%;
    }
    .sizeBox .sizeOriginal:after{
        width: 50%;
        background-size: 100% auto;
    }
    
    .sizeBox .sizeOriginal dt{
        font-size: 24px;
    }
    .sizeBox .sizeOriginal dd{
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    /**/
    .sizeBox .sizeOriginal{
        padding: 9%;
        padding-bottom: 50%;
    }
    .sizeBox .sizeOriginal:after{
        background-image: url(../../_images/top/size-original-about.webp), linear-gradient(to top, #58cef0 70%, transparent 90%);
        width: 100%;
        height: 55%;
        background-size: auto 100%;
    }
    
    .sizeBox .sizeOriginal dt{
        font-size: 22px;
    }
    .sizeBox .sizeOriginal dd{
        font-size: 14px;
    }
}


/*------------------------------------
    生地について
------------------------------------*/
.clothBox .clothList{
    margin: 30px auto;
}

.clothBox .clothList h3{
    margin-bottom: 20px;
}

.clothBox .clothList ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.clothBox .clothList ul > li{
    width: 400px;
}
.clothBox .clothList ul > li h4{
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #666;
}
.clothBox .clothList ul > li .img{
    margin-bottom: 10px;
    position: relative;
}
.clothBox .clothList ul > li.standard .img:before{
    content: "";
    display: block;
    width: 96px;
    height: 48px;
    background-image: url(../../_images/top/icon-standard.webp);
    background-repeat: no-repeat;
    position: absolute;
    left: 5px;
    top: -5px;
}

@media screen and (max-width: 768px) {
    .clothBox .clothList{
        width: 95%;
    }
    
    .clothBox .clothList ul{
        gap: 30px;
    }
    .clothBox .clothList ul > li{
        width: calc((100% - 30px) / 2);
    }
}

@media screen and (max-width: 480px) {
    .clothBox .clothList ul{
        gap: 30px;
    }
    .clothBox .clothList ul > li{
        width: 100%;
    }
}


/*------------------------------------
    デザインについて
------------------------------------*/
.designBox .img{
    margin: 0 auto 30px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #afafaf;
    box-shadow: 0px 2px 3.92px 0.08px rgba(0, 0, 0, 0.21);
    overflow: hidden;
    width: fit-content;
}

/**/
.designBox .designType{
    margin: 40px auto 60px;
}
.designBox .designType .inner{
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 30px auto;
}
/*--スライド--*/
.designBox .designType .inner > .slide{
    width: 400px;
    position: relative;
}
.designBox .designType .inner > .slide .swiper-container{
    background-color: #f3f3f3;
    border-radius: 15px;
}
/**/
.designBox .designType .swiper-button-prev,
.designBox .designType .swiper-button-next{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: none;
    background-color: #fff;
    color: #666;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #efefef;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
}
.designBox .designType .swiper-button-prev{
    left: -10px;
}
.designBox .designType .swiper-button-next{
    right: -10px;
}
.designBox .designType .swiper-button-prev:before,
.designBox .designType .swiper-button-next:before{
    content: "";
    display: block;
    width: fit-content;
    height: fit-content;
	font: var(--fa-font-solid);
    font-size: 24px;
}
.designBox .designType .swiper-button-prev:before{
    content: "\f104";
}
.designBox .designType .swiper-button-next:before{
    content: "\f105";
}

/*----*/
.designBox .designType .inner > .detail{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
}
.designBox .designType .inner > .detail .catch{
    color: #fff;
    font-size: 25px;
    line-height: 1.6em;
    letter-spacing: 0.08em;
}
.designBox .designType .inner > .detail .catch span{
    display: inline;
    background-color: #002e56;
    padding: 2px 5px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.designBox .designType .inner > .detail ul.point{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 40px;
    border: 4px solid #f4f4f4;
}
.designBox .designType .inner > .detail ul.point > li{
    color: #002e56;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 800;
    position: relative;
}
.designBox .designType .inner > .detail ul.point > li:before{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #dcaf00;
    transform: rotate(45deg);
    box-shadow: 3px 3px 0 #2e4944;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 3px;
    margin: auto;
}

.designBox .designType .inner > .detail a.linkBtn{
    width: 90%;
    margin: 15px auto 0;
    padding: 15px 15px;
    font-size: 17px;
}

@media screen and (max-width: 768px) {
    .designBox .img{
        width: 95%;
    }
    
    /**/
    .designBox .designType{
        width: 95%;
    }
    /*--スライド--*/
    .designBox .designType .inner{
        align-items: flex-start;
    }
    .designBox .designType .inner > .slide{
        width: 50%;
    }
    /**/
    .designBox .designType .swiper-button-prev,
    .designBox .designType .swiper-button-next{
        width: 40px;
        height: 40px;
    }
    .designBox .designType .swiper-button-prev{
        left: -10px;
    }
    .designBox .designType .swiper-button-next{
        right: -10px;
    }
    .designBox .designType .swiper-button-prev:before,
    .designBox .designType .swiper-button-next:before{
        font-size: 24px;
    }
    
    /*----*/
    .designBox .designType .inner > .detail{
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 45%;
    }
    .designBox .designType .inner > .detail .catch{
        font-size: 23px;
    }
    .designBox .designType .inner > .detail .catch br{
        display: none;
    }
    .designBox .designType .inner > .detail ul.point{
        padding: 20px;
    }
    .designBox .designType .inner > .detail ul.point > li{
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    /*--スライド--*/
    .designBox .designType .inner{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .designBox .designType .inner > .slide{
        width: 100%;
        max-width: 400px;
    }
    /**/
    .designBox .designType .swiper-button-prev,
    .designBox .designType .swiper-button-next{
        width: 40px;
        height: 40px;
    }
    .designBox .designType .swiper-button-prev{
        left: -5px;
    }
    .designBox .designType .swiper-button-next{
        right: -5px;
    }
    
    /*----*/
    .designBox .designType .inner > .detail{
        width: 100%;
    }
    .designBox .designType .inner > .detail .catch{
        font-size: 22px;
    }
    .designBox .designType .inner > .detail ul.point{
        padding: 15px;
    }
    .designBox .designType .inner > .detail ul.point > li{
        font-size: 16px;
    }
}


/*------------------------------------
    大ロット
------------------------------------*/
.largeBox {
    margin: 60px auto;
    padding: 50px 40px;
    border: 5px solid #dcaf00;
    position: relative;
}
.largeBox:before{
    content: "";
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #dcaf00;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.largeBox h3{
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.5em;
    text-align: center;
}
.largeBox h3 > span{
    display: block;
    font-size: 22px;
}
.largeBox h3 > span > b{
    color: #ff5d1d;
    background-image: linear-gradient(to bottom, transparent 50%, #fff3ee 50%);
}

.largeBox .color{
    margin: 20px auto;
    text-align: center;
}

.largeBox .checkList{
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 20px auto;
    padding: 20px 15px;
    border: 4px solid #ffccb6;
    border-radius: 15px;
}
.largeBox .checkList > *{
    padding: 0px 20px;
    font-weight: 700;
}
.largeBox .checkList > dt{
    color: #ff621d;
    font-size: 22px;
    border-right: 1px solid #ccc;
}
.largeBox .checkList > dd{
    color: #404040;
    font-size: 17px;
}

@media screen and (max-width: 768px) {
    .largeBox {
        width: 95%;
        padding: 9%;
    }
    .largeBox h3{
        font-size: 26px;
    }
    .largeBox h3 > span{
        font-size: 21px;
        line-height: 1.3em;
    }
    
    .largeBox .checkList{
        padding: 15px 10px;
    }
    .largeBox .checkList > *{
        padding: 0px 20px;
        font-weight: 700;
    }
    .largeBox .checkList > dt{
        font-size: 20px;
    }
    .largeBox .checkList > dd{
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .largeBox h3{
        font-size: 22px;
    }
    .largeBox h3 > span{
        font-size: 19px;
    }
    
    .largeBox .checkList{
        flex-direction: column;
        padding: 10px 10px;
    }
    .largeBox .checkList > *{
        padding: 0px 10px;
        text-align: center;
    }
    .largeBox .checkList > dt{
        padding-bottom: 5px;
        font-size: 18px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .largeBox .checkList > dd{
        padding-top: 5px;
        font-size: 15px;
    }
}



/*------------------------------------
    製作の流れ
------------------------------------*/
.flowBox {
    margin: 50px auto;
}
.flowBox .scroll{
    margin-bottom: 20px;
}

.flowBox > section.deadline{
    margin: 30px auto 40px;
}

.flowBox > section.deadline > p.red{
    width: fit-content;
    color: #de0000;
    margin: 15px auto;
}

/**/
.flowBox .checkList{
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 20px auto;
    padding: 20px 15px;
    border: 4px solid #ffccb6;
    border-radius: 15px;
}
.flowBox .checkList > *{
    padding: 0px 20px;
    font-weight: 700;
}
.flowBox .checkList > dt{
    color: #ff621d;
    font-size: 22px;
    border-right: 1px solid #ccc;
}
.flowBox .checkList > dd{
    color: #404040;
    font-size: 17px;
}

@media screen and (max-width: 768px) {
    .flowBox .scroll{
        overflow-x: auto;
    }
    .flowBox .scroll img{
        min-width: 600px;
    }

    .flowBox .scroll + p{
        width: 95%;
        margin: auto;
    }
    
    .flowBox > section.deadline{
        width: 95%;
    }
    
    .flowBox > section.deadline > p.red{
        font-size: 13px;
        text-align: center;
    }
    
    /**/
    .flowBox .checkList{
        padding: 15px 10px;
    }
    .flowBox .checkList > *{
        padding: 0px 20px;
        font-weight: 700;
    }
    .flowBox .checkList > dt{
        font-size: 20px;
    }
    .flowBox .checkList > dd{
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    /**/
    .flowBox .checkList{
        flex-direction: column;
        padding: 10px 10px;
        text-align: center;
    }
    .flowBox .checkList > *{
        padding: 0px 10px;
    }
    .flowBox .checkList > dt{
        padding-bottom: 5px;
        font-size: 18px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .flowBox .checkList > dd{
        padding-top: 5px;
        font-size: 15px;
    }
}



/*------------------------------------
    よくある質問
------------------------------------*/
.faqBox {
    margin: 50px auto;
}

.faqBox .topHTitle{
    background-image: none;
}

.faqBox dl{
    margin: 30px auto;
    border: 1px solid #c0c0c0;
    border-radius: 6px;
    overflow: hidden;
}
.faqBox dl dt{
    color: #535285;
    background-color: #f7f7f7;
    padding: 20px 40px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.8em;
    border-bottom: 1px solid #e0e0e0;
}
.faqBox dl dd{
    padding: 20px 30px 20px 120px;
    position: relative;
}
.faqBox dl dd:before{
    content: "A";
    display: block;
    width: 45px;
    height: 45px;
    color: #ea1e1e;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 45px;
    border: 5px solid #ea1e1e;
    border-radius: 50%;
    position: absolute;
    left: 40px;
    top: 20px;
}


@media screen and (max-width: 768px) {
    .faqBox dl{
        width: 95%;
    }
    .faqBox dl dt{
        padding: 15px 20px;
        font-size: 19px;
    }
    .faqBox dl dd{
        padding: 15px 20px 15px 80px;
    }
    .faqBox dl dd:before{
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
        left: 15px;
        top: 15px;
    }
}

@media screen and (max-width: 480px) {
    .faqBox dl dt{
        padding: 12px 15px;
        font-size: 18px;
        line-height: 1.5em;
    }
    .faqBox dl dd{
        padding: 15px 10px 15px 65px;
    }
    .faqBox dl dd:before{
        width: 35px;
        height: 35px;
        font-size: 19px;
        line-height: 35px;
        border-width: 4px;
        left: 10px;
        top: 15px;
    }
}



/*------------------------------------
    サイドナビ
------------------------------------*/
aside > .pageLink{
    margin: 0 auto 30px;
    padding: 30px 0 20px;
    border: 1px solid #d6d6d6;
    border-top: 5px solid #24a6cc;
}
.sideMenu .pageLink{
    width: 95%;
    margin: 0 auto 30px;
    padding: 15px 0 10px;
    border: 1px solid #d6d6d6;
    border-top: 5px solid #24a6cc;
}

aside > .pageLink ul,
.sideMenu .pageLink ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.sideMenu .pageLink ul{
    gap: 5px;
    margin-bottom: 10px;
}

aside > .pageLink ul > li{
    padding: 0 25px;
}
.sideMenu .pageLink ul > li{
    padding: 0 15px;
}

aside > .pageLink ul > li > a,
.sideMenu .pageLink ul > li > a{
    display: block;
    padding: 5px 0;
    color: #444;
    font-size: 16px;
    position: relative;
}
.sideMenu .pageLink ul > li > a{
    font-size: 15px;
}

aside > .pageLink ul > li a:hover,
.sideMenu .pageLink ul > li a:hover{
    opacity: 1;
}
aside > .pageLink ul > li > a:before,
.sideMenu .pageLink ul > li > a:before{
    content: "\f04b";
    display: block;
    width: 18px;
    height: 18px;
    background-color: #67d1f0;
    color: #fff;
	font: var(--fa-font-solid);
    font-size: 8px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    transition: all .2s ease;
    position: absolute;
    right: 0;
    top: 7px;
}
aside > .pageLink ul > li a:after,
.sideMenu .pageLink ul > li a:after{
    content: "";
    display: block;
    width: 0;
    height: 30%;
    background-color: #ffd9d3;
    transition: all .2s ease;
    position: absolute;
    left: 0;
    bottom: 3px;
    z-index: -1;
}

aside > .pageLink ul > li span a,
.sideMenu .pageLink ul > li span a{
    color: inherit;
    font-size: 14px;
    position: relative;
}
aside > .pageLink ul > li span a:before,
.sideMenu .pageLink ul > li span a:before{
    content: "-";
    margin-right: 5px;
}

aside > .pageLink ul > li a:hover:after,
aside > .pageLink ul > li > a.current:after,
.sideMenu .pageLink ul > li a:hover:after,
.sideMenu .pageLink ul > li > a.current:after{
    width: 100%;
}
aside > .pageLink ul > li > a.current:before,
.sideMenu .pageLink ul > li > a.current:before{
    background-color: #f95033;
}

/**/
aside > .pageLink a.estimate,
.sideMenu .pageLink a.estimate{
    display: block;
    width: 85%;
    max-width: 600px;
    background-color: #f95033;
    color: #fff;
    margin: 10px auto 0;
    padding: 13px 10px;
    font-size: 18px;
    line-height: 1.5em;
    text-align: center;
    letter-spacing: 0.03em;
    border: 2px solid #ff917e;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}

/**/
aside > .wa-goodsLink{
    margin: 30px auto;
}
aside > .wa-goodsLink dt{
    color: #454545;
    padding: 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    text-align: center;
    border-bottom: 1px solid #b3b3b3;
}
aside > .wa-goodsLink dt span{
    display: block;
    color: #9c142a;
    font-size: 18px;
}
aside > .wa-goodsLink dd{
    border-bottom: 1px solid #b3b3b3;
}
aside > .wa-goodsLink dd a{
    display: block;
    color: inherit;
    background-repeat: no-repeat;
    background-position: left 50%;
    padding: 12px 10px 12px 75px;
    font-size: 16px;
    position: relative;
}
aside > .wa-goodsLink dd a:after{
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background-image: linear-gradient(to left, #ffd9d3 0%, transparent 50%);
    transition: all .2s ease;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
aside > .wa-goodsLink dd a:hover{
    opacity: 1;
}
aside > .wa-goodsLink dd a:before{
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #e11e1e;
    transform: rotate(45deg);
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    margin: auto;
}
aside > .wa-goodsLink dd a:hover:after{
    width: 100%;
}

aside > .wa-goodsLink dd.noren a{
    background-image: url(../../_images/top/lnavi-icon-noren.jpg);
}
aside > .wa-goodsLink dd.chochin a{
    background-image: url(../../_images/top/lnavi-icon-chochin.jpg);
}
aside > .wa-goodsLink dd.happi a{
    background-image: url(../../_images/top/lnavi-icon-happi.jpg);
}
aside > .wa-goodsLink dd.furoshiki a{
    background-image: url(../../_images/top/lnavi-icon-furoshiki.jpg);
}
aside > .wa-goodsLink dd.tenugui a{
    background-image: url(../../_images/top/lnavi-icon-tenugui.jpg);
}
aside > .wa-goodsLink dd.sensu a{
    background-image: url(../../_images/top/lnavi-icon-sensu.jpg);
}
aside > .wa-goodsLink dd.uchiwa a{
    background-image: url(../../_images/top/lnavi-icon-uchiwa.jpg);
}

/**/
aside > .otherLink{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px auto;
}
aside > .otherLink dt{
    background-color: #f1f1f1;
    padding: 5px;
    text-align: center;
    line-height: 2em;
}
aside > .otherLink dd a{
    display: block;
    color: inherit;
    padding: 3px 5px;
    font-size: 12px;
    position: relative;
}
aside > .otherLink dd a:after{
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background-image: linear-gradient(to left, #ffd9d3 0%, transparent 80%);
    transition: all .2s ease;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
aside > .otherLink dd a:hover{
    opacity: 1;
}
aside > .otherLink dd a:hover:after{
    width: 100%;
}














