* {
  box-sizing: border-box;
}

:root {
  --main: #0477b8;
  --main-dark: #025f91;
  --accent: #14a6a0;
  --bg: #f4fbff;
  --text: #1f2d3d;
  --muted: #64748b;
  --line: #dbeafe;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(2, 95, 145, 0.12);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-main {
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--main);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 0.94rem;
}

.global-nav a {
  color: #243447;
}

.global-nav a:hover {
  color: var(--main);
}

.nav-contact {
  padding: 9px 16px;
  background: var(--main);
  color: var(--white) !important;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--main);
  margin: 6px auto;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f7ff 0%, #ffffff 55%, #dff9f7 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(20,166,160,0.2), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(4,119,184,0.16), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.eyebrow,
.section-label {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  margin: 0 0 8px;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 4rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: #334155;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--main);
  box-shadow: 0 10px 20px rgba(4,119,184,0.2);
}

.btn-primary:hover {
  background: var(--main-dark);
}

.btn-secondary {
  color: var(--main);
  background: var(--white);
  border-color: var(--line);
}

.section {
  padding: 82px 0;
}

.section:nth-child(even) {
  background: var(--bg);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1,
.article-detail h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.35;
}

.section-heading.between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.lead {
  max-width: 880px;
  font-size: 1.07rem;
  color: #334155;
}

.feature-grid,
.trouble-grid,
.article-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.feature-card,
.trouble-card,
.article-card,
.guide-block,
.notice-box,
.article-cta,
.contact-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px;
}

.feature-card h3,
.feature-card h2 {
  margin-top: 0;
  color: var(--main-dark);
}

.trouble-grid {
  grid-template-columns: repeat(5, 1fr);
}

.trouble-card {
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trouble-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2, 95, 145, 0.18);
}

.trouble-icon {
  font-size: 2.2rem;
  display: block;
}

.trouble-card h3 {
  margin: 10px 0 4px;
  color: var(--main);
}

.trouble-card p,
.article-card p,
.feature-card p {
  color: var(--muted);
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  padding: 24px;
}

.article-card h3,
.article-card h2 {
  margin: 8px 0 10px;
  line-height: 1.45;
  font-size: 1.18rem;
}

.article-card h2 {
  font-size: 1.22rem;
}

.article-card a {
  color: var(--text);
}

.article-card a:hover {
  color: var(--main);
}

.article-category {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f7fa;
  color: #007c89 !important;
  font-size: 0.78rem;
  font-weight: 800;
}

.is-draft {
  opacity: 0.78;
}

.text-link {
  font-weight: 800;
  color: var(--main);
}

.online-cta {
  background: linear-gradient(135deg, #e8f7ff, #ffffff);
}

.cta-box {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-main {
  background: #ffffff;
}

.page-hero {
  padding: 74px 0;
  background: linear-gradient(135deg, #e8f7ff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  color: #334155;
}

.trouble-list {
  display: grid;
  gap: 24px;
}

.guide-block {
  padding: 30px;
  scroll-margin-top: 100px;
}

.guide-block h2 {
  margin-top: 0;
  color: var(--main-dark);
}

.warning {
  padding: 14px 16px;
  background: #fff7ed;
  border-left: 4px solid #f97316;
  border-radius: 10px;
}

.notice-box {
  margin-top: 28px;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff, #eefcff);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
  color: var(--main-dark);
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #ffffff;
}

.article-main {
  background: #f8fbff;
  padding: 62px 0;
}

.article-detail {
  max-width: 860px;
  background: #ffffff;
  padding: 44px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.article-lead {
  font-size: 1.08rem;
  color: #334155;
  border-left: 4px solid var(--main);
  padding-left: 18px;
}

.article-detail h2 {
  margin-top: 42px;
  color: var(--main-dark);
}

.article-cta {
  margin-top: 44px;
  padding: 28px;
  background: #effaff;
}

.site-footer {
  background: #0f2d40;
  color: #ffffff;
  padding: 34px 0 18px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
}

.footer-note {
  color: #cbd5e1;
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e2e8f0;
}

.copyright {
  margin: 22px 0 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

@media (max-width: 920px) {
  .global-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 15px 24px;
    border-top: 1px solid var(--line);
  }

  .nav-contact {
    border-radius: 0;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .feature-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .trouble-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading.between,
  .cta-box,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 68px;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-sub {
    font-size: 0.68rem;
  }

  .global-nav {
    top: 68px;
  }

  .hero-content {
    padding: 52px 0;
  }

  .section {
    padding: 58px 0;
  }

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

  .article-detail,
  .contact-form {
    padding: 24px;
  }

  .cta-box {
    padding: 28px;
  }
}
.admin-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.admin-table th {
  background: #f3f7fb;
  font-weight: 700;
}

.admin-table td:nth-child(5) {
  white-space: pre-wrap;
  max-width: 320px;
}
.header-actions{
  display:flex;
  gap:8px;
  align-items:center;
  margin-left:auto;
}

.header-action{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  white-space:nowrap;
}

.header-action.line{
  background:#06c755;
}

.header-action.online{
  background:#1976d2;
}

.header-action.contact{
  background:#ff9800;
}

.global-nav .nav-line,
.global-nav a[href="online.html"],
.global-nav .nav-contact{
  display:none;
}

@media (max-width:768px){
  .header-inner{
    flex-wrap:wrap;
  }

  .header-actions{
    order:3;
    width:100%;
    margin-top:10px;
    justify-content:center;
  }

  .header-action{
    flex:1;
    text-align:center;
    font-size:13px;
    padding:10px 8px;
  }
}
.top-image-section{
  width:100%;
  background:#fff;
}

.top-main-image{
  width:100%;
  display:block;
  height:auto;
}

.guide-character{
  position:fixed;
  right:24px;
  bottom:24px;
  width:130px;
  z-index:9998;
  pointer-events:none;
  transition:transform .15s ease-out;
  animation:guideFloat 3s ease-in-out infinite;
}

.guide-character img{
  width:100%;
  display:block;
}

.guide-balloon{
  position:absolute;
  right:110px;
  bottom:85px;
  width:210px;
  background:#fff;
  color:#0b4a8b;
  border:2px solid #8cc9f0;
  border-radius:16px;
  padding:12px 14px;
  font-size:14px;
  font-weight:700;
  line-height:1.6;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}

.guide-balloon::after{
  content:"";
  position:absolute;
  right:-12px;
  bottom:22px;
  border-width:8px 0 8px 12px;
  border-style:solid;
  border-color:transparent transparent transparent #fff;
}

@keyframes guideFloat{
  0%,100%{
    margin-bottom:0;
  }
  50%{
    margin-bottom:8px;
  }
}

@media (max-width:768px){
  .guide-character{
    width:90px;
    right:12px;
    bottom:12px;
  }

  .guide-balloon{
    width:170px;
    right:75px;
    bottom:62px;
    font-size:12px;
  }
}
.trouble-hero{

    background:

        radial-gradient(circle at top right,#dff3ff 0%,transparent 40%),

        linear-gradient(90deg,#f8fcff 0%,#e7f5ff 100%);

}

.trouble-hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.trouble-hero-text{
  flex:1;
}

.trouble-hero-text h1{
  font-size:52px;
  line-height:1.2;
  margin:10px 0 18px;
  color:#111;
}

.trouble-hero-text h2{
  font-size:28px;
  color:#064b93;
  margin:0 0 18px;
}

.trouble-hero-text p{
  font-size:17px;
  line-height:1.9;
  color:#333;
}

.trouble-hero-image{
  flex:1;
  text-align:center;
}

.trouble-hero-image img{
  width:min(520px,100%);
  height:auto;
  display:inline-block;
}

@media (max-width:768px){
  .trouble-hero{
    padding:40px 0 30px;
  }

  .trouble-hero-inner{
    flex-direction:column;
    text-align:center;
    gap:20px;
  }

  .trouble-hero-text h1{
    font-size:38px;
  }

  .trouble-hero-text h2{
    font-size:22px;
  }

  .trouble-hero-image img{
    width:90%;
    max-width:360px;
  }
}
.hero-trouble-character{

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

    height:auto;

    display:block;

    margin:0 auto;

    animation:heroFloat 4s ease-in-out infinite;

    filter:drop-shadow(0 15px 25px rgba(0,0,0,.12));

}
@keyframes heroFloat{

    0%,100%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

}
.online-hero{

    background:
        radial-gradient(circle at top right,#dff3ff 0%,transparent 40%),
        linear-gradient(90deg,#f8fcff 0%,#e7f5ff 100%);

    padding:70px 0 50px;

    overflow:hidden;

}

.online-hero-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.online-hero-text{

    flex:1;

}

.online-hero-text h1{

    font-size:52px;

    margin:10px 0 18px;

    color:#111;

}

.online-hero-text h2{

    font-size:28px;

    color:#0a5aa8;

    margin-bottom:18px;

}

.online-hero-text p{

    font-size:17px;

    line-height:1.9;

}

.online-hero-image{

    flex:1;

    text-align:center;

}

.hero-online-character{

    width:100%;

    max-width:620px;

    display:block;

    margin:auto;

    animation:heroFloat 4s ease-in-out infinite;

    filter:drop-shadow(0 15px 25px rgba(0,0,0,.12));

}

@media (max-width:768px){

.online-hero{

    padding:40px 0 30px;

}

.online-hero-inner{

    flex-direction:column;

    text-align:center;

}

.online-hero-text h1{

    font-size:38px;

}

.online-hero-text h2{

    font-size:22px;

}

.hero-online-character{

    width:90%;

    max-width:360px;

}

}
/* ===========================
   お役立ち記事 ヒーロー
=========================== */

.articles-hero{

    background:
        radial-gradient(circle at top right,#dff3ff 0%,transparent 40%),
        linear-gradient(90deg,#f8fcff 0%,#e7f5ff 100%);

    padding:70px 0 50px;

    overflow:hidden;

}

.articles-hero-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.articles-hero-text{

    flex:1;

}

.articles-hero-text h1{

    font-size:52px;

    margin:10px 0 18px;

    color:#111;

}

.articles-hero-text h2{

    font-size:28px;

    color:#0a5aa8;

    margin-bottom:18px;

}

.articles-hero-text p{

    font-size:17px;

    line-height:1.9;

}

.articles-hero-image{

    flex:1;

    text-align:center;

}

.hero-articles-character{

    width:100%;

    max-width:620px;

    display:block;

    margin:auto;

    animation:heroFloat 4s ease-in-out infinite;

    filter:drop-shadow(0 15px 25px rgba(0,0,0,.12));

}

@media (max-width:768px){

.articles-hero{

    padding:40px 0 30px;

}

.articles-hero-inner{

    flex-direction:column;

    text-align:center;

}

.articles-hero-text h1{

    font-size:38px;

}

.articles-hero-text h2{

    font-size:22px;

}

.hero-articles-character{

    width:90%;

    max-width:360px;

}

}
/* ===========================
   FAQ ヒーロー
=========================== */

.faq-hero{

    background:
        radial-gradient(circle at top right,#dff3ff 0%,transparent 40%),
        linear-gradient(90deg,#f8fcff 0%,#e7f5ff 100%);

    padding:70px 0 50px;

    overflow:hidden;

}

.faq-hero-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.faq-hero-text{

    flex:1;

}

.faq-hero-text h1{

    font-size:52px;

    margin:10px 0 18px;

    color:#111;

}

.faq-hero-text h2{

    font-size:28px;

    color:#0a5aa8;

    margin-bottom:18px;

}

.faq-hero-text p{

    font-size:17px;

    line-height:1.9;

}

.faq-hero-image{

    flex:1;

    text-align:center;

}

.hero-faq-character{

    width:100%;

    max-width:620px;

    display:block;

    margin:auto;

    animation:heroFloat 4s ease-in-out infinite;

    filter:drop-shadow(0 15px 25px rgba(0,0,0,.12));

}

@media (max-width:768px){

.faq-hero{

    padding:40px 0 30px;

}

.faq-hero-inner{

    flex-direction:column;

    text-align:center;

}

.faq-hero-text h1{

    font-size:38px;

}

.faq-hero-text h2{

    font-size:22px;

}

.hero-faq-character{

    width:90%;

    max-width:360px;

}

}
.floating-consult-box{
  position:fixed;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.floating-consult-box a{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  border-radius:999px 0 0 999px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 4px 12px rgba(0,0,0,.18);
  white-space:nowrap;
}

.float-line{ background:#06c755; }
.float-contact{ background:#0a5aa8; }
.float-online{ background:#39a9ff; }

@media(max-width:768px){
  .floating-consult-box{
    right:10px;
    gap:6px;
  }

  .floating-consult-box a{
    width:46px;
    height:46px;
    padding:0;
    justify-content:center;
    border-radius:50%;
    font-size:0;
  }

  .floating-consult-box a span{
    font-size:22px;
  }
}

/* ===========================
   和光設備 相談導線・共通フッター
=========================== */
.logo-sub{
  display:block;
  font-size:12px;
  color:#0a5aa8;
  font-weight:700;
  margin-top:2px;
}

.footer-contact p{
  margin:4px 0;
  font-size:14px;
}

.footer-contact a,
.footer-links a{
  color:inherit;
}

.footer-line-qr{
  text-align:center;
  font-size:13px;
}

.footer-line-qr img{
  width:96px;
  height:96px;
  object-fit:contain;
  background:#fff;
  border-radius:8px;
  padding:6px;
}

.wako-contact-section{
  background:#f6fbff;
}

.wako-contact-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  background:#fff;
  border-radius:22px;
  padding:32px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.wako-contact-text{
  flex:1;
}

.wako-contact-text p{
  line-height:1.9;
}

.wako-contact-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.wako-line-card{
  width:180px;
  text-align:center;
  background:#f3fff7;
  border:2px solid #06c755;
  border-radius:18px;
  padding:18px;
  font-weight:700;
}

.wako-line-card img{
  width:130px;
  height:130px;
  object-fit:contain;
  background:#fff;
  padding:6px;
  border-radius:10px;
}

.floating-consult-box a:hover{
  transform:translateX(-3px);
}

@media(max-width:768px){
  .wako-contact-box{
    flex-direction:column;
    text-align:center;
    padding:24px 18px;
  }

  .wako-contact-buttons{
    flex-direction:column;
  }

  .footer-inner{
    gap:18px;
  }

  .footer-line-qr img{
    width:82px;
    height:82px;
  }
}


/* ===========================
   Web相談 写真添付
=========================== */
.photo-upload-area{
  margin:18px 0 22px;
  padding:18px;
  border:2px dashed #9bd3f7;
  border-radius:16px;
  background:#f7fcff;
}

.photo-upload-label{
  display:block;
  font-weight:700;
  margin-bottom:10px;
  color:#0a5aa8;
}

.photo-upload-area input[type="file"]{
  width:100%;
  padding:10px;
  background:#fff;
  border:1px solid #cfd8e3;
  border-radius:10px;
}

.photo-upload-help{
  margin:10px 0 0;
  color:#555;
  font-size:14px;
  line-height:1.7;
}

.photo-preview-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:12px;
  margin-top:14px;
}

.photo-preview-item{
  background:#fff;
  border-radius:12px;
  padding:10px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.photo-preview-image-wrap{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:10px;
  background:#eef6fb;
}

.photo-preview-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.photo-remove-btn{
  margin-top:8px;
  padding:7px 10px;
  border:none;
  border-radius:999px;
  background:#d93025;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.photo-preview-item p{
  margin:8px 0 0;
  font-size:12px;
  color:#555;
  word-break:break-all;
}

/* ===========================
   管理画面 写真表示
=========================== */
.admin-photo-gallery{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}

.admin-photo-button{
  border:none;
  padding:0;
  background:transparent;
  cursor:pointer;
}

.admin-photo-thumb{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
}

.photo-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.photo-modal-inner{
  position:relative;
  max-width:92vw;
  max-height:92vh;
}

.photo-modal-inner img{
  max-width:92vw;
  max-height:92vh;
  display:block;
  border-radius:12px;
  background:#fff;
}

.photo-modal-close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:24px;
  font-weight:700;
  cursor:pointer;
}

.article-image{
    margin:30px 0;
    text-align:center;
}

.article-image img{
    width:100%;
    max-width:900px;
    height:auto;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.article-image figcaption{
    margin-top:10px;
    font-size:0.95rem;
    color:#666;
    line-height:1.6;
}
/* ===== 和光設備リンク ===== */

.nav-company{
    background:#0b4c8c;
    color:#fff !important;
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
    white-space:nowrap;
}

.nav-company:hover{
    background:#083766;
    transform:translateY(-1px);
}