@charset "UTF-8";

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

html {
    scroll-behavior: auto;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    font-family: 'Noto Serif JP', sans-serif;
    line-height: 1.8;
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0 !important;
    background-color: #5C1317;
    color: #fff;
}

body img {
    width: 100%;
    vertical-align: bottom;
}

body figure {
    margin: 0 !important;
}

body a {
    color: #fff;
    text-decoration: none;
}

body li {
    text-decoration: none !important;
    list-style: none;
}

main {
    max-width: 100%;
    text-align: center;
    margin: auto;
}

h3 {
    font-weight: 400;
}

@media screen and (max-width:500px) {
    body {
        font-size: 14px;
    }
}

/* =============
    common
============= */

.bold {
    font-weight: bold;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

.sp-item {
    display: none;
}

.tab-item {
    display: none;
}

.left {
    text-align: left;
}

.start {
    align-items: start;
}

.none {
    display: none !important;
}

@media (max-width:1400px) {
    .tab-item {
        display: none;
    }
}

@media (max-width:1300px) {
    .tab-item {
        display: block;
    }
}

@media screen and (max-width:769px) {
    .pc-item {
        display: none;
    }

    .sp-item {
        display: block;
    }
}

/* ベース */

.btn-more {
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 16px;
    color: #fff;
    display: inline-block;
}

.btn-more:before,
.btn-more:after {
    position: absolute;
    height: 1px;
    top: 60%;
    background: #fff;
    content: '';
    opacity: 0.2;
}

.btn-more:before {
    width: 100px;
    transform: translateY(-50%);
    left: -160px;
    transition: 0.5s ease;
}

.btn-more:after {
    width: 8px;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
    left: -68.1px;
    transition: 0.5s ease;
}

.btn:hover {
    opacity: 0.5;
}

.btn:hover .btn-more:before {
    width: 150px;
}

.btn:hover .btn-more:after {
    left: -20px;
}

.btn {
    width: 25%;
    padding: 10px 0;
    cursor: pointer;
    transition: 0.5s ease;
}

.cont-Wrap {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin: 0 10.3%;
    padding-bottom: 100px;
}

@media (max-width: 1200px) {
    .cont-Wrap {
        margin: 0 6.8%;
        padding-bottom: 100px;
    }
}

@media screen and (max-width:769px) {
	
.btn-more {
    font-size: 13px;
}

}

.box_Wrap {
    padding-bottom: 100px;
}

.in_txt {
    text-align: justify;
}

.right{
	text-align: right;
	margin-left: auto !important;
}
/* =============
    commonここまで
============= */
/* =============

     ヘッダー

============= */
.global-nav {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 950;
    height: 100px;
    color: #fff;
    margin: 0 10.3%;
}

@media (max-width: 1200px) {
    .site-header {
        margin: 0 6.8%;
        height: auto;
    }
}

.header-inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.header-logo {
    z-index: 1000;
    width: 15%;
}

.header-logo img {
    display: block;
    width: 100%;
    z-index: 1000;
}

.global-nav-pc {
    width: 60%;
}

.global-nav-pc nav {
    flex-grow: 1;
}

.global-nav-pc nav ul {
    display: flex;
    width: 100%;
    justify-content: center;
}

.global-nav-pc .gn-section-list li a {
    font-size: 17px;
}

.store_btn-pc {
    width: 25%;
}

.store_btn-pc a {
    display: block;
    background-color: #000;
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 35px 20px;
    transition: 0.5s ease;
}

.store_btn a {
    transition: 0.5s ease;
}

.store_btn-pc a:hover,
.store_btn a:hover {
    opacity: 0.5;
}

.header-menu-label {
    font-size: 14px;
    letter-spacing: 0.1em;
}

.header-menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    z-index: 999;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

/* ====================

     グローバルナビ（全画面） 

====================  */

.global-nav {
    position: fixed;
    inset: 0;
    z-index: 900;
    transform: translateX(100%);
    /* opacity: 0; */
    pointer-events: none;
    transition: transform .4s ease, opacity .4s ease;
    text-align: left;
}

.global-nav-blocks {
    width: 86.4%;
    margin: 0 auto;
}

.global-nav-blocks .sns {
    justify-content: flex-start;
}

.global-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 900;
}

.global-nav-inner {
    position: relative;
    background: #5C1317;
    width: 100%;
    margin-left: auto;
    /* 右側から出てくる */
    height: 100%;
    padding: 120px 0 32px;
    overflow-y: auto;
}


/* 各リスト */
.gn-section-list {
    list-style: none;
    padding: 0;
}


.gn-section-list a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.gn-section-list a span {
    transition: 0.5s ease;
}

.gn-section-list a {
    transition: 0.3s;
}

.gn-section-list a:hover {
    opacity: 0.5;
}

.gn-section-list li {
    margin: 0 10px;
}

.gn-section-list li a {
    display: inline-block;
    position: relative;
    line-height: 2;
    text-decoration: none;
    transition: transform 0.5s ease;
    transition: 0.5s ease;
    font-weight: 600;
}

.gn-section-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .8s ease;
    background-color: #fff;
    opacity: 0.5;
}

.gn-section-list a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.gn-section-list a:not(:hover)::after {
    transform-origin: right;
}

@media (max-width: 1000px) {
    .global-nav-pc .gn-section-list li a {
        font-size: 14px;
    }

    .gn-section-list li {
        margin: 0 5px;
    }
}

@media (max-width: 768px) {
    .global-nav-pc,
    .store_btn-pc {
        display: none;
    }

    .global-nav {
        display: block;
    }

    .store_btn,
    .contact_btn {
        margin: 6% 0;
    }

    .store_btn a {
        display: block;
        margin: 10px 0;
        background-color: #000;
        width: 100%;
        text-align: center;
        font-size: 25px;
        padding: 25px 0;
    }

    .contact_btn a {
        display: block;
        width: 100%;
        text-align: center;
        border: #fff solid 1px;
        border-radius: 10px;
        padding: 15px 0;
    }

    .site-header {
        padding: 28px 0;
    }

    .header-menu-btn {
        padding: 0 10px;
        gap: 12px;
    }

    .header-logo {
        width: 120px;
    }

    /* ハンバーガーアイコンの設置スペース */
    .drawer_open {
        display: flex;
        width: 30px;
        height: 60px;
        align-items: center;
        position: relative;
        z-index: 1000;
        cursor: pointer;
    }

    .gn-section-list li {
        margin: 0px;
        font-size: 25px;
    }

    .gn-section-list a::before {
        font-size: 20px;
    }

    /* ============================
   ハンバーガーメニューのアイコン
   ============================ */
    .header-menu-icon {
        position: relative;
        width: 24px;
        display: inline-block;
        cursor: pointer;
    }

    .header-menu-icon {
        position: relative;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-menu-icon span,
    .header-menu-icon span:before,
    .header-menu-icon span:after {
        content: '';
        display: block;
        height: 1.2px;
        width: 30px;
        border-radius: 0px;
        background: #fff;
        transition: 0.5s;
        position: absolute;
    }

    /* 三本線の一番上の棒の位置調整 */
    .header-menu-icon span:before {
        bottom: 8px;
    }

    /* 三本線の一番下の棒の位置調整 */
    .header-menu-icon span:after {
        top: 8px;
    }

    /* ✅ checked の時：inputの “次のlabel” の中にある線を×にする */
    #drawer_input:checked+label.header-menu-btn .header-menu-icon>span {
        background: transparent;
    }

    #drawer_input:checked+label.header-menu-btn .header-menu-icon>span::before {
        top: 0;
        transform: rotate(45deg);
    }

    #drawer_input:checked+label.header-menu-btn .header-menu-icon>span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .drawer_open:checked~.gloval-nav {
        height: 100%;
        padding-top: 150px;
        position: fixed;
        bottom: 100%;
        right: 0;

        z-index: 99;
        background: #fff;
        transition: .5s;
    }

}

/* ============================
   下のCTA
   ============================ */
/* ============================
   フッター上CTAボタン
   ============================ */

.footer-cta {
    display: flex;
    width: 100%;
    padding: 20px 0 0;
}

.footer-cta__item {
    position: relative;
    width: 50%;
    padding: 140px 0;
    overflow: hidden;
    background: #e4e4e4;
    color: #5C1317;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.4s ease;
    border: 1px solid #5C1317;
}

/* 真ん中の線 */
.footer-cta__item+.footer-cta__item {
}

/* ホバー画像 */
.footer-cta__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition:
        opacity 0.5s ease,
        transform 0.8s ease;
}

/* 左：ONLINE STOREの画像 */
.footer-cta__online::before {
    background-image: url("../img/btn_bg_store.jpg");
}

/* 右：ORDER／CONTRACTの画像 */
.footer-cta__order::before {
    background-image: url("../img/btn_bg_order.jpg");
}

/* 画像の上に少し暗い膜 */
.footer-cta__item::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.footer-cta__item:hover {
    color: #fff;
}

.footer-cta__item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-cta__item:hover::after {
    opacity: 1;
}

/* テキスト */
.footer-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-cta__content h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
}

.footer-cta__content p {
    font-size: 16px;
    margin: 8px 0 0;
    letter-spacing: 0.06em;
}

@media (max-width: 1200px) {
    .footer-cta__content h2 {
        font-size: 3vw;
    }

    .footer-cta__content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .footer-cta {
        flex-direction: column;
        padding-top: 12px;
    }

    .footer-cta__item {
        width: 100%;
        height: 170px;
    }

    .footer-cta__item+.footer-cta__item {
        border-top: none;
    }

    .footer-cta__content h2 {
        font-size: 24px;
    }

    .footer-cta__content p {
        font-size: 11px;
    }
}

/* ===== フッター ===== */

.footer {
    background: #5C1317;
    color: #fff;
    padding: 80px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 10.3%;
}

@media (max-width: 1200px) {
    .footer-inner {
        margin: 0 6.8%;
        height: auto;
    }
}

/* 左 */
.footer-left {
    max-width: 400px;
    text-align: left;
}

.footer-left img {
    width: 180px;
    margin-bottom: 50px;
}

.logo {
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.company {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 15px;
    text-align: left;
}

.copy {
    font-size: 12px;
    opacity: 0.8;
}

/* ナビ */
.footer-nav {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-nav li {
    margin-bottom: 6px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.4s;
}

.icon:hover,
.footer-nav a:hover {
    opacity: 0.5;
}

/* 右 */
.footer-right {
    text-align: right;
}

.contact_btn a {
    display: block;
    width: 200px;
    text-align: center;
    border: #fff solid 1px;
    border-radius: 10px;
    padding: 15px 0;
    margin-bottom: 118px;
    transition: .4s;
}

.contact_btn a:hover {
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
}

/* SNS */
.sns {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    transition: 0.4s;
}


@media (max-width: 769px) {
    .footer {
        padding: 0;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 86.4%;
        padding: 50px 0;
    }

    .footer-right {
        width: 100%;
    }

    .store_btn {
        width: 100%;
    }

    .parent {
        display: flex;
    }

    .child1 {
        order: 3;
    }

    .child3 {
        order: 2;
    }

    .sns {
        justify-content: flex-start;
        margin-bottom: 50px;
    }

    .contact_btn {
        margin: 30px 0;
    }

    .contact_btn a {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        transition: .4s;
    }
}

/* ============================
 ページの共通
   ============================ */
.page_top {
    margin-right: 10.3% !important;
    text-align: left;
    aspect-ratio: 0;
    position: relative;
}

.page-Wrap {
    padding-top: 100px;
}

@media (max-width: 1200px) {
    .page_top {
        margin-right: 6.8% !important;
        height: auto;
    }

    .cont-Wrap {
        margin: 0 6.8%;
        padding-bottom: 100px;
    }
}

.page_top img {
    height: 350px !important;
    object-fit: cover;
}

.page_top-txt {
    position: absolute;
    font-size: 10.3vw;
    line-height: 1;
    opacity: 0.5;
    margin-top: -7%;
    right: 0;
    text-align: right;
}

@media (max-width: 769px) {
    .page_top-txt {
        font-size: 18.4vw;
        margin-top: -12%;
    }
}

.page_h2 {
    margin-bottom: 50px;
    text-align: left;
}

.page_h2 h2 {
    font-size: 30px;
}

.page_h2 p{
	padding: 0;
}
/* ===== アニメーション ===== */
.blur-in {
    opacity: 0;
    filter: blur(13px);
    transform: translateY(30%) scale(0.90);
	transition:
        opacity 0.5s ease,
        filter 0.5s ease,
        transform 0.5s ease;
	pointer-events:none;
}

/* 発火したら初めてtransitionつける */
.blur-in.active {
    opacity: 0.5;
    filter: blur(0);
    transform: translateY(0) scale(1);
    transition:
        opacity 1.5s ease,
        filter 1.5s ease,
        transform 1.5s ease;
}


/* 初期状態：非表示＋下に少しズラす */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

/* 発火後：フェードイン＋位置戻す */
.fade-in.is-inview {
    opacity: 1;
    transform: translateY(0);
}



/* アニメ前は非表示状態 */
.fade-in,
.reveal,
.js-stagger .fade-in {
    opacity: 0;
    transform: translateY(20px);
}

/* 動画終了後（body.anim-ready）＋クラスが付いたら表示 */
body.anim-ready .fade-in.active,
body.anim-ready .reveal.is-inview,
body.anim-ready .js-stagger .fade-in.is-inview {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
}



/* ======================
  ABOUT
====================== */

.flex1 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.flex1_reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.text2 {
    font-size: 12px;
    margin-top: 20px;
}

.flex1_l,
.flex1_reverse_l {
    width: 47%;
}

.flex1_r,
.flex1_reverse_r {
    width: 47%;
    height: auto;
}

.brand-policy_cont {
    display: flex;
    justify-content: space-between;
}

.brand-policy_item {
    width: 30.5%;
    text-align: left;
}

.about2 h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wp-block-cover {
    padding: 0 !important;
}

@media (max-width: 769px) {

    .flex1,
    .flex1_reverse,
    .brand-policy_cont {
        display: block;
    }

    .flex1_l,
    .flex1_r,
    .flex1_reverse_l,
    .flex1_reverse_r,
    .brand-policy_item {
        text-align: left;
        width: 100%;
    }

    .flex1_reverse_r,
    .flex1_l,
    .brand-policy_item {
        margin-bottom: 50px;
    }

}

/* ======================
SUPPORT
====================== */
.suppport_contact_wrap {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    box-sizing: border-box;
    margin: 30px 0 80px;
}

.contact_btn_box {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 20px 30px 55px;
    text-align: center;
    color: #fff;
}

.contact_btn_sub {
    font-size: 16px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.tel_number {
    text-decoration: none;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    display: inline-block;
    font-family: 'Noto sons JP', sans-serif;
}

/* ボタン */
.suppport_contact_wrap .contact_btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto sons JP', sans-serif;
    font-size: 22px;
    width: 300px;
    margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
    .contact-wrap {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    .contact-box {
        padding: 25px 20px 30px;
    }

    .tel-number {
        font-size: 30px;
        line-height: 1.3;
    }

    .contact-button {
        width: 100%;
        min-width: auto;
        height: 60px;
        font-size: 16px;
    }

    .suppport_contact_wrap {
        display: block;
    }

    .contact_btn_box {
        margin-bottom: 20px;
    }
}

/* 表 */
.pdf-table table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    color: #fff;
    font-family: serif;
    margin-bottom: 80px
}

.pdf-table thead {
    border-bottom: none !important;
}

.pdf-table th,
.pdf-table td {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    padding: 30px 20px !important;
    vertical-align: middle;
    text-align: left;
	
}

.pdf-table th {
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    padding: 10px !important;
}

.pdf-table td:first-child {
    width: 26%;
    font-size: 16px;
}

.pdf-table td:nth-child(2) {
    width: 74%;
}

.pdf-table a {
    display: block;
    color: #fff;
	text-decoration: underline 0.6px solid #fff;
    text-underline-offset: 2px;
    font-size: 16px;
    line-height: 0;
}

@media screen and (max-width: 768px) {
    .pdf-table-wrap {
        padding: 15px 10px;
    }

    .pdf-table {
        width: 100%;
    }

    .pdf-table th,
    .pdf-table td {
        padding: 16px 12px;
    }

    .pdf-table td:first-child {
        width: 30%;
        font-size: 12px;
    }

    .pdf-table a {
        font-size: 12px;
        line-height: 1.8;
    }
}

.has-text-align-left{
	width: 30%;
}



.wp-block-accordion-heading {
	padding: 0 20px;
	font-size: 16px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	text-align: left;
	transition:  .6s ease;
}

.wp-block-accordion-panel-is-layout-flow p{
		padding: 25px 20px;
	text-align: left;
	transition:  .6s ease;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title{
	text-decoration: none !important;
}

.wp-block-accordion-heading__toggle-icon{
	font-size: 35px;
	font-weight: 400;
}

/* ============================
   FAQ：WordPress標準アコーディオン
   開閉を滑らかにする
============================ */

/* 回答：閉じている状態 */
.faq_list .wp-block-accordion-panel {
  display: block !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition:
    max-height 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    padding-top 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    padding-bottom 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 回答：開いている状態 */
.faq_list .wp-block-accordion-item.is-open .wp-block-accordion-panel {
  max-height: 300px;
  opacity: 1;
  padding-top: 0 !important;
}

/* 回答テキストの余白 */
.faq_list .wp-block-accordion-panel p {
  margin: 0;
}


/* ======================
  ORDER
====================== */
.youtube-Wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin: 0 10.3%;
}

.youtube-Wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 769px) {
    .youtube-Wrap {
        margin: 0;
        padding-bottom: 100px;
    }
}


/* ============================
   CSSだけで作る無限横スクロール
   ============================ */

.order_slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 70px;
    padding-bottom: 100px;
}

.slider-track {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: loopScroll 35s linear infinite;
    will-change: transform;
}

.slide {
    flex: 0 0 auto;
    width: 500px;
    height: 350px;
    overflow: hidden;
}

.slide img {
    display: block;
    width: 100% !important;
    height: 350px !important;
    object-fit: cover;
}

/* ホバーで一時停止 */
/* .slider:hover .slider-track {
    animation-play-state: paused;
} */

@keyframes loopScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* タブレット */
@media screen and (max-width: 769px) {
    .slider-track {
        gap: 13px;
    }

    .slide {
        width: 200px;
        height: 170px;
    }

    .slide img {
        height: 170px !important;
    }
}

/* スマホ */
@media (max-width: 480px) {
    .slider {
        margin-top: 50px;
    }

    .slider-track {
        animation-duration: 20s;
    }
}


/* ======================
  SHOP
====================== */

.shop_cont{
	display:flex;
	justify-content:space-between;
	padding: 50px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.5)
}

.shop_cont .map{
	width:50%;
	filter: grayscale(100%);
}
.shoplist_item {
    width: 45%;
    text-align: left;
    
}

.shop_cont:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:769px) {
.shop_cont{
	display:block;
}
	
.shop_cont .map{
	width:100%;
	
}
.shoplist_item {
    width: 100%;
	margin-bottom:20px;
}
	

}

/* ======================
  お問合せ
====================== */

.contact {
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.contact_l {
    width: 64%;
}

.contact_r {
    width: 31%;
    border-top: 1px solid rgba(255, 255, 255, 0.5)
}

.contact_r a {
    display: block;
    border: none;
}

.address {
    margin-top: 20px;
}

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

    .contact {
        display: block;
    }

    .contact_l,
    .contact_r {
        width: 100%;
    }

    .contact_r {
        margin-top: 50px;
    }
}

.hr {
    color: #cccccc;
}

.rink_icon {
    padding: 4px 8px 3px 16px;
    color: #cccccc;
    /* 矢印は少し薄いグレー */
    font-size: 24px;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    display: inline-block;
    transform: rotate(90deg);
}

@media screen and (max-width:500px) {
    .rink_icon {
        font-size: 21px;

    }
}

/* =========================
   CF7 お問い合わせフォーム
========================= */

.cf7-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.cf7-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    align-items: center;
}

.cf7-row p {
    margin: 0;
}

.wpcf7 .hidden-fields-container {
    display: none;
}

.cf7-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}

.cf7-label span {
    margin-right: 10px;
    font-size: 10px;
    margin-bottom: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 4px 5px;
}

.badge.required {
    background: #000;
}

.badge.optional {
    background: #666666;
}

/* 入力欄 */
.cf7-control input,
.cf7-control select,
.cf7-control textarea {
    width: 100%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 14px 16px;
    font-size: 16px;
    box-sizing: border-box;
    color: #fff;
}

.cf7-control textarea {
    min-height: 240px;
    resize: vertical;
}

/* selectの矢印 */
.cf7-control select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

/* 送信ボタン */
.cf7-actions {
    padding-top: 34px;
    text-align: center;
}

.cf7-actions input[type="submit"] {
    background-color: #5C1317;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 17px 90px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.cf7-actions input[type="submit"]:hover {
    opacity: 0.5;
}

@media (max-width: 769px) {
    .cf7-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cf7-label {
        font-size: 16px;
    }

    .cf7-actions input[type="submit"] {
        width: 100%;
    }
}

.wpcf7-response-output{
	margin-top: 50px;
	
}

/* ======================
  Archive List
====================== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 100px;
}

.news-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.news-thumb img {
    width: 370px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.news-body {
    flex: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.news-category {
    display: inline-block;
    text-align: center;
    width: 98px;
    border-radius: 999px;
    border: 1px solid #cccccc;
    font-size: 10px;
}

.news-date {
    font-size: 16px;
}

.news-title {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.news-title a {
    text-decoration: none;
}

.news-pagination {
    margin-top: 60px;
}

@media (max-width: 769px) {
    .news-card {
        display: block;
        gap: 48px;
        align-items: flex-start;
    }

    .news-thumb {
        margin-bottom: 20px;
    }

    .news-thumb img {
        width: 100%;
    }

    .news-meta {
        flex-wrap: wrap;
    }
}

/* ======================
  Single
====================== */
.news-single {
    width: 63%;
    text-align: left;
}

.news-single p {
    margin-bottom: 25px;
	padding: 0;
}

.news-single__article
.wp-block-columns {
    gap: 0.75em;
}

.news-single__article .wp-block-image img{
	margin-bottom: 10px;
}

:where(.wp-block-columns){
	margin-bottom: 0 !important;
}

.news-single__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.news-single__title {
    font-size: 32px;
    line-height: 1.4;
    margin: 0 0 37px;
    text-align: left;
}

.news-single__article
.wp-block-columns {
    gap: 10px;
}

@media (max-width: 768px) {
	.news-single__article
	.wp-block-columns {
    gap: 0px;
}
}

.news-single__thumb img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 28px;
}

.news-single__content {
    font-size: 16px;
    line-height: 1.9;
}


.news-single__content a {
    color: #0064CC;
}

.news-single__foot {
    margin-top: 55px;
}

.nav-archive{
	text-align:right;
	margin-left:auto;
}

/* 右寄せの外枠：PCは右に配置 */
.recent-wrap {
    display: flex;
    justify-content: space-between;
}

.recent-box {
    width: 30%;
}

/* 見出し：タブ＋線 */
.recent-head {
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.recent-label {
    text-align: left;
    margin: auto;
    display: inline-block;
    padding: 7px 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;
    border-bottom: 1px solid #5C1317;
    border-radius: 5px 5px 0 0;
    font-size: 13px;
    margin-bottom: -2px;
    background-color: #5C1317;
}

.recent-line {
    margin: auto;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.recent-item {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    text-align: left;
    font-size: 16px;
}

.recent-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.recent-cat {
    display: inline-block;
    min-width: 60px;
    text-align: center;
    padding: 6px 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.recent-date {
    font-size: 16px;
}

.recent-title {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.recent-title a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .recent-wrap {
        justify-content: flex-start;
    }

    .recent-box {
        width: 100%;
    }

    .recent-wrap {
        display: block;
    }

    .news-single {
        width: 100%;
        padding-bottom: 100px;
    }
}



/* ============================
   NEWS一覧ページ
============================ */

.news-tabs {
    margin-bottom: 70px;
}

.news-tabs ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.news-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-family: "Times New Roman", "Yu Mincho", "YuMincho", serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.news-tabs a:hover,
.news-tabs a.is-active {
    background: rgba(255, 255, 255, 0.45);
    color: #fff;
}


.news-list {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.news-item {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 42px;
    align-items: start;
    color: #fff;
    text-decoration: none;
}

.news-item__image {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-item:hover .news-item__image img {
    transform: scale(1.06);
}

.news-item__content {
    padding-top: 4px;
}

.news-item__meta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
}

.news-item__cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 5px 18px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
}

.news-item__date {
    font-size: 15px;
    letter-spacing: 0.04em;
}

.news-item__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-align: left;
}

.news-empty {
    color: #fff;
    opacity: 0.75;
}

.news-item__noimage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    color: #777;
}

@media screen and (max-width: 1024px) {
    .news-tabs ul {
        gap: 12px;
    }

    .news-item {
        grid-template-columns: 300px 1fr;
        gap: 32px;
    }
}

@media screen and (max-width: 768px) {
    .news-tabs {
        margin-bottom: 44px;
        overflow: visible;
        padding-bottom: 0;
    }

    .news-tabs ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        min-width: 0;
    }

    .news-tabs li {
        flex: 0 1 calc(33.333% - 7px);
    }

    .news-tabs a {
        width: 100%;
        min-height: 46px;
        font-size: 14px;
    }

    .news-list {
        gap: 48px;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .news-item__meta {
        gap: 14px;
        margin-bottom: 12px;
    }

    .news-item__cat {
        min-width: 80px;
        padding: 5px 14px;
        font-size: 11px;
    }

    .news-item__date {
        font-size: 13px;
    }

    .news-item__title {
        font-size: 17px;
    }
}


/* ============================
  PRODUCT一覧
============================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 80px;
}

/* No Image */
.product-card__noimage {
    width: 100%;
    height: 100%;
    background: #ddd;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-card__title {
        font-size: 14px;
    }
}

/* ============================
   PRODUCT hover fade slider
============================ */

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #FFF;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.product-card__slide.is-active {
    opacity: 1;
}

.product-card__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 商品名オーバーレイ */
.product-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__title {
    display: block;
    width: 100%;
    margin: 0;
    padding: 7px;
	line-height: 1.2;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0em;
    text-align: left;
    text-decoration: none;
    transform: translateY(100%);
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
    pointer-events: auto;
	background-color: #5C1317;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card:hover .product-card__title {
    transform: translateY(0);
}

.product-card__title:hover {
    opacity: 0.5;
}

/* 現在表示されている画像 */
.product-card__slide.is-current {
  opacity: 1;
  z-index: 1;
}

/* 次に重なってくる画像 */
.product-card__slide.is-entering {
  z-index: 2;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* フェード開始後 */
.product-card__slide.is-entering.is-visible {
  opacity: 1;
}


/* ============================
   PRODUCT：スマホ時の商品名リンク表示
============================ */
@media screen and (max-width: 768px) {
  .product-card__title {
    text-decoration: underline;
    text-underline-offset: 3px;
    transform: translateY(0);
	  pointer-events: auto;
	  font-size: 12px;
  }
.product-card__image-link {
	pointer-events: none;
}

  .product-card__title::after {
    content: ">";
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
	  	  font-size: 10px;
  }

}