@charset "UTF-8";

/* 初期状態 */
.c-animated__fadeIn,
.c-animated__fadeInDelay {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s ease;
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s ease;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    -webkit-transform 0.8s ease;
}

/* 表示状態 */
.c-animated__fadeIn.js-show,
.c-animated__fadeInDelay.js-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.u-paragraph p + p {
  margin-top: 1em;
}

.l-main {
  -webkit-padding-before: 120px;
  padding-block-start: 120px;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .l-main {
    -webkit-padding-before: 64px;
    padding-block-start: 64px;
  }
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1120px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding: 0 1.25rem;
  }
}

.inner__narrow {
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .inner__narrow {
    padding: 0 1.25rem;
    max-width: 600px;
  }
}

/*==============================================================================
# footer
==============================================================================*/
/* フッター */
.l-footer {
  padding-top: 56px;
  background-color: #f1fbf0;
}

.p-footer {
  margin: 0 auto;
}

.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px;
  gap: 2%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-footer__left {
  width: 28%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__left {
    margin-inline: auto;
  }
}

.p-footer__right {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-footer__right {
    margin-top: 40px;
    width: 100%;
  }
}

.p-footer__logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-bottom: 24px;
  }
}
.p-footer__logo img {
  max-width: 113px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (any-hover: hover) {
  .p-footer__links a:hover {
    opacity: 0.7;
  }
}
.p-footer__links img {
  height: 24px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}

.p-footer__nav-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-block {
    gap: 8px;
  }
}

.p-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.p-footer__menu a {
  text-decoration: none;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-footer__menu a img {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 767px) {
  .p-footer__nav {
    grid-template-columns: 1fr;
  }
}
.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  font-size: 1rem;
}
.p-footer__head a {
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-footer__head a {
    font-size: 16px;
  }
}

.p-footer__menu li a {
  font-size: 14px;
  text-decoration: none;
  padding-block: 4px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-footer__menu li a {
    font-size: 13px;
  }
}
@media (any-hover: hover) {
  .p-footer__menu li a:hover {
    opacity: 0.7;
  }
}

.p-footer__bottom {
  background-color: #009900;
  font-size: 14px;
  color: #fff;
  padding: 16px 0;
}

.p-footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-footer__other-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__other-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 8px;
    line-height: normal;
  }
}
.p-footer__other-menu li {
  position: relative;
}
.p-footer__other-menu li:not(:first-child)::after {
  position: absolute;
  width: 1px;
  height: 140%;
  background: #fff;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-footer__other-menu li:not(:first-child)::after {
    display: none;
  }
}
.p-footer__other-menu li a {
  padding-inline: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__other-menu li a {
    padding-inline: 0;
  }
}
@media (any-hover: hover) {
  .p-footer__other-menu li a:hover {
    opacity: 0.7;
  }
}

/* 視覚的に隠す（スクリーンリーダー用） */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* トグル（矢印） */
.p-footer__toggle {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

/* 開いたら上向きに */
.p-footer__toggle[aria-expanded="true"] {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* アコーディオンのアニメ */
.js-acc-panel {
  overflow: hidden;
  -webkit-transition:
    height 0.22s ease,
    opacity 0.22s ease;
  transition:
    height 0.22s ease,
    opacity 0.22s ease;
  opacity: 0;
}

/* PCでは常時展開、トグル非表示 */
@media (min-width: 767px) {
  .p-footer__toggle {
    display: none;
  }
  .js-acc-panel {
    height: auto !important;
    opacity: 1 !important;
  }
  .js-acc-panel[hidden] {
    display: block !important;
  } /* hidden無効化 */
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 24px;
  }
}

/** 251018 表示崩れ調整 **/
/* 画像サイズ調整 */
.p-footer__links img {
  max-width: none;
}

