@charset "UTF-8";
/*
Theme Name: FELICE Child (arkheカスタム)
Template: arkhe
Version: 1.1.0
*/

/* ==================== CSS VARIABLES ==================== */
:root {
    --font-en: "Fahkwang", "Noto Sans JP", sans-serif;
    --font-ja: "yu-gothic-pr6n", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

    --color-dark: #2a2a2a;
    --color-darker: #222;
    --color-darkest: #111;
    --color-light: #f5f5f5;
    --color-white: #fff;
    --color-border: #e0e0e0;
    --color-text: #666;
    --color-text-dark: #222;

    --btn-height: 60px;
    --btn-width-s: 200px;
    --btn-width-m: 250px;

    --transition-base: all 0.3s;

    /* container helpers */
    --container-max: 1200px;
    --container-pad: 20px;
	 --container-gutter: max(0px, calc((100vw - var(--container-max)) / 2));
  --container-content-left: calc(var(--container-pad) + var(--container-gutter));

    /* breadcrumb */
    --breadcrumb-overlap: 20px;
}

/* ==================== font ==================== */
@font-face {
    font-family: "Fahkwang";
    src: url("assets/fonts/Fahkwang-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-ja);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-dark);
    background: var(--color-white);
}

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

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

a:hover {
    opacity: 0.7;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.btn {
    font-family: var(--font-en) !important;
}

h2.section-title {
    font-family: var(--font-en);
    font-weight: 400;
}



/* ==================== COMMON ==================== */
.section-fullwidth {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* コンテナ */
.l-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}
@media (max-width: 768px) {
	.l-container {
    padding: 0  10px;
}
	
}
/* 1200基準の左右オフセット(左だけ揃える用途) */
.u-container-leftpad {
    padding-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2));
    padding-right: var(--container-pad);
}

/* 1200基準の右余白(右だけ揃える用途) */
.u-container-rightmargin {
    margin-right: max(var(--container-pad), calc((100vw - var(--container-max)) / 2));
}

/* スクロールバー隠し */
.hide-scrollbar {
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* SP専用 */
.u-br-sp {
    display: none;
}

@media (max-width: 768px) {
    .u-br-sp {
        display: inline;
    }
}
.u-sp {
    display: none;
}

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



/* ==================== BUTTONS (統合) ==================== */
/* ボタン共通構造 */
.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: var(--transition-base);
    text-align: center;
}

/* 外部リンクアイコン */
.btn i.fa-arrow-up-right-from-square {
    font-size: 10px;
}

.main-btn,
.main-btn-w,
.brand-link-more {
    width: var(--btn-width-m);
    height: var(--btn-height);
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: var(--transition-base);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* dark fill */
.main-btn,
.brand-link-more {
    background: var(--color-dark);
    color: var(--color-white);
}

.main-btn::after,
.brand-link-more::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-white);
    transition: width 0.3s;
}

.main-btn:hover::after,
.brand-link-more:hover::after {
    width: 10px;
}

.main-btn:hover,
.brand-link-more:hover {
    background: #3a3a3a;
    opacity: 1;
}

/* white fill */
.main-btn-w {
    background: var(--color-white);
    color: var(--color-dark);
}

.main-btn-w::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-dark);
    transition: width 0.3s;
}

.main-btn-w:hover::after {
    width: 10px;
}

.main-btn-w:hover {
    background: var(--color-white);
    opacity: 0.8;
}

/* outline button */
.btn-more {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-dark);
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
}

.btn-more:hover {
    background: var(--color-text-dark);
    color: var(--color-white);
    opacity: 1;
}

.section-btn-wrap {
    text-align: center;
    margin-top: 60px;
}

.brand-link-btn,
.column-link-btn,
.shop-link-btn {
    height: var(--btn-height);
    text-align: center;
    padding: 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* brand-link-btn / column-link-btn = dark */
.brand-link-btn,
.column-link-btn {
    background: var(--color-darker);
    color: var(--color-white);
}

.brand-link-btn:hover,
.column-link-btn:hover {
    background: #3a3a3a;
    opacity: 0.8;
}

/* shop-link-btn = light */
.shop-link-btn {
    background: var(--color-light);
    color: var(--color-darker);
}

.shop-link-btn:hover {
    background: var(--color-light);
    opacity: 0.8;
}

@media (max-width: 768px){
	
.main-btn,
.main-btn-w,
.brand-link-more {
    width: 176px;
    height: 40px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    transition: var(--transition-base);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
	
}
/* ==================== HEADER ==================== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, color 0.25s ease;
}

/* ロゴSVGが currentColor なので、基本は header の color で制御 */
.site-header.is-overlay{
  background-color: transparent;
  color: var(--color-white);
}

.site-header.is-scrolled{
  color: var(--color-darkest);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: saturate(140%) blur(20px);
}
.is-scrolled .is-shop{
  color: #fff !important;
  background-color: #111 !important
}

.site-header.is-menu-open{
  color: var(--color-darkest);
  background: transparent;
  backdrop-filter: none;
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.header-logo a{
  font-size: 20px;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* PC nav */
.header-nav-list{
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list li{
  font-family: var(--font-en);
  list-style: none;
}

.header-nav-item a{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-en{
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.nav-ja{
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.8;
}

/* Online shop（PC） */
.header-nav-item.is-shop a.nav-shop{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: var(--color-white);
  color: var(--color-darker) !important;
}

/* 下層ページは切り替え */
.site-header.is-page .header-nav-item.is-shop a.nav-shop{
  background-color: var(--color-darkest) !important;
  color: var(--color-white) !important;
}
/* スクロール後は切り替え */
.site-header.is-scrolled .header-nav-item.is-shop a.nav-shop{
  background-color: var(--color-darkest) !important;
  color: var(--color-white) !important;
}


/* Burger */
.header-burger{
  display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.header-burger span{
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.25s ease;
}

.header-burger span + span{
  margin-top: 6px;
}

/* ===== SP ===== */
@media (max-width: 768px){
  .site-header{
    height: 84px;
  }

  .header-inner{
    padding: 0 24px;
  }

 
  .header-logo{
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 200000;
  }

  .header-burger{
    display: block;
    position: fixed;
    top: 28px;
    right: 24px;
    z-index: 200000;
    color: currentColor;
  }

  
  .header-nav{
    position: fixed;
    inset: 0;
    background-color: var(--color-white);
    display: none;
    z-index: 150000;
    padding: 0;
  }

  .header-nav.is-open{
    display: block;
  }

 
  .header-nav-list{
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
  }

  .header-nav-item a{
    color: var(--color-darkest);
  }

  .nav-en{
    font-size: 18px;
  }

  .nav-ja{
    font-size: 12px;
    opacity: 0.7;
  }

  /* Online shop（SP） */
  .header-nav-item.is-shop{
    margin-top: 32px;
  }

  .header-nav-item.is-shop a.nav-shop{
    height: 48px;
    padding: 0 32px;
    background-color: var(--color-darkest) !important;
    color: var(--color-white) !important;
  }

  .site-header.is-overlay{
    color: var(--color-white);
  }

  .site-header.is-overlay.is-menu-open{
    color: var(--color-darkest);
  }

  .site-header.is-scrolled{
    color: var(--color-darkest);
  }

  /* × 変形（aria-expanded=true） */
  .header-burger[aria-expanded="true"] span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  .header-burger[aria-expanded="true"] span:nth-child(2){
    opacity: 0;
  }

  .header-burger[aria-expanded="true"] span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}

:is(.l-drawer, .l-drawer__overlay, [data-ark-drawer], .ark-drawer, .ark-overlay){
  display: none !important;
}



/* ==================== 下層ページのタイトル表示 ==================== */
.p-topArea.-noimg {
    background: #cdcdcd;
}

.p-topArea {
    padding-top: 120px;
}

.p-topArea__body {
    color: #222;
    text-align: left;
    text-shadow: none;
    font-family: var(--font-en);
}

.c-pageTitle__main {
    font-size: 2.8rem;
    font-weight: 100;
}

.p-topArea__body span {
    font-family: var(--font-ja);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: normal;
}

.p-topArea__body span::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: currentColor;
    flex: 0 0 auto;
    margin-right: 0.8em;
}

/* ==================== パンくず ==================== */
#top_title_area,
.p-topArea {
  overflow: visible;
}

#breadcrumb.p-breadcrumb {
  position: relative;
  z-index: 5;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: transparent;
  padding: 0;
  margin-top: calc(var(--breadcrumb-overlap) * -1);
  margin-bottom: var(--breadcrumb-overlap);
  overflow: visible;
}

#breadcrumb.p-breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background: #111;
}

#breadcrumb .p-breadcrumb__list.l-container {
  max-width: none;
  padding-left: 30px;
  padding-right: 0;
}

#breadcrumb .p-breadcrumb__list {
  position: relative;
  z-index: 1;

  width: 50vw;
  margin: 0 0 0 auto;
  padding: 8px 20px 6px;

  display: flex;
  align-items: center;
  flex-wrap: nowrap;

  list-style: none;
}

/* item */
#breadcrumb .p-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

#breadcrumb .p-breadcrumb__text {
  font-family: var(--font-en);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

#breadcrumb .p-breadcrumb__text svg {
  display: none;
}

#breadcrumb .p-breadcrumb__item + .p-breadcrumb__item .p-breadcrumb__text::before {
  content: "—";
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.75);
}

/* 現在地 */
#breadcrumb .p-breadcrumb__text.u-color-thin {
  color: rgba(255, 255, 255, 0.9);
}

/* SP: 右半分だと狭いので全幅に寄せる */
@media (max-width: 768px) {
  #breadcrumb.p-breadcrumb::before {
    width: 100%;
  }

  #breadcrumb .p-breadcrumb__list {
    width: 100%;
    padding: 10px 14px 6px;
  }
}


/* ==================== FOOTER ==================== */
.l-footer__inner .l-container {
    display: flex;
	    align-items: center;
    padding: 2rem 0;
}

.l-footer__inner .l-container .footer-logo {
    width: 30%;
    text-align: center;
}

.l-footer__inner .l-container .footer-logo svg {
    width: 200px;
	height:60px;
}

.l-footer__inner .l-container .footer-menu {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.l-footer__inner .l-container .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-footer__inner .l-container .footer-menu ul li {
    width: calc((100% - 20px * 4) / 5);
    text-align: center;
    font-size: 13px;
	color: var(--color-text-dark);
}

.l-footer__inner .l-container .footer-menu ul li i {
    width: 10px;
    height: 10px;
    margin-left: 6px;
}

.footer-copyright {
    border-top: 1px solid #ddd;
    padding: 14px 0 12px;
}

.footer-copyright .l-container {
    display: flex;
    justify-content: space-between;
}

.c-copyright {
    display: inline-block;
    font-family: var(--font-en);
    font-weight: 400;
    text-align: left;
}

/* SNS */
.footer-sns,
.brand-sns {
    display: inline-flex;
    gap: 15px;
}

.footer-sns a::before,
.brand-sns a::before {
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-sns a::before {
    width: 24px;
    height: 24px;
}

.brand-sns a::before {
    width: 45px;
    height: 45px;
}

.footer-sns a[aria-label="Instagram"]::before {
    background-image: url("assets/img/icon-instagram.png");
}

.footer-sns a[aria-label="YouTube"]::before {
    background-image: url("assets/img/icon-youtube.png");
}

.brand-sns a[aria-label="Instagram"]::before {
    background-image: url("assets/img/icon-instagram.png");
}

.brand-sns a[aria-label="X"]::before {
    background-image: url("assets/img/icon-x.png");
}

.brand-sns a[aria-label="YouTube"]::before {
    background-image: url("assets/img/icon-youtube.png");
}

.brand-sns a[aria-label="TikTok"]::before {
    background-image: url("assets/img/icon-tiktok.png");
}

.brand-sns a:hover {
    color: var(--color-text);
    opacity: 1;
}
@media (max-width:768px) {
	.l-footer__inner .l-container{
		    flex-direction: column;
	}
	.l-footer__inner .l-container .footer-logo{
		width:100%;
	}
	.l-footer__inner .l-container .footer-menu{
		width:100%
	}
	.l-footer__inner .l-container .footer-menu ul{
		    flex-direction: row;    width: 90%;align-items: center;margin:20px auto 0;justify-content: center;gap: 8px;
	}
	.l-footer__inner .l-container .footer-menu ul li{
		width: calc((100% - 10px * 3) / 3);
	}
}

/* (FOOTER) CONTACT */
.footer-contact-section {
    padding: 90px 0 60px;
    background: var(--color-light);
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 150px auto auto;
}

.footer-contact-section .l-container {
    text-align: center;
}

.footer-contact-section .section-title {
    font-family: var(--font-en);
    position: absolute;
    top: -40px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: block;
}

.footer-contact-section .section-title span {
    display: block;
    font-size: 14px;
    font-family: var(--font-ja);
}

.footer-contact-section .contact-lead {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-dark);
    margin: 0 auto 40px;
}

/* (FOOTER) ONLINE SHOP */
.footer-online-shop-section {
    position: relative;
    z-index: 1;
    margin-top: -200px;
    padding: 110px 10px 80px;
    background: var(--color-dark);
    background-image: url("assets/img/shop-bg.jpg");
    background-position: center center;
    background-size: cover;

    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-online-shop-section .l-container {
    display: flex;
    padding-top: 120px;
    text-align: center;
    color: var(--color-white);
}

.footer-online-shop-section .l-container>div {
    margin: auto;
}

.footer-online-shop-section h2.section-title {
    padding: 10px 0 0 10px;
    margin-bottom: 0;
    text-align: left;
    font-family: var(--font-en);
    color: var(--color-white);
}

.footer-online-shop-section .l-container p {
    padding: 0 0 0 10px;
    font-family: var(--font-ja);
    text-align: left;
}

.footer-online-shop-section .shop-link-btn {
    width: var(--btn-width-m);
    margin: 24px auto 0;
}

@media (max-width:768px) {
	
	.footer-contact-section .l-container{
		padding:0 8px
	}
    .footer-contact-section {
        margin: 100px 20px 0;
        padding: 70px 0 50px;
		
    }

    .footer-contact-section .section-title {
        top: -28px;
    }
	.footer-online-shop-section h2.section-title{
		padding:0;
		text-align:center;
	}
	.footer-online-shop-section .l-container p{
		padding:0;
		text-align:center;
		font-size:13px;
	}

    .footer-contact-section .contact-lead {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .footer-online-shop-section {
        margin-top: -160px;
        padding: 90px 10px 40px;
		    background-image: url(assets/img/shop-bg-sp.jpg);
    }

    .footer-online-shop-section .l-container {
        flex-direction: column;
        gap: 18px;
        padding-top: 90px;
    }
	.footer-online-shop-section .shop-link-btn{
		height:40px;
		width:175px;
		margin:10px auto 0
	}
}

/* ==================== SECTION TITLE ==================== */
.section-title {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-text-dark);
}

.section-title-white {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 30px;
}

.section-lead {
    text-align: center;
    font-size: 14px;
    color: var(--color-text);
    margin-top: -40px;
    margin-bottom: 60px;
}

/* FULLWIDTH */
.hero-section,
.topics-section,
.brands-section,
.products-section,
.column-section,
.footer-online-shop-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}


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

/* HERO */
.hero-section {
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    left: 80px;
    bottom: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-white);
}

.hero-logo {
    width: 390px;
    letter-spacing: 0.15em;
}

.hero-copy {
    margin: 20px 0 40px;
}

.hero-btn {
    width: 250px;
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
}

.hero-btn i {
    margin-left: 6px;
}

.hero-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.hero-dot {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    box-sizing: border-box;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    line-height: 0;
    font-size: 0;
    appearance: none;
    -webkit-appearance: none;
}

.hero-dot.is-active {
    background-color: var(--color-white);
    border-color: var(--color-white);
}

@media (max-width: 1024px) {
    .hero-content {
        left: 50px;
        bottom: 60px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 520px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }

    .hero-logo {
        width: min(320px, 70vw);
    }

    .hero-copy {
		font-size:14px;
        margin: 14px 0 24px;
    }

    .hero-btn {
        width: 170px;
        padding: 8px 28px;
    }

    .hero-dots {
        right: 15px;
        gap: 15px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        bottom: 28px;
    }

    .hero-logo {
        width: min(220px, 72vw);
    }
}

/* ABOUT */
.about-section {
    padding: 100px 0;
    background: var(--color-white);
    color: var(--color-text-dark);
    overflow: visible;
}

.about-inner {
    position: relative;
    overflow: visible;
}

.about-title {
    position: absolute;
    top: -10px;
    margin: 0;
    font-family: var(--font-en);
    font-weight: 300;
    font-size: 120px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #d5d5d5;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.about-body {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 80px;
	align-items: center;
}

.about-images {
    flex: 0 0 45%;
    position: relative;
}

.about-collage {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 60px;
}

.about-text {
    flex: 1;
    padding-top: 80px;
    max-width: 520px;
}

.about-text p {
    color: var(--color-darker);
}

.about-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 38px;
    color: var(--color-darker);
}

.about-subheading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    margin: 18px 0;
    color: var(--color-darker);
}

.about-btn {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .about-inner {
        gap: 40px;
    }

    .brand-item {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .section-title,
    .section-title-white {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-title {
        position: static;
        text-align: center;
        font-size: 70px;
        margin-bottom: 18px;
    }

    .about-body {
        flex-direction: column;
        gap: 26px;
        align-items: center;
    }
	.about-heading{
		font-size:22px;
	}
    .about-text {
        order: 1;
        padding-top: 0;
        max-width: 520px;
        text-align: center;
    }
	.about-text p{
		font-size:13px;
	}
    .about-images {
        order: 2;
        width: 100%;
		margin-top:40px;
        max-width: 520px;
    }

    .about-collage {
        margin-top: 0;
    }
}

/* TOPICS */
.topics-section{
  background: #eee;
  padding: 100px 0;
  overflow: hidden;
}

.topics-inner{
  position: relative;
  display: flex;
  align-items: flex-start;
}

/* 左: タイトル固定ブロック(PC) */
.topics-fixed{
  position: relative;
  z-index: 3;
  width: 38%;
  background: #000;
  padding-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2));
  padding-bottom: 80px;
}

.topics-title-box{
  background: #000;
  color: var(--color-white);
  padding: 86px 0 26px;
}

.topics-section h2.topics-title{
  font-family: var(--font-en) !important;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0;
}

.topics-section .topics-title span{
  font-family: var(--font-ja);
  font-size: 12px;
  display: block;
  font-weight: normal;
}

/* PC: 白ボタン(タイトル直下) */
.topics-more--pc{
  margin-top: 40px;font-family: var(--font-en);
}

.topics-more-btn--pc{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 250px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
	font-family: var(--font-en);
}

.topics-more-btn--pc::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: #000;
}

/* 右: カルーセル(PC) */
.topics-carousel-wrapper{
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: 40px;
	margin-right: 40px;
  padding-top: 40px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
}

.topics-carousel{
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
}

.topics-card{
  flex: 0 0 340px;
  color: inherit;
  text-decoration: none;
}

.topics-thumb{
  width: 340px;
  height: 200px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.topics-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topics-meta{
  padding: 0;
  color: #000;
  font-size: 14px;
}

.topics-meta time{
  color: var(--color-dark);
  font-size: 10px;
  font-family: var(--font-en);
}

.topics-card-title{
  font-weight: bold;
  margin-top: 8px;
  font-size: 14px;
}

/* SP要素はPCで消す */
.topics-dots,
.topics-more--sp{
  display: none;
}

/* SP */
@media (max-width: 768px){
  .topics-section{
    padding: 0 0 80px; 
  }

  .topics-inner{
    flex-direction: column;
  }

  /* 黒帯(タイトルブロック) */
  .topics-fixed{
    width: 80%;
    padding-left: 0;
    padding-bottom: 0;
	  margin-top:40px;
  }

  .topics-title-box{
    padding: 20px var(--container-pad) 22px;
  }

  /* SPではタイトル直下の白ボタンは消す */
  .topics-more--pc{
    display: none;
  }

 
  .topics-carousel-wrapper{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 24px; 
    padding-left: var(--container-pad);
    padding-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--container-pad);
  }

  /* trackを絶対に折り返さない */
  .topics-carousel{
    display: inline-flex;
    width: max-content;
    gap: 16px;
    flex-wrap: nowrap;
  }

  /* 1枚+次がチラ見え */
  .topics-card{
    flex: 0 0 78vw;
    width: 78vw;
    scroll-snap-align: start;
  }

  /* SP: 正方形サムネ */
  .topics-thumb{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .topics-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* dots(SPのみ) */
  .topics-dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 0 var(--container-pad);
  }

  .topics-dot{
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
  }

  .topics-dot.is-active{
    background: #000;
  }

  /* SP下部の黒ボタン */
  .topics-more--sp{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 70px;
	  font-family:var(--font-en);
  }

  .topics-more-btn--sp{
    width: 100%;
    max-width: 420px;
    height: 60px;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
  }

  .topics-more-btn--sp::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: #fff;
  }
}


/* BRANDS */
.brands-section{
  padding: 100px 0;
  background: var(--color-white);
}

.brands-header{
  max-width: var(--container-max);
  margin: 0 auto 80px;
  padding: 0 var(--container-pad);
}

.brands-header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title-left{
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: left;
  margin: 0;
  color: var(--color-text-dark);
}

.section-subtitle-left{
  font-size: 14px;
  color: var(--color-text);
  text-align: left;
  margin: 0;
}

.brands-description{
  flex: 1;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-left: 60px;
}

/* items */
.brand-item{
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.brand-item:last-child{
  margin-bottom: 0;
}

.brand-reverse{
  flex-direction: row-reverse;
}

/* visual */
.brand-visual{
  position: relative;
  flex: 0 0 50%;
}

/* 従来(2枚重ね) */
.brand-bg{
  width: 100%;
}

.brand-bg img{
  width: 100%;
  height: auto;
  display: block;
}

.brand-product-kohaku,
.brand-product-of,
.brand-product-wep,
.brand-product-level99{
  position: absolute;
  opacity: 0;
  animation: fadeInProduct 1.5s ease-in-out 0.5s forwards;
  z-index: 2;
}

.brand-product-kohaku{
  bottom: -12%;
  left: 46%;
  width: 54%;
}

.brand-product-of{
  bottom: -28%;
  left: 10%;
  width: 54%;
}

.brand-product-wep{
  bottom: -20%;
  right: 4%;
  width: 60%;
}

.brand-product-level99{
  bottom: -20%;
  left: 0;
  width: 72%;
}

.brand-product-kohaku img,
.brand-product-of img,
.brand-product-wep img,
.brand-product-level99 img{
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeInProduct{
  to{ opacity: 1; }
}

.brand-kohaku .brand-visual-picture,
.brand-kohaku .brand-visual-picture img{
  display: block;
  width: 100%;
  height: auto;
}

.brand-kohaku .brand-bg,
.brand-kohaku .brand-product-kohaku{
  display: none;
}

/* body */
.brand-body{
  flex: 0 0 50%;
  padding: 0 0 0 80px;
  max-width: 500px;
}

.brand-body-left{
  flex: 0 0 50%;
  padding: 0 80px 0 0;
  max-width: 500px;
}

.brand-category{
  font-size: 12px;
  color: var(--color-white);
  background: var(--color-darker);
  margin-bottom: 10px;
  display: inline-block;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}

.brand-logo{
  margin: 0 0 40px;
}

.brand-logo img{
  max-width: 270px;
  height: auto;
  display: block;
}

.brand-of .brand-logo img{
  max-width: 150px;
}

.brand-desc{
  font-size: 13px;
  line-height: 2;
  color: var(--color-text-dark);
  margin: 0 0 30px;
}

.brand-links{
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 0 0 20px;
  flex-wrap: wrap;
}

.brand-link-btn{
  width: var(--btn-width-s);
}

.brand-link-more{
  width: var(--btn-width-m);
}
/* tb */
@media (max-width: 1080px) and (min-width: 769px){
	.brand-body, .brand-body-left {
    padding: 0;
}
	.brand-body{
		flex: 42% 0 0;
		text-align:center;
	}
	.brand-body-left{
		flex: 0 0 42%;
		text-align:center;
	}
	.brand-logo img{margin:0 auto}
	.brand-desc{
		width:100%
	}
	.brand-links{
		flex-direction: column;
    align-items: center;gap: 8px;
	}
}

/* SP */
@media (max-width: 768px){
  .brands-section{
    padding: 100px 0;
  }

  .brands-header-inner{
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .brands-description{
    text-align: left;
    margin-left: 0;
  }

  .brand-item,
  .brand-reverse{
    flex-direction: column;
  }

  .brand-visual{
    flex: 0 0 100%;
    width: 100%;
  }

  .brand-reverse .brand-bg{
    margin-left: 6%;
  }

  .brand-bg img{
    width: 94%;
  }

  .brand-kohaku .brand-visual-picture img{
    width: 94%;
    margin-left: 0;
  }

  .brand-body,
  .brand-body-left{
    flex: 0 0 100%;
    padding: 0px 16px;
    text-align: center;
    max-width: none;
  }

  .brand-logo{
    margin: 0 0 20px;
    text-align: center;
  }
　.brand-logo .of{
   margin: 0 auto 20px;
  }
	.brand-of .brand-logo img{
		max-width:114px !important
	}

  .brand-logo img{
    max-width: 200px;
    height: auto;
    margin: 0 auto;
  }

  .brand-of .brand-logo img{
    max-width: 150px;
  }

  .brand-desc{
    text-align: center;
  }

  .brand-links{
    gap: 6px;
    justify-content: center;
  }

  .brand-link-btn{
    width: 175px;
	  max-width:49%;
    height: auto;
    padding: 12px 10px 10px;
  }

  .brand-link-more{
    width: 175px;
  }

  .brand-sns{
    display: block;
    text-align: center;
  }
}


/* PRODUCTS */
.products-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.products-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: auto;
    padding: 80px 100px;
    color: #000;
}

.products-content h2 {
    font-family: var(--font-en) !important;
    font-weight: 500;
    font-size: 32px;
}

.products-content h2 span {
    font-family: var(--font-ja);
    display: block;
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 30px;
}

.products-lead {
    font-size: 14px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
.products-section {
    padding: 40px ;
}
	.products-content{
		padding:40px  20px ;
	}
}


/* COLUMN */
.column-section {
    position: relative;
    padding: 100px 0 0;
    overflow: visible; 
}

/* 右はフル幅に抜ける・左は1200コンテナの「中身の左端」 */
.column-section .l-container {
    --container-gutter: max(0px, calc((100vw - var(--container-max)) / 2));
    max-width: 100vw;
    margin: 0;
    padding: 0;
    padding-left: calc(var(--container-gutter) + var(--container-pad));
}


.column-slider-wrap {
    position: relative;
    overflow: visible;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 右側のMOREボタンは「通常コンテナの右端(=gutter+20px)」に合わせる */
.column-header a {
    --container-gutter: max(0px, calc((100vw - var(--container-max)) / 2));
    margin-right: calc(var(--container-gutter) + var(--container-pad));
}

.column-link-btn {
    width: var(--btn-width-m);
}

.column-section h2.section-title {
    text-align: left;
    font-weight: 400;
    font-family: var(--font-en);
}

.column-section .section-title span {
    font-family: var(--font-ja);
    text-align: left;
    font-size: 12px;
    display: block;
}

.column-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: auto;

    /*  スライド中は左右100vwに突き抜け */
    width: 100vw;
    margin-left: calc(-1 * (var(--container-gutter) + var(--container-pad)));
    padding-left: calc(var(--container-gutter) + var(--container-pad));

    /* 最終到達時の右端を「MOREボタン右端ライン」 */
    padding-right: calc(var(--container-gutter) + var(--container-pad));


    margin-right: 0;
}

.column-card {
    display: flex;
    flex: 0 0 auto;
    width: 480px;
    background: var(--color-light);
}

.column-thumb {
    width: 178px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.column-thumb img {
    padding: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.column-title {
    margin: 20px 20px 10px 20px;
    padding: 20px 0 10px;
    font-size: 14px;
    width: 240px;
    border-bottom: 1px solid #ddd;
}

.column-date {
    margin-right: 20px;
    font-family: var(--font-en);
    text-align: right;
    font-size: 10px;
}

@media (max-width: 768px) {
    .column-slider {
        gap: 16px;
        width: auto;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .column-header { justify-content: center; }
    .column-section h2.section-title,
    .column-section .section-title span { text-align: center; }

    .column-card {
        width: 80vw;
        flex-direction: column;
    }

    .column-thumb {
        width: auto;
        aspect-ratio: 3 / 2;
    }

    .column-title {
        margin: 0px 20px 10px;
        padding: 0px 0 10px;
    }

    .column-date {
        margin-bottom: 20px;
    }

   
    .column-header a {
        margin-right: var(--container-pad);
    }

    .column-header a { display: none; }

    .column-link-btn {
        width: 180px;
        height: auto;
    }

    .column-section .u-sp { text-align: center; }
}

/* THREE LINKS */
.three-links-section{
  padding: 130px 0 0;
}

.three-links-section .l-container{
  padding: 0;
}

.three-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.three-link-item{
  background: var(--color-dark);
  padding: 40px 30px 34px;
  text-align: center;
  transition: background 0.3s;
  position: relative;
}

.three-link-item::after{
  content: "";
  position: absolute;
  right: 0;
  top: 80%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: var(--color-white);
  transition: width 0.3s;
}

/* hover: 線を短くする */
.three-link-item:hover::after{
  width: 18px;
}

.three-link-item:hover{
  background: #3a3a3a;
  opacity: 1;
}

.three-link-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.three-link-icon::before{
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.three-link-item:nth-child(1) .three-link-icon::before{
  background-image: url("assets/img/three-links-1.png");
}

.three-link-item:nth-child(2) .three-link-icon::before{
  background-image: url("assets/img/three-links-2.png");
}

.three-link-item:nth-child(3) .three-link-icon::before{
  background-image: url("assets/img/three-links-3.png");
}

.three-link-label{
  font-family: var(--font-en);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 300;
}

.three-link-label span{
  display: block;
  font-size: 12px;
}

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


/* NEWS */
.news-section {
    padding: 100px 0;
    background: var(--color-white);
}

.news-section .section-title {
    font-family: var(--font-en);
}

.news-section .section-title span {
    display: block;
    font-size: 14px;
    font-family: var(--font-ja);
}

.news-list {
    max-width: var(--container-max);
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.news-item:first-child {
    border-top: 1px solid var(--color-border);
}

.news-date {
    font-family: var(--font-en);
    flex: 0 0 100px;
    font-size: 14px;
    color: var(--color-dark);
    padding-left: 24px;
}

.news-title {
    flex: 1;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-dark);
}

.news-title a {
    transition: color 0.3s;
}

.news-title a:hover {
    color: var(--color-text);
    opacity: 1;
}

@media (max-width: 768px) {
	.news-section {padding:100px 0 20px}
	.news-section .l-container{
		padding:0}
    .news-item {
     align-items: center;
        gap: 20px;
    }

    .news-date {
		padding-left:0;
        flex: none;
    }
}



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

.products-list-section {
    padding: 48px 0 80px;
}

/* フィルター */
.products-filters {
    background: #f2f2f2;
    padding: 2rem 4rem;
    margin: 0 auto 40px;
}

.products-filters__row {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    gap: 14px;
}

.products-filters__row+.products-filters__row {
    margin-top: 12px;
}

.products-filters__label {
    flex: 0 0 auto;
    width: 70px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #111;
    margin: 0;
}

.products-filters__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.products-filter-btn {
    appearance: none;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.products-filter-btn.is-active {
    background: #111;
    color: #fff;
}

.products-filter-btn:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}

/* グリッド */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 22px;
}

/* カード */
.product-card {
    border: 1px solid #e6e6e6;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card__thumb {
    display: block;
    padding: 18px 18px 8px;
    text-decoration: none;
}

.product-card__thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-card__meta {
    padding: 6px 18px 14px;
}

.product-card__brand {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: #111;
}

.product-card__name {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #111;
    font-weight: 600;
}

.product-card__price {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    color: #111;
}

.product-card__more {
    font-family: var(--font-en);
    border: none;
    height: 40px;
    width: 90%;
    margin: auto auto 12px;
    cursor: pointer;
    position: relative;
}
@media (max-width: 768px) {
	.main-btn::after, .brand-link-more::after{
		26px
	}
}

/* MODAL */
.products-grid-break {
    grid-column: 1 / -1;
    height: 0;
    margin: 0;
    padding: 0;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.product-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.product-modal.is-open .product-modal__overlay {
    opacity: 1;
}

.product-modal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(1200px, calc(100% - 64px));
    background: #fff;
    border: 1px solid #e6e6e6;
    max-height: calc(100vh - 64px);
    transform: translate(-50%, -46%);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
    will-change: transform, opacity;
    overflow: visible;
}

.product-modal.is-open .product-modal__dialog {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.product-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    font-size: 0;
}

.product-modal__close::before,
.product-modal__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 36px;
    height: 1px;
    background: #111;
    transform-origin: center;
}

.product-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.product-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.product-modal__close:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

.product-modal__content {
    padding: 64px 72px 72px;
}

.product-modal-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.product-modal-layout__media {
    flex: 0 0 42%;
    display: flex;
    justify-content: center;
}

.product-modal__image {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-modal-layout__info {
    flex: 1 1 auto;
    min-width: 0;
}

.product-modal__brand {
    margin: 0 0 18px;
    font-size: 34px;
    letter-spacing: 0.08em;
    color: #111;
    font-weight: 600;
}

.product-modal__brand-logo {
    display: block;
    height: 38px;
    width: auto;
    max-width: 180px;
    margin: 0 0 18px;
}

.product-modal__title {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.25;
    color: #111;
    font-weight: 600;
}

.product-modal__p {
    font-size: 14px;
    margin: 0 0 42px;
    color: #111;
}

.product-modal__desc {
    margin: 0 0 42px;
    font-size: 14px;
    line-height: 1.2;
    color: #111;
}

.product-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: 360px;
    max-width: 100%;
    height: 82px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.08em;
}

.product-modal__cta-line {
    width: 72px;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
}

.product-modal__cta:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

body.is-modal-open {
    overflow: hidden;
}

/* motion */
@media (prefers-reduced-motion: reduce) {

    .product-modal,
    .product-modal__overlay,
    .product-modal__dialog {
        transition: none !important;
    }

    .product-modal__overlay {
        opacity: 1 !important;
    }

    .product-modal__dialog {
        transform: translate(-50%, -50%) !important;
        opacity: 1 !important;
    }
}

/* SP: modal */
@media (max-width: 768px) {
	
    .product-modal__dialog {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        overflow: auto;
    }

    .product-modal__content {
        padding: 56px 18px 28px;
    }

    .product-modal-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .product-modal-layout__media {
        flex-basis: auto;
    }

    .product-modal__brand img {
        max-width: 180px;
        height: auto;
    }

    .product-modal__title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .product-modal__desc {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .product-modal__cta {
        width: 100%;
        height: 64px;
        font-size: 14px;
        gap: 18px;
    }

    .product-modal__cta-line {
        width: 56px;
    }
}

/* TB */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* SP */
@media (max-width: 768px) {
    .products-list-section {
        padding: 32px 0 64px;
    }

    .products-filters {
        padding: 16px 14px;
        margin-bottom: 28px;
    }

    .products-filters__label {
        width: 62px;
    }

    .products-filter-btn {
        padding: 9px 14px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 8px;
    }

    .product-card__thumb {
        padding: 14px 14px 6px;
    }

    .product-card__meta {
        padding: 6px 14px 12px;
    }
}



/* ==================== LEVEL99 商品一覧ページ ==================== */

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) {
    background: var(--color-white);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .l-main {
    background: var(--color-white);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) img {
    max-width: 100%;
    height: auto;
}

/* INTRO */
body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro-section {
    padding: 110px 20px 70px;
    background: var(--color-white);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro-section .l-container {
    max-width: 980px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__title {
    margin: 0 0 4rem;
    text-align: center;
    font-family: var(--font-ja);
    font-weight: 700;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.8;
    color: var(--color-text-dark);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__title-line {
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__title-line+.level99-intro__title-line {
    margin-top: 14px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__title-line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #111;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__text {
    margin: 26px auto 0;
    max-width: 760px;
    text-align: center;
    font-size: 12px;
    line-height: 2.35;
    color: var(--color-text-dark);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__text+.level99-intro__text {
    margin-top: 22px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__hero {
    margin: 46px auto 0;
    max-width: 760px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__hero img {
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
	
}


/* SECTION TITLES */
body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-section-title {
    margin: 0;
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0.02em;
    color: var(--color-text-dark);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-section-title span {
    display: block;
    margin-top: 8px;
    font-family: var(--font-ja);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
}

/* PRODUCTS */
body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-products-section {
    padding: 70px 20px 90px;
    background: var(--color-white);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-products-section .l-container {
    max-width: 980px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-products-section .level99-section-title {
    text-align: left;
    margin-bottom: 28px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-products-list {
    display: grid;
    gap: 26px;
}

/* card */
body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card {
    background: #f3f3f3;
    padding: 34px 40px 30px;
    display: flex;
    gap: 44px;
    align-items: flex-start;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__media {
    flex: 0 0 260px;
    min-width: 0;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__title {
    margin: 0;
    font-family: var(--font-ja);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 1.7;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__title__set {
    margin: 0;
    font-family: var(--font-ja);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 1.7;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__volume {
    display: inline-block;
    margin-left: 12px;
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__title__set .level99-product-card__volume {
    display: block;
    margin-left: 0;
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__lead {
    margin: 12px 0 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 2.0;
    color: var(--color-text-dark);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__lead__set {
    margin: 12px 0 0;
    font-size: 13px;
    font-weight: 100;
    line-height: 1.6;
    color: var(--color-text-dark);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__label {
    margin: 18px 0 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text-dark);
}

/* ingredients */
body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-ingredients {
    margin: 0;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-ingredients__row {
    padding: 4px 0;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-ingredients__row dt {
    position: relative;
    margin: 0;
    padding-left: 18px;
    padding-bottom: 0;
    font-size: 12px;
    color: var(--color-text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-ingredients__row dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-ingredients__row dd {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text-dark);
}

/* VOICE */
body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice-section {
    padding: 70px 20px 100px;
    background: var(--color-white);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice-section .l-container {
    max-width: 980px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice-section .level99-section-title {
    text-align: left;
    margin-bottom: 30px;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 44px;
    align-items: start;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice__media img {
    display: block;
    width: 100%;
    height: auto;
    background: #e9e9e9;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice__caption {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--color-text-dark);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice__head {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex-direction: column;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice__avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #d9d9d9;
    flex: 0 0 auto;
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice__name {
    display: block;
    margin: 0;
    font-family: var(--font-ja);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-dark);
}

body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice__text {
    margin: 16px 0 0;
    padding-top: 1rem;
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-dark);
    border-top: 1px solid #eee;
}

/* TB */
@media (max-width: 1024px) {
    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card {
        padding: 30px 28px;
        gap: 28px;
    }

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__media {
        flex-basis: 240px;
		margin:auto;
    }
	body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__body{
		width:100%
	}

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice {
        grid-template-columns: 360px 1fr;
        gap: 32px;
    }
}

/* SP */
@media (max-width: 768px) {
    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro-section {
        padding: 30px 0px;
    }
body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__hero{
	margin: 26px auto 0;
	}
    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-intro__title {
        font-size: 16px;
        line-height: 2.0;
		margin:auto 10px
    }

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-products-section {
        padding: 60px 20px 80px;
    }

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card {
        flex-direction: column;
        padding: 26px 20px;
        gap: 16px;
    }

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-product-card__media {
        flex: none;
        width: 100%;
        max-width: 320px;
    }

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice-section {
        padding: 60px 20px 80px;
    }

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    body:is(.page-template-products-level99-page, .page-template-products-level99-page-php) .level99-voice__avatar {
        width: 44px;
        height: 44px;
    }
}



/* ==================== 企業情報ページ ==================== */

body:is(.page-template-company-page, .page-template-company-page-php) :is(.page-content-section, .message-section, .profile-section, .access-section) {
    width: 100%;
}

/* 全幅背景 */
body:is(.page-template-company-page, .page-template-company-page-php) .section-fullwidth {
    position: relative;
    width: 100%;
    overflow-x: clip;
}

body:is(.page-template-company-page, .page-template-company-page-php) .section-fullwidth::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 0;
    background-color: var(--fullwidth-bg-color, transparent);
    background-image: var(--fullwidth-bg-image, none);
    background-repeat: var(--fullwidth-bg-repeat, no-repeat);
    background-position: var(--fullwidth-bg-position, center);
    background-size: var(--fullwidth-bg-size, auto);
}

@supports (width: 100dvw) {
    body:is(.page-template-company-page, .page-template-company-page-php) .section-fullwidth::before {
        width: 100dvw;
    }
}

body:is(.page-template-company-page, .page-template-company-page-php) .section-fullwidth>.l-container {
    position: relative;
    z-index: 1;
}

/* page content */
body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section {
    position: relative;
    padding: 120px 20px 130px;
    background: var(--color-white);
    max-width: var(--container-max);
    margin: 0 auto;
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section>* {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 見出し */
body:is(.page-template-company-page, .page-template-company-page-php) :is(.page-content-section h2, .message-section h2, .profile-section h2, .access-section h2) {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 34px;
    color: var(--color-text-dark);
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section h2 {
    text-align: center;
}

body:is(.page-template-company-page, .page-template-company-page-php) .message-section h2 {
    text-align: left;
}

body:is(.page-template-company-page, .page-template-company-page-php) :is(.profile-section h2, .access-section h2) {
    text-align: center;
}

body:is(.page-template-company-page, .page-template-company-page-php) :is(.page-content-section h2 span, .message-section h2 span, .profile-section h2 span, .access-section h2 span) {
    display: block;
    font-family: var(--font-ja);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section h2 span {
    margin: 0 auto 80px !important;
}

body:is(.page-template-company-page, .page-template-company-page-php) :is(.message-section h2 span, .access-section h2 span) {
    margin: 0 auto 26px;
}

body:is(.page-template-company-page, .page-template-company-page-php) .profile-section h2 span {
    margin: 0 0 56px;
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section h3 {
    margin: 0 auto 28px;
    font-family: var(--font-ja);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--color-text-dark-dark);
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section p {
    margin: 0 auto 18px;
    font-size: 13px;
    line-height: 2.1;
    color: var(--color-text-dark);
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section p+p {
    margin-top: 28px;
}

/* カギカッコ */
body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section::before,
body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    pointer-events: none;
    opacity: 0.55;
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section::before {
    left: calc(50% - 380px);
    top: 230px;
    border-left: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid rgba(0, 0, 0, 0.2);
}

body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section::after {
    right: calc(50% - 380px);
    bottom: 60px;
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

/* MESSAGE */
body:is(.page-template-company-page, .page-template-company-page-php) .message-section {
    padding: 60px 0 40px;
    overflow: hidden;
    --fullwidth-bg-color: #f5f5f5;
    --fullwidth-bg-image: url("assets/img/message-bg.png");
    --fullwidth-bg-repeat: no-repeat;
    --fullwidth-bg-position: center bottom;
    --fullwidth-bg-size: 100% auto;
    background: none !important;
}

body:is(.page-template-company-page, .page-template-company-page-php) .message-section .l-container {
    position: relative;
    display: flex;
    gap: 70px;
    align-items: flex-start;
align-items: center
}

body:is(.page-template-company-page, .page-template-company-page-php) .message-section .l-container>div:first-child {
    flex: 1 1 52%;
    min-width: 0;
}

body:is(.page-template-company-page, .page-template-company-page-php) .message-section .l-container>div:last-child {
    flex: 0 0 44%;
    position: relative;
    z-index: 1;
}

body:is(.page-template-company-page, .page-template-company-page-php) .message-section img {
    max-width: 100%;
    height: auto;
    display: block;
}

body:is(.page-template-company-page, .page-template-company-page-php) .message-section p {
    font-size: 13px;
    max-width: 500px;
    line-height: 2.05;
	margin-bottom:1rem;
    color: var(--color-text-dark);
}
@media (max-width: 1024px) {
	body:is(.page-template-company-page, .page-template-company-page-php) .message-section .l-container>div:first-child{
		padding:0 1rem
	}
}
@media (max-width: 768px) {
	body:is(.page-template-company-page, .page-template-company-page-php) .message-section .l-container>div:first-child{
		padding:0 
	}
}

body:is(.page-template-company-page, .page-template-company-page-php) .message-section ul  {
	margin-bottom:1rem
}
body:is(.page-template-company-page, .page-template-company-page-php) .message-section ul li {
    font-size: 13px;
    max-width: 500px;
    line-height: 2.05;
    color: var(--color-text-dark);
}

/* PROFILE */
body:is(.page-template-company-page, .page-template-company-page-php) .profile-section {
    padding: 120px 0;
    background: var(--color-white);
}

body:is(.page-template-company-page, .page-template-company-page-php) .profile-section table {
    margin: 0 auto;
    border-collapse: collapse;
    border: none;
    border-top: 1px solid #ddd;
}

body:is(.page-template-company-page, .page-template-company-page-php) .profile-section table tr {
    border-bottom: 1px solid #ddd;
    height: 80px;
}

body:is(.page-template-company-page, .page-template-company-page-php) .profile-section table th {
    background: none;
    padding-left: 4rem !important;
    border: none;
    vertical-align: middle;
}

body:is(.page-template-company-page, .page-template-company-page-php) .profile-section table td {
    background: none;
    padding-left: 40px;
    border: none;
    vertical-align: middle;
}

/* ACCESS */
body:is(.page-template-company-page, .page-template-company-page-php) .access-section {
    padding: 120px 0;
    background: var(--color-white);
}

body:is(.page-template-company-page, .page-template-company-page-php) .access-section .access-map {
    margin-top: 56px;
}

body:is(.page-template-company-page, .page-template-company-page-php) .access-section iframe {
    width: 100%;
    display: block;
}

body:is(.page-template-company-page, .page-template-company-page-php) .access-section .access-bottom {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
	
}

body:is(.page-template-company-page, .page-template-company-page-php) .access-section .access-text {
    margin: 0;
    font-size: 13px;
    line-height: 2.05;
    color: var(--color-text-dark);
}

body:is(.page-template-company-page, .page-template-company-page-php) .access-section .access-btn {
    flex: 0 0 auto;
    min-width: 260px;
    justify-content: center;
    width: var(--btn-width-m);
    height: var(--btn-height);
    text-align: center;
    background: var(--color-dark);
    font-size: 12px;
    color: var(--color-white);
    letter-spacing: 0.1em;
    transition: var(--transition-base);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* SP */
@media (max-width: 768px) {
	body:is(.page-template-company-page, .page-template-company-page-php) .page-content-section {
    padding: 40px 0px;
    
}
    body:is(.page-template-company-page, .page-template-company-page-php) .access-section .access-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    body:is(.page-template-company-page, .page-template-company-page-php) .access-section .access-btn {
        width: 100%;
        min-width: 0;
    }
	body:is(.page-template-company-page, .page-template-company-page-php) .message-section{
		padding:36px 20px
	}
	body:is(.page-template-company-page, .page-template-company-page-php) .message-section .l-container{
		flex-direction: column;
		gap:20px
	}
	body:is(.page-template-company-page, .page-template-company-page-php) .section-fullwidth::before{
		    background-position: bottom 0px right -100px;
    background-size: 180%;
	}
	body:is(.page-template-company-page, .page-template-company-page-php) .profile-section{
		padding:100px 0 0
	}
	body:is(.page-template-company-page, .page-template-company-page-php) .profile-section table th{
		    padding-left: 8px !important;
		font-size:13px;text-align:center;width:6rem
	}
	body:is(.page-template-company-page, .page-template-company-page-php) .profile-section table td{
		font-size:13px;
	}
	body:is(.page-template-company-page, .page-template-company-page-php) .access-section{
		padding: 120px 0 20px;
	}
	body:is(.page-template-company-page, .page-template-company-page-php) .access-section .access-btn{
		width:175px;height:40px;margin:0 auto;
	}
}

/* ==================== お知らせ一覧ページ ==================== */
body .news-page {
    background: #f5f5f5;
}

body .news-page .news-topics-section {
    margin-top: 60px !important;
    padding: 90px 0 110px;
    background: #f5f5f5;
}

body .news-page .news-all-section {
    padding: 90px 0 140px;
    background: #fff;
}

body .news-page .news-section-header {
    margin: 0 0 40px;
}

body .news-page .news-section-title {
    margin: 0;
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0.08em;
    color: #222;
    text-align: left;
    line-height: 1.2;
}

body .news-page .news-section-title span {
    display: block;
    margin-top: 6px;
    font-family: var(--font-ja);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

body .news-page .news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 44px;
}

body .news-page .news-card {
    margin: 0;
    background: transparent;
}

body .news-page .news-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

body .news-page .news-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e9e9e9;
}

body .news-page .news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body .news-page .news-card__title {
    margin: 12px 0 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #111;
}

body .news-page .news-card__date {
    display: block;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.06em;
    color: #222;
}

body .news-page .news-card__link:hover {
    opacity: 1;
}

body .news-page .news-card__link:hover .news-card__title {
    opacity: 0.75;
}

body .news-page .news-card__link:hover .news-card__thumb img {
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

body .news-page .news-empty {
    margin: 0;
    font-size: 14px;
    color: #666;
}

body .news-page .news-pagination {
    margin-top: 40px;
}

body .news-page .news-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

body .news-page .news-pagination li {
    margin: 0;
    padding: 0;
}

body .news-page .news-pagination a,
body .news-page .news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #111;
    text-decoration: none;
    border: 1px solid transparent;
    background: transparent;
}

body .news-page .news-pagination a:hover {
    opacity: 0.75;
}

body .news-page .news-pagination .current {
    background: #111;
    color: #fff;
}

body .news-page .news-pagination .page-numbers {
    border-radius: 0;
}

body .news-page .news-pagination ul:hover {
	background:#fff
}


@media (max-width: 1024px) {
    body .news-page .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 26px;
    }
}

@media (max-width: 768px) {
    body .news-page .news-topics-section {
        padding: 70px 0 80px;
    }

    body .news-page .news-all-section {
        padding: 70px 0 110px;
    }

    body .news-page .news-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    body .news-page .news-card__thumb {
        aspect-ratio: 4 / 3;
    }

    body .news-page .news-section-title {
        font-size: 24px;
    }
}
/* ==================== お知らせ詳細ページ ==================== */
.news-single-page {
  background: #fff;
}

/* 100vw外出し */
.news-single-page #top_title_area,
.news-single-page .p-topArea {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* 中身は1200px */
.news-single-page #top_title_area .l-container,
.news-single-page .p-topArea .l-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* 本文コンテナ */
.news-single-page .news-single-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* セクション */
.news-single-page .news-single-section {
  padding: 80px 0 90px;
  background: #fff;
}

/* ヘッダー */
.news-single-page .news-single-header {
  padding-bottom: 26px;
  border-bottom: 1px solid #eee;
}

.news-single-page .news-single-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: #111;
}

.news-single-page .news-single-date {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #666;
}

/* 本文 */
.news-single-page .news-single-body {
  padding-top: 24px;
  color: #111;
  font-size: 12px;
  line-height: 2;
}

.news-single-page .news-single-body p {
  margin: 0 0 16px;
}

.news-single-page .news-single-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 18px 0;
}

.news-single-page .news-single-body a {
  text-decoration: underline;
}

/* ナビ */
.news-single-page .news-single-nav {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 10px;
  color: #666;
  text-align: left;
}

.news-single-page .news-single-nav__prev,
.news-single-page .news-single-nav__next {
  flex: 1 1 40%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-single-page .news-single-nav__prev {
  text-align: left;
}

.news-single-page .news-single-nav__next {
  text-align: right;
}

.news-single-page .news-single-nav__prev a,
.news-single-page .news-single-nav__next a {
  display: block;
}

.news-single-page .news-single-nav__top {
  flex: 0 0 auto;
  text-align: center;
}

.news-single-page .news-single-nav a {
  color: #666;
  text-decoration: none;
}

.news-single-page .news-single-nav a:hover {
  opacity: 0.75;
}

/* クリップ対策 */
.single-post .news-single-page {
  overflow: visible;
}

/* SP */
@media (max-width: 768px) {
  .news-single-page .news-single-section {
    padding: 60px 0 70px;
  }

  .news-single-page .news-single-title {
    font-size: 16px;
  }

  .news-single-page .news-single-nav {
    gap: 10px;
  }
}

/* ==================== 問い合わせページ ==================== */

.contact-page-section {
    padding: 120px 0 140px;
    background: var(--color-white);
}

/* 電話ブロック */
.contact-page-section .l-container {
    max-width: 800px;
}

.contact-page-section .l-container>div:first-child {
    background: #f3f3f3;
    padding: 34px 20px;
    text-align: center;
}

.contact-page-section .l-container>div:first-child h2 {
    margin: 0 0 14px;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text-dark);
}

.contact-page-section .l-container>div:first-child p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-dark);
}

.contact-page-section .l-container>div:first-child p::before {
    content: "";
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23222' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V21a1 1 0 0 1-1 1C10.07 22 2 13.93 2 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57a1 1 0 0 1-.24 1.02l-2.21 2.2Z'/%3E%3C/svg%3E");
}

/* 受付時間 */
.contact-page-section .l-container>div:first-child p span {
    flex: 0 0 100%;
    margin-left: 32px;
    font-family: var(--font-ja);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--color-text-dark);
}

/* メールブロック */
.contact-page-section>div:nth-of-type(2) {
    max-width: 1050px;
    margin: 80px auto 0;
    padding: 0 20px;
    text-align: center;
}

.contact-page-section>div:nth-of-type(2) h2 {
    margin: 0 0 14px;
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text-dark-dark);
}

.contact-page-section>div:nth-of-type(2) p {
    margin: 0;
    font-size: 12px;
    line-height: 2;
    color: var(--color-text-dark);
}

/* Contact Form 7 */
.contact-page-section .wpcf7 {
    max-width: 980px;
    margin: 36px auto 0;
    padding: 0 20px;
}

.contact-page-section .wpcf7 form {
    margin: 0;
    text-align: center;
}

.contact-page-section .wpcf7 .contact-form {
    margin: 28px auto 0;
    padding: 0;
}

.contact-page-section .wpcf7 .contact-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 26px;
    align-items: center;
    padding: 18px 0;
}

.contact-page-section .wpcf7 .contact-row dt {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-page-section .wpcf7 .contact-row dd {
    margin: 0;
    min-width: 0;
}

/* 必須バッジ */
.contact-page-section .wpcf7 .is-required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 18px;
	margin-right:8px;
    padding: 0 6px;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    background: #c40000;
    letter-spacing: 0.06em;
}

/* 入力共通 */
.contact-page-section .wpcf7 input[type="text"],
.contact-page-section .wpcf7 input[type="email"],
.contact-page-section .wpcf7 input[type="tel"],
.contact-page-section .wpcf7 select,
.contact-page-section .wpcf7 textarea {
    width: 100%;
    border: 0;
    background: #f2f2f2;
    padding: 14px 14px;
    font-size: 14px;
    color: #222;
    outline: none;
    box-shadow: none;
}

.contact-page-section .wpcf7 input[type="text"],
.contact-page-section .wpcf7 input[type="email"],
.contact-page-section .wpcf7 input[type="tel"],
.contact-page-section .wpcf7 select {
    height: 48px;
}

.contact-page-section .wpcf7 textarea {
    min-height: 220px;
    resize: vertical;
}

/* チェックボックスの項目(並び/ラベル) */
.contact-page-section .wpcf7 .wpcf7-list-item {
    margin: 0 22px 10px 0;
}

.contact-page-section .wpcf7 .wpcf7-list-item label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-page-section .wpcf7 .wpcf7-list-item-label {
    font-size: 12px;
    color: var(--color-text-dark);
    letter-spacing: 0.04em;
}

/* お問い合わせ内容(inquiry) + プライバシー同意(privacy) + .privacy-agree を同一デザインにする */
.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="inquiry"] input[type="checkbox"],
.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="privacy"] input[type="checkbox"],
.contact-page-section .privacy-agree input[type="checkbox"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 18px;
    height: 18px;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0;
    background: #eee;
    border-radius: 0;
    margin: 0 !important;
    transform: none !important;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    flex: 0 0 auto;
}

/* checked */
.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="inquiry"] input[type="checkbox"]:checked,
.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="privacy"] input[type="checkbox"]:checked,
.contact-page-section .privacy-agree input[type="checkbox"]:checked {
    background: #111;
}

.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="inquiry"] input[type="checkbox"]:checked::after,
.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="privacy"] input[type="checkbox"]:checked::after,
.contact-page-section .privacy-agree input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -60%) rotate(-45deg);
}

/* focus */
.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="inquiry"] input[type="checkbox"]:focus-visible,
.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="privacy"] input[type="checkbox"]:focus-visible,
.contact-page-section .privacy-agree input[type="checkbox"]:focus-visible {
    outline: 2px solid #bbb;
    outline-offset: 2px;
}

.contact-page-section .wpcf7 .contact-row dd:has(.wpcf7-checkbox) {
    text-align: left;
}

.contact-page-section .wpcf7 .wpcf7-form-control-wrap[data-name="inquiry"] {
    text-align: left;
}

.contact-page-section .wpcf7 .contact-row dt:has(+ dd .wpcf7-form-control-wrap[data-name="company"]) {
    padding-left:44px;
}

/* プライバシー同意行 */
.contact-page-section .privacy-agree {
    margin: 18px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--color-text-dark);
}

.contact-page-section .privacy-agree a {
    text-decoration: underline;
}

.contact-page-section .wpcf7 input[type="submit"] {
    appearance: none;
    border: 0;
    cursor: pointer;
}

.contact-page-section .wpcf7 input[type="submit"].main-btn,
.contact-page-section .wpcf7 input.wpcf7-submit.main-btn {
    width: var(--btn-width-m);
    height: var(--btn-height);
    margin: 30px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en) !important;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background-color: var(--color-dark);
    border: 0;
    border-radius: 0;
    cursor: pointer;

    background-image: linear-gradient(var(--color-white), var(--color-white));
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 40px 1px;

    transition: background-color 0.3s, background-size 0.3s;
    opacity: 1;
}

.contact-page-section .wpcf7 input[type="submit"].main-btn:hover,
.contact-page-section .wpcf7 input.wpcf7-submit.main-btn:hover {
    background-color: #3a3a3a;
    background-size: 10px 1px;
}

/* フォーカス */
.contact-page-section .wpcf7 input[type="submit"].main-btn:focus-visible,
.contact-page-section .wpcf7 input.wpcf7-submit.main-btn:focus-visible {
    outline: 2px solid #bbb;
    outline-offset: 3px;
}

/* SP */
@media (max-width: 767px) {
    .contact-page-section {
        padding: 90px 0 20px;
    }

    .contact-page-section .l-container>div:first-child p {
        font-size: 28px;
    }

    .contact-page-section>div:nth-of-type(2) {
        margin-top: 56px;
    }

    .contact-page-section .wpcf7 .contact-row {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
        padding: 16px 0;
    }

    .contact-page-section .privacy-agree {
        align-items: flex-start;
    }

    .contact-page-section .wpcf7 input[type="submit"].main-btn,
    .contact-page-section .wpcf7 input.wpcf7-submit.main-btn {
        
        width: 176px;height:40px;
		
    }
	.contact-page-section .wpcf7 .contact-row dt:has(+ dd .wpcf7-form-control-wrap[data-name="company"]){
		     justify-content: start;
	}
	.wpcf7-spinner{display: none !important;}
}


/* CF7: 送信成功時だけメッセージを非表示 */
.wpcf7 form.sent .wpcf7-response-output{
  display: none;
}
.wpcf7 .wpcf7-mail-sent-ok{
  display: none;
}
/* ==================== 問い合わせページ ==================== */

.thanks-page-section {
    padding: 120px 0 140px;
    background: var(--color-white);
}

.thanks-page-section .l-container {
    max-width: 800px;
}

.thanks-page-section .l-container>div:first-child {
    background: #f3f3f3;
    padding: 34px 20px;
    text-align: center;
}

.thanks-page-section .l-container h2 {
    margin: 0 0 24px;
    font-family: var(--font-ja);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text-dark);
}
.thanks-page-section .l-container p {
	line-height:1.4;
	font-size: 14px;
}


/* ==================== PRIVACY-POLICYページ ==================== */
.privacy-policy-page-section{
	padding-top:60px
}
.privacy-policy-page-section h2 {
    font-size: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.privacy-policy-page-section ul {
    padding-bottom: 4rem
}
.privacy-policy-page-section p {
    padding: 2rem 0 4rem;
}

/* ==================== 404ページ ==================== */
.error404 .site-header{background:#cdcdcd;}
.error404 .l-container{5rem 10px 10px}
.p-404__title{padding-top:8rem}

