:root {
  --green-900: #173f30;
  --green-800: #20553f;
  --green-700: #2d6c50;
  --green-100: #e9f2ed;
  --green-050: #f5f9f7;
  --gold: #b6914a;
  --ink: #26332e;
  --muted: #66736d;
  --line: #dbe5df;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 63, 48, 0.10);
  --radius-large: 24px;
  --radius-medium: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow-container {
  max-width: 860px;
}

.centered {
  text-align: center;
}

.section-anchor {
  scroll-margin-top: 88px;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--green-050);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.section h2,
.contact-section h2 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.section-heading p,
.section p {
  margin-top: 0;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-label-light {
  color: #d9c18e;
}

.large-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(219, 229, 223, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.company-logo-placeholder {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green-700);
  border-radius: 50%;
  color: var(--green-800);
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--white);
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.company-name {
  color: var(--green-900);
  font-size: 1rem;
  font-weight: 800;
}

.company-tagline {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.global-nav a {
  position: relative;
  white-space: nowrap;
}

.global-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-800);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 10px;
  background: var(--green-100);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 630px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(245, 249, 247, 0.98) 0%, rgba(245, 249, 247, 0.93) 58%, rgba(233, 242, 237, 0.88) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero::before {
  right: -180px;
  top: -210px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(45, 108, 80, 0.08);
}

.hero::after {
  right: 120px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  background: rgba(182, 145, 74, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 1160px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2.15rem, 4.15vw, 4.15rem);
  line-height: 1.28;
  letter-spacing: 0.015em;
}

.hero-lead {
  max-width: 800px;
  margin: 28px 0 0;
  color: #46564f;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

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

.button {
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 10px 24px rgba(32, 85, 63, 0.2);
}

.button-secondary {
  border-color: var(--green-700);
  color: var(--green-800);
  background: var(--white);
}

.button-light {
  color: var(--green-900);
  background: var(--white);
}

.brand-section {
  padding: 70px 0 110px;
  background: linear-gradient(to bottom, var(--green-050), var(--white));
}

.brand-panel {
  display: grid;
  grid-template-columns:520px 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  border: 1px solid rgba(219, 229, 223, 0.9);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow);
}

.brand-visual {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 20px;
  align-items: stretch;
}

.brand-logo-card,
.mascot-card{

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

    min-height:280px;

    border-radius:18px;

    background:#fff;

}

.brand-logo-card img{

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

}

.mascot-card img{

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

}

.brand-description {
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.industry-block {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.industry-block h3 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-list li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #47564f;
  background: var(--green-050);
  font-size: 0.9rem;
}

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

.service-card {
  position: relative;
  min-height: 255px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(24, 63, 48, 0.09);
}

.service-number {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 1.28rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green-800);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.access-points {
  display: grid;
  gap: 14px;
}

.access-points div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 63, 48, 0.07);
}

.access-points strong {
  color: var(--green-800);
  font-size: 1.15rem;
}

.access-points span {
  color: var(--muted);
}

.subsidy-banner {
  display: block;
  max-width: 760px;
  margin: 34px auto 0;
}

.banner-placeholder {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed rgba(45, 108, 80, 0.35);
  border-radius: var(--radius-medium);
  color: var(--green-800);
  background: var(--green-050);
  font-size: 1.15rem;
  font-weight: 800;
}

.banner-placeholder small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
}

.iso-placeholder {
  width: 180px;
  height: 110px;
  display: grid;
  place-items: center;
  margin: 28px auto;
  border: 2px dashed rgba(45, 108, 80, 0.38);
  border-radius: 12px;
  color: var(--green-800);
  background: var(--white);
  font-weight: 800;
}

.company-card {
  max-width: 640px;
  margin: 34px auto 0;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-card h3 {
  margin: 0 0 16px;
  color: var(--green-900);
  font-size: 1.4rem;
}

.company-card address {
  font-style: normal;
}

.contact-section {
  padding: 100px 0;
  color: var(--white);
  background: var(--green-900);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

.contact-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.site-footer {
  padding: 46px 0 20px;
  color: #dce8e2;
  background: #102c22;
}

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

.footer-inner strong {
  color: var(--white);
}

.footer-inner p {
  margin: 8px 0 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
}

.copyright {
  width: min(calc(100% - 40px), var(--container));
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 1100px) {
  .global-nav {
    gap: 14px;
    font-size: 0.78rem;
  }

  .site-brand-text {
    display: none;
  }

  .brand-panel {
    grid-template-columns: 1fr;
  }

  .brand-visual {
    max-width: 650px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 80px 0;
  }

  .menu-button {
    display: block;
  }

  .site-brand-text {
    display: flex;
  }

  .global-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .global-nav a {
    padding: 12px 14px;
  }

  .global-nav a::after {
    display: none;
  }

  .nav-contact {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 760px;
  }

  .brand-panel {
    padding: 34px;
    gap: 36px;
  }

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

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .company-logo-placeholder {
    width: 48px;
    height: 48px;
    font-size: 0.7rem;
  }

  .company-name {
    font-size: 0.9rem;
  }

  .company-tagline {
    display: none;
  }

  .global-nav {
    top: 72px;
    right: 14px;
    left: 14px;
  }

  .hero-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand-section {
    padding: 40px 0 80px;
  }

  .brand-panel {
    padding: 22px;
  }

  .brand-visual {
    grid-template-columns: 1fr;
  }

  .brand-logo-placeholder,
  .mascot-placeholder {
    min-height: 210px;
  }

  .brand-copy h2 {
    font-size: 2.6rem;
  }

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

  .service-card {
    min-height: auto;
  }

  .access-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .company-card {
    padding: 28px 20px;
  }

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

/* ===== Ver1.75 adjustments ===== */
:root {
  --green-900: #123f32;
  --green-800: #205f47;
  --green-700: #2f7658;
  --green-100: #e8f0eb;
  --green-050: #f7f8f5;
  --gold: #a5792e;
  --ink: #26302c;
  --muted: #59645f;
  --line: #c9d3cd;
  --shadow: 0 14px 36px rgba(25, 52, 42, 0.10);
}

.hero {
  min-height: 540px;
  background: linear-gradient(105deg, #ffffff 0%, #ffffff 64%, #f4f6f2 100%);
  border-bottom: 5px solid var(--green-800);
}

.hero::before {
  border-color: rgba(47, 118, 88, 0.045);
}

.hero::after {
  background: rgba(165, 121, 46, 0.055);
}

.hero .container {
  width: min(calc(100% - 48px), 1280px);
}

.hero-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-kicker {
  margin-bottom: 14px;
  color: var(--green-800);
  font-size: 1rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 1240px;
  font-size: clamp(2.25rem, 3.65vw, 3.75rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.hero h1 span {
  display: inline-block;
}

.hero-lead {
  max-width: 850px;
  margin-top: 26px;
  color: #46514c;
  font-weight: 500;
}

.section-soft {
  background: #f7f7f4;
}

.brand-section {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brand-panel,
.service-card,
.access-points div,
.company-card {
  border-width: 2px;
}

.service-card {
  border-top: 5px solid var(--green-700);
}

.industry-block {
  border-top: 2px solid var(--line);
}

.industry-list li {
  border-color: #b9c8bf;
  background: #ffffff;
  color: #35443d;
  font-weight: 700;
}

.access-points div {
  display: block;
  padding: 25px 28px;
  border: 2px solid #b9c8bf;
  border-left: 7px solid var(--green-700);
  border-radius: 10px;
  box-shadow: none;
}

.access-points strong {
  display: block;
  color: var(--green-900);
  font-size: 1.15rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .hero .container {
    width: min(calc(100% - 32px), 1280px);
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.7rem);
  }

  .hero h1 br {
    display: none;
  }
}


/* ===== Ver2.0 final text refinements ===== */
.service-note {
  margin-top: 10px !important;
  color: var(--green-800) !important;
  font-weight: 700;
}

.subsidy-invite {
  margin: 10px 0 0;
  color: var(--green-800);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-intro {
  margin: 0 0 10px !important;
  color: #ffffff;
  font-size: clamp(1.65rem, 3.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.contact-intro-detail {
  margin: 0 auto 42px !important;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}


/* ===== Ver2.1 assets and finishing ===== */
.company-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo-card,
.mascot-card {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius-medium);
  background: #fff;
}

.brand-logo-card {
  border: 2px solid rgba(45, 108, 80, .24);
  background: var(--green-050);
}

.mascot-card {
  border: 2px solid rgba(182, 145, 74, .28);
  background: #fcfaf4;
}

.brand-logo-card img {
  width: min(100%, 260px);
  mix-blend-mode: multiply;
}

.mascot-card img {
  width: min(100%, 230px);
  image-rendering: auto;
}

.subsidy-banner img {
  width: 100%;
  display: block;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow);
}

.iso-panel {
  max-width: 700px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1fr;
  align-items: center;
  gap: 34px;
  margin: 30px auto 18px;
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: var(--radius-medium);
  background: #fff;
}

.iso-logo {
  width: 100%;
  max-width: 360px;
  margin: auto;
}

.iso-copy {
  text-align: left;
  color: var(--green-900);
  font-weight: 700;
}

.iso-number {
  margin-bottom: 14px !important;
  font-size: 1.12rem;
  font-weight: 800;
}

.company-details {
  margin: 24px 0 0;
  text-align: left;
}

.company-details > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.company-details dt {
  color: var(--green-800);
  font-weight: 800;
}

.company-details dd {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 600px) {
  .company-logo { width: 50px; height: 50px; }
  .brand-logo-card, .mascot-card { min-height: 200px; }
  .iso-panel { grid-template-columns: 1fr; padding: 20px; }
  .iso-copy { text-align: center; }
  .company-details > div { grid-template-columns: 82px 1fr; gap: 10px; }
}
/* ===== 夏季休暇お知らせ ===== */

.hero-inner{
    position:relative;
}

.hero-notice{

    position:absolute;

    top: 1px;

    right:20px;

    width:320px;

    padding:16px 20px;

    border:2px solid #ff4d4d;

    border-radius:12px;

    background:#fff;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.notice-title{

    display:inline-block;

    background:#ff3b30;

    color:#fff;

    padding:5px 12px;

    border-radius:999px;

    font-weight:bold;

    margin-bottom:10px;
}

.notice-body{

    color:#e60000;

    font-size:1.15rem;

    line-height:1.7;
}

.notice-body strong{

    font-size:2rem;
}

@media (max-width:900px){

.hero-notice{

    position:static;

    margin:25px auto 0;

}
}
.company-products {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom:15px;
    border-top: 1px solid #d9e2dd;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.company-products img {
    height: 95px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.company-products img:hover {
    transform: scale(1.05);
}
.link-card{
    background:#fff;
    border-radius:16px;
    padding:22px 28px;
    margin-bottom:24px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    border:1px solid #e6ece8;
}

.link-card h3{
    margin:0 0 10px;
    font-size:1.3rem;
}

.link-card p{
    margin:0;
    color:#555;
    line-height:1.8;
}
.link-card h3 a{
    color:#154734 ;
    text-decoration:none;
}

.link-card h3 a:hover{
    text-decoration:underline;
}
/* TeamViewer */

.tv-download{
    margin-top:14px;
    text-align:center;
    color:#ffffff;
    font-size:0.95rem;
}

.tv-download a{
    color:#ffd66b;
    font-weight:bold;
    text-decoration:none;
}

.tv-download a:hover{
    color:#ffffff;
    text-decoration:underline;
}