@charset "UTF-8";
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
/* =========================================
Component: Footer
========================================= */
.footer {
  padding-top: 50px;
  padding-bottom: 0 !important;
  border-top: 1px solid #e8e8e8;
  background-color: #fff;
}
.footer__txt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  color: rgba(56, 56, 56, 0.8);
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .footer__txt {
    font-size: 1.6rem;
    text-align: left;
  }
}
.footer__logo {
  margin-top: 64px;
  margin-bottom: 64px;
}
.footer__logo a {
  display: block;
  width: 266px;
  margin: 0 auto;
}
.footer__logo img {
  margin: 0 auto;
}
.footer__logo-txt {
  display: none;
}
@media screen and (max-width: 780px) {
  .footer__logo-txt {
    display: block;
    color: #383838;
    font-size: 14px;
    width: 90%;
    text-align: center;
    margin: 0 auto 14px;
    font-weight: 700;
  }
}
.footer__ul {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 780px) {
  .footer__ul {
    flex-direction: column;
  }
}
.footer__ul li:first-child {
  background-color: #3599BA;
  width: 50%;
}
@media screen and (max-width: 780px) {
  .footer__ul li:first-child {
    width: 100%;
  }
}
.footer__ul li:last-child {
  width: 50%;
  background-color: var(--color-primary);
}
@media screen and (max-width: 780px) {
  .footer__ul li:last-child {
    width: 100%;
  }
}
.footer__ul li a {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
}
@media screen and (max-width: 780px) {
  .footer__ul li a {
    padding: 30px 20px;
  }
}

/* フッター全体のスタイル */
.bottom {
  background-color: #383838;
  /* 暗いグレーの背景 */
  color: #ffffff;
  padding: 20px 40px;
  /* 上下左右の余白 */
  font-family: sans-serif;
}

/* 内側のコンテンツ幅を制御 */
.bottom-inner {
  display: flex;
  justify-content: space-between;
  /* 左右に振り分け */
  align-items: center;
}
@media screen and (max-width: 980px) {
  .bottom-inner {
    flex-direction: column;
  }
}

/* 左側のグループ（ロゴ + ナビ） */
.bottom-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .bottom-left {
    flex-direction: column;
    gap: 20px;
  }
}

.bottom-logo img {
  height: 43px;
  /* ロゴのサイズ調整 */
  display: block;
}

/* ナビゲーションメニュー */
.bottom-nav {
  font-family: var(--font-en);
}
@media screen and (max-width: 980px) {
  .bottom-nav {
    display: flex;
    flex-direction: column;
  }
}

.bottom-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 980px) {
  .bottom-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

.bottom-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .bottom-nav a {
    font-size: 14px;
  }
}

.bottom-nav a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 980px) {
  .bottom-right {
    margin-top: 30px;
  }
}

/* 右側のコピーライト */
.bottom-right .copyright {
  font-size: 12px;
  margin: 0;
  color: #fff;
}