@charset "utf-8";

body{
    position: relative;
}
.bg{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: transparent linear-gradient(238deg, #E7E7F7 0%, #FCFCFF 49%, #E4ECF5 100%) 0% 0% no-repeat;
}

/* 共通パーツ
-----------------------------*/

/* header */
.header{
    box-sizing: border-box;
}
.header,
.header.fix{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    text-align: unset;
    padding: 0;
    color: #102366;
    border: none;
    background-color: #fff;
}
.header::after{
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    content: "";
    width: 100vw;
    height: 20px;
    background: linear-gradient(rgba(4, 0, 95, 0.06) 0%, rgba(4, 0, 95, 0) 100%);
    margin: 0 auto;
}
.header .header_inner{
    max-width: 1700px;
    margin: 0 auto;
}
.header .header_ctt{
    position: relative;
    padding: 25px 50px 18px;
    display: flex;
    justify-content: space-between;
    border: none;
}
.header .logo{
    padding: 10px 0 0;
}
.header .logo .sp{
    display: none;
}
.header .link_nav{
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 30px;
}
.header .header_search{
    display: flex;
    align-items: center;
    max-width: 370px;
    max-height: 50px;
    background-color: #F4F4F4;
    border-radius: 25px;
    padding: 15px 20px 13px;
    margin: 0 65px 0 0;
}
.header .header_search input{
    width: 290px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.33;
    color: #102366;
    padding: 0;
    background-color: transparent;
    border: none;
    outline: none;
}
.header .header_search input::placeholder{
    color: #6E6E6E;
}
.header .header_search button{
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    border: none;
}
.header .link_nav .wel_p{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 40px 0 0;
}
.header .link_btn_area{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header .link_btn_area .btn{
    margin: 0;
}
.header .link_btn_area .btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.45;
    border-radius: 5px;
    height: 50px;
    box-sizing: border-box;
    transition: all .3s;
}
.header .link_btn_area .my-page a,
.header .link_btn_area .login a,
.header .link_btn_area .logout a{
    width: 130px;
    color: #102366;
    border: 2px solid #102366;
}
.header .link_btn_area .my-page a::before{
    content: "";
    width: 23px;
    height: 23px;
    margin-right: 10px;
    background-image: url(../img/my-page_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.header .link_btn_area .login a::before{
    content: "";
    width: 20px;
    height: 22px;
    margin-right: 15px;
    background-image: url(../img/login_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.header .link_btn_area .logout a::before{
    content: "";
    width: 16px;
    height: 22px;
    margin-right: 16px;
    background-image: url(../img/logout_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.header .link_btn_area .cart{
    position: relative;
}
.header .link_btn_area .cart a{
    width: 160px;
    color: #fff;
    background-color: #1C4DD6;
    font-weight: 900;
}
.header .link_btn_area .cart span{
    position: absolute;
    right: -8px;
    top: -8px;
    background: #F23E0C;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
}
.header .link_btn_area .cart a::before{
    content: "";
    width: 23px;
    height: 23px;
    margin-right: 10px;
    background-image: url(../img/cart_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.header .link_btn_area .my-page a:hover,
.header .link_btn_area .login a:hover,
.header .link_btn_area .logout a:hover{
    color: #fff;
    background-color: #102366;
    opacity: 1;
}
.header .link_btn_area .cart a:hover{
    background-color: #4837C4;
    opacity: 1;
}
.header .link_btn_area .my-page a:hover::before{
    background-image: url(../img/my-page_icon_hover.svg);
}
.header .link_btn_area .login a:hover::before{
    background-image: url(../img/login_icon_hover.svg);
}
.header .link_btn_area .logout a:hover::before{
    background-image: url(../img/logout_icon_hover.svg);
}
.header .page_nav{
    display: flex;
    align-items: center;
}
.header .page_nav > li{
    padding: 0 40px;
    border-left: 1px dashed #102366;
}
.header .page_nav > li:last-child{
    border-right: 1px dashed #102366;
}
.header .page_nav > li a{
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.47;
    color: #102366;
    text-align: center;
    transition: all .3s;
}
.header .page_nav .sub_menu {
    position: relative;
}
.header .page_nav .sub_menu > a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header .page_nav .sub_menu > a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 6px;
    background-color: #102366;
    clip-path: polygon(100% 0%, 0% 0%, 50% 100%);
    transition: all .3s;
}
.header .page_nav .sub_menu > a:hover{
    opacity: 1;
    color: #4837C4;
}
.header .page_nav .sub_menu > a:hover::after{
    background-color: #4837C4;
}
.header .page_nav .dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: #594DB2;
    padding: 28px 0;
    border-radius: 0 0 10px 10px;
    list-style: none;
    margin: 0;
}
.header .page_nav .dropdown.more{
    width: 318px;
}
.header .page_nav .dropdown li{
    padding-left: 25px;
}
.header .page_nav .dropdown li a{
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: left;
    line-height: 1.4;
    color: #fff;
    transition: all .3s;
    margin-bottom: 15px;
}
.header .page_nav .dropdown li:last-child a{
    margin-bottom: 0;
}
.header .page_nav .dropdown li a:hover{
    opacity: 0.7;
}
.header .nav.sp{
    display: none;
}
.header #g-nav{
    display: none;    
}
@media only screen and (max-width: 1500px) {
    .header .header_ctt{
        padding: 25px 30px 18px;
    }
    .header .page_nav > li{
        padding: 0 30px;
    }
}
@media only screen and (max-width: 1300px) {
    .header, .header.fix{
        height: auto;
    }
    .header .header_ctt{
        padding: 25px 30px 15px;
    }
    .header .link_nav{
        margin-bottom: 25px;
    }
    .header .header_search{
        margin: 0 35px 0 0;
    }
    .header .page_nav > li{
        padding: 0 20px;
    }
    .header .page_nav > li a{
        font-size: 16px;
    }
    .header .page_nav .dropdown li{
        padding-left: 15px;
    }
}
@media only screen and (max-width: 1100px) {
    .header .logo img{
        width: 18.183vw;
    }
    .header .header_search{
        margin: 0 20px 0 0;
    }
    .header .header_search input{
        width: 240px;
    }
    .header .link_nav{
        margin-bottom: 20px;
    }
    .header .link_nav .wel_p{
        margin: 0 20px 0 0;
    }
    .header .page_nav{
        justify-content: right;
    }
    .header .page_nav > li{
        padding: 0 12px;
    }
    .header .page_nav > li a{
        font-size: 14px;
    }
    .header .page_nav .dropdown li{
        padding-left: 7px;
    }
}
@media only screen and (max-width: 900px) {
    .header,
    .header.fix{
        position: fixed;
        height: auto;
        max-height: 19.4665vw;
    }
    .header::after{
        display: none;
    }
    .header .header_inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        max-height: 18.6668vw;
        background-color: #102366;
        border-top: 3px solid #0E3B78;
        z-index: 9999;
    }
    .header .header_ctt{
        position: relative;
        height: 100%;
        padding: 3.7334vw 5.334vw;
        justify-content: space-between;
        flex: 1;
        background-color: #fff;
        overflow: hidden;
    }
    .header .header_ctt::after{
        position: absolute;
        left: 0;
        right: 0;
        bottom: -3.4633vw;
        content: "";
        width: 100%;
        height: 3.4633vw;
        background: linear-gradient(rgba(4, 0, 95, 0.06) 0%, rgba(4, 0, 95, 0) 100%);
        margin: 0 auto;
    }
    .header .logo{
        padding: 0;
    }
    .header .logo .sp{
        display: block;
    }
    .header .logo .pc{
        display: none;
    }
    .header .logo img{
        display: block;
        max-width: 210px;
        width: 30.4vw;
    }
    .header .nav_area{
        display: none;
    }
    .header .nav.sp{
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .header .nav.sp .nav_item{
        display: flex;
        align-items: center;
        gap: 0;
    }
    .header .nav.sp .nav_item .my-page{
        position: relative;
        text-align: center;
        padding-right: 4vw;
        margin-right: 4.8vw;
        border-right: 1px dotted #102366;
    }
    .header .nav.sp .nav_item .cart{
        margin: 0;
        text-align: center;
    }
    .header .nav.sp .nav_item .cart a{
        position: relative;
    }
    .header .nav.sp .nav_item .cart span{
        position: absolute;
        right: -10px;
        top: -15px;
        background: #F23E0C;
        color: #fff;
        width: 18px;
        height: 18px;
        line-height: 18px;
        border-radius: 50%;
        text-align: center;
        font-size: 12px;
        font-weight: normal;
    }
    .header .nav.sp .nav_item .my-page img,
    .header .nav.sp .nav_item .cart img{
        width: 5.334vw;
        height: 5.334vw;
    }
    .header .nav.sp p{
        font-size: 2.4vw;
        font-weight: 500;
        font-family: "Roboto", serif;
        letter-spacing: 0.04em;
        line-height: 1.22;
        text-align: center;
        color: #102366;
    }
    .header .openbtn{
        position: relative;
        top: 0;
        left: auto;
        right: 0;
        width: 14.399vw;
        height: 50px;
    }
    .header .openbtn span{
        display: inline-block;
        position: absolute;
        left: 50%;
        width: 45%;
        height: 3px;
        transition: all .4s;
        border-radius: 2px;
        transform: translateX(-50%);
        background-color: #fff;
    }
    .header .openbtn span:nth-of-type(1) {
        top: 15px;
    } 
    .header .openbtn span:nth-of-type(2) {
        top: 23px;
    }
    .header .openbtn span:nth-of-type(3) {
        top: 31px;
    }
    .header .openbtn.active span:nth-of-type(1) {
        left: 50%;
        transform: translateY(8px) translateX(-50%) rotate(-45deg);
    }
    .header .openbtn.active span:nth-of-type(3) {
        left: 50%;
        transform: translateY(-8px) translateX(-50%) rotate(45deg);
    }
    .header #g-nav{
        position: fixed;
        display: block;
        z-index: -1;
        left: auto;
        right: -120%;
        max-width: 320px;
        width: 100%;
    }
    .header #g-nav .bg{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: none;
        background: rgba(0, 0, 0, 0.5) !important;
    }
    .header #g-nav.panelactive{
        right: 0;
    }
    .header #g-nav.panelactive .bg{
        display: block;
    }
    .header #g-nav.panelactive #g-nav-list{
        width: 320px;
        height: 100vh;
        padding: 26.668vw 0 13.8665vw;
        background-color: #fff;
        overflow: scroll;
    }
    .header #g-nav-list .smf_link{
        padding: 0 16px;
        margin-bottom: 30px;
    }
    .header #g-nav-list .smf_link .header_search{
        margin: 0 0 22px;
    }
    .header #g-nav-list .smf_link .btn_area{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px 8px;
    }
    .header #g-nav-list .smf_link .btn_area .half_btn a{
        display: block;
        font-size: 13px;
        font-weight: bold;
        text-align: center;
        width: 140px;
        padding: 10px 0 11px;
        border-radius: 3px;
    }
    .header #g-nav-list .smf_link .btn_area .blu a{
        color: #fff;
        background-color: #1C4DD6;
    }
    .header #g-nav-list .smf_link .btn_area .whi a{
        width: 138px;
        padding: 9px 0 10px;
        color: #102366;
        border: 1px solid #102366;
    }
    .header #g-nav-list .smf_link .btn_area .btn{
        position: relative;
        width: 100%;
    }
    .header #g-nav-list .smf_link .btn_area .btn a{
        display: block;
        font-size: 13px;
        font-weight: bold;
        text-align: center;
        width: 100%;
        padding: 14px 0 13px;
        color: #fff;
        background-color: #102366;
        border-radius: 2px;
    }
    .header #g-nav-list .smf_link .btn_area .btn span{
        position: absolute;
        right: -8px;
        top: -8px;
        background: #F23E0C;
        color: #fff;
        width: 20px;
        height: 20px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        font-size: 12px;
        font-weight: normal;
    }
    .header #g-nav-list .smf_nav{
        min-height: 520px;
    }
    .header #g-nav-list .smf_nav.open{
        min-height: 800px;
    }
    .header #g-nav-list .smf_nav .parent .parent_ttl,
    .header #g-nav-list .smf_nav .not_ch a{
        position: relative;
        display: block;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.1em;
        line-height: 1.43;
        color: #102366;
        background-color: #F2F4FA;
        padding: 14px 30px 16px;
    }
    .header #g-nav-list .smf_nav .parent .parent_ttl::before,
    .header #g-nav-list .smf_nav .parent .parent_ttl::after{
        position: absolute;
        content:'';
        width: 13px;
        height: 1px;
        background-color: #102366;
        transition: all 0.2s ease-in-out;
    }
    .header #g-nav-list .smf_nav .parent .parent_ttl::before{
        top:48%;
        right: 5%;
        transform: rotate(0deg);
    }
    .header #g-nav-list .smf_nav .parent .parent_ttl::after{    
        top:48%;
        right: 5%;
        transform: rotate(90deg);
    }
    .header #g-nav-list .smf_nav .parent .parent_ttl.open::before{
        transform: rotate(0deg);
    }
    .header #g-nav-list .smf_nav .parent .parent_ttl.open::after{
        transform: rotate(0deg);
    }
    .header #g-nav-list .smf_nav .parent .child_list{
        display: none;
    }
    .header #g-nav-list .smf_nav .parent .child_list.open{
        display: block;
    }
    .header #g-nav-list .smf_nav .parent .child_list li a{
        position: relative;
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: #102366;
        border-bottom: 1px solid #F2F4FA;
        padding: 15px 40px 16px;
    }
    .header #g-nav-list .smf_nav .parent .child_list li:last-child a{
        border: none;
    }
    .header #g-nav-list .smf_nav .not_ch a::after {
        content: "";
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        width: 7px;
        height: 7px;
        border-right: 1px solid #102366;
        border-bottom: 1px solid #102366;
        transform: translateY(-50%) rotate(-45deg);
    }
}

/* side  */
.side{
    width: 260px;
    padding-right: 0;
}
.side .user{
    background-color: #fff;
    border: 1px solid #E5E5EF;
    border-radius: 5px;
    padding: 20px 20px 26px;
    margin-bottom: 25px;
}
.side .user .btn a{
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #1C4DD6;
    border-radius: 5px;
    letter-spacing: 0.05em;
    line-height: 1.33;
    width: 100%;
    padding: 17px 0 15px;
    margin: 0 auto 20px;
    transition: all .3s;
}
.side .user .btn a::before{
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    right: 20px;
    content: "";
    width: 21px;
    height: 21px;
    background-image: url(../img/side_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.side .user .btn a:hover{
    background-color: #4837C4;
    opacity: 1;
}
.side .user p{
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.46;
    color: #102366;
}
.side .side-section .ttl{
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.32;
    color: #fff;
    background-color: #050066;
    padding: 20px 20px 16px;
    border-radius: 5px 5px 0 0;
    border-bottom: 4px solid #6666CC;
}
.side .side-section .in_ctt{
    padding: 30px 20px 10px;
    background-color: #fff;
    border: 1px solid #E5E5EF;
    border-top: none;
    border-radius: 0 0 5px 5px;
}
.side .side-section.category .in_ctt{
    padding: 34px 20px 40px;
}
.side .side-section ul{
    margin-bottom: 25px;
}
.side .side-section ul li{
    margin-bottom: 10px;
}
.side .side-section ul li:last-child{
    margin-bottom: 0px;
}
.side .side-section ul li label{
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #102366;
    margin-bottom: 10px;
}
.side .side-section ul li input{
    font-size: 12px;
    width: 100%;
    padding: 10px 12px 12px;
    border: 1px solid #DEDEDE;
    border-radius: 3px;
}
.side .side-section ul li select{
    font-size: 12px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #DEDEDE;
    border-radius: 3px;
}
.side .side-section ul li .flex{
    display: flex;
    align-items: flex-end;
}
.side .side-section ul li input.price{
    width: 70px;
    margin: 0;
    margin-right: 6px;
}
.side .side-section ul li p{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #102366;
    padding-bottom: 3px;
}
.side .side-section ul li p.fi_p{
    margin-right: 16px;
}
.side .publication .btn a{
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
    background-color: #1C4DD6;
    border-radius: 5px;
    padding: 15px 0;    
    transition: all .3s;
}
.side .publication .btn a:hover{
    background-color: #4837C4;
    opacity: 1;
}
.side .category ul li a{
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #102366;
    border-radius: 3px;
    padding: 14px 12px 13px;
}
.side .category ul li a .img{
    position: relative;
    width: 42px;
    padding-right: 13px;
}
.side .category ul li a img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.side .category ul li a .txt{
    padding-left: 15px;
    border-left: 1px solid #102366;
}
.side .category ul li a .txt .name{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding-bottom: 0;
    margin-bottom: 4px;
    color: #04005F;
}
.side .category ul li a .txt .eng{
    font-size: 11px;
    font-weight: 500;
    font-family: "Roboto", serif;
    letter-spacing: 0.03em;
    line-height: 1.27;
    color: #04005F;
    margin-bottom: 0;
}
.side .genre .in_ctt{
    padding: 42px 20px 30px;
}
.side .genre .in_ctt ul{
    margin: 0;
}
.side .genre .in_ctt ul li{
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E5EF;
}
.side .genre .in_ctt ul li:last-child{
    margin-bottom: 0;
}
.side .genre .in_ctt ul li a{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #04005F;
    transition: all .3s;
}
.side .genre .in_ctt ul li a::before{
    content: "";
    width: 19px;
    height: 19px;
    background-image: url(../img/side_arrow_blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.side .genre .in_ctt ul li a:hover{
    color: #4837C4;
    opacity: 1;
}
.side .month{
    box-shadow: none;
    margin-top: 44px;
}
.side .next-month{
    box-shadow: none;
    background: none;
    margin-top: 32px;
}
.side .month .ttl_text,
.side .next-month .ttl_text{
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 0.7;
    padding: 0;
    margin: 0 auto 12px;
}
.side .side-section .makeshop-calendar1 thead th, 
.side .side-section .makeshop-calendar2 thead th{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    background-color: #F4F4F4;
    border: 1px solid #EDEDED;
    border-right: none;
    padding: 10px 8px;
}
.side .side-section .makeshop-calendar1 thead th:last-of-type, 
.side .side-section .makeshop-calendar2 thead th:last-of-type{
    border-right: 1px solid #EDEDED;
}
.side .side-section .makeshop-calendar1 thead th.saturday, 
.side .side-section .makeshop-calendar2 thead th.saturday{
    color: #fff;
    background-color: #1B3792;
}
.side .side-section .makeshop-calendar1 thead th.sunday, 
.side .side-section .makeshop-calendar2 thead th.sunday{
    color: #fff;
    background-color: #7C60D9;
}
.side .side-section .makeshop-calendar1 tbody td, 
.side .side-section .makeshop-calendar2 tbody td{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 6px;
    color: #000000;
    background-color: #fff;
    border-left: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
}
.side .side-section .makeshop-calendar1 tbody tr:first-of-type td:first-of-type,
.side .side-section .makeshop-calendar2 tbody tr:first-of-type td:first-of-type{
    background-color: #E2DEF4;
}
.side .side-section .makeshop-calendar1 tbody td:last-of-type, 
.side .side-section .makeshop-calendar2 tbody td:last-of-type{
    border-right: 1px solid #EDEDED;
}
.side .side-section .makeshop-calendar1 tbody td.saturday, 
.side .side-section .makeshop-calendar2 tbody td.saturday{
    background-color: #D7DEF7;
    color: #000000;
}
.side .side-section .makeshop-calendar1 tbody td.sunday, 
.side .side-section .makeshop-calendar2 tbody td.sunday{
    background-color: #E2DEF4;
    color: #000000;
}
.side .side-section .makeshop-calendar1 tbody td.today{
    background-color: #050066 !important;
    color: #fff !important;
}
.side .next-month p.note{
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.03em;
    margin: 6px auto 0;
}
.smf-calender{
    display: none;
}
@media only screen and (max-width: 900px) {
    .side{
        width: 100%;
        margin: 0 auto 17.336vw;
    }
    .side .user{
        padding: 5.334vw;
        margin-bottom: 0;
    }
    .side .user .btn a{
        font-size: 4vw;
        padding: 4vw 0;
        margin: 0 auto 4vw;
    }
    .side .user .btn a::before{
        right: 5.34vw;
        content: "";
        width: 5.34vw;
        height: 5.34vw;
    }
    .side .user p{
        font-size: 3.2vw;
    }
    .side .side-section{
        display: none;
    }
    .smf-calender{
        display: block;
        margin-bottom: 17.336vw;
    }
    .smf-calender .month{
        box-shadow: none;
        margin: 21.366vw auto 0; 
    }
    .smf-calender .next-month{
        box-shadow: none;
        background: none;
        margin: 8vw auto 0;
    }
    .smf-calender .month .ttl_text,
    .smf-calender .next-month .ttl_text{
        display: block;
        font-size: 3.4633vw;
        font-weight: 600;
        color: #000000;
        text-align: center;
        letter-spacing: 0.03em;
        line-height: 0.7;
        padding: 0;
        margin: 0 auto 12px;
    }
    .smf-calender .side-section .makeshop-calendar1 thead th, 
    .smf-calender .side-section .makeshop-calendar2 thead th{
        font-size: 3.7334vw;
        font-weight: 500;
        letter-spacing: 0.03em;
        background-color: #DCDCDC;
        border: 1px solid #D1D1D1;
        border-right: none;
        padding: 10px 8px;
    }
    .smf-calender .side-section .makeshop-calendar1 thead th:last-of-type, 
    .smf-calender .side-section .makeshop-calendar2 thead th:last-of-type{
        border-right: 1px solid #D1D1D1;
    }
    .smf-calender .side-section .makeshop-calendar1 thead th.saturday, 
    .smf-calender .side-section .makeshop-calendar2 thead th.saturday{
        color: #fff;
        background-color: #4C83B2;
    }
    .smf-calender .side-section .makeshop-calendar1 thead th.sunday, 
    .smf-calender .side-section .makeshop-calendar2 thead th.sunday{
        color: #fff;
        background-color: #E94A4B;
    }
    .smf-calender .side-section .makeshop-calendar1 tbody td, 
    .smf-calender .side-section .makeshop-calendar2 tbody td{
        font-size: 3.7334vw;
        font-weight: 500;
        letter-spacing: 0.03em;
        padding: 6px;
        color: #000000;
        background-color: #fff;
        border-left: 1px solid #D1D1D1;
        border-bottom: 1px solid #D1D1D1;
    }
    .smf-calender .side-section .makeshop-calendar1 tbody tr:first-of-type td:first-of-type,
    .smf-calender .side-section .makeshop-calendar2 tbody tr:first-of-type td:first-of-type{
        background-color: #F5AEAE;
    }
    .smf-calender .side-section .makeshop-calendar1 tbody td:last-of-type, 
    .smf-calender .side-section .makeshop-calendar2 tbody td:last-of-type{
        border-right: 1px solid #D1D1D1;
    }
    .smf-calender .side-section .makeshop-calendar1 tbody td.saturday, 
    .smf-calender .side-section .makeshop-calendar2 tbody td.saturday{
        background-color: #D9E5EF;
        color: #000000;
    }
    .smf-calender .side-section .makeshop-calendar1 tbody td.sunday, 
    .smf-calender .side-section .makeshop-calendar2 tbody td.sunday{
        background-color: #F5AEAE;
        color: #000000;
    }
    .smf-calender .side-section .makeshop-calendar1 tbody td.today{
        background-color: #F23E0C;
        color: #fff;
    }
    .smf-calender .next-month p.note{
        font-size: 3.4633vw;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.03em;
        margin: 6px auto 0;
    }
}

/* footer */
footer.clearfix{
    padding: 60px 0 18px;
    border-top: 5px solid #102366;
    background-color: #DFE1F5;
}
footer .footer_inner{
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
}
footer .footer_ctt{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
footer .footer_detail .logo{
    margin-bottom: 32px;
}
footer .footer_detail .text p{
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.06em;
    margin: 0 0 5px;
    color: #102366;
}
footer .footer_detail .text .number{
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 30px;
    font-weight: bold;
    font-family: "Roboto", serif;
    letter-spacing: 0.03em;
    color: #102366;
}
footer .footer_detail .text .number::before{
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/tell_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
footer .footer_detail .text span{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.54;
    color: #102366;
}
footer .footer_nav{
    display: flex;
    gap: 35px;
    margin-right: -50px;
}
footer .footer_nav .nav_area .ttl{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-family: "Inter", serif;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #102366;
}
footer .footer_nav .nav_area .ttl::before{
    content: "";
    width: 3px;
    height: 18px;
    background-color: #5A5EC1;
}
footer .footer_nav .nav_area ul{
    padding-left: 15px;
}
footer .footer_nav .nav_area ul li a{
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #102366;
    margin-bottom: 10px;
}
footer .footer_nav .nav_area ul li:last-child a{
    margin-bottom: 0;
}
footer .footer_btn a{
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.5;
    padding: 15px;
    color: #fff;
    background-color: #050066;
    border-radius: 3px;
    transition: all .3s;
}
footer .footer_btn a::before{
    content: "";
    position: absolute;
    bottom: 6px;
    right: 6px; 
    width: 7px;
    height: 7px;
    background-color: #fff;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
footer .footer_btn a:hover{
    opacity: 1;
    background-color: #4837C4;
}
footer small{
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.38;
    color: #102366;
    text-align: right;
}
@media only screen and (max-width: 900px) {
    footer.clearfix{
        padding: 5.334vw 0;
        border: none;
    }
    footer .footer_inner{
        padding: 0 20px;
    }
    footer .footer_ctt{
        display: block;
    }
    footer .footer_detail .logo{
        display: none;
        margin-bottom: 0;
    }
    footer .footer_detail .text{
        margin-bottom: 9.6vw;
    }
    footer .footer_detail .text p{
        font-size: 4vw;
        margin-bottom: 0;
        text-align: center;
    }
    footer .footer_detail .text .number{
        justify-content: center;
        gap: 1.8667vw;
        font-size: 8vw;
        margin-bottom: 0;
    }
    footer .footer_detail .text .number::before{
        width: 5.334vw;
        height: 5.334vw;
    }
    footer .footer_detail .text span{
        display: block;
        font-size: 3.4663vw;
        text-align: center;
    }
    footer .footer_nav{
        flex-direction: column;
        gap: 10.668vw;
        margin: 0;
        margin-bottom: 9.334vw;
    }
    footer .footer_nav .nav_area:last-of-type{
        padding-left: 0;
    }
    footer .footer_nav .nav_area .ttl{
        gap: 12px;
        font-size: 5.334vw;
        margin-bottom: 8.533vw;
    }
    footer .footer_nav .nav_area .ttl::before{
        width: 0.8vw;
        height: 4.8vw;
    }
    footer .footer_nav .nav_area ul{
        padding-left: 3px;
    }
    footer .footer_nav .nav_area ul li{
        padding-bottom: 4vw;
        margin-bottom: 4.8vw;
        border-bottom: 1px solid #C6CDE8;
    }
    footer .footer_nav .nav_area ul li:last-child{
        margin-bottom: 0;
    }
    footer .footer_nav .nav_area ul li a{
        font-size: 4vw;
        margin-bottom: 0;
    }
    footer .footer_btn a{
        width: 53.336vw;
        font-size: 3.7334vw;
        text-align: center;
        padding: 4vw;
        margin: 0 auto 8vw;
    }
    footer .footer_btn a::before{
        bottom: 1.6vw;
        right: 1.6vw; 
        width: 1.8667vw;
        height: 1.8667vw;
    }
    footer small{
        font-size: 3.4663vw;
        text-align: center;
    }
}
/*------------共通パーツ ここまで------------ */


/* TOPページ
-----------------------------*/
.ctt{
    margin: 150px 0 122px;
}
.main-visual{
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}
.main-visual .bx-controls-direction{
    display: none !important;
}
.main-visual .bx-wrapper{
    border: none;
    margin-bottom: 110px;
}
.main-visual .bx-wrapper .bx-pager.bx-default-pager a{
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background: #D1D1D1;
}
.main-visual .bx-wrapper .bx-pager.bx-default-pager a.active{
    background: #004AA1;
}
.main-visual .mv_txt{
    position: absolute;
    width: 1220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}
.main-visual .mv_txt p{
    font-size: 65px;
    font-weight: bold;
    letter-spacing: 0.01em;
    line-height: 1.23;
    color: #fff;
    margin-bottom: 36px;
}
.main-visual .mv_txt span{
    font-size: 25px;
    font-family: "Roboto", serif;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.24;
    color: #fff;
}
.top-container .inner{
    max-width: 1220px;
    width: 100%;
    padding: 60px 10px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
    .main-visual .mv_txt{
        width: 80%;
    }
}
@media only screen and (max-width: 900px) {
    .ctt{
        margin: 18.6668vw 0 0;
    }
    .main-visual{
        margin: 0 auto 17.336vw;
    }
    .main-visual li{
        display: block !important;
    }
    .main-visual img{
        width: 100%;
    }
    .main-visual .mv_txt{
        width: auto;
        padding: 0 20px;
        top: 50%;
        left: 5.334vw;
        transform: translateY(-50%);
    }
    .main-visual .mv_txt p{
        font-size: 7.4668vw;
        margin-bottom: 3.2vw;
    }
    .main-visual .mv_txt span{
        font-size: 3.2vw;
    }
    .top-container .inner{
        display: block;
        box-sizing: border-box;
        padding: 30px 20px 0;
    }
}
/*--- main ---*/
.main{
    width: 900px;
}
.main *{
    box-sizing: border-box;
}

/* 共通 */
.main .main-section{
    margin-bottom: 100px;
}
.main .main-section h2{
    position: relative;
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #102366;
    padding-bottom: 28px;
    border-bottom: 1px solid #D4D7E0;
}
.main .main-section h2::before{
    content: "";
    width: 90px;
    height: 1px;
    background-color: #102366;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.main .main-section .item-list{
    display: flex;
    align-items: stretch;   
    gap: 50px 28px;
}
.main .main-section .item-list li{
    width: 25%;
    max-width: 204px;
    display: block;
    margin: 0;
    padding: 0;
}
.main .main-section .item-list li .img{
    box-sizing: border-box;
    max-width: 200px;
    max-height: 200px;
    margin: 0 auto 15px;
}
.main .main-section .item-list li .img a img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}
.main .main-section .item-list li .txt .category a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #5A5EC1;
    border: 1px solid #5A5EC1;
    padding: 0px 5px 1px;
    margin-bottom: 10px;
    background-color: #fff;
}
.main .main-section .item-list li .txt .ttl a{
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #1C4DD6;
    text-decoration: underline;
}
.main .main-section .item-list li .txt .price{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: #102366;
}
.main .bcn{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 70px;
}
.main .bcn p{
    display: flex;
    align-items: center;
    gap: 15px;
}
.main .bcn p::after{
    content: "";
    width: 6px;
    height: 8px;
    background-image: url(../img/low/bcn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main .bcn p.current::after,
.main .bcn p:last-of-type::after{
    display: none;
}
.main .bcn p a{
    display: block;
    font-size: 13px;
    letter-spacing: 0.03em;
    line-height: 1.69;
}
@media only screen and (max-width: 900px) {
    .main{
        width: 100%;
    }
    .main .main-section{
        margin-bottom: 17.336vw;
    }
    .main .main-section h2{
        font-size: 6.133vw;
        padding-bottom: 5.334vw;
        margin-bottom: 6.667vw;
    }
    .main .main-section h2::before{
        width: 24vw;
    }
    .main .main-section .item-list{
        flex-wrap: wrap;
        gap: 5.334vw 4.2667vw;
    }
    .main .main-section .item-list li{
        width: 46%;
        max-width: none;
    }
    .main .main-section .item-list li .img{
        box-sizing: border-box;
        max-width: none;
        max-height: none;
        margin: 0 auto 2.667vw;
    }
    .main .main-section .item-list li .txt .category{
        font-size: 2.677vw;
        padding: 0.266vw 3.2vw 0.8vw 2.4vw;
        margin-bottom: 2.133vw;
    }
    .main .main-section .item-list li .txt .ttl a{
        font-size: 3.4633vw;
        margin-bottom: 3.2vw;
    }
    .main .main-section .item-list li .txt .price{
        font-size: 3.4663vw;
    }
    .main .bcn{
        gap: 10px;
    }
    .main .bcn p{
        gap: 10px;
    }
    .main .bcn p::after{
        width: 4px;
        height: 6px;
    }
    .main .bcn p a,
    .main .bcn p{
        font-size: 2.667vw;
    }
}

/* news */
.main .news h2{
    margin-bottom: 50px;
}
.main .news .news-list{
    margin-bottom: 40px;
}
.main .news .news-list li{
    display: flex;
    align-items: center;
    gap: 52px;
    padding-bottom: 25px;
    margin-bottom: 28px;
    border-bottom: 1px solid #E1E3EB;
}
.main .news .news-list li:last-child{
    margin-bottom: 0;
}
.main .news .news-list li .time{
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", serif;
    letter-spacing: 0.08em;
    line-height: 1.36;
    color: #102366;
}
.main .news .news-list li .ttl a{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.8;
    color: #102366;
    text-decoration: underline;
    transition: all .3s;
}
.main .news .news-list li .ttl a:hover{
    color: #4837C4;
    opacity: 1;
}
.main .news .news-link a{
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: 0.06em;
    color: #102366;
    transition: all .3s;
}
.main .news .news-link a::after{
    content: "";
    width: 19px;
    height: 19px;
    background-image: url(../img/side_arrow_blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main .news .news-link a:hover{
    opacity: 1;
    color: #4837C4;
}
@media only screen and (max-width: 900px) {
    .main .news h2{
        margin-bottom: 6.4vw;
    }
    .main .news .news-list{
        margin-bottom: 10.133vw;
    }
    .main .news .news-list li{
        align-items: normal;
        flex-direction: column;
        gap: 3.2vw;
        padding: 0 0 6.4vw;
        margin-bottom: 6.4vw;
    }
    .main .news .news-list li .time{
        font-size: 3.7334vw;
    }
    .main .news .news-list li .ttl a{
        font-size: 3.7334vw;
    }
    .main .news .news-link a{
        gap: 2.667vw;
        font-size: 3.7334vw;
    }
    .main .news .news-link a::after{
        width: 4.533vw;
        height: 4.533vw;
    }
}

/* new-book */
.main .new-book .item-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.main .new-book .item-list li{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    max-width: 290px;
    max-height: 200px;
    width: 100%;
    margin: 0;
    padding: 15px 15px 25px;
}
.main .new-book .item-list li .img{
    max-width: 90px;
}
.main .new-book .item-list li .img a img{
    margin: 0;
    width: 90px;
}
.main .new-book .item-list li .txt .category{
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 0 5px 1px;
    color: #5A5EC1;
    border: 1px solid #5A5EC1;
    margin: 0 0 7px;
}
.main .new-book .item-list li .txt .ttl a{
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: #1C4DD6;
    text-decoration: underline;
    margin-bottom: 10px;    
}
.main .new-book .item-list li .txt .detail{
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.42;
    padding: 0;
    margin: 0;
}
@media only screen and (max-width: 900px) {
    .main .new-book .item-list{
        gap: 4vw;
    }
    .main .new-book .item-list li{
        gap: 5.334vw;
        flex-direction: row;
        max-width: none;
        max-height: none;
        width: 100%;
        margin: 0;
        padding: 4vw 6.667vw 5.334vw 4vw;
    }
    .main .new-book .item-list li .img{
        min-width: 90px;
        max-width: none;
        width: 24vw;
    }
    .main .new-book .item-list li .img a img{
        margin: 0;
        width: 100%;
    }
    .main .new-book .item-list li .txt .category{
        font-size: 2.933vw;
        padding: 0.266vw 2.667vw;
        margin: 0 0 1.867vw;
    }
    .main .new-book .item-list li .txt .ttl a{
        font-size: 3.4633vw;
        margin-bottom: 2.667vw;   
    }
    .main .new-book .item-list li .txt .detail{
        font-size: 2.9333vw;
    }
}

/* faq */
.main .faq{
    padding: 45px 40px 55px;
    border-radius: 10px;
    background: linear-gradient(#4040a0 0%, #102366 100%);
}
.main .faq h2{
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.45;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto 44px;
}
.main .faq .accordion-area{
    margin-bottom: 52px;
}
.main .faq .accordion-area li{
    padding: 22px 20px 18px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
}
.main .faq .accordion-area li:last-child{
    margin-bottom: 0;
}
.main .faq .question{
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.main .faq .question .type{
    font-size: 18px;
    font-weight: 600;
    font-family: "Inter", serif;
    color: #fff;
    background-color: #102366;
    border-radius: 5px;
    padding: 7px 14px 8px;
    max-width: 40px;
    max-height: 40px;
}
.main .faq .question .ttl{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: #102366;
}
.main .faq .question::before,
.main .faq .question::after{
	position: absolute;
	content:'';
	width: 16px;
	height: 2px;
	background-color: #102366;
	transition: all 0.2s ease-in-out;
}
.main .faq .question::before{
	top:48%;
	right: 1%;
	transform: rotate(0deg);
}
.main .faq .question::after{    
	top:48%;
	right: 1%;
	transform: rotate(90deg);
}
.main .faq .question.close::before{
	transform: rotate(0deg);
}
.main .faq .question.close::after{
	transform: rotate(0deg);
}
.main .faq .answer{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0 5px;
}
.main .faq .answer .type2{
    font-size: 18px;
    font-weight: 600;
    font-family: "Inter", serif;
    color: #fff;
    background-color: #6666CC;
    border-radius: 5px;
    padding: 7px 14px 8px;
    max-width: 40px;
    max-height: 40px;
}
.main .faq .answer .ans_txt{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: #333333;
}
.main .faq .btn a{
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.67;
    width: 100%;
    max-width: 310px;
    padding: 18px 0 17px;
    margin: 0 auto;
    color: #fff;
    background-color: #1C4DD6;
    border-radius: 100vw;
}
.main .faq .btn a::before{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    content: "";
    width: 19px;
    height: 19px;
    background-image: url(../img/side_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main .faq .btn a:hover{
    opacity: 1;
    background-color: #4837C4;
}
@media only screen and (max-width: 900px) {
    .main .faq{
        margin: 0 -20px;
        padding: 10.688vw 20px 13.8665vw;
        border-radius: 0;
    }
    .main .faq h2{
        font-size: 6.133vw;
        margin: 0 auto 8vw;
    }
    .main .faq .accordion-area{
        margin-bottom: 8.799vw;
    }
    .main .faq .accordion-area li{
        padding: 4vw 8vw 4vw 4vw;
        margin-bottom: 2.677vw;
        border-radius: 1.335vw;
    }
    .main .faq .question{
        gap: 3.2vw;
    }
    .main .faq .question .type{
        font-size: 3.4633vw;
        border-radius: 1.335vw;
        padding: 0.533vw 2.133vw 0.8vw;
        max-width: 6.667vw;
        max-height: 6.667vw;
    }
    .main .faq .question .ttl{
        font-size: 3.2vw;
    }
    .main .faq .question::before,
    .main .faq .question::after{
        width: 3.2vw;
        height: 0.533vw;
    }
    .main .faq .question::before{
        top:48%;
        right: -4vw;
    }
    .main .faq .question::after{    
        top:48%;
        right: -4vw;
    }
    .main .faq .answer{
        gap: 3.2vw;
        padding: 2.667vw 0 0;
    }
    .main .faq .answer .type2{
        font-size: 3.4633vw;
        border-radius: 1.335vw;
        padding: 0.533vw 2.133vw 0.8vw;
        max-width: 6.667vw;
        max-height: 6.667vw;
    }
    .main .faq .answer .ans_txt{
        font-size: 3.2vw;
    }
    .main .faq .btn a{
        font-size: 4vw;
        width: 100%;
        max-width: 72vw;
        padding: 4vw 0 3.7344vw;
    }
    .main .faq .btn a::before{
        right: 5.334vw;
        width: 5.066vw;
        height: 5.066vw;
    }
}

/*---------- ここまで TOPページ ----------*/


/* 一覧・カテゴリーページ
-----------------------------*/
.list .contents{
    margin: 0;
    padding: 240px 0 105px;
    width: auto;
}
.list .contents .container{
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.list .contents .main-section{
    margin: 0;
}
.list .category-title{
    display: block;
    padding-bottom: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid #D4D7E0;
}
.list .category-title .bcn{
    margin-bottom: 28px;
}
.list .category-title h2{
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #102366;
    padding: 0;
    margin-bottom: 50px;
    border: none;
}
.list .category-title h2::before{
    display: none;
}
.list .category-title .flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list .category-title .total-count{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.79;
    color: #102366;
}
.list .category-title .total-count span{
    font-weight: 500;
}
.list .category-title dl{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.79;
    margin: 0;
    color: #102366;
}
.list .category-title dl dd a{
    color: #102366;
}
.list .pager-wrap{
    display: block;
}
.list .pager-wrap .pager{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.list .pager-wrap .pager li{
    margin: 0;
}
.list .pager-wrap .pager li a {
    font-size: 15px;
    font-weight: 600;
    color: #102366;
    background-color: #F0F0F0;
    padding: 11px 17px 10px;
}
.list .pager-wrap .pager li .current{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #4837C4;
    padding: 11px 17px 10px;
}
.list .pager-wrap .pager .first_arrow a{
    margin-right: 15px;
    background-color: transparent;
    padding: 0;
}
.list .pager-wrap .pager .first_arrow a img{
    transform: scale(-1);
}
.list .pager-wrap .pager .last_arrow a{
    margin-left: 15px;
    background-color: transparent;
    padding: 0;
}

@media only screen and (max-width: 900px) {
    .list .contents{
        padding: 32vw 0;
    }
    .list .contents .container{
        width: auto;
        display: block;
        padding: 0 20px;
        margin: 0;
    }
    .list .category-title{
        padding-bottom: 5.334vw;
        margin-bottom: 10.668vw;
    }
    .list .category-title .bcn{
        font-size: 3.2vw;
        margin-bottom: 5.334vw;
    }
    .list .category-title h2{
        font-size: 5.866vw;
        margin-bottom: 10.668vw;
    }
    .list .category-title .flex{
        flex-wrap: wrap;
        gap: 4vw;
    }
    .list .category-title dl{
        flex-wrap: wrap;
    }
    .list .category-title .total-count{
        font-size: 3.7334vw;
    }
    .list .category-title dl{
        font-size: 3.2vw;
    }
    .list .category-title dl dt{
        width: 100%;
    }
}


/* 検索結果ページ
-----------------------------*/
body.search{
    background-color: #FFFFFF;
    padding: 0;
}
.search .contents{
    margin: 0;
    padding: 240px 0 105px;
    width: auto;
}
.search .contents .container{
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.search .contents .main-section{
    margin: 0;
}
.search .category-title{
    display: block;
    padding-bottom: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid #D4D7E0;
}
.search .category-title .bcn{
    margin-bottom: 28px;
}
.search .category-title .ttl_area{  
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 40px;
    margin-bottom: 50px;
}
.search .category-title .ttl_area h2{
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #102366;
    padding: 0;
    margin: 0;
    border: none;
}
.search .category-title h2::before{
    display: none;
}
.search .category-title .flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search .category-title .total-count{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.79;
    color: #102366;
}
.search .category-title .total-count span{
    font-weight: 500;
}
.search .category-title dl{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.79;
    margin: 0;
    color: #102366;
}
.search .category-title dl dd a{
    color: #102366;
}
@media only screen and (max-width: 900px) {
    .search .contents{
        padding: 32vw 0;
    }
    .search .contents .container{
        width: auto;
        display: block;
        padding: 0 20px;
        margin: 0;
    }
    .search .category-title{
        padding-bottom: 5.334vw;
        margin-bottom: 10.668vw;
    }
    .search .category-title .bcn{
        font-size: 3.2vw;
        margin-bottom: 5.334vw;
    }
    .search .category-title .ttl_area{
        flex-wrap: wrap;
        gap: 2.667vw;
        margin-bottom: 10.668vw;
    }
    .search .category-title .ttl_area h2{
        font-size: 5.866vw;
    }
    .search .category-title .flex{
        flex-wrap: wrap;
        gap: 4vw;
    }
    .search .category-title dl{
        flex-wrap: wrap;
    }
    .search .category-title .total-count{
        font-size: 3.7334vw;
    }
    .search .category-title dl{
        font-size: 3.2vw;
    }
    .search .category-title dl dt{
        width: 100%;
    }
    .search p.empty{
        font-size: 14px;
        color: #333333;
    }
}


/* 詳細ページ
-----------------------------*/
.single .contents{
    margin: 0;
    padding: 240px 0 105px;
    width: auto;
}
.single .contents .container{
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.single .detail{
    max-width: 900px;
    padding: 0;
}
.single .detail .bcn{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}
.single .detail .bcn p{
    display: flex;
    align-items: center;
    gap: 15px;
}
.single .detail .bcn p::after{
    content: "";
    width: 6px;
    height: 8px;
    background-image: url(../img/low/bcn_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.single .detail .bcn p.current::after,
.single .detail .bcn p:last-of-type::after{
    display: none;
}
.single .detail .bcn p a{
    display: block;
    font-size: 13px;
    letter-spacing: 0.03em;
    line-height: 1.69;
}
.single .detail .single_item{
    display: flex;
    justify-content: space-between;
    gap: 70px;
    margin: 0 auto 112px;
}
.single .detail .single_item .item-image{
    max-width: 400px;
    width: 100%;
}
.single .detail .single_item .item-image .choice-btn{
    margin: 20px 0 0;
}
.single .detail .single_item .item-image .choice-btn li{
    margin: 0;
    width: 70px !important;
}
.single .detail .single_item .item-detail{
    width: 430px;
    padding: 0;
    max-width: none;
    flex: 1;
}
.single .detail .single_item .item-detail .ttl_flex{
    display: flex;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 30px;
}
.single .detail .single_item .item-detail .ttl_flex h2{
    flex: 1;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.44;
    color: #102366;
    margin: 0;
}
.single .detail .single_item .item-detail .ttl_flex .favorite-off{
    color: #4837C4;
}
.single .detail .single_item .item-detail .ttl_flex .favorite-icon:after{
    margin: 0;
}
.single .detail .single_item .item-detail .item-category-name{
    margin-bottom: 20px;
}
.single .detail .single_item .item-detail .item-category-name a{
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.75;
    padding: 2px 10px 3px;
    color: #4837C4;
    background-color: #fff;
    border: 1px solid #5A5EC1;
}
.single .detail .single_item .item-detail .issue_date{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #000000;
}
.single .detail .single_item .item-detail .item-price-wrap .item-price{
    font-size: 25px;
    font-weight: 600;
    font-family: "Inter", serif;
    margin: 0 0 20px;
    line-height: 1.12;
    color: #102366;
}
.single .detail .single_item .item-detail .item-price-wrap .item-tax{
    font-size: 13px;
    font-weight: 600;
    font-family: 'Noto Sans', sans-serif;
    padding-left: 10px;
    color: #102366;
}
.single .detail .single_item .item-detail .item-quantity{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin: 0 0 30px;
}
.single .detail .single_item .item-detail .item-quantity input{
    width: 100px;
    margin-left: 30px;
    padding: 15px 14px 16px;
    background-color: #FFFFFF;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
}
.single .detail .single_item .item-detail .add-cart{
    display: block;
    margin: 0;
}
.single .detail .single_item .item-detail .makeshop-option-wrap{
    margin-top: 36px;
}
.single .detail .single_item .item-detail .makeshop-option-label{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.47;
    color: #102366;
    margin: 0 0 18px;
}
.single .detail .single_item .item-detail .makeshop-option-select{
    border: 1px solid #C9C9C9;
    border-radius: 0;
    width: 100%;
    padding: 11px 5px 13px;
    margin: 0;
}
.single .detail .single_item .item-detail .lightbox-trigger{
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0 25px;
    color: #222222;
    cursor: pointer;
    text-decoration: underline;
    transition: all .3s;
}
.single .detail .single_item .item-detail .lightbox-trigger:hover{
    opacity: 0.7;
}
.single .detail .single_item .item-detail .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.single .detail .single_item .item-detail .lightbox-overlay.visible {
    display: flex;
    opacity: 1;
}
.single .detail .single_item .item-detail .lightbox-content {
    background: #fff;
    padding: 65px 100px 102px;
    width: 1080px;
    max-width: 80%;
    height: 1390px;
    max-height: 80%;
    overflow: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}
.single .detail .single_item .item-detail .lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}
.single .detail .single_item .item-detail .lightbox-content .txt_head{
    margin: 0 auto 50px;
}
.single .detail .single_item .item-detail .lightbox-content .txt_head h2{
    font-size: 31px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.03em;
    margin: 0 auto 50px;
    color: #102366;
}
.single .detail .single_item .item-detail .lightbox-content .txt_head p{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.44;
}
.single .detail .single_item .item-detail .lightbox-content .txt_item{
    margin: 0 auto 60px;
}
.single .detail .single_item .item-detail .lightbox-content .last_item{
    margin: 0;
}
.single .detail .single_item .item-detail .lightbox-content .txt_item h3{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.28;
    margin: 0 0 20px;
}
.single .detail .single_item .item-detail .lightbox-content .txt_item p{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.53;
}
.single .detail .single_item .item-detail .add-cart .add-cart-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.4;
    padding: 23px 0 24px;
    margin: 0 auto 10px;
    background-color: #102366;
    border-radius: 2px;
    width: 100%;
}
.single .detail .single_item .item-detail .add-cart .add-cart-btn::before{
    content: "";
    width: 23px;
    height: 23px;
    background-image: url(../img/cart_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.single .detail .single_item .item-detail .add-cart .item-contact{
    margin: 0;
}
.single .detail .single_item .item-detail .add-cart .item-contact::before{
    display: none;
}
.single .detail .single_item .item-detail .add-cart .item-contact a{
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-align: center;
    color: #102366;
    border: 1px solid #102366;
    border-radius: 2px;
    padding: 14px 0;
    width: 100%;
}
.single .detail .single_item .item-detail .add-cart .item-contact a::before{
    display: none;
}
.single .detail .explanation h2{
    position: relative;
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.45;
    color: #102366;
    padding-bottom: 28px;
    margin-bottom: 50px;
    border-bottom: 1px solid #D4D7E0;
}
.single .detail .explanation h2::before{
    content: "";
    width: 90px;
    height: 1px;
    background-color: #102366;
    position: absolute;
    left: 0;
    bottom: -1px;
}
.single .detail .explanation .txt{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #000000;
    margin: 0;
    padding: 0;
}
.single .detail .explanation .txt a{
    text-decoration: underline;
}
@media only screen and (max-width: 900px) {
    .single .contents{
        padding: 32vw 0;
    }
    .single .contents .container{
        width: auto;
        display: block;
        padding: 0 20px;
        margin: 0;
    }
    .single .detail{
        width: 100%;
        max-width: none;
    }
    .single .detail .bcn{
        font-size: 3.2vw;
        margin-bottom: 5.334vw;
    }
    .single .detail .single_item{
        flex-wrap: wrap;
        gap: 4vw; 
        margin: 0 auto 16vw;
    }
    .single .detail .single_item .item-image{
        max-width: none;
    }
    .single .detail .single_item .item-image .choice-btn{
        margin: 4vw 0 0;
    }
    .single .detail .single_item .item-image .choice-btn .slick-track{
        gap: 2.667vw;
    }
    .single .detail .single_item .item-image .choice-btn li{
        width: 70px !important;
    }
    .single .detail .single_item .item-detail{
        width: 100%;
    }
    .single .detail .single_item .item-detail .item-title{
        margin: 0 0 2.667vw;
    }
    .single .detail .single_item .item-detail .ttl_flex{
        gap: 6.667vw;
        margin-bottom: 8vw;
    }
    .single .detail .single_item .item-detail .ttl_flex h2{
        font-size: 5.866vw;
    }
    .single .detail .single_item .item-detail .item-category-name{
        margin-bottom: 5.334vw;
    }
    .single .detail .single_item .item-detail .item-category-name a{
        font-size: 3.2vw;
        padding: 0.533vw 2.667vw 0.8vw;
    }
    .single .detail .single_item .item-detail .issue_date{
        font-size: 3.7334vw;
    }
    .single .detail .single_item .item-detail .item-price-wrap .item-price{
        font-size: 6.667vw;
        margin: 0 0 5.334vw;
    }
    .single .detail .single_item .item-detail .item-price-wrap .item-tax{
        font-size: 3.4663vw;
        padding-left: 2.667vw;
    }
    .single .detail .single_item .item-detail .item-quantity{
        font-size: 3.7334vw;
        margin: 0 0 8vw;
    }
    .single .detail .single_item .item-detail .item-quantity input{
        width: 26.668vw;
        margin-left: 8vw;
        padding: 4vw;
        border-radius: 1.335vw;
    }
    .single .detail .single_item .item-detail .makeshop-option-wrap{
        margin-top: 8vw;
    }
    .single .detail .single_item .item-detail .makeshop-option-label{
        font-size: 4vw;
        margin: 0 0 4vw;
    }
    .single .detail .single_item .item-detail .makeshop-option-select{
        padding: 3.2vw 1.335vw 3.2vw;
    }
    .single .detail .single_item .item-detail .lightbox-trigger{
        font-size: 4vw;
        margin: 5.334vw 0 6.667vw;
    }
    .single .detail .single_item .item-detail .lightbox-content {
        padding: 5.334vw 8vw 8vw;
        margin: 40px 20px;
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: 80%;
        overflow: auto;
    }
    .single .detail .single_item .item-detail .lightbox-content .txt_head{
        margin: 0 auto 8vw;
    }
    .single .detail .single_item .item-detail .lightbox-content .txt_head h2{
        font-size: 6.4vw;
        margin: 0 auto 5.334vw;
    }
    .single .detail .single_item .item-detail .lightbox-content .txt_head p{
        font-size: 3.4663vw;
    }
    .single .detail .single_item .item-detail .lightbox-content .txt_item{
        margin: 0 auto 10.668vw;
    }
    .single .detail .single_item .item-detail .lightbox-content .txt_item h3{
        font-size: 4.2667vw;
        margin: 0 0 4vvw;
    }
    .single .detail .single_item .item-detail .lightbox-content .txt_item p{
        font-size: 3.4663vw;
    }
    .single .detail .single_item .item-detail .add-cart .btn.on{
        gap: 4.2667vw;
        font-size: 4.2667vw;
        padding: 5.334vw 0 5.6005vw;
        margin: 0 auto 2.667vw;
    }
    .single .detail .single_item .item-detail .add-cart .btn.on::before{
        width: 5.334vw;
        height: 5.334vw;
    }
    .single .detail .single_item .item-detail .add-cart .item-contact a{
        font-size: 3.7334vw;
        padding: 3.2vw 0;
    }
    .single .detail .explanation h2{
        padding-bottom: 0.5em;
        margin-bottom: 1em;
        font-size: 4.651vw;
    }
    .single .detail .explanation h2::before{
        width: 16.279vw;
    }
    .single .detail .explanation .txt{
        font-size: 4vw;
    }
}


/* ニュース一覧ページ
-----------------------------*/
.body .news_list{
    padding: 0;
    margin: 0;
}
.news_list .contents{
    margin: 0;
    padding: 240px 0 105px;
    width: auto;
}
.news_list .contents .container{
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.news_list .contents .main-section{
    margin: 0;
}
.news_list .category-title{
    position: relative;
    display: block;
    margin-bottom: 60px;
}
.news_list .category-title .bcn{
    margin-bottom: 62px;
}
.news_list .category-title h2{
    margin: 0;
}
.news_list .news-list{
    margin: 0;
}
.news_list .news-list .news-list-unit{
    display: flex;
    align-items: center;
    gap: 53px;
    padding: 25px 0 !important;
    border-bottom: 1px solid #E1E3EB;
}
.news_list .news-list .news-list-unit:first-child{
    padding: 0 0 25px !important;
}
.news_list .news-list .news-list-unit .news-list-date{
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", serif;
    letter-spacing: 0.08em;
    color: #102366 !important;
    margin: 0;
}
.news_list .news-list .news-list-unit .news-list-title{
    margin: 0;
}
.news_list .news-list .news-list-unit .news-list-title a{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #102366;
}
.news_list .pager-wrap{
    display: block;
}
.news_list .pager-wrap .pager{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.news_list .pager-wrap .pager li{
    margin: 0;
}
.news_list .pager-wrap .pager li a {
    font-size: 15px;
    font-weight: 600;
    color: #102366;
    background-color: #FFFFFF;
    border: 1px solid #102366;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news_list .pager-wrap .pager li .current{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #050066;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news_list .pager-wrap .pager .first_arrow a{
    padding: 0;
}
.news_list .pager-wrap .pager .first_arrow a img{
    transform: scale(-1);
}
.news_list .pager-wrap .pager .last_arrow a{
    padding: 0;
}

@media only screen and (max-width: 900px) {
    .news_list .contents{
        padding: 32vw 0 21.336vw;
    }
    .news_list .contents .container{
        display: block;
        width: auto;
        padding: 0 20px;
        margin: 0;
    }
    .news_list .category-title{
        margin-bottom: 10.668vw;
    }
    .news_list .category-title .bcn{
        font-size: 3.2vw;
        margin-bottom: 10.668vw;
    }
    .news_list .news-list .news-list-unit{
        flex-wrap: wrap;
        gap: 2.133vw;
        padding: 6.667vw 0 !important;
    }
    .news_list .news-list .news-list-unit:first-child{
        padding: 0 0 6.667vw !important;
    }
    .news_list .news-list .news-list-unit .news-list-date{
        font-size: 3.2vw;
        width: 100%;
    }
    .news_list .news-list .news-list-unit .news-list-title a{
        font-size: 3.7334vw;
    }
    
}

/* ニュース詳細ページ
-----------------------------*/
.body .news_single{
    padding: 0;
    margin: 0;
}
.news_single .contents{
    margin: 0;
    padding: 240px 0 105px;
    width: auto;
}
.news_single .contents .container{
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.news_single .contents .main-section{
    margin: 0;
}
.news_single .bcn{
    margin-bottom: 70px;
}
.news_single .news-head .news-list-date{
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", serif;
    letter-spacing: 0.08em;
    color: #102366 !important;
    margin: 0 0 30px;
}
.news_single .news-head h2.news-title{
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #102366;
    padding-bottom: 36px;
    margin-bottom: 46px;
    border-bottom: 1px solid #102366;
}
.news_single .news-head h2.news-title::before{
    display: none;
}
.news_single .news-content-wrap{
    margin: 0 0 80px;
}
.news_single .news-content-wrap p{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 2;
    color: #000000;
}
.news_single .news-pager{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news_single .news-pager li a{
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: #fff;
    background-color: #050066;
    width: 300px;
    padding: 16px 0 17px;
    margin: 0;
    border-radius: 4px;
    transition: all .3s;
}
@media only screen and (max-width: 900px) {
    .news_single .contents{
        padding: 32vw 0 21.336vw;
    }
    .news_single .contents .container{
        display: block;
        width: auto;
        padding: 0 20px;
        margin: 0;
    }
    .news_single .bcn{
        font-size: 3.2vw;
        margin-bottom: 10.668vw;
    }
    .news_single .news-head .news-list-date{
        font-size: 3.2vw;
        margin: 0 0 5.334vw;
    }
    .news_single .news-head h2.news-title{
        font-size: 4.651vw;
        padding-bottom: 5.334vw;
        margin-bottom: 6.667vw;
    }
    .news_single .news-content-wrap{
        margin: 0 0 16vw;
    }
    .news_single .news-content-wrap p{
        font-size: 3.4663vw;
    }
    .news_single .news-pager li a{
        font-size: 3.4663vw;
        width: 80vw;
        padding: 4vw 0 4.2667vw;
        border-radius: 1.06667vw;
    }
}


/* カートページ
-----------------------------*/
body.cart{
    margin: 0;
}
.cart .sp{
    display: none;
}
.cart .contents{
    margin: 0;
    padding: 240px 0 105px;
    width: auto;
}
.cart .container{
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    display: block;
}
.cart .cart_ctt h2{
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #102366;
    margin: 0 0 90px;
}
.cart .cart_ctt .cart-list-table{
    width: 100%;
    margin: 0 auto 94px;
}
.cart .cart_ctt .cart-list-table thead{
    border-bottom: 1px solid #CDD4E5;
}
.cart .cart_ctt .cart-list-table th{
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #102366;
    background-color: transparent;
    border: none;
    padding: 0 0 25px;
}
.cart .cart_ctt .cart-list-table th:first-child{
    width: 450px;
}
.cart .cart_ctt .cart-list-table th:last-child{
    width: 180px;
}
.cart .cart_ctt .cart-list-table tbody td{
    text-align: center;
}
.cart .cart_ctt .cart-list-table tbody td:first-child{
    padding: 20px 0;
}
.cart .cart_ctt .cart-list-table tbody td .flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.cart .cart_ctt .cart-list-table tbody td:first-child .flex{
    justify-content: flex-start;
    gap: 50px;
}
.cart .cart_ctt .cart-list-table .cart-list-image{
    width: 110px;
    margin: 0;
}
.cart .cart_ctt .cart-list-table .item-cart-title{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.cart .cart_ctt .cart-list-table .item-cart-quantity input{
    font-size: 18px;
    font-weight: 500;
    font-family: "Inter", serif;
    color: #333333;
    width: 70px;
    max-height: 40px;
    padding: 9px 7px 8px;
    margin: 0;
    border: 1px solid #707070;
}
.cart .cart_ctt .cart-list-table .item-cart-quantity a{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0 11px;
    height: 40px;
    color: #fff;
    background-color: #2E2E2E;
    border-radius: 2px;
}
.cart .cart_ctt .cart-list-table .item-cart-price{
    font-size: 20px;
    font-weight: 500;
    font-family: "Inter", serif;
    line-height: 1.4;
}
.cart .cart_ctt .cart-list-table .item-cart-delete{
    float: none;
}
.cart .cart_ctt .cart-list-table .item-cart-delete a{
    padding: 0;
    border: none;
}
.cart .cart_ctt .cart-list-table .cart-total{
    background: none;
    border: none;
}
.cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap{
    padding: 0;
    padding-top: 50px;
}
.cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap .price_flex{
    display: flex;
    align-items: flex-end;
    justify-content: right;
}
.cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap .price_flex span{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #000000;
    padding-bottom: 8px;
}
.cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap .price_flex p{
    font-size: 30px;
    font-weight: 500;
    font-family: "Inter", serif;
    margin: 0 4px 0 32px;
}
.cart .cart_ctt .cart-button-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 0;
    margin: 0;
}
.cart .cart_ctt .cart-button-wrap li a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    width: 250px;
    height: 60px;
    padding: 0;
    margin: 0;
    border: 1px solid #102366;
    border-radius: 2px;
    transition: all .3s;
}
.cart .cart_ctt .cart-button-wrap .cart-back-button a{
    color: #102366;
    background-color: #fff;
}
.cart .cart_ctt .cart-button-wrap .cart-back-button a::before{
    display: none;
}
.cart .cart_ctt .cart-button-wrap .cart-button a{
    color: #fff;
    background: #102366;
}
.cart .cart_ctt .estimate-wrap .estimate{
    width: 100%;
}
.cart .cart_ctt .estimate-wrap .estimate a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    width: 250px;
    height: 60px;
    padding: 0;
    margin: 0 0 0 auto;
    border: 1px solid #102366;
    color: #fff;
    background: #102366;
    border-radius: 2px;
    transition: all .3s;
}
@media only screen and (max-width: 900px) {
    .cart .sp{
        display: block;
    }
    .cart .pc{
        display: none;
    }
    .cart .contents{
        padding: 32vw 0 21.336vw;
    }
    .cart .container{
        width: auto;
        padding: 0 20px;
        margin: 0;
    }
    .cart .cart_ctt h2{
        font-size: 4.8vw;
        margin: 0 0 10.668vw;
    }
    .cart .cart_ctt .cart-list-table{
        margin: 0 auto 10.668vw;
    }
    .cart .cart_ctt .cart-list-table tbody td{
        text-align: unset;
        margin: 0 0 2.667vw;
    }
    .cart .cart_ctt .cart-list-table tbody td .flex{
        justify-content: flex-start;
        gap: 2.133vw;
    }
    .cart .cart_ctt .cart-list-table tbody td:first-child{
        padding: 0;
        margin: 0 0 4vw;
    }
    .cart .cart_ctt .cart-list-table tbody td:nth-child(3){
        margin: 0;
    }
    .cart .cart_ctt .cart-list-table tbody .list_item{
        display: block;
        padding: 20px 0;
    }
    .cart .cart_ctt .cart-list-table tbody td:first-child .flex{
        gap: 2.667vw;
    }
    .cart .cart_ctt .cart-list-table .cart-list-image{
        width: 29.332vw;
        height: 29.332vw;
    }
    .cart .cart_ctt .cart-list-table .cart-list-image img{
        width: 100%;
        height: auto;
    }
    .cart .cart_ctt .cart-list-table .cart-list-info{
        flex: 1;
    }
    .cart .cart_ctt .cart-list-table .item-cart-title{
        font-size: 4vw;
        margin: 0;
    }
    .cart .cart_ctt .cart-list-table .item-cart-quantity input{
        font-size: 4.267vw;
        width: 16vw;
        max-height: 10.668vw;
        padding: 2.4vw 1.8667vw;
    }
    .cart .cart_ctt .cart-list-table .item-cart-quantity a{
        font-size: 3.4663vw;
        padding: 0 2.667vw;
        height: 10.668vw;
    }
    .cart .cart_ctt .cart-list-table .item-cart-quantity .item-cart-delete{
        padding-left: 20px;
    }
    .cart .cart_ctt .cart-list-table .item-cart-quantity .item-cart-delete a{
        padding: 0;
        height: auto;
        background-color: transparent;
    }
    .cart .cart_ctt .cart-list-table .item-cart-quantity .item-cart-delete a img{
        width: 4vw;
        height: auto;
    }
    .cart .cart_ctt .cart-list-table .item-cart-price{
        font-size: 5.866vw;
        text-align: right;
    }
    .cart .cart_ctt .cart-list-table .item-cart-price span{
        display: inline-block !important;
        font-size: 3.7334vw;
        font-family: 'Noto Sans', sans-serif;
    }
    .cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap{
        padding-top: 10.668vw;
    }
    .cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap .price_flex{
        justify-content: center;
    }
    .cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap .price_flex span{
        font-size: 4vw;
        padding-bottom: 2.133vw;
    }
    .cart .cart_ctt .cart-list-table .cart-total .cart-total-price-wrap .price_flex p{
        font-size: 8vw;
        margin: 0 1.3335vw 0 8vw;
    }
    .cart .cart_ctt .cart-button-wrap{
        justify-content: center;
        flex-wrap: wrap;
        gap: 2.667vw;
    }
    .cart .cart_ctt .cart-button-wrap li{
        width: 100%;
    }
    .cart .cart_ctt .cart-button-wrap li a{
        font-size: 3.7334vw;
        width: 100%;
        height: auto;
        padding: 5.334vw 0;
    }
    .cart .cart_ctt .estimate-wrap .estimate a{
        font-size: 3.7334vw;
        width: 100%;
        height: auto;
        padding: 5.334vw 0;
    }
}

.amazon_login_hide_item .responsiveDesignHide .note{
	display: none !important;
}