:root {
    --header-height-pc: 8.0rem;
    --header-height-sp: 6.0rem;
    --color-bg-header: #ffffff;
    --color-btn-bg: #1a1a1a;
    --color-btn-text: #ffffff;
    --color-text-main: #222222;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --color-bg-main: #ffffff;
    --color-bg-dark: #222222;
    
    --font-family-en: "Roboto", sans-serif;
    --font-family-sans: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
    --font-family-serif: "Shippori Mincho", serif;
    
    --content-width: 104.0rem;
    --transition-standard: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, caption, th, td, img, form, figure {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: 400;
	list-style-type: none;
}
*:focus { outline: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
input, button, textarea, select { -webkit-appearance: none; appearance: none; }
a { color: inherit; text-decoration: none; transition: all var(--transition-standard); }

.grecaptcha-badge {
    visibility: hidden;
}

html{
	min-height: 620px;
	height: 100%;
	font-size: 62.5%;
}

body {
    height: 100%;
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.u-hidden-sp { display: block; }

/* 共通インナー設定 */
.header__inner,
.drawer__inner,
.news__inner {
    margin: 0 auto;
    padding: 0 4.0rem;
    box-sizing: border-box;
    position: relative;
}

.about__inner {
    margin: 0 auto;
    padding: 0 4.0rem;
    box-sizing: border-box;
    position: relative;
    width: 720px;
}

.works__inner {
}

.initiatives__inner{
    margin: 0 auto;
    padding: 0 4.0rem;
    box-sizing: border-box;
    position: relative;
}

.contact-sec__inner,{
    margin: 0 auto;
    padding: 0 4.0rem;
    box-sizing: border-box;
    position: relative;
}

.sec-title { margin-bottom: 4.0rem; }
.sec-title--center { text-align: center; }
.sec-title__en { display: block; font-family: var(--font-family-en); font-size: 1.4rem; font-weight: bold; letter-spacing: 0.1em; }
.sec-title__ja {
    display: block;
    font-family: var(--font-family-serif);
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.btn-wrap { margin-top: 4.0rem; }
.btn-wrap--center { text-align: center; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 6.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 0.8rem;
    transition: all var(--transition-standard);
    min-width: 16.0rem;
    box-sizing: border-box;
    cursor: pointer;
}
.btn--outline { background-color: transparent; color: var(--color-text-main); border: 0.1rem solid var(--color-text-main); }
.btn--outline:hover { background-color: #000; color: #ffffff; border-color: #000; }
.btn--white { background-color: #ffffff; color: var(--color-text-main); border: 0.1rem solid #ffffff; }
.btn--white:hover { background-color: #000; color: #ffffff; border-color: #000; }
.btn--black { background-color: var(--color-btn-bg); color: var(--color-btn-text); border: 0.1rem solid var(--color-btn-bg); }
.btn--black:hover { background-color: #ffffff; color: var(--color-btn-bg); }
.btn--more { text-transform: none; }

/* ========================================================
   Header
======================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-header);
    z-index: 100;
    padding: 8px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    height: var(--header-height-pc);
    justify-content: space-between;
}

.header__logo { margin: 0; line-height: 1; flex-shrink: 0; position: relative; z-index: 110; }
.header__logo-img { height: 6.8rem; width: auto; }
.header__logo a{ display: flex; align-items: center; gap: 0.8rem; }
.header__logo-text{ font-size: 1.2rem; font-weight: bold; }

.header__nav { flex-grow: 1; display: flex; justify-content: center; }
.header__nav:not(.is-active) .drawer__inner > :not(.drawer__main) { display: none; }
.header__nav:not(.is-active) .drawer__list { display: flex; align-items: center; gap: 4.0rem; }
.header__nav:not(.is-active) .drawer__link { display: block; color: var(--color-text-main); font-family: var(--font-family-en); font-size: 1.3rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding-bottom: 0.4rem; }
.header__nav:not(.is-active) .drawer__link::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 0.1rem; background-color: var(--color-text-main); transition: width 0.3s ease, transform 0.3s ease; transform: translateX(-50%); }
.header__nav:not(.is-active) .drawer__link:hover::after { width: 100%; }

.header__utils { display: flex; align-items: center; gap: 2.4rem; flex-shrink: 0; position: relative; z-index: 110; }
.header__btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem; background-color: var(--color-btn-bg); color: var(--color-btn-text); padding: 1.0rem 2.4rem; font-size: 1.2rem; font-family: var(--font-family-en); font-weight: 500; letter-spacing: 0.1em; border-radius: 0.4rem; border: 0.1rem solid var(--color-btn-bg); }
.header__btn:hover { background-color: #ffffff; color: var(--color-btn-bg); }
.header__hamburger { display: none; }

.header__cart-icon {
    transition: filter var(--transition-standard);
}

.header__btn:hover .header__cart-icon {
    filter: invert(1);
    /* もし真っ黒にしたい場合は filter: brightness(0); でも可能です */
}

@media screen and (min-width: 769px) {
    .drawer__inner { display: block; padding: 0; margin: 0; max-width: none; height: auto; }
}

/* ========================================================
   Hero
======================================================== */
.hero {
    position: relative;
    min-height: 60.0rem;
    width: 100%;
    overflow: hidden;
    margin-top: 96px;
    height: calc(100vh - 9.6rem);
}
.hero__slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero__bg { width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero__content { position: absolute; bottom: 4.0rem; left: 8.0rem; z-index: 10; display: flex; flex-direction: column; }
.hero__copy {
    color: #ffffff;
    font-family: var(--font-family-serif);
    font-size: 4rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: left;
}

.hero__utils {
    position: absolute;
    bottom: 4.0rem;
    right: 8.0rem;
    z-index: 10;
    display: flex;
    align-items: center;
    color: #ffffff;
    width: 160px;
}
.hero__btn {
    background: transparent;
    border: 0.1rem solid #ffffff;
    width: 8rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-standard);
}

.hero__btn:hover { background-color: rgba(255, 255, 255, 0.1); }
.hero__btn.swiper-button-disabled { opacity: 0.5; pointer-events: none; }
.hero__pagination { position: static; width: auto; padding: 0 1.6rem; font-family: var(--font-family-serif); font-size: 1.6rem; letter-spacing: 0.1em; font-weight: 500; }
.hero__pagination.swiper-pagination-fraction {
    color: #ffffff;
    position: unset;
    padding: 0;
}

.hero__bg {
    position: relative;
}
.hero__center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    z-index: 2;
}

.hero__center-logo img{
    width: 100%;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* ========================================================
   About & News
======================================================== */
.about { padding: 12.0rem 0; }
.about__text {
    font-size: 1.6rem;
    line-height: 2.2;
    letter-spacing: 0.05em;
    text-align: justify;
    margin-top: 6.4rem;
}

.about .btn-wrap {
    margin-top: 8rem;
}

.news {
    padding: 0 40px 12.0rem;
    box-sizing: border-box;
}
.news__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 0.1rem solid #606367;
    border-bottom: 0.1rem solid #606367;
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1400px;
}
.news__left {
    min-width: 320px;
}
.news__right { width: 100%; }
.news__list { width: 100%; }
.news__item { border-bottom: 0.1rem solid #cccccc; }
.news__link { display: flex; align-items: center; padding: 2.4rem 0; transition: opacity 0.3s; }
.news__link:hover { opacity: 0.6; }
.news__date {
    width: 14.0rem;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.news__title {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.6;
}

.news__btn-pc {
    margin-top: 110px;
}

.news__btn-sp { display: none; }

/* ========================================================
   Works 💡 スライダー設定をコンテナ内基準に修正
======================================================== */
.works {
    padding: 0;
    overflow: hidden;
}
.works__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4.8rem; position: relative; }
.works__title-area { flex-grow: 1; margin-bottom: 0; }
.works__btn-pc {
    position: absolute;
    right: 80px;
    bottom: 0;
}

.works__slider { 
    width: 100%; 
    overflow: visible; 
}

.works__list {
    display: flex;
    width: 100%;
}
.works__item {
    flex-shrink: 0;
    width: 80%; /* スマホ時の見え方 */
}
@media screen and (min-width: 768px) {
    .works__item {
        width: 30%; /* PC時の見え方 */
    }
}

.works__link { display: block; }
.works__link:hover .works__img { transform: scale(1.05); }
.works__img-wrapper {
    overflow: hidden;
    margin-bottom: 2.0rem;
    aspect-ratio: 1.8;
    background-color: #eee;
}
.works__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.works__body { padding: 0; }
.works__client {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 0.6rem;
    display: none;
}
.works__name {
    font-family: var(--font-family-sans);
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.works__tags {
    font-size: 1.2rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    line-height: 1.5;
}
.works__official-link { display: inline-block; margin-top: 1.2rem; font-size: 1.2rem; color: var(--color-text-light); text-decoration: underline; font-family: var(--font-family-sans); }
.works__official-link:hover { color: var(--color-text-main); }

.works__btn-sp {
    display: flex;
    margin: 6.4rem auto 0;
    justify-content: center;
}

/* NO IMAGE のスタイル */
.works__noimage {
    width: 100%;
    height: 100%;
    background-color: #eeeeee; /* グレーの背景 */
    display: flex;
    align-items: center;
    justify-content: center;
}
.works__noimage span {
    font-family: var(--font-family-en);
    font-size: 1.4rem;
    color: #999999;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* ========================================================
   Initiatives & Contact
======================================================== */
.initiatives { padding: 12.0rem 0; }
.initiatives__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.initiatives .sec-title {
    border-top: solid 1px #32373c;
    padding-top: 4rem;
}

.initiatives__card { display: block; }
.initiatives__img-wrapper { overflow: hidden; margin-bottom: 2.4rem; aspect-ratio: 16 / 9; }
.initiatives__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.initiatives__title {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}
.initiatives__text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
    text-align: justify;
}

.initiatives__more {
    display: inline-block;
    font-weight: 500;
    transition: opacity 0.3s;
    text-decoration: underline;
}
.initiatives__more:hover { opacity: 0.7; text-decoration: none; }

.contact-sec {
    padding: 0 40px 4rem;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.block-link { display: block; }
.contact-sec__inner {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    border-radius: 1.6rem;
    padding: 10rem 12rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0.1rem solid transparent;
    transition: all 0.4s ease;
    max-width: 1400px;
    box-sizing: border-box;
}
.contact-sec__inner:hover { background-color: #ffffff; color: var(--color-bg-dark); border-color: var(--color-bg-dark); }
.contact-sec__inner:hover .sec-title__en, .contact-sec__inner:hover .sec-title__ja { color: var(--color-bg-dark); }
.contact-sec__inner:hover .btn--white { background-color: var(--color-bg-dark); color: #ffffff; border-color: var(--color-bg-dark); }
.contact-sec__left {
    width: 44%;
}
.contact-sec__left .sec-title { margin-bottom: 0; }
.contact-sec__right { width: 48%; }
.contact-sec__text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3.2rem;
}
.contact-sec__btn-wrap .btn {
    pointer-events: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
}

.footer {
    padding: 4rem 0 4.0rem;
    background-color: #fff;
}

.footer__inner {
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    box-sizing: border-box;
}

.footer__main { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8.0rem; }
.footer__left { display: flex; flex-direction: column; gap: 4.0rem; width: 45%; }
.footer__company-info {
    display: flex;
    gap: 3.2rem;
    align-items: center;
}
.footer__logo { width: 12.0rem; }
.footer__logo img{ width: 100%; }
.footer__address-block p {
    line-height: 1.6;
}
.footer__company-name { margin-bottom: 0.4rem !important; }
.footer__zip { margin-bottom: 0.4rem !important; }
.footer__ext-links li {
    margin-bottom: 0.8rem;
}
.footer__ext-links a { font-size: 1.3rem; display: inline-flex; align-items: center; gap: 0.8rem; }
.icon-ext { width: 1.4rem; height: 1.4rem; }

.footer__right-wrapper {
    width: 44%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer__right {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: stretch;
}

.footer__pagetop {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 10.0rem;
    height: 10.0rem;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 4rem;
}

.footer__pagetop:hover { opacity: 0.7; }

.footer__nav-row {
    display: flex;
    align-items: center;
    gap: 1.6rem 3.2rem;
    flex-wrap: wrap;
}
.footer__nav-row a {
    font-family: var(--font-family-en);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer__nav-sub { display: flex; gap: 3.2rem; align-items: center; }
.footer__nav-row--mid {
}

.btn--store {
    padding: 1.2rem 2.4rem;
    font-size: 1.2rem;
    border-radius: 0.4rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    width: 200px;
}

.footer__sns {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}
.footer__sns a { display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--font-family-en); font-size: 1.2rem; }

.footer__copy { text-align: center; }
.footer__copy small {
    font-family: var(--font-family-en);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.btn--store .icon-cart {
    transition: filter var(--transition-standard);
}

.btn--store:hover .icon-cart {
    filter: invert(1);
}

/* ========================================================
   実績詳細ページ専用インナー
======================================================== */
.works-single__inner {
    margin: 0 auto;
    padding: 0 4.0rem;
    box-sizing: border-box;
    position: relative;
    max-width: 960px;
}

/* ========================================================
   Single Works (実績詳細ページレイアウト)
======================================================== */
.works-single {
    padding-top: calc(var(--header-height-pc) + 8rem);
}

/* パンくずリスト */
.breadcrumb {
    margin-bottom: 6.0rem;
}
.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-family-en);
    font-size: 1.1rem;
    color: var(--color-text-light);
}
.breadcrumb__item {
    display: flex;
    align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
    content: '>';
    margin-left: 0.8rem;
    font-size: 1.0rem;
}
.breadcrumb__item a {
    color: var(--color-text-light);
    transition: color var(--transition-standard);
}
.breadcrumb__item a:hover {
    color: var(--color-text-main);
}

/* ヘッダーエリア */
.works-single__header {
    margin-bottom: 4.0rem;
}
.works-single__catch {
    font-family: var(--font-family-serif);
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    color: var(--color-text-main);
    line-height: 1.4;
}
.works-single__title {
    font-family: var(--font-family-sans);
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.works-single__tags {
    font-size: 1.2rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

/* メインビジュアル（左右100%） */
.works-single__mv {
    margin-bottom: 6.0rem;
    width: 100%;
}
.works-single__mv-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.works__noimage {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.works__noimage span {
    font-family: var(--font-family-en);
    font-size: 1.4rem;
    color: #999999;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* 本文エリア */
.works-single__content {
    margin-bottom: 8.0rem;
    font-size: 1.5rem;
    line-height: 2.0;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    max-width: 960px;
}
.works-single__content p {
    margin-bottom: 2.4rem;
    text-align: justify;
}
.works-single__content h2 { font-size: 2.4rem; margin: 4.8rem 0 2.4rem; font-family: var(--font-family-serif); border-bottom: 0.1rem solid var(--color-border); padding-bottom: 1.2rem; }
.works-single__content h3 { font-size: 2.0rem; margin: 3.2rem 0 1.6rem; font-weight: bold; }
.works-single__content img { margin: 3.2rem 0; max-width: 100%; height: auto; display: block; }

/* ギャラリーをスライダー化するCSS */
.gallery.swiper, .wp-block-gallery.swiper {
    margin: 6.0rem auto 2.0rem !important;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border: solid 1px #606367;
    box-sizing: border-box;
}

.works-single__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.works-single__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 2.4;
    object-fit: contain;
    margin: 0 !important;
}

/* スライダーのページネーション */
.works-single__pagination {
    text-align: center;
    font-family: var(--font-family-en);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--color-text-main);
    margin-bottom: 6.0rem;
}

/* ========================================================
   店舗情報ブロック
======================================================== */
.works-single__shop {
    margin-bottom: 8.0rem;
}
.works-single__shop-box {
    display: flex;
    gap: 6.0rem;
    align-items: flex-start;
    padding: 4.8rem 6.4rem;
    border: 0.1rem dashed #000;
}
.works-single__shop-img {
    width: 45%;
    flex-shrink: 0;
}
.works-single__shop-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.works-single__shop-body {
    width: 55%;
}
.works-single__shop-title {
    font-family: var(--font-family-sans);
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
}
.works-single__shop-text {
    font-size: 1.4rem;
    line-height: 2.0;
    margin-bottom: 3.2rem;
}
.works-single__shop-links {
    display: flex;
    flex-direction: column; /* 縦積みに変更 */
    gap: 1.6rem;
}
.works-single__shop-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-family-sans);
    font-size: 1.4rem;
    text-decoration: underline; /* デザイン通りの下線 */
    transition: opacity var(--transition-standard);
}
.works-single__shop-links a:hover {
    opacity: 0.7;
}
.works-single__shop-links svg {
    flex-shrink: 0;
}

/* 戻るボタン */
.works-single__back {
    margin-bottom: 12.0rem;
}
.works-single__back .btn {
    min-width: 24.0rem;
}

/* 💡 左右のシンプルな矢印ボタンのスタイル */
.works-single__prev,
.works-single__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5.0rem;
    height: 5.0rem;
    background-color: rgba(255, 255, 255, 0.7); /* 微かに白背景を敷いて視認性を確保 */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, opacity 0.3s;
    padding: 0;
}
.works-single__prev:hover,
.works-single__next:hover {
    background-color: rgba(255, 255, 255, 1);
}
.works-single__prev {
    left: 2.0rem;
}
.works-single__next {
    right: 2.0rem;
}

/* SVG矢印の線の太さと色を調整 */
.works-single__prev svg,
.works-single__next svg {
    width: 2.4rem;
    height: 2.4rem;
}
.works-single__prev svg path,
.works-single__next svg path {
    stroke: #222222;
    stroke-width: 1.0; /* 線を細くしてシャープに */
    fill: none;
}

.works-single__content .aligncenter {
    margin: 3.2rem auto;
}

/* ========================================================
   About Page 専用スタイル
======================================================== */
.about-page__inner {
    margin: 0 auto;
    padding: 0 8.0rem;
    box-sizing: border-box;
    position: relative;
    max-width: 1120px;
}

.about-page {
    padding-top: calc(var(--header-height-pc) + 8rem);
    padding-bottom: 4.0rem;
}

/* ページヘッダー（タイトル＆パンくず） */
.about-page__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4.0rem;
    max-width: unset;
}

/* ========================================================
   汎用下層ページヘッダー（タイトル＆パンくず）
======================================================== */
.lower-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 4rem;
    gap: 2.4rem;
    padding: 0 4rem;
    max-width: 1400px;
    box-sizing: border-box;
}

/* タイトルエリアはブラウザ幅が狭まった際に折り返しを許容 */
.lower-header__title-area {
    min-width: 0; 
}

/* ABOUTページ等の固定タイトル用スタイル */
.lower-header .sec-title__en {
    display: block;
    font-family: var(--font-family-en, "Roboto", sans-serif);
    font-size: 2.0rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}
.lower-header .sec-title__ja {
    font-family: var(--font-family-serif, "Shippori Mincho", serif);
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
}

.lower-header .breadcrumb--pc {
    flex-shrink: 0; /* パンくずエリア自体が縮まないようにする */
}
.lower-header .breadcrumb__list {
    flex-wrap: nowrap; /* リストアイテムを折り返さない */
    white-space: nowrap; /* テキストを改行させない */
}

.works-single__client {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 4rem;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-family-en, "Roboto", sans-serif);
    font-size: 1.1rem;
    color: var(--color-text-light, #666);
}
.breadcrumb__item {
    display: flex;
    align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
    content: '>';
    margin-left: 0.8rem;
    font-size: 1.0rem;
}
.breadcrumb__item a {
    color: var(--color-text-light, #666);
    transition: color 0.3s;
}
.breadcrumb__item a:hover {
    color: var(--color-text-main, #222);
}

/* メインビジュアル */
.about-page__mv {
    width: 100%;
    margin-bottom: 8.0rem;
}
.about-page__mv img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* イントロダクション */
.about-page__intro {
    display: flex;
    justify-content: space-between;
    gap: 6.0rem;
    margin-bottom: 8.0rem;
}
.about-page__intro-catch {
    font-family: var(--font-family-serif, "Shippori Mincho", serif);
    font-size: 2.8rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    width: 35%;
    flex-shrink: 0;
}
.about-page__intro-text {
    width: 60%;
    font-size: 1.5rem;
    line-height: 2.0;
    text-align: justify;
}
.about-page__intro-text p{
    margin-bottom: 2.0rem;
}
.about-page__intro-text p:last-child{
    margin-bottom: 0;
}

/* プロフィール */
.about-page__profile {
    margin-bottom: 8.0rem;
}
.profile__box {
    border: 0.1rem dashed #bbbbbb;
    padding: 6.0rem;
    display: flex;
    justify-content: space-between;
    gap: 6.0rem;
}
.profile__img-wrapper {
    width: 30%;
    flex-shrink: 0;
}
.profile__img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.profile__body {
    width: 65%;
}
.profile__name {
    font-size: 2.0rem;
    margin-bottom: 3.2rem;
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
}
.profile__name span {
    font-size: 1.4rem;
    font-family: var(--font-family-en, "Roboto", sans-serif);
    color: var(--color-text-light, #666);
}

.profile__history {
    font-size: 1.3rem;
}
.profile__history-row {
    display: flex;
    margin-bottom: 3.2rem;
}

.profile__history-row:last-child{
    margin-bottom: 0;
}

.profile__history-row dt {
    width: 8.0rem;
    flex-shrink: 0;
    line-height: 1.8;
}
.profile__history-row dd {
    margin: 0;
    flex-grow: 1;
    line-height: 1.8;
}

/* Mission セクション */
.about-page__mission {
    margin-bottom: 12.0rem;
}

/* Missionの短い下線装飾 */
.mission__main-title {
    text-align: center;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 6.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.mission__main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4.8rem;
    height: 0.4rem;
    background-color: var(--color-text-main, #222);
}

.mission__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
    align-items: center;
}

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

.mission__left {
    width: 35%;
    flex-shrink: 0;
    min-width: 360px;
}

.mission__subtitle-ja {
    font-family: var(--font-family-serif, "Shippori Mincho", serif);
    font-size: 3.2rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.mission__subtitle-en {
    display: block;
    font-family: var(--font-family-en, "Roboto", sans-serif);
    font-size: 2rem;
    color: var(--color-text-light, #666);
    font-weight: 400;
    padding-left: 1.6rem;
}

.mission__right {
    width: 56%;
}

.mission__text {
    font-size: 1.5rem;
    line-height: 2.0;
    text-align: justify;
}

/* ========================================================
   Works 一覧専用スタイル
======================================================== */
.archive-works {
    padding-top: calc(var(--header-height-pc) + 8rem);
    padding-bottom: 4rem;
}

.archive-works__content {
    margin: 0 auto 8rem;
    padding: 0 4.0rem;
    box-sizing: border-box;
    max-width: 1400px;
}

/* 一覧グリッド */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6.0rem 4.0rem;
    margin-bottom: 8.0rem;
}

/* 1600px以上で4カラム */
@media screen and (min-width: 1600px) {
    .works-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 960px以下で2カラム化 */
@media screen and (max-width: 960px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4.0rem 3.2rem;
    }
}

.works-grid__link { display: block; }
.works-grid__link:hover .works-grid__img { transform: scale(1.05); }

.works-grid__img-wrapper {
    overflow: hidden;
    margin-bottom: 2.0rem;
    aspect-ratio: 1.6;
    background-color: #eee;
}

.works-grid__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.works-grid__client {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
}

.works-grid__name { 
    font-family: var(--font-family-sans); 
    font-size: 2.4rem; 
    margin-bottom: 1.2rem; 
    line-height: 1.4; 
    letter-spacing: 0.02em;
}
.works-grid__tags { 
    font-size: 1.2rem; 
    color: var(--color-text-light); 
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-family-en);
    font-size: 1.1rem;
    color: var(--color-text-light);
}
.breadcrumb-item {
    display: flex;
    align-items: center;
}
.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.8rem;
    font-size: 1.0rem;
}
.breadcrumb-item a {
    color: var(--color-text-light);
}
.breadcrumb-item a:hover {
    color: var(--color-text-main);
}

.lower-header__breadcrumb {
    flex-shrink: 0;
}
.lower-header__breadcrumb .breadcrumb-list {
    flex-wrap: nowrap;
    white-space: nowrap;
}

.archive-works__breadcrumb {
    display: none;
}

.pagination { display: flex; justify-content: center; gap: 1.2rem; margin-top: 4.0rem; }
.pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 4.0rem; height: 4.0rem; border: 0.1rem solid var(--color-border); font-family: var(--font-family-en); font-size: 1.4rem; transition: all 0.3s; }
.pagination .page-numbers:hover { background-color: #f5f5f5; }
.pagination .current { background-color: var(--color-text-main); color: #fff; border-color: var(--color-text-main); }
.no-post { font-size: 1.5rem; text-align: center; padding: 6.0rem 0; }


/* ========================================================
   News 一覧専用スタイル
======================================================== */
.archive-news {
    padding-top: calc(var(--header-height-pc) + 8rem);
    padding-bottom: 4rem;
}

.archive-news__content {
    max-width: 800px;
    margin: 0 auto 8rem;
    padding: 0 4.0rem;
    box-sizing: border-box;
}

.news-list-wrap {
}

.news-list {
    border-top: 0.1rem solid var(--color-border, #e0e0e0);
    margin-bottom: 4.0rem;
}

.news-list__item {
    border-bottom: 0.1rem solid var(--color-border, #e0e0e0);
}

.news-list__link {
    display: flex;
    align-items: baseline;
    padding: 2.4rem 0;
    gap: 3.2rem;
    transition: opacity 0.3s;
}

.news-list__link:hover {
    opacity: 0.6;
}

.news-list__date {
    font-family: var(--font-family-en);
    font-size: 1.4rem;
    color: var(--color-text-light);
    width: 10.0rem;
    flex-shrink: 0;
}

.news-list__title {
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-family-sans);
}

.no-post { font-size: 1.5rem; text-align: center; padding: 6.0rem 0; }

.archive-news__breadcrumb {
    display: none;
}


/* ========================================================
   News 詳細専用スタイル
======================================================== */
.single-news {
    padding-top: calc(var(--header-height-pc) + 8rem);
    padding-bottom: 4rem;
}

.single-news__article {
    max-width: 800px;
    margin: 0 auto 8rem;
    padding: 0 4.0rem;
    box-sizing: border-box;
}

.single-news__header {
    margin-bottom: 4.0rem;
    border-bottom: 0.1rem solid var(--color-border, #e0e0e0);
    padding-bottom: 2.4rem;
}

.single-news__date { 
    display: block; 
    font-family: var(--font-family-en); 
    font-size: 1.4rem; 
    color: var(--color-text-light); 
    margin-bottom: 1.6rem; 
}

.single-news__title { 
    font-size: 2.8rem; 
    margin: 0; 
    line-height: 1.5; 
    font-family: var(--font-family-sans); 
}

.single-news__mv { 
    margin-bottom: 4.0rem; 
    width: 100%; 
}

.single-news__mv-img { 
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
}

.single-news__content { 
    font-size: 1.5rem; 
    line-height: 2.0; 
    margin-bottom: 8.0rem; 
}

.single-news__content p { 
    margin-bottom: 2.4rem; 
    text-align: justify;
}

.single-news__content h2 { 
    font-size: 2.4rem; 
    margin: 4.8rem 0 2.4rem; 
    font-family: var(--font-family-serif); 
    border-bottom: 0.1rem solid var(--color-border, #e0e0e0); 
    padding-bottom: 1.2rem; 
}

.single-news__content h3 { 
    font-size: 2.0rem; 
    margin: 3.2rem 0 1.6rem; 
    font-weight: bold; 
}

.single-news__content img { 
    margin: 3.2rem 0; 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.single-news__back { 
    margin-bottom: 8.0rem; 
}

.single-news__back .btn { 
    min-width: 24.0rem; 
}

.single-news__breadcrumb {
    display: none;
}

/* ========================================================
   Contact ページ専用スタイル
======================================================== */
.contact-page {
    padding-top: calc(var(--header-height-pc) + 8rem);
    padding-bottom: 4rem;
}

.contact-page__content {
    margin: 0 auto 8rem;
    padding: 0 4.0rem;
    box-sizing: border-box;
    max-width: 1400px;
    display: flex;
    gap: 8rem;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.contact-page__lead {
    width: 40%;
    position: sticky;
    height: 100%;
    top: 14rem;
    padding-bottom: 2rem;
}

.contact-page__lead p {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 2.0;
}

.contact-page__form {
    width: 56%;
}

/* ========================================================
   Contact Form 7 フォームスタイル
======================================================== */
.form-table {
    border-top: 0.1rem solid var(--color-border, #e0e0e0);
    margin-bottom: 4.8rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    border-bottom: 0.1rem solid var(--color-border, #e0e0e0);
    padding: 3.2rem 0;
}

.form-row dt {
    width: 100%;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
}

.form-row .required {
    display: inline-block;
    background-color: #d9534f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: normal;
    padding: 0.2rem 0.8rem;
    border-radius: 0.2rem;
    margin-left: 1.2rem;
}

.form-row dd {
    width: 100%;
}

.wpcf7-text, 
.wpcf7-textarea { 
    width: 100%; 
    padding: 1.4rem; 
    border: 0.1rem solid #cccccc; 
    border-radius: 0.4rem; 
    font-size: 1.5rem; 
    background-color: #fafafa; 
    box-sizing: border-box; 
    font-family: inherit;
    transition: background-color 0.3s;
}

.wpcf7-text:focus, 
.wpcf7-textarea:focus {
    background-color: #ffffff;
    border-color: #999999;
}

.wpcf7-textarea { 
    height: 20.0rem; 
    resize: vertical; 
}

.form-radio .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 2.4rem;
}
.form-radio .wpcf7-list-item {
    margin: 0;
}

/* ========================================================
   ラジオボタン・チェックボックスのカスタムデザイン（四角）
======================================================== */
.form-radio input[type="radio"],
.form-acceptance input[type="checkbox"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 2.0rem;
    height: 2.0rem;
    border: 0.1rem solid #cccccc;
    background-color: #ffffff;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 0.8rem;
    border-radius: 0 !important; /* 丸みを完全に消して四角にする */
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ホバー時の枠線色 */
.form-radio input[type="radio"]:hover,
.form-acceptance input[type="checkbox"]:hover {
    border-color: var(--color-text-main, #222222);
}

/* チェック（選択）されたら背景を黒にする */
.form-radio input[type="radio"]:checked,
.form-acceptance input[type="checkbox"]:checked {
    background-color: var(--color-text-main, #222222);
    border-color: var(--color-text-main, #222222);
}

.form-radio input[type="radio"]:checked::after,
.form-acceptance input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 0.6rem;
    top: 0.2rem;
    width: 0.5rem;
    height: 0.9rem;
    border: solid #ffffff;
    border-width: 0 0.2rem 0.2rem 0;
    transform: rotate(45deg);
}

/* テキスト（ラベル）と四角の位置ズレを調整 */
.form-radio .wpcf7-list-item label,
.form-acceptance label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    line-height: 1.5;
}

.form-acceptance {
    text-align: center;
    margin: 4.0rem 0 2.0rem;
    font-size: 1.4rem;
    width: 100%;
}
.form-acceptance a {
    text-decoration: underline;
    font-weight: bold;
}

.form-submit {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-submit .wpcf7-submit {
    display: block;
    width: 30.0rem;
    margin: 2.4rem auto 0;
    padding: 1.6rem;
    background-color: var(--color-btn-bg, #1a1a1a);
    color: var(--color-btn-text, #ffffff);
    border: none;
    border-radius: 0.8rem;
    font-family: var(--font-family-en);
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: opacity 0.3s;
}

.form-submit .wpcf7-submit:hover { 
    opacity: 0.7; 
}

.wpcf7-not-valid-tip { font-size: 1.3rem; margin-top: 0.8rem; color: #d9534f; }

.wpcf7 form .wpcf7-response-output {
    margin-top: 2.4rem;
    padding: 1.6em 4em;
    border: 2px solid #00a0d2;
    text-align: center;
    font-size: 1.6rem;
}

.contact-page__breadcrumb {
    display: none;
}

/* ========================================================
   個人情報保護方針にチェックがない間、送信ボタンをロックする
======================================================== */
.form-submit .wpcf7-submit[disabled],
.form-submit .wpcf7-submit:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important; /* マウスを禁止マークにする */
    pointer-events: none !important; /* クリック反応を完全に無効化する */
}

/* ========================================================
   Privacy Policy ページ専用スタイル
======================================================== */
.privacy-page {
    padding-top: calc(var(--header-height-pc) + 8rem);
    padding-bottom: 4rem;
}

/* 💡 テキストメインのページなので、読みやすさを考慮し幅を絞っています */
.privacy-page__content {
    margin: 0 auto 12rem;
    padding: 0 4.0rem;
    box-sizing: border-box;
    max-width: 880px;
}

.privacy-page__text {
    font-size: 1.5rem;
    line-height: 2.0;
    color: var(--color-text-main, #222);
}

.privacy-page__text p {
    margin-bottom: 3.2rem;
    text-align: justify;
}

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

.privacy-page__text h2 {
    font-family: var(--font-family-sans, "Noto Sans JP", sans-serif);
    font-size: 2.0rem;
    font-weight: bold;
    margin: 4.8rem 0 2.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 0.1rem solid var(--color-border, #e0e0e0);
}

.privacy-page__contact-info {
    background-color: #fafafa;
    padding: 2.4rem;
    border: 0.1rem solid var(--color-border, #e0e0e0);
    margin-top: 1.6rem;
}

.privacy-page__contact-info p {
    margin-bottom: 0;
}

.privacy-page__breadcrumb {
    display: none;
}














/* 768px以上 1000px以下 */
@media screen and (min-width: 768px) and (max-width: 1000px) {

.about-page__intro {
    flex-direction: column;
    gap: 4rem;
}

.about-page__intro-catch {
    width: 100%;
}

.about-page__intro-text {
    width: 100%;
}

.mission__item {
    flex-direction: column;
    align-items: flex-start;
}

.mission__left {
    width: 100%;
}

.mission__right {
    width: 100%;
    margin-top: 2.4rem;
}

.footer__company-info {
    gap: 2.4rem;
    align-items: flex-start;
    flex-direction: column;
}

.footer__right-wrapper {
    width: 58%;
}

.footer__pagetop {
    min-width: 8rem;
    height: 8rem;
}

.footer__left {
    gap: 2.4rem;
    width: 40%;
}

.footer__main {
    margin-bottom: 4rem;
}






}




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

.contact-page__content {
    flex-direction: column;
    gap: 0;
}

.contact-page__lead {
    width: 100%;
    position: unset;
    height: auto;
}

.contact-page__form {
    width: 100%;
}



}






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

.u-hidden-pc { display: none !important; }


}


















@media screen and (min-width: 750px){
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}

}




















