/*
 * Fonts
 * -------------------------------------------------------------------
 */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css");

/*-----　header -----*/
header {
    height: 22px;
}

.fixed-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #ECECEC;
}

.fixed-header.fixed {
    position: fixed;
}

.logo {
    position: absolute;
    top: 18px;
    right: 0;
    left: 0;
    width: 110px;
    margin: 0 auto;
    /* transform: translateX(-50%); */
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    header {
        height: auto;
    }

    .fixed-header {
        width: 100%;
        height: 100px;
        background: #ffffff;
        border-bottom: 1px solid #ECECEC;
    }

    header .logo {
        top: 20px;
        width: 160px;
    }
}

/* ポップアップウインドウの設定 */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #f4f4f4;
    margin: 0 auto;
    width: 65%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: 1s;
}

@media only screen and (max-width: 1180px) {
    .modal-content {
        margin: 5% auto;
        width: 90%;
    }
}

@keyframes modalopen {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modalbutton {
    font-size: 11px;
    cursor: pointer;
}

.modalbutton:hover {
    cursor: pointer;
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.modalClose {
    position: absolute;
    top: 29px;
    right: 27px;
    font-size: 2rem;
}

@media only screen and (max-width: 767px) {
    .modalClose {
        top: 14px;
        right: 13px;
    }
}

.modalClose:hover {
    cursor: pointer;
}


/* ポップアップの内容 */
.modal-header {
    background: #fff;
    position: relative;
}

.modal-menu {
    width: 100%;
    background: #d9d9d9;
}

.modal-menu li {
    background: #ffffff;
    border-bottom: 1px solid #ECECEC;
    margin: 0 40px;
}

@media only screen and (max-width: 1180px) {
    .modal-menu li {
        width: 100% !important;
    }
}

.modal-menu a {
    background: url(../images/icon/ico_right.svg) center right 22px no-repeat #ffffff;
    background-size: auto;
    font-size: 23px !important;
    text-align: left;
    letter-spacing: 0.08em;
    line-height: 39px;
    padding: 27px 22px 27px 30px;
}

.modal-menu li.menuttl {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 29px;
    letter-spacing: 0.08em;
    /* line-height: 44px; */
    text-align: left;
    color: #000;
    background: #d9d9d9;
    text-align: center;
    padding: 30px;
    margin: 0;
}

.modal-menu li:nth-child(2) {
    padding: 0 40px;
    margin: 0 !important;
}

@media only screen and (max-width: 769px) {
    .modal-menu li:nth-child(2) {
        padding: 0 20px;
    }
}

.modal-menu li.modal-search {
    position: relative;
    padding: 28px 40px;
    margin: 30px 0 0;
}

.modal-menu .txt-field {
    width: 100%;
    padding: 18px 40px;
    border: 1px solid #707070;
    border-radius: 36px;
    box-sizing: border-box;
    color: #000;
    font-weight: 500;
    font-size: 20px;
}

.modal-menu .search-btn {
    position: absolute;
    top: 42px;
    right: 65px;
    background: #fff;
}

.modal-menu .search-btn .icon {
    width: 35px;
    height: 35px;
    background: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {

    .modal-menu li.modal-search {
        position: relative;
        padding: 28px 32px;
        margin: 30px 0 0;
    }

    .modal-menu a {
        background: url(../images/icon/ico_right.svg) center right 30px no-repeat #ffffff;
        background-size: 10px;
    }

    .modal-menu li.menuttl,
    .modal-menu a {
        padding: 27px 30px 27px 40px;
        font-size: 22px !important;
        width: 100%;
    }
}

/* sp */
@media only screen and (max-width: 767px) {
    .modal-menu li.modal-search {
        padding: 19px 20px;
        margin: 20px 0 0;
    }

    .modal-menu .txt-field {
        padding: 18px 40px 18px 30px;
        font-size: 18px;
    }

    .modal-menu a {
        background: url(../images/icon/ico_right.svg) center right 15px no-repeat #ffffff;
        background-size: 8px;
    }

    .modal-menu li.menuttl,
    .modal-menu a {
        padding: 20px 15px 20px 20px;
        font-size: 18px !important;
        width: 100%;
    }
}

@media only screen and (max-width: 540px) {
    .modal-menu .search-btn {
        top: 31px;
        right: 41px;
    }
}

.original-p-productSearch__form {
    padding: 32px 0;
    /* transform: translateY(-100%); */
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

@media only screen and (max-width: 769px) {
    .original-p-productSearch__form {
        padding: 0;
    }
}

.original-productSearch__box {
    padding: 26px 32px 33px;
    border-bottom: 1px solid #ECECEC;
}

.original-productSearch__box h5 {
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.08em;
    line-height: 44px;
    text-align: center;
    color: #000;
    margin-bottom: 27px;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .original-productSearch__box h5 {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 768px) {
    .original-productSearch__box {
        padding: 20px;
    }

    .original-productSearch__box h5 {
        font-size: 16px;
        line-height: 27px;
        margin-bottom: 10px;
    }

    .fs-p-productSearch__field {
        display: grid;
        grid-gap: 32px;
        grid-template-rows: auto auto;
        grid-template-columns: calc(50% - 8px*2) calc(50% - 8px*2);
    }

    .fs-p-productSearch__searchButtonContainer {
        grid-row: 2;
        grid-column: 1/3;
    }
}

.inline-radio {
    display: flex;
    width: 100%;
    margin: 0 auto;
    row-gap: 0px;
    column-gap: 0px;
    margin-bottom: 40px;
    border-radius: 100px;
    background: #ECECEC;
}

@media only screen and (max-width: 767px) {
    .inline-radio {
        margin-bottom: 10px;
    }
}

.inline-radio div {
    position: relative;
    flex: 1;
    display: inline-block;
    width: 100%;
    background: transparent;
    color: #787878;
    font-size: 24px;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s;
    border-radius: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .inline-radio div {
        font-size: 19px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .inline-radio div {
        font-size: 14px;
        line-height: 27px;
    }
}

.inline-radio label {
    position: absolute;
    top: 0;
    left: 0;
    color: #707070;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.inline-radio input {
    width: 100%;
    height: 60px;
    opacity: 0;
    padding: 16px 0;
    cursor: pointer;
}

@media only screen and (max-width: 1180px) {
    .inline-radio input {
        height: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .inline-radio input {
        height: 30px;
    }
}

.inline-radio input:checked+label {
    border-radius: 100px;
    background: #333333;
    color: #fff;
}

.original-productSearch__box input[type=text] {
    width: 45%;
    border-radius: 100px;
    padding: 18px 40px;
}

@media only screen and (max-width: 769px) {
    .original-productSearch__box input[type=text] {
        width: 42%;
        padding: 10px 20px;
    }
}

.productSearch_left {
    margin-right: 20px;
}

.productSearch_right {
    margin-left: 20px;
}

@media only screen and (max-width: 769px) {
    .productSearch_left {
        margin-right: 10px;
    }
    
    .productSearch_right {
        margin-left: 10px;
    }
}

.productSearch_coler {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
	justify-content: space-between;
}

.d-input {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    background: #fff;
    border: solid 2px #111;
    width: 5.125em;
    height: 5.125em;
    margin-right: 5px;
    transition: color .12s, background .12s, border .12s;
}

@media only screen and (max-width: 769px) {
    .d-input {
        width: 4em;
        height: 4em;
    }
}

.d-input+label {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    font-size: 15px;
    margin: 0 auto;
    padding-top: 5px;
}

.d-input:not(:checked)+label .d-input_icon--radio::before,
.d-input:not(:checked)+label .d-input_icon--checkbox::before,
.d-input:not(:checked)+label .d-input_icon--color::before {
    width: 0;
    height: 0;
}

.d-input+label:hover {
    color: #0172ce;
}

.d-input+label:hover>.d-input_icon--radio,
.d-input+label:hover>.d-input_icon--checkbox {
    border-color: #0172ce;
}

.d-input:checked+label .d-input_icon--radio {
    border-color: #0172ce;
}

.d-input:checked+label .d-input_icon--checkbox {
    background-color: #0172ce;
    border-color: #0172ce;
}

.d-input:checked+label .d-input_icon::before {
    opacity: 1;
    visibility: visible;
}

.d-input__color+label {
    font-family: "Manjari", "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "YuGothic", "メイリオ", Meiryo, sans-serif;
    text-transform: capitalize;
}

.d-input_icon {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    background: #fff;
    border: solid 2px #111;
    width: 1.3em;
    height: 1.3em;
    margin-right: .55em;
    transition: color .12s, background .12s, border .12s;
}

.d-input_icon::before {
    content: '';
    display: block;
    flex: none;
    opacity: 0;
    visibility: hidden;
    transition: all .16s;
}

.d-input_icon--radio {
    border-radius: 50%;
}

.d-input_icon--radio::before {
    width: 100%;
    height: 100%;
    border: solid 3px #fff;
    background: #0172ce;
    border-radius: 50%;
}

.d-input_icon--checkbox {
    border-radius: 4px;
}

.d-input_icon--checkbox::before {
    display: inline-block;
    width: 0.8em;
    height: 0.4em;
    border: solid 2px #fff;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    margin-bottom: 0.2em;
}

.d-input_icon--color {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    border: solid 2px #111;
    border-radius: 50%;
    vertical-align: middle;
    cursor: pointer;
}

.d-input_icon--color:checked::before {
    font-family: 'Font Awesome 6 Free';
    content: "\f00c";
    font-weight: 900;
    display: block;
    font-size: 3em;
    width: 1.7em;
    height: 1.7em;
    line-height: 1.7em;
    text-align: center;
}

@media only screen and (max-width: 769px) {
    .d-input_icon--color:checked::before {
        font-size: 2.5em;
        width: 1.5em;
        height: 1.5em;
        line-height: 1.5em;
    }
}

.d-input_icon--color__normal {
    border-color: transparent;
}

.d-input_icon--color__normal.is-white {
    border-color: #dcdcdc;
}

.d-input_icon--color__normal.is-colorful {
    border: none;
}

.d-input_icon--color.is-black {
    background-color: #111 !important;
}

.d-input_icon--color.is-black::before {
    color: #FFF;
}

.d-input_icon--color.is-black {
    background-color: #111 !important;
}

.d-input_icon--color.is-brown {
    background-color: #9d6161 !important;
}

.d-input_icon--color.is-red {
    background-color: #da655f !important;
}

.d-input_icon--color.is-bule {
    background-color: #0015fe !important;
}

.d-input_icon--color.is-orange {
    background-color: #ffc54c !important;
}

.d-input_icon--color.is-yellow {
    background-color: #f5e552 !important;
}

.d-input_icon--color.is-green {
    background-color: #87be5d !important;
}

.d-input_icon--color.is-purple {
    background-color: #c6aadc !important;
}

.d-input_icon--color.is-pink {
    background-color: #f7adbe !important;
}

.d-input_icon--color.is-gray {
    background-color: #dcdcdc !important;
}

.d-input_icon--color.is-beige {
    background-color: #e9e0cb !important;
}

.d-input_icon--color.is-gold {
    background-color: #dad098 !important;
}

.d-input_icon--color.is-colorful {
    background: conic-gradient(#f5e552 0%, #f5e552 12.5%, #ffc54c 12.5%, #ffc54c 25%, #e78282 25%, #e78282 37.5%, #d9a2b4 37.5%, #d9a2b4 50%, #6d8edb 50%, #6d8edb 62.5%, #97d2eb 62.5%, #97d2eb 75%, #7bc5a5 75%, #7bc5a5 87.5%, #B3D455 87.5%, #B3D455 100%) !important;
}

.d-form_input {
    margin: 0 18px 15px 0;
}

@media only screen and (max-width: 767px) {
    .d-form_input {
        margin: 0 28px 15px 0;
    }
}

@media only screen and (max-width: 600px) {
    .d-form_input:nth-child(4n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 400px) {
    .d-form_input {
        margin: 0 21px 15px 0;
    }
}

@media only screen and (max-width: 370px) {
    .d-form_input {
        margin: 0 12px 15px 0;
    }
}

.d-form_input--inline {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.d-form_input--equal {
    display: inline-block;
    vertical-align: middle;
    width: 23%;
    min-width: 306px;
}

.original-productSearch__searchButtonContainer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 32px;
}

.original-productSearch__searchButton {
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    padding: 0.8em 1.6em 0.6em;
    border-radius: 38px;
    background: #333;
    width: 100%;
    min-width: 8em;
    margin-bottom: 32px;
}

.original-productSearch__searchButton:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.original-productSearch__searchButton2 {
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    padding: 0.8em 1.6em 0.6em;
    border-radius: 38px;
    background: #d9d9d9;
    width: 100%;
    min-width: 8em;
}

.original-productSearch__searchButton2:hover {
    cursor: pointer;
    background: #333;
}


/* sp */
@media only screen and (max-width: 767px) {
    header {
        height: auto;
    }

    .fixed-header {
        width: 100%;
        height: 65px;
        background: #ffffff;
        border-bottom: 1px solid #ECECEC;
    }

    header .logo {
        top: 20px;
        width: 83px;
    }
}

/* menuicon */
.menuicon img {
    width: 24px;
    margin-bottom: 8px;
}

.menuicon li {
    text-align: center;
}

.menuicon li:nth-child(2) {
    margin: 0 40px;
}

.menuicon li a {
    font-size: 11px;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .menuicon li {
        width: 33.33%;
    }
}

/* sp */
@media only screen and (max-width: 767px) {
    .menuicon li {
        width: 33.33%;
    }
}

/* menubar */
.menubar {
    padding: 18px 0;
    align-items: center;
}

.menubar .menuicon {
    align-items: center;
}

/* menu-btn */
.menubar .menu-btn {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.menubar .menu-btn span {
    position: absolute;
    top: 0;
    width: 28px;
    height: 3px;
    background: #000000;
    transition: all ease-in-out .5s;
}

.menubar .menu-btn span:nth-of-type(2) {
    top: 45%;
}

.menubar .menu-btn span:nth-of-type(3) {
    top: auto;
    bottom: -1px;
    transition: all ease-in-out .5s;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .menubar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        background: #ffffff;
        flex-direction: row-reverse;
        border-top: 1px solid #ECECEC;
        align-items: flex-start;
    }

    .menubar .menuicon {
        width: 75%;
        grid-template-columns: repeat(3, 1fr);
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .menuicon li:nth-child(2) {
        margin: 0;
    }

    .menubar .menuicon img {
        width: 23px;
    }

    .menubar .menuicon li a {
        font-weight: 700;
        font-size: 9px;
    }

    .menubar .menu-btn {
        height: 18px;
        margin: 3px auto;
    }

    .menubar .menu-btn label.txt {
        display: block;
        position: absolute;
        bottom: -20px;
        width: 100%;
        font-weight: 700;
        font-size: 9px;
        text-align: center;
    }

    .menubar .menu-btn span {
        right: 0;
        left: 0;
        width: 25px;
        margin: 0 auto;
    }

    .menubar .menu-btn span:nth-of-type(2) {
        top: 41%;
    }

    .menubar .menu-btn span:nth-of-type(3) {
        bottom: 0;
    }
}

/* sp */
@media only screen and (max-width: 767px) {
    .menubar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        background: #ffffff;
        flex-direction: row-reverse;
        border-top: 1px solid #ECECEC;
        align-items: flex-start;
    }

    .menubar .menuicon {
        width: 75%;
        grid-template-columns: repeat(3, 1fr);
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .menuicon li:nth-child(2) {
        margin: 0;
    }

    .menubar .menuicon img {
        width: 23px;
    }

    .menubar .menuicon li a {
        font-weight: 700;
        font-size: 9px;
    }

    .menubar .menu-btn {
        height: 18px;
        margin: 3px auto;
    }

    .menubar .menu-btn label.txt {
        display: block;
        position: absolute;
        bottom: -20px;
        left: -10px;
        width: 50px;
        font-weight: 700;
        font-size: 9px;
        text-align: center;
    }

    .menubar .menu-btn span {
        right: 0;
        left: 0;
        width: 25px;
        margin: 0 auto;
    }

    .menubar .menu-btn span:nth-of-type(2) {
        top: 41%;
    }

    .menubar .menu-btn span:nth-of-type(3) {
        bottom: 0;
    }
}

.menu-content .blk .closebtn span {
    position: absolute;
    top: 16px;
    left: 5px;
    width: 46px;
    height: 3px;
    background: #000000;
    transition: all ease-in-out .5s;
}

.menu-content .blk .closebtn span:nth-of-type(1) {
    transform: rotate(45deg);
    width: 25px;
    background: #000000;
}

.menu-content .blk .closebtn span:nth-of-type(2) {
    transform: rotate(-45deg);
    width: 25px;
    background: #000000;
}

/* menu-content */
/*----- Hide scrollbar for Chrome, Safari and Opera -----*/
.menu-content::-webkit-scrollbar,
.catmenu-blk .menu-over::-webkit-scrollbar {
    display: none;
}

/*----- Hide scrollbar for IE, Edge and Firefox -----*/
.menu-content,
.catmenu-blk .menu-over {
    -ms-overflow-style: none;
    /*----- IE and Edge -----*/
    scrollbar-width: none;
    /*----- Firefox -----*/
}

.menu-content {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 68, 68, .8);
    transition: all .7s;
}

.menu-content .blk {
    position: relative;
    left: -100%;
    width: 550px;
    height: 100%;
    background: #D9D9D9;
    transition: all .7s;
}

.menu-content .blk .closebtn {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.menu-content .blk .closebtn:hover {
    opacity: .7;
}

.menu-content.active {
    z-index: 9;
    visibility: visible;
    opacity: 1;
    overflow-y: scroll;
}

.menu-content.active .blk {
    left: 0;
}

.search-box {
    position: relative;
    padding: 28px 40px;
    margin: 30px 0 0;
}

.search-box .txt-field {
    width: 100%;
    padding: 18px 40px;
    border: 1px solid #707070;
    border-radius: 36px;
    box-sizing: border-box;
    color: #000;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.search-box .icon {
    position: absolute;
    top: 42px;
    right: 65px;
    width: 35px;
    height: 35px;
    background: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .menu-content {
        width: 100%;
    }

    .menu-content .blk {
        width: 708px;
    }

    .search-box .txt-field {
        padding: 9px 28px;
        font-size: 22px;
    }

    .menu-content .search-box {
        padding: 27px 34px;
    }

    .search-box .icon {
        right: 56px;
        top: 43px;
        width: 23px;
        height: 23px;
    }

    .menu-content .blk .closebtn {
        top: 18px;
        right: 25px;
    }
}

/* sp */
@media only screen and (max-width: 767px) {
    .menu-content {
        width: 100%;
    }

    .menu-content .blk {
        width: 335px;
    }

    .menu-content .txt-field {
        padding: 16px 25px;
        font-size: 13px;
    }

    .menu-content .search-box {
        padding: 14px 10px;
    }

    .menu-content .search-btn {
        right: 31px;
    }

    .menu-content .search-btn .icon {
        width: 23px;
        height: 23px;
    }

    .menu-content .blk .closebtn {
        top: 8px;
        right: 15px;
    }
}

.menu-ttl {
    font-weight: 600;
    font-size: 14px;
    line-height: 2.1;
    margin-bottom: 4px;
}

.content-menu {
    margin-bottom: 50px;
}

.content-menu li {
    background: #ffffff;
    border-bottom: 1px solid #ECECEC;
}

.content-menu li.menuttl,
.content-menu a {
    padding: 27px 22px 27px 30px;
    background: #ffffff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
}

.content-menu a {
    background: url('../images/icon/ico_right.svg') center right 22px no-repeat #ffffff;
    background-size: auto;
}

.content-menu li.menuttl {
    background: #D9D9D9;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {

    .content-menu a,
    .content-menu li.cat-nav {
        background: url(../images/icon/ico_right.svg) center right 30px no-repeat #ffffff;
        background-size: 10px;
    }

    .content-menu li.menuttl,
    .content-menu a,
    .content-menu li.cat-nav,
    .catmenu-blk .menuttl {
        padding: 27px 30px 27px 40px;
        font-size: 22px;
    }
}

/* sp */
@media only screen and (max-width: 767px) {

    .content-menu a,
    .content-menu li.cat-nav {
        background: url(../images/icon/ico_right.svg) center right 15px no-repeat #ffffff;
        background-size: 8px;
    }

    .content-menu li.menuttl,
    .content-menu a,
    .content-menu li.cat-nav,
    .catmenu-blk .menuttl {
        padding: 20px 15px 20px 20px;
        font-size: 13px;
    }
}

/* sub-navi */
.sub-navi {
    position: relative;
    height: 50px;
}

.sub-navi .navmenu {
    padding: 15px 0;
    justify-content: center;
}

.sub-navi .navmenu li {
    position: relative;
    transition: all .3s;
}

.sub-navi .navmenu li.active::after,
.sub-navi .navmenu li:hover::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    width: 45px;
    height: 1px;
    margin: 0 auto;
    background: #000000;
    content: '';
    transition: all .3s;
}

.sub-navi .navmenu li a:hover {
    opacity: 1;
}

.sub-navi .navmenu li:nth-child(2) {
    margin: 0 60px;
}

.sub-navi .navmenu a {
    padding: 0 5px;
    font-size: 20px;
}

.sub-navi .dropdown .blk {
    position: relative;
    z-index: 2;
    background: #ffffff;
}

.sub-navi .dropdown {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
}

.sub-navi .tab-content {
    z-index: -1;
    opacity: 0;
    height: 0;
    transition: all .3s;
}

.sub-navi .tab-content.active {
    opacity: 1;
    height: auto;
    padding: 20px 0 60px 0;
}

.sub-navi .tab-content .content-detail {
    visibility: hidden;
    opacity: 0;
}

.sub-navi .tab-content.active .content-detail {
    visibility: visible;
    opacity: 1;
}

.sub-navi .tab-content .grid {
    row-gap: 30px;
    column-gap: 13px;
    grid-template-columns: repeat(11, 1fr);
    overflow-x: auto;
    grid-auto-flow: column;
    grid-template-rows: auto auto;
    padding-bottom: 30px;
    cursor: pointer;
}

/* width */
.sub-navi .tab-content .grid::-webkit-scrollbar {
    height: 4px;
}

/* Track */
.sub-navi .tab-content .grid::-webkit-scrollbar-track {
    background: #ECECEC;
}

/* Handle */
.sub-navi .tab-content .grid::-webkit-scrollbar-thumb {
    background: #787878;
}

/* Handle on hover */
.sub-navi .tab-content .grid::-webkit-scrollbar-thumb:hover {
    background: #3A3A3A;
}

.sub-navi .tab-content .icon {
    display: block;
    width: 108px;
    margin: 0 auto 12px auto;
}

.sub-navi .tab-content a {
    font-weight: 700;
    font-size: 12px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .sub-navi {
        height: 96px;
    }

    .sub-navi .navmenu {
        padding: 29px 0;
    }

    .sub-navi .navmenu a {
        font-size: 37px;
    }

    .sub-navi .tab-content .grid {
        row-gap: 28px;
        column-gap: 13px;
        grid-template-columns: repeat(6, 1fr);
        max-width: 100%;
    }

    .sub-navi .tab-content .content-detail .ttl {
        font-size: 44px;
    }

    .sub-navi .tab-content .content-detail .ttl.jp {
        margin: 0 0 30px 0;
        font-size: 20px;
    }
}



/* catmenu-blk */
.content-menu li.cat-nav,
.catmenu-blk .menuttl {
    padding: 27px 22px 27px 30px;
    background: url(../images/icon/ico_right.svg) center right 22px no-repeat #ffffff;
    background-size: auto;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    cursor: pointer;
}

.catmenu-blk {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    width: 550px;
    height: 100%;
    background: #ffffff;
    transition: all .3s;
}

.catmenu-blk.show {
    visibility: visible;
    opacity: 1;
}

.catmenu-blk .menuttl {
    background: url(../images/icon/ico_left.svg) center left 22px no-repeat #D9D9D9;
    background-size: auto;
    padding-left: 52px;
}

.catmenu-blk .menuttl:hover {
    opacity: .7;
}

.catmenu-blk .menu-over {
    overflow: auto;
}

.catmenu-blk .content-menu {
    margin: 0;
}

.catmenu-blk .tab-content {
    z-index: -1;
    opacity: 0;
    height: 0;
    transition: all .3s;
}

.catmenu-blk .tab-content.active {
    opacity: 1;
    height: auto;
}

.catmenu-blk .tab-content a {
    font-weight: 700;
    font-size: 20px;
    text-align: left;
}

.catmenu-blk .navmenu {
    padding: 0;
}

.catmenu-blk .navmenu li {
    width: 33.33%;
}

.catmenu-blk .navmenu li:nth-child(2) {
    margin: 0;
}

.catmenu-blk .navmenu li a {
    padding: 22px 0;
    background: #D9D9D9;
    color: #787878;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
}

.catmenu-blk .navmenu li a:hover,
.catmenu-blk .navmenu li.active a {
    opacity: 1;
    background: #333333;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
    .catmenu-blk .menuttl {
        background: url(../images/icon/ico_left.svg) center left 39px no-repeat #D9D9D9;
        background-size: 10px;
        padding-left: 77px;
        font-size: 25px;
    }

    .catmenu-blk {
        width: 708px;
    }

    .catmenu-blk .tab-content a {
        font-size: 25px;
        line-height: 1.1;
    }

    .catmenu-blk .navmenu li a {
        padding: 29px 0;
        font-size: 38px;
    }
}

/* sp */
@media only screen and (max-width: 767px) {
    .catmenu-blk .menuttl {
        background: url(../images/icon/ico_left.svg) center left 22px no-repeat #D9D9D9;
        background-size: 8px;
        padding-left: 41px;
    }

    .catmenu-blk {
        width: 335px;
    }

    .catmenu-blk .tab-content a {
        font-size: 13px;
    }

    .catmenu-blk .navmenu li a {
        padding: 15px 0;
        font-size: 20px;
    }
}