@charset "UTF-8";

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  line-height: 1;
  text-size-adjust: 100%;
  width: 100%;
  text-decoration: none;
  padding: 0;
  position: relative;
  overflow-wrap: break-word;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo,
    sans-serif;
}

* {
  float: none;
  position: static;
}

img {
  vertical-align: top;
  max-width: 100%;
}

li {
  list-style: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/*ここまでデフォルト。destyle.cssとともに使う。line-heightは要検討*/

body {
  font-weight: 400;
  font-style: normal;
}

p {
  font-size: clamp(14px, calc(13px + 0.25vw), 16.5px);
  line-height: 1.5;

  color: #000;
  font-family: "Noto Sans JP";
  text-align: left;
}

/* まずはスマホ用から書くことにする */

h2 {
  line-height: 1.6;
  color: #000;
  font-family: Raleway;
  font-size: clamp(
    36px,
    calc(33.62962962962963px + 0.7407407407407408vw),
    44px
  );
  font-style: normal;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 1.4px;
}

h2 .green {
  color: #9fb11f;
}

.h2wrapper {
  text-align: center;
}

.h2wrapper p {
  color: #9fb11f;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
  margin-bottom: 4px;
  text-align: center;
  position: relative;
}

.h2wrapper p::after {
  content: "";
  display: block;
  width: 2.4em;
  height: 0.8px;
  background-color: #9fb11f;
  margin-top: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

header {
  font-family: Raleway, sans-serif;
  height: 100px;
  z-index: 999;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;

  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 1)
  );
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
}

#site-header.hide {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: 98%;
}

.logo img {
  width: 190px;
}

.menu-toggle {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.global-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: rgb(159, 177, 31, 0.96);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 40px 20px;
  text-align: center;
}

.global-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 32px auto;
  width: fit-content;
  font-weight: 700;
}

.global-nav li {
  margin-bottom: 24px;
}

.global-nav a .span1 {
  color: white;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.7;

  background: linear-gradient(currentColor 0 0) bottom / var(--d, 0) 2px
    no-repeat;
  transition: 0.4s;
}

.global-nav a .span1:hover {
  --d: 100%;
}

.global-nav a .span2 {
  color: #d8e57f;
  text-align: center;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.global-nav.open {
  right: 0;
}

.menu-toggle {
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #9fb11f;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

.menu-toggle.open span {
  background: #fff;
}

/* 変形時（openクラス付き） */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.contact-btn {
  display: flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 45px;
  background: #7e8d0d;
  box-shadow: 0px 3px 0px 0px #373f03;
  width: fit-content;
  margin: auto;
  color: white;
  font-size: 24px;
}

.contact-btn svg {
  fill: white;
}

.mv {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin-top: -90px;
}

.mv img {
  height: 100%;
  object-fit: cover;
  object-position: 72% 4vh;
  scale: 1.4;
}

.mv h2 {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  white-space: nowrap;
  line-height: 1.2;
}

.mv svg {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowmove 1.8s ease-in-out infinite;
  z-index: 999;
  fill: #9fb11f;
}

.mv svg path {
  fill: #9fb11f;
}

.mv svg line {
  stroke: #9fb11f;
}

@keyframes arrowmove {
  0% {
    bottom: 10%;
  }
  50% {
    bottom: 13%;
  }
  00% {
    bottom: 10%;
  }
}

.section {
  padding: 80px 40px 0px;
  max-width: 1320px;
  margin: 0 auto;
}

.section-img {
  display: block;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  margin-left: calc(-50vw + 50%);
  object-fit: cover;
}

.about-text {
  margin: 24px auto 0;
}

.strength-section {
  padding: 80px 20px 0px;
}

.strength-card {
  background: #fff;
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 12px;
}

.strength-card img {
  width: 100%;
  aspect-ratio: 255/184;
  margin: auto;
  display: block;
  object-fit: cover;
}

.strength-card-text {
  padding: 14px 12px 8px;
}

.strength-card-text h3 {
  font-weight: bold;
  color: #000;
  margin-bottom: 14px;
  line-height: 1.3;
  text-align: center;
  font-size: 19px;
  font-style: normal;
}

.lixil-section {
  background-color: #c7d372;
  text-align: center;
  margin: 0 16px;
  padding: 32px 40px;
}

.lixil-card {
  max-width: 400px;
  margin: 0 auto;
}

.lixil-card img {
  width: 48%;
  max-width: 220px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.lixil-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
}

.lixil-card p {
  margin: 8px 0;
}

.service-section {
  padding: 60px 20px 32px;
  margin: 0 auto;
}

.service-item {
  margin-bottom: 40px;
  text-align: center;
}

.service-item img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 16px;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.service-item p {
  line-height: 180%; /* 29.4px */
  letter-spacing: 2px;
}

.equipment-wrapper {
  background-color: #f4f8dd;
  padding: 0 1% 40px;
}

.equipment-inner {
  display: flex;
  justify-content: space-between;
}

.equipment-item {
  text-align: center;
  width: 31%;
  max-width: 200px;
  margin: -20px auto 0;
}

.equipment-item img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.equipment-item p {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.323px;
}

.works-section {
  padding: 80px 20px 64px;
}

.case-block {
  background: #fff;
  padding: 24px 1%;
  text-align: center;
  font-family: sans-serif;
}

.caption p {
  margin-bottom: 8px;
  text-align: center;
}

.caption svg {
  width: 88%;
  max-width: 600px;
  margin-bottom: 16px;
}

/* Accordion 本体 */
.accordion {
  border: 1px solid #ddd;
  padding: 0;
  margin: 0 auto 24px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  max-width: 640px;
}

/* summary の見た目 */
.accordion summary {
  list-style: none; /* デフォルトの矢印を消す */
  cursor: pointer;
  position: relative;
  user-select: none;
  background: #6f7e00;
  transition: all 0.4s ease;
  max-width: fit-content;
}

.accordion .before-img,
.accordion .after-img {
  aspect-ratio: 638/371;
  object-fit: cover;
}

.accordion summary:hover {
  background: rgb(111, 126, 0, 0.7);
}

.accordion summary p {
  color: white;
  padding: 12px 16px;
  position: relative;
}

.accordion summary p::after {
  content: "▼";
  position: absolute;
  right: 24px;
  bottom: 50%;
  transform: translateY(50%);
  transition: transform 0.4s ease;
}

.accordion[open] summary p::after {
  transform: rotate(-180deg) translateY(-50%);
  bottom: 50%;
}

/* details の中身 */
.before-text {
  padding: 12px;
  background: #edf4b8;
  display: block;
}

/* ラップした要素に対して max-height アニメーション */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

/* open 時に十分大きな max-height を指定 */
details[open] .accordion-content {
  max-height: 800px;
}

.case-block.renovation-carousel {
  text-align: center;
  position: relative;
  font-family: sans-serif;
}

.carousel-container {
  position: relative;
  margin: 0 auto;
}

.carousel-images {
  position: relative;
  width: 100%;
  height: auto;
}

.carousel-img {
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.carousel-img.active {
  opacity: 1;
  z-index: 1;
  position: relative;
  pointer-events: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  cursor: pointer;
  z-index: 2;
  width: 12px;
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

footer {
  vertical-align: middle;
  text-align: center;
  background-image: url(/img/footer.jpg);
  background-size: cover;
}

footer .btn-section {
  background-color: rgba(199, 211, 114, 0.851);
  padding: 40px 0;
}

.btn2about {
  display: inline-block;
  width: fit-content;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #000;
  background: #ffffffa6;
  position: relative;
  border: 1px solid #000;
  transition: color 0.5s ease;
  font-size: 20px;
  padding: 20px 38px 20px 46px;
  border-radius: 9999px;
  overflow: hidden;
}

.btn2about .text {
  display: flex;
  align-items: center;
}

.btn2about .text svg {
  margin-left: 1em;
  width: 8px;
  height: 16px;
}

.btn2about:hover {
  border: #4a5308 solid 1px;
}
.btn2about:hover::before {
  transform: scaleX(1);
  transform-origin: left;
  background: #9fb11f;
}
.btn2about::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  background: #9fb11f;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.text {
  position: relative;
}

.footer-shita {
  background-color: rgba(255, 255, 255, 0.851);
}

footer ul {
  padding: 40px 0;
  list-style-type: none;
  border: none;
  width: 70%;
  text-align: left;
  margin: auto;
}
footer ul li {
  position: relative;
  padding: 0.3em 0 0.3em 1.8em;
  line-height: 2;
  font-size: 14px;
}
footer ul li:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg%20width%3D%2215%22%20height%3D%2211%22%20viewBox%3D%220%200%2015%2011%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5.33789%2010.0169L0.587891%205.26693L1.77539%204.07943L5.33789%207.64193L12.9837%20-0.00390625L14.1712%201.18359L5.33789%2010.0169Z%22%20fill%3D%22%23a2ae4b%22/%3E%3C/svg%3E");
  left: -0.2em;
  display: inline-block;
}

.contact-box-button {
  display: inline-block;
  background-color: #c7d372;
  padding: 20px 36px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  border-radius: 10px;
  box-shadow: 2.68px 2.68px 0px 0px #7a8b07;
}

.contact-box-button:hover {
  transform: translate(2.5px, 2.5px);
  box-shadow: none;
}

.sub-text {
  background: white;
  color: black;
  display: inline-block;
  padding: 4.8px 24px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
}

.main-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: black;
  font-weight: bold;
  font-size: 18.2px;
  line-height: 1.7;
}

.footer-logo {
  width: 40%;
  margin: 60px auto 24px;
  max-width: 200px;
}

.fixed-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #bbc95a;
  color: #333a01;
  font-weight: bold;
  text-decoration: none;
  padding: 0px 48px 16px 40px;
  border-radius: 16px;
  width: fit-content;
  box-shadow: -6.15px -6.15px 6.46px 3.38px #505b0433 inset;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 4;
}

.fixed-banner.hide {
  opacity: 0;
  visibility: hidden;
}

.banner-caption {
  margin-top: -12px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

.kasou-mv {
  height: 48vh;
}

.company-img {
  width: 100vw;
  object-fit: cover;
  max-height: 480px;
}

.company-section {
  padding: 80px 0;
}
.company-info-table {
  width: 100vw;
  margin: 0 auto;
  padding: 24px 8%;
  font-family: sans-serif;
}

.info-row {
  text-align: center;
  padding: 12px 0;
  border-bottom: #f4f8dd 1px solid;
}

.label {
  display: block;
  font-weight: bold;
  color: #5f6c01;
  font-size: 16px;
  margin-bottom: 8px;
}

.value {
  display: block;
  font-size: 16px;
  color: #232323;
  line-height: 1.6;
}

.map-responsive {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 アスペクト比 */
  overflow: hidden;
  border-radius: 8px; /* 任意：角丸 */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.6s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.timing02 {
  transition-delay: 0.2s;
}
.timing03 {
  transition-delay: 0.4s;
}
.timing04 {
  transition-delay: 0.6s;
}
.timing05 {
  transition-delay: 0.8s;
}

@media screen and (min-width: 767px) {
  .sp-only {
    display: none;
  }

  .section {
    padding-top: 112px;
  }

  header {
    padding: 0 20px;

    background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 1)
    );
  }

  .global-nav {
    position: static;
    background: none;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: auto;
  }

  .global-nav ul {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin: 0 32px 0 0;
  }

  .global-nav li {
    margin: 0;
    white-space: nowrap;
  }

  .global-nav a {
    display: flex;
    flex-direction: column-reverse;
  }

  .global-nav a .span1 {
    font-size: 15px;
    color: #92a315;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: -0.6em;
  }

  .global-nav a .span2 {
    font-size: 11px;
    color: #acadaa;
    font-weight: 400;
  }

  .menu-toggle {
    display: none;
  }

  .global-nav a.contact-btn {
    flex-direction: row;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: 0px 0px;
    width: fit-content;
    margin: auto;
    color: #92a315;
    font-size: 15px;
    border: 2px solid #92a315;
    letter-spacing: 3px;
    font-weight: 700;
    transition: all 0.4s;
  }

  .contact-btn svg path {
    fill: #92a315;
    transition: all 0.3s ease;
  }

  .global-nav a.contact-btn:hover {
    background-color: #92a315;
    color: white;
  }

  .global-nav a.contact-btn:hover svg path {
    fill: white;
  }

  .mv {
    height: 88dvh;
  }

  .mv img {
    object-position: center 20px;
    scale: 1;
    width: 100%;
  }

  .mv h2 {
    top: 64%;
    left: 0.6em;
    font-size: 72px;
    transform: initial;
    line-height: 1.1;
  }

  .mv svg {
    bottom: 6%;
    left: 80%;
  }

  .mv svg path {
    fill: white;
  }

  .mv svg line {
    stroke: white;
  }

  @keyframes arrowmove {
    0% {
      bottom: 6%;
    }
    50% {
      bottom: 8%;
    }
    00% {
      bottom: 6%;
    }
  }

  .about-section .pc-only {
    display: flex;
  }

  .about-section .pc-only .section-img {
    width: 50%;
    margin: 0 auto;
    margin-right: 60px;
  }

  .about-section .pc-only .right {
    width: 50%;
  }

  h2 {
    line-height: 1.2;
    font-size: clamp(44px, calc(24px + 4vw), 100px);
    margin-bottom: 40px;
    letter-spacing: 1.4px;
  }

  .h2wrapper p {
    font-size: 16px;
  }

  .about-section .pc-only .right .h2wrapper {
    text-align: left;
  }

  .about-section .pc-only .right .h2wrapper p {
    text-align: left;
  }

  .about-section .pc-only .right .h2wrapper p::after {
    left: 1.2em;
  }

  .about-text {
    line-height: 2;
    letter-spacing: 2.4px;
    font-size: 16px;
  }

  .strength-card-wrapper {
    display: flex;
    gap: 1.6%;
  }

  .lixil-section {
    margin: 0 auto;
    padding: 32px 0;
    max-width: 1320px;
    background: #fff;
  }

  .lixil-card {
    background-color: #c7d372;
    max-width: 1400px;
    margin: 0 72px;
    display: flex;
    justify-content: center;
    padding: 30px 27px;
    gap: 6%;
  }

  .lixil-card img {
    margin: 0;
  }

  .lixil-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .lixil-card h3 {
    font-size: 30px;
  }

  .service-section {
    padding: 0;
    max-width: none;
  }

  .service-item {
    display: flex;
    margin-bottom: 120px;
  }

  .service-item2 {
    flex-direction: row-reverse;
  }

  .service-item img {
    width: 52vw;
    max-width: none;
  }

  .service-item-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 40px;
    width: 30%;
  }

  .service-item-caption h3 {
    font-size: 35px;
  }

  .equipment-inner {
    justify-content: center;
    gap: 3%;
  }

  .equipment-item {
    width: 28%;
    max-width: 360px;
    margin: -54px 0 0;
  }

  .equipment-item p {
    font-size: 20px;
  }

  .caption p {
    font-size: 20px;
  }

  .accordion summary p {
    text-align: center;
    font-size: 18px;
    padding: 20px;
  }

  .before-text {
    font-size: 18px;
    padding: 20px 40px;
    max-width: 640px;
    margin: auto;
  }

  .carousel-btn {
    width: 20px;
  }

  .carousel-btn.prev {
    left: -54px;
  }

  .carousel-btn.next {
    right: -54px;
  }

  .btn2about {
    font-size: 28px;
    padding: 28px 56px 28px 66px;
  }

  .btn2about .text svg {
    width: 12px;
    min-height: 24px;
  }

  footer .btn-section {
    padding: 80px 0;
  }

  .footer-shita {
    padding: 80px 0 20px;
  }

  .footer-shita-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px;
  }

  footer ul {
    width: 50%;
    padding: 0;
    margin: 0;
    margin-right: 32px;
  }

  footer ul li {
    font-size: 20px;
    padding: 0.1em 0 0.1em 1.6em;
  }

  .contact-box-button {
    padding: 28px 52px;
    box-shadow: 4px 4px 0px 0px #7a8b07;
    height: fit-content;
    width: fit-content;
  }

  .sub-text {
    font-size: 18px;
  }

  .main-text {
    font-size: 28px;
    white-space: nowrap;
  }

  .main-text svg {
    width: 40px;
    height: 30px;
  }

  .fixed-circle-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 220px;
    height: 220px;
    background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, #bbc95a 100%);
    padding: 1%;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    color: #000;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .fixed-circle-banner.hide {
    opacity: 0;
    visibility: hidden;
  }

  .fixed-circle-banner:hover {
    transform: scale(1.05);
  }

  .circle-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
  }

  .copy p {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 8px;
  }

  .circle-button {
    color: white;
    background: #a9be10;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0px 4px 0px 0px #7c8916;
  }

  .kasou-mv {
    height: 40vh;
  }

  .kasou-mv img {
    object-position: center 70%;
  }

  .company-section {
    padding-top: 80px;
  }

  .company-pc-inner {
    display: flex;
    width: 80%;
    margin: auto;
    padding: 40px 0;
    align-items: flex-start;
  }

  .company-info-table {
    padding-top: 0;
    padding-right: 0;
  }

  .info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .label {
    flex: 0 0 120px;
    text-align: left;
    margin-bottom: 0;
    color: #000;
  }

  .value {
    flex: 1;
    text-align: left;
  }

  .map-responsive {
    width: 80%;
    margin: auto;
    padding-top: 30%; /* 16:9 アスペクト比 */
    overflow: hidden;
    border-radius: 8px; /* 任意：角丸 */
  }
}
/* スマホ〜タブレット用（480〜767px） */
@media screen and (max-width: 767px) {
  /* スタイル */
  .pc-only {
    display: none;
  }
}

/* タブレット〜ノートPC（768〜1023px） */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* スタイル */
}

/* ノートPC〜標準デスクトップ（1024〜1279px） */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  /* スタイル */
}

/* デスクトップ以上（1280px〜） */
@media screen and (min-width: 1280px) {
  /* スタイル */
}
