@charset "utf-8";
/*============================================
	loading
=======================================================================*/
#loading{
	position:fixed;
	inset:0;
	z-index:9999;
	background:#003b3b;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}

#particleCanvas{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	z-index:5;
}
.loading-inner{
	color:white;
	font-size:3vw;
	letter-spacing:.2em;
	opacity:0;
	transform:translateY(40px);
	animation:fadeUp 1.2s ease forwards;
}
.logo-wrap{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:10;
}

#logoSVG{
	width:260px;
	height:auto;
	opacity:0;
	position:relative;
	z-index:10;
	display:block;
}
.loading-bg{
	position:absolute;
	inset:0;
	background:#003b3b;
	z-index:1;
	clip-path:circle(150% at center);
	pointer-events:none;
}

@keyframes fadeUp{
  to{
	opacity:1;
	transform:translateY(0);
  }
}
    /* =========================
      Hero
    ========================== */
    .hero{
	  max-height: 100vh;	
	  min-height: clamp(600px,65vh,800px);
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      padding: clamp(80px, 10vw, 120px) 5vw clamp(60px, 8vw, 80px);
      overflow:hidden;
    }

    .hero-inner{
      width:100%;
	padding-block: clamp(60px, 8vw, 120px);	
      position:relative;
    }

    .hero-image-wrap{
      width: 62%;
      height: clamp(300px, 55vw, 72vh);
      margin: 0 auto;
      position: relative;
      perspective: 2200px;
      background: #fff;
      padding: 20px;
    }

    .hero-image{
      position: absolute;
      inset: 20px;
      width: calc(100% - 40px);
      height: calc(100% - 40px);
      object-fit: cover;
      opacity: 0;
      transform-origin: center center;
      will-change: transform, opacity;
    }

    /* currentはtranslate不要・insetで位置確定 */
    .hero-image.current{
      opacity: 1;
      z-index: 1;
    }

    .hero-image.next{
      z-index: 2;
    }

    .hero-copy{
      position: absolute;
      left: 0;
      bottom: 20px;
      z-index: 2;
    }

    .hero-copy small{
      display: block;
      font-size: clamp(12px, 1.4vw, 16px);
      margin-bottom: 16px;
      color: #00754f;
      letter-spacing: .03em;
    }

    .hero-copy h1{
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(36px, 6vw, 82px);
      line-height: 1.08;
      font-weight: 500;
      color: #003d3b;
      text-shadow: 0 0 6px #fff;
    }

    .hero-copy p{
      margin-top: clamp(16px, 2.5vw, 30px);
      font-size: clamp(14px, 1.6vw, 18px);
      color: #111;
    }

    /* Slider buttons */
    .slider-nav{
      position:absolute;
      right:40px;
      top:50%;
      transform:translateY(-50%);
      display:flex;
      gap:20px;
      z-index:5;
    }

	.slider-btn{
		width:56px;
		height:56px;
		border-radius:50%;
		border:none;
		background:#003d3b;
		color:white;
		font-size:28px;
		cursor:pointer;
		transition:.3s;
	}

    .slider-btn:hover{
      transform:scale(1.08);
    }

    /* =========================
      Responsive
    ========================== */
    @media(max-width:1024px){
      .hero-image-wrap{ width:100%; }
      .hero-copy{
        position: relative;
        margin-top: 32px;
        bottom: auto;
      }
      .slider-nav{ right:20px; }
    }

    @media(max-width:768px){
      .hero{ padding-top: clamp(65px, 6vw, 120px); padding-bottom:0; }
      .hero-image-wrap{ height: clamp(240px, 52vw, 360px); }
    }

    @media(max-width:480px){
      .hero-image-wrap{ height: 52vw; min-height: 220px; }
      .hero-copy{ margin-top: 24px; }
		.slider-btn{
			width:45px;
			height:45px;
		}		
    }
/*==============================
	TOPabout
==============================================================*/
.about-section::before{
	position: absolute;
	content: '';
	width: 120%;
	height: 30vw;
	background: #fff;
    transform: translateX(-50%) rotate(-8deg);
    left: 50%;
    bottom: 5%;	
	z-index: 0;
}


.about-grid{
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

/* ----------------
   LEFT
---------------- */

.about-label{
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #52b788;
  margin-bottom: 18px;
}

.about-title{
  font-size: clamp(26px, 4vw, 50px);
  line-height: 1.2;
  font-weight: 600;
  color: #292524;
  margin-bottom: 30px;
}

.about-title span{
  color: #2d6a4f;
}

.about-line{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.about-line .line{
  width: 40px;
  height: 1px;
  background: #52b788;
}

.about-line span{
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #52b788;
}

.about-text{
  line-height: 1.9;
  color: #57534e;
  margin-bottom: 22px;
}

.about-text strong{
  color: #292524;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: #2d6a4f;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.about-btn:hover{
  background: #1a3d2b;
}

/* ----------------
   RIGHT
---------------- */

.about-visual{
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 16px;
  height: 520px;
}

.about-image{
  overflow: hidden;
  border-radius: 24px;
}

.about-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-image:hover img{
  transform: scale(1.05);
}

.about-image.large{
  grid-column: span 8;
  grid-row: span 2;
}

.about-image.small{
  grid-column: span 4;
  grid-row: span 1;
}

.about-card{
  grid-column: span 4;
  grid-row: span 1;

  background: #2d6a4f;
  border-radius: 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
}

.about-card .num{
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.about-card .en{
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #95d5b2;
  margin-top: 8px;
}

.about-card .jp{
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  margin-top: 10px;
}



/* ----------------
   RESPONSIVE
---------------- */

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

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

  .about-container{
    padding: 0 20px;
  }

  .about-grid{
    grid-template-columns: 1fr;
  }

  .about-visual{
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .about-image.large{
    grid-column: span 2;
    height: 360px;
  }

  .about-image.small,
  .about-card{
    grid-column: span 1;
    height: 220px;
  }

}

/* --  TOP service ----------------------- */
.service-section::before{
	position: absolute;
	content: '';
	background: url("../img/bg-mark.webp")no-repeat center/contain;
	width: 30vw;
	aspect-ratio: 33 / 24;
	top: 0;
	right: 0;
}

.service-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
}

.service-label{
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #52b788;
  margin-bottom: 14px;
}

.service-title{
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 300;
  color: #292524;
}

/* ----------------
   MAIN CARD
---------------- */

.service-main-card{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  height: 520px;
  margin-bottom: 24px;
  text-decoration: none;
}

.service-main-image,
.service-main-image img{
  width: 100%;
  height: 100%;
}

.service-main-image img{
  object-fit: cover;
  transition: transform .7s ease;
}

.service-main-card:hover img{
  transform: scale(1.06);
}

.service-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.82),
      rgba(0,0,0,.2),
      rgba(0,0,0,.08)
    );
  transition: .5s;
}

.service-main-card:hover .service-overlay,
.service-card:hover .service-overlay{
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.9),
      rgba(0,0,0,.25),
      rgba(0,0,0,.08)
    );
}

.service-category{
  position: absolute;
  top: 24px;
  left: 24px;

  padding: 7px 14px;
  border-radius: 999px;

  background: rgba(45,106,79,.85);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
}

.service-main-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 40px;
  z-index: 2;
}

/* ----------------
   GRID
---------------- */

.service-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.service-card{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 320px;
  text-decoration: none;
}

.service-image,
.service-image img{
  width: 100%;
  height: 100%;
}

.service-image img{
  object-fit: cover;
  transition: transform .7s ease;
}

.service-card:hover img{
  transform: scale(1.06);
}

.service-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 28px;
  z-index: 2;
}

/* ----------------
   TEXT
---------------- */

.service-en{
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}

.service-main-content h3,
.service-content h3{
  color: #fff;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 14px;
  font-weight: 500;
}

.service-content h3{
  font-size: 22px;
}

.service-text{
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.service-more{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #95d5b2;
  font-size: 12px;
  font-weight: 500;

  transition: .3s;
}

.service-card:hover .service-more,
.service-main-card:hover .service-more{
  gap: 14px;
}

/* ----------------
   RESPONSIVE
---------------- */

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

  .service-section{
    padding: 90px 0;
  }

  .service-container{
    padding: 0 20px;
  }

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

  .service-main-card{
    height: 420px;
  }

  .service-grid{
    grid-template-columns: 1fr;
  }

}

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

  .service-main-card{
    height: 360px;
  }

  .service-main-content,
  .service-content{
    padding: 24px;
  }

  .service-main-content h3{
    font-size: 24px;
  }

  .service-content h3{
    font-size: 20px;
  }

  .service-link-wrap .line{
    display: none;
  }

}


/* ================================================================
   page.css — 下層ページ共通スタイル
================================================================ */


/* ================================================================
   共通 Section Label
================================================================ */
.section-label {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #52b788;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}


/* ================================================================
   Page Hero
================================================================ */
.page-hero {
  position: relative;
  height: clamp(350px, 35vw, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,30,24,.52) 0%,
    rgba(0,50,40,.32) 60%,
    rgba(0,0,0,.12) 100%
  );
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding:
    clamp(100px, 14vw, 180px)
    clamp(20px, 4vw, 40px)
    clamp(60px, 8vw, 100px);

  box-sizing: border-box;
}

.page-hero-content { max-width: 700px; }

.page-hero-label {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #95d5b2;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}

.page-hero-title {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}

.page-hero-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
}

/* スクロールインジケーター */
.page-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .4; transform: scaleY(.6); }
}

/* パンくず */
.breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  list-style: none;
}

.breadcrumb li {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .05em;
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 8px;
  color: rgba(255,255,255,.3);
}

.breadcrumb a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .3s;
}

.breadcrumb a:hover { color: #95d5b2; }

@media (max-width: 768px) {
  .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .page-hero-scroll { display: none; }
}


/* ================================================================
   Page Lead
================================================================ */
.page-lead {
  background: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.page-lead::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(350px,35vw,600px);
  height: clamp(350px,35vw,600px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-lead-logo {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: min(34vw, 600px);
  opacity: .05;
  pointer-events: none;
  z-index: 0;
}

.page-lead-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(.8) brightness(.5);
}
.page-lead-title {
  font-size: clamp(28px, 4.5vw, 58px);
  line-height: 1.2;
  font-weight: 600;
  color: #1a2a2a;
  margin-bottom: 30px;
  font-family: 'Noto Serif JP', serif;
}

.page-lead-title span { color: #2d6a4f; }

.page-lead-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.line-bar {
  width: 40px;
  height: 1px;
  background: #52b788;
}

.page-lead-line span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #52b788;
  font-family: 'Montserrat', sans-serif;
}

.page-lead-text {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 2;
  color: #57534e;
  max-width: 760px;
}


/* ================================================================
   Service Section (svc-section)
   — 左右交互レイアウト（参考コード準拠）
================================================================ */
.svc-section {
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
}

.bg-light { background: #f8f5f0; }
.bg-white { background: #fff; }

/* Grid */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* reverse: 画像を左・テキストを右にするため列順を入れ替え */
.svc-grid.reverse .svc-image-col { order: 1; }
.svc-grid.reverse .svc-text-col  { order: 2; }

/* 画像カラム */
.svc-image-col { position: relative; }

.svc-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .7s ease;
}

.svc-image-col:hover .svc-img-wrap img {
  transform: scale(1.04);
}

/* バッジ */
.svc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #2d6a4f;
  color: #fff;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 999px;
}

/* テキストカラム */
.svc-text-col {
  display: flex;
  flex-direction: column;
}

.svc-title {
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 300;
  line-height: 1.3;
  color: #292524;
  margin-bottom: 8px;
  font-family: 'Noto Serif JP', serif;
}

.svc-subtitle {
  font-size: 13px;
  color: #888;
  letter-spacing: .05em;
  margin-bottom: 24px;
}

.svc-rule {
  width: 48px;
  height: 1px;
  background: #52b788;
  margin-bottom: 24px;
}

.svc-lead-text {
  font-size: 14px;
  line-height: 1.95;
  color: #57534e;
  margin-bottom: 28px;
}

/* チェックリスト */
.svc-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}

.svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #57534e;
  line-height: 1.6;
}

.svc-checklist li .fa-check {
  color: #52b788;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 12px;
}

/* アコーディオン */
.svc-sub-list {
  border-top: 1px solid rgba(0,0,0,.07);
  margin-bottom: 32px;
}

.svc-sub-item {
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.svc-sub-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #292524;
  font-family: inherit;
  text-align: left;
  transition: color .25s;
}

.svc-sub-btn:hover { color: #2d6a4f; }

.svc-sub-btn .fa-plus {
  font-size: 12px;
  color: #52b788;
  transition: transform .3s;
  flex-shrink: 0;
}

.svc-sub-item.open .svc-sub-btn .fa-plus {
  transform: rotate(45deg);
}

.svc-sub-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 4px;
}

.svc-sub-item.open .svc-sub-body {
  max-height: 300px;
  padding: 0 4px 20px;
}

.svc-sub-body p {
  font-size: 13px;
  line-height: 2;
  color: #57534e;
}

/* CTAボタン */
.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #2d6a4f;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .3s, transform .3s;
  width: fit-content;
}

.svc-cta-btn:hover {
  background: #1a3d2b;
  color: #fff;
  transform: translateY(-2px);
}

.svc-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.svc-tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid #2d6a4f;
  color: #2d6a4f;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
  width: fit-content;
}

.svc-tel-btn:hover {
  background: #2d6a4f;
  color: #fff;
}

/* オゾン PDF カード */
.ozone-pdf-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.ozone-pdf-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f0f7f4;
  border: 1px solid #d2ece0;
  text-decoration: none;
  color: #2d6a4f;
  font-size: 13px;
  font-weight: 500;
  transition: .3s;
}

.ozone-pdf-card:hover {
  background: #e0f0e8;
  transform: translateY(-2px);
}

.ozone-pdf-card .fa-file-pdf {
  font-size: 18px;
  color: #e05050;
  flex-shrink: 0;
}

.ozone-pdf-card .fa-arrow-up-right-from-square {
  margin-left: auto;
  font-size: 11px;
  color: #52b788;
  flex-shrink: 0;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-grid.reverse .svc-image-col { order: 1; }
  .svc-grid.reverse .svc-text-col  { order: 2; }
}

@media (max-width: 560px) {
  .svc-checklist {
    grid-template-columns: 1fr;
  }
  .svc-btn-group {
    flex-direction: column;
  }
  .svc-cta-btn,
  .svc-tel-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ================================================================
   Point Section（ダークグリーン背景）
================================================================ */
.point-section {
  background: #1a2a2a;
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.point-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,.15) 0%, transparent 70%);
  pointer-events: none;
}

.point-head { margin-bottom: 60px; }
.point-head .section-label { color: #95d5b2; }

.point-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}

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

.point-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  padding: 40px 28px;
  transition: .4s;
}

.point-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-6px);
  border-color: rgba(149,213,178,.2);
}

.point-icon {
  width: 56px;
  height: 56px;
  background: rgba(45,106,79,.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  color: #95d5b2;
  transition: .4s;
}

.point-card:hover .point-icon { background: rgba(45,106,79,.5); }

.point-card h3 {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.5;
}

.point-card p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.9;
}

@media (max-width: 960px) {
  .point-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .point-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   Flow Section
================================================================ */
.flow-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #fff;
}

.flow-head { margin-bottom: 60px; }

.flow-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #1a2a2a;
  font-family: 'Noto Serif JP', serif;
}

.flow-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.flow-item:first-child { padding-top: 0; }

.flow-num {
  font-size: 42px;
  font-weight: 300;
  color: #d8ede4;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  letter-spacing: -.02em;
  position: relative;
}

.flow-num::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #52b788;
}

.flow-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1a2a2a;
  margin-bottom: 10px;
}

.flow-content p {
  font-size: 14px;
  line-height: 2;
  color: #57534e;
}

.flow-arrow {
  display: flex;
  justify-content: flex-start;
  padding-left: 27px;
  color: #c8e6d8;
  font-size: 18px;
}

@media (max-width: 560px) {
  .flow-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .flow-num { font-size: 32px; }
}


/* ================================================================
   Other Services
================================================================ */
.other-services {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #f8f5f0;
}

.other-head { margin-bottom: 60px; }

.other-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #1a2a2a;
  font-family: 'Noto Serif JP', serif;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.other-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  height: 280px;
  text-decoration: none;
}

.other-image,
.other-image img {
  width: 100%;
  height: 100%;
}

.other-image img {
  object-fit: cover;
  transition: transform .7s ease;
}

.other-card:hover .other-image img { transform: scale(1.06); }

.other-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.1));
  transition: .5s;
}

.other-card:hover .other-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.15));
}

.other-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.other-en {
  font-size: 10px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.other-content h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.other-more {
  color: #95d5b2;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  transition: .3s;
}

.other-card:hover .other-more { letter-spacing: .08em; }

@media (max-width: 768px) {
  .other-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .other-card { height: 240px; }
}


/* ================================================================
   Animation delay utilities
================================================================ */
.delay-time05  { animation-delay: .05s;  transition-delay: .05s; }
.delay-time1   { animation-delay: .1s;   transition-delay: .1s; }
.delay-time15  { animation-delay: .15s;  transition-delay: .15s; }
}

/* ================================================================
   修理・メンテナンス セクション内アピールボックス
================================================================ */
.mnt-appeal-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.mnt-appeal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0f7f4;
  border: 1px solid #d2ece0;
  border-radius: 16px;
  padding: 18px 20px;
}

.mnt-appeal-item > i {
  width: 40px;
  height: 40px;
  background: #2d6a4f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.mnt-appeal-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a2a2a;
  margin-bottom: 4px;
  line-height: 1.4;
}

.mnt-appeal-item p {
  font-size: 12px;
  line-height: 1.8;
  color: #57534e;
  margin: 0;
}


/* ================================================================
   メンテナンス 強み セクション
   （.point-section と同じダークグリーン背景を継承しつつ
     タイトルだけ専用スタイル）
================================================================ */
.mnt-strength-section {
  background: #1a2a2a;
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.mnt-strength-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,.12) 0%, transparent 70%);
  pointer-events: none;
}

.mnt-strength-head {
  margin-bottom: 60px;
}

.mnt-strength-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.25;
  margin-top: 14px;
}

/* ================================================================
   歌王 HITPARAD
================================================================ */

/* ================================================================
   Hero カスタム
================================================================ */
.hp-hero .page-hero-overlay {
  background: linear-gradient(
    150deg,
    rgba(10, 0, 30, .85) 0%,
    rgba(40, 10, 60, .55) 55%,
    rgba(0, 0, 0, .20) 100%
  );
}

.hp-accent {
  color: #c084fc; /* 紫アクセント — ステージ感 */
  display: inline-block;
}

/* ================================================================
   Concept Section
================================================================ */
.hp-concept {
 
  padding: clamp(80px, 10vw, 140px) 0;
}

.hp-concept .svc-rule {
  background: #a855f7;
}

.hp-concept .svc-cta-btn {
  background: #06c755; /* LINE green */
}
.hp-concept .svc-cta-btn:hover {
  background: #049a42;
  color: #fff;
}

.hp-concept .svc-checklist li .fa-check {
  color: #a855f7;
}

/* ================================================================
   Feature: ステージルーム
================================================================ */
.hp-feature-section {
  background: #0f0a1a; /* 深い暗紫 — ステージ夜感 */
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.hp-feature-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hp-feature-head {
  margin-bottom: 60px;
}

.hp-feature-head .section-label {
  color: #c084fc;
}

.hp-feature-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}

/* ルームグリッド */
.hp-room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hp-room-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
}

.hp-room-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 132, 252, .3);
}

.hp-room-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hp-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.hp-room-card:hover .hp-room-img img {
  transform: scale(1.05);
}

.hp-room-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(168, 85, 247, .85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .15em;
  padding: 5px 14px;
  border-radius: 999px;
}

.hp-room-body {
  padding: 28px 28px 32px;
}

.hp-room-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.hp-room-body > p {
  font-size: 13px;
  line-height: 1.95;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.hp-room-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.hp-room-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.hp-room-specs li .fa-solid,
.hp-room-specs li .fa-regular {
  color: #c084fc;
  font-size: 12px;
  flex-shrink: 0;
}

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

/* ================================================================
   Price Section
================================================================ */
.hp-price-section {
  background: #faf8ff;
  padding: clamp(80px, 10vw, 130px) 0;
}

.hp-price-head {
  margin-bottom: 60px;
}

.hp-price-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #1a1020;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}

.hp-price-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch; 
}

/* 共通カード */
.hp-price-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display: flex; 
  flex-direction: column; 
}

.hp-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}

.hp-price-card.main-card {
  border-color: rgba(168, 85, 247, .2);
  box-shadow: 0 4px 30px rgba(168, 85, 247, .08);
}

.hp-price-card-head {
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.hp-price-label {
  font-size: 18px;
  font-weight: 600;
  color: #1a1020;
  font-family: 'Noto Serif JP', serif;
}

.hp-price-tag {
  font-size: 10px;
  letter-spacing: .2em;
  color: #a855f7;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.hp-price-body {
  padding: 24px 28px;
	flex: 1; 	
}

/* フリータイム料金 */
.hp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.hp-price-time {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #57534e;
}

.hp-price-time > .fa-solid,
.hp-price-time > .fa-regular {
  font-size: 18px;
  color: #a855f7;
  flex-shrink: 0;
}

.price-time-label {
  font-size: 13px;
  font-weight: 600;
  color: #292524;
  margin-bottom: 2px;
}

.price-time-hour {
  font-size: 12px;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .04em;
}

.hp-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.price-num {
  font-size: 36px;
  font-weight: 700;
  color: #1a1020;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -.02em;
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  color: #57534e;
}

.hp-price-divider {
  height: 1px;
  background: rgba(0,0,0,.06);
  margin: 4px 0;
}

.hp-price-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 28px 18px;
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  background: #faf8ff;
}

.hp-price-note .fa-circle-info {
  color: #a855f7;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 歌謡教室 */
.lesson-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lesson-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #faf8ff;
  border-radius: 14px;
  padding: 16px;
}

.lesson-info > .fa-solid {
  font-size: 20px;
  color: #a855f7;
  flex-shrink: 0;
  margin-top: 2px;
}

.lesson-day {
  font-size: 14px;
  font-weight: 600;
  color: #292524;
  margin-bottom: 4px;
}

.lesson-detail {
  font-size: 12px;
  color: #888;
}

.lesson-desc {
  font-size: 13px;
  line-height: 1.9;
  color: #57534e;
}

.lesson-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: #06c755;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.lesson-line-btn:hover {
  background: #049a42;
  color: #fff;
}

.lesson-line-btn .fa-brands {
  font-size: 16px;
}

/* ドリンク */
.drink-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drink-icon {
  width: 56px;
  height: 56px;
  background: #faf8ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #a855f7;
}

.drink-desc {
  font-size: 13px;
  line-height: 1.9;
  color: #57534e;
}

.drink-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.drink-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #57534e;
}

.drink-list li .fa-check {
  color: #a855f7;
  font-size: 11px;
  flex-shrink: 0;
}

.hp-price-disclaimer {
  margin-top: 28px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

@media (max-width: 960px) {
  .hp-price-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* ================================================================
   Equipment Section
================================================================ */
.hp-equip-section {
 
  padding: clamp(80px, 10vw, 130px) 0;
}

.hp-equip-head {
  margin-bottom: 60px;
}

.hp-equip-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #1a1020;
  font-family: 'Noto Serif JP', serif;
}

.hp-equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-equip-card {
  background: #faf8ff;
  border: 1px solid rgba(168, 85, 247, .1);
  border-radius: 24px;
  padding: 36px 24px;
  transition: .4s;
}

.hp-equip-card:hover {
  background: #f3eeff;
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, .3);
}

.hp-equip-icon {
  width: 56px;
  height: 56px;
  background: #f0e8ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #a855f7;
  margin-bottom: 20px;
  transition: .4s;
}

.hp-equip-card:hover .hp-equip-icon {
  background: #e4d4ff;
}

.hp-equip-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1020;
  margin-bottom: 12px;
}

.hp-equip-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #57534e;
}

@media (max-width: 900px) {
  .hp-equip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hp-equip-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Use Scene
================================================================ */
.hp-scene-section {
  background: #0f0a1a;
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.hp-scene-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, .1) 0%, transparent 70%);
  pointer-events: none;
}

.hp-scene-head {
  margin-bottom: 60px;
}

.hp-scene-head .section-label {
  color: #c084fc;
}

.hp-scene-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}

.hp-scene-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-scene-item {
  position: relative;
  padding: 36px 24px 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  transition: .4s;
}

.hp-scene-item:hover {
  background: rgba(168, 85, 247, .08);
  border-color: rgba(168, 85, 247, .25);
  transform: translateY(-5px);
}

.hp-scene-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .15em;
  color: rgba(255,255,255,.2);
}

.hp-scene-icon {
  font-size: 28px;
  color: #c084fc;
  margin-bottom: 20px;
  display: block;
}

.hp-scene-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.hp-scene-item p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .hp-scene-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hp-scene-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   LINE CTA Section
================================================================ */
.hp-line-section {
  background: #06c755;
  padding: clamp(64px, 8vw, 100px) 0;
}

.hp-line-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hp-line-text {
  color: #fff;
}

.hp-line-text .section-label {
  color: rgba(255,255,255,.7);
}

.hp-line-text h2 {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
}

.hp-line-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.85);
  max-width: 480px;
}

.hp-line-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.hp-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hp-qr-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  overflow: hidden;
}

.hp-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hp-qr-label {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  text-align: center;
  line-height: 1.6;
}

.hp-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #fff;
  color: #06c755;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  white-space: nowrap;
}

.hp-line-btn:hover {
  background: #f0fff5;
  color: #06c755;
  transform: translateY(-2px);
}

.hp-line-btn .fa-brands {
  font-size: 20px;
}

@media (max-width: 768px) {
  .hp-line-wrap {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hp-line-text p {
    margin: 0 auto;
  }
}

/* ================================================================
   Access Section
================================================================ */
.hp-access-section {
	background:
	radial-gradient(circle at center right,
	rgba(168,85,247,.18),
	transparent 50%),
	#fff;

  padding: clamp(80px, 10vw, 130px) 0;
}

.hp-access-head {
  margin-bottom: 60px;
}

.hp-access-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #1a1020;
  font-family: 'Noto Serif JP', serif;
}

.hp-access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
   margin-bottom: 48px;
}

/* テーブル */
.access-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.access-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  align-items: start;
}

.access-row:first-child {
  padding-top: 0;
}

.access-row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #a855f7;
  white-space: nowrap;
}

.access-row dt .fa-solid,
.access-row dt .fa-brands,
.access-row dt .fa-regular {
  font-size: 13px;
  flex-shrink: 0;
}

.access-row dd {
  font-size: 14px;
  line-height: 1.9;
  color: #57534e;
}

.access-row dd a {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.access-row dd a:hover {
  color: #7c3aed;
}

.access-line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #06c755;
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.access-line-link:hover {
  background: #049a42;
  color: #fff !important;
}

.access-line-link .fa-brands {
  font-size: 16px;
}

/* Map */
.hp-access-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

.hp-access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

@media (max-width: 860px) {
  .hp-access-grid {
    grid-template-columns: 1fr; margin-bottom: 28px;
  }
  .hp-access-map {
    min-height: 280px;
  }
  .hp-access-map iframe {
    min-height: 280px;
  }
  .access-row {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 480px) {
  .access-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ================================================================
   キャッチコピー帯
================================================================ */
.hp-catch-band {
  background: #0f0a1a;
  padding: 40px 0;
  border-top: 1px solid rgba(168,85,247,.15);
  border-bottom: 1px solid rgba(168,85,247,.15);
}
.hp-catch-text {
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: .04em;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: 0 .5em;
}
.hp-catch-text span:last-child { color: #c084fc; }

/* ================================================================
   Concept Section 追加要素
================================================================ */
.hp-svc-badge { background: #7c3aed !important; }
.hp-line-cta  { background: #06c755 !important; }
.hp-line-cta:hover { background: #049a42 !important; color: #fff !important; }
.hp-checklist li .fa-check { color: #a855f7 !important; }

.hp-concept-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #0f0a1a;
  border-radius: 20px;
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(168,85,247,.2);
}
.hp-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hp-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -.02em;
  line-height: 1;
}
.hp-stat-num small {
  font-size: 14px;
  color: #c084fc;
  font-weight: 400;
  margin-left: 2px;
}
.hp-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
}
.hp-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  margin: 0 24px;
}

/* ================================================================
   こだわりセクション (Pride)
================================================================ */
.hp-pride-section {
  background: #0f0a1a;
  padding: clamp(80px,10vw,130px) 0;
  position: relative;
  overflow: hidden;
}
.hp-pride-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.1) 0%, transparent 68%);
  pointer-events: none;
}
.hp-pride-head { margin-bottom: 60px; }
.hp-pride-title {
  font-size: clamp(24px,3.8vw,50px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
}
.hp-pride-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.hp-pride-card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  padding: 44px 32px 40px;
  transition: .4s;
  overflow: hidden;
}
.hp-pride-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,.05) 0%, transparent 60%);
  opacity: 0;
  transition: .4s;
}
.hp-pride-card:hover {
  border-color: rgba(168,85,247,.3);
  transform: translateY(-6px);
}
.hp-pride-card:hover::after { opacity: 1; }
.hp-pride-num {
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,.04);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -.04em;
}
.hp-pride-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(168,85,247,.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #c084fc;
  margin-bottom: 24px;
  transition: .4s;
}
.hp-pride-card:hover .hp-pride-icon-wrap {
  background: rgba(168,85,247,.3);
}
.hp-pride-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
}
.hp-pride-card p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.58);
}
@media (max-width:768px) {
  .hp-pride-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* 料金 lead */
.hp-price-lead {
  font-size: 15px;
  color: #888;
  margin-top: 8px;
  letter-spacing: .04em;
}

/* ================================================================
   Voice Section
================================================================ */
.hp-voice-section {
	background:
	radial-gradient(circle at bottom left,
	rgba(168,85,247,.13),
	transparent 45%),
	#fff;
  padding: clamp(80px,10vw,130px) 0;
}
.hp-voice-head { margin-bottom: 52px; }
.hp-voice-title {
  font-size: clamp(24px,3.8vw,50px);
  font-weight: 600;
  color: #1a1020;
  font-family: 'Noto Serif JP', serif;
}
.hp-voice-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.hp-voice-card {
  background: #faf8ff;
  border: 1px solid rgba(168,85,247,.1);
  border-radius: 24px;
  padding: 36px 28px 32px;
  position: relative;
  transition: .3s;
}
.hp-voice-card:hover {
  border-color: rgba(168,85,247,.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(168,85,247,.08);
}
.hp-voice-quote {
  font-size: 72px;
  line-height: .8;
  color: #e9d5ff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.hp-voice-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #292524;
  font-style: italic;
  margin-bottom: 20px;
}
.hp-voice-attr {
  font-size: 12px;
  color: #a855f7;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .08em;
}
.hp-voice-note {
  font-size: 11px;
  color: #ccc;
  text-align: center;
}
@media (max-width:768px) {
  .hp-voice-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ================================================================
   Hero — Pattern C ロゴ白抜き × タイトル横並び
================================================================ */

/* 背景にうっすら敷くロゴ */
.hp-hero-logo-bg {
  position: absolute;
  right: clamp(40px, 8vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.hp-hero-logo-bg img {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  filter: invert(1);
  opacity: .04;
}

/* ロゴ＋タイトル横並びグループ */
.hp-hero-title-group {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: 18px;
}

/* ロゴ本体 — 白抜き */
.hp-hero-logo {
  width: auto;
  height: clamp(70px, 10vw, 120px);
  object-fit: contain;
  filter: invert(1);
  flex-shrink: 0;
  /* ロゴの白背景を透過させる */
  mix-blend-mode: screen;
}

/* タイトルはmargin-bottom不要（groupで管理） */
.hp-hero-title-group .page-hero-title {
  margin-bottom: 0;
}

/* SP対応 */
@media (max-width: 600px) {
  .hp-hero-logo-bg { display: none; }
  .hp-hero-title-group {
    gap: 12px;
  }
  .hp-hero-logo {
    height: clamp(52px, 14vw, 72px);
  }
}


/* ================================================================
 一番街 麻雀館 ページ専用スタイル
================================================================ */

/* ================================================================
   カラー変数
================================================================ */
:root {
  --mj-gold:   #c9a84c;
  --mj-amber:  #d97706;
  --mj-dark:   #1c1409;
  --mj-green:  #1a3020;
  --mj-cream:  #fdf8f0;
  --mj-border: rgba(201,168,76,.2);
}

/* ================================================================
   Hero カスタム
================================================================ */
.mj-hero .page-hero-overlay {
  background: linear-gradient(
    150deg,
    rgba(15, 10, 3, .88) 0%,
    rgba(40, 25, 5, .60) 55%,
    rgba(0, 0, 0, .22) 100%
  );
}

/* 牌デコ */
.mj-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.mj-tile {
  position: absolute;
  font-size: clamp(40px, 7vw, 90px);
  opacity: .04;
  filter: grayscale(1);
  user-select: none;
}

.mj-tile:nth-child(1) { top: 18%;  right: 12%; transform: rotate(-12deg); }
.mj-tile:nth-child(2) { top: 55%;  right: 6%;  transform: rotate(8deg);  font-size: clamp(28px, 5vw, 60px); }
.mj-tile:nth-child(3) { top: 30%;  right: 22%; transform: rotate(20deg); font-size: clamp(22px, 4vw, 48px); }

/* ================================================================
   カラー統一 ユーティリティ
================================================================ */
.mj-label       { color: var(--mj-gold) !important; }
.mj-label-light { color: rgba(201,168,76,.75) !important; }
.mj-accent      { color: var(--mj-amber); }
.mj-rule        { background: var(--mj-gold) !important; }
.mj-badge       { background: var(--mj-green) !important; }

.mj-checklist li .fa-check {
  color: var(--mj-gold) !important;
}

.mj-line-btn {
  background: #06c755 !important;
}
.mj-line-btn:hover {
  background: #049a42 !important;
  color: #fff !important;
}

.mj-tel-btn {
  border-color: var(--mj-gold) !important;
  color: var(--mj-amber) !important;
}
.mj-tel-btn:hover {
  background: var(--mj-gold) !important;
  color: #fff !important;
}

/* ================================================================
   Concept Section
================================================================ */
.mj-concept-section {
  background: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
}

/* ================================================================
   Promise Section（3つの約束）
================================================================ */
.mj-promise-section {
  background: var(--mj-green);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.mj-promise-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 65%);
  pointer-events: none;
}

.mj-promise-head {
  margin-bottom: 60px;
}

.mj-promise-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
  margin-bottom: 12px;
}

.mj-promise-sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
}

.mj-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mj-promise-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--mj-border);
  border-radius: 28px;
  padding: 44px 36px;
  transition: .4s;
}

.mj-promise-card:hover {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.35);
  transform: translateY(-6px);
}

.mj-promise-kanji {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Noto Serif JP', serif;
  color: var(--mj-gold);
  opacity: .8;
  letter-spacing: -.02em;
}

.mj-promise-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Noto Serif JP', serif;
}

.mj-promise-body p {
  font-size: 13px;
  line-height: 1.95;
  color: rgba(255,255,255,.60);
}

@media (max-width: 760px) {
  .mj-promise-grid { grid-template-columns: 1fr; gap: 16px; }
  .mj-promise-card { flex-direction: row; padding: 28px 24px; gap: 20px; }
  .mj-promise-kanji { font-size: 44px; flex-shrink: 0; }
}

/* ================================================================
   Price Section
================================================================ */
.mj-price-section {
  background: var(--mj-cream);
  padding: clamp(80px, 10vw, 130px) 0;
}

.mj-price-head { margin-bottom: 60px; }

.mj-price-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--mj-dark);
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
}

.mj-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

/* カード共通 */
.mj-price-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.mj-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
}

.mj-price-card.main-card {
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 4px 24px rgba(201,168,76,.12);
}

.mj-price-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.mj-price-tag {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--mj-gold);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}

.mj-price-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--mj-dark);
  font-family: 'Noto Serif JP', serif;
}

.mj-price-badge {
  background: var(--mj-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}

.mj-price-card-body { padding: 24px 28px 28px; }

/* フリータイム */
.mj-price-time-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.mj-price-time-row .fa-regular {
  color: var(--mj-gold);
  font-size: 16px;
}

.mj-price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.mj-price-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--mj-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -.03em;
  line-height: 1;
}

.mj-price-unit {
  font-size: 16px;
  color: #888;
}

.mj-price-includes {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mj-price-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #57534e;
}

.mj-price-includes li .fa-check {
  color: var(--mj-gold);
  font-size: 11px;
  flex-shrink: 0;
}

/* フリー麻雀 */
.mj-price-free-desc {
  font-size: 13px;
  line-height: 1.9;
  color: #57534e;
  margin-bottom: 20px;
}

.mj-price-amount-row.solo { margin-bottom: 16px; }

.mj-price-from {
  font-size: 52px;
  font-weight: 700;
  color: var(--mj-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -.03em;
  line-height: 1;
}

.mj-price-unit-solo {
  font-size: 20px;
  color: #888;
  font-weight: 600;
}

.mj-price-solo-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
  background: var(--mj-cream);
  border-radius: 12px;
  padding: 10px 14px;
}

.mj-price-solo-note .fa-user {
  color: var(--mj-gold);
  flex-shrink: 0;
}

/* 設備カード */
.mj-facility-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mj-facility-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.mj-facility-list li:last-child { border-bottom: none; }

.mj-facility-icon {
  width: 40px;
  height: 40px;
  background: #fdf6e3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--mj-gold);
  flex-shrink: 0;
}

.mj-facility-list strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--mj-dark);
  display: block;
  margin-bottom: 3px;
}

.mj-facility-list p {
  font-size: 12px;
  line-height: 1.7;
  color: #888;
}

.mj-price-disclaimer {
  margin-top: 28px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

@media (max-width: 960px) {
  .mj-price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facility-card { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .mj-price-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Health Mahjong Section
================================================================ */
.mj-health-section {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

.mj-health-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.mj-health-title {
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 600;
  color: var(--mj-dark);
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
  margin-bottom: 24px;
}

.mj-health-rule {
  width: 40px;
  height: 1px;
  background: var(--mj-gold);
  margin-bottom: 24px;
}

.mj-health-desc {
  font-size: 14px;
  line-height: 2;
  color: #57534e;
  margin-bottom: 36px;
}

.mj-health-effects {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mj-effect-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mj-effect-icon {
  width: 44px;
  height: 44px;
  background: #fdf6e3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--mj-gold);
  flex-shrink: 0;
}

.mj-effect-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--mj-dark);
  display: block;
  margin-bottom: 4px;
}

.mj-effect-item p {
  font-size: 13px;
  line-height: 1.8;
  color: #57534e;
}

/* 画像 */
.mj-health-image {
  position: relative;
}

.mj-health-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.mj-health-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.mj-health-image:hover .mj-health-img-wrap img {
  transform: scale(1.04);
}

.mj-health-media-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--mj-dark);
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  max-width: 280px;
}

.mj-health-media-badge > .fa-solid {
  font-size: 22px;
  color: var(--mj-gold);
  flex-shrink: 0;
}

.mj-health-media-badge strong {
  font-size: 13px;
  color: #fff;
  display: block;
  margin-bottom: 3px;
}

.mj-health-media-badge p {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .mj-health-wrap {
    grid-template-columns: 1fr;
  }
  .mj-health-media-badge {
    bottom: -16px;
  }
}

/* ================================================================
   Who Section
================================================================ */
.mj-who-section {
  background: var(--mj-cream);
  padding: clamp(80px, 10vw, 130px) 0;
}

.mj-who-head { margin-bottom: 60px; }

.mj-who-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--mj-dark);
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
}

.mj-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mj-who-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 24px;
  padding: 36px 24px;
  transition: .4s;
}

.mj-who-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(201,168,76,.1);
}

.mj-who-icon {
  width: 56px;
  height: 56px;
  background: #fdf6e3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--mj-gold);
  margin-bottom: 20px;
  transition: .4s;
}

.mj-who-card:hover .mj-who-icon {
  background: #faedcc;
}

.mj-who-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--mj-dark);
  margin-bottom: 10px;
}

.mj-who-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #57534e;
}

@media (max-width: 900px) {
  .mj-who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .mj-who-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Access Section
================================================================ */
.mj-access-section {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

.mj-access-head { margin-bottom: 60px; }

.mj-access-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--mj-dark);
  font-family: 'Noto Serif JP', serif;
}

.mj-access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 48px;
}

.mj-access-table {
  display: flex;
  flex-direction: column;
}

.mj-access-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  align-items: start;
}

.mj-access-row:first-child { padding-top: 0; }

.mj-access-row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mj-amber);
  white-space: nowrap;
}

.mj-access-row dd {
  font-size: 14px;
  line-height: 1.9;
  color: #57534e;
}

.mj-access-row dd a {
  color: var(--mj-amber);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.mj-access-row dd a:hover { color: #92400e; }

.mj-access-line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #06c755;
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.mj-access-line-link:hover {
  background: #049a42;
  color: #fff !important;
}

.mj-access-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
}

.mj-access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

@media (max-width: 860px) {
  .mj-access-grid { grid-template-columns: 1fr; margin-bottom: 28px;}
  .mj-access-map { min-height: 280px; }
  .mj-access-map iframe { min-height: 280px; }
}

@media (max-width: 480px) {
  .mj-access-row { grid-template-columns: 1fr; gap: 6px; }
}

.mj-board-img-wrap {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.mj-board-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------------------------------
   Map + Parking row (PC横並び)
---------------------------------------------------------------- */
.mj-map-parking-row {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.mj-map-parking-row .mj-access-fullmap {
  flex: 1 1 0;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
}

.mj-map-parking-row .mj-access-fullmap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  border: 0;
}

.mj-parking-wrap {
  flex: 1 1 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}

.mj-parking-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--mj-green, #1d2b28);
  color: #fff;
}

.mj-parking-head > .fa-square-parking {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: #fff;
}

.mj-parking-head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mj-parking-head p {
  font-size: .82rem;
  opacity: .8;
  margin: 0;
}

.mj-parking-map {
  flex: 1;
  overflow: hidden;
}

.mj-parking-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .mj-map-parking-row {
    flex-direction: column;
  }
  .mj-map-parking-row .mj-access-fullmap,
  .mj-map-parking-row .mj-access-fullmap iframe {
    min-height: 260px;
  }
}

/* ================================================================
   LINE CTA Section
================================================================ */
.mj-line-section {
  background: var(--mj-green);
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.mj-line-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}

.mj-line-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.mj-line-text h2 {
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
}

.mj-line-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.70);
  max-width: 480px;
}

.mj-line-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.mj-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mj-qr-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  overflow: hidden;
}

.mj-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mj-qr-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.6;
}

.mj-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #06c755;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  white-space: nowrap;
}

.mj-line-btn:hover {
  background: #049a42;
  color: #fff;
  transform: translateY(-2px);
}

.mj-line-btn .fa-brands { font-size: 20px; }

@media (max-width: 768px) {
  .mj-line-wrap {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
  .mj-line-text p { margin: 0 auto; }
}

/*================================================================
  らくらく名刺館 
================================================================*/
.page-meishi {
  --ms-navy:   #1a2744;
  --ms-dark:   #111827;
  --ms-gold:   #c9a84c;
  --ms-gold-lt:#f0d988;
  --ms-amber:  #b8860b;
  --ms-cream:  #fdf8f0;
  --ms-white:  #fff;
}

/* ================================================================
   Hero
================================================================ */
.ms-hero {
  min-height: clamp(560px, 80vh, 900px);
}

.ms-overlay {
  background: linear-gradient(
    135deg,
    rgba(26,39,68,.82) 0%,
    rgba(26,39,68,.55) 60%,
    rgba(0,0,0,.2) 100%
  );
}

/* 装飾カード */
.ms-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ms-deco-card {
  position: absolute;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 6px;
  transform-origin: center;
}

.ms-deco-card--1 {
  width: 160px;
  height: 90px;
  top: 18%;
  right: 12%;
  transform: rotate(-12deg);
  background: rgba(255,255,255,.04);
  animation: cardFloat 6s ease-in-out infinite;
}

.ms-deco-card--2 {
  width: 110px;
  height: 62px;
  top: 40%;
  right: 20%;
  transform: rotate(6deg);
  background: rgba(201,168,76,.06);
  animation: cardFloat 8s ease-in-out 1s infinite;
}

.ms-deco-card--3 {
  width: 80px;
  height: 45px;
  bottom: 28%;
  right: 8%;
  transform: rotate(-4deg);
  background: rgba(255,255,255,.03);
  animation: cardFloat 7s ease-in-out 2s infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%       { transform: rotate(-12deg) translateY(-12px); }
}

.ms-deco-card--2 {
  animation-name: cardFloat2;
}
@keyframes cardFloat2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%       { transform: rotate(6deg) translateY(-10px); }
}

.ms-deco-card--3 {
  animation-name: cardFloat3;
}
@keyframes cardFloat3 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%       { transform: rotate(-4deg) translateY(-8px); }
}

/* ================================================================
   Catch Band
================================================================ */
.ms-catch-band {
  background: var(--ms-navy);
  padding: 40px 0;
  overflow: hidden;
}

.ms-catch-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3.2vw, 42px);
  color: #fff;
  font-weight: 300;
  letter-spacing: .08em;
  display: flex;
  flex-wrap: wrap;
  gap: 0 .5em;
}

.ms-catch-text span:last-child {
  color: var(--ms-gold);
}

/* ================================================================
   Concept Section  ※ svc-* クラスは共通（hitparade と同じ構造）
================================================================ */
.ms-concept {
  background: var(--ms-cream);
  padding: clamp(80px, 10vw, 130px) 0;
}

.ms-svc-badge {
  background: var(--ms-navy);
}

.ms-concept-stat {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--ms-navy);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 20px;
}

.ms-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ms-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ms-gold);
  line-height: 1;
}

.ms-stat-num small {
  font-size: .45em;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  vertical-align: bottom;
  margin-left: 2px;
}

.ms-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  margin-top: 6px;
}

.ms-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
  margin: 0 16px;
}

.ms-accent {
  color: var(--ms-navy);
}

.ms-checklist li {
  color: #374151;
}

.ms-checklist li i {
  color: var(--ms-gold);
}

.ms-line-cta {
  background: #06c755 !important;
  color: #fff !important;
}

.ms-line-cta:hover {
  background: #049a42 !important;
}

/* ================================================================
   Pride Section（3つのポイント）
================================================================ */
.ms-pride-section {
  background: var(--ms-navy);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.ms-pride-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%);
  pointer-events: none;
}

.ms-pride-head {
  margin-bottom: clamp(40px, 6vw, 70px);
}

.ms-pride-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
  margin-top: 16px;
}

.ms-pride-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ms-pride-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.ms-pride-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ms-gold), transparent);
  opacity: 0;
  transition: .4s;
}

.ms-pride-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.ms-pride-card:hover::after {
  opacity: 1;
}

.ms-pride-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(201,168,76,.15);
  line-height: 1;
  margin-bottom: 16px;
}

.ms-pride-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ms-gold);
  margin-bottom: 20px;
  transition: .4s;
}

.ms-pride-card:hover .ms-pride-icon-wrap {
  background: rgba(201,168,76,.22);
}

.ms-pride-card h3 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 14px;
}

.ms-pride-card p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.62);
}

@media (max-width: 900px) {
  .ms-pride-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .ms-pride-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Price Section
================================================================ */
.ms-price-section {
  background: var(--ms-cream);
  padding: clamp(80px, 10vw, 130px) 0;
}

.ms-price-head {
  margin-bottom: clamp(40px, 6vw, 70px);
}

.ms-price-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--ms-dark);
  font-family: 'Noto Serif JP', serif;
}

.ms-price-lead {
  font-size: 15px;
  color: #57534e;
  margin-top: 16px;
}

.ms-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ms-price-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
  transition: .4s;
}

.ms-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}

.ms-price-card-head {
  background: var(--ms-navy);
  padding: 24px 32px;
}

.ms-price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ms-gold);
  margin-bottom: 6px;
}

.ms-price-label {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
}

.ms-price-body {
  padding: 32px;
}

.ms-price-main .ms-price-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ms-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.ms-price-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-dark);
}

.ms-price-note {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.ms-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.ms-price-amount .price-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ms-navy);
  line-height: 1;
}

.ms-price-amount .price-unit {
  font-size: 14px;
  color: #888;
}

.ms-price-divider {
  height: 1px;
  background: rgba(0,0,0,.07);
}

/* その他印刷リスト */
.ms-other-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ms-other-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ms-other-item > i {
  width: 40px;
  height: 40px;
  background: #fdf6e3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ms-gold);
  flex-shrink: 0;
}

.ms-other-item strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ms-dark);
  display: block;
  margin-bottom: 4px;
}

.ms-other-item p {
  font-size: 13px;
  line-height: 1.7;
  color: #57534e;
}

.ms-price-disclaimer {
  margin-top: 32px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

@media (max-width: 768px) {
  .ms-price-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   Works Section
================================================================ */
.ms-works-section {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

/* 左テキスト ＋ 右画像 の2カラム */
.ms-works-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* ---- テキスト側 ---- */
.ms-works-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--ms-dark);
  font-family: 'Noto Serif JP', serif;
  margin-top: 10px;
  margin-bottom: 24px;
}

.ms-works-lead {
  font-size: 14px;
  line-height: 2;
  color: #57534e;
  margin-bottom: 32px;
}

.ms-works-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ms-works-tags span {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ms-amber);
  letter-spacing: .05em;
  background: #fdf6e3;
}

/* ---- 画像側 ---- */
.ms-works-img-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ms-works-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  background: #f5f5f5;
  line-height: 0;
}

.ms-works-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s ease;
}

.ms-works-img-area:hover .ms-works-img-frame img {
  transform: scale(1.02);
}

.ms-works-caption {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ms-works-caption .fa-solid {
  color: var(--ms-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .ms-works-layout {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   Who Section
================================================================ */
.ms-who-section {
  background: var(--ms-cream);
  padding: clamp(80px, 10vw, 130px) 0;
}

.ms-who-head {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.ms-who-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--ms-dark);
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
  margin-top: 10px;
}

.ms-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ms-who-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 24px;
  padding: 36px 24px;
  transition: .4s;
}

.ms-who-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(201,168,76,.1);
}

.ms-who-icon {
  width: 56px;
  height: 56px;
  background: #fdf6e3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ms-gold);
  margin-bottom: 20px;
  transition: .4s;
}

.ms-who-card:hover .ms-who-icon {
  background: #faedcc;
}

.ms-who-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.ms-who-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #57534e;
}

@media (max-width: 900px) {
  .ms-who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ms-who-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   LINE CTA Section
================================================================ */
.ms-line-section {
  background: var(--ms-navy);
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.ms-line-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}

.ms-line-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.ms-line-text h2 {
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
}

.ms-line-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.7);
  max-width: 480px;
}

.ms-line-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.ms-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ms-qr-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  overflow: hidden;
}

.ms-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ms-qr-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.6;
}

.ms-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #06c755;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  white-space: nowrap;
}

.ms-line-btn:hover {
  background: #049a42;
  color: #fff;
  transform: translateY(-2px);
}

.ms-line-btn .fa-brands { font-size: 20px; }

@media (max-width: 768px) {
  .ms-line-wrap {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
  .ms-line-text p { margin: 0 auto; }
}

/* ================================================================
   Access Section
================================================================ */
.ms-access-section {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

.ms-access-head { margin-bottom: 60px; }

.ms-access-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--ms-dark);
  font-family: 'Noto Serif JP', serif;
}

.ms-access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.ms-access-table {
  display: flex;
  flex-direction: column;
}

.ms-access-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  align-items: start;
}

.ms-access-row:first-child { padding-top: 0; }

.ms-access-row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-gold);
  white-space: nowrap;
}

.ms-access-row dd {
  font-size: 14px;
  line-height: 1.9;
  color: #57534e;
}

.ms-access-row dd a {
  color: var(--ms-navy);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.ms-access-row dd a:hover { color: var(--ms-amber); }

.ms-access-line-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #06c755;
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.ms-access-line-link:hover {
  background: #049a42;
  color: #fff !important;
}

.ms-access-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 4px 30px rgba(0,0,0,.07);
}

.ms-access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

@media (max-width: 860px) {
  .ms-access-grid { grid-template-columns: 1fr; }
  .ms-access-map { min-height: 280px; }
  .ms-access-map iframe { min-height: 280px; }
}

@media (max-width: 480px) {
  .ms-access-row { grid-template-columns: 1fr; gap: 6px; }
}

/*================================================================
  会社案内 ( company.php ) 
================================================================*/

.page-company {
  --co-dark:   #1a2a2a;
  --co-green:  #2d6a4f;
  --co-teal:   #003b3b;
  --co-mint:   #52b788;
  --co-cream:  #faf6ee;
  --co-line:   rgba(0,0,0,.07);
}

/* ================================================================
   Hero
================================================================ */
.co-hero {
  height: clamp(420px, 45vw, 580px);
}

.co-overlay {
  background: linear-gradient(
    135deg,
    rgba(0,40,30,.75) 0%,
    rgba(0,60,45,.45) 60%,
    rgba(0,0,0,.15) 100%
  );
}

/* ページ内ナビ */
.co-page-nav {
  position: absolute;
  bottom: 52px; /* breadcrumb の上 */
  left: 0;
  right: 0;
  z-index: 3;
}

.co-page-nav ul {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
}

.co-page-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  font-family: 'Montserrat', sans-serif;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: color .3s, background .3s;
  white-space: nowrap;
}

.co-page-nav li:first-child a { border-left: 1px solid rgba(255,255,255,.12); }

.co-page-nav a:hover {
  color: #95d5b2;
  background: rgba(255,255,255,.05);
}

@media (max-width: 680px) {
  .co-page-nav { display: none; }
}

/* ================================================================
   共通 セクションヘッド
================================================================ */
.co-section-head {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.co-section-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--co-dark);
  font-family: 'Noto Serif JP', serif;
  margin-top: 10px;
  line-height: 1.2;
}

.co-section-lead {
  font-size: 15px;
  line-height: 2;
  color: #57534e;
  margin-top: 20px;
  max-width: 720px;
}

/* ================================================================
   About Section
================================================================ */
.co-about-section {
  
  padding: clamp(80px, 10vw, 130px) 0;
}

.co-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

/* ---- メッセージ ---- */
.co-message {
  position: sticky;
  top: 100px;
}

.co-logo-mark {
  margin-bottom: 32px;
  max-width: 200px;
}

.co-logo-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.co-message-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--co-dark);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--co-line);
}

.co-message-text {
  font-size: 14px;
  line-height: 2;
  color: #57534e;
  margin-bottom: 18px;
}

.co-message-text strong {
  color: var(--co-green);
}

/* ---- テーブル ---- */
.co-table-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
}

.co-table {
  width: 100%;
}

.co-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid var(--co-line);
}

.co-row:last-child {
  border-bottom: none;
}

.co-row dt,
.co-row dd {
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.9;
}

.co-row dt {
  font-weight: 600;
  color: var(--co-dark);
  background: rgba(45,106,79,.04);
  border-right: 1px solid var(--co-line);
  white-space: nowrap;
}

.co-row dd {
  color: #57534e;
}

.co-row dd a {
  color: var(--co-green);
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.co-row dd a:hover {
  color: #1a3d2b;
  text-decoration: underline;
}

@media (max-width: 960px) {

  .co-about-grid {
    grid-template-columns: 1fr;
  }
  .co-message {
    position: static;
  }
}

@media (max-width: 480px) {
  .co-row {
    grid-template-columns: 1fr;
  }
  .co-row dt {
    border-right: none;
    border-bottom: 1px solid var(--co-line);
    padding-bottom: 10px;
  }
  .co-row dd {
    padding-top: 10px;
  }
}

/* ================================================================
   History Section
================================================================ */
.co-history-section {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

.co-timeline {
  position: relative;
  padding-left: 40px;
}

/* 縦線 */
.co-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--co-mint), rgba(82,183,136,.1));
}

.co-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding-bottom: clamp(36px, 5vw, 56px);
  align-items: start;
}

/* ドット */
.co-timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--co-mint);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--co-mint);
  z-index: 1;
}

.co-timeline-year {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  padding-top: 2px;
}

.year-en {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--co-green);
  line-height: 1;
}

.year-jp {
  font-size: 11px;
  color: #aaa;
  letter-spacing: .04em;
}

.co-timeline-body {
  padding-top: 4px;
}

.co-timeline-body h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--co-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.co-timeline-body p {
  font-size: 14px;
  line-height: 1.9;
  color: #57534e;
}

@media (max-width: 600px) {
  .co-timeline {
    padding-left: 28px;
  }
  .co-timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .co-timeline-year {
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
  .co-timeline-item::before {
    left: -24px;
  }
}

/* ================================================================
   Access Section
================================================================ */
.co-access-section {
  
  padding: clamp(80px, 10vw, 130px) 0;
}

.co-access-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}

.co-access-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.co-access-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  flex: 1;
}

.co-access-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--co-line);
  align-items: start;
}

.co-access-row:last-child {
  border-bottom: none;
}

.co-access-row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--co-green);
  white-space: nowrap;
}

.co-access-row dd {
  font-size: 14px;
  line-height: 1.9;
  color: #57534e;
}

.co-access-row dd a {
  color: var(--co-green);
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.co-access-row dd a:hover {
  text-decoration: underline;
}

.co-tel-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--co-green);
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  transition: .3s;
}

.co-tel-btn:hover {
  background: #1a3d2b;
  color: #fff;
  transform: translateY(-2px);
}

.co-tel-btn > i {
  font-size: 24px;
  opacity: .85;
}

.co-tel-btn small {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  opacity: .7;
  margin-bottom: 2px;
}

.co-tel-btn strong {
  display: block;
  font-size: clamp(20px, 2.5vw, 28px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
}

.co-access-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

.co-access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

@media (max-width: 860px) {
  .co-access-grid {
    grid-template-columns: 1fr;
  }
  .co-access-map {
    min-height: 300px;
  }
  .co-access-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .co-access-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ================================================================
   Contact Section
================================================================ */
.co-contact-section {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

/* 連絡手段カード */
.co-contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.co-method-card {
  background: var(--co-cream);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  transition: .35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.co-method-card:hover {
  border-color: rgba(45,106,79,.25);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transform: translateY(-4px);
}

.co-method-icon {
  width: 52px;
  height: 52px;
  background: var(--co-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.co-method-icon--line {
  background: #06c755;
}

.co-method-label {
  font-size: 16px;
  color: #333;
	font-weight: 600;
  letter-spacing: .05em;
}

.co-method-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--co-dark);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  text-align: center;
}
.co-method-value.tel{
	font-size: 19px;
}
.co-method-note {
  font-size: 11px;
  color: #aaa;
}

@media (max-width: 900px) {
  .co-contact-methods {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .co-contact-methods {
    grid-template-columns: 1fr;
  }
}

/* フォームラッパー */
.co-form-wrap {
  background: var(--co-cream);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
}

.co-form-head {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--co-line);
}

.co-form-head-label {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--co-mint);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.co-form-head-title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--co-dark);
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 16px;
}

.co-form-head-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

.co-form-head-note .fa-circle-exclamation {
  color: #e05050;
  margin-top: 2px;
  flex-shrink: 0;
}

/* フォーム本体 */
.co-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.co-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .co-form-row {
    grid-template-columns: 1fr;
  }
}

.co-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.co-form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--co-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.co-required {
  display: inline-block;
  padding: 2px 8px;
  background: #e05050;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: .06em;
}

.co-form-input,
.co-form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
  color: var(--co-dark);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
  line-height: 1.7;
}

.co-form-input::placeholder,
.co-form-textarea::placeholder {
  color: #bbb;
}

.co-form-input:focus,
.co-form-textarea:focus {
  border-color: var(--co-mint);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}

.co-form-textarea {
  resize: vertical;
  min-height: 160px;
}

/* ラジオボタン */
.co-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.co-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.co-radio input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,.2);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: .25s;
  position: relative;
}

.co-radio input[type="radio"]:checked {
  border-color: var(--co-green);
  background: var(--co-green);
}

.co-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

.co-radio span {
  font-size: 14px;
  color: #374151;
  white-space: nowrap;
}

/* チェックボックス */
.co-form-privacy {
  padding: 20px 24px;
  background: rgba(82,183,136,.06);
  border-radius: 12px;
  border: 1px solid rgba(82,183,136,.2);
}

.co-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

.co-checkbox input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,.2);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: .25s;
  position: relative;
}

.co-checkbox input[type="checkbox"]:checked {
  border-color: var(--co-green);
  background: var(--co-green);
}

.co-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  transform: rotate(40deg);
}

.co-privacy-link {
  color: var(--co-green);
  font-weight: 600;
  text-decoration: underline;
  transition: .3s;
}

.co-privacy-link:hover {
  color: #1a3d2b;
}

/* 送信ボタン */
.co-form-submit {
  display: flex;
  justify-content: center;
}

.co-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 48px;
  background: var(--co-green);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: .35s;
  letter-spacing: .06em;
}

.co-submit-btn:hover {
  background: #1a3d2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,106,79,.3);
}

.co-submit-btn .fa-arrow-right {
  font-size: 14px;
  transition: transform .3s;
}

.co-submit-btn:hover .fa-arrow-right {
  transform: translateX(4px);
}

/* ================================================================
   Privacy Policy Section
================================================================ */
.co-privacy-section {
  
  padding: clamp(80px, 10vw, 130px) 0;
}

.co-privacy-body {
  background: #fff;
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
}

.co-privacy-intro {
  font-size: 15px;
  line-height: 2;
  color: #57534e;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--co-line);
}

.co-privacy-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--co-line);
}

.co-privacy-item:last-of-type {
  border-bottom: none;
}

.co-privacy-item h3 {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  color: var(--co-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.co-privacy-item h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--co-green);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}

.co-privacy-item p {
  font-size: 14px;
  line-height: 2;
  color: #57534e;
  margin-bottom: 12px;
}

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

.co-privacy-item ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.co-privacy-item ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #57534e;
}

.co-privacy-item ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--co-mint);
  flex-shrink: 0;
  margin-top: 8px;
}

.co-privacy-contact {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--co-cream);
  border-radius: 14px;
  border-left: 4px solid var(--co-mint);
}

.co-privacy-contact-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--co-dark);
  margin-bottom: 10px;
}

.co-privacy-contact p {
  font-size: 14px;
  line-height: 2;
  color: #57534e;
  margin: 0;
}

.co-privacy-contact a {
  color: var(--co-green);
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.co-privacy-contact a:hover {
  text-decoration: underline;
}

/*================================================================
  送信完了 ( thanks.php )
================================================================*/
.thanks-hero .page-hero-inner {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-hero .page-hero-content {
  max-width: 100%;
}

.thanks-section {
  padding: clamp(80px, 10vw, 130px) 0;
}

.thanks-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  text-align: center;
}

.thanks-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--co-green);
  color: #fff;
  font-size: 30px;
}

.thanks-title {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
  color: var(--co-dark);
  margin-bottom: 24px;
}

.thanks-text {
  font-size: 15px;
  line-height: 2;
  color: #57534e;
  margin-bottom: 24px;
}

.thanks-note {
  font-size: 13px;
  line-height: 1.9;
  color: #8a8580;
  background: var(--co-cream);
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 40px;
}

.thanks-note i {
  color: var(--co-mint);
  margin-right: 6px;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 480px) {
  .thanks-actions {
    flex-direction: column;
  }
  .thanks-actions .co-submit-btn,
  .thanks-actions .co-tel-btn {
    width: 100%;
    justify-content: center;
  }
}