/*初期設定*/
*{padding:0; margin:0%;}
/*font-size:16PX*/
html{font-size:100%; overflow: auto;}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: 'Noto Serif JP', serif;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open main,
body.menu-open section,
body.menu-open footer {
  pointer-events: none;
}
body.menu-open .header,
body.menu-open .mobile-menu {
  pointer-events: auto;
}
body.menu-open::before {
  content: "";
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 80px);
  background: transparent;
  z-index: 2400;
  pointer-events: auto;
}
/*各種font設定*/
li{
    list-style: none;}
a{
    text-decoration:none;}



/*header*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100%;
  height: 80px;
  background: #646363f8;

  transition: 0.3s ease;
}


.header__inner {
  width: 100%;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.header__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ef5b4f;
  font-size: 15px;
  font-weight: 700;
}

.header__logo-text strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.header__logo-text small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.header__nav a:hover,
.header__nav a.is-active {
  color: #ef5b4f;
}

.header__request {
  padding: 12px 22px;
  border-radius: 999px;
  background: #ef5b4f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.header__request::after {
  content: " →";
}

.header__hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: 0.3s ease;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 2500;
  width: min(360px, 86%);
  height: calc(100dvh - 80px);
  padding: 40px 32px;
  background: rgba(35, 28, 22, 0.96);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.is-active {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: grid;
  gap: 22px;
}

.mobile-menu__nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu__request {
  margin-top: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #ef5b4f;
  text-align: center;
}


@media (max-width: 1024px) {
  .header__nav,
  .header__request {
    display: none;
  }

  .header__hamburger {
    display: block;
  }

}

@media (max-width: 640px) {
  body {
    padding-top: 70px;
  }

  body.menu-open::before {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .mobile-menu {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .header {
    height: 70px;
  }

}




/* section-news */
.section-news {
  background: #fbfaf7;
  color: #102236;
}

.section-news__fv {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(18, 24, 30, 0.72) 0%,
      rgba(18, 24, 30, 0.42) 50%,
      rgba(18, 24, 30, 0.14) 100%
    ),
    url("../img/news/news-fv.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-news__fv::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -120px;
  width: 110%;
  height: 210px;
  border-radius: 50%;
  background: #fbfaf7;
}

.section-news__fv-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 88px;
}

.section-news__breadcrumb {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

.section-news__en,
.section-news__sub-en {
  margin-bottom: 10px;
  color: #ef5b4f;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.section-news__title {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-news__lead {
  max-width: 780px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* content */
.section-news__content {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 96px;
}

.section-news__head {
  text-align: center;
}

.section-news__sub-title {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-news__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.section-news__categories button {
  min-width: 74px;
  height: 32px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #425160;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.section-news__categories button.is-active,
.section-news__categories button:hover {
  background: #ef5b4f;
  color: #fff;
}

.section-news__list {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.news-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(31, 23, 18, 0.04);
  transition: 0.3s ease;
}

.news-item.is-hidden {
  display: none;
}

.news-item:hover {
  transform: translateY(-3px);
}

.news-item a {
  position: relative;
  display: grid;
  grid-template-columns: 92px 84px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  color: inherit;
}

.news-item time {
  color: #8c7c73;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.news-item__cat--notice {
  background: #ffe8e6;
  color: #ef5b4f;
}

.news-item__cat--service {
  background: #e7f3ee;
  color: #147856;
}

.news-item__cat--quality {
  background: #fff1d6;
  color: #b76b00;
}

.news-item__cat--event {
  background: #e5f0ff;
  color: #2469b2;
}

.news-item h3 {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.news-item p {
  color: #66717b;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}

.news-item__arrow {
  color: #a7a7a7;
  font-size: 24px;
  line-height: 1;
  text-align: right;
}

.section-news__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.section-news__pagination a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #425160;
  font-size: 12px;
  font-weight: 700;
}

.section-news__pagination a.is-active,
.section-news__pagination a:hover {
  background: #ef5b4f;
  color: #fff;
}

@media (max-width: 760px) {
  .news-item a {
    grid-template-columns: 1fr 84px;
    gap: 10px 14px;
  }

  .news-item time {
    grid-column: 1;
  }

  .news-item__cat {
    grid-column: 2;
    justify-self: end;
  }

  .news-item h3,
  .news-item p {
    grid-column: 1 / -1;
  }

  .news-item__arrow {
    position: absolute;
    right: 20px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .section-news__fv {
    min-height: 320px;
  }

  .section-news__fv-inner,
  .section-news__content {
    width: calc(100% - 32px);
  }

  .section-news__fv-inner {
    padding: 58px 0 84px;
  }

  .section-news__content {
    padding: 64px 0 76px;
  }

  .section-news__lead {
    font-size: 13px;
    line-height: 1.8;
  }

  .section-news__list {
    margin-top: 38px;
  }

  .news-item a {
    padding: 22px 20px;
  }
}





/* footer */
.footer {
  background: #153f35;
  color: #fff;
}

.footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 80px;
  padding: 90px 0 56px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ef5b4f;
  font-size: 16px;
  font-weight: 700;
}

.footer__logo strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.footer__logo small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1;
}

.footer__description {
  margin-top: 26px;
  color: #d7e5df;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
}

.footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__sns a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer__sns a:hover {
  background: #ef5b4f;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.footer__group-title {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  pointer-events: none;
}

.footer__group-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.footer__group-list a {
  color: #c8d9d3;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer__group-list a:hover {
  color: #ef5b4f;
}

.footer__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 34px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__info-item {
  display: flex;
  gap: 14px;
}

.footer__info-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ef5b4f;
  font-size: 13px;
}

.footer__info-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.footer__info-item p {
  color: #d7e5df;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.footer__bottom {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  color: #a9c2ba;
  font-size: 12px;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__nav {
    gap: 32px;
  }

  .footer__info {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .footer__inner {
    width: calc(100% - 32px);
  }

  .footer__top {
    padding: 64px 0 36px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__group {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer__group:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer__group-title {
    position: relative;
    padding: 20px 0;
    cursor: pointer;
    pointer-events: auto;
  }

  .footer__group-title::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
  }

  .footer__group.is-open .footer__group-title::after {
    content: "−";
  }

  .footer__group-list {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    gap: 0;
    transition: max-height 0.35s ease;
  }

  .footer__group-list li {
    padding-bottom: 16px;
  }

  .footer__group.is-open .footer__group-list {
    max-height: 220px;
  }

  .footer__info {
    padding: 34px 0 42px;
  }
}

