@charset "UTF-8";
/* ====================
 Common
======================= */
html {
  font-family: "Zen Kaku Gothic New", sans-serif, "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 500;
  color: rgb(35, 24, 21);
  scroll-behavior: smooth;
}

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

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

.sm-only {
  display: none;
}
@media (max-width: 538px) {
  .sm-only {
    display: block;
  }
}

section {
  width: 100%;
  padding: 0 20px;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(40px, 10.4vw, 80px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7.8125vw, 60px);
  align-items: center;
}

.section-title {
  font-size: clamp(24px, 5.2vw, 32px);
  text-align: center;
  color: rgb(0, 66, 154);
  line-height: 1.6;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

.blue {
  color: rgb(0, 66, 154);
}

.pink {
  color: rgb(234, 97, 111);
}

/* ====================
 ヘッダー
======================= */
/* ====================
 ヘッダー
======================= */
#header {
  position: fixed;
  top: -62px;
  right: 0;
  left: 0;
  z-index: 99;
  margin: auto;
  padding: 0 30px;
  background-color: #F7F5F5;
  opacity: 0;
  transition: all 0.5s ease;
}

#header.fixed {
  opacity: 1;
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  min-height: 62px;
}

.header-logoWrap {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-logo {
  display: block;
  height: 32px;
  width: auto;
  aspect-ratio: 241/22;
}
@media (max-width: 768px) {
  .header-logo {
    height: 20px;
  }
}

.header-date {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header-date {
    display: none;
  }
}
.header-date .fz-sm {
  font-size: 14px;
}

/* ====================
 ハンバーガー
======================= */
.nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.header-border {
  position: relative;
  display: block;
  top: 14px;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: rgb(35, 24, 21);
  transition: 0.3s;
  cursor: pointer;
}
.header-border::before, .header-border::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: rgb(35, 24, 21);
  transition: 0.3s;
  cursor: pointer;
}
.header-border::before {
  top: 8px;
}
.header-border::after {
  bottom: 8px;
}
.header-border:where(.is-open *) {
  background: transparent;
}
.header-border:where(.is-open *)::before {
  top: 0;
  transform: rotate(45deg);
}
.header-border:where(.is-open *)::after {
  bottom: 0;
  transform: rotate(135deg);
}

/* ====================
 メニュー
======================= */
.header-nav {
  display: none;
  position: fixed;
  top: -62px;
  right: 0;
  z-index: 99;
  width: 216px;
  border-radius: 4px;
  background-color: #F7F5F5;
  transition: all 0.5s ease;
}
@media (max-width: 538px) {
  .header-nav {
    height: 100%;
  }
}
.header-nav.is-open {
  display: block;
  top: 60px;
}

.nav-list {
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-item {
  list-style: none;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .nav-item:hover {
    background-color: rgb(0, 66, 154);
  }
  .nav-item:hover .nav-link {
    color: rgb(255, 255, 255);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav-item:hover {
    background-color: rgb(0, 66, 154);
  }
  .nav-item:hover .nav-link {
    color: rgb(255, 255, 255);
  }
}

.nav-link {
  display: block;
  padding: 8px 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

/* ====================
 フッター
======================= */
.footer {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .inner {
  max-width: none;
  gap: 24px;
  padding: 0;
  text-align: center;
  color: rgb(35, 24, 21);
}
.footer .credit,
.footer .accessibility-title {
  font-size: 18px;
  line-height: 1.4;
}
.footer .fz-sm {
  font-size: 15px;
}
.footer .copyright {
  font-size: 14px;
}/*# sourceMappingURL=common.css.map */