@charset "UTF-8";

/* 共通設定 */
.inner{
    max-width: 1120px;
    padding: 0 10px;
    margin: 0 auto;
}
a{
    transition: all .3s;
}
a:hover{
    opacity: 0.7;
}

/* フォント */
.inter{
    font-family: "Inter", sans-serif;
}
.heebo{
    font-family: "Heebo", sans-serif;
}

/* パンくずリスト */
#bcn{
    padding: 28px 0 25px;
    background-color: #0E3380;
}
#bcn .inner{
    margin: 0 auto;
    max-width: 89.58333333333334vw;
}
#bcn .breadcrumbs{
    display: flex;
    align-items: center;
    gap: 40px;
}
#bcn .breadcrumbs .item{
    position: relative;
}
#bcn .breadcrumbs .item::before{
    content: "";
    width: 10px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
}
#bcn .breadcrumbs .item:last-of-type::before{
    display: none;
}
#bcn .breadcrumbs .item p,
#bcn .breadcrumbs .item a{
    display: block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.06em;
    color: #fff;
}
#bcn .breadcrumbs .item a{
    text-decoration: underline;
}
@media (max-width: 840px) {
    #bcn{
        padding: 3.2vw 0;
    }
    #bcn .inner{
        margin: 0 auto;
        padding: 0 5.33333333333334vw;
        max-width: none;
    }
    #bcn .breadcrumbs{
        flex-wrap: wrap;
        gap: 4vw 10.66666666666666666668vw;
    }
    #bcn .breadcrumbs .item::before{
        width: 10px;
        height: 1px;
        right: -6.6666666666667vw;
    }
    #bcn .breadcrumbs .item p,
    #bcn .breadcrumbs .item a{
        font-size: 3.2vw;
    }
}


/* ページナヴィゲーション */
.wp-pagenavi{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 80px auto 0;
}
.wp-pagenavi .pages{
    display: none;
}
.wp-pagenavi .page,
.wp-pagenavi .current{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
    line-height: 1;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    color: #fff;
    transition: all .3s;
}
.wp-pagenavi .page{
    background-color: #BDC4D3;
}
.wp-pagenavi .current{
    background-color: #0E3380;
}
.wp-pagenavi .page:hover{
    border: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    color: transparent;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before{
    content: "";
    width: 15px;
    height: 16px;
    background-image: url(../img/page/pagenavi-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s;
}
.wp-pagenavi .nextpostslink::before {
    transform: translate(-50%, -50%) scaleX(-1);
}
@media (max-width: 840px) {
    .wp-pagenavi{
        gap: 2.1333333333333vw;
        margin: 16vw auto 0;
    }
}


/* メインビジュアル */
.page .page-mv{
    position: relative;
    margin: 100px 0 0;
    height: 460px;
    max-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-image: url(../img/page/mv_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page .page-mv .inner{
    position: relative;
    z-index: 2;
}
.page .page-mv .label{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
}
.page .page-mv h1{
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
}
.page .page-mv .text-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    width: 100%;
}
.page .page-mv .text-slider .slide-track {
    display: inline-block;
    animation: slide 70s linear infinite;
}
.page .page-mv .text-slider .slide-track span {
    display: inline-block;
    font-size: 220px;
    font-weight: bold;
    letter-spacing: 0;
    color: rgba(247, 247, 247, 0.1);
}
@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 840px) {
    .page .page-mv{
        margin: 18.66666666666668vw 0 0;
        height: 48vw;
        max-height: 48vw;
    }
    .page .page-mv .label{
        font-size: 4vw;
    }
    .page .page-mv h1{
        font-size: 8vw;
    }
    .page .page-mv .text-slider .slide-track {
        animation: slide 70s linear infinite;
    }
    .page .page-mv .text-slider .slide-track span {
        font-size: 16vw;
    }
}

/* お問合せ・見積もり依頼 */
#cot-es .shop-link-area{
    padding: 120px 0 105px;
    background-color: #F7F7F7;
}
#cot-es .shop-link-area .inner{
    max-width: 1320px;
}
#cot-es .shop-link-area .bnr img{
    display: block;
    max-width: 940px;
    width: 100%;
    margin: 0 auto 100px;
    border-radius: 15px;
}
#cot-es .shop-link-area h2{
    position: relative;
    font-size: 50px;
    letter-spacing: 0;
    text-align: center;
    color: #0E3380;
    padding: 0 0 30px;
    margin: 0 0 80px;
}
#cot-es .shop-link-area h2::before{
    content: "";
    width: 100px;
    height: 4px;
    background-color: #E65216;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
#cot-es .shop-link-area .shop-flex{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
#cot-es .shop-link-area .shop-flex .item{
    display: block;
    max-width: 310px;
    width: 100%;
    padding: 13px 18px 25px;
    color: #0E3480;
    background-color: #fff;
    border: 2px solid #0E3380;
    border-radius: 5px;
}
#cot-es .shop-link-area .shop-flex .item h3{
    display: block;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
}
#cot-es .shop-link-area .shop-flex .item .fc-name{
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    line-height: 1.68;
    letter-spacing: 0.02em;    
}
#cot-es .shop-link-area .shop-flex .item img{
    display: block;
    margin: 10px auto 15px;
}
#cot-es .shop-link-area .shop-flex .item .tel{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0;
}
#cot-es .shop-link-area .shop-flex .item .tel::before{
    content: "";
    width: 30px;
    height: 27px;
    background-image: url(../img/page/cta-tell-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 840px) {
    #cot-es .shop-link-area{
        padding: 16vw 0;
    }
    #cot-es .shop-link-area .inner{
        max-width: none;
        width: 100%;
        padding: 0 6.66666666666667vw;
    }
    #cot-es .shop-link-area .bnr img{
        max-width: 90vw;
        margin: 0 auto 8vw;
        border-radius: 5px;
    }
    #cot-es .shop-link-area h2{
        font-size: 5.866666666666666vw;
        padding: 0 0 5.33333333333333334vw;
        margin: 0 0 10.66666666666666666666666668vw;
    }
    #cot-es .shop-link-area h2::before{
        height: 2px;
    }
    #cot-es .shop-link-area .shop-flex{
        gap: 2vw;
    }
    #cot-es .shop-link-area .shop-flex .item{
        max-width: 48%;
        padding: 2.6666666666666667vw 3.2vw;
    }
    #cot-es .shop-link-area .shop-flex .item h3{
        font-size: 4vw;
    }
    #cot-es .shop-link-area .shop-flex .item .fc-name{
        font-size: 3.2vw;
        margin: 0 -2vw;
    }
    #cot-es .shop-link-area .shop-flex .item img{
        margin: 2.1333333333333vw auto 3.2vw;
    }
    #cot-es .shop-link-area .shop-flex .item .tel{
        gap: 1.33333333333335vw;
        font-size: 3.4666666666663vw;
    }
    #cot-es .shop-link-area .shop-flex .item .tel::before{
        width: 5.333333333333333333334vw;
        height: 4.8vw;
    }
}


#cot-es .form{
    background-color: #F3F3F3;
    color: #29323D;
    padding: 110px 0 180px;
}
#cot-es .form .inner{
    max-width: 1320px;
}
#cot-es .form-ctt h2{
    position: relative;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center;
    color: #0E3380;
    padding: 0 0 30px;
    margin: 0 0 35px;
}
#cot-es .form-ctt h2::before{
    content: "";
    width: 100px;
    height: 4px;
    background-color: #E65216;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
#cot-es .form-ctt .ttl-note{
    font-size: 18px;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 2;
    color: #29323D;
    margin: 0 auto 60px;
}
#cot-es .form-ctt .form_area{
    margin: 0 0 70px;
    padding: 75px 100px 50px;
    background-color: #fff;
    border-radius: 20px;
}
#cot-es .form-ctt .form_area .form_item{
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #DDDDDD;
}
#cot-es .form-ctt .form_area .form_item:first-of-type{
    padding: 0 0 30px;
}
#cot-es .form-ctt .form_area .start_item{
    align-items: flex-start;
}
#cot-es .form-ctt .form_area .form_item .label{
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 380px;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.06em;
}
#cot-es .form-ctt .form_area .form_item .label span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 26px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #fff;
    background-color: #EB612A;
    border-radius: 2px;
}
#cot-es .form-ctt .form_area .form_item .label.bottom{
    margin-bottom: 30px;
}
#cot-es .form-ctt .form_area .start_item .label{
    padding: 15px 0 0;
}
#cot-es .form-ctt .form_area .form_item .radio-input .wpcf7-radio{
    display: flex;
    align-items: center;
    gap: 45px;
}
#cot-es .form-ctt .form_area .form_item .radio-input .wpcf7-radio .wpcf7-list-item{
    margin: 0;
}
#cot-es .form-ctt .form_area .form_item .radio-input label{
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
#cot-es .form-ctt .form_area .form_item .radio-input label input{
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
}
#cot-es .form-ctt .form_area .form_item .radio-input label span{
    font-size: 15px;
    letter-spacing: 0.06em;
}
#cot-es .form-ctt .form_area .form_item .w-input,
#cot-es .form-ctt .form_area .form_item .textarea{
    flex: 1;
}
#cot-es .form-ctt .form_area .form_item .textarea textarea{
    width: 100%;
    height: 190px;
}
#cot-es .form-ctt .form_area .form_item .w-input input,
#cot-es .form-ctt .form_area .form_item .w-input select,
#cot-es .form-ctt .form_area .form_item .textarea textarea{
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 1.35;
    color: rgb(0, 0, 0) !important;
    background-color: #F3F3F3;
    border: none;
    outline: none;
    appearance: auto;
    border-radius: 5px;
}
#cot-es .form-ctt .form_area .form_item .w-input .flex{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}
#cot-es .form-ctt .form_area .form_item .w-input .select{
    max-width: 500px;
    padding-right: 25px;
    background-color: #F3F3F3;
}
#cot-es .form-ctt .form_area .form_item .w-input input::placeholder{
    color: #8D8D8D;
}
#cot-es .form-ctt .form_area .form_item .w-input select[name="perfecture"] option {
    color: rgb(0, 0, 0) !important;
}
#cot-es .form-ctt .form_area .form_item .w-input select[name="perfecture"] option:first-child{
    color: #8D8D8D !important;
}
#cot-es .form-ctt .form_area .form_item .input-area{
    flex: 1;
}
#cot-es .form-ctt .form_area .form_item .input-area .note{
    margin: 10px 0 0;
}
#cot-es .form-ctt .form_area .file-area .file-input{
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0 0 35px;
}
#cot-es .form-ctt .form_area .file-area .file-input p{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
#cot-es .form-ctt .form_area .file-area .file-input input[type=file]::file-selector-button{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 10px 15px;
    margin-right: 15px;
    background-color: #fff;
    border: 1px solid #BDC4D3;
    border-radius: 5px;
    color: #29323D;
    cursor: pointer;
    transition: all .3s;
}
#cot-es .form-ctt .form_area .file-area .file-input input[type=file]::file-selector-button:hover{
    opacity: 0.7;
}
#cot-es .wpcf7 input[type="file"] {
    font-size: 15px;
    letter-spacing: 0.06em;
    color: #1A2C44;
}
#cot-es .form-ctt .infomation{
    display: block;
    width: 100%;
    background-color: #fff;
    margin: 0 0 70px;
    padding: 26px 10px 26px 70px;
}
#cot-es .form-ctt .infomation .precautions{
    max-height: 270px;
    overflow: auto;
    padding-right: 60px;
}
#cot-es .form-ctt .infomation .precautions h3{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    padding: 0 0 14px;
    margin: 0 0 10px;
    border-bottom: 1px solid #BDC4D3;
}
#cot-es .form-ctt .infomation .precautions h4{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0 0 5px;
    margin: 0 0 10px;
    border-bottom: 1px solid #BDC4D3;
}
#cot-es .form-ctt .infomation .precautions p{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
}
#cot-es .form-ctt .infomation .precautions p span{
    color: #006dd9;
}
#cot-es .form-ctt .infomation .precautions .last-ctt{
    margin: 0;
}
#cot-es .form-ctt .check{
    margin: 0 0 45px;
}
#cot-es .form-ctt .check p{
    text-align: center;
    margin: 0 auto 20px;
}
#cot-es .form-ctt .check label{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
#cot-es .form-ctt .check label input{
    margin: 0;
    padding: 0;
    width: 18px;
    height: 18px;
}
#cot-es .form-ctt .check label span{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 2;
}
#cot-es .form-ctt .check p.note{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0;
}
#cot-es .form-ctt .btn_area{
    margin: 0 auto 90px;
}
#cot-es .form-ctt .btn_area .btn{
    position: relative;
    color: #fff;
    background: #ED6C01;
    box-shadow: 0 5px 0 #BA3600;
    border-radius: 100vw;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    transition: all .3s;
}
#cot-es .form-ctt .btn_area .btn::after{
    content: "";
    width: 22px;
    height: 22px;
    background-image: url(../img/page/btn-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
#cot-es .form-ctt .btn_area .btn p{
    text-align: center;
}
#cot-es .form-ctt .btn_area .btn span{
    display: none;
}
#cot-es .form-ctt .btn_area .btn input{
    display: block;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    padding: 27px 0;
    margin: 0;
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
}
#cot-es .form-ctt .btn_area .btn:hover{
    transform: translate(0, 4px);
    box-shadow: 0 1px 0 #BA3600; 
}
#cot-es .form-ctt .last-note p{
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 2;
}
#cot-es .form-ctt .last-note p:first-of-type{
    margin: 0 0 30px;
}
@media (max-width: 840px) {
    #cot-es .form{
        padding: 16vw 0 21.333333333333336vw;
    }
    #cot-es .form .inner{
        max-width: none;
        width: 100%;
        padding: 0 6.66666666667vw;
    }
    #cot-es .form-ctt h2{
        font-size: 5.33333333333333334vw;
        padding: 0 0 5.33333333333333333334vw;
        margin: 0 0 8vw;
    }
    #cot-es .form-ctt h2::before{
        height: 2px;
    }
    #cot-es .form-ctt .ttl-note{
        font-size: 3.733333333333334vw;
        line-height: 1.88;
        margin: 0 auto 12vw;
    }
    #cot-es .form-ctt .form_area{
        margin: 0 0 9vw;
        padding: 5.3333333333333334vw 4vw;
        border-radius: 10px;
    }
    #cot-es .form-ctt .form_area .form_item{
        display: block;
        padding: 4vw 0;
        border-bottom: 1px solid #DDDDDD;
    }
    #cot-es .form-ctt .form_area .form_item .label{
        justify-content: space-between;
        flex-direction: row-reverse;
        gap: 0;
        max-width: none;
        width: 100%;
        font-size: 3.7333333333334vw;
        margin: 0 0 4vw;
    }
    #cot-es .form-ctt .form_area .form_item .label span{
        width: 10.6666666666666668vw;
        height: 5.8666666666666vw;
        font-size: 3.2vw;
        border-radius: 5px;
    }
    #cot-es .form-ctt .form_area .form_item label.bottom{
        margin-bottom: 0px;
    }
    #cot-es .form-ctt .form_area .start_item .label{
        padding: 0;
    }
    #cot-es .form-ctt .form_area .form_item .radio-input .wpcf7-radio{
        flex-direction: column;
        align-items: flex-start;
        gap: 3.2vw;
        padding: 0 1.333333333333335vw;
    }
    #cot-es .form-ctt .form_area .form_item .radio-input label{
        gap: 2.6666666666667vw;
    }
    #cot-es .form-ctt .form_area .form_item .radio-input label input{
        width: 4.8vw;
        height: 4.8vw;
    }
    #cot-es .form-ctt .form_area .form_item .radio-input label span{
        font-size: 3.73333333333333334vw;
    }
    #cot-es .form-ctt .form_area .form_item .textarea textarea{
        height: 42.6666666666666666666667vw;
    }
    #cot-es .form-ctt .form_area .form_item .w-input input,
    #cot-es .form-ctt .form_area .form_item .w-input select,
    #cot-es .form-ctt .form_area .form_item .textarea textarea{
        padding: 4vw;
        font-size: 3.4666666666666666666663vw;
    }
    #cot-es .form-ctt .form_area .form_item .w-input .flex{
        gap: 2.66666666667vw;
    }
    #cot-es .form-ctt .form_area .form_item .w-input .select{
        max-width: none;
        width: 100%;
        padding-right: 4vw;
    }
    #cot-es .form-ctt .form_area .file-area .file-input{
        display: flex;
        flex-direction: column;
        padding-left: 0.26666666666666vw;
        gap: 2.666666666667vw;
        margin: 0 0 5.3333333333333334vw;
    }
    #cot-es .form-ctt .form_area .file-area .file-input p{
        gap: 2.6666666666667vw;
        font-size: 3.73333333333333334vw;
    }
    #cot-es .form-ctt .form_area .file-area .file-input input[type=file]::file-selector-button{
        font-size: 2.933333333333333333333vw;
        padding: 1.86666666666666666667vw 3.2vw 2.1333333333333333333vw;
    }
    #cot-es .form-ctt .form_area .file-area .note{
        font-size: 2.933333333333333333vw;
    }
    #cot-es .form-ctt .infomation{
        margin: 0 0 10vw;
        padding: 4vw 2.666666666667vw 4vw 4vw;
    }
    #cot-es .form-ctt .infomation .precautions{
        max-height: 48vw;
        overflow: auto;
        padding-right: 5.333333333333334vw;
    }
    #cot-es .form-ctt .infomation .precautions h3{
        font-size: 4.26666666666667vw;
        padding: 0 0 2.666666666667vw;
        margin: 0 0 2.6666666666666667vw;
    }
    #cot-es .form-ctt .infomation .precautions h4{
        font-size: 3.73333333333333334vw;
        padding: 0 0 1.333333333335vw;
        margin: 0 0 2.6666666666666667vw;
    }
    #cot-es .form-ctt .infomation .precautions p{
        font-size: 3.2vw;
        font-weight: 400;
        margin: 0 0 4vw;
    }
    #cot-es .form-ctt .check{
        margin: 0 0 8vw;
    }
    #cot-es .form-ctt .check p{
        margin: 0 auto 4vw;
    }
    #cot-es .form-ctt .check label{
        gap: 1.3333333333333333335vw;
    }
    #cot-es .form-ctt .check label input{
        margin: 0;
        padding: 0;
        width: 4.266666666666666666667vw;
        height: 4.266666666666666666667vw;
    }
    #cot-es .form-ctt .check label span{
        font-size: 4vw;
        line-height: 1.88;
    }
    #cot-es .form-ctt .check p.note{
        font-size: 3.2vw;
    }
    #cot-es .form-ctt .btn_area{
        margin: 0 auto 16vw;
    }
    #cot-es .form-ctt .btn_area .btn{
        max-width: 80vw;
    }
    #cot-es .form-ctt .btn_area .btn::after{
        width: 5.333333333333334vw;
        height: 5.333333333333334vw;
        right: 4vw;
        border-radius: 50%;
    }
    #cot-es .form-ctt .btn_area .btn input{
        font-size: 4.26666666666666667vw;
        padding: 4vw 0;
    }
    #cot-es .form-ctt .last-note p{
        font-size: 3.46666666666666666663vw;
        line-height: 1.88;
    }
    #cot-es .form-ctt .last-note p:first-of-type{
        margin: 0 0 6.6666666666667vw;
    }
}

/* 確認画面 */


/* 完了画面 */
.thanks .wrap{
    margin: 70px auto 120px;
}
.thanks .thanks-content {
    max-width: 650px;
    margin: 60px auto;
    text-align: center;
}
.thanks .thanks-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: #FFE037;
    border-radius: 50%;
}
.thanks .thanks-icon .check-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 60px;
    transform: translate(-50%, -60%) rotate(45deg);
    border-right: 8px solid #222;
    border-bottom: 8px solid #222;
}
.thanks .wrap h2 {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0 auto 25px;
    color: #222;
}
.thanks .thanks-message {
    margin-bottom: 40px;
}
.thanks .thanks-message p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.05em;
    margin: 0;
}
.thanks .btn-area {
    margin-top: 40px;
}
.thanks .btn a{
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.02em;
    width: 100%;
    max-width: 600px;
    padding: 24px 0 27px;
    margin: 0 auto;
    color: #fff;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 0 #AC3100;
}
.thanks .btn a:hover{
    opacity: 1;
    transform: translate(0, 4px);
    box-shadow: 0 1px 0 #AC3100;
}
@media only screen and (max-width: 840px) {
    .thanks .wrap {
        margin: 8vw auto 12vw;
    }
    .thanks .thanks-content {
        margin: 8vw auto 0;
    }
    .thanks .thanks-icon {
        width: 25vw;
        height: 25vw;
        margin: 0 auto 6vw;
    }
    .thanks .thanks-icon .check-mark {
        width: 8vw;
        height: 12vw;
        border-right: 1.5vw solid #222;
        border-bottom: 1.5vw solid #222;
    }
    .thanks .wrap h2 {
        font-size: 6vw;
        margin: 0 auto 4vw;
    }
    .thanks .thanks-message {
        margin-bottom: 6vw;
    }
    .thanks .thanks-message p {
        font-size: 3.5vw;
    }
    .thanks .btn-area {
        margin-top: 6vw;
    }
    .thanks .btn a{
        font-size: 3.7333333333333333334vw;
        max-width: 74.66666666666667vw;
        padding: 3.7333333333333333334vw;
        border: none;
    }
    .thanks .btn::after{
        display: none;
    }
    .thanks .sp {
        display: inline;
    }
}


/* お知らせ　共通Style */
.news-ctt .main-cont{
    padding: 120px 0 100px;
    background-color: #F7F7F7;
}
.news-ctt .main-cont .inner{
    display: flex;
    gap: 80px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
}
@media (max-width: 840px) {
    .news-ctt .main-cont{
        padding: 16vw 0;
    }
    .news-ctt .main-cont .inner{
        display: flex;
        flex-direction: column-reverse;
        gap: 16vw;
        max-width: none;
        padding: 0 6.66666666667vw;
    }
}

/* サイドバー */
.sidebar{
    max-width: 320px;
    width: 100%;
}
.sidebar .item:last-of-type{
    margin: 80px 0 0;
}
.sidebar .ttl{
    position: relative;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    padding: 0 0 30px;
    margin: 0 0 25px;
    color: #0E3380;
    border-bottom: 2px solid #EBE8E8;
}
.sidebar .ttl:before{
    content: "";
    width: 40px;
    height: 1px;
    background-color: #0E3380;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.sidebar .category-list li a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    letter-spacing: 0.06em;
    padding: 0 0 15px;
    margin: 0 0 15px;
    color: #0E3380;
}
.sidebar .category-list li:last-of-type a{
    margin: 0;
}
.sidebar .category-list li a::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background-image: repeating-linear-gradient(
        to right,
        #D3CFCF 0px,
        #D3CFCF 2px,
        transparent 2px,
        transparent 4px
    );
}
.sidebar .category-list li a::after{
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/page/news-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
}
.sidebar .category-list li a:hover{
    color: #ED6C00;
    opacity: 1;
}
.sidebar .category-list li a:hover::after{
    background-image: url(../img/page/news-arrow-hover-orange.svg);
}
@media (max-width: 840px) {
    .sidebar{
        max-width: none;
    }
    .sidebar .item:last-of-type{
        margin: 12vw 0 0;
    }
    .sidebar .ttl{
        font-size: 6.666666666666667vw;
        padding: 0 0 4vw;
        margin: 0 0 5.3333333333333334vw;
    }
    .sidebar .ttl:before{
        width: 40px;
        height: 1px;
        bottom: -1px;
    }
    .sidebar .category-list li a{
        font-size: 4vw;
        padding: 0 0 3.733333333333333334vw;
        margin: 0 0 3.733333333333333334vw;
    }
    .sidebar .category-list li:last-of-type a{
        margin: 0;
    }
    .sidebar .category-list li a::after{
        width: 8vw;
        height: 8vw;
        border-radius: 50%;
    }
}


/* お知らせ　一覧ページ */
#news-archive .main-cont .post-area{
    flex: 1;
}
#news-archive .main-cont .post-area .item{
    display: flex;
    gap: 30px;
    padding: 20px 50px 20px 20px;
    margin: 0 0 30px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #D1CDC4;
    transition: all .3s;
}
#news-archive .main-cont .post-area .item:last-of-type{
    margin: 0;
}
#news-archive .main-cont .post-area .item:hover{
    opacity: 1;
}
#news-archive .main-cont .post-area .item .img{
    max-width: 250px;
    width: 100%;
    max-height: 180px;
    height: 180px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
#news-archive .main-cont .post-area .item .img img{
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
#news-archive .main-cont .post-area .item:hover .img img{
    transform: scale(1.1);
    opacity: 1;
}
#news-archive .main-cont .post-area .item .txt{
    flex: 1;
    padding: 12px 0 0;
}
#news-archive .main-cont .post-area .item .txt .label{
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 0 15px;
}
#news-archive .main-cont .post-area .item .txt .label .category{
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 4px 10px 5px;
    color: #fff;
    background-color: #0E3380;
}
#news-archive .main-cont .post-area .item .txt .label .date{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #29323D;
}
#news-archive .main-cont .post-area .item .txt .ttl{
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.36;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0E3380;
    margin: 0 0 15px;
}
#news-archive .main-cont .post-area .item .txt .note{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 840px) {
    #news-archive .main-cont .post-area{
        display: block;
        width: 100%;
    }
    #news-archive .main-cont .post-area .item{
        display: block;
        padding: 2.6666666666666667vw 4vw 5.33333333333334vw;
        margin: 0 0 5.333333333333333333334vw;
        border: none;
        border-radius: 5px;
    }
    #news-archive .main-cont .post-area .item .img{
        max-width: 100%;
        max-height: 53.333333333333336vw;
        height: 53.333333333333336vw;
    }
    #news-archive .main-cont .post-area .item .txt{
        display: block;
        width: 100%;
        margin: 5.333333334vw 0 0;
        padding: 0;
    }
    #news-archive .main-cont .post-area .item .txt .label{
        gap: 5.33333333333334vw;
        margin: 0 0 2.666666666667vw;
    }
    #news-archive .main-cont .post-area .item .txt .label .category{
        font-size: 2.66666666666667vw;
        padding: 0.8vw 2.133333333333vw 1.06666667vw;
    }
    #news-archive .main-cont .post-area .item .txt .label .date{
        font-size: 3.2vw;
    }
    #news-archive .main-cont .post-area .item .txt .ttl{
        font-size: 4.8vw;
        -webkit-line-clamp: 2;
        margin: 0;
    }
    #news-archive .main-cont .post-area .item .txt .note{
        display: none;
    }
}


/* お知らせ　詳細ページ */
#news-single{
    margin: 100px 0 0;
}
#news-single .main-cont .post-area{
    flex: 1;
}
#news-single .main-cont .post-area .post-ctt{
    padding: 50px 50px 65px;
    margin: 0 0 80px;
    border-radius: 20px;
    background-color: #fff;
}
#news-single .main-cont .post-area .post-ctt .label{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 15px;
}
#news-single .main-cont .post-area .post-ctt .label .category{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 4px 10px 5px;
    color: #fff;
    background-color: #0E3380;
}
#news-single .main-cont .post-area .post-ctt .label .date{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
#news-single .main-cont .post-area .post-ctt .thumanil img{
    display: block;
    width: 100%;
    margin: 0 0 40px;
}
#news-single .main-cont .post-area .post-ctt .ttl{
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.44;
    color: #0E3380;
    margin: 0 0 30px;
}
#news-single .main-cont .post-area .post-ctt .ctt{
    width: 100%;
}
#news-single .main-cont .post-area .post-ctt .ctt h2{
    font-size: 30px !important;
    letter-spacing: 0.06em;
    line-height: 1.4;
    padding: 0 0 30px;
    margin: 0 0 40px;
    color: #29323D;
    border-bottom: 2px solid #29323D;
}
#news-single .main-cont .post-area .post-ctt .ctt h3{
    font-size: 24px;
    letter-spacing: 0.06em;
    padding: 19px 25px 21px;
    margin: 0 0 30px;
    color: #fff;
    background-color: #0E3380;
    border-radius: 10px;
}
#news-single .main-cont .post-area .post-ctt .ctt h4{
    font-size: 22px;
    letter-spacing: 0.06em;
    padding: 2px 0 2px 20px;
    margin: 0 0 25px;
    color: #29323D;
    border-left: 3px solid #0E3380;
}
#news-single .main-cont .post-area .post-ctt .ctt img{
    display: block;
    margin: 0 0 30px;
}
#news-single .main-cont .post-area .post-ctt .ctt p{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 2.38;
    margin: 0 0 60px;
}
#news-single .main-cont .post-area .post-ctt .ctt .wp-block-group p:last-of-type{
    margin: 0;
}
#news-single .main-cont .post-area .page-move-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    margin: 0 0 60px;
    border-top: 1px solid #0E3380;
    border-bottom: 1px solid #0E3380;
}
#news-single .main-cont .post-area .page-move-btn::before{
    content: "";
    width: 1px;
    height: 60px;
    background-color: #0E3380;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#news-single .main-cont .post-area .page-move-btn li a{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #0E3380;
    transition: all .3s;
}
#news-single .main-cont .post-area .page-move-btn .pgbtn_prev a::before{
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../img/page/news-arrow-hover.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scaleX(-1);
    transition: all .3s;
}
#news-single .main-cont .post-area .page-move-btn .pgbtn_next a::after{
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../img/page/news-arrow-hover.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s;
}
#news-single .main-cont .post-area .page-move-btn li a:hover{
    opacity: 1;
    color: #ED6C01;
}
#news-single .main-cont .post-area .page-move-btn .pgbtn_prev a:hover::before,
#news-single .main-cont .post-area .page-move-btn .pgbtn_next a:hover::after{
    background-image: url(../img/page/news-arrow-hover-orange.svg);
}
#news-single .main-cont .post-area .btn a{
    position: relative;
    color: #fff;
    background: #ED6C01;
    box-shadow: 0 5px 0 #BA3600;
    border-radius: 100vw;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    transition: all .3s;
    display: block;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    padding: 27px 0;
}
#news-single .main-cont .post-area .btn a::after{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/page/btn-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
#news-single .main-cont .post-area .btn a:hover{
    transform: translate(0, 4px);
    box-shadow: 0 1px 0 #BA3600; 
    opacity: 1;
}

@media (max-width: 840px) {
    #news-single{
        margin: 18.666666666666668vw 0 0;
    }
    #news-single .main-cont .post-area .post-ctt{
        padding: 5.3333333333333334vw 4vw 8vw;
        margin: 0 0 16vw;
        border-radius: 10px;
    }
    #news-single .main-cont .post-area .post-ctt .label{
        gap: 3.2vw;
        margin: 0 0 3.2vw;
    }
    #news-single .main-cont .post-area .post-ctt .label .category{
        font-size: 2.933333333333333333vw;
        padding: 1.0666666666667vw 2.13333333333333vw 1.333333335vw;
    }
    #news-single .main-cont .post-area .post-ctt .label .date{
        font-size: 3.2vw;
    }
    #news-single .main-cont .post-area .post-ctt .thumanil img{
        margin: 0 0 8vw;
    }
    #news-single .main-cont .post-area .post-ctt .ttl{
        font-size: 6.4vw;
        line-height: 1.35;
        margin: 0 0 8vw;
    }
    #news-single .main-cont .post-area .post-ctt .ctt h2{
        font-size: 6.4vw !important;
        padding: 0 0 5.3333333334vw;
        margin: 0 0 8vw;
    }
    #news-single .main-cont .post-area .post-ctt .ctt h3{
        font-size: 5.3333333333333333334vw;
        padding: 3.2vw 4vw;
        margin: 0 0 6.666666666666667vw;
        border-radius: 5px;
    }
    #news-single .main-cont .post-area .post-ctt .ctt h4{
        font-size: 4.8vw;
        padding: 0.56666666vw 0 0.56666666666vw 4vw;
        margin: 0 0 5.3333333333333334vw;
        border-left: 2px solid #0E3380;
    }
    #news-single .main-cont .post-area .post-ctt .ctt img{
        margin: 0 auto 5.333333333334vw;
    }
    #news-single .main-cont .post-area .post-ctt .ctt p{
        font-size: 3.73333333333334vw;
        line-height: 1.67;
        margin: 0 0 8vw;
    }
    #news-single .main-cont .post-area .page-move-btn{
        padding: 8vw 0;
        margin: 0 0 10.6666666666668vw;
    }
    #news-single .main-cont .post-area .page-move-btn::before{
        height: 10.666666666666668vw;
    }
    #news-single .main-cont .post-area .page-move-btn li a{
        gap: 2.66666666666666667vw;
        font-size: 4vw;
    }
    #news-single .main-cont .post-area .page-move-btn .pgbtn_prev a::before,
    #news-single .main-cont .post-area .page-move-btn .pgbtn_next a::after{
        width: 6.66666666666667vw;
        height: 6.66666666666667vw;
    }
    #news-single .main-cont .post-area .btn a{
        font-size: 4vw;
        padding: 4vw 0;
        max-width: 80vw;
        margin: 0 auto;
        border: 1px solid #1B2839;
    }
    #news-single .main-cont .post-area .btn a::before{
        width: 4.8vw;
        height: 4.8vw;
        right: 4vw;
        border-radius: 50%;
    }
}

/* 店舗一覧 */
#shop-archive .locations-area{
    padding: 120px 0 130px;
    background-color: #F7F7F7;
}
#shop-archive .locations-area .inner{
    max-width: 1400px;
}
#shop-archive .locations-area .map{
    position: relative;
    display: block;
    max-width: 1400px;
    width: 100%;
    border-radius: 50px;
    background-color: #fff;
    padding: 40px 10px;
    margin: 0 auto 90px;
}
#shop-archive .locations-area .map .txt{
    position: absolute;
    top: 2.6004728132387704vw;
    left: 10.16548463356974vw;
    z-index: 1;
}
#shop-archive .locations-area .map .txt .logo img{
    display: block;
    max-width: 12.626262626262626vw;
    width: 100%;
    margin: 0 0 1.2626262626262625vw;
}
#shop-archive .locations-area .map .txt p{
    font-size: 2.0707070707071vw;
    font-family: "ten-mincho-antique", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.37;
    color: #0E3380;
}
#shop-archive .locations-area .map .txt p span{
    color: #EB612A;
}
#shop-archive .locations-area .map svg{
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
    max-width: 51.31313131313131vw;
    width: 100%;
}
#shop-archive .locations-area .map svg a{
    display: block;
    position: relative;
    transition: all .3s;
}
#shop-archive .locations-area .page-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 90px;
}
#shop-archive .locations-area .page-link a{
    position: relative;
    display: block;
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0;
    text-align: center;
    max-width: 330px;
    width: 100%;
    padding: 28px 0 32px;
    color: #0E3380;
    background-color: #fff;
    border: 5px solid #0E3380;
    border-radius: 5px;
    transition: all .3s;
}
#shop-archive .locations-area .page-link a::before{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "";
    width: 34px;
    height: 34px;
    background-image: url(../img/area-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#shop-archive .locations-area .page-link a:hover{
    opacity: 1;
    color: #fff;
    background-color: #0E3380;
}
#shop-archive .locations-area .area-ctt .box00{
    display: block;
    margin: 0 0 90px;
}
#shop-archive .locations-area .area-ctt .box00 h3 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 10px;
    color: #fff;
    background-color: #0E3380;
    padding: 20px 30px;
    margin: 0 auto 60px;
}
#shop-archive .locations-area .area-ctt .box00 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
}
#shop-archive .locations-area .area-ctt .box00 ul li {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: none;
    width: 100%;
    margin: 0;
    background-color: #fff;
    border: 2px solid #0E3380;
    border-radius: 10px;
    padding: 40px 0px 45px 40px;
}
#shop-archive .locations-area .area-ctt .box00 ul li .phobox {
    width: 40%;
    overflow: hidden;
    margin: 0;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox{
    flex: 1;
    padding: 0;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox h4 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin: 0 0 15px;
    color: #0E3380;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox h4 span {
    font-size: 30px;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl{
    display: flex;
    align-items: center;
    gap: 20px;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dt{
    display: block;
    max-width: 90px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.78;
    letter-spacing: 0.06em;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.78;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd.dd-flex{
    display: flex;
    align-items: center;
    gap: 5px 15px;
    margin-right: -20px;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .address br{
    display: none;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .map-btn{
    flex: 1;
    text-align: right;
}
#shop-archive .locations-area .area-ctt .box01 ul li:nth-child(5) .textbox dl dd .map-btn{
    padding-right: 30px;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .map{
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.02em;
    padding: 5px 15px;
    white-space: nowrap;
    margin: 0;
    display: inline-block;
    width: auto;
    border: 2px solid #0E3380;
    border-radius: 5px;
    color: #0E3480;
    transition: all .3s;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .map:hover{
    opacity: 1;
    color: #fff;
    background-color: #0E3480;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox .link {
    display: flex;
    gap: 7px;
    margin: 40px auto 0;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox .link dl{
    margin: 0;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox .link a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 320px;
    height: 70px;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox .link .tell{
    margin: 0;
    font-size: 31px;
    font-weight: bold;
    letter-spacing: 0;
    color: #ED6C00;
    border: 3px solid #ED6C00;
    border-radius: 5px;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox .link .tell::before{
    content: "";
    width: 30px;
    height: 27px;
    background-image: url(../img/page/orange-tell.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#shop-archive .locations-area .area-ctt .box00 ul li .textbox .ctt-link{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin: 0;
    color: #fff;
    background-color: #ED6C00;
    border-radius: 5px;
}
@media (max-width: 1500px) {
    #shop-archive .locations-area .area-ctt .box00 ul li {
        padding: 40px 30px 45px 40px;
    }
}
@media (max-width: 840px) {
    #shop-archive .locations-area{
        padding: 16vw 0;
    }
    #shop-archive .locations-area .inner{
        max-width: none;
        padding: 0 5.333333333333333334vw;
    }
    #shop-archive .locations-area .map{
        max-width: none;
        border-radius: 10px;
        padding: 6.6666666666667vw 2.666666666666666667vw 4vw;
        margin: 0 auto 12vw;
    }
    #shop-archive .locations-area .map .txt{
        position: absolute;
        top: 3.2vw;
        left: 2.66666666666666667vw;
    }
    #shop-archive .locations-area .map .txt .logo img{
        display: block;
        max-width: 24vw;
        width: 100%;
        margin: 0 0 2.6666666666666667vw;
    }
    #shop-archive .locations-area .map .txt p{
        font-size: 4vw;
    }
    #shop-archive .locations-area .map svg{
        max-width: none;
        width: 100%;
        height: auto;
    }
    #shop-archive .locations-area .page-link{
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.6666666666666666667vw;
        margin: 0 auto 13.33333333335vw;
    }
    #shop-archive .locations-area .page-link a{
        font-size: 4vw;
        max-width: 42.66666666666666666666667vw;
        padding: 2.4vw 0 2.66666666666666666666667vw;
        border: 2px solid #0E3380;
    }
    #shop-archive .locations-area .page-link a::before{
        right: 2.6666666666666666667vw;
        width: 3.7333333333333334vw;
        height: 3.7333333333333334vw;
    }
    #shop-archive .locations-area .area-ctt .box00{
        margin: 0 0 10.666666666666668vw;
    }
    #shop-archive .locations-area .area-ctt .box00 h3 {
        font-size: 4.8vw;
        border-radius: 5px;
        padding: 2.666666666666667vw 4.26666666666666667vw 3.2vw;
        margin: 0 auto 5.3333333333333333334vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul {
        gap: 8vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li {
        flex-direction: column;
        gap: 5.3333333333333334vw;
        border: 1px solid #0E3380;
        box-shadow: 0 5px 0 rgba(0, 0, 0, 0.16);
        border-radius: 5px;
        padding: 5.333333333333334vw 4vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .phobox,
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox{
        display: block;
        width: 100%;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox h4 {
        font-size: 5.3333333333334vw;
        margin: 0 0 4vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox h4 span {
        font-size: 4.26666666666667vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl{
        display: block;
        margin: 0 0 3.2vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl:first-of-type{
        margin: 0 0 3.2vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl:last-of-type{
        margin: 0;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dt{
        max-width: none;
        font-size: 3.7333333333334vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd{
        font-size: 3.7333333333334vw;
        line-height: 1.5;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd.dd-flex{
        gap: 2.66666666666667vw;
        flex-direction: column;
        align-items: flex-start;
        max-height: none;
        margin: 0;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .address{
        flex-shrink: unset;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .address br{
        display: block;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .map-btn{
        text-align: left;
    }
    #shop-archive .locations-area .area-ctt .box01 ul li:nth-child(5) .textbox dl dd .map-btn{
        padding-right: 0;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox dl dd .map{
        flex: none;
        flex-shrink: 0;
        font-size: 3.2vw;
        padding: 1.35555555555555vw 1.86666677vw;
        border: 2px solid #0E3380;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox .link {
        flex-direction: column;
        gap: 2.66666666667vw;
        margin: 6.66666666667vw auto 0;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox .link a{
        gap: 1.3333333333335vw;
        width: 100%;
        height: 12vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox .link dl{
        margin: 0;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox .link .tell{
        font-size: 5.3333333333333333334vw;
        border: 2px solid #ED6C00;
        border-radius: 5px;
        margin: 0;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox .link .tell::before{
        width: 5.333333333333334vw;
        height: 4.5333333333333333vw;
    }
    #shop-archive .locations-area .area-ctt .box00 ul li .textbox .ctt-link{
        font-size: 4vw;
    }
}

#shop-archive .office{
    padding: 135px 0 105px;
    overflow: hidden;
    background-color: #fff;
}
#shop-archive .office .inner{
    max-width: 1300px;
}
#shop-archive .office .ttl_area{
  position: relative;
  color: #0E3380;
  margin: 0 auto 210px;
  z-index: 2;
}
#shop-archive .office .ttl_area .bg{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 220px;
  font-weight: 800;
  letter-spacing: 0;
  color: #F3F3F3;
  z-index: 1;
}
#shop-archive .office .ttl_area p{
  position: relative;
  font-size: 24px;
  font-family: "Inter", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 auto 15px;
  z-index: 2;
}
#shop-archive .office .ttl_area h2{
  position: relative;
  font-size: 65px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
  z-index: 2;
}
#shop-archive .office .ctt{
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
}
#shop-archive .office .ctt .info{
    display: flex;
    justify-content: space-between;
    margin: 0 0 50px;
}
#shop-archive .office .ctt .info img{
    display: block;
    max-width: 435px;
    width: 100%;
    border-radius: 10px;
}
#shop-archive .office .ctt .info .txt{
    display: block;
    max-width: 630px;
    width: 100%;   
    margin-top: -10px;
}
#shop-archive .office .ctt .info .txt h2{
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0;
    margin: 0 0 30px;
    color: #0E3380;
}
#shop-archive .office .ctt .info .txt dl{
    position: relative;
    display: flex;
    padding: 20px 0;
}
#shop-archive .office .ctt .info .txt dl::before,
#shop-archive .office .ctt .info .txt dl:first-of-type::after{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 4px);
}
#shop-archive .office .ctt .info .txt dl:first-of-type::after{
    top: 0;
    bottom: auto;
}
#shop-archive .office .ctt .info .txt dl dt{
    display: block;
    max-width: 155px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #0E3380;
}
#shop-archive .office .ctt .info .txt dl dd{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.56;
    color: #1A2C44;
}
#shop-archive .office .ctt .info .txt dl dd.tell a{
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 210px;
    width: 100%;
    padding: 7px 10px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0;
    color: #0E3480;
    border: 2px solid #0E3380;
    border-radius: 5px;
}
#shop-archive .office .ctt .info .txt dl dd.tell a::before{
    content: "";
    width: 21px;
    height: 19px;
    background-image: url(../img/page/cta-tell-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#shop-archive .office .ctt .map iframe{
    display: block;
    width: 100%;
    height: 460px;
    margin: 0 auto 50px;
}
#shop-archive .office .ctt .map .btn a{
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
    color: #0E3380;
    max-width: 270px;
    width: 100%;
    padding: 15px 0 16px;
    margin: 0 auto;
    border-radius: 100vw;
    border: 2px solid #0E3380;
    transition: all .3s;
}
#shop-archive .office .ctt .map .btn a::before{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) scale(-1, 1);
    content: "";
    width: 12px;
    height: 10px;
    background-image: url(../img/page/pagenavi-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#shop-archive .office .ctt .map .btn a:hover{
    color: #fff;
    background-color: #0E3380;
    opacity: 1;
}
#shop-archive .office .ctt .map .btn a:hover::before{
    transform: translateY(-50%);
    background-image: url(../img/page/pagenavi-arrow_hover.svg);
}
@media (max-width: 840px) {
    #shop-archive .office{
        padding: 16vw 0 13.33333333333333333335vw;
    }
    #shop-archive .office .inner{
        max-width: none;
        padding: 0 5.33333333333333333334vw;
    }
    #shop-archive .office .ttl_area{
        margin: 0 auto 13.3333333333333333335vw;
    }
    #shop-archive .office .ttl_area .bg{
        top: 0;
        left: 50%;
        font-size: 16vw;
    }
    #shop-archive .office .ttl_area p{
        font-size: 3.46666666666666666666663vw;
        margin: 0 auto 2.13333333333333333vw;
    }
    #shop-archive .office .ttl_area h2{
        font-size: 9.333333333333333333334vw;
        line-height: 1.14;
    }
    #shop-archive .office .ctt{
        max-width: none;
    }
    #shop-archive .office .ctt .info{
        display: block;
        margin: 0 0 10.666666666666666668vw;
    }
    #shop-archive .office .ctt .info img{
        max-width: none;
        margin: 0 0 8vw;
    }
    #shop-archive .office .ctt .info .txt{
        max-width: none;  
        margin-top: 0;
    }
    #shop-archive .office .ctt .info .txt h2{
        font-size: 5.33333333334vw;
        margin: 0 0 5.3333333333333333334vw;
    }
    #shop-archive .office .ctt .info .txt dl{
        padding: 4vw 0;
    }
    #shop-archive .office .ctt .info .txt dl dt{
        max-width: 26.666666666666668vw;
        font-size: 3.733333333333334vw;
    }
    #shop-archive .office .ctt .info .txt dl dd{
        font-size: 3.733333333333333334vw;
    }
    #shop-archive .office .ctt .info .txt dl dd.tell a{
        gap: 1.33333333333335vw;
        max-width: 53.333333333333334vw;
        padding: 1.33333333333335vw 2.1333333333vw 1.066666666668vw;
        font-size: 4.8vw;
        border: 1px solid #0E3380;
    }
    #shop-archive .office .ctt .info .txt dl dd.tell a::before{
        width: 4.8vw;
        height: 4.266666666666666667vw;
    }
    #shop-archive .office .ctt .map iframe{
        height: 66.666666666666666666666vw;
        margin: 0 auto 8vw;
    }
    #shop-archive .office .ctt .map .btn a{
        font-size: 3.733333333333334vw;
        max-width: 66.6666666666666666vw;
        padding: 3.733333333333334vw 0 4vw;
    }
    #shop-archive .office .ctt .map .btn a::before{
        right: 5.333333333333334vw;
        width: 3.2vw;
        height: 2.666666666666667vw;
    }
}


/* 店舗詳細 */
#shop-single section{
    overflow: hidden;
}
#shop-single .inner{
    max-width: 1300px;
}
#shop-single .post-ctt{
    padding: 120px 0 100px;
    background-color: #F7F7F7;
}
#shop-single .post-ctt .thumanil img{
    display: block;
    width: 100%;
    max-width: 1280px;
    border-radius: 20px;
    margin: 0 auto 90px;
}
#shop-single .post-ctt .info-flex{
    display: flex;
    justify-content: space-between;
    margin: 0 auto 95px;
}
#shop-single .post-ctt .info-flex .txt{
    flex-shrink: 0;
    display: block;
    max-width: 540px;
    width: 100%;
}
#shop-single .post-ctt .info-flex .txt h2{
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0;
    margin: 0 0 20px;
    color: #0E3380;
}
#shop-single .post-ctt .info-flex .txt h2 span{
    font-size: 24px;
}
#shop-single .post-ctt .info-flex .txt dl{
    position: relative;
    display: flex;
    padding: 20px 0;
}
#shop-single .post-ctt .info-flex .txt dl:nth-of-type(2){
    align-items: center;
}
#shop-single .post-ctt .info-flex .txt dl::before,
#shop-single .post-ctt .info-flex .txt dl:first-of-type::after{
    content: "";
    width: 100%;
    height: 2px;
    transform: scaleY(0.5);
    transform-origin: bottom;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background-image: repeating-linear-gradient(to right, #111111 0px, #111111 1px, transparent 1px, transparent 5px);
}
#shop-single .post-ctt .info-flex .txt dl:first-of-type::after{
    top: -1px;
    bottom: auto;
}
#shop-single .post-ctt .info-flex .txt dl dt{
    display: block;
    max-width: 155px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #0E3380;
}
#shop-single .post-ctt .info-flex .txt dl dd{
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.56;
    color: #1A2C44;
}
#shop-single .post-ctt .info-flex .txt dl dd.tell a{
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 210px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    padding: 7px 10px;
    color: #0E3480;
    border: 2px solid #0E3380;
    border-radius: 5px;
}
#shop-single .post-ctt .info-flex .txt dl dd.tell a::before{
    content: "";
    width: 21px;
    height: 19px;
    background-image: url(../img/page/cta-tell-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#shop-single .post-ctt .info-flex .sub_img{
    flex: 1;
    max-width: 640px;
    width: 100%;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
#shop-single .post-ctt .info-flex .sub_img img{
    display: block;
    max-width: 310px;
    max-height: 206px;
    width: 100%;
    height: auto;
    border-radius: 5px;
}
#shop-single .post-ctt .map iframe{
    display: block;
    width: 100%;
    height: 460px;
    margin: 0 0 40px;
}
#shop-single .post-ctt .map .btn a{
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
    color: #0E3380;
    background-color: #fff;
    max-width: 270px;
    width: 100%;
    padding: 15px 0 16px;
    margin: 0 auto;
    border-radius: 100vw;
    border: 2px solid #0E3380;
    transition: all .3s;
}
#shop-single .post-ctt .map .btn a::before{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) scale(-1, 1);
    content: "";
    width: 12px;
    height: 10px;
    background-image: url(../img/page/pagenavi-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#shop-single .post-ctt .map .btn a:hover{
    color: #fff;
    background-color: #0E3380;
    opacity: 1;
}
#shop-single .post-ctt .map .btn a:hover::before{
    transform: translateY(-50%);
    background-image: url(../img/page/pagenavi-arrow_hover.svg);
}
@media (max-width: 840px) {
    #shop-single .post-ctt{
        padding: 12vw 0;
    }
    #shop-single .inner{
        padding: 0 5.3333333333334vw;
    }
    #shop-single .post-ctt .thumanil img{
        border-radius: 10px;
        margin: 0 0 8vw;
    }
    #shop-single .post-ctt .info-flex{
        display: block;
        margin: 0 auto 10.666666666666668vw;
    }
    #shop-single .post-ctt .info-flex .txt{
        max-width: none;
    }
    #shop-single .post-ctt .info-flex .txt h2{
        font-size: 6.4vw;
        margin: 0 0 5.3333333333333333334vw;
    }
    #shop-single .post-ctt .info-flex .txt dl{
        padding: 4vw 0;
    }
    #shop-single .post-ctt .info-flex .txt dl dt{
        max-width: 24vw;
        font-size: 3.733333333333334vw;
    }
    #shop-single .post-ctt .info-flex .txt dl dd{
        font-size: 3.733333333333333334vw;
    }
    #shop-single .post-ctt .info-flex .txt dl dd.tell a{
        display: inline-flex;
        gap: 1.33333333333335vw;
        max-width: none;
        padding: 1.33333333333335vw 2.1333333333vw 1.066666666668vw;
        font-size: 4.8vw;
        border: 1px solid #0E3380;
    }
    #shop-single .post-ctt .info-flex .txt dl dd.tell a::before{
        width: 4.8vw;
        height: 4.266666666666666667vw;
    }
    #shop-single .post-ctt .info-flex .sub_img{
        display: flex;
        flex-wrap: wrap;
        max-width: none;
        gap: 2.666666666666666667vw;
        margin: 5.3333333333334vw 0 0;
    }
    #shop-single .post-ctt .info-flex .sub_img img{
        max-width: none;
        max-height: none;
    }
    #shop-single .post-ctt .map iframe{
        height: 66.666666666666666666666vw;
        margin: 0 auto 8vw;
    }
    #shop-single .post-ctt .map .btn a{
        font-size: 3.733333333333334vw;
        max-width: 66.6666666666666666vw;
        padding: 3.733333333333334vw 0 4vw;
    }
    #shop-single .post-ctt .map .btn a::before{
        right: 5.333333333333334vw;
        width: 3.2vw;
        height: 2.666666666666667vw;
    }
}

#shop-single .news-list{
    padding: 125px 0 130px;
    background-color: #fff;
}
#shop-single .news-list .ttl_area{
    position: relative;
    color: #0E3380;
    margin: 0 auto 110px;
    z-index: 2;
}
#shop-single .news-list .ttl_area .bg{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 220px;
    font-weight: 800;
    letter-spacing: 0;
    color: #F7F7F7;
    z-index: 1;
}
#shop-single .news-list .ttl_area p{
    position: relative;
    font-size: 24px;
    font-family: "Inter", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 auto 15px;
    z-index: 2;
}
#shop-single .news-list .ttl_area h2{
    position: relative;
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    z-index: 2;
}
#shop-single .news-list .post-area{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 -10px 75px;
}
#shop-single .news-list .post-area .item{
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 640px;
    width: 100%;
    padding: 20px 30px 22px 20px;
    background-color: #F7F7F7;
    border-radius: 10px;
}
#shop-single .news-list .post-area .item .img{
    position: relative;
    flex-shrink: 0;
    display: block;
    width: 250px;
    max-width: 13.020833333333334vw;
    height: 9.635416666666668vw;
    width: 100%;
    overflow: hidden;
}
#shop-single .news-list .post-area .item .img img{
    position: absolute;
    top: 0;
    left: 0;
}
#shop-single .news-list .post-area .item .txt{
    flex: 1;
}
#shop-single .news-list .post-area .item .txt .label{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 15px;
}
#shop-single .news-list .post-area .item .txt .label .cat{
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 4px 10px 5px;
    color: #fff;
    background-color: #0E3380;
}
#shop-single .news-list .post-area .item .txt .label .date{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #29323D;
}
#shop-single .news-list .post-area .item .txt .title{
    display: -webkit-box;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.36;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #0E3380;
}
#shop-single .news-list .post-area .no-post{
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.05em;
}
#shop-single .news-list .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    max-width: 600px;
    width: 100%;
    padding: 20px 0;
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 0 #AC3100;
    color: #fff;
    background: linear-gradient(to bottom, #ED6C00 50%, #E65216 50%);
    transition: all .3s;
}
#shop-single .news-list .btn a::before{
    content: "";
    width: 22px;
    height: 22px;
    background-image: url(../img/page/btn-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background-color: transparent;
}
#shop-single .news-list .btn a:hover{
    opacity: 1;
    transform: translate(0, 4px);
    box-shadow: 0 1px 0 #AC3100; 
}
@media (max-width: 840px) {
    #shop-single .news-list{
        padding: 16vw 0 13.3333333333335vw;
    }
    #shop-single .news-list .ttl_area{
        margin: 0 auto 13.3333333333333333335vw;
    }
    #shop-single .news-list .ttl_area .bg{
        top: 0;
        left: 50%;
        font-size: 16vw;
    }
    #shop-single .news-list .ttl_area p{
        font-size: 3.46666666666666666666663vw;
        margin: 0 auto 2.13333333333333333vw;
    }
    #shop-single .news-list .ttl_area h2{
        font-size: 9.333333333333333333334vw;
        line-height: 1.14;
    }
    #shop-single .news-list .post-area{
        flex-wrap: wrap;
        gap: 6.666666666667vw;
        margin: 0 auto 10.66666666666666668vw;
    }
    #shop-single .news-list .post-area .item{
        display: block;
        max-width: none;
        padding: 5.3333333333333334vw;
    }
    #shop-single .news-list .post-area .item .img{
        width: 100%;
        max-width: none;
        height: 60vw;
        margin: 0 0 5.333333333334vw;
    }
    #shop-single .news-list .post-area .item .txt{
        display: block;
        width: 100%;
    }
    #shop-single .news-list .post-area .item .txt .label{
        gap: 4vw;
        margin: 0 0 4vw;
    }
    #shop-single .news-list .post-area .item .txt .label .cat{
        font-size: 2.999999999999993vw;
        padding: 1.066666666666666667vw 2.13333333333333333vw 1.333333333333335vw;
    }
    #shop-single .news-list .post-area .item .txt .label .date{
        font-size: 3.2vw;
    }
    #shop-single .news-list .post-area .item .txt .title{
        font-size: 4.8vw;
    }
    #shop-single .news-list .post-area .no-post{
        font-size: 4vw;
    }
    #shop-single .news-list .btn a{
        font-size: 4.8vw;
        max-width: 80vw;
        padding: 4vw 0;
    }
    #shop-single .news-list .btn a::before{
        width: 5.333333333333334vw;
        height: 5.333333333333334vw;
        right: 4vw;
        border-radius: 50%;
    }
}

#shop-single .point{
    padding: 125px 0 120px;
    background-image: url(../img/page/point_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#shop-single .point .ttl_area{
    position: relative;
    color: #fff;
    margin: 0 auto 80px;
    z-index: 2;
}
#shop-single .point .ttl_area .bg{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 220px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
    color: #FFFFFF;
    opacity: 0.1;
    z-index: 1;
}
#shop-single .point .ttl_area p{
    position: relative;
    font-size: 24px;
    font-family: "Inter", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 auto 15px;
    z-index: 2;
}
#shop-single .point .ttl_area h2{
    position: relative;
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    z-index: 2;
}
#shop-single .point .ttl_area h2 span{
    color: #ED6C00;
}
#shop-single .point .ctt{
    display: block;
    width: 100%;
}
#shop-single .point .ctt .item{
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 45px 60px 60px;
    margin: 0 0 40px;
    background-color: #fff;
    border-radius: 10px;
}
#shop-single .point .ctt .item:last-of-type{
    margin: 0;
}
#shop-single .point .ctt .item .txt{
    flex: 1;
}
#shop-single .point .ctt .item .txt .label{
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px;
}
#shop-single .point .ctt .item .txt .label .po{
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.2;
    color: #0E3380;
}
#shop-single .point .ctt .item .txt .label .number{
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.2;
    color: #EB612A;
}
#shop-single .point .ctt .item .txt h3{
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin: 0 0 30px;
    color: #0E3380;
}
#shop-single .point .ctt .item .txt .note{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.88;
    color: #29323D;
}
#shop-single .point .ctt .item .img img{
    display: block;
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}
@media (max-width: 840px) {
    #shop-single .point{
        padding: 16vw 0;
    }
    #shop-single .point .ttl_area{
        margin: 0 auto 13.333333333333335vw;
    }
    #shop-single .point .ttl_area .bg{
        top: 0;
        left: 50%;
        font-size: 16vw;
    }
    #shop-single .point .ttl_area p{
        font-size: 3.46666666666666666666663vw;
        margin: 0 auto 2.13333333333333333vw;
    }
    #shop-single .point .ttl_area h2{
        font-size: 9.333333333333333333334vw;
        line-height: 1.27;
        letter-spacing: 0.05em;
    }
    #shop-single .point .ctt .item{
        flex-direction: column-reverse;
        gap: 5.3333333334vw;
        padding: 5.33333333333334vw;
        margin: 0 0 8vw;
    }
    #shop-single .point .ctt .item .txt{
        display: block;
        width: 100%;
    }
    #shop-single .point .ctt .item .txt .label{
        gap: 2.666666666666667vw;
        margin: 0 0 4vw;
    }
    #shop-single .point .ctt .item .txt .label .po{
        font-size: 5.33333333333334vw;
    }
    #shop-single .point .ctt .item .txt .label .number{
        font-size: 9.333333333333333334vw;
    }
    #shop-single .point .ctt .item .txt h3{
        font-size: 6.66666666667vw;
        line-height: 1.35;
        margin: 0 0 5.333333333333333334vw;
    }
    #shop-single .point .ctt .item .txt .note{
        font-size: 3.733333333333333334vw;
    }
    #shop-single .point .ctt .item .img img{
        max-width: none;
        border-radius: 5px;
    }
}

#shop-single .back-list{
    padding: 160px 0 135px;
    background-color: #F7F7F7;
}
#shop-single .back-list .inner{
    max-width: 1480px;
}
#shop-single .back-list .ttl_area{
    position: relative;
    color: #0E3380;
    margin: 0 auto 95px;
    z-index: 2;
}
#shop-single .back-list .ttl_area .bg{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 220px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
    color: #FFFFFF;
    z-index: 1;
}
#shop-single .back-list .ttl_area p{
    position: relative;
    font-size: 24px;
    font-family: "Inter", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 auto 15px;
    z-index: 2;
}
#shop-single .back-list .ttl_area h2{
    position: relative;
    font-size: 65px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0;
    z-index: 2;
}
#shop-single .back-list .ctt{
    display: flex;
    align-items: center;
    gap: 70px;
}
#shop-single .back-list .ctt .img img{
    display: block;
    max-width: 650px;
    width: 100%;
    border-radius: 30px;
}
#shop-single .back-list .ctt .txt{
    flex: 1;
}
#shop-single .back-list .ctt .txt h3{
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.56;
    color: #0E3380;
    margin: 0 0 50px;
}
#shop-single .back-list .ctt .txt p{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #29323D;
    margin: 0 0 60px;
}
#shop-single .back-list .ctt .btn a{
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    max-width: 600px;
    width: 100%;
    padding: 20px 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 0 #AC3100;
    color: #fff;
    background: linear-gradient(to bottom, #ED6C00 50%, #E65216 50%);
    transition: all .3s;
}
#shop-single .back-list .ctt .btn a::before{
    content: "";
    width: 22px;
    height: 22px;
    background-image: url(../img/page/btn-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background-color: transparent;
}
#shop-single .back-list .ctt .btn a:hover{
    opacity: 1;
    transform: translate(0, 4px);
    box-shadow: 0 1px 0 #AC3100; 
}
@media (max-width: 840px) {
    #shop-single .back-list{
        padding: 16vw 0 13.333333333333333335vw;
    }
    #shop-single .back-list .ttl_area{
        margin: 0 auto 13.333333333333335vw;
    }
    #shop-single .back-list .ttl_area .bg{
        top: 0;
        left: 50%;
        font-size: 16vw;
    }
    #shop-single .back-list .ttl_area p{
        font-size: 3.46666666666666666666663vw;
        margin: 0 auto 2.13333333333333333vw;
    }
    #shop-single .back-list .ttl_area h2{
        font-size: 9.333333333333333333334vw;
        line-height: 1.14;
    }
    #shop-single .back-list .ctt{
        display: block;
    }
    #shop-single .back-list .ctt .img img{
        max-width: none;
        border-radius: 10px;
        margin: 0 0 5.3333333333333334vw;
    }
    #shop-single .back-list .ctt .txt{
        display: block;
        width: 100%;
    }
    #shop-single .back-list .ctt .txt h3{
        font-size: 5.86666666666666666vw;
        margin: 0 0 6.666666666666666667vw;
    }
    #shop-single .back-list .ctt .txt p{
        font-size: 3.733333333333333334vw;
        margin: 0 0 10.666666666666666666668vw;
    }
    #shop-single .back-list .ctt .txt .btn a{
        font-size: 4.26666666666666667vw;
        padding: 3.73333333333333334vw 0 4vw;
        margin: 0 auto;
        max-width: 80vw;
    }
    #shop-single .back-list .ctt .txt .btn a::before{
        width: 5.333333333333333334vw;
        height: 5.333333333333333334vw;
        right: 4.8vw;
        border-radius: 50%;
    }
    #shop-single .back-list .ctt .btn a{
        font-size: 4.8vw;
        max-width: 80vw;
        padding: 4vw 0;
    }
    #shop-single .back-list .ctt .btn a::before{
        width: 5.333333333333334vw;
        height: 5.333333333333334vw;
        right: 4vw;
        border-radius: 50%;
    }
}

