/* ========================================
   Common
======================================== */
.sp-only {
    display: none !important;
}

a:hover {
    opacity: 0.8;
}

.nk-inner {
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.nk-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 0;
}

.nk-tags__item a {
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 170%;
    padding: 4px 14px;
    border-radius: 4px;
    background: #FFEE06;
}

.nk-empty {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

/* ========================================
   Header
======================================== */
.nk-header {
    width: 1220px;
    max-width: 100%;
    padding: 0 20px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.nk-header__logo a {
    margin: 0;
    font-size: inherit;
    display: block;
}

.nk-header__logo img {
    width: 263px;
    height: 49px;
    aspect-ratio: 263/49;
}

.nk-header__right {
    display: flex;
    gap: 18px;
    margin: 3px 0 0;
}

.nk-header-search__btn {
    border: none;
    background-color: transparent;
    padding: 0;
}

.nk-header-search__input {
    margin: 0 0 1px;
}

.nk-header-search__btn img,
.nk-header-login__link img,
.nk-header-cart__link img {
    width: 25px;
    height: 25px;
}

.nk-header-login__link img,
.nk-header-cart__link img {
    margin: 0 0 7px;
}

.nk-header-search__form {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 0 7px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    transition: border-color 0.3s ease, gap 0.3s ease;
}

.nk-header-search__form.is-open {
    border-color: #5F5F5F;
    gap: 7px;
}

.nk-header-search__field {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    padding: 0;
    border: none;
    background-color: transparent;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.nk-header-search__form.is-open .nk-header-search__field {
    width: 170px;
    opacity: 1;
}

.nk-header-search__field::placeholder {
    color: #5F5F5F;
}

.nk-header-search__field:focus {
    outline: none;
    box-shadow: none;
}

/* PC時は非表示 */
.nk-header-search-sp {
    display: none;
}

.nk-header__hamburger {
    margin: 4px 0 0;
}

.nk-header-hamburger__btn {
    border: none;
    background-color: transparent;
    width: 50px;
    height: 17px;
    display: block;
    position: relative;
}

.nk-header-hamburger__btn::before,
.nk-header-hamburger__btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #5F5F5F;
    left: 0;
}

.nk-header-hamburger__btn::before {
    top: 0;
}

.nk-header-hamburger__btn::after {
    bottom: 0;
}

/* アコーディオンメニュー */
.nk-header-accordion {
    position: absolute;
    top: -20px;
    right: 0;
    width: 865px;
    max-width: 100%;
    height: 460px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 200;
    background-color: #FFFFFF;
}

.nk-header-accordion.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nk-header-accordion__inner {
    padding: 10px 20px 0;
}

.nk-header-accordion__close {
    border: none;
    background-color: transparent;
    width: 50px;
    height: 50px;
    padding: 0;
    display: block;
    position: relative;
    margin: 0 0 0 auto;
}

.nk-header-accordion__close::before,
.nk-header-accordion__close::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #5F5F5F;
    top: 50%;
    left: 50%;
}

.nk-header-accordion__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nk-header-accordion__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nk-header-accordion__top {
    width: 665px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nk-header-accordion__search {
    display: flex;
    align-items: center;
    gap: 13px;
}

.nk-header-accordion__search-field {
    width: 337px;
    padding: 9px 20px;
    border-radius: 20px;
    border: 1px solid #000;
    color: #000000;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.12px;
}

.nk-header-accordion__search-field::placeholder {
    color: #747474;
}

.nk-header-accordion__search-field:focus {
    outline: none;
    box-shadow: none;
}

.nk-header-accordion__search-btn {
    width: 25px;
    border: none;
    background-color: transparent;
    padding: 0;
}

.nk-header-accordion__icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nk-header-accordion__icon-link {
    width: 30px;
}

.nk-header-accordion__content {
    width: 665px;
    max-width: 100%;
    margin: 45px auto 0;
    display: flex;
    gap: 40px;
}

.nk-header-accordion__panel {
    display: none;
    width: 397px;
    max-width: 100%;
}

.nk-header-accordion__panel.is-active {
    display: block;
}

.nk-header-accordion__panel-title {
    color: #4A4A4A;
    font-family: Helvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    padding: 0 0 14px;
    border-bottom: 1px solid #000;
}

.nk-header-accordion__panel-list {
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
    gap: 17.5px 0;
}

.nk-header-accordion__panel-list li a {
    display: block;
    color: #4A4A4A;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.7px;
    padding: 0 0 0 21px;
    position: relative;
}

.nk-header-accordion__panel-list li a::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='11' viewBox='0 0 8 11' fill='none'%3E%3Cpath d='M0.5 10.5L7.5 5.5L0.5 0.5' stroke='%234A4A4A' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 11px;
    position: absolute;
    top: 5px;
    left: 0;
}

.nk-header-accordion__right {
    width: 234px;
    max-width: 100%;
}

.nk-header-accordion__nav-item {
    display: block;
    padding: 0 0 14px;
    border-bottom: 1px solid #000;
}

.nk-header-accordion__nav-item:not(:first-of-type) {
    margin: 14px 0 0;
}

.nk-header-accordion__nav-item:last-of-type {
    padding: 0 0 17px;
    margin: 17px 0 0;
}

.nk-header-accordion__nav-btn {
    color: #4A4A4A;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    border: none;
    background-color: transparent;
    padding: 0;
}

.nk-header-accordion__nav-item:last-of-type .nk-header-accordion__nav-btn {
    color: #4A4A4A;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.nk-accordion-topics__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 20px 0 0;
    padding: 0 0 15px;
}

.nk-accordion-topics__list::-webkit-scrollbar {
    height: 3px;
}

.nk-accordion-topics__list::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    border-radius: 50px;
}

.nk-accordion-topics__list::-webkit-scrollbar-track {
    background: transparent;
}

.nk-accordion-topics__item {
    display: block;
    width: 166px;
    height: 156px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.nk-accordion-topics__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-header-accordion__nav-link {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.7px;
}

.nk-header-accordion__bottom {
    width: 665px;
    max-width: 100%;
    margin: 35px auto 0;
    display: flex;
    gap: 20px;
}

.nk-header-accordion__coupon,
.nk-header-accordion__point {
    width: 50%;
    padding: 10px 0;
    background-color: #D9D9D9;
    display: block;
}

.nk-header-accordion__coupon-en,
.nk-header-accordion__point-en  {
    color: #FFF;
    text-align: center;
    font-family: Helvetica;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.nk-header-accordion__coupon-ja,
.nk-header-accordion__point-ja {
    color: #000;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.65px;
}

.nk-header-accordion__sp {
    display: none;
}

/* ========================================
   Footer
======================================== */
.nk-footer {
    margin: 75px 0 0;
}

.nk-footer__bg {
    background: #EDEDED;
}

.nk-footer__inner {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 20px 93px;
    display: flex;
    justify-content: space-between;
}

.nk-footer__logo {
    width: 243px;
}

.nk-footer__nav-wrap {
    display: flex;
    gap: 40px;
}

.nk-footer__left {
    width: 397px;
    max-width: 100%;
}

.nk-footer__panel {
    display: none;
}

.nk-footer__panel.is-active {
    display: block;
}

.nk-footer__panel-title {
    color: #4A4A4A;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    padding: 0 0 15px;
    border-bottom: 1px solid #4A4A4A;
}

.nk-footer__panel-list {
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
    gap: 19px 20px;
    padding: 0 20px 0 5px;
}

.nk-footer__panel-list li a {
    display: block;
    color: #4A4A4A;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    padding: 0 0 0 15px;
    position: relative;
}

.nk-footer__panel-list li a::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='11' viewBox='0 0 8 11' fill='none'%3E%3Cpath d='M0.5 10.5L7.5 5.5L0.5 0.5' stroke='%234A4A4A' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 9px;
    position: absolute;
    top: 5px;
    left: 0;
}

.nk-footer-topics__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 20px 0 0;
    padding: 0 0 15px;
}

.nk-footer-topics__list::-webkit-scrollbar {
    height: 3px;
}

.nk-footer-topics__list::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    border-radius: 50px;
}

.nk-footer-topics__list::-webkit-scrollbar-track {
    background: transparent;
}

.nk-footer-topics__item {
    display: block;
    width: 166px;
    height: 156px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.nk-footer-topics__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-footer__right {
    width: 265px;
    max-width: 100%;
}

.nk-footer__nav-item {
    display: block;
    padding: 0 0 14px;
    border-bottom: 1px solid #000;
}

.nk-footer__nav-item:not(:first-of-type) {
    margin: 14px 0 0;
}

.nk-footer__nav-item:last-of-type {
    padding: 0 0 16px;
    margin: 16px 0 0;
}

.nk-footer__nav-btn {
    color: #4A4A4A;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    border: none;
    background-color: transparent;
    padding: 0;
}

.nk-footer__nav-link {
    color: #4A4A4A;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.nk-footer__bottom-inner {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nk-footer__bottom-list {
    display: flex;
    gap: 20px;
}

.nk-footer__bottom-item {
    position: relative;
}

.nk-footer__bottom-item:not(:last-of-type)::before {
    content: '';
    width: 1px;
    height: 12px;
    background-color: #4A4A4A;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.nk-footer__bottom-item a {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.7px;
}

.nk-footer__copyright {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 999px) {
    .nk-footer__inner {
        display: block;
    }

    .nk-footer__nav-wrap {
        justify-content: center;
        margin: 40px 0 0;
    }
}

/* ========================================
   Sub-MV
======================================== */
.nk-sub-mv {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nk-sub-mv--blog {
    background-image: url('../img/blog-mv.jpg');
}

.nk-sub-mv--news {
    background-image: url('../img/news-mv.jpg');
}

.nk-sub-mv__inner {
    padding: 150px 0 70px;
    text-align: center;
    border-bottom: 15px solid #00CCCC;
}

.nk-sub-mv__en {
    color: #000;
    font-family: Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 170%;
}

.nk-sub-mv__title {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    margin: 9px 0 0;
}

/* ========================================
   Breadcrumb
======================================== */
.nk-breadcrumb {
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    margin: 20px auto 0;
}

.nk-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.nk-breadcrumb__item,
.nk-breadcrumb__separator {
    color: #888;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.ec-mypageRole .nk-breadcrumb {
    width: 100%;
    padding: 0;
    margin: 100px 0 0;
}

/* ========================================
   BlogArchive
======================================== */
.nk-blog-archive {
    margin: 20px 0 0;
}

.nk-blog-archive__heading {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

.nk-blog-archive__content {
    display: flex;
    justify-content: space-between;
    margin: 55px 0 0;
}

.nk-blog-archive__main {
    width: 67.673%;
    margin: 0 20px 0 0;
}

.nk-blog-archive__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 3.85%;
}

.nk-blog-archive__img a {
    display: block;
    max-width: 378px;
    aspect-ratio: 63/38;
    overflow: hidden;
}

.nk-blog-archive__img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-blog-archive__body {
    margin: 14px 0 0;
}

.nk-blog-archive__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 8px;
}

.nk-blog-archive__date-link,
.nk-blog-archive__cat {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
}

.nk-blog-archive__title a {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 170%;
    margin: 4px 0 0;
}

/* ========================================
   BlogSingle
======================================== */
.nk-blog-single {
    margin: 80px 0 0;
}

.nk-blog-single__content {
    display: flex;
    justify-content: space-between;
}

.nk-blog-single__main {
    width: 63.794%;
    margin: 0 20px 0 0;
}

.nk-blog-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
}

.nk-blog-single__date-link,
.nk-blog-single__cat {
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
}

.nk-blog-single__title {
    color: #222;
    font-family: "Noto Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 160%;
    margin: 15px 0 0;
}

.nk-blog-single__eyecatch {
    aspect-ratio: 370/223;
    overflow: hidden;
    margin: 5px 0 0;
}

.nk-blog-single__eyecatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-blog-single__body p:not(.toc_title) {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 170%;
    margin: 20px 0 0;
}

.nk-blog-single__body h2 {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
    margin: 40px 0 0;
}

.nk-blog-single__body h3 {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    padding: 10px;
    background: #F7F7F7;
    margin: 40px 0 0;
}

.nk-blog-single__body h4 {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    position: relative;
    margin: 40px 0 0;
}

.nk-blog-single__body h4::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 111.12%;
    background: #000;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.nk-blog-single__body h5 {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    padding: 0 0 7px;
    position: relative;
    margin: 40px 0 0;
}

.nk-blog-single__body h5::before,
.nk-blog-single__body h5::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    left: 0;
}

.nk-blog-single__body h5::before {
    bottom: 4px;
}

.nk-blog-single__body h5::after {
    bottom: 0;
}

.nk-blog-single__body h6 {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    padding: 0 0 0 20px;
    position: relative;
    margin: 40px 0 0;
}

.nk-blog-single__body h6::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #000;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
}

.nk-blog-single__body ul:not(.toc_list) {
    list-style: disc;
    list-style-position: inside;
    margin: 20px 0 0;
}

.nk-blog-single__body ol {
    list-style: decimal;
    list-style-position: inside;
    margin: 20px 0 0;
}

.nk-blog-single__body li:not(.toc_list) li {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 170%;
}

.nk-blog-single__body a:not(.wp-block-button__link):not(.wp-element-button):not(.toc_list) li a {
    color: #5AC2D8;
    text-decoration: underline;
}

/* .nk-blog-single__btn {
    display: block;
    width: 100%;
    max-width: 430px;
    padding: 11px 0;
    border-radius: 10px;
    background: #FFEE06;
    color: #000;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 170%;
} */

.nk-blog-single__body .wp-block-button__link,
.nk-blog-single__body .wp-element-button {
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
}

.nk-blog-single__body img {
    margin: 20px 0 0;
}

.nk-blog-single__product {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    margin: 45px 0 50px;
}

.nk-blog-single__product-inner {
    display: flex;
    gap: 18px;
    padding: 22px 39px 24px 22px;
}

.nk-blog-single__product-img a {
    display: block;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}

.nk-blog-single__product-img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-blog-single__product-name a {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 170%;
    text-decoration: underline;
}

.nk-blog-single__product-cat {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 170%;
}

.nk-blog-single__product-desc {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
    margin: 6px 0 0;
}

.nk-blog-single__product-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    width: 208px;
    padding: 10px;
    border-radius: 6px;
    background: #FFEE06;
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    margin: 13px 0 0;
}

.nk-blog-single__product-btn img {
    display: block;
    width: 22.661px;
    height: 21.17px;
}

.nk-blog-single__nav {
    display: flex;
    margin: 60px 0 0;
    padding: 20px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.30);
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}

.nk-blog-single__nav-prev,
.nk-blog-single__nav-next {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nk-blog-single__nav-next {
    margin: 0 0 0 auto;
}

.nk-blog-single__nav-prev img,
.nk-blog-single__nav-next img {
    display: block;
    width: 28px;
    height: 28px;
}

.nk-blog-single__nav-text {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    margin: 2px 0 0;
}

.nk-blog-single__related {
    margin: 60px 0 0;
}

.nk-blog-single__related-title {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}

.nk-blog-single__related .nk-blog-archive__list {
    gap: 40px 3.7%;
    margin: 23px 0 0;
}

/* ========================================
   NewsArchive
======================================== */
.nk-news-archive {
    margin: 110px 0 0;
}

.nk-news-archive__heading {
    color: #000;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 200%;
}

.nk-news-archive__list {
    margin: 70px 0 0;
}

.nk-news-archive__item a {
    display: block;
    padding: 30px 0;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    gap: 80px;
}

.nk-news-archive__item:first-of-type a {
    border-top: 1px solid #D9D9D9;
}

.nk-news-archive__date-link {
    color: #888;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.6px;
}

.nk-news-archive__text {
    display: block;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
}

/* ========================================
   NewsSingle
======================================== */
.nk-news-single {
    margin: 85px 0 0;
}

.nk-news-single__meta {
    border-top: 1px solid #D9D9D9;
}

.nk-news-single__date {
    display: block;
    color: #888;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 27px 0 0;
}

.nk-news-single__title {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.2px;
    margin: 10px 0 0;
}

.nk-news-single__body {
    margin: 28px 0 0;
    padding: 0 0 50px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.nk-news-single__body p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    margin: 20px 0 0;
}

.nk-news-single__img {
    max-width: 740px;
    margin: 20px 0 0;
}

.nk-news-single__btn {
    display: block;
    width: 430px;
    padding: 11.5px 0;
    border-radius: 10px;
    background: #EDEDED;
    color: #000;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 170%;
    margin: 55px auto 0;
}

/* ========================================
   Pagination
======================================== */
.nk-pagination {
    margin: 90px 0 0;
}

.nk-pagination__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.nk-pagination__item .page-numbers {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 170%;
}

.nk-pagination__item .page-numbers.current {
    display: block;
    position: relative;
}

.nk-pagination__item .page-numbers.current::before {
    content: '';
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 1px solid #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========================================
   Sidebar
======================================== */
.nk-sidebar {
    width: 325px;
}

.nk-sidebar__block:not(:first-of-type) {
    margin: 45px 0 0;
}

.nk-sidebar__title {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 170%;
    border-bottom: 1px solid #000000;
}

.nk-sidebar__category-list {
    margin: 10px 0 0;
}

.nk-sidebar__category-item {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}

.nk-sidebar__category-item a {
    color: #222;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
}

.nk-sidebar__new-list {
    margin: 10px 0 0;
}

.nk-sidebar__new-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 15px 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}

.nk-sidebar__new-img {
    display: block;
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
}

.nk-sidebar__new-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-sidebar__new-text {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
}

.nk-sidebar__block .nk-tags {
    margin: 15px 0 0;
}

/* ========================================
   TOC
======================================== */
#toc_container {
    width: 565px !important;
    max-width: 100%;
    padding: 22px 33px 27px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    background: #F7F7F7;
    margin: 40px auto 0;
}

.toc_title {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 170%;
}

.toc_toggle .toc_brackets {
    color: #666;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
}

.toc_toggle a {
    color: #5AC2D8;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
}

.toc_list {
    margin: 12px 0 0;
}

.toc_list li a {
    color: #5AC2D8;
    font-family: "Noto Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    display: block;
    margin: 8px 0 0;
}

/* ========================================
   SP
======================================== */
@media (max-width: 768px) {
    /* Common */
    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }

    .nk-inner {
        width: 100%;
    }

    .nk-empty {
        font-size: 24px;
    }

    /* Header */
    .nk-header {
        width: 100%;
        padding: 14px 20px 14px 16px;
        background-color: #FFFFFF;
        align-items: center;
        position: relative;
        top: 0;
        left: 0;
        transform: translateX(0);
    }

    .nk-header__logo img {
        width: 173.725px;
        height: 32.215px;
        aspect-ratio: 173.72/32.21;
    }

    .nk-header__right {
        gap: 14px;
        margin: 0;
    }

    .nk-header-search__btn img,
    .nk-header-login__link img,
    .nk-header-cart__link img {
        width: 22px;
        height: 22px;
    }

    .nk-header-login__link img,
    .nk-header-cart__link img {
        margin: 0 0 2px;
    }

    .nk-header-search__form {
        padding: 0 0 6px;
    }

    .nk-header-search-sp {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        background-color: #FFFFFF;
        padding: 0 20px;
        z-index: 300;
    }

    .nk-header-search-sp.is-open {
        opacity: 1;
        visibility: visible;
    }

    .nk-header-search-sp__form {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 7px 13px 7px;
        margin: 9px 0 0;
        border-bottom: 1px solid #5F5F5F;
    }

    .nk-header-search-sp__btn {
        padding: 0;
        border: 0;
        background-color: transparent;
        width: 22px;
        height: 25px;
        margin: 1px 0 0;
    }

    .nk-header-search-sp__field {
        width: 100%;
        color: #000000;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: normal;
        padding: 0;
        border: none;
        background-color: transparent;
    }

    .nk-header-search-sp__field::placeholder {
        color: #747474;
    }

    .nk-header-search-sp__field:focus {
        outline: none;
        box-shadow: none;
    }

    .nk-header__hamburger {
        margin: 5px 0 0;
    }

    .nk-header-hamburger__btn {
        width: 33px;
        height: 13px;
    }

    .nk-header-hamburger__btn::before,
    .nk-header-hamburger__btn::after {
        height: 1px;
        transition: transform 0.3s ease;
    }

    .nk-header-hamburger__btn.is-open::before {
        transform: translateY(-50%) rotate(45deg);
        top: 50%;
    }

    .nk-header-hamburger__btn.is-open::after {
        transform: translateY(-50%) rotate(-45deg);
        top: 50%;
        bottom: auto;
    }

    /* アコーディオンメニュー */
    .nk-header-accordion {
        top: 60px;
        right: 0;
        width: 100%;
        height: auto;
    }

    .nk-header-accordion__inner {
        padding: 15px 20px 40px;
    }

    .nk-header-accordion__close {
        display: none;
    }

    .nk-header-accordion__top {
        display: none;
    }

    .nk-header-accordion__content {
        display: none;
    }

    .nk-header-accordion__sp {
        width: 67.165%;
        max-width: 100%;
        margin: 0 0 0 auto;
        display: block;
    }

    .nk-header-accordion__sp-item {
        padding: 10px 0;
        border-bottom: 1px solid #000;
    }

    .nk-header-accordion__sp-item:first-of-type {
        padding: 0 0 10px;
        border-bottom: 1px solid #000;
    }

    .nk-header-accordion__sp-btn {
        color: #000;
        font-family: Helvetica;
        font-size: 16px;
        font-weight: 800;
        line-height: normal;
        letter-spacing: 0.8px;
        border: none;
        background-color: transparent;
        padding: 0;
    }

    .nk-header-accordion__sp-panel {
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nk-header-accordion__panel-list {
        margin: 10px 0 0;
        padding: 10px 7px 5px;
        grid-template-columns: 1fr;
        gap: 10.5px;
        border-top: 1px solid #000;
    }

    .nk-header-accordion__panel-list li a {
        color: #888888;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 700;
        line-height: 1.5;
        padding: 0 0 0 15px;
    }

    .nk-header-accordion__panel-list li a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='12' viewBox='0 0 9 12' fill='none'%3E%3Cpath d='M0.75 10.8406L7.8134 5.79535L0.75 0.750064' stroke='%23888888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        width: 9px;
        height: 12px;
    }

    .nk-accordion-topics__list {
        gap: 8px;
        margin: 10px 0 0;
        padding: 10px 0 5px;
        border-top: 1px solid #000;
    }

    .nk-accordion-topics__item {
        width: 100px;
        height: 95px;
    }

    .nk-header-accordion__bottom {
        width: 67.165%;
        max-width: 100%;
        margin: 30px 0 0 auto;
        display: block;
    }

    .nk-header-accordion__coupon,
    .nk-header-accordion__point {
        width: 100%;
    }

    .nk-header-accordion__point {
        margin: 20px 0 0;
    }

    /* Footer */
    .nk-footer {
        margin: 50px 0 0;
    }

    .nk-footer__inner {
        width: 100%;
        padding: 45px 20px;
    }

    .nk-footer__logo {
        width: 160px;
    }

    .nk-footer__nav-wrap {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin: 55px 0 0;
    }

    .nk-footer__left {
        width: 155px;
        width: 46.27%;
    }

    .nk-footer__panel-title {
        font-size: 12px;
        padding: 0 0 10px;
    }

    .nk-footer__panel-list {
        margin: 15px 0 0;
        gap: 11px;
        padding: 0;
    }

    .nk-footer__panel-list li a {
        font-size: 12px;
        letter-spacing: 0.6px;
        padding: 0 0 0 10px;
    }

    .nk-footer__panel-list li a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='11' viewBox='0 0 8 11' fill='none'%3E%3Cpath d='M0.5 10.5L7.5 5.5L0.5 0.5' stroke='%234A4A4A' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        width: 9px;
        height: 7px;
    }

    .nk-footer-topics__list {
        gap: 8px;
        margin: 15px 0 0;
        padding: 0 0 5px;
    }

    .nk-footer-topics__item {
        width: 100px;
        height: 95px;
    }

    .nk-footer__right {
        width: 154px;
        width: 45.974%;
    }

    .nk-footer__nav {
        margin: -8px 0 0;
    }

    .nk-footer__nav-item {
        padding: 0 0 10px;
    }

    .nk-footer__nav-item:not(:first-of-type) {
        margin: 10px 0 0;
    }

    .nk-footer__nav-item:last-of-type {
        padding: 0 0 10px;
        margin: 10px 0 0;
    }

    .nk-footer__nav-btn {
        font-size: 12px;
        letter-spacing: 0.6px;
    }

    .nk-footer__nav-link {
        font-size: 12px;
        letter-spacing: 0.6px;
    }

    .nk-footer__bottom-inner {
        width: 100%;
        padding: 9px 20px 10px;
        display: block;
    }

    .nk-footer__bottom-list {
        gap: 15px;
    }

    .nk-footer__bottom-item:not(:last-of-type)::before {
        right: -7px;
        transform: translateY(-35%);
    }

    .nk-footer__bottom-item a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .nk-footer__copyright {
        font-size: 10px;
        text-align: right;
        margin: 9px 0 0;
    }

    /* SubMV */
    .nk-sub-mv {
        margin: 14px 0 0;
    }

    .nk-sub-mv__inner {
        padding: 31px 0 23px;
        border-bottom: 6px solid #00CCCC;
    }

    .nk-sub-mv__en {
        font-size: 10px;
    }

    .nk-sub-mv__title {
        font-size: 20px;
        margin: 2px 0 0;
    }

    /* Breadcrumb */
    .nk-breadcrumb {
        width: 100%;
        margin: 0 auto;
    }

    /* BlogArchive */
    .nk-blog-archive {
        margin: 40px 0 0;
    }

    .nk-blog-archive__heading {
        font-size: 24px;
    }

    .nk-blog-archive__content {
        display: block;
    }

    .nk-blog-archive__main {
        width: 100%;
        margin: 0;
    }

    .nk-blog-archive__list {
        display: block;
    }

    .nk-blog-archive__item {
        margin: 30px 0 0;
    }

    .nk-blog-archive__item:first-of-type {
        margin: 45px 0 0;
    }

    .nk-blog-archive__img a {
        max-width: 100%;
        aspect-ratio: 267/161;
    }

    .nk-blog-archive__body {
        margin: 10px 0 0;
    }

    .nk-blog-archive__title a {
        font-size: 16px;
    }

    /* Pagination */
    .nk-pagination {
        margin: 30px 0 0;
    }

    .nk-pagination__item .page-numbers {
        font-size: 14px;
    }

    /* Sidebar */
    .nk-sidebar {
        width: 100%;
    }

    .nk-sidebar__block {
        margin: 40px 0 0;
    }

    .nk-sidebar__block:not(:first-of-type) {
        margin: 40px 0 0;
    }

    .nk-sidebar__category-list {
        margin: 5px 0 0;
    }

    .nk-sidebar__category-item a {
        font-size: 14px;
    }

    .nk-sidebar__new-link {
        gap: 25px;
        padding: 20px 25px 20px 0;
    }

    .nk-sidebar__new-img {
        width: 70px;
        height: 70px;
    }

    .nk-sidebar__new-text {
        font-size: 14px;
    }

    /* BlogSingle */
    .nk-blog-single {
        margin: 35px 0 0;
    }

    .nk-blog-single__content {
        display: block;
    }

    .nk-blog-single__main {
        width: 100%;
        margin: 0;
    }

    .nk-blog-single__meta {
        gap: 0 8px;
    }

    .nk-blog-single__date-link,
    .nk-blog-single__cat {
        font-size: 12px;
    }

    .nk-blog-single__title {
        font-size: 22px;
        margin: 10px 0 0;
    }

    .nk-blog-single__eyecatch {
        aspect-ratio: 267/161;
        margin: 10px 0 0;
    }

    .nk-blog-single__body p {
        font-size: 16px;
    }

    .nk-blog-single__body h2 {
        font-size: 20px;
    }

    .nk-blog-single__body h3 {
        font-size: 18px;
        padding: 10px 15px;
    }

    .nk-blog-single__body h5 {
        font-size: 16px;
        padding: 0 0 8px;
        position: relative;
    }

    .nk-blog-single__body h5::before {
        bottom: 3px;
    }

    .nk-blog-single__body li {
        font-size: 16px;
    }

    .nk-blog-single__btn {
        max-width: 100%;
        padding: 14px 0;
        border-radius: 6px;
        font-size: 14px;
    }

    .nk-blog-single__product {
        margin: 50px 0 30px;
    }

    .nk-blog-single__product-inner {
        padding: 21px 25px 25px 22px;
    }

    .nk-blog-single__product-top {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .nk-blog-single__product-img a {
        width: 110px;
        height: 110px;
    }

    .nk-blog-single__product-name a {
        font-size: 14px;
    }

    .nk-blog-single__product-cat {
        font-size: 12px;
        margin: 15px 0 0;
    }

    .nk-blog-single__product-desc {
        font-size: 12px;
        margin: 3px 0 0;
    }

    .nk-blog-single__product-btn {
        width: 100%;
        align-items: flex-end;
    }

    .nk-blog-single__product-btn img {
        margin: 0 0 1px;
    }

    .nk-blog-single__nav {
        margin: 30px 0 0;
        padding: 20px 0;
    }

    .nk-blog-single__related {
        margin: 52px 0 60px;
    }

    .nk-blog-single__related-title {
        font-size: 20px;
        text-align: center;
    }

    .nk-blog-single__related .nk-blog-archive__list {
        margin: 0;
    }

    .nk-blog-single__related .nk-blog-archive__item:first-of-type {
        margin: 30px 0 0;
    }

    /* NewsArchive */
    .nk-news-archive {
        margin: 30px 0 0;
    }

    .nk-news-archive__heading {
        font-size: 20px;
    }

    .nk-news-archive__list {
        margin: 20px 0 0;
    }

    .nk-news-archive__item a {
        padding: 15px 0;
        display: block;
    }

    .nk-news-archive__date-link {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .nk-news-archive__text {
        font-size: 14px;
        letter-spacing: 1.4px;
        margin: 5px 0 0;
    }

    /* NewsSingle */
    .nk-news-single {
        margin: 50px 0 0;
    }

    .nk-news-single__date {
        font-size: 14px;
        letter-spacing: 1.4px;
        margin: 15px 0 0;
    }

    .nk-news-single__title {
        font-size: 20px;
        letter-spacing: 2px;
        margin: 5px 0 0;
    }

    .nk-news-single__body {
        margin: 15px 0 0;
        padding: 0 0 30px;
    }

    .nk-news-single__body p {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .nk-news-single__img {
        max-width: 100%;
    }

    .nk-news-single__btn {
        width: 100%;
        padding: 13px 0;
        font-size: 14px;
        margin: 40px auto 0;
    }

    /* TOC */
    #toc_container {
        width: 100% !important;
        padding: 23px 21px 31px;
        margin: 20px auto 0;
    }

    .toc_title {
        font-size: 16px;
    }

    .toc_list li a {
        font-size: 16px;
        margin: 6px 0 0;
    }
}