/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通/全体のレイアウト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
*, *::before, *::after {
  box-sizing: border-box !important;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
  width: 100%;
  color: #333333;
}

.section-title span {
  font-size: 0.6em;
  margin-left: 15px;
  vertical-align: middle;
}

:root {
  --main-green: #2f7f5f; 
  --dark-green: #1e543e; 
  --light-green: #e9f2ee; 
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層ページ共通設定
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
body:not(.home) main {
  padding-top: 80px;
}

.page-visual {
  background-color: #2f7f5f;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

.page-visual h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-visual h1 span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 10px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
header
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.main-header {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header-inner {
  margin: 0 20px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  border-radius: 0;
  transition: all 0.4s ease;
}

/* --- 文字色の初期設定（すべて白） --- */
.logo__type,
.logo__name,
.nav-link {
  color: #ffffff !important;
  transition: color 0.4s ease;
}

.is-scrolled {
  top: 10px;
}

.is-scrolled .header-inner {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 50px;
  padding: 10px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.is-scrolled .logo__type,
.is-scrolled .logo__name,
.is-scrolled .nav-link {
  color: #333333 !important;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.logo__type {
  font-size: 11px;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  font-weight: normal;
  color: #ffffff;
  font-weight: bold;
}

.logo__name {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-link:hover {
  color: #005bac;
}

/* PC：ボタンは非表示 */
.menu-trigger {
  display: none;
}

/* --- メニューバーレスポンシブ（スマホ用） --- */
@media (max-width: 768px) {
  .site-container {
    overflow-x: hidden;
    display: block;
  }

  .side-header {
    width: 100% !important;
    height: auto;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0;
  }

  .main-content {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 0;
    overflow-x: hidden;
  }

  .header-inner {
    width: 100%;
    max-width: none;
    padding: 15px 20px;
    margin: 0;
  }

  .is-scrolled {
    top: 0px;
  }

  .is-scrolled .header-inner {
    border-radius: 0px;
    padding: 15px 20px;
  }

  /* 三本線ボタンのデザイン */
  .menu-trigger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.4s;
  }

  /* 三本線の位置調整 */
  .menu-trigger span:nth-child(1) {
    top: 0;
  }
  .menu-trigger span:nth-child(2) {
    top: 11px;
  }
  .menu-trigger span:nth-child(3) {
    bottom: 0;
  }

  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95); 
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }

  .nav-container.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    font-size: 1.5rem;
    padding: 20px;
    display: block;
    color: #333333 !important;
  }

  .menu-trigger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .menu-trigger.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
front-page
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: block;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
}

#hero-slider {
  background-size: cover;
  background-position: center 90%;
  background-repeat: no-repeat;
  transition: background-image 1.5s ease-in-out;
  width: 100%;
  height: 100vh;
}

.hero__content-wrapper {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__text-group {
  position: absolute;
  bottom: 80px;
  left: 40px;
  text-align: left;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.is-visible .hero__text-group {
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.8s;
}

.hero__text-group {
  bottom: 20px;
  left: 20px;
}

.is-visible .hero__title {
  animation-delay: 0.8s;
}
.is-visible .hero__main-copy {
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 1.1s;
  opacity: 0;
}
.is-visible .hero__sub-text {
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 1.4s;
  opacity: 0;
}

.hero__title {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.hero__main-copy {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hero__sub-text {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1e543e;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #2f7f5f;
}

/* --- About Us セクション --- */
.about-us {
  padding: 100px 0;
  background-color: #fff;
}

.about-us__inner {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.about-us__text {
  flex: 1;
}

.about-us__lead {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 25px;
}

.about-us__description {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
}

.about-us__image {
  flex: 1;
  position: relative;
}

.about-us__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 10px 10px 0px rgba(0, 51, 102, 0.05);
}

/* レスポンシブ対応：スマホでは縦に並べる */
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .about-us__inner {
    flex-direction: column;
  }
  .about-us__image {
    order: -1;
  }
  .about-us__lead {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  .about-us__image img {
    box-shadow: none;
  }
}

/* --- top-nav-links セクション --- */
.top-nav-links {
  padding: 60px 0 100px;
  background-color: #fff;
}

.top-nav-links__inner {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.nav-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  height: 400px;
  display: block;
  border-radius: 8px;
}

.nav-card__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #f0f0f0;
}

.nav-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.nav-card:hover .nav-card__image img {
  transform: scale(1.1);
  opacity: 0.5;
}

.nav-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav-card__title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.nav-card__sub-title {
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-card__text {
  font-size: 1rem;
  font-weight: bold;
}

.nav-card__arrow {
  margin-top: 20px;
  width: 40px;
  height: 2px;
  background-color: #fff;
  position: relative;
}

.nav-card__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .top-nav-links__inner {
    flex-direction: column;
  }
  .nav-card {
    height: 250px;
  }
  .nav-card__arrow {
    display: none;
  }
}

/* --- company-profile セクション --- */
.company-profile {
  padding: 100px 0;
  background-color: #fcfcfc;
}

.company-profile__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-table {
  margin-top: 50px;
  border-top: 1px solid #dddddd;
}

.profile-row {
  display: flex;
  margin: 0;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s;
}

.profile-row:hover {
  background-color: #f9f9f9;
}

.profile-row dt {
  width: 30%;
  padding: 25px 30px;
  background-color: #e9f2ee;
  color: #1e543e;
  font-weight: bold;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.profile-row dd {
  width: 70%;
  margin: 0;
  padding: 25px 30px;
  color: #333333;
  line-height: 1.6;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

/* スマホ対応：縦並びに切り替え */
@media (max-width: 768px) {
  .profile-row {
    flex-direction: column;
  }
  .profile-row dt {
    width: 100%;
    padding: 15px 20px;
    background-color: #e9f2ee;
    color: #1e543e;
  }
  .profile-row dd {
    width: 100%;
    padding: 15px 20px;
  }
}

/* --- access セクション --- */
.access {
  padding: 100px 0;
  background-color: #ffffff;
}

.access__inner {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

.access__content {
  display: flex;
  gap: 60px;
  margin-top: 50px;
}

/* マップエリア */
.access__map {
  flex: 1.2;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.access__map iframe {
  width: 100% !important;
  max-width: 100%;
  height: 100%;
  border: 1px solid #dddddd;
  border-radius: 8px;
}

/* 情報エリア */
.access__info {
  flex: 1;
}

.access__address-box h3 {
  font-size: 1.2rem;
  color: #1e543e;
  margin-bottom: 10px;
  border-left: 4px solid #2f7f5f;
  padding-left: 15px;
}

.detail-item h4 {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.access__address-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.access__details {
  display: grid;
  gap: 20px;
}

.detail-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ボタン */
.access__btn {
  margin-top: 40px;
}

.btn-external {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  border: 1px solid #2f7f5f;
  color: #2f7f5f;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-external:hover {
  background-color: #2f7f5f;
  color: #fff;
  border-color: #1e543e;
}

/* スマホ対応 */
@media (max-width: 992px) {
  .access__content {
    flex-direction: column;
  }
  .access__map {
    height: 300px;
    order: 1;
  }
  .access__info {
    order: 2;
  }
}

/* --- contactセクション --- */
.contact {
  padding: 100px 0;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.contact .section-title::after {
  display: none;
}

.contact__box {
  max-width: 850px;
  margin: 0 auto;
  background-color: #fbfbfb;
  padding: 60px 40px;
  border-radius: 12px;
  border: 2px solid #2f7f5f;
}

.contact__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #444;
}

.contact__tel-area {
  margin-bottom: 40px;
}

.contact__tel-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #2f7f5f;
  font-weight: bold;
}

.contact__tel-number {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #1e543e;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  transition:
    transform 0.3s,
    color 0.3s;
}

.contact__tel-number:hover {
  transform: scale(1.03);
  opacity: 0.7;
}

.contact__time {
  margin-top: 15px;
  font-size: 1rem;
  color: #666;
}

/* 補足事項エリア（白文字用設定を解除） */
.contact__note {
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  text-align: left;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}

.contact__fax {
  margin: 0 10px 0 0;
  font-weight: bold;
  color: #333;
  font-size: 1.1rem;
}

.contact__email {
  margin: 0 10px 0 0;
  font-weight: bold;
  color: #333;
  font-size: 1.1rem;
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .contact {
    padding: 60px 0px;
  }
  .contact__box {
    width: 95%;
    margin: 0 auto;
    padding: 40px 15px;
    box-sizing: border-box;
  }
  .contact__lead {
    font-size: 1rem;
    text-align: left;
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
page-facilities
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.facility-section {
  margin-bottom: 80px;
}

.facility-category-title {
  font-size: 1.8rem;
  color: #1e543e;
  border-left: 5px solid #2f7f5f;
  padding-left: 15px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.facility-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.facility-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  table-layout: fixed;
}

.facility-table th,
.facility-table td {
  border: 1px solid #ddd;
  padding: 15px 20px;
  text-align: left;
}

.facility-table th {
  background-color: #e9f2ee;
  color: #1e543e;
  font-weight: bold;
  width: 20%;
}

.facility-table td {
  background-color: #fff;
  color: #333;
}

.facility-table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}

.facility-table th:nth-child(1),
.facility-table td:nth-child(1) {
  width: 30%;
  white-space: normal;
}

.facility-table th:nth-child(2),
.facility-table td:nth-child(2) {
  width: 80px;
  text-align: center;
}

.facility-table th:nth-child(3),
.facility-table td:nth-child(3) {
  width: 15%;
}

.facility-table th:nth-child(4),
.facility-table td:nth-child(4) {
  width: 15%;
}

.facility-table th:nth-child(5),
.facility-table td:nth-child(5) {
  width: auto;
  white-space: normal;
}
/* スマホ対応調整 */
@media (max-width: 768px) {
  .facility-category-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .facility-table th,
  .facility-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .facility-table-wrapper::after {
    content: "← 横にスクロールして確認できます";
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-align: right;
    padding: 5px 10px;
    background: #fdfdfd;
    border-top: 1px solid #ddd;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
page-products
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.intro-text {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 80px;
}

.product-card.no-image {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 1px solid #ddd;
}

.product-card.no-image:hover {
  transform: translateY(-5px);
  border-color: #2f7f5f;
  box-shadow: 0 10px 20px rgba(47, 127, 95, 0.1);
}

.product-tag {
  display: inline-block;
  background: #e9f2ee;
  color: #1e543e;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.product-card__body {
  padding: 30px;
}

.product-card__body h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.product-card__spec {
  border-top: 1px dashed #ccc;
  padding-top: 20px;
  margin-top: 20px;
  padding-left: 0;
}

.product-card__spec li {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 6px;
}

.product-card__spec li span {
  width: 80px;
  font-weight: bold;
  color: #2f7f5f;
  flex-shrink: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .intro-text {
    text-align: left;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.site-footer {
  background-color: #2f7f5f;
  color: #ffffff;
  padding: 80px 20px 40px;
  margin-top: 80px;
}

.footer-inner {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-info {
  flex: 1;
}
.footer-info__name {
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}
.footer-info__type {
  font-size: 13px;
  line-height: 1.2;
  display: inline-block;
  text-align: center;
  font-weight: normal;
  opacity: 0.9;
  font-weight: bold;
}
.footer-info__main {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.footer-info__address {
  font-style: normal;
  line-height: 1.6;
  opacity: 0.9;
  margin-top: 15px;
}
.footer-info__contact {
  margin-top: 15px;
}

.footer-nav {
  flex: 1;
}
.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 40px;
}
.footer-nav__list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
  transition: 0.3s;
}
.footer-nav__list a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* 右側：CTA */
.footer-cta {
  flex: 1;
  text-align: right;
}
.footer-cta__label {
  margin-top: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-cta__number {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin-top: 5px;
}

/* コピーライト */
.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* footer レスポンシブ修正（768px以下）*/
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 30px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .footer-info,
  .footer-nav,
  .footer-cta {
    width: 100%;
  }

  .footer-nav__list {
    grid-template-columns: 1fr;
    gap: 15px;
    display: inline-block;
  }

  .footer-nav__list li {
    margin-bottom: 15px;
  }

  .nav-link.footer-nav {
    padding: 5px;
    color: #ffffff !important;
  }

  .footer-cta {
    text-align: center;
  }

  .footer-cta__number {
    font-size: 1.5rem;
  }
}
