/* ---- Minimal design system ---- */
:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --surface:#ffffff;
  --shadow:0 8px 20px rgba(17,24,39,.06);
  --brand:#b3c1f0;
  --brand-700:#b3c1f0;
  --brand-50:#ecfdf5;
  --container: 1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body {
  padding-top: 64px;
  font-family:"Noto Sans JP",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;background:var(--bg);
  color:var(--text);
  line-height:1.65}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.header {
  position:fixed;
  top:0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter:saturate(180%) blur(6px);
  background:rgba(255,255,255,.9);
  border-bottom:1px solid var(--border)
}
.header__inner {
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between
}
.logo {
  display:flex;
  align-items:center;
  gap:10px
}
.logo-badge {
  width:36px;
  height:36px;
  border-radius:8px;
  background:var(--brand);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:700
}
.logo-badge-img {
  width: 120px;
  height: auto;
  display: block;
}
.nav{display:none;gap:32px}
@media(min-width:768px){.nav{display:flex}}
.nav a{font-size:14px}
.nav a:hover{color:var(--brand)}
.btn{display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 16px;border-radius:8px;border:1px solid transparent;font-size:14px;font-weight:600;transition:.2s}
.btn--primary{background:var(--brand);color:#fff}
.btn--primary:hover{background:var(--brand-700)}
.btn--outline{border-color:var(--brand);color:var(--brand)}
.btn--outline:hover{background:#f0fdf4}
.section{padding:50px 0}
.section--muted{background:#f9fafb}
.section__title {
  margin:0 0 8px;
  font-size:clamp(24px,3vw,24px);
  line-height:1.2;
  color:var(--brand-700);
  font-weight:500
}

.section__subtitle{
  font: size 13px;
}

/*.section__subtitle{margin:0 auto 40px;color:var(--muted);max-width:720px}*/
.hero{
  padding:96px 0;
  background:radial-gradient(1000px 420px at 80% -10%,var(--brand-50),transparent),radial-gradient(900px 360px at 0% 110%,#f7fdf9,transparent)
}
.hero h1{margin:0 0 16px;font-size:clamp(32px,5vw,56px);line-height:1.15;color:var(--brand-700);font-weight:900}
.hero p{color:#4b5563;/*max-width:720px;*/margin:0 auto}
.hero__actions{margin-top:24px;display:flex;flex-direction:column;gap:12px;align-items:center;justify-content:center}
@media(min-width:640px){.hero__actions{flex-direction:row}}
.grid{display:grid;gap:24px}
@media(min-width:960px){.grid--2{grid-template-columns:3fr 2fr}.grid--5{grid-template-columns:2fr 3fr}}
.card{background:var(--surface);border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow);padding:24px; margin-bottom: 2em;}
.card h3{margin:0 0 8px;font-size:20px;color:var(--brand-700)}
.list{list-style:none;padding:0;margin:0 0 2em;}
.list li{padding:10px 0;border-bottom:1px solid var(--border)}
.input,.textarea{width:100%;border:1px solid #d1d5db;border-radius:8px;padding:12px;font-size:14px;outline:none;transition:.2s; margin-bottom: 2em;}
.input:focus,.textarea:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(22,163,74,.15)}
.textarea{min-height:140px;resize:vertical}
.footer {
  background: #d5dbef;
  color: #333;
  border-top: 1px solid var(--border);
  padding: 50px 0;
}

.footer__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---  --- */
@media (min-width: 769px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* -------------------------------

-------------------------------- */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.footer-logo {
  width: 125px;
  filter: brightness(0) invert(20%);
}

.footer-copy {
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* -------------------------------

-------------------------------- */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

/* NAV */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-nav a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .25s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* legal */
.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #333;
  font-size: 13px;
  text-decoration: none;
  transition: opacity .25s;
}

/* =============================
   SP
   ============================= */
@media (max-width: 768px) {

  .footer-left,
  .footer-right {
    text-align: center;
    align-items: center;
  }

  .footer-nav,
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}
.articles{display:grid;gap:16px}
.article{background:#fff;border:1px solid var(--border);border-radius:16px;padding:20px}
.article time{color:#6b7280;font-size:12px}
.article h3{margin:4px 0;color:#111827;font-size:16px}
.article p{margin:6px 0 0;color:#6b7280;font-size:14px}
.kv-list{display:grid;gap:12px}
@media(min-width:600px){.kv-list{grid-template-columns:1fr 1fr}}
.kv-item{border:1px solid var(--border);border-radius:12px;padding:14px}
.kv-item dt{color:#6b7280;font-size:12px;margin:0}
.kv-item dd{margin:6px 0 0;font-weight:600}
.map-wrap iframe {
  width:100%; 
  height:300px; 
  border:none;
  }
@media(max-width:640px){.map-wrap iframe {height:50vh;}}

/* === Loading Animation === */
#loading {
  position: fixed;
  inset: 0;
  background-color: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.loading-logo img {
  width: 140px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 2.5s ease-in-out forwards;
}

@keyframes fadeUp {
   0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#content {
  opacity: 0;
  transition: opacity 0.8s ease;
}
#content.show {
  opacity: 1;
}
/* === hamburger menu === */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--brand-700);
  border-radius: 2px;
  transition: 0.3s;
}

/* menu open */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* navi */
.nav-menu {
  display: flex;
  gap: 32px; 
  align-items: center;
}

.nav-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
}

.nav-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
}

.nav-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: #777;
  margin-top: -4px;
}

.nav-item:hover .nav-en,
.nav-item:hover .nav-jp {
  color: #b3c1f0;
}

/* sp size non */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 64px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
    height: calc(100vh - 64px);
    padding: 40px 20px;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav-menu.show {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }


  .header-contact {
    display: none;
  }
}


@media (max-width: 768px) {
  .header__inner {
    justify-content: center;
    position: relative;
  }


  .menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }


  .logo-badge-img {
    width: 100px;
  }
}

.nav-menu a {
  position: relative;
  padding: 6px 0;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}


.nav-menu a:hover {
  color: var(--brand-700);
}


.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-700);
  transition: width 0.3s ease;
}


.nav-menu a:hover::after {
  width: 100%;
}

/* === Main Visual === */
.main-visual {
  position: relative;
  width: 100%;
  height: 80vh; 
  min-height: 600px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .main-visual {
    height: 70vh;
    min-height: 480px;
  }
}

.mv-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/main_visual2.jpg"); 
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  animation: fadeZoomIn 3s ease-out forwards;
}
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.mv-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.15);
}
@keyframes contentFade {
  to {
    opacity: 1;
  }
}
.mv-title {
  font-family: 'Zen Old Mincho', 'Noto Serif JP', serif;
  font-weight: 200;
  font-size: clamp(24px, 4.8vw, 35px);
  letter-spacing: 0.15em;
  margin-top: 30px;
  margin-bottom: -70px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.8s ease-out 0.5s forwards;
}

/* === main-visual__handwriting === */
.main-visual__handwriting {
  display: block;
  margin: 50px auto 0;
  width: 260px; 
  max-width: 70%;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* main-visual__handwriting_sp */
@media (max-width: 768px) {
  .main-visual__handwriting {
    width: 200px;
    margin-top: -20px;
  }
}


.scroll-indicator {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 1 !important;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  z-index: 10;
  animation: contentFade 2s ease-out 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: #ffffff !important;
  margin: 8px auto 0;
  animation: scrollMove 1.6s infinite;
  opacity: 1 !important;
}

@keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .mv-content {
    padding: 0 16px;
  }
  .mv-title {
    margin-bottom: 10px;
    white-space: nowrap;
    font-size: 30px;
    letter-spacing: 0.08em;
  }
  .mv-subtitle {
    font-size: 14px;
  }
  .scroll-line {
    height: 30px;
  }
}

.header-contact {
  display: inline-block;
  padding: 8px 22px;
  border: 1.5px solid var(--brand-700);
  border-radius: 9999px;
  color: var(--brand-700);
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.header-contact:hover {
  background: var(--brand-700);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}


@media (max-width: 768px) {
  .header-contact {
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 8px 0;
    background: none;
    color: var(--text);
  }
  .header-contact:hover {
    background: none;
    color: var(--brand-700);
  }
}

.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}


.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none !important;
}


@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
    margin-top: 24px;
    text-align: center;
  }


  .nav-menu .header-contact.mobile-only {
    width: 100%;
    border: 1.5px solid var(--brand-700);
    border-radius: 9999px;
    color: var(--brand-700);
    background: transparent;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
  }

  .nav-menu .header-contact.mobile-only:hover {
    background: var(--brand-700);
    color: #fff;
  }
}

.intro-section {
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 100px 20px;
   margin-top: 0;
  padding-top: 40px;

}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.intro-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-text {
  text-align: center;
  margin-top: 20px;
}

.intro-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 23px;
  color: #333;  
  margin: 0; 
  line-height: 1.4;
}
/* (Noto Sans JP) */
.intro-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #555;
  margin: 0; 
  line-height: 1.6;
  margin-top: 2px;
}

/* smartphon */
@media (max-width: 768px) {
  .intro-lead {
    font-size: 20.5px;
  }
  .intro-sub {
    font-size: 13.5px;
  }
}

.intro-btn {
  border: 1.5px solid var(--brand-700);
  border-radius: 9999px;
  color: var(--brand-700);
  background: transparent;
  font-weight: 500;
  margin-top: 36px;
  padding: 10px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.intro-btn:hover {
  background: var(--brand-700);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .intro-section {
    padding: 60px 16px;
    padding-top: 20px;
  }
  .intro-text {
    font-size: 15px;
    line-height: 1.7;
  }
}


.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #b3c1f0; 
  border-radius: 9999px;
  color: #b3c1f0;
  background: transparent;
  font-weight: 500;
  padding: 10px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.intro-btn:hover {
  background: #b3c1f0;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro-btn .chevron-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.intro-btn:hover .chevron-icon {
  transform: translateX(3px);
}

/* === NEW PRODUCTS title === */
.products-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  text-align: left;
}

.products-heading .section__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  color: #333;
  text-align: left;
}

.products-heading .section__subtitle {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.05em;
  border-left: 1px solid #ccc;
  padding-left: 14px;
  text-align: left;
}

/* smartphone */
@media (max-width: 768px) {
  .products-heading {
    flex-direction: column;
    gap: 6px;
  }

  .products-heading .section__title {
    font-size: 27px;
    line-height: 0.2;
  }

  .products-heading .section__subtitle {
    border-left: none;
    padding-left: 0;
    font-size: 13px;
    color: #999;
  }
}

/* === NEW PRODUCTS section === */
.new-products {
  background: #fff;
  padding: 100px 20px 80px;
  text-align: center;
}

/* === itemlist === */
.products-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.product-item {
  text-decoration: none;
  color: #333;
  width: 250px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-name {
  font-size: 15px;
  margin-top: 14px;
  letter-spacing: 0.05em;
  color: #333;
}

/* smartphone */
@media (max-width: 768px) {
  .products-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .product-item {
    width: 80%;
  }
}


/* === TOP：NEWS_list === */
.news-simple-list {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 700px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.news-simple-list li {
  border-bottom: 1px solid #eee;
}

.news-simple-list li:last-child {
  border-bottom: none;
}

.news-simple-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 8px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}

.news-simple-list a:hover {
  background: #f4f6fb;
  color: var(--brand-700);
}

.news-simple-list time {
  font-size: 13px;
  color: #999;
  min-width: 90px;
}

@media (max-width: 768px) {
  .news-simple-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 6px;
  }

  .news-simple-list time {
    font-size: 12px;
    color: #999;
    min-width: auto;
    line-height: 1.4;
  }

  .news-simple-list a {
    font-size: 14px;
  }
}


.news-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

/* === NEWS_title === */
.news-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  text-align: left;
}

.news-heading .section__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  color: #333;
  text-align: left;
}

.news-heading .section__subtitle {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.05em;
  border-left: 1px solid #ccc;
  padding-left: 14px;
  text-align: left;
}

/* smartphone(768px)*/

@media (max-width: 768px) {
  .news-heading {
    flex-direction: column;
    gap: 6px;
  }

  .news-heading .section__title {
    font-size: 27px;
    line-height: 0.2;
  }

  .news-heading .section__subtitle {
    border-left: none; 
    padding-left: 0;
    font-size: 13px;
    color: #999;
  }
}

/* === news title icon === */
.news-heading .section__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.news-heading .section-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: inline-block;
}


@media (max-width: 768px) {
  .news-heading .section-icon {
    width: 24px;
    height: 24px;
  }
}

/* === NEWS Page top(hero-area) === */

.news-hero {
  background: #f8f9fb;
  text-align: center;
  padding: 100px 20px 20px;
  position: relative;
}

.news-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.news-hero__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.9;
}

.news-hero__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #999;
  text-transform: uppercase;
  margin: 0;
}

.news-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4vw, 26px);
  font-weight:400;
  color: #333;
  margin: 0;
  letter-spacing: 0.05em;
}

/* === News-Page === */
.news-page {
  background: #fff;
  padding: 20px 20px 100px;
}

.news-page .container {
  max-width: 900px; 
  margin: 0 auto;  
}

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

.news-page .news-item {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 24px;
}

.news-page .news-item:last-child {
  border-bottom: none;
}

.news-page .news-item time {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
}

.news-page .news-item h3 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-page .news-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* sp */
@media (max-width: 768px) {
  .news-hero {
    padding: 80px 16px 60px;
  }

  .news-hero__icon {
    width: 48px;
    height: 48px;
  }

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

  .news-hero__title {
    font-size: 26px;
  }
}

/* === Company Page === */

.company-list {
  display: grid;
  gap: 0;
}

.company-list > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #ddd; 
}

.company-list > div:first-child {
  border-top: 1px solid #ddd; 
}

.company-list dt {
  width: 30%;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.company-list dd {
  width: 70%;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
 
  .company-list > div {
    flex-direction: column;
    gap: 6px;
  }

  .company-list dt,
  .company-list dd {
    width: 100%;
  }

  .company-list dt {
    font-size: 13px;
    color: #777;
  }

  .company-list dd {
    font-size: 14px;
  }
}
/* === facilities === */
.company-offices {
  background: #f9fafc;
  padding: 80px 20px;
  margin-top: 00px;
}

.company-offices .container {
  max-width: 900px; 
  margin: 0 auto; 
}

.company-offices .section-title {
  font-family: 'Zen Old Mincho', 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
  color: #333;
  position: relative;
}

.company-offices .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1.5px;
  background: #b3c1f0;
  margin: 12px auto 0;
}

.office {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 32px 24px;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.office h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.office p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.map-wrapper iframe {
  border-radius: 8px;
  width: 100%;
  height: 280px;
}

@media (max-width: 768px) {
  .company-offices {
    padding: 60px 16px;
  }
  .company-offices .container {
    max-width: 100%;
  }
  .office {
    padding: 24px 18px;
  }
  .office h3 {
    font-size: 18px;
  }
  .office p {
    font-size: 14px;
  }
}

/* === page_hero === */
.page-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 200px;
  overflow: hidden;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
  transform: scale(1.05);
  animation: fadeZoomIn 3s ease-out forwards;
}

.page-hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.page-hero__handwriting {
  height: 130px;
  max-width: 70%;
  opacity: 0.95;
  margin: 00 auto 4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.page-overview {
  position: relative;
  margin-top: -80px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 60px 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
}

/* animation */
@keyframes fadeZoomIn {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.05); }
}

/* smartphone */
@media (max-width: 768px) {
  .page-hero {
    height: 45vh;
    min-height: 280px;
  }

  .page-hero__title {
    top: 35%;
  }
  
  .page-overview {
   margin-top: -100px;
   padding: 40px 16px;
  }

}

/* === contact action === */
.contact-section {
  background: #fff;
  padding: 0px 20px;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 60px;
}

/* === Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group .required {
  color: #fff;
  background: #b3c1f0;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #b3c1f0;
  box-shadow: 0 0 0 3px rgba(179, 193, 240, 0.25);
  outline: none;
}

/* === checkbox === */
.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; 
  text-align: center;
}

.privacy-check label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: #b3c1f0;
  cursor: pointer;
}

.privacy-check a {
  color: #b3c1f0;
  text-decoration: underline;
}

/* === form button === */
.form-submit-btn {
  display: inline-block;
  background: #b3c1f0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 60px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(179, 193, 240, 0.3);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
}

.form-submit-btn:hover {
  background: #9daee8;
  box-shadow: 0 6px 16px rgba(179, 193, 240, 0.4);
  transform: translateY(-2px);
}

.form-submit-btn:active {
  background: #8b9cdc;
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(179, 193, 240, 0.3);
}

.form-btn {
  text-align: center;
  margin-top: 40px;
}

/* === smartphone === */
@media (max-width: 768px) {
  .form-submit-btn {
    font-size: 15px;
    padding: 12px 50px;
    border-radius: 24px;
  }
}

/* === smartphone === */
@media (max-width: 768px) {
  .contact-section {
    padding: 0px 10px;
  }

  .contact-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
}

/* === Message sent successfully === */
.thanks-section {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.thanks-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-message {
  font-size: 17px;
  color: #333;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-top: 0px;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease;
}

.thanks-section .btn.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b3c1f0;
  color: #fff;
  font-size: 16px;
  padding: 0px 50px;
  height: 50px;
  border-radius: 30px;
  border: 1.5px solid #b3c1f0;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
}

.thanks-section .btn.btn--primary:hover {
  background: #fff;
  color: #b3c1f0;
}

/* fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === smartphone === */
@media (max-width: 768px) {
  .thanks-section {
    padding: 60px 16px;
  }

  .thanks-section .container {
    margin-top: -150px
  }

  .thanks-message {
    font-size: 15px;
    margin-top: 0px;
    margin-bottom: 36px;
    line-height: 1.8;
  }

  .thanks-section .btn.btn--primary { 
    
    font-size: 15px;
    height: 46px;
    padding: 0px 36px;
  }
}

/* === Products-List page === */
.page-overview .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.page-overview .product-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-overview .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.page-overview .product-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.page-overview .product-name {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}
/* === smartphone === */
@media (max-width: 768px) {

  .page-overview .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .page-overview .product-name {
    font-size: 15px;
  }
}

/* === detail page === */
.product-detail {
  background: #fff;
  padding: 100px 20px;
}

.product-detail__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

/* === gallery === */
.product-gallery {
  flex: 1;
}

.product-gallery__main {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}

.product-gallery__main img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.product-gallery__thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-gallery__thumbs img:hover {
  border-color: #b3c1f0;
}

.product-gallery__thumbs img.active {
  border-color: #b3c1f0;
  box-shadow: 0 0 6px rgba(179, 193, 240, 0.5);
}

/* === detail === */
.product-detail__info {
  flex: 1;
}

.product-logo {
  width: 160px;
  margin-bottom: 16px;
}

.product-title {
  font-family: "Noto Sans JP",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size: 26px;
  margin-bottom: -5px;
  color: #333;
}

/* === catch copy === */
.product-catch {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
  margin-bottom: 26px;
  letter-spacing: 0.03em;
}

/* product-tag */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-tag {
  display: inline-block;
  font-size: 13px;
  color: #b3c1f0;
  border: 1.5px solid #b3c1f0;
  background-color: transparent;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

/* product-subtitle */
.product-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* product-description */
.product-description {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 36px;
}

/* product-specs */
.product-specs {

  font-size: 14px;
}

.product-specs div {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 10px 10;
}

.product-specs dd {
  width: 70%;
  margin: 0;
  color: #555;
}


/* smartphon */
@media (max-width: 768px) {
  .product-detail__inner {
    flex-direction: column;
    gap: 32px;
  }

  .product-logo {
      width: 140px;
    }

  .product-title {
    font-size: 22px;
  }

.product-subtitle {
    font-size: 16px;
  }

  .product-description {
    font-size: 13px;
  }

  .product-specs div {
    flex-direction: column;
  }

  .product-specs dt {
    width: 100%;
    margin-bottom: 4px;
  }

  .product-specs dd {
    width: 100%;
  }

  .product-gallery__thumbs img {
    width: 70px;
    height: 70px;
  }
}

/* === product-nav === */
.product-nav {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.product-nav .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product-nav .nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #b3c1f0;
  border-radius: 30px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(179, 193, 240, 0.2);
}

.product-nav .nav-btn:hover {
  background: #b3c1f0;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(179, 193, 240, 0.4);
}

.product-nav .arrow {
  font-size: 18px;
  margin: 0 6px;
}

/* === ingredients === */
.product-ingredients {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.product-ingredients h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: #333;
  margin-top: 5px;
}

.product-ingredients p {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* button */
.product-nav .prev {
  justify-content: flex-start;
}

.product-nav .next {
  justify-content: flex-end;
}

/* === smartphon === */
@media (max-width: 768px) {
  .product-nav .container {
    flex-direction: column;
    gap: 14px;
  }

  .product-nav .nav-btn {
    width: 100%;
    font-size: 14px;
    padding: 14px 0;
  }
}

/* === smartphon === */
@media (max-width: 768px) {
  .product-detail {
    padding: 80px 0px;
  }

  .product-detail .container {
    max-width: 640px; 
    margin: 0 auto;
  }

  .product-detail__info {
    width: 100%;
  }
}

/* === Main Visual Curve Adjustment === */
.main-visual__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.main-visual__curve svg {
  position: relative;
  display: block;
  width: 100%;
  height: 150px;
}

.main-visual__curve path {
  fill: #fff; 
  filter: drop-shadow(0 -2px 6px rgba(0, 0, 0, 0.08));
}

/* smartphon */
@media (max-width: 768px) {
  .main-visual__curve svg {
    height: 90px;
  }
}

@media (min-width: 769px) {
  .products-heading,
  .news-heading {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px; 
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
    text-align: left;
  }
}

/* ===============================
   Product page: Gallery Arrows
   =============================== */

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0);
  border: 1.6px solid #b3c1f0;
  border-radius: 50%;
  color: #b3c1f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all .3s ease;
  z-index: 10;
}

.gallery-arrow:hover {
  background: #b3c1f000;
  color: #b3c1f0;
  box-shadow: 0 4px 10px rgba(179,193,240,0.4);
}

.gallery-arrow.prev {
  left: 10px;
}

.gallery-arrow.next {
  right: 10px;
}

.gallery-arrow-icon {
  width: 22px;
  height: 22px;
}

/* ================================
   About Page
================================ */

/* title */
.about-title-sub {
  font-family: 'Zen Old Mincho','Noto Serif JP',serif;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
  color: #333;
}

/* anchor */
.about-anchor {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-bottom: 50px;
}

.anchor-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.anchor-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #b3c1f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

/* down arrow */
.arrow {
  width: 2px;
  height: 15px;
  background-color: #b3c1f0;
  position: relative;
  transition: all 0.3s ease;
}

.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #b3c1f0;
  border-bottom: 1px solid #b3c1f0;
  transform: translateX(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

/* label */
.anchor-label {
  font-size: 13px;
  color: #333;
  letter-spacing: 0.08em;
  font-family: 'Noto Sans JP', sans-serif;
}

/* hover motion */
.anchor-btn:hover .anchor-circle {
  background: #b3c1f0;
  border-color: #b3c1f0;
  transform: translateY(-2px);
}

.anchor-btn:hover .arrow {
  background-color: #fff;
}

.anchor-btn:hover .arrow::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.anchor-btn:hover .anchor-label {
  color: #b3c1f0;
}

#vision,
#mission,
#value {
  scroll-margin-top: 120px;
}

/* line */
.about-divider {
  border: none;
  border-top: 1px solid #cfcfcf;
  margin: 40px 0 60px;
}

.about-flow {
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 120px;
}

/* section bloc */
.about-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: #f7f7f9;
  padding: 120px 32px;
  margin-bottom: 00px;
  align-items: center;
  position: relative;
}

.about-title-img {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.about-title-img img {
  width: 150px;
  height: auto;
  opacity: 0.9;
}

.about-img img {
  width: 300px;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.about-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  color: #333;
  margin: 0 0 4px;
  font-weight: 350;
}

.about-sub {
  font-size: 13px;
  color: #777;
  margin-top: -5px;
}

.about-body {
  font-size: 14px;
  color: #555;
  margin-top:50px;
  line-height: 1.9;
}

.about-text {
  max-width: 520px;
}

/* SP */
@media (max-width: 768px) {
  .about-block {
    flex-direction: column;
    text-align: center;
    padding: 150px 20px;
  }

  .about-img img {
    width: 300px;
  }

  .about-heading {
    font-size: 18px;
  }

  .about-body {
    font-size: 13px;
    text-align: left;
  }

 .arrow {
    height: 14px;
  }
  .arrow::after {
    border-right: 1px solid #b3c1f0;
    border-bottom: 1px solid #b3c1f0;
    width: 6px;
    height: 6px;
  }

  .about-anchor {
    gap: 26px;
  }

  .anchor-circle {
    width: 60px;
    height: 60px;
  }

  .anchor-label {
    font-size: 12px;
  }

}

/* ========================
   About Page — Section Colors
======================== */

/* Vision */
#vision.about-block {
  background: #e4e4e4;
}

/* Mission */
#mission.about-block {
  background: #ffffff;
}

/* Value */
#value.about-block {
  background: #e1eaf5;
}

/* =============================
   About Page — Final Message
============================= */

.about-final-message {
  max-width: 900px;
  margin: 200px auto 200px;
  text-align: center;
  padding: 0 20px;
}

.final-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 100px;
}

.final-illustration img {
  width: 300px;
  max-width: 90%;
  margin: 0 auto;
  opacity: 0.95;
}

/* SP */
@media (max-width: 768px) {
  .about-final-message {
    margin: 60px auto 80px;
  }
  .final-text {
    font-size: 15px;
    line-height: 1.8;
  }
  .final-illustration img {
    width: 260px;
  }
}

/* ============================
   Scroll Fade-in Animation
============================ */

/*  */
.fade-up,
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2.0s ease, transform 2.0s ease;
}

/* */
.fade-show {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

/* */
.handwriting-anim path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;

  animation: handwritingDraw 1.2s ease forwards;
}

/* ------  ------ */

/* path1 */
.handwriting-anim path:nth-of-type(1) {
  animation-delay: 2.0s;
}

/* path2 */
.handwriting-anim path:nth-of-type(2) {
  animation-delay: 2.8s;
}

/* path3 */
.handwriting-anim path:nth-of-type(3) {
  animation-delay: 3.0s;
}

/* path4 */
.handwriting-anim path:nth-of-type(4) {
  animation-delay: 3.2s;
}

/* path5 */
.handwriting-anim path:nth-of-type(5) {
  animation-delay: 3.3s;
}

/* path6 */
.handwriting-anim path:nth-of-type(6) {
  animation-delay: 3.4s;
}

/* path7 */
.handwriting-anim path:nth-of-type(7) {
  animation-delay: 3.7s;
}

@keyframes handwritingDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Spec Switch (tabs + specs) */
.spec-switch{
  margin-top: 18px;
}

.spec-tabs{
  display:flex;
  gap:10px;
  margin: 0 0 10px;
  flex-wrap: wrap;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(179,193,240,0.45);
}

.spec-tab{
  appearance:none;
  border: 1px solid #b3c1f0;
  background: transparent;
  color: #b3c1f0;
  border-radius: 2px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .25s ease;
  border-bottom: 3px solid transparent;
}

.spec-tab:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(179,193,240,0.18);
}

.spec-tab.is-active{
  background: rgba(179,193,240,0.14);
  color: #6f82d8;
  border-bottom-color: #b3c1f0;
}

/* smartphone */
@media (max-width: 768px){
  .spec-tabs{
    gap:8px;
  }
  .spec-tab{
    padding: 10px 14px;
  }
}

/* ===============================
   LP banner (product detail)
=============================== */
.lp-banner{
  display:block;
  margin-top: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(17,24,39,.06);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.lp-banner img{
  width: 100%;
  height: auto;
  display: block;
}

.lp-banner:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17,24,39,.10);
  opacity: .95;
}

/* SP */
@media (max-width: 768px){
  .lp-banner{ margin-top: 16px; }
}

.news-empty {
  display: block;
  padding: 16px 8px;
  color: #777;
  font-size: 14px;
}

.news-item {
  scroll-margin-top: 100px;
}

/* ===============================
   TOP：Official SNS
=============================== */
.official-sns {
  background: #fff;
  padding: 80px 20px 90px;
  text-align: center;
}

.sns-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  text-align: left;
}

.sns-heading .section__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  color: #333;
  text-align: left;
}

.sns-heading .section__subtitle {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.05em;
  border-left: 1px solid #ccc;
  padding-left: 14px;
  text-align: left;
}

.sns-lead {
  max-width: 700px;
  margin: 5px auto 28px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  text-align: left;
}

.sns-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.sns-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;

  transition: transform .25s ease, opacity .25s ease;
}


.sns-card:hover {
  transform: translateY(-4px);
  opacity: .85;
  border-color: transparent;
  box-shadow: none;
}

.sns-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;

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

  background: #fff;
  border: 2px solid #e7e7e7;

  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.sns-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns-text {
  text-align: center;
}

.sns-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.sns-account {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

/* PC時：見出し幅をNEWS/Productsと揃える */
@media (min-width: 769px) {
  .sns-heading {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

/* SP */
@media (max-width: 768px) {
  .official-sns {
    padding: 60px 16px 70px;
  }

  .sns-heading {
    flex-direction: column;
    gap: 6px;
  }

  .sns-heading .section__title {
    font-size: 27px;
    line-height: 0.2;
  }

  .sns-heading .section__subtitle {
    border-left: none;
    padding-left: 0;
    font-size: 13px;
    color: #999;
  }

  .sns-lead {
    margin-top: 30px;
    font-size: 13.5px;
  }

  .sns-card {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 22px;
  }
}