/*
Theme Name: Treats Factory
Description: ペットフードとおやつのオンラインショップ用テーマ
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
Text Domain: treatsfactory
*/

@charset "UTF-8";

:root {
    --primary: #fcf9f2;
    --secondary: #fff;
    --text-color: #2f2f2e;
    --text-color-secondary: #de3c21;
    --font-family-base: "Zen Kaku Gothic New", sans-serif;
    --font-number: "Outfit", sans-serif;
    --container-width: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-weight: 500;
    font-family: var(--font-family-base);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--primary);
    overflow-x: hidden;
}

.number {
    font-family: var(--font-number);
}

.row:before,
.row:after,
.grid_row:before,
.grid_row:after {
    display: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--text-color) !important;
    position: relative;
}

.btn:hover {
    opacity: 0.6;
}

.txt--c {
    text-align: center;
}

.txt--lg {
    font-size: 1.2em;
}

.txt--red {
    color: var(--text-color-secondary);
}

.mar-b--0 {
    margin-bottom: 0;
}

.mar-b--60 {
    margin-bottom: 60px;
}

.pc {
    display: block;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .sp {
        display: block;
    }
}

/*============================
#header
============================*/
header#header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: var(--primary);
}

header#header .header__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 35px 0 25px;
}

@media (max-width: 767px) {
    header#header .header__inner {
        max-width: 100%;
        padding: 25px 0 0;
    }
}

header#header .header__inner .header__upper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 767px) {
    header#header .header__inner .header__upper {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

header#header .header__inner .header__upper .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    header#header .header__inner .header__upper .header__logo {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
}

header#header .header__inner .header__upper .header__tools .header-tools__list {
    display: flex;
    gap: 30px;
    align-items: center;
}

header#header .header__inner .header__upper .header__tools .header-tools__unit-cart {
    position: relative;
}

header#header .header__inner .header__upper .header__tools .header-tools__unit-cart .header-tools__count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--text-color);
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .menu-list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 50px;
}

nav .menu-list-item {
    padding: 10px 0;
    font-size: 16px;
}

nav .menu-list-item .menu-list__link {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

nav .menu-list-item .menu-list__link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav .menu-list-item .menu-list__link:hover::after,
nav .menu-list-item .menu-list__link:focus-visible::after {
    width: 100%;
}

nav .menu-list-item--has-sub {
    position: relative;
}

nav .menu-list-item--has-sub:hover .menu-list__mega,
nav .menu-list-item--has-sub:focus-within .menu-list__mega,
nav .menu-list-item--has-sub .menu-list__mega:hover,
nav .menu-list-item--has-sub .menu-list__mega:focus-within {
    display: block;
}

nav .menu-list__mega {
    display: none;
    position: absolute;
    left: -22px;
    top: 55px;
    width: 1140px;
    max-width: var(--container-width);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 24px 32px;
    z-index: 100;
    border-radius: 12px;
}

@media (max-width: 767px) {
    nav .menu-list__mega {
        max-width: 100%;
    }
}

nav .menu-list__mega::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 70px;
    background: #ffffff;
    height: 17.3205080757px;
    width: 25px;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    z-index: 1;
}

nav .menu-list__mega::after {
    content: "";
    position: absolute;
    top: -16px;
    left: 74px;
    background: rgba(0, 0, 0, 0.2);
    height: 17.3205080757px;
    width: 25px;
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    z-index: -1;
    filter: blur(30px);
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega {
    left: -190px;
    width: 870px;
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega::before {
    left: 245px;
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega::after {
    left: 249px;
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega .subcategory-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega .subcategory-list .subcategory-list__unit {
    width: 24%;
    padding: 0 10px;
    margin-bottom: 20px;
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega .subcategory-list .subcategory-list__unit .menu-list__link {
    display: block;
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega .subcategory-list .subcategory-list__unit .menu-list__link .menu-list__text {
    font-size: 18px;
    font-weight: bold;
}

nav .menu-list-item--has-sub:nth-child(2) .menu-list__mega .subcategory-list .subcategory-list__unit .menu-list__link .menu-list__text .subcategory-list__unit-text {
    font-size: 14px;
    font-weight: normal;
    display: block;
}

nav .menu-list-item--has-sub:nth-child(3) .menu-list__mega {
    left: -345px;
    width: 770px;
}

nav .menu-list-item--has-sub:nth-child(3) .menu-list__mega::before {
    left: 380px;
}

nav .menu-list-item--has-sub:nth-child(3) .menu-list__mega::after {
    left: 384px;
}

nav .menu-list-item--has-sub:nth-child(4) .menu-list__mega {
    left: -200px;
    width: 600px;
}

nav .menu-list-item--has-sub:nth-child(4) .menu-list__mega::before {
    left: 270px;
}

nav .menu-list-item--has-sub:nth-child(4) .menu-list__mega::after {
    left: 274px;
}

nav .menu-list-item--has-sub:nth-child(4) .menu-list__mega .mega-menu {
    justify-content: center;
}

nav .menu-list-item--has-sub:nth-child(5) .menu-list__mega {
    left: -365px;
    width: 730px;
}

nav .menu-list-item--has-sub:nth-child(5) .menu-list__mega::before {
    left: 403px;
}

nav .menu-list-item--has-sub:nth-child(5) .menu-list__mega::after {
    left: 407px;
}

nav .menu-list-item--has-sub:nth-child(6) .menu-list__mega {
    right: -100px;
    left: auto;
    width: 700px;
}

nav .menu-list-item--has-sub:nth-child(6) .menu-list__mega::before {
    right: 130px;
    left: auto;
}

nav .menu-list-item--has-sub:nth-child(6) .menu-list__mega::after {
    right: 134px;
    left: auto;
}

nav .mega-menu {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

nav .mega-menu__title {
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

nav .mega-menu__title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav .mega-menu__title:hover::after,
nav .mega-menu__title:focus-visible::after {
    width: 100%;
}

nav .subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

nav .mega-menu__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav .mega-menu__col li {
    margin-bottom: 4px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: bold;
}

nav .mega-menu__col li .menu-list__link {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

nav .mega-menu__col li .menu-list__link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav .mega-menu__col li .menu-list__link:hover::after,
nav .mega-menu__col li .menu-list__link:focus-visible::after {
    width: 100%;
}

nav .mega-menu__col li.no-list {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

nav .mega-menu__col li.no-list a {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

nav .mega-menu__col li.no-list a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav .mega-menu__col li.no-list a:hover::after,
nav .mega-menu__col li.no-list a:focus-visible::after {
    width: 100%;
}

.account-menu {
    position: relative;
    display: inline-block;
}

.account-menu .account-menu__icon {
    display: block;
    cursor: pointer;
}

.account-menu .account-popup {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 24px 28px 20px 28px;
    z-index: 100;
    text-align: left;
    transition: opacity 0.2s, visibility 0.2s;
}

.account-menu .account-popup::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 12px;
    background: transparent;
    pointer-events: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #fff;
}

.account-menu .account-popup .account-popup__link {
    display: block;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.account-menu .account-popup .account-popup__link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.account-menu .account-popup .account-popup__link:hover::after,
.account-menu .account-popup .account-popup__link:focus-visible::after {
    width: 100%;
}

.account-menu .account-popup .account-popup__link:last-child {
    margin-bottom: 0;
}

.account-menu.is-open .account-popup {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*============================
サイト内検索
============================*/
.header-search-wrap {
    display: flex;
    align-items: center;
    position: relative;
    transform: translateY(1px);
}

.header-search-wrap .header-search__icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.header-search-wrap .header-search__icon img {
    width: 20px;
    height: 20px;
}

.header-search-wrap .header-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding: 0 18px;
    height: 44px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%) scaleX(0.7);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1;
}

.header-search-wrap .header-search.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scaleX(1);
}

.header-search-wrap .header-search .header-search__box {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    width: 160px;
    padding: 10px 0;
}

/*============================
スマホ版メニュー
============================*/
.mobile-menu {
    display: none;
}

@media (max-width: 767px) {
    .mobile-menu {
        display: block;
        position: relative;
    }
}

.mobile-menu .mobile-menu__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.mobile-menu .mobile-menu__toggle .mobile-menu__toggle-icon {
    width: 20px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    transition: transform 0.3s;
}

.mobile-menu .mobile-menu__toggle .mobile-menu__toggle-icon::before,
.mobile-menu .mobile-menu__toggle .mobile-menu__toggle-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-color);
    transition: transform 0.3s;
}

.mobile-menu .mobile-menu__toggle .mobile-menu__toggle-icon::before {
    top: -6px;
}

.mobile-menu .mobile-menu__toggle .mobile-menu__toggle-icon::after {
    bottom: -6px;
}

.mobile-menu .mobile-menu__toggle.is-active .mobile-menu__toggle-icon {
    background: transparent;
}

.mobile-menu .mobile-menu__toggle.is-active .mobile-menu__toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu .mobile-menu__toggle.is-active .mobile-menu__toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-menu .mobile-menu__content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu .mobile-menu__content.is-active {
    display: block;
}

.mobile-menu .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-menu-item.mobile-menu-item--has-sub .mobile-menu__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
    transition: background-color 0.2s;
}

.mobile-menu .mobile-menu-item.mobile-menu-item--has-sub .mobile-menu__button:hover {
    background: #f8f8f8;
}

.mobile-menu .mobile-menu-item.mobile-menu-item--has-sub .mobile-menu__button .mobile-menu__arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.mobile-menu .mobile-menu-item.mobile-menu-item--has-sub .mobile-menu__button[aria-expanded=true] .mobile-menu__arrow {
    transform: rotate(-135deg);
}

.mobile-menu .mobile-menu-item .mobile-menu__link {
    display: block;
    padding: 16px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.mobile-menu .mobile-menu-item .mobile-menu__link:hover {
    background: #f8f8f8;
}

.mobile-menu .mobile-menu__submenu {
    display: none;
    background: #f8f8f8;
}

.mobile-menu .mobile-menu__submenu.is-active {
    display: block;
}

.mobile-menu .mobile-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .mobile-submenu-item {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu .mobile-submenu-item:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-submenu-item.mobile-submenu-item--has-sub .mobile-submenu__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 12px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
    transition: background-color 0.2s;
}

.mobile-menu .mobile-submenu-item.mobile-submenu-item--has-sub .mobile-submenu__button:hover {
    background: #f0f0f0;
}

.mobile-menu .mobile-submenu-item.mobile-submenu-item--has-sub .mobile-submenu__button .mobile-submenu__arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.mobile-menu .mobile-submenu-item.mobile-submenu-item--has-sub .mobile-submenu__button[aria-expanded=true] .mobile-submenu__arrow {
    transform: rotate(-135deg);
}

.mobile-menu .mobile-submenu-item a {
    display: block;
    padding: 12px 16px 12px 32px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    transition: background-color 0.2s;
}

.mobile-menu .mobile-submenu-item a:hover {
    background: #f0f0f0;
}

.mobile-menu .mobile-submenu__content {
    display: none;
    background: #fff;
}

.mobile-menu .mobile-submenu__content.is-active {
    display: block;
}

.mobile-menu .mobile-submenu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .mobile-submenu__list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .mobile-submenu__list li:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-submenu__list li a {
    display: block;
    padding: 10px 16px 10px 48px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 13px;
    transition: background-color 0.2s;
}

.mobile-menu .mobile-submenu__list li a:hover {
    background: #f8f8f8;
}

@media (max-width: 767px) {
    nav:not(.mobile-menu) {
        display: none;
    }
}

div.breadcrumb {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 24px 0;
}

@media (max-width: 767px) {
    div.breadcrumb {
        max-width: 100%;
        padding: 20px;
    }
}

div.breadcrumb ul.breadcrumb-list.inline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

div.breadcrumb ul.breadcrumb-list.inline li.breadcrumb-list__unit a {
    font-size: 14px;
}

@media (max-width: 767px) {
    div.breadcrumb ul.breadcrumb-list.inline li.breadcrumb-list__unit a {
        font-size: 10px;
    }
}

.swiper {
    width: 100%;
    padding: 40px 0 24px;
    box-sizing: border-box;
    position: relative;
}

.swiper .swiper-slide {
    width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.swiper .swiper-slide img {
    width: 100%;
    display: block;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.swiper .swiper-button-prev img,
.swiper .swiper-button-next img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper .swiper-button-prev {
    left: 23.5%;
}

@media (max-width: 767px) {
    .swiper .swiper-button-prev {
        left: 3.5%;
    }
}

.swiper .swiper-button-next {
    right: 23.5%;
}

@media (max-width: 767px) {
    .swiper .swiper-button-next {
        right: 3.5%;
    }
}

.swiper .swiper-pagination {
    position: static;
    margin-top: 20px;
    text-align: center;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
    background: #bbb;
    opacity: 1;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #333;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: none !important;
    display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 12px) !important;
}

main {
    padding-top: 180px;
}

@media (max-width: 767px) {
    main {
        padding-top: 200px;
    }
}

.main-content__wrapper {
    position: relative;
}

.main-content__wrapper .main-content__product-detail-bg {
    position: absolute;
    top: 400px;
    left: 0;
    width: 100%;
    height: 310px;
    background: url(https://file001.shop-pro.jp/PA01084/901/treatsfactory/img/img_bg_footprint01.png) repeat-x top left/contain;
}

.main-content__wrapper .main-content__product-detail-bg.bg-top {
    top: 0;
}

.main-content__wrapper .main-content__product-detail-bg-2 {
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 70%;
    height: 384px;
    background: url(https://file001.shop-pro.jp/PA01084/901/treatsfactory/img/img_bg_footprint02.png) no-repeat center right/cover;
}

.main-content {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

@media (max-width: 767px) {
    .main-content {
        max-width: 100%;
        padding: 40px 20px;
    }
}

.main-content02 {
    padding: 0px 0;
}

.news__wrapper {
    width: 100%;
    margin: 0 auto 128px;
    background: transparent;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
}

@media (max-width: 767px) {
    .news__wrapper {
        width: calc(100% - 40px);
        margin: 0 20px 64px;
    }
}

@media (max-width: 767px) {
    .news__wrapper.top-news__wrapper {
        width: 100%;
        margin: 0 0px 64px;
    }
}

.news-box {
    display: flex;
    align-items: center;
    font-size: 14px;
}

@media (max-width: 767px) {
    .news-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

.news-box__date {
    color: var(--text-color);
    margin-right: 18px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    font-family: var(--font-number);
}

.news-box__title {
    color: var(--text-color);
    flex: 1;
}

.section-block {
    margin: 0 0 128px;
}

@media (max-width: 767px) {
    .section-block {
        margin: 0 0 64px;
    }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

.section-header .section-title {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    flex: 1;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .section-header .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

.section-header .section-link {
    position: absolute !important;
    right: 0;
    top: 23px;
    font-size: 14px;
    color: var(--text-color);
    transition: opacity 0.2s;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.section-header .section-link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header .section-link:hover::after,
.section-header .section-link:focus-visible::after {
    width: 100%;
}

@media (max-width: 767px) {
    .section-header .section-link {
        top: 12px;
        font-size: 12px;
    }
}

.section-header .section-link span {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

/* 特集 */
.feature-wrapper {
    background: #fff;
    position: relative;
}

.feature-wrapper .feature-inner {
    max-width: 1140px;
    margin: 48px auto 0;
    border-radius: 16px;
    padding: 40px 32px;
}

@media (max-width: 767px) {
    .feature-wrapper .feature-inner {
        max-width: 100%;
    }
}

.feature-wrapper .section-header {
    margin-bottom: 32px;
}

.feature-wrapper .feature-list {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .feature-wrapper .feature-list {
        gap: 20px;
        flex-direction: column;
    }
}

.feature-wrapper .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-color);
    width: 49%;
    transition: box-shadow 0.2s;
    padding: 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .feature-wrapper .feature-item {
        width: 100%;
        flex-direction: column;
    }
}

.feature-wrapper .feature-item .feature-item__img {
    width: 50%;
}

@media (max-width: 767px) {
    .feature-wrapper .feature-item .feature-item__img {
        width: 100%;
    }
}

.feature-wrapper .feature-item .feature-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    margin-right: 24px;
    background: #eee;
    display: block;
}

.feature-wrapper .feature-item .feature-item__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    width: 48%;
}

@media (max-width: 767px) {
    .feature-wrapper .feature-item .feature-item__body {
        width: 100%;
    }
}

.feature-wrapper .feature-item .feature-item__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-wrapper .feature-item .feature-item__desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.25;
}

.feature-wrapper .feature-item .feature-item__date {
    font-size: 13px;
    color: var(--text-color);
    margin-top: auto;
    font-family: var(--font-number);
}

.onlineshop__wrapper {
    text-align: center;
    margin: 0px 0 128px;
}

@media (max-width: 767px) {
    .onlineshop__wrapper {
        padding: 0 20px;
    }
}

.onlineshop__wrapper .onlineshop__title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 64px;
    letter-spacing: 0.1em;
}

@media (max-width: 767px) {
    .onlineshop__wrapper .onlineshop__title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

.onlineshop__wrapper .onlineshop__list {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .onlineshop__wrapper .onlineshop__list {
        gap: 20px;
    }
}

.onlineshop__wrapper .onlineshop__item {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 18px 32px;
    transition: box-shadow 0.2s;
    width: 23%;
    opacity: 1;
    transition: opacity 0.2s;
}

.onlineshop__wrapper .onlineshop__item:hover {
    opacity: 0.6;
}

@media (max-width: 767px) {
    .onlineshop__wrapper .onlineshop__item {
        width: 46%;
    }
}

.onlineshop__wrapper .onlineshop__item img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.brand__wrapper {
    text-align: center;
    margin: 0px 0 128px;
}

@media (max-width: 767px) {
    .brand__wrapper {
        padding: 0 20px;
    }
}

.brand__wrapper .brand__title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 32px;
    letter-spacing: 0.1em;
}

@media (max-width: 767px) {
    .brand__wrapper .brand__title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

.brand__wrapper .brand__list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .brand__wrapper .brand__list {
        gap: 20px;
    }
}

.brand__wrapper .brand__item {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 14px 24px;
    transition: box-shadow 0.2s;
    width: 14%;
    opacity: 1;
    transition: opacity 0.2s;
}

.brand__wrapper .brand__item:hover {
    opacity: 0.6;
}

@media (max-width: 767px) {
    .brand__wrapper .brand__item {
        width: 46%;
    }
}

.brand__wrapper .brand__item img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.brand__wrapper .brand__note {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .brand__wrapper .brand__note {
        font-size: 14px;
        text-align: left;
    }
}

.news-top__wrapper .section-header .section-title {
    font-size: 30px;
}

@media (max-width: 767px) {
    .news-top__wrapper .section-header .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

.news-top__wrapper .news-box:not(:last-child) {
    margin-bottom: 24px;
}

.access__wrapper {
    max-width: 1140px;
    margin: 64px auto 80px;
    background: transparent;
    padding: 0 0 40px 0;
}

@media (max-width: 767px) {
    .access__wrapper {
        max-width: 100%;
        margin: 0 20px 64px;
    }
}

.access__wrapper .access-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 767px) {
    .access__wrapper .access-inner {
        flex-direction: column;
        align-items: center;
    }
}

.access__wrapper .access-map {
    flex: 0 0 480px;
}

@media (max-width: 767px) {
    .access__wrapper .access-map {
        flex: 0 0 100%;
    }
}

.access__wrapper .access-map iframe {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    border: 0;
    display: block;
}

.access__wrapper .access-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
    color: var(--text-color);
}

.access__wrapper .access-info .access-info__block {
    margin-bottom: 24px;
}

.access__wrapper .access-info .access-info__label {
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 14px;
}

.access__wrapper .access-info .access-info__text {
    font-size: 14px;
    line-height: 1.7;
    word-break: break-all;
}

.product-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 767px) {
    .product-list {
        gap: 25px;
        justify-content: space-between;
    }
}

.product-list .product-list__unit {
    width: 18%;
    text-align: left;
    background: none;
    position: relative;
}

@media (max-width: 767px) {
    .product-list .product-list__unit {
        width: 46%;
    }
}

.product-list .product-list__unit .product-list__img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 200px;
    border-radius: 15px;
    padding: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .product-list .product-list__unit .product-list__img {
        height: 155px;
    }
}

.product-list .product-list__unit .product-list__img img {
    width: auto;
    height: auto;
    transition: all 0.2s;
}

.product-list .product-list__unit .product-list__img:hover img {
    transform: scale(1.2);
}

.product-list .product-list__unit img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #f5f5f5;
}

.product-list .product-list__unit .product-link {
    display: block;
    opacity: 1;
    transition: opacity 0.2s;
}

.product-list .product-list__unit .product-link:hover {
    opacity: 0.6;
}

.product-list .product-list__unit .product-link .product-list__img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 200px;
    border-radius: 15px;
    padding: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .product-list .product-list__unit .product-link .product-list__img {
        height: 155px;
    }
}

.product-list .product-list__unit .product-link .product-list__img img {
    width: auto;
    height: auto;
    transition: all 0.2s;
}

.product-list .product-list__unit .product-link .product-list__img:hover img {
    transform: scale(1.2);
}

.product-list .product-list__unit .product-list__name {
    font-size: 14px;
    text-align: left;
    margin-bottom: 2px;
    color: var(--text-color);
}

.product-list .product-list__unit .product-list__price {
    font-size: 16px;
    text-align: left;
    color: var(--text-color);
    font-weight: bold;
    font-family: var(--font-number);
}

.product-list .product-list__unit .new-badge {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-image: url("https://file001.shop-pro.jp/PA01084/901/treatsfactory/img/icon_new.png");
}

.product-list .product-list__unit .ranking-badge {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.product-list .product-list__unit:nth-child(1) .ranking-badge {
    background-image: url("https://file001.shop-pro.jp/PA01084/901/treatsfactory/img/crown_gold.png");
}

.product-list .product-list__unit:nth-child(2) .ranking-badge {
    background-image: url("https://file001.shop-pro.jp/PA01084/901/treatsfactory/img/crown_silver.png");
}

.product-list .product-list__unit:nth-child(3) .ranking-badge {
    background-image: url("https://file001.shop-pro.jp/PA01084/901/treatsfactory/img/crown_bronze.png");
}

.product-list .product-list__unit:nth-child(4) .ranking-badge {
    background: #5a5a5a;
    border-radius: 50%;
}

.product-list .product-list__unit:nth-child(4) .ranking-badge::after {
    content: "4";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    font-family: var(--font-number);
}

.product-list .product-list__unit:nth-child(5) .ranking-badge {
    background: #5a5a5a;
    border-radius: 50%;
}

.product-list .product-list__unit:nth-child(5) .ranking-badge::after {
    content: "5";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    font-family: var(--font-number);
}

/* 商品リスト */
.main-content__product-list .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.1em;
    flex: 1;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .main-content__product-list .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

.main-content__product-list .product-list__wrapper .section-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
}

.main-content__product-list .product-list__wrapper .sort__section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
}

.main-content__product-list .product-list__wrapper .sort__section .sort__sub-layer {
    background: transparent;
    border: 0;
    text-align: right;
    width: -moz-fit-content;
    width: fit-content;
}

.main-content__product-list .product-list__wrapper .product-list {
    margin-bottom: 75px;
}

div.sub-cat-list__wrapper {
    margin-bottom: 96px;
}

ul.sub-cat-list {
    display: flex;
    justify-content: center;
    gap: 57px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 767px) {
    ul.sub-cat-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 32px;
    }
}

ul.sub-cat-list li.sub-cat-list__unit a.sub-cat-list__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    transition: opacity 0.2s;
}

ul.sub-cat-list li.sub-cat-list__unit a.sub-cat-list__link:hover {
    opacity: 0.6;
}

ul.sub-cat-list li.sub-cat-list__unit a.sub-cat-list__link span.sub-cat-list__text {
    font-size: 15px;
    line-height: 1.15;
}

.sub-cat-brand__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 24px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .sub-cat-brand__list {
        gap: 10px 0;
    }
}

@media (max-width: 767px) {
    .sub-cat-brand__list .brand__item {
        width: 48%;
    }

    .sub-cat-brand__list .brand__item img {
        width: 100%;
    }
}

.brand__note {
    text-align: center;
    font-size: 14px;
}

.pulldown-select {
    width: 130px;
    list-style: none;
    padding: 0;
    /* border: 1px solid #b2b2b2; */
    border-radius: 5px;
    /* background: #fff; */
    position: relative;
    font-size: 14px;
}

.pulldown-select>li {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.pulldown-select>li .selected-value {
    padding: 12px 40px 12px 16px;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.pulldown-select>li .selected-value::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #2f2f2e;
    border-right: solid 2px #2f2f2e;
    position: absolute;
    right: 18px;
    top: 37%;
    transform: translate(-50%) rotate(135deg);
}

.pulldown-select>li .pulldown-list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #d3d3d3;
    /* border: 1px solid #b2b2b2; */
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pulldown-select>li .pulldown-list li a {
    display: block;
}

.pulldown-select>li.open .pulldown-list {
    display: block;
}

.pulldown-select>li .pulldown-list li {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pulldown-select>li .pulldown-list li:hover {
    background: #eee;
}

.pulldown-select>li .pulldown-list li:hover a {
    color: #fff;
}

.pulldown-select>li .pulldown-list li.active a {
    color: var(--text-color);
}

div.row.product-detail__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

@media (max-width: 767px) {
    div.row.product-detail__wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

div.row.product-detail__wrapper div.product__image {
    width: 500px;
}

@media (max-width: 768px) {
    div.row.product-detail__wrapper div.product__image {
        width: 100%;
    }
}

div.row.product-detail__wrapper div.product__image div.product__image-main {
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    div.row.product-detail__wrapper div.product__image div.product__image-main {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    div.row.product-detail__wrapper div.product__image div.product__image-thumb ul.image-thumb-list.row li.image-thumb-list__unit img.image-thumb {
        max-height: 50px !important;
    }
}

div.row.product-detail__wrapper .product__guide-wrapper {
    width: 560px;
}

@media (max-width: 768px) {
    div.row.product-detail__wrapper .product__guide-wrapper {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    div.row.product-detail__wrapper div.product__guide h2.section__title-h2.product__name {
        font-size: 20px;
    }
}

div.row.product-detail__wrapper div.product__guide div.product__prices p.product__price-part {
    font-size: 26px;
    font-family: var(--font-number);
}

@media (max-width: 767px) {
    div.row.product-detail__wrapper div.product__guide div.product__prices p.product__price-part {
        font-size: 22px;
        margin-bottom: 32px;
    }
}

.option-list dd.option-list__detail {
    width: 50%;
}

.order .init-list {
    display: flex;
    align-items: center;
}

.order .init-list .init-list__detail {
    display: flex;
    align-items: center;
}

.order .init-list .init-list__detail .init-list__detail-num {
    border: 2px solid #000000;
    border-radius: 5px;
    box-shadow: none;
    padding: 8px;
    height: auto;
    width: 170px;
    margin-right: 10px;
}

.btn-block {
    background: #3f3f3f;
    color: #fff;
    width: 50%;
    padding: 16px 0;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px !important;
}

.product-tabs {
    margin: 32px 0;
    border-radius: 8px;
}

.product-tabs__nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-tabs__nav-item {
    padding: 16px 32px;
    cursor: pointer;
    font-weight: bold;
    font-size: 17px;
    border-bottom: 2px solid #b2b2b2;
    transition: color 0.2s, border-color 0.2s;
    width: 50%;
    text-align: center;
}

@media (max-width: 767px) {
    .product-tabs__nav-item {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.product-tabs__nav-item.is-active {
    border-bottom: 2px solid #1e0606;
}

.product-tabs__content {
    padding: 24px;
}

@media (max-width: 767px) {
    .product-tabs__content {
        padding: 20px 0;
    }
}

.product-tabs__panel {
    display: none;
}

.product-tabs__panel.is-active {
    display: block;
}

.reviewlist_datas {
    overflow: hidden;
    zoom: 1;
    margin-bottom: 10px;
}

.icon_star {
    float: left;
    width: 150px;
}

.review_poster li {
    float: left;
    margin-left: 10px;
}

.review_poster li {
    list-style: none;
}

.reviewlist {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc;
}

.review_ttl,
.shopcomment_ttl {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.review_img {
    float: right;
    margin: 0 0 10px 10px;
}

.reviewlist_content {
    overflow: hidden;
    zoom: 1;
}

.shopcomment {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #eee;
    padding: 15px;
    border-radius: 6px;
}

.main-content__news-archive .news__wrapper {
    background: transparent;
    border-top: 1px solid #b2b2b2;
    border-radius: 0;
    padding: 0;
}

.main-content__news-archive .news__wrapper .news-box {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 32px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #b2b2b2;
}

.main-content__news-archive .news__wrapper .news-box:not(:last-child) {
    margin-bottom: 0 !important;
}

.main-content__about .section-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .main-content__about .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

.main-content__about .about-text {
    font-size: 14px;
    margin-bottom: 40px;
}

.main-content__about .brand__list {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}

.main-content__about .about-img-list {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}

.main-content__about .about-img-list .about-img-list__item {
    width: 50%;
}

.main-content__about .about-img-list .about-img-list__item img {
    width: 100%;
    height: auto;
}

.guide-content {
    padding: 70px 0 0;
}

.guide-section {
    margin-bottom: 2.5rem;
}

.guide-section__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0px;
}

.guide-section__note {
    display: block;
    margin-top: 50px;
}

.guide-section__content {
    margin-bottom: 1.2rem;
}

.guide-section__lead {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 50px;
}

.guide-list {
    margin-bottom: 1em;
}

.guide-list li {
    margin-bottom: 0.4em;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 50px;
}

.guide-list li span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
}

.guide-hr {
    border: none;
    border-top: 1px solid #b2b2b2;
    margin: 2.5rem 0;
}

.sk-list__dt:first-child {
    padding: 0 0 5px;
}

.sk-list__dd {
    margin: 0;
}

.sk-list__dt {
    padding: 20px 0 5px;
}

.faq-section {
    padding: 0 0 100px;
}

.section__title {
    margin-bottom: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .section__title {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

ul.include-accordion {
    width: 100%;
    padding: 0;
    border-top: 1px solid #b2b2b2;
}

ul.include-accordion li {
    list-style: none;
}

ul.include-accordion ul {
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: 0.5s;
    border-top: 1px solid #b2b2b2;
    margin: 0;
}

ul.include-accordion li.active ul {
    border-top: 0;
}

ul.include-accordion li li {
    border-bottom: 1px dotted #b2b2b2;
    padding: 20px 0;
    font-size: 14px;
}

ul.include-accordion:nth-of-type(1) li.active li:last-child {
    border-bottom: 1px solid #b2b2b2;
}

ul.include-accordion button {
    position: relative;
    border: none;
    width: 100%;
    background: transparent;
    cursor: pointer;
    text-align: left;
    padding: 50px 0;
    font-size: 14px;
    font-weight: normal;
    color: #000;
}

ul.include-accordion button::before,
ul.include-accordion button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 16px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
    transition: 0.3s;
}

ul.include-accordion button::before {
    transform: translateY(-50%) rotate(0deg);
}

ul.include-accordion button::after {
    transform: translateY(-50%) rotate(90deg);
}

li.active button::before {
    transform: rotate(-180deg);
    transition: 0.5s;
}

li.active button::after {
    transform: rotate(135deg);
    transition: 0.5s;
    opacity: 0;
}

ul.include-accordion:nth-of-type(2) ul {
    border-top: 1px solid #b2b2b2;
}

ul.include-accordion:nth-of-type(2) li li {
    border-bottom: 1px dotted #73BEBF;
}

ul.include-accordion:nth-of-type(2) li.active li:last-child {
    border-bottom: 1px solid #b2b2b2;
}

ul.include-accordion.active {
    overflow-y: auto;
}

div.pagenation.pagenation-bottom ul.pagenation-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-family: var(--font-number);
}

footer {
    position: relative;
}

.footer-nav {
    background: #fff;
}

.fnavi-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: var(--container-width);
    margin: 0 auto 0 auto;
    padding: 64px 0 64px 0;
}

@media (max-width: 1024px) {
    .fnavi-list {
        gap: 32px;
        padding: 32px 0 24px 0;
    }
}

@media (max-width: 767px) {
    .fnavi-list {
        max-width: 100%;
        padding: 32px 20px 24px;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
}

.fnavi-list__unit {
    flex: 1 1 0;
    width: 25%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
}

@media (max-width: 1024px) {
    .fnavi-list__unit {
        min-width: 140px;
        max-width: 1fr;
        padding: 0 6px;
    }
}

@media (max-width: 768px) {
    .fnavi-list__unit {
        width: 50%;
        min-width: unset;
        max-width: unset;
        margin-bottom: 32px;
        padding: 0 4px;
    }
}

@media (max-width: 480px) {
    .fnavi-list__unit {
        width: 100%;
        margin-bottom: 24px;
    }
}

.fnavi-list__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .fnavi-list__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
}

.fnavi-list__title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
    letter-spacing: 0.04em;
}

.fnavi-list__desc {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.fnavi-list__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 18px 0 12px 0;
    border-radius: 12px;
    transition: background 0.18s, box-shadow 0.18s, opacity 0.18s;
    box-sizing: border-box;
}

.fnavi-list__link:hover,
.fnavi-list__link:focus-visible {
    opacity: 0.6;
}

.footer__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 120px 0 64px;
}

@media (max-width: 767px) {
    .footer__inner {
        max-width: 100%;
    }
}

.footer-sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 116px;
}

.footer-sns__label {
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    position: relative;
}

.footer-sns__label::before,
.footer-sns__label::after {
    content: "/";
    color: #222;
    opacity: 0.5;
    margin: 0 10px;
    font-size: 15px;
}

.footer-sns__label::before {
    content: "\\";
    margin-right: 10px;
}

.footer-sns__label::after {
    content: "/";
    margin-left: 10px;
}

.footer-sns__icons {
    display: flex;
    gap: 16px;
    margin-top: 2px;
}

.footer-sns__icon img {
    width: 36px;
    height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
}

.footer-sns__icon:hover img {
    opacity: 0.7;
}

.footer-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding: 24px 0 0 0;
    margin-bottom: 32px;
    position: relative;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 0 0 0;
        min-height: unset;
    }
}

.footer-main__left {
    flex: 1;
}

@media (max-width: 900px) {
    .footer-main__left {
        margin-bottom: 18px;
    }
}

.footer-logo {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 0;
}

.footer-main__center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .footer-main__center {
        margin-bottom: 18px;
    }
}

.footer-link {
    color: #222;
    font-size: 14px;
    margin: 0 12px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.footer-link:not(:last-child) {
    margin-right: 24px;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-main__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

@media (max-width: 900px) {
    .footer-main__right {
        justify-content: center;
        margin-bottom: 0;
    }
}

.footer-dog {
    position: absolute;
    top: -100px;
    right: 0;
}

.footer-dog .footer-dogcat {
    height: 90px;
    width: auto;
    display: block;
}

.footer-copyright {
    text-align: right;
    font-size: 12px;
    color: #222;
    opacity: 0.8;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .footer-copyright {
        text-align: center;
        margin-top: 18px;
    }
}

/*# sourceMappingURL=style.css.map */

/* ===== 投稿一覧・詳細ページのスタイル ===== */

/* メインコンテンツエリア */
.main-content {
    padding-top: 180px;
    min-height: 100vh;
}

.main-content__wrapper {
    width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.content-area {}

@media (max-width: 900px) {
    .content-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* パンくずリスト */
.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb li {
    color: var(--text-color);
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: var(--text-color-secondary);
}

.breadcrumb a {
    color: var(--text-color-secondary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ページヘッダー */
.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.archive-description {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* 投稿グリッド */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 投稿カード */
.post-card {
    background: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.post-card__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card__image {
    position: relative;
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.05);
}

.post-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__header {
    margin-bottom: 15px;
}

.post-card__categories {
    margin-bottom: 10px;
}

.post-category {
    display: inline-block;
    background: var(--text-color-secondary);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

.post-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.post-card__title a {
    color: var(--text-color);
}

.post-card__title a:hover {
    color: var(--text-color-secondary);
}

.post-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
}

.post-date {
    display: flex;
    align-items: center;
}

.post-pet-type {
    display: flex;
    gap: 8px;
}

.pet-type-tag {
    background: var(--primary);
    color: var(--text-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid var(--text-color);
}

.post-card__excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.post-card__footer {
    margin-top: auto;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color-secondary);
    font-weight: 500;
    font-size: 14px;
}

.read-more:hover {
    opacity: 0.8;
}

.read-more__arrow {
    transition: transform 0.3s ease;
}

.read-more:hover .read-more__arrow {
    transform: translateX(5px);
}

/* 投稿詳細ページ */


@media (max-width: 767px) {
    .single-post {
        padding: 0px;
    }
}

.post-header {
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.post-header__content {
    text-align: center;
}

.post-categories {
    margin-bottom: 15px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

@media (max-width: 767px) {
    .post-title {
        font-size: 2rem;
    }
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.meta-label {
    font-weight: 600;
    color: var(--text-color-secondary);
}

.post-pet-types,
.post-product-categories {
    display: flex;
    gap: 8px;
    align-items: center;
}

.product-category-tag {
    background: var(--primary);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--text-color);
}

.post-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 30px 0 15px 0;
    color: var(--text-color);
}

.post-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--text-color-secondary);
    padding-bottom: 10px;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content h4 {
    font-size: 1.3rem;
}

.post-content p {
    margin-bottom: 15px;
}

.post-content ul,
.post-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content blockquote {
    border-left: 4px solid var(--text-color-secondary);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
}

.post-footer {
    border-top: 1px solid var(--primary);
    padding-top: 20px;
}

.post-tags {
    margin-bottom: 20px;
}

.tags-label {
    font-weight: 600;
    color: var(--text-color-secondary);
    margin-right: 10px;
}

.post-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--text-color);
}

.post-navigation {
    margin-top: 30px;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous,
.nav-next {
    padding: 15px;
    background: var(--primary);
    border-radius: 8px;
    text-align: center;
}

.nav-next {
    text-align: right;
}

.nav-previous a,
.nav-next a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--text-color-secondary);
}

/* 関連投稿 */
.related-posts {
    background: var(--secondary);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.related-posts__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .related-posts__grid {
        grid-template-columns: 1fr;
    }
}

.related-post {
    text-align: center;
}

.related-post__image {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.related-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-thumbnail {
    transform: scale(1.05);
}

.related-post__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.related-post__title a {
    color: var(--text-color);
}

.related-post__title a:hover {
    color: var(--text-color-secondary);
}

.related-post__date {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
}

/* サイドバー */
.sidebar {
    background: var(--secondary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

@media (max-width: 900px) {
    .sidebar {
        order: -1;
    }
}

.widget {
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--text-color-secondary);
}

.widget-categories,
.widget-pet-types,
.widget-product-categories,
.widget-recent-posts {
    list-style: none;
}

.widget-categories li,
.widget-pet-types li,
.widget-product-categories li,
.widget-recent-posts li {
    padding: 8px 0;
    border-bottom: 1px solid var(--primary);
}

.widget-categories li:last-child,
.widget-pet-types li:last-child,
.widget-product-categories li:last-child,
.widget-recent-posts li:last-child {
    border-bottom: none;
}

.widget-categories a,
.widget-pet-types a,
.widget-product-categories a,
.widget-recent-posts a {
    color: var(--text-color);
    display: block;
    padding: 5px 0;
}

.widget-categories a:hover,
.widget-pet-types a:hover,
.widget-product-categories a:hover,
.widget-recent-posts a:hover {
    color: var(--text-color-secondary);
}

.widget-recent-posts .post-date {
    display: block;
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 5px;
}

.widget-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-tag-cloud a {
    background: var(--primary);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--text-color);
}

.widget-tag-cloud a:hover {
    background: var(--text-color-secondary);
    color: var(--secondary);
    border-color: var(--text-color-secondary);
}

/* ページネーション */
.pagination {
    margin: 40px 0;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    background: var(--secondary);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--text-color-secondary);
    color: var(--secondary);
    border-color: var(--text-color-secondary);
}

.pagination .current {
    background: var(--text-color-secondary);
    color: var(--secondary);
    border-color: var(--text-color-secondary);
}

/* 投稿が見つからない場合 */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: var(--secondary);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-posts h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.no-posts p {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background: var(--text-color-secondary);
    color: var(--secondary);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 800px;
    }

    .main-content {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .post-title {
        font-size: 1.8rem;
    }

    .single-post {
        padding: 0px;
    }

    .sidebar {
        padding: 20px;
    }
}

/* ===== 404ページと検索フォームのスタイル ===== */

/* 404ページ */
.error-404 {
    text-align: center;
    padding: 60px 20px;
    background: var(--secondary);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.error-404__suggestions {
    margin: 30px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404__suggestions h2 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.error-404__suggestions ul {
    list-style: disc;
    padding-left: 20px;
}

.error-404__suggestions li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.error-404__actions {
    margin: 30px 0;
}

.error-404__recent-posts {
    margin-top: 40px;
    text-align: left;
}

.error-404__recent-posts h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
}

.posts-grid--compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .posts-grid--compact {
        grid-template-columns: 1fr;
    }
}

.post-card--compact {
    background: var(--primary);
}

.post-card--compact .post-card__content {
    padding: 15px;
}

.post-card--compact .post-card__title {
    font-size: 1.1rem;
}

/* 検索フォーム */
.search-form {
    margin: 20px 0;
}

.search-form__wrapper {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 2px solid var(--primary);
    border-radius: 25px;
    overflow: hidden;
    background: var(--secondary);
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    color: var(--text-color);
}

.search-field::placeholder {
    color: var(--text-color);
    opacity: 0.6;
}

.search-submit {
    padding: 12px 20px;
    background: var(--text-color-secondary);
    color: var(--secondary);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: var(--text-color);
}

.search-form-container {
    margin: 20px 0;
}

/* 検索結果ページ */
.search-suggestions {
    margin: 20px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.search-suggestions ul {
    list-style: disc;
    padding-left: 20px;
}

.search-suggestions li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.search-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn--secondary {
    background: var(--primary);
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn--secondary:hover {
    background: var(--text-color);
    color: var(--primary);
}

/* スクリーンリーダー用 */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--text-color-secondary);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: var(--secondary);
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}