@charset "UTF-8";
/* ============================================
   Meet Takahashi - Stylesheet
   ============================================ */

/* -------------------------
   Variables
   ------------------------- */
:root {
    --color-primary: #B93629;
    --color-primary-dark: #962d22;
    --color-black: #211F1F;
    --color-text: #211F1F;
    --color-text-light: #7D7D7D;
    --color-gray: #999;
    --color-border: #ddd;
    --color-bg-light: #f5f5f5;
    --color-bg-dark: #2b2b2b;
    --color-white: #fff;
    --font-en: "Roboto", "Arial", sans-serif;
    --font-ja: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --content-width: 1200px;
    --header-height: 80px;
    --header-height-sp: 60px;
    --transition: 0.3s ease;
}

/* -------------------------
   Reset / Base
   ------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    font-feature-settings: "palt";
    font-size: 16px;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body:not(.home) {
    background-color: #F0F0F0;
}

.w-1200{
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 1200px) {
    .w-1200 {
        padding: 0 20px;
    }
}

.w-1100{
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 1100px) {
    .w-1100 {
        padding: 0 20px;
    }
}

.w-840{
    max-width: 840px;
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 840px) {
    .w-840 {
        padding: 0 20px;
    }
}

/* body固定（ハンバーガーメニュー開閉時） */
body.is-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: 0.7;
}

ul, ol {
    list-style: none;
}

br.sp {
    display: none;
}

/* InView アニメーション */
.js-inview {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-inview.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* InView Stagger - 子要素を順番に表示 */
.js-inview-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-inview-stagger.is-inview > * {
    opacity: 1;
    transform: translateY(0);
}

.js-inview-stagger.is-inview > *:nth-child(1) { transition-delay: 0s; }
.js-inview-stagger.is-inview > *:nth-child(2) { transition-delay: 0.15s; }
.js-inview-stagger.is-inview > *:nth-child(3) { transition-delay: 0.3s; }

@media screen and (max-width: 768px) {
    .js-inview-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   Layout - Header
   ============================================ */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #424242;
    z-index: 1000;
    color: #fff;
}

.l-header__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.l-header__logo {
    flex-shrink: 0;
}

.l-header__logo a {
    color: #fff;
    display: block;
}

.l-header__logo img {
    height: 40px;
    width: auto;
}

/* PC Nav */
.l-header__nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.l-header__nav-item a {
    display: block;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    transition: color var(--transition);
}


.l-header__nav-item a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.l-header__nav-item a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 選ばれる理由 - PC：ホバーで開くドロップダウン */
.l-header__nav-item--has-child {
    position: relative;
}

.l-header__nav-toggle {
    display: block;
    padding: 0 24px 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    transition: color var(--transition);
}

.l-header__nav-toggle::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-60%) rotate(45deg);
    transition: border-color var(--transition);
}

.l-header__nav-toggle:hover {
    color: #fff;
}

.l-header__nav-toggle:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
}

.l-header__nav-child {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: #424242;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.l-header__nav-item--has-child:hover .l-header__nav-child {
    opacity: 1;
    visibility: visible;
}

.l-header__nav-child li a {
    padding: 10px 20px;
    font-size: 12px;
    color: #fff;
    display: block;
    white-space: nowrap;
}

.l-header__nav-child li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* SP nav-head / ハンバーガー（PCでは非表示） */
.l-header__nav-head {
    display: none;
}

.l-header__hamburger {
    display: none;
}

/* main余白（ヘッダー固定分） */
.l-main {
    padding-top: var(--header-height);
}

/* ============================================
   Layout - Header SP
   ============================================ */
@media (max-width: 1024px) {
    .l-header {
        height: var(--header-height-sp);
    }

    .l-header__inner {
        padding: 0 20px;
        height: var(--header-height-sp);
    }

    .l-header__logo a {
        display: flex;
        align-items: center;
        width: 160px;
    }

    .l-header__logo img {
        height: 28px;
    }

    .l-main {
        padding-top: var(--header-height-sp);
    }

    /* PC Navを隠す */
    .l-header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
        z-index: 999;
    }

    .l-header__nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    /* SP nav-head */
    .l-header__nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 60px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        background: #424242;
        border-bottom: none;
    }

    .l-header__nav-logo img {
        height: 28px;
        width: auto;
    }

    .l-header__nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }

    .l-header__nav-close span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
    }

    .l-header__nav-close span:first-child {
        transform: rotate(45deg);
    }

    .l-header__nav-close span:last-child {
        transform: rotate(-45deg);
    }

    .l-header__nav-list {
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 0 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .l-header__nav.is-open .l-header__nav-list {
        transform: translateX(0);
    }

    .l-header__nav-item a {
        line-height: 1;
        padding: 18px 30px;
        font-size: 1.5rem;
        border-bottom: 1px solid var(--color-border);
        color: var(--color-text);
    }

    .l-header__nav-item a::after {
        display: none;
    }

    /* SP：選ばれる理由 アコーディオン */
    .l-header__nav-item--has-child:hover .l-header__nav-child {
        opacity: 1;
        visibility: visible;
    }

    .l-header__nav-toggle {
        width: 100%;
        padding: 18px 30px;
        font-size: 1.5rem;
        color: var(--color-text);
        text-align: left;
        border-bottom: 1px solid var(--color-border);
        position: relative;
    }

    .l-header__nav-toggle::after {
        content: "";
        position: absolute;
        right: 30px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--color-text);
        border-bottom: 2px solid var(--color-text);
        transform: translateY(-60%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    .l-header__nav-toggle.is-open::after {
        transform: translateY(-30%) rotate(-135deg);
    }

    .l-header__nav-toggle:hover {
        color: var(--color-text);
    }

    .l-header__nav-child {
        position: static;
        transform: none;
        min-width: 0;
        background: var(--color-bg-light);
        padding: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .l-header__nav-child.is-open {
        max-height: 200px;
    }

    .l-header__nav-child li a {
        padding: 14px 30px 14px 46px;
        font-size: 1.4rem;
        color: var(--color-text);
        border-bottom: 1px solid var(--color-border);
    }

    /* ハンバーガー表示 */
    .l-header__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1001;
        -webkit-tap-highlight-color: transparent;
    }

    .l-header__hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 1px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* ハンバーガー → ×（クロス） */
    .l-header__hamburger.is-active span {
        background: var(--color-text);
    }

    .l-header__hamburger.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .l-header__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .l-header__hamburger.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ============================================
   Layout - Footer
   ============================================ */
.l-footer {
    background: #FDFDFD;
    color: #211F1F;
    padding: 40px 0 40px;
}

.l-footer__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 40px;
}

.l-footer__nav {
    margin-bottom: 0;
}

.l-footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 48px;
    margin-top: 32px;
}

.l-footer__nav-list li a {
    font-size: 16px;
    font-weight: 500;
    transition: all .25s ease;
    position: relative;
}
.l-footer__nav-list li a::before {
    position: absolute;
    width: 1px;
    height: 100%;
    display: block;
    background-color: #C09933;
    content: "";
    display: block;
    right: -24px;
}
.l-footer__nav-list li:last-child a:before {
    display: none;
}

.l-footer__copyright {
    text-align: center;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.04em;
    background-color: #211F1F;
    padding: 15px;
}

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

    .l-footer__inner {
        padding: 0 20px;
    }

    .l-footer__nav-list {
        flex-direction: inherit;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .l-footer__nav-list li {
        width: calc(50% - 12px);
    }

    .l-footer__nav-list li a::before,
    .l-footer__nav-list li a::after {
        display: none;
    }

    .l-footer__nav-list li a {
        font-size: 1.4rem;
    }

    .l-footer__copyright {
        font-size: 1.0rem;
    }
}

/* ============================================
   共通 - ページヘッダー（下層MV）
   ============================================ */
.p-page-header {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    text-align: center;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}


.p-page-header > * {
    position: relative;
    z-index: 1;
}

.p-page-header__en {
    font-family: var(--font-en);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.p-page-header__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}
.p-page-header__title span{
    color: #FFC326;
    font-size: 32px;
    font-family: var(--font-en);
    font-weight: 700;
    line-height: 1.2;
}

.p-page-header__lead {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.06em;
}

.p-page-header__lead strong {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .p-page-header {
        height: 200px;
        border-radius: 0 0 20px 20px;
    }

    .p-page-header__title {
        font-size: 2.4rem;
    }

    .p-page-header__lead {
        font-size: 1.8rem;
    }
	
.l-header__nav-toggle:hover::after {
    border-right-color: var(--color-text);
    border-bottom-color: var(--color-text);
	}
}

/* ============================================
   共通CTA - Recruit / Shop list
   ============================================ */
.p-cta {
    background: transparent;
}

.p-cta__inner {
    max-width: none;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.p-cta__block {
    width: 50%;
    padding: 80px 40px;
    text-align: center;
    color: var(--color-white);
}

.p-cta__block--recruit {
    background: url('../images/common/p-cta__block--recruit.jpg') no-repeat center / cover;
}

.p-cta__block--shoplist {
    background: url('../images/common/p-cta__block--shoplist.jpg') no-repeat center / cover;
}

.p-cta__title {
    font-family: var(--font-en);
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 0;
}

.p-cta__sub {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.p-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 450px;
    margin: 0 auto;
    font-size: 28px;
}

.p-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 20px;
    background: #9f2c21b0;
    color: #fff;
    font-size: 28px;
    border: 3px solid #C09933;
    font-weight: 700;
    border-radius: 4px;
    transition: all .25s ease;
}

.p-cta__btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.p-cta__btn-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.p-cta__btn:last-child .p-cta__btn-icon {
    position: relative;
    top: 2px;
}

.p-cta__btn-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

/* ============================================
   共通CTA - Contact
   ============================================ */
.p-cta-contact {
    background: #404040;
    padding: 80px 0px;
    text-align: center;
}

.p-cta-contact__title {
    font-family: var(--font-en);
    font-size: 90px;
    letter-spacing: .0em;
    font-weight: 700;
    line-height: 105px;
    color: #fff;
}

section.p-cta .p-cta-contact__title {
    font-size: 80px;
    margin-bottom: 13px;
}

section.p-cta .p-cta-contact__sub {
    line-height: 1.2;
    font-size: 18px;
    margin-bottom: 48px;
}

.p-cta-contact__sub {
    line-height: 29px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    position: relative;
    text-align: center;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    color: #fff;
    max-width: 100%;
}

.p-cta-contact__sub::before{
   content: "";
   width: 8px;
   height: 8px;
   display: block;
   background-color: #C09933;
   position: absolute;
   left: 0;
   top: 11px;
   border-radius: 100000000000px;
}

.p-cta-contact__text {
    font-size:20px;
    color:#fff;
    margin-bottom: 40px;
    font-weight: 500;
    margin-top: 32px;
}

.p-cta-contact__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.p-cta-contact__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 42px 28px;
    font-size: 32px;
    font-weight: 700;
    border-radius: 4px;
    line-height: 1;
    border: 3px solid #C09933;
    color: var(--color-text);
    background-color: #fff;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}a.p-cta-contact__btn.p-cta-contact__btn--tel{
    font-size: 40px;
}

.p-cta-contact__btn-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    text-align: left;
}

.p-cta-contact__btn-note {
    display: block;
    font-size: 0.55em;
    font-weight: 400;
    line-height: 1.4;
}

.p-cta-contact__btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.p-cta-contact__btn--tel:hover,
.p-cta-contact__btn--form:hover {
    background: var(--color-text);
    color: var(--color-white);
}


.p-cta-contact__btn-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.p-cta-contact__btn-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0);
    transition: filter var(--transition);
}

.p-cta-contact__btn:hover .p-cta-contact__btn-icon img {
    filter: brightness(0) invert(1);
}

/* ============================================
   共通CTA - Company
   ============================================ */
.p-cta-company {
    background: var(--color-bg-light);
    padding: 60px 20px 70px;
}

.p-cta-company__inner {
    max-width: var(--content-width);
    margin: 0 auto;
}


.p-cta-company__inner .ttl-base-style {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
margin-bottom: 64px;
}
.p-cta-company__inner .ttl-base-style h2{
    color: #B93629;
    font-weight: 700;
    font-family: var(--font-en);
}
.p-cta-company__inner .ttl-base-style p{
    color: #B93629;
    font-weight: 500;
}

.p-cta-company__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.p-cta-company__logo {
    margin-bottom: 56px;
}

.p-cta-company__logo img {
    height: 50px;
    width: auto;
}

.p-cta-company__name {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.p-cta-company__name-en {
    font-size: 1.1rem;
    color: var(--color-gray);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.p-cta-company__dl {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px 20px;
    font-size: 1.4rem;
    line-height: 1.7;
}

.p-cta-company__dl dt {
    font-weight: 700;
    color: var(--color-text);
}

.p-cta-company__dl dd {
    color: var(--color-text-light);
}

.p-cta-company__sns {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.p-cta-company__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: opacity .25s ease;
}

.p-cta-company__sns-link:hover {
    opacity: 0.7;
}

.p-cta-company__sns-link img {
    width: 40px;
    height: 40px;
}

.p-cta-company__map {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.p-cta-company__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.p-cta-company__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   共通CTA - SP
   ============================================ */
@media (max-width: 1024px) {
    /* Recruit / Shop list */
    .p-cta__inner {
        grid-template-columns: 1fr;
    }

    .p-cta__block {
        padding: 36px 24px;
    }

    .p-cta__title {
        font-size: 2.6rem;
    }

    .p-cta__buttons {
        max-width: 450px;
        gap: 20px;
        font-size: 18px;
    }

    .p-cta__btn {
        font-size: 18px;
        gap: 14px;
        border: 2px solid #C09933;
        padding: 14px 20px;
    }

    .p-cta__btn-icon img {
        width: 24px;
        height: 24px;
    }

    /* Contact */
    .p-cta-contact {
        padding: 40px 20px;
    }

    .p-cta-contact__title {
        font-size: 40px;
        line-height: 1;
        margin-bottom: 13px;
    }

    .p-cta-contact__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .p-cta-contact__btn {
        min-width: 0;
        width: 100%;
        padding: 16px 20px;
        font-size: 1.5rem;
    }

    /* Company */
    .p-cta-company {
        padding: 40px 20px 50px;
    }

    .p-cta-company__title {
        font-size: 2.8rem;
    }

    .p-cta-company__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p-cta-company__map {
        border-radius: 4px;
    }
}

/* ============================================
   Component
   ============================================ */
.c-btn {
    background-color: #9F2C21;
    padding: 18px 40px 18px 20px;
    border: 3px solid #C09933;
    display: block;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    font-size: 24px;
    width: max-content;
    max-width: 100%;
    min-width: 230px;
    position: relative;
}

.c-btn::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}

.c-btn:hover {
    opacity: .7;
}

/* ============================================
   Utility
   ============================================ */
.l-content__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination ul {
    display: flex;
    gap: 20px;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    padding: 0;
    border: 1px solid var(--color-primary);
    border-radius: 6px;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    transition: background var(--transition), color var(--transition);
}

.pagination li a:hover {
    opacity: 1;
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.pagination li span.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}







section.p-top-news {
    background: #404040;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.p-top-news__inner{
    max-width: 868px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

section.p-mv{
    width: 100%;
}

section.p-mv video{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.p-mv__video-player--sp{
    display: none;
}

.p-mv__video {
    line-height: 0;
}

.ttl-base-style{
    display: flex;
    flex-direction: column;
    gap: 0;
}


.ttl-base-style h2{
    font-size: 50px;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: .05em;
    line-height: 59px;
}

.ttl-base-style p{
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .05em;
    position: relative;
    padding-left: 20px;
}

.ttl-base-style p::before{
   content: "";
   width: 8px;
   height: 8px;
   display: block;
   background-color: #C09933;
   position: absolute;
   left: 0;
   top: 6px;
   border-radius: 100000000000px;
}

.p-top-news__more{
    background-color: #9F2C21;
    padding: 8px 32px 10px 20px;
    border: 1px solid #C09933;
    display: block;
    font-weight: 700;
    position: relative;
}

.p-top-news__more::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}

.p-top-news__inner__left{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 140px;
}

.p-top-news__list{
    width: calc(100% - 160px);
    max-width: 580px;
}


li.p-top-news__item a {
    padding: 12px 20px;
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #C09933;
    width: 100%;
    font-weight: 500;
}


.ttl-base-style__big{
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ttl-base-style__big h2{
    font-size: 90px;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: .0em;
    line-height: 105px;
    color: #B93629;
}

.ttl-base-style__big p{
    line-height: 29px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .05em;
    position: relative;
    padding-left: 20px;
    color: #B93629;
}

.ttl-base-style__big p::before{
   content: "";
   width: 8px;
   height: 8px;
   display: block;
   background-color: #C09933;
   position: absolute;
   left: 0;
   top: 11px;
   border-radius: 100000000000px;
}

p.p-top-about__lead {
    font-size: 24px;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 40px;
}
@media screen and (max-width:640px) {
    .p-mv__video-player--sp{
        display: block;
    }
    .p-mv__video-player--pc{
        display: none;
    }
}

section.p-top-about {
    padding-top: 120px;
    padding-bottom: 80px;
    background: #F0F0F0;
    position: relative;
    overflow: hidden;
}

.p-top-about__content {
    max-width: 640px;
    width: 45%;
    background-color: #fff;
    position: relative;
    z-index: 2;
    padding: 40px 48px 64px 20px;
    border-radius: 0 20px 20px 0;
}

.p-top-about__content::before {
    position: absolute;
    content: "";
    display: block;
    background-color: #fff;
    right: 100%;
    width: 50vw;
    top: 0;
    height: 100%;
}

/* スライダー：absolute配置、JSで高さをcontentに合わせる */
.p-top-about__slider {
    position: absolute;
    top: 80px;
    right: 0;
    width: calc(100vw - 45%);
    z-index: 2;
}

@media screen and (max-width:1200px) {
    .p-top-about__slider {
    position: absolute;
    top: 80px;
    right: 0;
    width: calc(100vw - 45%);
    z-index: 2;
}
}

.p-top-about__slider .slick-track {
    display: flex;
}

.p-top-about__slide {
    height: 100%;
    width: 650px;
    margin-right: 16px;
    flex-shrink: 0;
}

.p-top-about__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    section.p-top-about {
        padding-top: 0;
        padding-bottom: 40px;
    }

    .p-top-about__inner.w-1200 {
        display: flex;
        flex-direction: column-reverse;
    }

    .p-top-about__content {
        width: 100%;
        max-width: 100%;
        padding: 32px 20px 40px;
        border-radius: 0;
    }

    .p-top-about__content::before {
        display: none;
    }

    .p-top-about__slider {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .p-top-about__slider .slick-list {
        overflow: hidden;
    }

    .p-top-about__slide {
        width: auto;
        margin-right: 0;
        border-radius: 0;
    }

    .p-top-about__slide img {
        aspect-ratio: 16 / 10;
    }
}


section.p-top-reasons {
    background: #404040;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
}


.p-top-reasons__list {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.p-top-reasons__list .p-top-reasons__item{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: calc((100% - 56px) /2);
}

.p-top-reasons__list .p-top-reasons__item a{
   display: block;
}
section.p-top-reasons .ttl-base-style__big h2{
    color: #fff;
}
.reasons__list-text-area{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 18px 30px;
    background-color: #fff;
    max-width: 330px;
    width: 100%;
    border-radius: 0 20px 0 0;
    color: #211F1F;
}

h3.p-top-reasons__item-title {
    font-size: 24px;
    color: #B93629;
    font-weight: 700;
    font-family: var(--font-en);
}

p.p-top-reasons__item-text {
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

p.p-top-reasons__item-text::after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: url('../images/common/arrows-reason.svg') no-repeat center / contain;
}


section.p-top-feature {
    padding-top: 80px;
    padding-bottom: 80px;
}


.p-top-feature__list {
    display: flex;
    gap: 80px;
    margin-top: 46px;
}


.p-top-feature__item{
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-top-feature__item-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
h3.p-top-feature__item-title {
    font-size: 18px;
}
p.p-top-feature__item-text {
    font-size: 24px;
    font-weight: 700;
}

section.p-top-feature .ttl-base-style__big p {
    line-height: 29px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .05em;
    position: relative;
    padding-left: 20px;
    color: #B93629;
}
section.p-top-reasons .ttl-base-style__big p{
    color: #fff;
}

.p-top-feature__item-image{
    position: relative;
}

.p-top-feature__item-image > span{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #B93629;
    color: #fff;
    padding-bottom: 8px;
    padding-left: 20px;
    line-height: 1;
    padding-right: 20px;
    display: flex;
    gap: 2px;
    align-items: baseline;
    font-weight: 600;
}

.p-top-feature__item-image > span > span{
font-size: 32px;

}


section.p-company-info {
    padding: 80px 0;
}

.p-company-info__wrap{
    background-color: #fff;
    border-radius: 10px;
    padding: 80px 40px;
}

table.p-company-info__table tbody{
    display: block;
    width: 100%;
}
table.p-company-info__table {
    max-width: 840px;
    margin: auto;
    width: 100%;
    display: block;
    border-top: 1px solid #ccc;
}

table.p-company-info__table tr{
    padding: 14px 0;
    display: flex;
    border-bottom: 1px solid #ccc;
    width: 100%;
}
table.p-company-info__table tr th{
    width: 160px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
}
table.p-company-info__table tr td{
    font-weight: 500;
}

.ttl-base-style__underpage{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.ttl-base-style__underpage h2{
    color: #B93629;
    line-height: 1;
    font-size: 56px;
    font-weight: 700;
    font-family: var(--font-en);
}

.ttl-base-style__underpage p{
    margin-bottom: 22px;
    line-height: 1;
color: #8C8C8C;
    font-weight: 500;
}


section.p-company-greeting {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #404040;
    color: #fff;
}

.ttl-base-style__message{
    text-align: center;
    width: 100%;
    position: relative;
}

.ttl-base-style__message h2{
   font-family: var(--font-en);
   font-size: 56px;
   font-weight: 700;
   letter-spacing: 0.05em;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%,-50%);
   color: #404040;
   text-shadow:
       1px 0 0 #FFC326,
      -1px 0 0 #FFC326,
       0 1px 0 #FFC326,
       0 -1px 0 #FFC326,
       1px 1px 0 #FFC326,
      -1px -1px 0 #FFC326,
       1px -1px 0 #FFC326,
      -1px 1px 0 #FFC326;
   z-index: 0;
}

.ttl-base-style__message p{
   font-size: 32px;
   position: relative;
   z-index: 1;
   display: inline;
   background-color: transparent;
   padding: 0 8px;
   font-weight: 700;
   text-shadow:
       2px 0 0 #424242,
      -2px 0 0 #424242,
       0 2px 0 #424242,
       0 -2px 0 #424242,
       2px 2px 0 #424242,
      -2px -2px 0 #424242,
       2px -2px 0 #424242,
      -2px 2px 0 #424242;
}


.p-company-greeting__content {
    background: #fff;
    margin-top: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding: 20px 32px;
    align-items: center;
}

.p-company-greeting__lead{
    color: #B93629;
    font-size: 24px;
    line-height: 1.5;
    border-bottom: 1px solid #ccc;
    padding-bottom: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: .05em;
    padding-left: 24px;
    position: relative;
}

.p-company-greeting__lead::before{
    content: "";
    display: block;
    left: 0;
    top: 18px;
    background-color: #B93629;
    width: 14px;
    height: 1.5px;
    position: absolute;
}

p.p-company-greeting__text{
    line-height: 2;
    font-weight: 500;
    color: #424242;
}

.p-company-greeting__body {
    width: 55%;
}

.p-company-greeting__image {
    width: 40%;
}



section.p-company-philosophy{
    padding-top: 80px;
    padding-bottom: 80px;
}


.p-company-philosophy__head {
    display: flex;
    justify-content: space-between;
}

p.p-company-philosophy__lead {
    max-width: 490px;
    width: 60%;
    line-height: 2;
    font-size: 16px;
}

.p-company-philosophy__list {
    background: #fff;
    padding: 40px 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 32px;
}

.p-company-philosophy__item {
    display: flex;
    gap: 32px;
}

.p-company-philosophy__item-image{
    max-width: 320px;
    border-radius: 10px;
    overflow: hidden;
}

.p-company-philosophy__item-body{
    width: calc(100% - 320px - 32px);
}


span.p-company-philosophy__item-num {
    padding: 8px;
    border-radius: 1000000000px;
    background: #B93629;
    color: #FFC326;
    line-height: 1;
    display: block;
    width: max-content;
    font-size: 12px;
    font-family: var(--font-en);
    font-weight: 700;
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 14px;
}

h3.p-company-philosophy__item-title {
    font-size: 24px;
    line-height: 1.5;
    padding-bottom: 8px;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 18px;
    letter-spacing: .05em;
}

p.p-company-philosophy__item-text {
    font-size: 16px;
    line-height: 2;
}

section.p-company-philosophy .ttl-base-style__underpage{
    margin-bottom: 0;
}



section.p-company-mission {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #B93629;
    color: #fff;
}


section.p-company-mission .ttl-base-style__underpage h2 {
    color: #FFC326;
    text-align: center;
}
section.p-company-mission .ttl-base-style__underpage p{
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.p-company-mission__list{
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding-top: 160px;
    position: relative;
}

.p-company-mission__card {
    width: calc((100% - 16px - 16px) / 3);
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #424242;
    position: relative;
    border-radius: 20px;
    padding: 148px 32px 32px;
}

.p-company-mission__card-image{
    width: calc(100% - 100px);
    border-radius: 10000000000px;
    overflow: hidden;
    border: dashed 1px #fff;
    display: flex;
    aspect-ratio: 1 / 1;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    justify-content: center;
}

.p-company-mission__card-image img{
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10000000000px;
    display: block;
    object-position: center;
}

h3.p-company-mission__card-title {
    font-size: 32px;
    text-align: center;
    color: #B93629;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    font-family: var(--font-en);
}
section.p-company-mission .ttl-base-style__underpage{
    margin-bottom: 0;
}

p.p-company-mission__card-sub {
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

ul.p-company-mission__card-list{
    font-size: 14px;
    line-height: 2;
    text-align: center;
}

span.p-company-mission__card-num {
    position: absolute;
    bottom: 0;
    left: -4px;
    color: #B93629;
    font-weight: 700;
    font-size: 120px;
    font-family: var(--font-en);
    opacity: .3;
    bottom: -27px;
}

/* ============================================
   Safety - Traceability スライダー
   ============================================ */
.p-safety-trace__flow.slick-initialized {
    margin: 0 -8px;
}

.p-safety-trace__flow .p-safety-trace__flow-item {
    width: 330px;
    padding: 0 8px;
}

.p-safety-trace__flow .slick-list {
    overflow: visible;
}

@media screen and (max-width: 768px) {
    .p-safety-trace__flow .p-safety-trace__flow-item {
        width: auto;
        padding: 0 8px;
    }
}

/* 矢印 */
.p-safety-trace__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 17px;
    height: 31px;
    background: none;
    border: none;
    font-size: 0;
    color: transparent;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}

.p-safety-trace__arrow--prev {
    left: -20px;
    background-image: url('../images/common/slidearrows-red.svg');
    transform: translateY(-50%) scaleX(-1);
}

.p-safety-trace__arrow--next {
    right: 0;
    background-image: url('../images/common/slidearrows-red.svg');
}

.p-safety-trace__arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

/* ドット */
.p-safety-trace__flow .slick-dots {
    margin-top: 24px;
    position: relative;
    bottom: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.p-safety-trace__flow .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0;
}

.p-safety-trace__flow .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
}

.p-safety-trace__flow .slick-dots li button:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    font-size: 0;
    line-height: 0;
}

.p-safety-trace__flow .slick-dots li.slick-active button:before {
    background: #B93629;
}

@media screen and (max-width: 768px) {
    .p-safety-trace__arrow--prev {
        left: -10px;
    }
    .p-safety-trace__arrow--next {
        right: -10px;
    }
}

/* ============================================
   Philosophy ページ
   ============================================ */

/* FV */
.p-philosophy-fv {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 0;
    color: #fff;
}

.p-philosophy-fv::before {
    display: none;
}

.p-philosophy-fv__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 72px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
}

.p-philosophy-fv__lead {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
    margin-bottom: 14px;
    color: var(--color-text);
}

.p-philosophy-fv__lead strong {
    font-size: 48px;
    font-weight: 700;
    color: #B93629;
}

.p-philosophy-fv__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    color: #424242;
}

/* ティッカー（無限スライダー） */
.p-philosophy-ticker {
    overflow: hidden;
    padding: 40px 0;
}

.p-philosophy-ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.p-philosophy-ticker__item {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    margin-right: 18px;
}

.p-philosophy-ticker__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Philosophy コンテンツ */
.p-philosophy-content {
    padding: 80px 0 100px;
    position: relative;
    background: #FFFFFF;
}

.p-philosophy-content__head {
    margin-bottom: 60px;
}

/* 2カラム：左画像sticky + 右テキスト */
.p-philosophy-content__body {
    display: flex;
    gap: 60px;
    align-items: start;
}

.p-philosophy-content__text-col {
    width: calc(50% - 32px);
    margin-left: auto;
}

/* 左：画像スティッキー */
.p-philosophy-content__image-col {
    position: absolute;
    width: 50vw;
    left: 0;
    top: 0;
    height: 100%;
}

.p-philosophy-content__image-sticky {
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
}

.p-philosophy-content__image-sticky img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.p-philosophy-content__image-sticky img.is-active {
    position: relative;
    opacity: 1;
}

/* 右：テキスト */
.p-philosophy-content__point {
    padding-bottom: 32px;
    margin-bottom: 48px;
    border-bottom: 1px solid #CCCCCC;
}



.p-philosophy-content__point-num {
    display: inline-block;
    background: var(--color-primary);
    color: #FFC326;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 37px;
    border-radius: 60px;
    margin-bottom: 12px;
    line-height: 1;
}

.p-philosophy-content__point-sub {
    font-size: 24px;
    color: #B93629;
    margin-bottom: 8px;
}

.p-philosophy-content__point-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
}

.p-philosophy-content__point-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-light);
}

/* SP用画像：PCでは非表示 */
.p-philosophy-content__point-image-sp {
    display: none;
}


span.p-safety-trace__flow-item-num {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #B93629;
    color: #FFC326;
    font-size: 20px;
    line-height: 1;
    font-family: var(--font-en);
    border-radius: 20px 20px 0 0;
    font-weight: 700;
}

.p-safety-trace__flow-item__wrap {
    background: #fff;
    padding: 12px 20px 32px;
    border: 1.5px solid #B93629;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}


.p-safety-trace__flow-item__wrap h3{
    font-size: 20px;
    text-align: center;
    color: #B93629;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #ccc;
}
p.p-safety-trace__flow-label {
    font-size: 14px;
    line-height: 2;
}
/* SP */
@media screen and (max-width: 768px) {
    .p-philosophy-fv {
        min-height: 350px;
    }

    .p-philosophy-fv__lead {
        font-size: 18px;
    }

    .p-philosophy-fv__text {
        font-size: 14px;
    }

    .p-philosophy-ticker__item {
        width: 200px;
        height: 140px;
    }

    .p-philosophy-content {
        padding: 50px 0 60px;
    }

    .p-philosophy-content__body {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* PC用画像カラム非表示 */
    .p-philosophy-content__image-col {
        display: none;
    }

    /* SP用画像表示 */
    .p-philosophy-content__point-image-sp {
        display: block;
        margin-top: 20px;
    }

    .p-philosophy-content__point-image-sp img {
        width: 100%;
        border-radius: 8px;
    }

    .p-philosophy-content__point {
        padding-bottom: 32px;
        margin-bottom: 40px;
    }

}



section.p-safety-intro {
    padding: 80px 0 80px;
}

.p-safety-intro__inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

p.p-safety-intro__text {
    width: calc(50%);
    font-weight: 500;
    line-height: 2.5;
    margin-top: 24px;
}
.p-safety-intro__image {
    width: calc(50% - 32px);
    border-radius: 20px;
    overflow: hidden;
}


section.p-safety-history {
    padding: 80px 0 100px;
    background: #424242;
    color: #fff;
    border-radius: 20px 20px 0 0;
}
section.p-safety-history h2.p-safety-history__title{
    font-size: 32px;
    color: #FFC326;
    text-align: center;
    margin-bottom: 18px;
}
section.p-safety-history .p-safety-history__txt{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
}

.p-safety-history__txt__02{
     font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin-top: 32px;
    width: 100%;
}

.p-safety-history__inner ul{
    background-color: #fff;
    padding: 40px 80px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
}

.p-safety-history__inner ul li{
    color: #211F1F;
    font-size: 18px;
    width: calc(50%);
    line-height: 2.2;
    font-weight: 500;
}
section.p-safety-trace{
    padding-bottom: 80px;
    overflow: hidden;
}

/* ============================================
   NEWS Archive
   ============================================ */
.p-news-archive {
    padding: 56px 20px 80px;
}

.p-news-archive__inner {
    max-width: 840px;
    margin: 0 auto;
}

.p-news-archive__list {
    border-top: 1px solid var(--color-border);
}

.p-news-archive__item {
    border-bottom: 1px solid var(--color-border);
}

.p-news-archive__link {
    display: flex;
    align-items: center;
    padding: 18px 40px 18px 14px;
    transition: background var(--transition);
    position: relative;
}

.p-news-archive__link::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('../images/news/arrows.svg') no-repeat center / contain;
}

.p-news-archive__link:hover {
    opacity: 1;
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.p-news-archive__date {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    flex-shrink: 0;
    white-space: nowrap;
}

.p-news-archive__sep {
    font-size: 16px;
    color: var(--color-border);
    margin: 0 20px;
    flex-shrink: 0;
    user-select: none;
}

.p-news-archive__title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
}

@media screen and (max-width: 768px) {
    .p-news-archive {
        padding: 40px 20px 60px;
    }

    .p-news-archive__link {
        flex-wrap: wrap;
        gap: 4px 0;
    }

    .p-news-archive__sep {
        display: none;
    }

    .p-news-archive__title {
        width: 100%;
        font-size: 15px;
    }

    .p-news-archive__date {
        font-size: 14px;
    }
}

/* ============================================
   NEWS Single
   ============================================ */
.p-news-single {
    padding: 80px 0;
}

.p-news-single__wrap {
    background: #fff;
    padding: 64px 50px;
    border-radius: 20px;
}

/* 日付タグ */
.p-news-single__date {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 30px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* タイトル */
.p-news-single__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.5;
    padding-bottom: 14px;
    margin-bottom: 40px;
    border-bottom: 1px dashed #7B7B7B;
}

/* サムネイル */
.p-news-single__thumbnail {
    margin-bottom: 40px;
    text-align: center;
}

.p-news-single__thumbnail img {
    max-width: 100%;
    width: auto;
    height: auto;
}

/* 記事本文 */
.p-news-single__content {
    margin-bottom: 60px;
}

/* h2 */
.p-news-single__content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    padding-bottom: 12px;
    padding-left: 28px;
    border-bottom: 1.5px dashed #C7C7C7;
    margin-bottom: 24px;
    position: relative;
}

.p-news-single__content h2::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 1px;
    width: 4px;
    height: calc(100% - 14px);
    background: var(--color-primary);
    border-radius: 2px;
}

/* p */
.p-news-single__content p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
}

.p-news-single__content p:last-child {
    margin-bottom: 0;
}

/* h3 */
.p-news-single__content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    padding-bottom: 14px;
    padding-left: 14px;
    margin-bottom: 24px;
    border-bottom: 1.5px dashed #C7C7C7;
    position: relative;
}

.p-news-single__content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* リスト */
.p-news-single__content ul,
.p-news-single__content ol {
    max-width: 840px;
    margin: 0 auto 40px;
    padding: 32px 40px;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.p-news-single__content ul li,
.p-news-single__content ol li {
    font-size: 16px;
    line-height: 2;
    padding-left: 1em;
    text-indent: -1em;
}

.p-news-single__content ul li::before {
    content: "・";
}

/* 戻るボタン */
.p-news-single__nav {
    margin-top: 40px;
}

.p-news-single__back {
    display: block;
    width: 100%;
    max-width: 218px;
    margin: 0 auto;
    padding: 20px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: background var(--transition);
}

.p-news-single__back::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('../images/news/backarrows.svg') no-repeat center / contain;
}

.p-news-single__back:hover {
    opacity: 1;
    background: var(--color-primary-dark);
}

/* SP */
@media screen and (max-width: 768px) {
    .p-news-single {
        padding: 40px 0 60px;
    }

    .p-news-single__wrap {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .p-news-single__title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .p-news-single__content h2 {
        font-size: 20px;
    }

    .p-news-single__content ul,
    .p-news-single__content ol {
        padding: 24px 20px;
    }

    .p-news-single__back {
        max-width: 100%;
    }
}

/* ============================================
   Contact フォーム
   ============================================ */
.p-contact {
    padding: 80px 0;
}

/* タブ */
.p-contact-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.p-contact-tabs__tab {
    flex: 1;
    padding: 18px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold, #C09933);
    background: #fff;
    cursor: pointer;
    border: 2px solid #C09933;
    border-radius: 6px;
    line-height: 1.5;
    transition: background var(--transition), color var(--transition);
}

.p-contact-tabs__tab.is-active {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.p-contact-tabs__tab:hover:not(.is-active) {
    background: #f5f0e8;
}

/* パネル */
.p-contact__panel {
    display: none;
}

.p-contact__panel.is-active {
    display: block;
}

@media screen and (max-width: 540px) {
    .p-contact-tabs {
        flex-direction: column;
    }

    .p-cta-contact__btn-label {
        text-align: center;
        font-size: 14px;
    }
}

.p-contact__wrap {
    max-width: 920px;
    margin: 0 auto;
}

/* テーブル */
.p-contact__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
}

.p-contact__table th,
.p-contact__table td {
    font-size: 16px;
    vertical-align: middle;
    padding: 0;
}

.p-contact__table th {
    width: 185px;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.p-contact__table td {
    width: calc(100% - 185px - 32px);
}

/* 必須タグ */
.p-contact__required {
    display: inline-block;
    background: #B93629;
    color: #FFC326;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    padding: 4px 10px;
    border-radius: 5px;
    margin-left: 8px;
    vertical-align: middle;
}

/* input / textarea */
.p-contact__table input[type="text"],
.p-contact__table input[type="tel"],
.p-contact__table input[type="email"],
.p-contact__table textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border-radius: 10px;
    background: #fff;
    border: none;
    transition: border-color var(--transition);
}
.wpcf7-spinner{
    display: none !important;
}
.p-contact__table input:focus,
.p-contact__table textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.p-contact__table textarea {
    min-height: 160px;
    resize: vertical;
}

/* 半角注記付きinput */
.p-contact__input-note {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-contact__input-note .wpcf7-form-control-wrap {
    flex: 1;
}

.p-contact__note {
    font-size: 13px;
    color: var(--color-gray);
    white-space: nowrap;
    flex-shrink: 0;
}

/* プライバシー同意 */
.p-contact__privacy {
    text-align: center;
    margin-top: 40px;
}

.p-contact__privacy p {
    font-size: 14px;
    margin-bottom: 16px;
}

.p-contact__privacy a {
    color: var(--color-primary);
    text-decoration: underline;
}

.p-contact__agree {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
}

.p-contact__agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

/* 送信ボタン */
.p-contact__submit {
    text-align: center;
    margin-top: 32px;
}

.p-contact__submit-btn,
.p-contact__submit input[type="submit"] {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    padding: 20px;
    background: var(--color-primary);
    color: #FFC326;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.15em;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    transition: background var(--transition);
}

.p-contact__submit-btn:hover,
.p-contact__submit input[type="submit"]:hover {
    background: var(--color-primary-dark);
}

/* CF7 バリデーション */
.wpcf7-not-valid-tip {
    color: var(--color-primary);
    font-size: 13px;
    margin-top: 6px;
}

.wpcf7-response-output {
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
}

/* SP */
@media screen and (max-width: 768px) {
    .p-contact {
        padding: 40px 0 60px;
    }

    .p-contact__table th {
        width: auto;
        display: block;
        padding: 0 0 8px;
    }

    .p-contact__table td {
        display: block;
        width: 100%;
        padding: 0;
    }

    .p-contact__input-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .p-contact__submit-btn,
    .p-contact__submit input[type="submit"] {
        max-width: 100%;
    }
}

.p-contact__table tr {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.p-contact__table tbody {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0;
    line-height: 1;
    display: block;
}

/* ============================================
   Privacy
   ============================================ */
.p-privacy {
    padding: 80px 0;
}

.p-privacy__wrap {
    background: #fff;
    padding: 80px 40px;
    border-radius: 20px;
}

.p-privacy__heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.p-privacy__text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 56px;
}

.p-privacy__text:last-child {
    margin-bottom: 0;
}

.p-privacy__subheading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.p-privacy__subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    margin-bottom: 16px;
}

/* h3/h4の直前のpは余白詰める */
.p-privacy__text + .p-privacy__subheading,
.p-privacy__text + .p-privacy__subtitle {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .p-privacy {
        padding: 40px 0 60px;
    }

    .p-privacy__wrap {
        padding: 40px 20px;
        border-radius: 12px;
    }

    .p-privacy__heading {
        font-size: 24px;
    }

    .p-privacy__subheading {
        font-size: 20px;
    }

    .p-privacy__text {
        margin-bottom: 32px;
    }
}



section.p-shop-archive {
    padding-top: 80px;
    padding-bottom: 80px;
}

ul.p-shop-archive__list{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}
h2.p-shop-archive__heading {
    padding-bottom: 24px;
    text-align: center;
    margin-bottom: 32px;
    font-size: 32px;
    color: #B93629;
    position: relative;
}

h2.p-shop-archive__heading::before {
    content: "";
    width: 110px;
    position: absolute;
    height: 1px;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px dashed #7B7B7B;
}

.p-shop-archive__item-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.p-shop-archive__item-info{
    width: 50%;
}


.p-shop-archive__item-thumb{
    width: calc(50% - 56px);
}
.p-shop-archive__item-thumb img{
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: contain;
    overflow: hidden;
}
span.p-shop-archive__item-label {
    font-size: 14px;
    padding: 8px 18px;
    line-height: 1;
    width: 170px;
    background-color: #B93629;
    color: #FFC326;
    display: block;
    border-radius: 1000000000px;
    text-align: center;
    flex-shrink: 0;
}

h3.p-shop-archive__item-name {
    font-size: 32px;
    display: flex;
    align-items: center;
    color: #B93629;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #ccc;
}

h3.p-shop-archive__item-name > span:last-child {
    width: calc(100% - 170px - 24px);
}

ul.p-shop-archive__item-dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
}
li.p-shop-archive__item-dl-row {
    display: flex;
    flex-direction: column;
    width: calc(50% - 14px);
}

span.p-shop-archive__item-dt{
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    font-size: 18px;
    color: #B93629;
    line-height: 1;
    display: block;
}

span.p-shop-archive__item-dd{
    font-size: 14px;
    line-height: 2;
    font-weight: 500;
    display: block;
}
li.p-shop-archive__item.p-shop-archive__item--wide{
    background-color: #fff;
    padding: 32px 40px;
    border-radius: 10px;
}
li.p-shop-archive__item.p-shop-archive__item--wide iframe{
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 32px;
}

section.p-shop-archive02{
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #424242;
}


h2.p-shop-archive02__heading {
    padding-bottom: 24px;
    text-align: center;
    margin-bottom: 32px;
    font-size: 32px;
    color: #FFC326;
    position: relative;
}
h2.p-shop-archive02__heading::before {
    content: "";
    width: 110px;
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px dashed #fff;
}

ul.p-shop-archive02__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 10px;
    justify-content: center;
}

li.p-shop-archive02__item {
    display: flex;
    flex-wrap: wrap;
    width: calc((100% - 20px) / 3);
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding: 52px 20px 32px;
}

span.p-shop-archive02__item-label{
    position: absolute;
    font-size: 12px;
    left: 0;
    top: 0;
    border-radius: 0 0 20px 0;
    color: #FFC326;
    font-weight: 700;
    padding: 8px 30px;
    background-color: #B93629;
}

h3.p-shop-archive02__item-name {
    padding-bottom: 12px;
    color: #B93629;
    border-bottom: 1px dashed #7B7B7B;
    margin-bottom: 16px;
    font-size: 24px;
}


.p-shop-archive02__item-thumb{
    margin-bottom: 24px;
}
.p-shop-archive02__item-thumb img{
    border-radius: 10px;
    display: block;
    overflow: hidden;
}

ul.p-shop-archive02__item-dl{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
span.p-shop-archive02__item-dt{
    display: block;
    color: #B93629;
    font-weight: 700;
    margin-bottom: 8px;
}

span.p-shop-archive02__item-dd{
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

span.p-shop-archive02__item-dd a{
    display: block;
    width: max-content;
    color: #6DAFFF;
    font-size: 10px;
    font-weight: 700;
    text-decoration: underline;
}

/* ============================================
   飲食店舗（page-shopinfo）
   ============================================ */

/* 店舗紹介 */
.p-shopinfo-intro {
    padding: 80px 0;
}

.p-shopinfo-intro__wrap {
    background: #fff;
    border-radius: 20px;
    padding: 64px 40px;
}

.p-shopinfo-intro__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #7B7B7B;
    padding-left: 14px;
    padding-right: 14px;
}

.p-shopinfo-intro__catch {
    font-size: 16px;
    color: var(--color-text-light);
    width: 100%;
    margin-bottom: 12px;
    line-height: 1;
}

.p-shopinfo-intro__name {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.p-shopinfo-intro__reserve-btn {
    display: inline-block;
    margin-left: auto;
    padding: 15px 35px;
    border: 2px solid var(--color-primary);
    color: #FFC326;
    font-size: 18px;
    font-weight: 700;
    border-radius: 86px;
    line-height: 1;
    background: #B93629;
    transition: background var(--transition), color var(--transition);
}

.p-shopinfo-intro__reserve-btn:hover {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #FFC326;
    opacity: 1;
}

.p-shopinfo-intro__body {
    display: flex;
    gap: 32px;
}

.p-shopinfo-intro__desc {
    width: 55%;
}

.p-shopinfo-intro__gallery {
    width: 45%;
}

.p-shopinfo-intro__lead {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.7;
}

.p-shopinfo-intro__text {
    font-size: 14px;
    line-height: 2;
    color: var(--color-text-light);
}

/* メインスライダー */
.p-shopinfo-intro__gallery-main {
    margin-bottom: 12px;
    border-radius: 0;
    overflow: hidden;
	pointer-events: none;
}

.p-shopinfo-intro__gallery-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 459 / 280;
    object-fit: cover;
    border-radius: 0;
}

/* サムネスライダー */
.p-shopinfo-intro__gallery-thumbs.slick-initialized {
    display: flex;
}

.p-shopinfo-intro__gallery-thumbs .slick-list {
    width: 100%;
}

.p-shopinfo-intro__gallery-thumbs .slick-track {
    display: flex;
}

.p-shopinfo-intro__gallery-thumbs .slick-slide {
    margin-right: 8px;
}

.p-shopinfo-intro__gallery-thumbs .slick-slide:last-child {
    margin-right: 0;
}

.p-shopinfo-intro__gallery-thumb {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.p-shopinfo-intro__gallery-thumb.slick-current,
.p-shopinfo-intro__gallery-thumb.slick-center {
    opacity: 1;
}

.p-shopinfo-intro__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* お店のこだわり Commitment */
.p-shopinfo-commitment {
    padding: 80px 0 80px;
    background: #404040;
    color: #fff;
}

.p-shopinfo-commitment__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.p-shopinfo-commitment__card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    color: var(--color-text);
}

.p-shopinfo-commitment__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
    line-height: 1.5;
    padding-bottom: 14px;
    border-bottom: dashed 1px #ccc;
}

.p-shopinfo-commitment__card-image {
    margin-bottom: 12px;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 320 / 200;
}

.p-shopinfo-commitment__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-shopinfo-commitment__card-text {
    font-size: 14px;
    line-height: 1.9;
    color: #424242;
    font-weight: 500;
    letter-spacing: .05em;
}

/* Shop information / Seats */
.p-shopinfo-detail {
    padding: 80px 0 120px;
}

.p-shopinfo-detail__wrap {
    background: #fff;
    border-radius: 20px;
    padding: 80px 40px;
}

.p-shopinfo-detail__content {
    max-width: 840px;
    margin: 0 auto;
}

.p-shopinfo-detail__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-en);
}

.p-shopinfo-detail__title--seats {
    margin-top: 48px;
}

.p-shopinfo-detail__sub {
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.p-shopinfo-detail__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--color-border);
}

.p-shopinfo-detail__table tr {
    border-bottom: 1px solid var(--color-border);
}

.p-shopinfo-detail__tr--no-border {
    border-bottom: none !important;
}

.p-shopinfo-detail .ttl-base-style__underpage {
    margin-bottom: 32px;
}

.p-shopinfo-detail .ttl-base-style__underpage p {
    margin-bottom: 0;
}

.p-shopinfo-detail__section-title {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .p-shopinfo-detail__section-title {
        margin-top: 40px;
    }
}

.p-shopinfo-detail__table td {
    padding: 18px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    vertical-align: middle;
    color: #424242;
}

.p-shopinfo-detail__table th {
    padding: 18px 20px 18px 0;
    width: 140px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    text-align: left;
    vertical-align: top;
}

.p-shopinfo-detail__map-cell {
    padding: 0;
}

.p-shopinfo-detail__map-cell iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

/* 電話・予約ボタン */
.p-shopinfo-detail__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.p-shopinfo-detail__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    line-height: 1;
    max-width: 300px;
    width: 50%;
    transition: background var(--transition), color var(--transition);
}

.p-shopinfo-detail__btn--tel,
.p-shopinfo-detail__btn--reserve {
    background: var(--color-primary);
    color: #FFC326;
}

.p-shopinfo-detail__btn--tel:hover,
.p-shopinfo-detail__btn--reserve:hover {
    background: var(--color-text);
    color: #FFC326;
    opacity: 1;
}

/* SP */
@media screen and (max-width: 768px) {
    .p-shopinfo-intro__wrap {
        padding: 24px 20px;
    }

    .p-shopinfo-intro__name {
        font-size: 22px;
    }

    .p-shopinfo-intro__body {
        flex-direction: column;
        gap: 24px;
    }

    .p-shopinfo-intro__desc {
        width: 100%;
    }

    .p-shopinfo-intro__gallery {
        width: 100%;
    }

    .p-shopinfo-intro__lead {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .p-shopinfo-intro__text {
        font-size: 13px;
        line-height: 2;
    }

    .p-shopinfo-commitment__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .p-shopinfo-commitment__card-title {
        font-size: 18px;
    }

    .p-shopinfo-detail__wrap {
        padding: 32px 20px;
    }

    .p-shopinfo-detail__table th {
        width: 100px;
    }

    .p-shopinfo-detail__buttons {
        flex-direction: row;
        gap: 14px;
        margin-top: 24px;
    }

    .p-shopinfo-detail__btn {
        width: 50%;
        max-width: none;
    }
}

/* ============================================
   Recruit
   ============================================ */
.p-recruit-info {
    padding: 80px 0;
}

.p-recruit-info__wrap {
    background: #fff;
    border-radius: 20px;
    padding: 80px 40px;
}

.p-recruit-info__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-en);
    text-align: left;
    line-height: 1;
    letter-spacing: 0.053em;
    margin-bottom: 16px;
}

.p-recruit-info__sub {
    font-size: 18px;
    color: var(--color-gray);
    text-align: left;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 40px;
    margin-top: 0;
    font-weight: 700;
}

/* タブ */
.p-recruit-info__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: space-between;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.p-recruit-info__tab {
    width: calc((100% - 20px) / 3);
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #B93629;
    background: #fff;
    cursor: pointer;
    border: 1px solid #B93629;
    border-radius: 10px;
    transition: background var(--transition), color var(--transition);
}

.p-recruit-info__tab.is-active {
    background: #B93629;
    color: #FFC326;
}

/* パネル */
.p-recruit-info__panel {
    display: none;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.p-recruit-info__panel.is-active {
    display: block;
}

.p-recruit-info__image {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.p-recruit-info__image img {
    width: 100%;
    height: auto;
}

/* テーブル */
.p-recruit-info__table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--color-border);
}

.p-recruit-info__table tr {
    border-bottom: 1px solid var(--color-border);
}

.p-recruit-info__table td {
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    vertical-align: top;
    color: #424242;
}

.p-recruit-info__table th {
    padding: 18px 20px 18px 0;
    width: 140px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    text-align: left;
    vertical-align: top;
}

/* Flow */
.p-recruit-flow {
    padding: 80px 0;
    background: #424242;
    overflow: hidden;
}

.p-recruit-flow__title {
    font-size: 40px;
    font-weight: 700;
    color: #FFC326;
    font-family: var(--font-en);
    text-align: left;
    line-height: 1;
    letter-spacing: 0.053em;
    margin-bottom: 16px;
}

.p-recruit-flow__sub {
    font-size: 18px;
    color: #fff;
    text-align: left;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 40px;
    font-weight: 700;
}

.p-recruit-flow__list {
    position: relative;
}

.p-recruit-flow__list .slick-slide {
    margin: 0 9px;
}

.p-recruit-flow__list .slick-list {
    overflow: visible;
}

.p-recruit-flow__item {
    width: 290px;
}

/* Flow 矢印 */
.p-recruit-flow__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 17px;
    height: 31px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0;
    color: transparent;
    padding: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.p-recruit-flow__arrow--prev {
    left: -20px;
    background-image: url('../images/common/slidearrows-red.svg');
    transform: translateY(-50%) scaleX(-1);
}

.p-recruit-flow__arrow--next {
    right: 0;
    background-image: url('../images/common/slidearrows-red.svg');
}

/* 端まで行ったら非表示 */
.p-recruit-flow__arrow.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

/* Flow ドット */
.p-recruit-flow__list .slick-dots {
    display: none !important;
}

.p-recruit-flow__list .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0;
}

.p-recruit-flow__list .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
}

.p-recruit-flow__list .slick-dots li button:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    font-size: 0;
    line-height: 0;
}

.p-recruit-flow__list .slick-dots li.slick-active button:before {
    background: #B93629;
}

.p-recruit-flow__item {
    text-align: center;
    padding: 0 0 64px;
    background: #fff;
    border-radius: 20px;
}

.p-recruit-flow__item-num {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background: #B93629;
    color: #FFC326;
    font-size: 18px;
    line-height: 1;
    font-family: var(--font-en);
    border-radius: 20px 20px 0 0;
    font-weight: 700;
}
.p-recruit-flow__item-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 8px;
    margin-top: 24px;
    position: relative;
}

.p-recruit-flow__item-name::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #C7C7C7;
}


.p-recruit-flow__item-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}
.p-recruit-flow__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.p-recruit-flow__item-text {
    font-size: 16px;
    line-height: 1.5;
    color: #424242;
    font-weight: 700;
    padding-left: 32px;
    padding-right: 32px;
}

/* Form */
.p-recruit-form {
    padding: 80px 0;
}

.p-recruit-form__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-en);
    text-align: left;
    line-height: 1;
    letter-spacing: 0.053em;
    margin-bottom: 16px;
}

.p-recruit-form__wrap {
    max-width: 920px;
    margin: 0 auto;
}

.p-recruit-form__sub {
    font-size: 18px;
    color: var(--color-text);
    text-align: left;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 40px;
    font-weight: 700;
}

/* ラジオボタン カスタム */
.wpcf7-radio {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wpcf7-radio .wpcf7-list-item {
    display: flex;
    align-items: center;
    margin: 0;
}

.wpcf7-radio .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.wpcf7-radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.wpcf7-radio input[type="radio"]:checked {
    border-color: var(--color-primary);
}

.wpcf7-radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* SP */
@media screen and (max-width: 768px) {
    .p-recruit-info__wrap {
        padding: 32px 20px;
    }

    .p-recruit-info__tabs {
        flex-direction: column;
    }

    .p-recruit-info__tab {
        width: 100%;
    }

    .p-recruit-info__table th {
        width: 100px;
    }

    .p-recruit-flow__arrow--prev {
        left: -10px;
    }

    .p-recruit-flow__arrow--next {
        right: -10px;
    }
}


span.pc {
    display: inline;
}

/* ============================================
   SP補強 - 全体
   ============================================ */
@media screen and (max-width: 768px) {

span.pc{
    display: none;
}

    /* ユーティリティ */
    /* w-ユーティリティのpaddingは各ブレイクポイントで設定済み */

    /* ページヘッダー */
    .p-page-header__title {
        font-size: 28px;
    }

    .p-page-header__title span {
        font-size: 14px;
    }

    /* CTA - Recruit / Shop list */
    .p-cta__inner {
        flex-direction: column;
    }

    .p-cta__block {
        width: 100%;
        padding: 40px 20px;
    }

    .p-cta__title {
        font-size: 24px;
    }

    /* CTA - Contact */
    .p-cta-contact {
        padding: 80px 0;
    }

    section.p-cta .p-cta-contact__title {
        font-size: 40px;
        line-height: 1;
        margin-bottom: 13px;
    }

    section.p-cta .p-cta-contact__sub {
        line-height: 1.2;
        font-size: 14px;
        font-weight: 500;
        padding-left: 20px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
        width: max-content;
        color: #fff;
        max-width: 100%;
    }

    .p-cta-contact__text {
        font-size: 14px;
        margin-bottom: 32px;
        margin-top: 20px;
        line-height: 2;
    }

    .p-cta-contact__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .p-cta-contact__btn {
        width: 100%;
        min-width: 0;
        padding: 10px 10px;
        font-size: 18px;
    }

    .p-cta-contact__btn-icon img {
        width: 32px;
        height: 32px;
    }

    a.p-cta-contact__btn.p-cta-contact__btn--tel {
        font-size: 28px;
    }

    /* CTA - Company */
    .p-cta-company {
        padding: 40px 20px 50px;
    }

    .p-cta-company__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p-cta-company__dl {
        grid-template-columns: 60px 1fr;
        gap: 8px 10px;
        font-size: 12px;
    }

    .p-cta-company__sns {
        justify-content: center;
    }

    .p-cta-company__sns-link {
        width: 32px;
        height: 32px;
    }

    .p-cta-company__logo {
    margin-bottom: 24px;
    max-width: 250px;
}

    .p-cta-company__inner .ttl-base-style {
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    /* TOP News */
    .p-top-news__inner {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 24px;
    }

    .p-top-news__inner__left {
        width: 100%;
        display: contents;
    }

    .p-top-news__inner__left .ttl-base-style {
        order: 1;
    }

    .p-top-news__list {
        width: 100%;
        max-width: none;
        order: 2;
    }

    .p-top-news__more {
        order: 3;
        margin: 0 auto;
    }

    li.p-top-news__item a {
        padding: 12px 8px;
        gap: 20px;
        font-size: 14px;
    }

    /* TOP About */
    section.p-top-about {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    p.p-top-about__lead {
        font-size: 16px;
        margin-top: 14px;
        margin-bottom: 32px;
    }

    .p-top-about__content {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px 32px;
        border-radius: 0 0 20px 20px;
    }

    .p-top-about__content::before {
        display: none;
    }

    .p-top-about__slider {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
    }

    .p-top-about__slide img {
        border-radius: 0;
    }

    .p-top-about__slider .slick-list {
        overflow: hidden;
        border-radius: 20px 20px 0 0;
    }

    /* TOP Reasons */
    .p-top-reasons__list {
        flex-direction: column;
        gap: 20px;
    }

    .p-top-reasons__list .p-top-reasons__item {
        width: 100%;
        border-radius: 20px;
    }

    .reasons__list-text-area {
        padding: 12px 18px;
        border-radius: 0;
        max-width: 100%;
    }

    p.p-top-reasons__item-text {
        font-size: 16px;
        line-height: 1.8;
    }

    p.p-top-reasons__item-text::after {
        width: 24px;
        height: 24px;
    }

    /* TOP Feature */
    .p-top-feature__list {
        flex-direction: column;
        gap: 32px;
        margin-top: 32px;
    }

    .p-top-feature__item {
        flex-direction: column;
    }

    .p-top-feature__item-body {
        padding: 18px;
        gap: 4px;
    }

    p.p-top-feature__item-text {
        font-size: 20px;
    }

    h3.p-top-feature__item-title {
        font-size: 16px;
    }

    /* MV動画 */
    .p-mv__copy {
        font-size: 18px;
    }

    /* Philosophy - FV */
    .p-philosophy-fv {
        min-height: 80svh;
        padding: 80px 0;
    }

    .p-philosophy-fv__inner {
        width: calc(100% - 40px);
        padding: 80px 10px;
    }
.p-philosophy-fv__lead {
    font-size: 18px;
    margin-bottom: 0;
}
.p-philosophy-fv__lead strong {
    font-size: 28px;
}
.p-philosophy-fv__lead strong {
    font-size: 24px;
    letter-spacing: -0.08em;
}

    .p-philosophy-fv__lead br.sp {
        display: inline;
    }

    .p-philosophy-content__text-col {
        width: 100%;
    }

    .p-philosophy-content__point-num {
        font-size: 14px;
        padding: 8px 24px;
    }

    .p-philosophy-content__point-sub {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .p-philosophy-content__point-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .p-philosophy-content__point-text {
        font-size: 14px;
        line-height: 2;
    }

    .p-philosophy-content__head {
        margin-bottom: 32px;
    }

    .p-philosophy-content__point:last-child {
        margin-bottom: 0;
    }

    /* Philosophy - ティッカー */
    .p-philosophy-ticker__item {
        width: 180px;
        height: 120px;
    }

    /* Philosophy - コンテンツ */
    .p-philosophy-content {
        padding: 80px 0 80px;
    }

    .p-philosophy-content__body {
        grid-template-columns: 1fr;
    }

    .p-philosophy-content__image-col {
        display: none;
    }

    .p-philosophy-content__point-image-sp {
        display: block;
        margin-top: 16px;
    }

    .p-philosophy-content__point-image-sp img {
        width: 100%;
        border-radius: 8px;
    }

    /* Safety */
    .p-safety-intro__inner {
        flex-direction: column;
        gap: 20px;
    }

    p.p-safety-intro__text {
        width: 100%;
        margin-top: 0;
        font-size: 14px;
    }

    .p-safety-intro__image {
        width: 100%;
    }

    section.p-safety-history h2.p-safety-history__title {
        font-size: 24px;
    }

    section.p-safety-history {
        padding: 40px 0 100px;
    }

    section.p-safety-history .p-safety-history__txt {
        font-size: 14px;
    }
    
.p-safety-history__txt__02 {
        font-size: 14px;
    }
    
    .p-safety-history__inner ul {
        padding: 40px 20px;
    }

    .p-safety-history__inner ul li {
        font-size: 14px;
        width: 100%;
    }

    /* Safety - トレーサビリティ矢印 */
    .p-safety-trace__arrow--prev {
        left: -8px;
    }

    .p-safety-trace__arrow--next {
        right: -8px;
    }

    /* Company - Information */
    .p-company-info__wrap {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px 20px;
    }

    .ttl-base-style__underpage {
        gap: 12px;
        margin-bottom: 24px;
    }

    .ttl-base-style__underpage h2 {
        font-size: 32px;
    }

    .ttl-base-style__underpage p {
        margin-bottom: 0;
    }

    table.p-company-info__table tr {
        padding: 14px 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    table.p-company-info__table tr th {
        width: 100%;
        text-align: left;
        font-size: 16px;
        font-weight: 500;
    }

    table.p-company-info__table tr td {
        font-weight: 500;
        font-size: 14px;
    }

    /* Company - Greeting */
    .p-company-greeting__content {
        flex-direction: column-reverse;
        gap: 24px;
        border-radius: 10px;
        padding: 20px 20px;
    }

    .p-company-greeting__body {
        width: 100%;
    }

    .p-company-greeting__image {
        width: 100%;
    }

    .p-company-greeting__lead {
        font-size: 18px;
        line-height: 1.5;
        padding-bottom: 14px;
        margin-bottom: 18px;
        padding-left: 0;
    }

    .p-company-greeting__lead::before {
        display: none;
    }

    p.p-company-greeting__text {
        line-height: 2;
        font-weight: 500;
        color: #424242;
        font-size: 14px;
    }

    /* Company - Philosophy */
    p.p-company-philosophy__lead {
        max-width: 100%;
        width: 100%;
        line-height: 2;
        font-size: 14px;
    }

    .p-company-philosophy__head {
        flex-direction: column;
        gap: 20px;
    }

    .p-company-philosophy__list {
        padding: 20px 20px;
        margin-top: 32px;
        gap: 24px;
    }

    .p-company-philosophy__item {
        grid-template-columns: 1fr;
        gap: 16px;
        flex-direction: column;
    }

    .p-company-philosophy__item-image {
        max-width: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .p-company-philosophy__item-body {
        width: 100%;
    }

    span.p-company-philosophy__item-num {
        padding-left: 22px;
        padding-right: 22px;
        margin-bottom: 10px;
    }

    h3.p-company-philosophy__item-title {
        font-size: 20px;
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    p.p-company-philosophy__item-text {
        font-size: 14px;
        line-height: 2;
    }

    .p-company-philosophy__item--reverse {
        grid-template-columns: 1fr;
    }

    .p-company-philosophy__item-image {
        order: 2;
    }

    .p-company-philosophy__item--reverse .p-company-philosophy__item-body {
        order: 1;
    }

    /* Company - Mission */
    .p-company-mission__list {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 16px;
        justify-content: space-between;
        padding-top: 32px;
    }

    .p-company-mission__card {
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        padding: 148px 32px 32px;
        margin-top: 140px;
    }

    /* Shop Archive */
    h2.p-shop-archive__heading {
        padding-bottom: 14px;
        margin-bottom: 24px;
        font-size: 24px;
    }

    /* Shop Archive - 直営 */
    li.p-shop-archive__item.p-shop-archive__item--wide {
        background-color: #fff;
        padding: 24px 20px;
        border-radius: 10px;
    }

    span.p-shop-archive__item-label {
        font-size: 12px;
    }

    h3.p-shop-archive__item-name {
        font-size: 24px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    h3.p-shop-archive__item-name > span:last-child {
        width: 100%;
    }

    li.p-shop-archive__item-dl-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    span.p-shop-archive__item-dt {
        margin-bottom: 4px;
        font-size: 16px;
    }

    ul.p-shop-archive__item-dl {
        gap: 12px;
    }

    .p-shop-archive__item-thumb img {
        height: auto;
        object-fit: cover;
    }

    li.p-shop-archive__item.p-shop-archive__item--wide iframe {
        margin-top: 20px;
    }

    .p-shop-archive__item-body {
        flex-direction: column;
        gap: 16px;
    }

    .p-shop-archive__item-info {
        width: 100%;
    }

    .p-shop-archive__item-thumb {
        width: 100%;
    }

    /* Shop Archive02 - 食肉販売 */
    h2.p-shop-archive02__heading {
        padding-bottom: 14px;
        margin-bottom: 24px;
        font-size: 24px;
    }

    .p-shop-archive02__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    li.p-shop-archive02__item {
        width: 100%;
    }

    /* Shopinfo - 飲食店舗 */
    .p-shopinfo-intro__wrap {
        padding: 32px 20px;
    }

    .p-shopinfo-intro__head {
        padding-bottom: 18px;
        padding-left: 0;
        padding-right: 0;
    }

    .p-shopinfo-intro__catch {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .p-shopinfo-intro__reserve-btn {
        margin-left: 0;
        display: none;
    }

    .p-shopinfo-intro__name {
        font-size: 24px;
    }

    .p-shopinfo-intro__body {
        flex-direction: column;
        gap: 24px;
    }

    .p-shopinfo-commitment__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .p-shopinfo-detail__wrap {
        padding: 32px 20px;
    }

    .p-shopinfo-detail__table tr {
        flex-direction: column;
        display: flex;
        gap: 8px;
    }

    .p-shopinfo-detail__table th {
        width: 100%;
        font-size: 13px;
        padding: 14px 20px 0 0;
    }

    .p-shopinfo-detail__table th br {
        display: none;
    }

    .p-shopinfo-detail__table td {
        padding: 0 0 14px 0;
        font-size: 14px;
    }

    .p-shopinfo-detail__buttons {
        flex-direction: column;
    }

    .p-shopinfo-detail__btn {
        width: 100%;
    }

    /* NEWS Archive */
    .p-news-archive__link {
        flex-wrap: wrap;
        gap: 4px 0;
        padding: 14px 40px 14px 0;
    }

    .p-news-archive__sep {
        display: none;
    }

    .p-news-archive__title {
        width: 100%;
        font-size: 15px;
    }

    /* NEWS Single */
    .p-news-single__wrap {
        padding: 32px 20px;
    }

    .p-news-single__title {
        font-size: 20px;
    }

    .p-news-single__content p {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 24px;
    }

    .p-news-single__content h2 {
        font-size: 18px;
        line-height: 1.5;
        padding-left: 18px;
    }

    .p-news-single__content h2::before {
        top: 1px;
        height: calc(100% - 14px);
        left: 0 !important;
    }

    .p-news-single__content h3 {
        font-size: 16px;
        padding-bottom: 14px;
        padding-left: 14px;
        margin-bottom: 16px;
        border-bottom: 1.5px dashed #C7C7C7;
    }

    .p-news-single__content h3::before {
        top: 11px;
    }

    .p-news-single__date {
        font-size: 12px;
        padding: 6px 16px;
    }

    .p-news-single__content {
        margin-bottom: 32px;
    }

    .p-news-single__content ul,
    .p-news-single__content ol {
        padding: 14px 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 32px;
    }

    .p-news-single__content ul li,
    .p-news-single__content ol li {
        font-size: 14px;
        line-height: 2;
    }

    /* Contact */
    .p-contact__table th br {
        display: none;
    }

    .p-contact__table tr {
        display: flex;
        justify-content: space-between;
        align-items: flex-start !important;
        flex-direction: column;
        gap: 8px;
    }

    .p-contact__table th {
        width: auto;
        display: flex;
        padding: 0;
        margin-top: 0;
    }

    .p-contact__table td {
        display: block;
        width: 100%;
        padding: 0;
    }

    .p-contact__table tbody {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .p-contact__table input[type="text"],
    .p-contact__table input[type="tel"],
    .p-contact__table input[type="email"],
    .p-contact__table textarea {
        padding: 12px 12px;
        font-size: 14px;
        border-radius: 10px;
        border: none;
    }

    .p-contact__input-note {
        flex-direction: column;
        gap: 6px;
    }

    .p-contact__input-note > span {
        display: block;
        width: 100%;
    }

    .p-contact__note {
        font-size: 12px;
    }

    .p-contact__privacy {
        margin-top: 0;
    }

    /* Privacy */
    .p-privacy__wrap {
        padding: 40px 20px;
    }

    .p-privacy__heading {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .p-privacy__subheading {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .p-privacy__text {
        margin-bottom: 24px;
        font-size: 14px;
    }

    /* Recruit */
    .p-recruit-info__wrap {
        padding: 40px 20px;
    }

    .p-recruit-info__title,
    .p-recruit-flow__title,
    .p-recruit-form__title {
        font-size: 32px;
    }

    .p-recruit-info__sub,
    .p-recruit-flow__sub,
    .p-recruit-form__sub {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .p-recruit-info__tabs {
        flex-direction: column;
        gap: 8px;
    }

    .p-recruit-info__tab {
        width: 100%;
    }

    .p-recruit-info__table tr {
        flex-direction: column;
        display: flex;
        gap: 8px;
    }

    .p-recruit-info__table th {
        width: 100%;
        font-size: 13px;
        padding: 14px 20px 0 0;
    }

    .p-recruit-info__table td {
        padding: 0 0 14px 0;
        font-size: 14px;
    }

    /* Pagination */
    .pagination {
        gap: 12px;
    }

    .pagination ul {
        gap: 12px;
    }

    /* ttl-base-style */
    .ttl-base-style__big h2 {
        font-size: 40px;
        letter-spacing: 0;
        line-height: 1.5;
    }

    .ttl-base-style__message h2 {
        font-size: 36px;
        white-space: nowrap;
    }

    .ttl-base-style__message p {
        font-size: 24px;
        font-weight: 700;
        background-color: transparent;
        padding: 0 8px;
    }

    .ttl-base-style__big p,
    section.p-top-reasons .ttl-base-style__big p,
    section.p-top-feature .ttl-base-style__big p {
        line-height: 20px;
        font-size: 14px;
    }

    .ttl-base-style__big p::before {
        width: 6px;
        height: 6px;
        top: 7.5px;
    }

    .c-btn {
        padding: 14px 20px;
        font-size: 18px;
        width: 100%;
        max-width: 340px;
        min-width: 230px;
        margin: auto;
    }

    br.pc {
        display: none;
    }

    br.sp {
        display: inline;
    }
}

/* ============================================
   Thanks ページ
   ============================================ */
.p-thanks {
    padding: 160px 0;
}

.p-thanks__inner {
    max-width: 730px;
    margin: 0 auto;
    padding: 0 20px;
}

.p-thanks__message {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 44px;
}

.p-thanks__text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 44px;
}

.p-thanks__tel {
    margin-top: 32px;
}

.p-thanks__tel p {
    font-size: 18px;
    color: #424242;
    margin-bottom: 8px;
}

.p-thanks__tel a {
    font-size: 18px;
    font-weight: 500;
    color: #424242;
    font-family: var(--font-en);
}

@media screen and (max-width: 768px) {
    .p-thanks {
        padding: 40px 0;
    }

    .p-thanks__inner {
        padding: 40px 20px;
    }

    .p-thanks__message {
        font-size: 20px;
    }

    .p-thanks__text {
        font-size: 14px;
    }
}
.p-recruit-info__table td iframe {
  display: block;
  width: 100%;
  height: 300px;
  margin: 16px 0;
  border: 0;
}

@media (max-width: 768px) {
  .p-recruit-info__table td iframe {
    height: 240px;
  }
}