/*   
Theme Name: ds_202509
*/
@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/
body {
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    z-index: 0;
    color: #111;
    background: #fff;
    font-weight: 400;
    letter-spacing: .05px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-top: 5px solid #000066;
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

.all_container {
    position: relative;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-out;
}

a:hover {
    color: #c00;
    text-decoration: underline;
}

a img,
a svg {
    transition: 0.3s ease-out;
}

a:hover img,
a:hover svg {
    opacity: 0.8;
}

::-moz-selection {
    background: #cc0000;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #cc0000;
    color: #fff;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p {
    margin: 0;
}

hr {
    border: none;
    border-top: 1px solid #006;
    margin-top: 20px;
    margin-bottom: 20px;
}

img {
    width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

svg {
    fill: currentcolor;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    transition: 0.3s ease-out;
    cursor: pointer;
    color: #111;
    border: none;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
    width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.display_none {
    display: none;
}

.en {
    font-family: "cooper-black-std", sans-serif;
    font-weight: 400;
}

@font-face {
    font-family: 'custom Noto';
    src: url('font/NotoSansJP-SemiBold.ttf');
    unicode-range: U+0080-FFFF;
    size-adjust: 44%;
}

.bilingual {
    font-family: "custom Noto", "cooper-black-std", sans-serif;
    font-weight: 400;
}

/*link*/

.link_box {
    width: 220px;
    height: 58px;
    border-radius: 50vmax;
    background: #cc0000;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin: auto;
}

.link_box:hover {
    text-decoration: none;
    background: #ad0000;
    color: #fff;
}

.link_arrow {
    width: 8px;
    filter: invert(12%) sepia(63%) saturate(3713%) hue-rotate(236deg) brightness(78%) contrast(134%);
    margin-right: 6px;
}

.link_box .link_arrow {
    width: 10px;
    filter: invert(96%) sepia(100%) saturate(14%) hue-rotate(228deg) brightness(102%) contrast(100%);
    margin-right: 8px;
}


/* ヘッダー
----------------------------------------------------*/

.header_container {
    padding-top: 32px;
    padding-bottom: 28px;
    margin-bottom: 40px;
    border-bottom: 1px solid #000066;
}

.header_main {
    position: relative;
    margin-bottom: 36px;
}

.header_sns {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.sns_list {
    align-items: center;
}

.header_sns .sns_item + .sns_item {
    margin-left: 10px;
}

.header_sns a {
    background: #fcf6e4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.sns_link_ig img {
    width: 24px;
}

.sns_link_fb img {
    width: 12px;
}

.sns_link_x img {
    width: 20px;
}

.header_logo {
    width: 348px;
    margin: 0 auto;
    line-height: 0;
}

.header_logo img {
    width: 100%;
}

.header_cart_button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 168px;
    height: 40px;
    background: #cc0000;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50vmax;
}

.header_cart_button img {
    width: 20px;
    margin-right: 5px;
    filter: invert(96%) sepia(100%) saturate(14%) hue-rotate(228deg) brightness(102%) contrast(100%);
}

.header_cart_button span {
    display: block;
}

.header_cart_button:hover {
    background: #ad0000;
    color: #fff;
    text-decoration: none;
}

.header_cart_button:hover img {
    opacity: 1;
}

.main_nav_list {
    justify-content: space-evenly;
    align-items: center;
    padding: 0 88px;
}

.main_nav_link {
    font-size: 16px;
    font-weight: 700;
}

.main_nav_link:hover {
    text-decoration: none;
}


/* サイドナビゲーション
----------------------------------------------------*/

.side_container {
    width: 220px;
}

.side_search {
    margin-bottom: 32px;
}

.side_search_heading {
    font-weight: 700;
    color: #006;
    font-size: 16px;
    margin-bottom: 14px;
}

.search_box {
    position: relative;
    padding: 0 10px;
    border-radius: 50vmax;
    border: 1px solid #006;
}

.search_keyword {
    width: calc(100% - 20px);
    font-size: 14px;
    padding: 10px 0;
}

.search_submit {
    position: absolute;
    width: 18px;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}

.side_link_all {
    margin-bottom: 40px;
    align-items: center;
    font-weight: 500;
}

.side_nav a {
    display: block;
}

.side_nav_item {
    margin-bottom: 44px;
}

.side_nav_heading {
    font-weight: 700;
    color: #cc0000;
    font-size: 16px;
    margin-bottom: 20px;
}

.side_subnav_item + .side_subnav_item {
    margin-top: 10px;
}

.side_subnav_item a {
    font-size: 13px;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.side_subnav_item img {
    vertical-align: middle;
    width: 35px;
    padding-right: 3px;
}

.side_subnav_item span {
    padding-left: 5px;
    width: calc(100% - 32px);
}

/* フッター
----------------------------------------------------*/

.footer_container {
    background: #FCF6E4;
    margin-top: 120px;
    padding-top: 70px;
    padding-bottom: 50px;
}

/*ご利用ガイド*/
.footer_guide {
    padding-bottom: 70px;
    justify-content: space-between;
}

.footer_guide_inner {
    width: 46%;
    background: #fff;
    padding: 28px 60px 30px;
    display: block;
    border: 3px solid #fff;
}

.footer_guide_inner:hover{
    text-decoration: none;
    color: inherit;
    border-color: #006;
}

.footer_guide_inner:hover img{
    opacity: 1;
}

.footer_guide_heading {
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 20px;
}

.footer_guide_main {
    justify-content: center;
    align-items: center;
}

.footer_guide_shipping .footer_guide_icon {
    width: 93px;
    margin-right: 18px;
}

.footer_guide_gift .footer_guide_icon {
    width: 70px;
    margin-right: 14px;
}

.footer_guide_important {
    width: fit-content;
}

.footer_guide_important_text {
    font-size: 15px;
    color: #006;
}

.footer_guide_important_text + .footer_guide_important_text {
    margin-top: -4px;
}

.footer_guide_gift .footer_guide_important_text {
    margin-top: 18px;
}

.footer_guide_important_text span {
    color: #c00;
    font-size: 120%;
    line-height: 1.75;
    padding-left: 4px;
}

.footer_guide_text {
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

/*運営会社*/
.footer_company_container {
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: #D6CEB5 1px solid;
    border-bottom: #D6CEB5 1px solid;
}

.footer_company_heading {
    text-align: center;
    padding-bottom: 46px;
}

.footer_company_heading_text {
    font-size: 15px;
    padding-bottom: 10px;
}

.footer_company_logo img {
    width: 196px;
}

.footer_company_list {
    margin: 0 -15px;
}

.footer_company_item {
    width: calc(100% / 4);
    padding: 0 15px;
}

.footer_company_tagline {
    font-size: 12px;
    line-height: 1.3;
    padding-top: 10px;
    padding-bottom: 4px;
    opacity: .6;
}

.footer_company_name {
    padding-top: 4px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .8px;
}

/*ナビゲーション*/

.footer_nav_container {
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: #D6CEB5 1px solid;
    justify-content: space-between;
    align-items: center;
}

.footer_nav_list {
    width: 80%;
    align-items: center;
}

.footer_nav_item {
    font-size: 15px;
}

.footer_nav_item + .footer_nav_item {
    margin-left: 32px;
}

.footer_sns {
    width: 20%;
    justify-content: flex-end;
}

.footer_sns .sns_item + .sns_item {
    margin-left: 20px;
}

.copyright {
    padding-top: 40px;
    font-size: 13px;
    text-align: right;
}

/* トップページ
----------------------------------------------------*/

.body_container {
    justify-content: space-between;
}

.main_container {
    width: 770px;
}

/*大事なお知らせ*/
.important_news{
    width: 100%;
    background: #fcf6e4;
    border-radius: 50vmax;
    padding: 12px 4% 14px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.3;
    color: #c00;
    font-weight: 600;
    align-items: center;
}

.important_news img{
    width: 8px;
    filter: invert(9%) sepia(81%) saturate(6078%) hue-rotate(358deg) brightness(114%) contrast(110%);
    margin-right: 0;
}

.important_news span{
    width: calc(100% - 8px);
    padding-left: 8px;
}

/*スライダー*/
.top_slider_container {
    padding-bottom: 80px;
}

.top_slide_link {
    position: relative;
    display: block;
}

.top_slide img {
    width: 100%;
    aspect-ratio: 750 / 550;
    object-fit: cover;
}

.top_slide_text {
    position: absolute;
    left: 32px;
    bottom: 20px;
    z-index: 1;
    color: #fff;
    font-size: 40px;
    line-height: 1.25;
    font-family: "cooper-black-std", "Noto Sans JP", sans-serif;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.slick-dots {
    margin-top: 8px;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0 8px;
}

.slick-dots li button {
    position: relative;
    text-indent: -9999px;
    padding: 0;
}

.slick-dots li button::before {
    content: "";
    cursor: pointer;
    width: 8px;
    height: 8px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background: #C2C2C2;
    border-radius: 50%;
}

.slick-dots li.slick-active button::before {
    background: #000066;
}

/*新入荷*/
.top_goods_container {
    padding-bottom: 100px;
}

.top_heading {
    color: #CC0000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 40px;
}

.top_heading .en {
    font-size: 40px;
    line-height: .6;
    padding-right: 20px;
    vertical-align: bottom;
}

.goods_list {
    margin: 0 -.8%;
}

.goods_list_item {
    width: calc(100% / 5);
    padding-bottom: 20px;
    padding-left: .8%;
    padding-right: .8%;
}

.goods_new_list .goods_list_item {
    width: calc(100% / 4);
}

.goods_list_img {
    position: relative;
}

.goods_list_restock {
    position: absolute;
    width: 39px;
    height: 39px;
    font-size: 11px;
    background: #c00;
    color: #fff;
    display: flex
        ;
    justify-content: center;
    align-items: center;
    top: -10px;
    right: -6px;
    z-index: 10;
    border-radius: 50%;
    font-weight: 600;
}

.goods_list_img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: auto;
}

.goods_list_body {
    text-align: center;
    padding-top: 10px;
    padding-left: 3px;
    padding-right: 3px;
}

.goods_list_name {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.goods_list_soldout {
    color: #CC0000;
    font-size: 15px;
    padding-top: 6px;
}

.goods_list_price {
    font-size: 13px;
    padding-top: 6px;
    color: #666;
}

.goods_list_no {
    font-weight: 700;
    font-size: 16px;
}

.top_goods_link_all {
    margin-top: 20px;
}

/*最新情報*/
.top_news_container {
    padding-bottom: 90px;
}

.top_news_list {
    border-top: 2px solid #000066;
    border-bottom: 2px solid #000066;
    padding-top: 32px;
    padding-bottom: 32px;
}

.top_news_item {
    width: 100%;
}

.top_news_item + .top_news_item {
    margin-top: 12px;
}

.top_news_date {
    width: 16%;
    color: #000066;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.top_news_title {
    width: 84%;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.top_news_link_all {
    color: #006;
    justify-content: flex-end;
    margin-top: 24px;
    font-weight: 500;
}


/*実店舗のご案内*/
/*
.top_shop_container {
    padding-bottom: 100px;
}
*/

.top_shop_inner {
    justify-content: space-between;
    align-items: center;
}

.top_shop_img {
    width: 55%;
}

.top_shop_body {
    width: 40%;
}

.top_shop_text {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.top_shop_link_all {
    width: 168px;
    height: 42px;
    font-size: 15px;
    margin: 20px 0 0 0;
}



/* 下層ページ
----------------------------------------------------*/

/*パンくず*/

.breadcrumbs {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 32px;
    word-break: break-all;
}

.breadcrumbs a {
    text-decoration: underline;
}

.breadcrumbs_category:nth-of-type(7),
.breadcrumbs_category:nth-of-type(9),
.breadcrumbs_date:nth-of-type(5),
.breadcrumbs_date:nth-of-type(7) {
    display: none;
}

.breadcrumbs_category:nth-of-type(7) + .breadcrumbs_arrow,
.breadcrumbs_category:nth-of-type(9) + .breadcrumbs_arrow,
.breadcrumbs_date:nth-of-type(5) + .breadcrumbs_arrow,
.breadcrumbs_date:nth-of-type(7) + .breadcrumbs_arrow,
.display_none + .breadcrumbs_arrow {
    display: none;
}

/*ヘッディング*/

.page_heading {
    font-size: 44px;
    padding-bottom: 40px;
}

.page_heading .jp {
    font-size: 44%;
    font-weight: 600;
}

/* 商品ページ　一覧
----------------------------------------------------*/

.category_page_heading_sub {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}

.category_page_heading {
    font-size: 44px;
    margin-bottom: 28px;
    text-wrap: balance;
}

.category_page_img {
    margin-bottom: 32px;
}

.page_intro_text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.page_intro_text a {
    text-decoration: underline;
}

.goods_child_list {
    background: #FCF6E4;
    padding: 14px 20px;
}

.goods_child_item {
    padding-right: 12px;
    margin: 6px 12px 6px 0;
    border-right: 1px solid;
    font-size: 14px;
    line-height: 1.2;
}

.goods_child_item:last-of-type {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.goods_child {
    margin-top: 80px;
}

.category_name_child {
    font-size: 39px;
    color: #cc0000;
    margin-bottom: 20px;
}

.goods_grand + .goods_grand {
    margin-top: 40px;
}

.category_name_grand {
    font-size: 28px;
    color: #000066;
    border-bottom: 1px solid #000066;
    padding: 0 14px 12px;
    margin-bottom: 24px;
}

.no_items {
    font-size: 18px;
}

.goods_list_bottom {
    margin-top: 80px;
    font-size: 14px;
    line-height: 1.8;
}

.goods_list_bottom > * + * {
    margin-top: 32px;
}

.goods_list_bottom a {
    text-decoration: underline;
}

.category_zukan_container {
    margin-top: 60px;
}

.pagination {
    margin-top: 60px;
}

.wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 14px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    color: #cc0000;
    text-decoration: none;
}

.wp-pagenavi span.extend {
    padding-left: 0;
    padding-right: 0;
}

.single_pagination{
    border-top: 1px solid;
    padding-top: 40px;
    margin-top: 40px;
}

.single_pagination a,
.single_pagination span{
    font-size: 17px;
}

.wp-pagenavi .disabled{
    opacity: .5;
}

/* 商品ページ　個別記事
----------------------------------------------------*/

/*メイン画像*/

.goods_header {
    margin-bottom: 28px;
}

.goods_name {
    font-size: 44px;
}

.goods_slider {
    margin-bottom: 36px;
}

.flexslider {
    border: none !important;
    margin: 0 !important;
}

#slider {
    width: 548px;
}

.flex-direction-nav a {
    top: calc(50% - 42px) !important;
    width: auto !important;
}

.flex-caption {
    font-size: 13px;
    letter-spacing: 0.1px;
    line-height: 20px;
    height: 84px !important;
    width: auto !important;
    background: #f0ebd9 !important;
    color: #333 !important;
    padding: 12px 14px !important;
    margin-top: 8px !important;
}

#carousel .flex-active-slide {
    opacity: 0.5 !important;
}

#carousel {
    width: 222px;
    padding-left: 14px;
}

#carousel ul.slides {
    display: flex;
    flex-wrap: wrap;
    width: 100% !important;
}

#carousel li {
    width: 100px !important;
    margin-bottom: 8px !important;
}

#carousel li:nth-child(2n+1) {
    margin-right: 8px !important;
}

.flex-direction-nav a {
    content: url(https://dealership.xsrv.jp/cabinet/common/icon_arrow.svg) !important;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.flex-direction-nav .flex-prev {
    left: 16px !important;
    transform: rotate(180deg) !important;
}

.flex-direction-nav .flex-next {
    right: 16px !important;
}

/*メイン*/

.goods_body {
    justify-content: space-between;
}

.goods_spec_cart {
    width: 42%;
}

/*スペック*/

.goods_spec {
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: #111 dotted 1px;
}

.goods_spec dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.goods_spec dt {
    width: 30%;
    font-size: 13px;
    line-height: 1.5;
    color: #000066;
    font-weight: bold;
    padding-bottom: 12px;
}

.goods_spec dd {
    width: 70%;
    font-size: 13px;
    line-height: 1.5;
    padding-left: 15px;
    padding-bottom: 12px;
    margin: 0;
}

.condition_icon,
.rare_icon {
    width: auto;
    height: 16px;
}

/*カート*/

.goods_price {
    text-align: right;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
}

.goods_price span {
    font-size: 14px;
    font-weight: 500;
    padding-right: 5px;
}

.goods_cart_title {
    font-size: 15px;
    line-height: 1.4;
    padding-bottom: 12px;
}

.cart_in a + .goods_cart_title {
    margin-top: 20px;
}

.cart_in a {
    background: #cc0000;
    padding: 4px 0;
    width: 100%;
    text-align: center;
    display: block;
    border-radius: 50vmax;
    overflow: hidden;
}

.cart_in a:hover {
    opacity: 0.8;
}

.cart_in a img {
    width: 200px;
}

.cart_in a:hover img {
    opacity: 1;
}

.cart_memo {
    margin-top: 40px;
    font-size: 12px;
    line-height: 1.7;
    color: #666;
}

.cart_memo p + p {
    margin-top: 16px;
}

.cart_memo a {
    text-decoration: underline;
}

/*本文*/

.goods_text {
    width: 50%;
    font-size: 14px;
    line-height: 1.9;
}

.goods_text > * + * {
    margin-top: 20px;
}

.goods_text a {
    text-decoration: underline;
}

.red {
    color: #c00;
}

img[src$="space.gif"] {
    height: 10px;
}

/*自由記述の場合*/

.goods_free {
    font-size: 14px;
    line-height: 1.8;
}

.goods_free > * + * {
    margin-top: 32px;
}

.goods_free a {
    text-decoration: underline;
}

/*旧サイトから移行*/
#item_name {
    font-size: 17px;
    letter-spacing: 0.8px;
}

#item_text {
    display: block;
    width: auto;
    float: none;
}

#item_text::after {
    content: "";
    display: table;
    clear: both;
}

#item_text p {
    font-size: 14px;
    line-height: 1.8;
}

#item_text p a {
    text-decoration: underline;
}

#item_text_subph {
    float: right;
    display: block;
    padding-left: 30px;
    width: 220px;
}

#item_text_subph li {
    margin-bottom: 10px;
}

#item_text_subph .item_caption {
    padding: 2px 0 !important;
}

ul#item_text_subph img {
    margin-bottom: 5px;
}

/* 写真リスト */

.item_ph_list_1col,
.item_ph_list_2col,
.item_ph_list_3col {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.2%;
    margin-right: -1.2%;
}

.item_ph_list_1col li,
.item_ph_list_2col li,
.item_ph_list_3col li {
    padding: 0 1.2%;
    margin: 0;
}

.item_ph_list_1col {
    margin-top: 20px;
    margin-bottom: 20px;
}

.item_ph_list_1col li {
    width: calc(100% / 1);
    margin-bottom: 15px;
}

.item_ph_list_2col {
    margin-top: 20px;
    margin-bottom: 20px;
}

.item_ph_list_2col li {
    width: calc(100% / 2);
    margin-bottom: 15px;
}

.item_ph_list_3col {
    margin-top: 20px;
    margin-bottom: 20px;
}

.item_ph_list_3col li {
    width: calc(100% / 3);
    margin-bottom: 15px;
}

.item_caption {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    padding: 5px 0;
}

/*スペック・カート*/
.spec_cart_new_container {
    margin: 50px 0;
}

.spec_cart_new_container .cart_brand_name {
    padding: 0 14px 12px;
    margin-bottom: 24px;
    color: #006;
    line-height: 1;
    border-bottom: 1px solid #000066;
}

.spec_cart_new_container .cart_brand_name h3 {
    font-family: "cooper-black-std", sans-serif;
    font-size: 28px;
    font-weight: normal;
}

.spec_cart_new_container .cart_brand_name h3 span {
    font-size: 16px;
    padding-left: 10px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
}

.spec_cart_new_container .spec_cart_new {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.8%;
}

.spec_cart_new_container .spec_cart_new li {
    width: calc(100% / 3);
    margin-bottom: 30px;
    padding: 0 1.8%;
}

.spec_cart_new_container .spec_cart_new li > a > img {
    margin-bottom: 10px;
}

.spec_cart_new_container .spec_cart_new li p {
    font-size: 13px;
}

.spec_cart_new_container .spec_cart_new li p:has(+ .cart_in) {
    color: #666;
}

.spec_cart_new_container .spec_cart_new li p.cart_name {
    font-size: 15px;
    padding-bottom: 10px;
    font-weight: 700;
}

.spec_cart_new_container .spec_cart_new li .cart_in {
    margin-top: 10px;
}

.spec_cart_new_container .spec_cart_new li .cart_in a img {
    width: 170px;
}


/* 図鑑
----------------------------------------------------*/

.zukan_caution{
    color: #c00;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.zukan_caution span{
    font-size: 80%;
    padding-top: 10px;
    display: block;
}

.zukan_body table {
    width: 100%;
    height: auto;
}

.zukan_body td {
    font-size: 13px;
    line-height: 1.3;
}

.zukan_item_ph {
    display: block;
    padding-bottom: 8px;
}

.zukan_item_name {
    display: block;
    padding-bottom: 28px;
}

.zukan_link_back img {
    width: 200px;
}

/**/

.zukan_body h2 {
    font-family: "cooper-black-std", sans-serif;
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: normal;
}

.zukan_body h2 small {
    font-size: 22px;
    letter-spacing: 2px;
    font-family: "tbudgothic-std", sans-serif;
    font-weight: bold;
    padding-left: 5px;
}

.zukan_body #category_page_header {
    margin-bottom: 40px;
}

.zukan_body #category_page_header p {
    margin: 15px 0 25px;
}

.zukan_body #category_page_header #category_page_mokuji {
    background: #f0ebd9;
    padding: 15px 20px;
}

.zukan_body #category_page_header #category_page_mokuji li {
    display: inline-block;
}

.zukan_body #category_page_header #category_page_mokuji li + li:before {
    content: "｜";
    display: inline-block;
    padding: 0 10px;
}

.zukan_body .category_1st_cat {
    margin-bottom: 70px;
}

.zukan_body .category_1st_cat h3 {
    font-family: "cooper-black-std", sans-serif;
    font-size: 37px;
    color: #cc0000;
    margin-bottom: 20px;
    font-weight: normal;
}

.zukan_body .category_1st_cat h3 small {
    font-size: 19px;
    letter-spacing: 2px;
    font-family: "tbudgothic-std", sans-serif;
    font-weight: bold;
    padding-left: 5px;
}

.zukan_body .category_2nd_cat {
    margin-bottom: 20px;
}

.zukan_body .category_2nd_cat h4 {
    font-family: "cooper-black-std", sans-serif;
    font-size: 26px;
    color: #000066;
    border-bottom: 1px solid #000066;
    padding-bottom: 8px;
    margin-bottom: 18px;
    padding-left: 15px;
}

/* 商品リスト　.item_list */

.item_list {
    display: inline-block;
    display: table;
    font-size: 0;
    width: 100%;
}

.item_list > li {
    margin-bottom: 20px;
    float: none !important;
    display: inline-block;
    vertical-align: top;
}

.item_list > li:nth-child(6n+1) {
    margin-left: 0 !important;
}

.item_list > li:nth-child(6n) {
    margin-right: 0 !important;
}

.item_list > li > a > img {
    width: 100%;
}

.item_list > li p {
    margin-top: 3px;
    text-align: center;
    font-size: 12px;
    line-height: 17px;
}

.zukan_midashi{
    color: #006;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* お知らせ　一覧
----------------------------------------------------*/

.news_category {
    margin-bottom: 50px;
}

.news_category_item + .news_category_item{
    margin-left: 20px;
}

.news_category_link{
    color: #006;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
}

.news_body_container {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px #006 solid;
}

.no_article_text {
    font-size: 18px;
    text-align: center;
}

/*個別記事*/
.news_header {
    margin-bottom: 40px;
}

.news_date {
    font-size: 14px;
    margin-bottom: 20px;
}

.news_title {
    font-size: 22px;
    line-height: 1.5;
}

.post_body {
    font-size: 15px;
    line-height: 1.8;
}

.post_body > * + * {
    margin-top: 20px;
}

.post_body > * > * + * {
    margin-top: 8px;
}

.post_body h2 {
    font-size: 24px;
    line-height: 1.5;
    color: #006;
}

.post_body h2:not(:first-child){
    margin-top: 60px;
}

.page .post_body h2 {
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.post_body .wp-block-group__inner-container > * + * {
    margin-top: 12px;
}

.wp-block-group:first-child h2 {
    margin-top: 0;
}

.post_body .wp-block-group__inner-container h3 {
    margin-top: 30px;
}

.post_body .wp-block-group__inner-container figure {
    margin-top: 30px;
    margin-bottom: 30px;
}

.post_body h3 {
    color: #006;
    margin-top: 28px;
}

.post_body a {
    text-decoration: underline;
}

.post_body figure.is-type-video .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.post_body figure.is-type-video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.news_body img{
    margin-bottom: 28px;
}

.news_body img:not(:first-child){
    margin-top: 28px;
}

/* 固定ページ
----------------------------------------------------*/

.page_kotei_heading {
    font-size: 28px;
    padding-bottom: 50px;
}

/* 検索ページ
----------------------------------------------------*/

.search_form {
    margin-bottom: 40px;
}

.search_form .search_keyword {
    width: calc(100% - 30px);
    font-size: 16px;
    padding: 12px 8px;
}

.search_form .search_submit {
    width: 24px;
    right: 16px;
}

.search_summary {
    font-size: 18px;
    margin-bottom: 40px;
}

/* 実店舗のご案内
----------------------------------------------------*/

.shop_bs{
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 28px 0 32px;
}

.shop_bs_heading{
    color: #c00;
    border-bottom: none;
    font-size: 18px;
    font-weight: 600;
}

.shop_map{
    margin-bottom: 60px;
}

.shop_map_body{
    width: 40%;
    padding-right: 5%;
}

.shop_map_img{
    width: 60%;
}

.shop_sister{
    margin-top: 40px;
}

.shop_sister_img {
    width: 55%;
}

.shop_sister_inner + .shop_sister_inner{
    margin-top: 60px;
}

.shop_sister_body {
    width: 45%;
    padding-left: 6%;
    margin-top: -8px;
}

.shop_sister_body h3{
    margin-top: 0;
    margin-bottom: 10px;
}

.shop_sister_body p + p{
    margin-top: 16px;
}

.shop_sister_text_en{
    font-size: 85%;
}


/* 特定商取引法
----------------------------------------------------*/

.tokute_table{
    width: 100%;
    line-height: 1.6;
}

.tokutei_name{
    width: 30%;
    padding: 10px;
    font-weight: 700;
    background: #fcf6e4;
}

.tokutei_detail{
    width: 70%;
    padding: 10px;
}


/* 個人情報保護方針
----------------------------------------------------*/

.privacy_list{
    margin: 0;
}

.privacy_list dt{
    color: #006;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.privacy_list dd{
    margin: 0 0 30px 0;
}

.privacy_menseki{
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid;
}

/* お問い合わせ
----------------------------------------------------*/

.form_intro {
    margin: 12px 0 36px;
}

.form_container {
    margin-bottom: 40px;
}

.form_container input,
.form_container textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid #111;
    padding: 6px 10px;
    border-radius: 0;
    font: inherit;
    outline: none;
    width: 80%;
    font-size: 16px;
    line-height: 1.5;
}

.form_container li {
    padding-bottom: 28px;
}

.form_heading {
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 8px;
}

.form_field input {
    height: 32px;
}

.form_submit {
    padding-top: 20px;
    width: 80%;
}

.form_submit input {
    width: 240px;
    background: #cc0000;
    color: #fff;
    padding: 16px 0;
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}


/* 404　エラーページ
----------------------------------------------------*/

.error_intro_title_en{
    font-size: 36px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
}

.error_intro_title {
    font-size: 24px;
    line-height: 1.75;
    text-align: center;
}

.error_link_top {
    margin-top: 50px;
}


/*----------------------------------------------------

PCのみ

----------------------------------------------------*/

@media screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
}

/*----------------------------------------------------

スマートフォンのみ

----------------------------------------------------*/


@media screen and (max-width: 767px) {

    .wrapper {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 14px;
        padding-right: 14px;
    }

    .display_pc {
        display: none !important;
    }

    .link_box {
        width: 200px;
        height: 50px;
        font-size: 16px
    }

    .link_arrow {
        width: 7px;
    }

    .link_box .link_arrow {
        width: 8px;
        margin-right: 6px;
    }


    /* ヘッダー
    ----------------------------------------------------*/

    .header_container {
        padding-top: 16px;
        padding-bottom: 20px;
        margin-bottom: 0;
        border-bottom: none;
        height: 68px;
    }

    .header_main {
        margin-bottom: 0;
        height: 38px;
        align-items: center;
    }

    .header_logo {
        width: 208px;
        margin: 0;
    }

    .header_cart_button {
        position: absolute;
        right: 38px;
        width: 40px;
        height: auto;
        background: none;
        color: #111;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0;
    }

    .header_cart_button img {
        width: 26px;
        margin-right: 0;
        filter: none;
    }

    .header_cart_button span {
        padding-top: 3px;
        padding-left: 6px;
        width: 34px;
    }

    /*ドロワーメニュー*/

    .drawer_background {
        display: block;
        opacity: 0;
        background: #111;
        transition: all .5s ease-in-out;
    }

    body.is-opened .drawer_background {
        opacity: .2;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 99;
    }

    .drawer-hamburger {
        position: fixed;
        top: 33px;
        right: 9px;
        z-index: 999;
        padding: 0;
    }

    .drawer-hamburger-icon,
    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        width: 26px;
        height: 2px;
        transition: all .3s cubic-bezier(.19, 1, .22, 1);
    }

    .drawer-hamburger-icon {
        position: relative;
        display: block;
        margin: 0 auto;
        background-color: #111;
    }

    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        position: absolute;
        content: " ";
        background-color: #111;
        left: 0;
        right: 0;
        margin: auto;
    }

    .drawer-hamburger-icon:before {
        top: -7px !important;
    }

    .drawer-hamburger-icon:after {
        top: 7px !important;
    }

    .is-opened .drawer-hamburger {
        right: 22px;
    }

    .is-opened .drawer-hamburger-icon {
        background: transparent;
    }

    .is-opened .drawer-hamburger-icon:before {
        transform: rotate(30deg);
        top: 0 !important;
        width: 28px;
    }

    .is-opened .drawer-hamburger-icon:after {
        transform: rotate(-30deg);
        top: 0 !important;
        width: 28px;
    }

    .drawer-hamburger-text {
        color: #111;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0;
        padding-top: 12px;
        display: block;
        position: relative;
    }

    .drawer-hamburger-text::after {
        position: relative;
        content: "メニュー";
        font-size: 9px;
        display: block;
    }

    .is-opened .drawer-hamburger-text::after {
        content: "とじる";
    }

    .drawer-nav {
        background: #fff;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        overflow-y: scroll;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        max-height: 100%;
        transition: right .3s ease-in-out;
        -webkit-overflow-scrolling: touch;
    }

    .is-opened .drawer-nav {
        right: 0;
        transition: right .3s ease-in-out;
    }
    
    .drawer_shop{
        background: #FCF6E4;
        border-radius: 50vmax;
        width: 168px;
        height: 45px;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
        margin-left: 20px;
    }
    
    .drawer_shop_icon{
        width: 16px;
    }
    
    .drawer_shop_text{
        padding-left: 6px;
        font-size: 14px;
        font-weight: 700;
    }
    
    .drawer_shop_text span{
        font-size: 10px;
        font-weight: 500;
    }

    .side_inner {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 16px 20px 12px;
    }

    .drawer_sns .sns_item + .sns_item {
        margin-left: 16px;
    }

    .side_search_heading {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .drawer_main_nav {
        padding-top: 28px;
        border-top: 1px solid #D6CEB5;
        border-bottom: 1px solid #D6CEB5;
        padding-bottom: 24px;
        margin-bottom: 28px;
    }

    .main_nav_list {
        padding: 0;
    }

    .main_nav_item + .main_nav_item {
        padding-top: 17px;
    }

    .main_nav_link {
        font-size: 15px;
        font-weight: 500;
    }
    
    .sns_container{
        margin-top: 26px;
        align-items: center;
    }
    
    .sns_heading{
        font-size: 13px;
        color: #006;
        padding-right: 18px;
    }

    .search_nav_heading {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .side_search {
        margin-bottom: 28px;
    }
    
    .search_keyword{
        font-size: 16px;
    }

    .side_nav_heading {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .side_link_all {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .side_nav_item {
        margin-bottom: 32px;
    }


    /* フッター
    ----------------------------------------------------*/

    .footer_container {
        position: relative;
        margin-top: 80px;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    /*ご利用ガイド*/
    .footer_guide {
        padding-bottom: 50px;
    }

    .footer_guide_inner {
        width: 88%;
        padding: 28px 28px 26px;
        margin: auto;
    }

    .footer_guide_inner + .footer_guide_inner {
        margin-top: 20px;
    }

    .footer_guide_heading {
        font-size: 15px;
        padding-bottom: 22px;
    }

    .footer_guide_main {
        flex-direction: column;
    }

    .footer_guide_shipping .footer_guide_icon {
        width: 90px;
        margin-right: 0;
    }

    .footer_guide_gift .footer_guide_icon {
        width: 66px;
        margin-right: 0;
    }

    .footer_guide_important {
        margin-top: 8px;
    }

    .footer_guide_important_text {
        font-size: 13px;
        text-align: center;
    }

    .footer_guide_important_text + .footer_guide_important_text {
        margin-top: -4px;
    }

    .footer_guide_gift .footer_guide_important_text {
        margin-top: 6px;
    }

    .footer_guide_important_text span {
        padding-left: 3px;
    }

    .footer_guide_text {
        padding-top: 16px;
        font-size: 13px;
    }

    /*運営会社*/
    .footer_company_container {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .footer_company_heading {
        padding-bottom: 40px;
    }

    .footer_company_heading_text {
        font-size: 12px;
        padding-bottom: 6px;
    }

    .footer_company_logo img {
        width: 146px;
    }

    .footer_company_list {
        margin: 0 -10px;
    }

    .footer_company_item {
        width: calc(100% / 2);
        padding: 0 10px 22px;
    }

    .footer_company_tagline {
        font-size: 11px;
        padding-bottom: 2px;
    }

    .footer_company_name {
        font-size: 15px;
    }

    /*ナビゲーション*/

    .footer_nav_container {
        padding-top: 32px;
        padding-bottom: 0;
        border-bottom: 0;
    }

    .footer_nav_list {
        width: 100%;
        border-bottom: #D6CEB5 1px solid;
        padding-bottom: 16px;
    }

    .footer_nav_item {
        width: 50%;
        padding-bottom: 16px;
        font-size: 13px;
    }

    .footer_nav_item + .footer_nav_item {
        margin-left: 0;
    }

    .footer_sns {
        width: 50%;
        padding-top: 36px;
        justify-content: flex-start;
    }

    .footer_sns .sns_item + .sns_item {
        margin-left: 18px;
    }

    .copyright {
        position: absolute;
        bottom: 48px;
        right: 20px;
        padding-top: 0;
        font-size: 11px;
    }

    /* トップページ
    ----------------------------------------------------*/

    .main_container {
        width: 100%;
    }

    /*大事なお知らせ*/
    .important_news{
        padding: 8px 12px 9px 16px;
        margin-bottom: 14px;
        font-size: 12px;
        margin-left: -8px;
        margin-right: -8px;
        width: calc(100% + 16px);
    }

    .important_news img{
        width: 7px;
    }
    
    .important_news span{
        width: calc(100% - 7px);
    }

    /*スライダー*/
    .top_slider_container {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        padding-bottom: 40px;
    }

    .top_slide img {
        aspect-ratio: 1 / 1;
    }

    .top_slide_text {
        left: 20px;
        bottom: 20px;
        font-size: 26px;
    }

    .slick-dots {
        margin-top: 8px;
    }

    /*新入荷*/
    .top_goods_container {
        padding-bottom: 70px;
    }

    .top_heading {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .top_heading .en {
        font-size: 30px;
        padding-right: 10px;
    }

    .goods_list {
        margin: 0 calc(50% - 50vw);
        width: calc(100vw + 1px);
    }

    .goods_list_item,
    .goods_new_list .goods_list_item {
        width: calc(100% / 3);
        padding-bottom: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    .goods_list_item:nth-child(3n-2) {
        padding-right: .6%;
    }

    .goods_list_item:nth-child(3n-1) {
        padding-left: .3%;
        padding-right: .3%;
    }

    .goods_list_item:nth-child(3n) {
        padding-left: .6%;
    }

    .goods_list_restock {
        width: 34px;
        height: 34px;
        font-size: 10px;
        top: -6px;
        right: 2px;
    }


    .goods_list_body {
        padding-top: 6px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .goods_list_name {
        font-size: 11px;
    }

    .goods_list_soldout {
        font-size: 13px;
        padding-top: 4px;
    }

    .goods_list_price {
        font-size: 11px;
        padding-top: 6px;
    }

    .goods_list_no {
        font-size: 14px;
    }

    .top_goods_link_all {
        margin-top: 20px;
    }

    /*最新情報*/
    .top_news_container {
        padding-bottom: 60px;
    }

    .top_news_list {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .top_news_date {
        width: 100%;
        padding-bottom: 4px;
        font-size: 12px;
    }

    .top_news_title {
        width: 100%;
        font-size: 14px;
    }

    .top_news_link_all {
        font-size: 15px;
        margin-top: 16px;
    }


    /*実店舗のご案内*/
/*
    .top_shop_container {
        padding-bottom: 70px;
    }
*/

    .top_shop_img {
        width: 100%;
    }

    .top_shop_body {
        width: 100%;
        margin-top: 20px;
    }

    .top_shop_link_all {
        font-size: 15px;
        margin: 32px auto 0;
    }

    /* 下層ページ
    ----------------------------------------------------*/

    /*パンくず*/

    .breadcrumbs {
        font-size: 11px;
        margin-top: 3px;
        margin-bottom: 18px;
    }

    /*ヘッディング*/

    .page_heading {
        font-size: 34px;
        padding-bottom: 24px;
    }

    /* 商品ページ　一覧
    ----------------------------------------------------*/

    .category_page_heading_sub {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .category_page_heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .category_page_img {
        margin-bottom: 20px;
    }

    .page_intro_text {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .goods_child_list {
        padding: 14px 12px;
    }

    .goods_child_item {
        padding-right: 8px;
        margin: 3px 9px 3px 0;
        font-size: 13px;
    }

    .goods_child {
        margin-top: 40px;
    }

    .category_name_child {
        font-size: 29px;
        margin-bottom: 10px;
    }

    .goods_grand + .goods_grand {
        margin-top: 28px;
    }

    .category_name_grand {
        font-size: 23px;
        padding: 0 0 8px;
        margin-bottom: 18px;
    }

    .no_items {
        font-size: 16px;
    }

    .goods_list_bottom {
        margin-top: 50px;
        font-size: 13px;
    }

    .goods_list_bottom > * + * {
        margin-top: 28px;
    }

    .category_zukan_container {
        margin-top: 40px;
    }

    .pagination {
        margin-top: 40px;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        font-size: 15px;
        margin: 0 6px;
    }

    /* 商品ページ　個別記事
    ----------------------------------------------------*/

    /*メイン画像*/

    .goods_header {
        margin-bottom: 24px;
    }

    .goods_name {
        font-size: 30px;
    }

    .goods_slider {
        margin-bottom: 32px;
    }

    #slider {
        width: 100%;
    }

    .flex-direction-nav a {
        top: calc(50% - 36px) !important;
        width: auto !important;
    }

    .flex-caption {
        font-size: 12px;
        line-height: 17px;
        height: 72px !important;
        padding: 10px 12px !important;
        margin-top: 8px !important;
    }

    #carousel {
        width: 100%;
        padding: 0;
        margin-top: 8px !important;
    }

    #carousel li {
        width: 23.5% !important;
        margin-right: 2% !important;
        margin-bottom: 5px !important;
    }

    #carousel li:nth-child(2n+1) {
        margin-right: 2% !important;
    }

    #carousel li:nth-child(4n) {
        margin-right: 0 !important;
    }

    /*メイン*/
    .goods_spec_cart {
        width: 100%;
    }

    /*スペック*/

    .goods_spec {
        padding-bottom: 12px;
        margin-bottom: 20px;
    }

    .goods_spec dt {
        width: 25%;
        font-size: 12px;
        padding-bottom: 10px;
    }

    .goods_spec dd {
        width: 75%;
        font-size: 13px;
        padding-left: 10px;
        padding-bottom: 10px;
    }

    .condition_icon,
    .rare_icon {
        height: 14px;
    }

    /*カート*/

    .goods_price {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .goods_price span {
        font-size: 12px;
        padding-right: 4px;
    }

    .goods_cart_title {
        font-size: 13px;
        padding-bottom: 8px;
    }

    .cart_in a + .goods_cart_title {
        margin-top: 18px;
    }

    .cart_memo {
        margin-top: 30px;
        font-size: 12px;
    }

    .cart_memo p + p {
        margin-top: 14px;
    }

    /*本文*/

    .goods_text {
        width: 100%;
        font-size: 14px;
        line-height: 1.8;
        margin-top: 60px;
    }

    .goods_text > * + * {
        margin-top: 20px;
    }

    /*自由記述の場合*/

    .goods_free {
        font-size: 13px;
    }

    .goods_free > * + * {
        margin-top: 28px;
    }

    /*旧サイトから移行*/
    #item_name {
        font-size: 15px;
    }

    #item_text p {
        font-size: 13px;
    }

    #item_text_subph {
        padding-left: 15px;
        width: 38%;
    }

    /* 写真リスト */

    .item_ph_list_1col,
    .item_ph_list_2col,
    .item_ph_list_3col {
        margin-left: -1.8%;
        margin-right: -1.8%;
    }

    .item_ph_list_1col li,
    .item_ph_list_2col li,
    .item_ph_list_3col li {
        padding: 0 1.8%;
    }

    .item_ph_list_1col li {
        margin-bottom: 10px;
    }

    .item_ph_list_2col li,
    .item_ph_list_3col li {
        width: calc(100% / 2);
        margin-bottom: 10px;
    }

    .item_caption {
        font-size: 11px;
        line-height: 16px;
    }

    /*スペック・カート*/
    .spec_cart_new_container {
        margin: 40px 0;
    }

    .spec_cart_new_container .cart_brand_name {
        padding: 0 0 8px;
        margin-bottom: 18px;
    }

    .spec_cart_new_container .cart_brand_name h3 {
        font-size: 24px;
    }

    .spec_cart_new_container .cart_brand_name h3 span {
        font-size: 14px;
        padding-left: 8px;
    }

    .spec_cart_new_container .spec_cart_new {
        margin: 0 -2%;
    }

    .spec_cart_new_container .spec_cart_new li {
        width: calc(100% / 2);
        padding: 0 2%;
    }

    .spec_cart_new_container .spec_cart_new li > a > img {
        margin-bottom: 8px;
    }

    .spec_cart_new_container .spec_cart_new li p {
        font-size: 12px;
    }

    .spec_cart_new_container .spec_cart_new li p.cart_name {
        font-size: 14px;
        padding-bottom: 8px;
    }

    .spec_cart_new_container .spec_cart_new li .cart_in {
        margin-top: 8px;
    }

    .spec_cart_new_container .spec_cart_new li .cart_in a img {
        width: 80%;
        margin: auto;
    }


    /* 図鑑
    ----------------------------------------------------*/

    .zukan_body {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }

    .zukan_body td {
        font-size: 11px;
    }

    .zukan_item_ph {
        padding-bottom: 6px;
    }

    .zukan_item_name {
        padding-bottom: 18px;
    }

    /**/


    .zukan_body h2 {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 5px;
    }

    .zukan_body h2 small {
        font-size: 17px;
    }

    .zukan_body #category_page_header #category_page_mokuji {
        padding: 12px 10px;
    }

    .zukan_body #category_page_header #category_page_mokuji li {
        display: block;
        padding: 3px 0;
    }

    .zukan_body #category_page_header #category_page_mokuji li + li:before {
        content: "";
        padding: 0;
    }

    .zukan_body .category_1st_cat {
        margin-bottom: 50px;
    }

    .zukan_body .category_1st_cat h3 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .zukan_body .category_1st_cat h3 small {
        font-size: 14px;
        letter-spacing: 0;
    }

    .zukan_body .category_2nd_cat {
        margin-bottom: 20px;
    }

    .zukan_body .category_2nd_cat h4 {
        font-size: 20px;
        padding-left: 10px;
    }
    
    .item_list > li{
        margin-bottom:12px;
    }
    .item_list>li:nth-child(3n+1){
        margin-left:0 !important;
    }
    .item_list>li:nth-child(3n){
        margin-right:0 !important;
    }

    .item_list > li p {
        font-size:11px;
        line-height: 15px;
    }
    
    .zukan_midashi{
        margin-top: 30px;
        padding-left: 14px;
        padding-right: 14px;
    }

    /* お知らせ　一覧
    ----------------------------------------------------*/

    .news_category {
        margin-bottom: 30px;
    }

    .news_category_item + .news_category_item{
        margin-left: 15px;
    }

    .news_category_link{
        font-size: 14px;
    }
    
    .news_body_container {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .no_article_text {
        font-size: 16px;
    }

    /*個別記事*/
    .news_header {
        margin-bottom: 30px;
    }

    .news_date {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .news_title {
        font-size: 19px;
    }

    .post_body {
        font-size: 14px;
    }

    .post_body > * + * {
        margin-top: 16px;
    }
    
    .post_body > * > * + * {
        margin-top: 6px;
    }

    .post_body h2 {
        font-size: 20px;
    }

    .post_body h2:not(:first-child){
        margin-top: 40px;
    }
    
    .post_body h3{
        margin-top: 20px;
    }
    
    .news_body img{
        margin-bottom: 16px;
    }

    .news_body img:not(:first-child){
        margin-top: 16px;
    }

    /* 固定ページ
    ----------------------------------------------------*/

    .page_kotei_heading {
        font-size: 24px;
        padding-bottom: 30px;
    }

    /* 検索ページ
    ----------------------------------------------------*/

    .search_form {
        margin-bottom: 30px;
    }

    .search_form .search_keyword {
        width: calc(100% - 30px);
        font-size: 16px;
        padding: 8px 6px;
    }

    .search_form .search_submit {
        width: 22px;
        right: 12px;
    }

    .search_summary {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 30px;
    }
    

    /* 実店舗のご案内
    ----------------------------------------------------*/

    .shop_bs{
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 30px 0;
    }

    .shop_bs_heading{
        font-size: 16px;
    }

    .shop_map{
        margin-bottom: 40px;
        flex-direction: column-reverse;
    }

    .shop_map_body{
        width: 100%;
        padding-right: 0;
    }

    .shop_map_img{
        width: 100%;
        margin-bottom: 30px;
    }

    .shop_sister{
        margin-top: 30px;
    }

    .shop_sister_img {
        width: 100%;
    }

    .shop_sister_inner + .shop_sister_inner{
        margin-top: 40px;
    }

    .shop_sister_body {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .shop_sister_body h3{
        margin-top: 0;
        margin-bottom: 16px;
    }


    /* 特定商取引法
    ----------------------------------------------------*/

    .tokutei_name{
        width: 28%;
        padding: 10px 6px;
    }

    .tokutei_detail{
        width: 72%;
        padding: 10px 6px;
    }


    /* お問い合わせ
    ----------------------------------------------------*/
    
    .form_container input,
    .form_container textarea {
        width: 100%;
    }

    .form_submit {
        padding-top: 10px;
        width: 200px;
    }
    
    .form_submit input{
        padding: 12px 0;
        font-size: 18px;
    }
    
    /* 404　エラーページ
    ----------------------------------------------------*/
    
    .error_intro_title_en{
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .error_intro_title {
        font-size: 20px;
    }

    .error_link_top {
        margin-top: 40px;
    }


}
