@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: #1b1b1b;
  font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  background: #ffffff;
}

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

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

a:hover {
  opacity: 0.85;
}

h1, h2, h3, h4, p {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.l-container {
  width: min(100% - 32px, 1080px);
  margin-inline: auto;
}

.l-section {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 52px 0;
  }
}

.sectionTitle {
  margin: 0 0 24px;
}
.sectionTitle * {
  display: block;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
.sectionTitle span {
  font-size: 44px;
}
.sectionTitle img {
  height: 24px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sectionTitle {
    margin-bottom: 18px;
  }
  .sectionTitle span {
    font-size: 24px;
  }
  .sectionTitle img {
    height: 22px;
  }
}

.sectionHeading {
  margin: 0 0 22px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .sectionHeading {
    font-size: 2rem;
  }
}

.fix-bnr {
  position: fixed;
  z-index: 800;
  right: 0;
  top: 20%;
}
@media (max-width: 768px) {
  .fix-bnr {
    display: none;
  }
}

/* 共通：最初は見えない＋少し動かしておく */
.js-reveal {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 上から（= 下へ少しずらしておいて、戻す） */
.js-reveal.fade-up {
  transform: translate3d(0, 24px, 0);
}

/* 左から（= 右へ少しずらしておいて、戻す） */
.js-reveal.fade-left {
  transform: translate3d(-24px, 0, 0);
}

/* 表示状態 */
.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 任意：遅延（必要なら） */
.js-reveal[data-delay="100"] {
  transition-delay: 0.1s;
}

.js-reveal[data-delay="200"] {
  transition-delay: 0.2s;
}

.js-reveal[data-delay="300"] {
  transition-delay: 0.3s;
}

/* OS設定でアニメーション抑制してる人向け */
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #4eaa47;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e7e7e7;
}
.header__inner {
  max-width: 98%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .header__inner {
    height: 64px;
    justify-content: space-between;
  }
}
.header__logo {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__logo {
    justify-content: center;
    left: 0;
    right: 0;
  }
}
.header__logo img {
  height: 28px;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 26px;
  }
}
.header__menuBtn {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .header__menuBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    z-index: 999;
  }
}
.header__menuBtnLines {
  position: relative;
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 100vh;
  background: #1b1b1b;
  transition: background 0.2s ease;
}
.header__menuBtnLines::before, .header__menuBtnLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  border-radius: 100vh;
  background: #1b1b1b;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.header__menuBtnLines::before {
  top: -8px;
}
.header__menuBtnLines::after {
  top: 8px;
}

/* ★開いてる時：三本線→× */
.header__menuBtn.is-open .header__menuBtnLines {
  background: transparent;
}
.header__menuBtn.is-open .header__menuBtnLines::before {
  top: 0;
  transform: rotate(45deg);
}
.header__menuBtn.is-open .header__menuBtnLines::after {
  top: 0;
  transform: rotate(-45deg);
}

.gnav {
  margin: 0 auto;
  color: #ffffff;
}
.gnav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.gnav__link {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 30px 20px;
  position: relative;
  display: block;
  border: 1px solid #4daa46;
}
@media (max-width: 768px) {
  .gnav__link {
    border: none;
    padding: 0;
    text-align: center;
    font-size: 2.6rem;
    color: #4eaa47;
    line-height: 3;
  }
}
.gnav__link:hover {
  color: #4daa46;
  background: #fff;
  border: 1px solid #000;
}
@media (max-width: 768px) {
  .gnav {
    display: none;
  }
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: #fff;
}
.drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}
.drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  border-right: 1px solid #e7e7e7;
  padding: 22px 16px;
  transform: translateX(-102%);
  transition: transform 0.25s ease;
  z-index: 999;
}
.drawer__close {
  appearance: none;
  border: 1px solid #e7e7e7;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}
.drawer__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.drawer__item {
  border-bottom: 1px solid #e7e7e7;
}
.drawer__link {
  display: block;
  padding: 14px 6px;
  font-weight: 600;
}

.is-locked {
  overflow: hidden;
}

/* MV */
.mv {
  padding: 0;
  background: #fff;
}

/* Slider（重要：.mvの外に出す） */
.slider {
  position: relative;
  overflow: hidden;
}
.slider .slider-inner {
  position: relative;
}
.slider .slider-inner__track {
  display: flex;
  transform: translateX(0);
  transition: transform 0.5s ease;
  will-change: transform;
  /* width は JS で slides.length から自動設定するので固定しない */
}
.slider .slider-inner__slide {
  /* width: 100% は入れない（拡大の原因になりやすい） */
  flex: 0 0 100%;
  min-width: 100%;
  background: #fff;
}
.slider .slider-inner__slide img {
  height: auto;
  display: block;
  object-fit: contain;
}
.slider .slider-inner__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slider .slider-inner__dots button {
  width: 10px;
  height: 10px;
  border-radius: 100vh;
  border: 2px solid #ddd;
  display: block;
  padding: 0;
}
.slider .slider-inner__dots button.is-active {
  border: 2px solid #fff;
  background: none;
}
.slider .slider-inner__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.slider .slider-inner__dot.is-active {
  background: #4eaa47;
  border-color: #4eaa47;
}

@media (max-width: 768px) {
  .slider-inner__slide {
    height: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  .slider-inner__slide img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }
}
/* Home news */
.newsTop {
  background: #fafafa;
}
.newsTop h2 {
  color: #4daa46;
}
.newsTop__list {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.newsTop__btn {
  text-align: center;
  margin: 50px auto 0;
}

.newsCard {
  padding: 14px 16px;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: center;
}
@media (max-width: 768px) {
  .newsCard {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* About top */
.aboutTop {
  padding-top: 0;
  padding-bottom: 0;
  background: url(../images/top/about-bg.png) no-repeat center/cover;
}
@media (max-width: 768px) {
  .aboutTop .l-container {
    margin: 0;
    width: 100%;
  }
}
.aboutTop__inner {
  position: relative;
  background: #ffffff;
  text-align: center;
  padding: 50px;
  border-top: 7px solid #4eaa47;
  z-index: 2;
}
@media (max-width: 768px) {
  .aboutTop__inner {
    padding: 30px 20px;
  }
}
.aboutTop__inner h3, .aboutTop__inner p {
  position: relative;
  z-index: 2;
  color: #082c53;
}
.aboutTop h3 {
  font-size: 36px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .aboutTop h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.aboutTop__text p {
  margin: 0 0 20px;
  line-height: 2.6;
  font-weight: 600;
}
@media (max-width: 768px) {
  .aboutTop__text p {
    line-height: 1.8;
  }
}
@media (min-width: 769px) {
  .aboutTop__text p:last-child {
    padding-bottom: 300px;
  }
}
.aboutTop__lead {
  font-weight: 700;
  margin-top: 22px;
}
.aboutTop__art {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .aboutTop__art {
    position: relative;
  }
}

@media (min-width: 769px) {
  /* アコーディオン表示（clip-path） */
  [data-reveal=accordion] {
    display: block; /* これ重要 */
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s ease, -webkit-clip-path 0.8s ease, opacity 0.5s ease, transform 0.6s ease;
    will-change: clip-path, opacity, transform;
  }
  [data-reveal=accordion].is-open {
    opacity: 1;
    transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  /* 非対応フォールバック */
  @supports not (clip-path: inset(0 0 0 0)) {
    [data-reveal=accordion] {
      max-height: 0;
      transition: max-height 0.8s ease, opacity 0.5s ease, transform 0.6s ease;
    }
    [data-reveal=accordion].is-open {
      max-height: 2000px;
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* Service teaser cards */
.serviceTeasers__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 768px) {
  .serviceTeasers__list {
    grid-template-columns: 1fr;
  }
}
.serviceTeasers__list a {
  text-align: center;
  display: block;
  line-height: 0;
}

.serviceTeaser {
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.serviceTeaser__head {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.serviceTeaser__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(46, 155, 99, 0.1);
  color: #4eaa47;
  font-weight: 700;
  font-size: 1.2rem;
}
.serviceTeaser__title {
  margin: 0;
  font-size: 2rem;
}
.serviceTeaser__desc {
  margin: 0 0 14px;
  color: #6a6a6a;
}
.serviceTeaser__more {
  font-weight: 700;
  color: #4eaa47;
}

/* Care office teaser */
@media (max-width: 768px) {
  .careOffice01 .l-container,
  .careOffice02 .l-container,
  .careOffice03 .l-container,
  .careOffice04 .l-container {
    width: 100%;
    margin: 0;
  }
}
.careOffice01__tags,
.careOffice02__tags,
.careOffice03__tags,
.careOffice04__tags {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 14px;
}
@media (max-width: 768px) {
  .careOffice01__tags,
  .careOffice02__tags,
  .careOffice03__tags,
  .careOffice04__tags {
    justify-content: center;
    margin-bottom: 14px;
    flex-direction: column;
    align-items: center;
  }
}
.careOffice01__more,
.careOffice02__more,
.careOffice03__more,
.careOffice04__more {
  margin: 50px 0 0;
}
@media (max-width: 768px) {
  .careOffice01__more,
  .careOffice02__more,
  .careOffice03__more,
  .careOffice04__more {
    margin: 30px 0 0;
    text-align: center;
  }
}
.careOffice01__card,
.careOffice02__card,
.careOffice03__card,
.careOffice04__card {
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .careOffice01__card,
  .careOffice02__card,
  .careOffice03__card,
  .careOffice04__card {
    border-radius: 0;
  }
}
.careOffice01__bar,
.careOffice02__bar,
.careOffice03__bar,
.careOffice04__bar {
  background: #173a5a;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 18px 16px;
  font-size: 2rem;
}
.careOffice01__title,
.careOffice02__title,
.careOffice03__title,
.careOffice04__title {
  margin: 0;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0a3a66;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .careOffice01__title,
  .careOffice02__title,
  .careOffice03__title,
  .careOffice04__title {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}

.careOffice01__body {
  padding: 34px 44px 44px;
}
@media (max-width: 768px) {
  .careOffice01__body {
    padding: 22px 16px 22px;
  }
}
.careOffice01__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .careOffice01__head {
    margin-bottom: 18px;
  }
}
.careOffice01__icon {
  width: 71px;
  height: 71px;
  display: grid;
  place-items: center;
}
.careOffice01__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
@media (max-width: 768px) {
  .careOffice01__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.careOffice01__photo {
  margin: 0;
  max-width: 397px;
}
.careOffice01__photo img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}
.careOffice01__tagIcon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #4eaa47;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.careOffice01__lead {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0a3a66;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .careOffice01__lead {
    font-size: 2.2rem;
    text-align: center;
  }
}
.careOffice01__txt {
  color: #0a3a66;
}
.careOffice01__insta {
  margin: 50px 0;
}
@media (max-width: 768px) {
  .careOffice01__content {
    text-align: left;
  }
}

.careOffice02__body {
  padding: 34px 44px 44px;
}
@media (max-width: 768px) {
  .careOffice02__body {
    padding: 22px 16px 22px;
  }
}
.careOffice02__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .careOffice02__head {
    margin-bottom: 18px;
  }
}
.careOffice02__icon {
  width: 71px;
  height: 71px;
  display: grid;
  place-items: center;
}
.careOffice02__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .careOffice02__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    flex-direction: column;
  }
}
.careOffice02__photo {
  order: 2;
  margin: 0;
  max-width: 397px;
}
@media (max-width: 768px) {
  .careOffice02__photo {
    order: initial;
  }
}
.careOffice02__photo img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}
.careOffice02__tagIcon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #4eaa47;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.careOffice02__lead {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0a3a66;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .careOffice02__lead {
    font-size: 2.2rem;
    text-align: center;
  }
}
.careOffice02__txt {
  color: #0a3a66;
}
@media (max-width: 768px) {
  .careOffice02__content {
    text-align: left;
  }
}

.careOffice03__body {
  padding: 34px 44px 44px;
}
@media (max-width: 768px) {
  .careOffice03__body {
    padding: 22px 16px 22px;
  }
}
.careOffice03__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .careOffice03__head {
    margin-bottom: 18px;
  }
}
.careOffice03__icon {
  width: 71px;
  height: 71px;
  display: grid;
  place-items: center;
}
.careOffice03__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
@media (max-width: 768px) {
  .careOffice03__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.careOffice03__photo {
  margin: 0;
  max-width: 397px;
}
.careOffice03__photo img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}
.careOffice03__tagIcon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #4eaa47;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.careOffice03__lead {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0a3a66;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .careOffice03__lead {
    font-size: 2.2rem;
    text-align: center;
  }
}
.careOffice03__txt {
  color: #0a3a66;
}
@media (max-width: 768px) {
  .careOffice03__content {
    text-align: left;
  }
}

.careOffice04__body {
  padding: 34px 44px 44px;
}
@media (max-width: 768px) {
  .careOffice04__body {
    padding: 22px 16px 22px;
  }
}
.careOffice04__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .careOffice04__head {
    margin-bottom: 18px;
  }
}
.careOffice04__icon {
  width: 71px;
  height: 71px;
  display: grid;
  place-items: center;
}
.careOffice04__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .careOffice04__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    flex-direction: column;
  }
}
.careOffice04__photo {
  order: 2;
  margin: 0;
  max-width: 397px;
}
@media (max-width: 768px) {
  .careOffice04__photo {
    order: initial;
  }
}
.careOffice04__photo img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}
.careOffice04__tagIcon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #4eaa47;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.careOffice04__lead {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0a3a66;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .careOffice04__lead {
    font-size: 2.2rem;
    text-align: center;
  }
}
.careOffice04__txt {
  color: #0a3a66;
}
@media (max-width: 768px) {
  .careOffice04__content {
    text-align: left;
  }
}

.bnrLink {
  padding-bottom: 200px;
  background: url(../images/common/bnrLink-img.png) no-repeat center bottom/481px auto;
}
.bnrLink__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.bnrLink__inner ul {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
@media (max-width: 768px) {
  .bnrLink__inner ul {
    flex-direction: column;
    text-align: center;
  }
}
.bnrLink__inner ul li {
  width: 50%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .bnrLink__inner ul li {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .map-inner iframe {
    max-height: 30vh;
  }
}

/* Footer */
.footer {
  padding: 0;
  background: #fff;
}
.footer__inner {
  display: grid;
  gap: 20px;
  color: #082c6f;
}
.footer__info {
  text-align: center;
}
.footer__info-contact {
  margin-top: 20px;
}
.footer__mark {
  height: 126px;
  width: auto;
  margin: 30px 0 30px;
}
@media (max-width: 480px) {
  .footer__mark {
    height: 70px;
    margin: 15px 0 15px;
  }
}
.footer__address, .footer__tel, .footer__access {
  margin: 0;
}
.footer__tel {
  font-weight: 700;
}
.footer .footer__copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;
  padding: 5px;
  margin-top: 100px;
  background: #4daa46;
}
@media (max-width: 768px) {
  .footer .footer__copyright {
    margin-top: 50px;
  }
}
.footer .sendanList {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0;
  margin: 50px auto 60px;
}
@media (max-width: 768px) {
  .footer .sendanList {
    flex-direction: column;
    justify-content: center;
  }
}
.footer .sendanList li {
  list-style: none;
}
.footer .group {
  text-align: center;
}
.footer .group ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 50px auto 60px;
}
@media (max-width: 768px) {
  .footer .group ul {
    flex-direction: column;
  }
}
.footer .group ul li {
  width: 30%;
  list-style: none;
}
@media (max-width: 768px) {
  .footer .group ul li {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
}
.footer .group ul li img {
  max-height: 90px;
}

.fnav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 5%;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .fnav__list {
    display: none;
  }
}
.fnav__link {
  font-size: 1.8rem;
  font-weight: 600;
}

/* PageTop */
.pageTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #4eaa47;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  /* 初期は非表示（ふわっと出す） */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.35s ease;
}
.pageTop:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .pageTop {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}
.pageTop.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pageTop__icon {
  width: 12px;
  height: 12px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: 4px; /* 少し上向きに見せる */
}/*# sourceMappingURL=style.css.map */