@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Noto+Sans+JP:wght@400;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.8;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #206490;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
a:hover {
  color: #245a72;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.l-container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .l-container {
    padding: 0 32px;
  }
}

.l-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 32px 0;
}
@media (min-width: 1024px) {
  .l-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 48px 0;
  }
}
.l-content__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.l-content__side {
  width: 100%;
}
@media (min-width: 1024px) {
  .l-content__side {
    width: 280px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.l-section {
  padding: 48px 0;
}
.l-section--gray {
  background-color: #f5f5f5;
}
.l-section--primary {
  background-color: #206490;
  color: #ffffff;
}

.c-section-title {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}
.c-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #206490;
  margin: 8px auto 0;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  .c-section-title {
    font-size: 30px;
    margin-bottom: 48px;
  }
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mt-sm {
  margin-top: 8px;
}

.u-mt-md {
  margin-top: 16px;
}

.u-mt-lg {
  margin-top: 24px;
}

.u-mt-xl {
  margin-top: 32px;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-sm {
  margin-bottom: 8px;
}

.u-mb-md {
  margin-bottom: 16px;
}

.u-mb-lg {
  margin-bottom: 24px;
}

.u-mb-xl {
  margin-bottom: 32px;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  height: 60px;
}
@media (min-width: 1024px) {
  .l-header {
    height: auto;
  }
}
.l-header__inner {
  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;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .l-header__inner {
    padding: 0 32px;
  }
}
.l-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.l-header__logo-img {
  height: 40px;
  width: auto;
}
@media (min-width: 1024px) {
  .l-header__logo-img {
    height: 48px;
  }
}
@media (min-width: 1200px) {
  .l-header__logo-img {
    height: 56px;
  }
}

.g-nav {
  display: none;
}
@media (min-width: 1024px) {
  .g-nav {
    display: block;
  }
}
.g-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
}
.g-nav__item {
  position: relative;
}
.g-nav__item:hover > .g-nav__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.g-nav__item.inquiry_menu {
  position: absolute;
  right: 0;
  bottom: -80px;
}
.g-nav__link {
  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;
  padding: 16px 8px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  text-align: center;
  min-height: 72px;
}
@media (min-width: 1024px) {
  .g-nav__link {
    padding: 16px 12px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .g-nav__link {
    padding: 16px 16px;
    font-size: 16px;
  }
}
.g-nav__link:hover {
  color: #206490;
  background-color: rgba(32, 100, 144, 0.1);
  text-decoration: none;
}
.g-nav__link--active {
  color: #206490;
  border-bottom: 3px solid #206490;
}
.g-nav__link--inquiry {
  background-color: #d86a97;
  color: #ffffff;
  border-radius: 8px 0 0 8px;
  margin: 4px 0;
  min-height: auto;
  padding: 8px 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4px;
}
.g-nav__link--inquiry i {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
}
.g-nav__link--inquiry:hover {
  background-color: #d34c84;
  color: #ffffff;
}
.g-nav__icon {
  width: auto;
  height: 30px;
  margin-bottom: 4px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1200px) {
  .g-nav__icon {
    height: 40px;
  }
}
.g-nav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-8px);
          transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, border-radius 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, border-radius 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, border-radius 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, border-radius 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 100;
}
.g-nav__submenu:has(.g-nav__sublink--parent:hover), .g-nav__submenu:has(.g-nav__subitem--has-child:hover) {
  border-radius: 0 0 0 8px;
}
.g-nav__subitem {
  border-bottom: 1px solid #eeeeee;
}
.g-nav__subitem:last-child {
  border-bottom: none;
}
.g-nav__sublink {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.g-nav__sublink:hover {
  background-color: rgba(32, 100, 144, 0.1);
  color: #206490;
  text-decoration: none;
}
.g-nav__sublink--parent {
  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;
}
.g-nav__sublink--parent i {
  font-size: 10px;
  color: #666666;
  margin-left: 4px;
}
.g-nav__subitem--has-child {
  position: relative;
}
.g-nav__subitem--has-child:hover > .g-nav__subsubmenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.g-nav__subsubmenu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 220px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 101;
}
.g-nav__subsublink {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.g-nav__subsublink:last-child {
  border-bottom: none;
}
.g-nav__subsublink:hover {
  background-color: rgba(32, 100, 144, 0.1);
  color: #206490;
  text-decoration: none;
}

.c-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
}
@media (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__bars {
  position: relative;
  width: 24px;
  height: 18px;
}
.c-hamburger__bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #206490;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.c-hamburger__bar:nth-child(1) {
  top: 0;
}
.c-hamburger__bar:nth-child(2) {
  top: 8px;
}
.c-hamburger__bar:nth-child(3) {
  top: 16px;
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.m-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 60px;
}
.m-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 1024px) {
  .m-nav {
    display: none !important;
  }
}
.m-nav {
  /* &__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: $spacing-sm $spacing-md;
      background-color: $color-white;
      border-bottom: 2px solid $color-primary;
      flex-shrink: 0;
      min-height: $header-height-sp;
  } */
  /* &__logo {
      display: flex;
      flex-direction: column;
      line-height: 1.2;

      &-sub {
          font-size: $font-size-xs;
          color: $color-text;
          font-weight: 400;
      }

      &-main {
          font-family: $font-heading;
          font-size: $font-size-lg;
          font-weight: 700;
          color: #206490;
      }
  } */
  /* &__close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: none;
      background: none;
      cursor: pointer;
      font-size: $font-size-xl;
      color: $color-primary;
      transition: color $transition-fast;

      &:hover {
          color: $color-primary;
      }
  } */
}
.m-nav__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 100px;
}
.m-nav__list {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.m-nav__item {
  background-color: rgba(32, 100, 144, 0.1);
  border-radius: 12px;
  overflow: hidden;
  --m-menu-sub-nums: 1;
}
.m-nav__item:hover {
  background-color: rgba(32, 100, 144, 0.1);
}
.m-nav__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  text-decoration: none;
  position: relative;
  min-height: 70px;
}
.m-nav__card--link {
  color: #333333;
  cursor: pointer;
  text-decoration: none !important;
}
.m-nav__card--link:hover {
  color: #333333;
}
.m-nav__card-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
}
.m-nav__card-icon {
  width: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 8px;
}
.m-nav__card-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9px;
  text-align: center;
  margin: 0 3.5px 0 19.5px;
  color: #206490;
  font-size: 18px;
}
.m-nav__card:has(+ .m-nav__sublist) {
  padding-right: 48px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.m-nav__toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: #206490;
}
.m-nav__toggle i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.m-nav__toggle.is-active i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.m-nav__sublist {
  border-top: none;
  margin-top: -4px;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  height: 0;
}
.m-nav__sublist.is-open {
  height: calc(40px * var(--m-menu-sub-nums) + 6px);
}
.m-nav__sublist > li:nth-last-child(1) > a::after, .m-nav__sublist > li.m-nav__sub-expandable > .m-nav__sub-toggle-wrap > a::after {
  display: none;
}
.m-nav__sublink {
  position: relative;
  display: block;
  padding: 8px 24px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.m-nav__sublink::after {
  content: "";
  display: block;
  width: calc(100% - 24px * 2);
  height: 1px;
  line-height: 0;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 24px;
}
.m-nav__sublink {
  /* &::before {
    content: '・';
    color: $color-primary;
    margin-right: $spacing-xs;
  } */
}
.m-nav__sublink:hover {
  color: #245a72;
  background-color: rgb(188.1, 208.5, 221.7);
  text-decoration: none;
}
.m-nav__sub-toggle-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #eeeeee;
}
.m-nav__sub-toggle-wrap .m-nav__sublink {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: none;
}
.m-nav__subtoggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: #206490;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.m-nav__subtoggle i {
  -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;
}
.m-nav__subtoggle.is-active i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.m-nav__subsublist {
  display: none;
}
.m-nav__subsublist.is-open {
  display: block;
}
.m-nav__subsublist > li:nth-last-child(1) > a::after {
  display: none;
}
.m-nav__sublink--deep {
  padding-left: 32px;
}
.m-nav__sublink--deep::before {
  content: "・ ";
  color: #206490;
  margin-right: 0;
}
.m-nav__sub-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 32px;
  padding: 16px 16px 0;
  border-top: 1px solid #eeeeee;
  margin: 8px 16px 0;
  padding-top: 16px;
}
.m-nav__sub-link {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
}
.m-nav__sub-link i {
  margin-right: 4px;
  color: #206490;
  font-size: 12px;
}
.m-nav__sub-link:hover {
  color: #206490;
  text-decoration: none;
}
.m-nav__footer {
  margin: 24px 0 0;
  text-align: center;
}
.m-nav__footer-address {
  font-size: 14px;
  color: #206490;
  line-height: 1.8;
  margin-bottom: 16px;
}
.m-nav__footer-map-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 32px;
  background-color: #ffffff;
  border: solid 2px #333333;
  color: #333333;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: border-color background-color 0.2s ease;
  transition: border-color background-color 0.2s ease;
}
.m-nav__footer-map-btn:hover {
  border-color: #206490;
  background-color: #206490;
  color: #ffffff;
  text-decoration: none;
}

.m-nav__item.m-nav__item--profile {
  --m-menu-sub-nums: 8;
}
.m-nav__item.m-nav__item--bushi {
  --m-menu-sub-nums: 2;
}
.m-nav__item.m-nav__item--jigyo {
  --m-menu-sub-nums: 6;
}
.m-nav__item.m-nav__item--inspect {
  --m-menu-sub-nums: 3;
}

.m-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1040;
}
.m-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .m-nav-overlay {
    display: none !important;
  }
}

.l-contact {
  background-color: #fefff3;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 12vw 0 2rem;
}
.l-contact__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .l-contact__inner {
    padding: 0 32px;
  }
}
.l-contact__title {
  color: #206490;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .l-contact__title {
    font-size: 30px;
  }
}
.l-contact__box {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px 32px;
  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;
  gap: 24px;
}
@media (min-width: 768px) {
  .l-contact__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 48px;
  }
}
.l-contact__col {
  text-align: center;
}
@media (min-width: 768px) {
  .l-contact__col {
    text-align: left;
  }
}
.l-contact__col--full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 1024px) {
  .l-contact__col--full {
    text-align: center;
  }
}
.l-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
}
@media (max-width: 767px) {
  .l-contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 575px) {
  .l-contact__row {
    gap: 0 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-contact__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.l-contact__row > .l-contact__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
}
@media (min-width: 1024px) {
  .l-contact__row > .l-contact__col {
    display: block;
  }
}
.l-contact__label {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
@media (min-width: 576px) and (max-width: 1023px) {
  .l-contact__label {
    margin-bottom: 0;
  }
  .l-contact__label + p {
    margin-bottom: 0.5rem;
  }
}
.l-contact__phone {
  font-size: 30px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  line-height: 0.75em;
}
@media (min-width: 768px) {
  .l-contact__phone {
    font-size: 40px;
  }
}
.l-contact__phone i {
  color: #206490;
  font-size: 24px;
}
@media (min-width: 768px) {
  .l-contact__phone i {
    font-size: 30px;
  }
}
.l-contact__phone a {
  color: inherit;
  text-decoration: none;
}
.l-contact__phone a:hover {
  opacity: 0.8;
}
.l-contact__note {
  font-size: 12px;
  color: #333333;
  margin-top: 4px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .l-contact__note br {
    display: none;
  }
}
.l-contact__fax {
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  color: #333333;
  line-height: 1.25em;
}
@media (min-width: 768px) {
  .l-contact__fax {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-contact__fax {
    line-height: 0.75em;
  }
}
.l-contact__fax i {
  color: #206490;
  font-size: 18px;
}
@media (min-width: 768px) {
  .l-contact__fax i {
    font-size: 20px;
  }
}
.l-contact__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 16px;
  background-color: #d86a97;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  min-width: 280px;
}
@media (min-width: 1024px) {
  .l-contact__btn {
    min-width: 300px;
  }
}
.l-contact__btn > span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-align: center;
}
.l-contact__btn:hover {
  background-color: #d34c84;
  color: #ffffff;
  text-decoration: none;
}

.l-footer {
  position: relative;
  color: #333333;
  margin-top: auto;
  overflow: hidden;
  background-color: #c3eabf;
}
.l-footer__inner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px 24px;
}
@media (min-width: 1024px) {
  .l-footer__inner {
    padding: 0 32px 24px;
  }
}
@media (max-width: 575px) {
  .l-footer__inner {
    padding-bottom: 60px;
  }
}
.l-footer__nav {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px 32px;
}
.l-footer__nav-link {
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 500;
}
.l-footer__nav-link i {
  margin-right: 4px;
  font-size: 12px;
  color: #206490;
}
.l-footer__nav-link:hover {
  color: #206490;
  text-decoration: underline;
}
.l-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .l-footer__main {
    -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;
    text-align: center;
  }
}
.l-footer__info {
  text-align: center;
}
.l-footer__org {
  font-size: 14px;
  color: #666666;
  margin-bottom: 4px;
}
.l-footer__name {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #206490;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .l-footer__name {
    font-size: 30px;
  }
}
.l-footer__address {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .l-footer__address br {
    display: none;
  }
}
.l-footer__character {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
.l-footer__character-img {
  width: 120px;
  height: auto;
}
@media (min-width: 768px) {
  .l-footer__character-img {
    width: 200px;
  }
}
.l-footer__bottom {
  text-align: center;
  padding-top: 16px;
}
.l-footer__copyright {
  font-size: 12px;
  color: #333333;
}
@media (min-width: 576px) {
  .l-footer__copyright br {
    display: none;
  }
}
@media (max-width: 575px) {
  .l-footer__copyright {
    display: block;
    line-height: 1.75em;
  }
}

.l-sp-bottom-bar {
  display: none;
}
@media (max-width: 1023px) {
  .l-sp-bottom-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1060;
    -webkit-box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  }
}
.l-sp-bottom-bar__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px 8px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 500;
  height: 70px;
}
.l-sp-bottom-bar__btn i {
  font-size: 24px;
}
.l-sp-bottom-bar__btn--phone {
  background-color: #e9dd57;
  color: #206490;
}
.l-sp-bottom-bar__btn--phone:hover {
  background-color: rgb(227.0947368421, 211.8736842105, 41.9052631579);
  color: #206490;
  text-decoration: none;
}
.l-sp-bottom-bar__btn--mail {
  background-color: #d86a97;
  color: #ffffff;
}
@media (max-width: 575px) {
  .l-sp-bottom-bar__btn--mail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 125px;
            flex: 0 0 125px;
    display: block;
    padding: 0.75rem;
    white-space: wrap;
    line-height: 1.5em;
  }
  .l-sp-bottom-bar__btn--mail > i {
    width: 100%;
    text-align: center;
  }
}
.l-sp-bottom-bar__btn--mail:hover {
  background-color: #d34c84;
  color: #ffffff;
  text-decoration: none;
}

.c-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: #206490;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  z-index: 900;
}
@media (max-width: 1023px) {
  .c-scroll-top {
    bottom: 80px;
    right: 16px;
  }
}
@media (max-width: 575px) {
  .c-scroll-top {
    right: 8px;
  }
}
.c-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-scroll-top:hover {
  background-color: #245a72;
}

.l-pickup {
  padding: 48px 0;
  background-color: #fefff3;
}
.l-pickup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 32px;
}
.l-pickup__title-icon {
  height: 40px;
  width: auto;
}
@media (min-width: 768px) {
  .l-pickup__title-icon {
    height: 48px;
  }
}
.l-pickup__title-text {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #206490;
}
@media (min-width: 768px) {
  .l-pickup__title-text {
    font-size: 30px;
  }
}
.l-pickup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto;
  max-width: 720px;
}
@media (min-width: 576px) {
  .l-pickup__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .l-pickup__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-pickup__card {
  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;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #eeeeee;
  border-radius: 8px;
  padding: 24px 8px;
  text-decoration: none;
  color: #333333;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  position: relative;
}
.l-pickup__card:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #206490;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  text-decoration: none;
  color: #333333;
}
.l-pickup__card-icon {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .l-pickup__card-icon {
    width: 64px;
    height: 64px;
  }
}
.l-pickup__card-label {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .l-pickup__card-label {
    font-size: 14px;
  }
}
.l-pickup__card-arrow {
  position: absolute;
  bottom: 4px;
  right: 8px;
  font-size: 12px;
  color: #206490;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.l-pickup__card:hover .l-pickup__card-arrow {
  opacity: 1;
}

.c-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
}
.c-slideshow .swiper-wrapper.is-marquee {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: none;
  transition: none;
  -webkit-animation-name: c-slideshow-marquee;
          animation-name: c-slideshow-marquee;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  will-change: transform;
}
.c-slideshow .swiper-wrapper.is-marquee .swiper-slide {
  width: 60vw;
}
.c-slideshow .swiper-slide img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .c-slideshow .swiper-slide img {
    height: 450px;
  }
}
@media (min-width: 1024px) {
  .c-slideshow .swiper-slide img {
    height: 560px;
  }
}

@-webkit-keyframes c-slideshow-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes c-slideshow-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-top-notice {
  padding: 64px 0;
  position: relative;
  background-color: #f6f6f6;
  --ltn-back-width: 1320px;
  --ltn-back-height: 100%;
  --ltn-cont-width: 720px;
  overflow: hidden;
}
.l-top-notice > .l-container {
  position: relative;
  z-index: 3;
  max-width: var(--ltn-cont-width);
}
.l-top-notice::before, .l-top-notice::after {
  content: "";
  display: block;
  width: var(--ltn-back-width);
  height: var(--ltn-back-height);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-top-notice::before {
  z-index: 0;
  background-image: url("/storage/images/top/notice_back_left.webp"), url("/storage/images/top/notice_back_right.webp"), url("/storage/images/top/notice_repeat-x_center.webp");
  background-size: auto 690px, auto 690px, 720px 690px;
  background-position: left -7% bottom, right -5% bottom, center bottom;
  background-repeat: no-repeat, no-repeat, no-repeat;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, #000), color-stop(90%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(10%, #000), color-stop(90%, #000), to(transparent));
          mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
@media (max-width: 1023px) {
  .l-top-notice {
    --ltn-back-width: 1080px;
    --ltn-cont-width: 480px;
  }
}
@media (max-width: 767px) {
  .l-top-notice {
    --ltn-back-width: 100%;
    --ltn-back-height: 75vw;
    --ltn-cont-width: 480px;
    padding-bottom: 40vw;
  }
  .l-top-notice::before {
    background-position: left -7% bottom, right -5% bottom, center bottom;
    background-size: auto 75vw, auto 75vw, 100vw 75vw;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, #000));
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%);
            mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, #000));
            mask-image: linear-gradient(180deg, transparent 0%, #000 25%);
  }
}
@media (max-width: 575px) {
  .l-top-notice {
    --ltn-back-height: 100vw;
    padding-bottom: 55vw;
  }
  .l-top-notice::before {
    background-position: left -20% bottom, right -15% bottom, center bottom;
    background-size: auto 90vw, auto 90vw, 40vw 90vw;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, #000));
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%);
            mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, #000));
            mask-image: linear-gradient(180deg, transparent 0%, #000 25%);
  }
}
.l-top-notice__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #206490;
}
@media (min-width: 768px) {
  .l-top-notice__heading {
    font-size: 36px;
  }
}
.l-top-notice__heading-icon {
  height: 36px;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .l-top-notice__heading-icon {
    height: 44px;
  }
}
.l-top-notice__list {
  max-width: 800px;
  margin: 0 auto;
}
.l-top-notice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 575px) {
  .l-top-notice__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
}
.l-top-notice__date {
  font-size: 14px;
  color: #999999;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 80px;
}
.l-top-notice__badge {
  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;
  padding: 2px 8px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.6;
  min-width: 70px;
  text-align: center;
}
.l-top-notice__badge--important {
  background-color: #dc2626;
}
.l-top-notice__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 14px;
  color: #333333;
}
@media (max-width: 575px) {
  .l-top-notice__title {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.l-top-notice__title a {
  color: #206490;
  text-decoration: none;
}
.l-top-notice__title a:hover {
  color: #206490;
  text-decoration: underline;
}
.l-top-notice__more {
  text-align: center;
  margin-top: 32px;
}

.c-btn-more {
  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;
  gap: 8px;
  padding: 8px 48px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #333333;
  background-color: transparent;
  color: #333333;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.c-btn-more i {
  font-size: 10px;
}
.c-btn-more:hover {
  background-color: #206490;
  border-color: #206490;
  color: #ffffff;
  text-decoration: none;
}

.l-top-info {
  position: relative;
  padding: 64px 0;
}
.l-top-info__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}
.l-top-info__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .l-top-info__columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
.l-top-info__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.l-top-info__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #206490;
}
@media (min-width: 768px) {
  .l-top-info__heading {
    font-size: 30px;
  }
}
.l-top-info__heading-icon {
  height: 36px;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .l-top-info__heading-icon {
    height: 44px;
  }
}

.c-update-info__list {
  max-height: 360px;
  overflow-y: auto;
}
.c-update-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #eeeeee;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px 16px;
}
.c-update-info__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 4px;
}
@media (min-width: 576px) {
  .c-update-info__meta {
    margin-bottom: 0;
  }
}
.c-update-info__date {
  font-size: 14px;
  color: #999999;
  white-space: nowrap;
}
.c-update-info__category {
  /* display: inline-block;
  padding: 2px 10px;
  font-size: $font-size-xs;
  font-weight: 700;
  border-radius: $radius-full;
  white-space: nowrap;
  background-color: $color-primary-light;
  color: $color-primary; */
  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;
  padding: 2px 8px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.6;
  min-width: 70px;
  text-align: center;
}
.c-update-info__title {
  font-size: 14px;
  color: #333333;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  min-width: 0;
}
.c-update-info__title a {
  color: #206490;
  text-decoration: none;
}
.c-update-info__title a:hover {
  color: #206490;
  text-decoration: underline;
}
.c-update-info__more {
  text-align: center;
  margin-top: 32px;
}

.c-btn {
  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;
  gap: 8px;
  padding: 8px 32px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.c-btn--primary {
  background-color: #206490;
  color: #ffffff;
}
.c-btn--primary:hover {
  background-color: #245a72;
  color: #ffffff;
  text-decoration: none;
}
.c-btn--outline {
  background-color: transparent;
  border-color: #206490;
  color: #206490;
}
.c-btn--outline:hover {
  background-color: #206490;
  color: #ffffff;
  text-decoration: none;
}
.c-btn--sm {
  padding: 4px 16px;
  font-size: 12px;
}
.c-btn--lg {
  padding: 16px 48px;
  font-size: 16px;
}

.c-empty {
  text-align: center;
  padding: 32px 0;
}
.c-empty__text {
  color: #999999;
  font-size: 14px;
}

.c-page-hero {
  background-color: #206490;
  color: #ffffff;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .c-page-hero {
    padding: 48px 0;
  }
}
.c-page-hero__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .c-page-hero__inner {
    padding: 0 32px;
  }
}
.c-page-hero__title {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .c-page-hero__title {
    font-size: 30px;
  }
}
.c-page-hero__meta {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.c-page-hero__sub {
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.75;
}
.c-page-hero--image {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-page-hero--image {
    padding: 100px 0;
    min-height: 260px;
  }
}
.c-page-hero--image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.c-page-hero--image .c-page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.c-page-hero--image .c-page-hero__meta {
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}
.c-page-hero--image .c-page-hero__title {
  font-size: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-page-hero--image .c-page-hero__title {
    font-size: 36px;
  }
}
.c-page-hero--image .c-page-hero__sub {
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.c-breadcrumb {
  background-color: #f5f5f5;
  padding: 8px 0;
  font-size: 12px;
}
.c-breadcrumb__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .c-breadcrumb__inner {
    padding: 0 32px;
  }
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.c-breadcrumb__item::after {
  content: ">";
  color: #999999;
  font-size: 10px;
}
.c-breadcrumb__item:last-child::after {
  display: none;
}
.c-breadcrumb__link {
  color: #666666;
  text-decoration: none;
}
.c-breadcrumb__link:hover {
  color: #206490;
  text-decoration: underline;
}
.c-breadcrumb__current {
  color: #333333;
  font-weight: 500;
}

.c-article-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}
@media (min-width: 576px) {
  .c-article-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
}
.c-article-list__item:first-child {
  padding-top: 0;
}
.c-article-list__date {
  font-size: 14px;
  color: #999999;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  margin-bottom: 4px;
}
@media (min-width: 576px) {
  .c-article-list__date {
    margin-bottom: 0;
    min-width: 110px;
  }
}
.c-article-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.c-article-list__title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 4px;
}
.c-article-list__title a {
  color: inherit;
  text-decoration: none;
}
.c-article-list__title a:hover {
  color: #206490;
  text-decoration: underline;
}
.c-article-list__excerpt {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}
.c-article-list__pdf {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #c62828;
  margin-top: 4px;
}
.c-article-list__pdf i {
  font-size: 16px;
}

.c-content-body {
  line-height: 1.9;
}
.c-content-body h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #206490;
}
.c-content-body h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
  padding-left: 16px;
  border-left: 4px solid #206490;
}
.c-content-body p {
  margin-bottom: 16px;
}
.c-content-body ul,
.c-content-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.c-content-body ul {
  list-style: disc;
}
.c-content-body ol {
  list-style: decimal;
}
.c-content-body li {
  margin-bottom: 4px;
}
.c-content-body table {
  margin-bottom: 16px;
}
.c-content-body table th,
.c-content-body table td {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
}
.c-content-body table th {
  background-color: #f5f5f5;
  font-weight: 700;
}
.c-content-body img {
  border-radius: 4px;
  margin: 16px 0;
}
.c-content-body blockquote {
  border-left: 4px solid rgba(32, 100, 144, 0.1);
  padding: 16px 24px;
  margin: 16px 0;
  background-color: #f5f5f5;
  font-style: italic;
}

.c-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.c-detail-table th,
.c-detail-table td {
  padding: 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
}
.c-detail-table th {
  background-color: rgba(32, 100, 144, 0.1);
  color: #245a72;
  font-weight: 700;
  white-space: nowrap;
  width: 160px;
  vertical-align: top;
}
@media (max-width: 576px) {
  .c-detail-table th {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.c-detail-table td {
  background-color: #ffffff;
}
@media (max-width: 576px) {
  .c-detail-table td {
    display: block;
    width: 100%;
  }
}

.c-grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .c-grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .c-grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-grid-list__item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.c-grid-list__item:hover {
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.c-grid-list__more {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  background: rgb(232.7, 239.5, 243.9);
  color: #206490;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1;
  border: none;
}
.c-grid-list__more::after {
  position: absolute;
  content: "";
  top: -9999px;
  left: -9999px;
  right: -9999px;
  bottom: -9999px;
}
.c-grid-list__more:hover {
  background: rgb(210.4, 224, 232.8);
}
.c-grid-list__more i {
  font-size: 10px;
  position: relative;
  z-index: 1;
}
.c-grid-list__image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-grid-list__image--empty {
  background: #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ccc;
}
.c-grid-list__image--empty i {
  font-size: 2rem;
}
.c-grid-list__body {
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-grid-list__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
  color: #333333;
}
.c-grid-list__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.c-grid-list__tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #666666;
}

.c-link-list__item {
  padding: 16px;
  border-bottom: 1px solid #eeeeee;
}
.c-link-list__item:hover {
  background-color: #f5f5f5;
}
.c-link-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333333;
}
.c-link-list__link:hover {
  color: #206490;
  text-decoration: none;
}
.c-link-list__link i {
  color: #206490;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-link-list__title {
  font-size: 16px;
  font-weight: 500;
}
.c-link-list__desc {
  font-size: 14px;
  color: #666666;
  margin-top: 4px;
}

.c-form {
  max-width: 700px;
  margin: 0 auto;
}
.c-form__group {
  margin-bottom: 24px;
}
.c-form__label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.c-form__label .c-form__required {
  display: inline-block;
  background-color: #c62828;
  color: #ffffff;
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 400;
}
.c-form__input, .c-form__textarea, .c-form__select {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.c-form__input:focus, .c-form__textarea:focus, .c-form__select:focus {
  outline: none;
  border-color: #206490;
  -webkit-box-shadow: 0 0 0 3px rgba(32, 100, 144, 0.1);
          box-shadow: 0 0 0 3px rgba(32, 100, 144, 0.1);
}
.c-form__textarea {
  min-height: 160px;
  resize: vertical;
}
.c-form__submit {
  text-align: center;
  margin-top: 32px;
}
.c-form__error {
  font-size: 12px;
  color: #c62828;
  margin-top: 4px;
}

.l-with-sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  padding: 48px 0 64px;
}
@media (max-width: 1024px) {
  .l-with-sidebar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.l-with-sidebar__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.l-with-sidebar__aside {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 220px;
}
@media (max-width: 1024px) {
  .l-with-sidebar__aside {
    width: 100%;
  }
}

.c-sidebar__title {
  color: #206490;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  margin: 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: none;
}
.c-sidebar__title i {
  font-size: 16px;
  color: #206490;
}
.c-sidebar__content {
  border-top: 2px solid #206490;
}
.c-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-sidebar__item {
  margin-bottom: 4px;
}
.c-sidebar__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 8px 4px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  border-bottom: 1px dotted #e0e0e0;
}
.c-sidebar__label:hover {
  background: #fdfdfd;
  opacity: 0.8;
}
.c-sidebar__label.is-active {
  background: #f5f5f5;
}
.c-sidebar__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.c-sidebar__radio:checked + .c-sidebar__mark {
  background-color: var(--cat-bg);
  border-color: var(--cat-color);
}
.c-sidebar__mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--cat-color);
  background-color: var(--cat-color);
  border-radius: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.c-sidebar__name {
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  font-weight: 500;
}

.c-filter-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: #f5f7f9;
  padding: 10px 15px;
  margin-bottom: 32px;
  border-radius: 2px;
  font-size: 14px;
}
.c-filter-bar__title {
  font-weight: 700;
  color: #5b86be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-filter-bar__title i {
  font-size: 14px;
}
.c-filter-bar__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-filter-bar__select {
  padding: 8px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  background: #ffffff;
  cursor: pointer;
}
.c-filter-bar__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 6px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  min-width: 0;
}
.c-filter-bar__btn {
  padding: 6px 15px;
  background: #666;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.c-filter-bar__clear {
  padding: 6px 12px;
  background: #eee;
  color: #555;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.c-post-heading {
  background-color: var(--page-unique-color, #206490);
  color: #ffffff;
  padding: 16px 24px;
  margin-bottom: 24px;
  border-radius: 4px;
}
.c-post-heading__sub {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  opacity: 0.9;
}
.c-post-heading__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: #ffffff;
}
@media (min-width: 768px) {
  .c-post-heading__title {
    font-size: 18px;
  }
}

.c-tabs {
  margin-bottom: 32px;
  border-bottom: 2px solid #eee;
}
.c-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-tabs__item {
  margin-right: 8px;
}
.c-tabs__item.is-active .c-tabs__link {
  color: #206490;
  border-bottom-color: #206490;
  font-weight: 700;
  background-color: #f0f7ff;
}
.c-tabs__link {
  display: block;
  padding: 8px 32px;
  text-decoration: none;
  color: #999999;
  font-size: 14px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.c-tabs__link:hover {
  color: #206490;
  background-color: #f9f9f9;
}

.c-post-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.c-post-list__item:hover {
  background-color: #fcfcfc;
}
.c-post-list__item:hover .c-post-list__title {
  color: #206490;
  text-decoration: underline;
}
.c-post-list__date {
  font-size: 14px;
  color: #999999;
  min-width: 90px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
.c-post-list__badge {
  min-width: 100px;
  text-align: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: 3px;
}
.c-post-list__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #0056b3;
}
.c-post-list__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.c-post-list__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none !important;
  white-space: nowrap;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.c-post-list__btn i.fa-chevron-right {
  font-size: 10px;
  margin-left: 2px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.c-post-list__btn:hover i.fa-chevron-right {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.c-post-list__btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.c-post-list__btn--pdf {
  background-color: rgb(247.2, 225.2, 234.2);
  color: #245a72;
}
.c-post-list__btn--pdf:hover {
  background-color: rgb(239.4, 195.4, 213.4);
}
.c-post-list__btn--excel {
  background-color: rgb(220.5, 237.9, 197.4);
  color: #245a72;
}
.c-post-list__btn--excel:hover {
  background-color: rgb(197.5, 226.5, 159);
}
.c-post-list__btn--word {
  background-color: rgb(188.1, 208.5, 221.7);
  color: #245a72;
}
.c-post-list__btn--word:hover {
  background-color: rgb(143.5, 177.5, 199.5);
}

.c-tabs__list {
  border-bottom: 1px solid #eee;
}
.c-tabs__link {
  padding: 8px 48px;
}

.p-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  padding: 48px 0 64px;
}
.p-notice__sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 220px;
}
.p-notice__category {
  background: transparent;
  border: none;
}
.p-notice__category-title {
  color: #5b86be;
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 8px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  margin: 0 0 8px;
  border-bottom: 1px solid #5b86be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-notice__category-title i {
  font-size: 14px;
}
.p-notice__category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-notice__category-item {
  margin-bottom: 4px;
}
.p-notice__category-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 8px 4px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-bottom: 1px dotted #e0e0e0;
}
.p-notice__category-label:hover {
  background: #fdfdfd;
  opacity: 0.8;
}
.p-notice__category-label.is-active {
  background: #f5f5f5;
}
.p-notice__category-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.p-notice__category-radio:checked + .p-notice__category-mark {
  background-color: var(--cat-bg);
  border-color: var(--cat-color);
}
.p-notice__category-mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--cat-color);
  background-color: var(--cat-color);
  border-radius: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-notice__category-name {
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  font-weight: 500;
}
.p-notice__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-notice__filter-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: #f5f7f9;
  padding: 10px 15px;
  margin-bottom: 32px;
  border-radius: 2px;
}
.p-notice__filter-title {
  font-size: 14px;
  font-weight: 700;
  color: #5b86be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-notice__filter-title i {
  font-size: 14px;
}
.p-notice__year-wrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-notice__year-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 6px 48px 6px 16px;
  font-size: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  color: #333333;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}
.p-notice__year-select:focus {
  outline: none;
  border-color: #5b86be;
}
.p-notice__fixed-section {
  margin-bottom: 32px;
  border: 1px solid #f0d060;
  border-radius: 4px;
  background: #fffdf0;
  padding: 16px 32px 24px;
}
.p-notice__fixed-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #b8860b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.p-notice__fixed-label svg {
  width: 13px;
  height: 13px;
}
.p-notice__item--fixed {
  border-bottom-color: #f0d060;
}
.p-notice__item--fixed:first-child {
  border-top-color: #f0d060;
}
.p-notice__list {
  border-top: none;
}
.p-notice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}
.p-notice__item:first-child {
  border-top: 1px solid #eeeeee;
}
.p-notice__date {
  font-size: 14px;
  color: #999999;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  min-width: 90px;
}
.p-notice__badge {
  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;
  padding: 2px 16px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.6;
  min-width: 80px;
  text-align: center;
}
.p-notice__badge--important {
  background-color: #dc2626;
}
.p-notice__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
.p-notice__title a {
  color: #0056b3;
  text-decoration: none;
  word-break: break-all;
}
.p-notice__title a:hover {
  color: #206490;
  text-decoration: underline;
}
.p-notice__pagination {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .p-notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .p-notice__sidebar {
    width: 100%;
  }
  .p-notice__category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }
  .p-notice__category-item {
    margin-bottom: 0;
  }
  .p-notice__category-label {
    border-bottom: none;
    background: #f9f9f9;
    border-radius: 4px;
  }
  .p-notice__item {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .p-notice__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .p-notice__date {
    min-width: auto;
  }
  .p-notice__title {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.c-semester-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  border-bottom: 2px solid #dee2e6;
}
.c-semester-tabs__item {
  margin-bottom: -2px;
}
.c-semester-tabs__link {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #999999;
  border: 2px solid transparent;
  border-radius: 4px 4px 0 0;
  background: transparent;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}
.c-semester-tabs__link.is-active {
  font-weight: 700;
  color: #206490;
  border-color: #dee2e6;
  border-bottom-color: #ffffff;
  background: #ffffff;
}
.c-semester-tabs__link:hover:not(.is-active) {
  color: #333333;
}
@media (max-width: 575px) {
  .c-semester-tabs__link {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

.c-product-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}
.c-product-list__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  cursor: pointer;
}
.c-product-list__thumb img {
  width: 100%;
  border-radius: 4px;
  display: block;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-product-list__thumb:hover img {
  opacity: 0.85;
}
@media (max-width: 575px) {
  .c-product-list__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
  }
}
.c-product-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.c-product-list__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.c-product-list__meta-text {
  font-size: 0.85rem;
  color: #666666;
  margin: 0 0 0.25rem;
}
.c-product-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
}
.c-product-list__tag {
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
  white-space: nowrap;
}
.c-product-list__tag--brand {
  background: #eee;
  color: #666666;
}
.c-product-list__tag--allergen {
  background: #fff3cd;
  color: #856404;
}
.c-product-list__detail-btn {
  margin-top: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #206490;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  background: rgb(232.7, 239.5, 243.9);
  padding: 5px 12px;
  border-radius: 4px;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.c-product-list__detail-btn:hover {
  background: rgb(210.4, 224, 232.8);
}
.c-product-list__detail-btn i {
  font-size: 10px;
}

.c-product-modal__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9000;
  overflow-y: auto;
  padding: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 575px) {
  .c-product-modal__overlay {
    padding: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-product-modal__box {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  max-width: 540px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.c-product-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.c-product-modal__close:hover {
  background: rgba(0, 0, 0, 0.7);
}
.c-product-modal__image-wrap img {
  width: 100%;
  display: block;
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-product-modal__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
@media (max-width: 575px) {
  .c-product-modal__body {
    padding: 16px;
  }
}
.c-product-modal__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}
.c-product-modal__description {
  font-size: 0.9rem;
  color: #333333;
  margin: 0 0 16px;
  line-height: 1.7;
}
.c-product-modal__section-header {
  background: #3a7ca5;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 16px;
  margin: 0 -1.5rem 0.6rem;
  padding-left: 1.5rem;
}
.c-product-modal__section-body {
  font-size: 0.85rem;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
}
.c-product-modal__section-body:last-child {
  margin-bottom: 0;
}

.c-shiryou-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}
.c-shiryou-list__year {
  min-width: 180px;
  font-weight: 600;
  font-size: 0.95rem;
}
.c-shiryou-list__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-event-heading {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--page-unique-color, #206490);
  color: #ffffff;
  border-radius: 4px;
}
.c-event-heading__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.c-event-heading .c-post-list__btn--pdf {
  background: rgba(255, 255, 255, 0.85);
  color: #245a72;
}
.c-event-heading .c-post-list__btn--pdf:hover {
  background: rgba(255, 255, 255, 0.7);
}

.c-event-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin: 0 0 0.3rem;
  font-size: 0.82rem;
  color: #666666;
}
.c-event-card__tag {
  background: #eee;
  color: #555;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.76rem;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-top: 32px;
}
.c-pagination__item {
  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;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  color: #333333;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-pagination__item:hover {
  background-color: rgba(32, 100, 144, 0.1);
  border-color: #206490;
  color: #206490;
  text-decoration: none;
}
.c-pagination__item--active {
  background-color: #206490;
  border-color: #206490;
  color: #ffffff;
}
.c-pagination__item--active:hover {
  background-color: #245a72;
  border-color: #245a72;
  color: #ffffff;
}
.c-pagination__item--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.c-badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 9999px;
}
.c-badge--primary {
  background-color: rgba(32, 100, 144, 0.1);
  color: #206490;
}
.c-badge--accent {
  background-color: #fff3e0;
  color: #d86a97;
}
.c-badge--gray {
  background-color: #f5f5f5;
  color: #666666;
}

.c-empty {
  text-align: center;
  padding: 64px 16px;
  color: #999999;
}
.c-empty__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.c-empty__text {
  font-size: 16px;
}

.c-pdf-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #fce4ec;
  border-radius: 4px;
  color: #c62828;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.c-pdf-link:hover {
  background-color: #f8bbd0;
  text-decoration: none;
  color: #c62828;
}
.c-pdf-link i {
  font-size: 18px;
}

.c-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-card:hover {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.c-card__header {
  padding: 16px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #eeeeee;
}
.c-card__body {
  padding: 16px;
}
.c-card__footer {
  padding: 16px;
  border-top: 1px solid #eeeeee;
  text-align: right;
}

.c-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.c-accordion__header {
  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;
  padding: 16px;
  background-color: #f5f5f5;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.c-accordion__header:hover {
  background-color: #eeeeee;
}
.c-accordion__header i {
  -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;
}
.c-accordion__header.is-active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-accordion__body {
  display: none;
  padding: 16px;
  line-height: 1.8;
}
.c-accordion__body.is-open {
  display: block;
}

.c-year-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.c-year-selector__item {
  padding: 4px 16px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  color: #333333;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.c-year-selector__item:hover {
  background-color: rgba(32, 100, 144, 0.1);
  border-color: #206490;
  color: #206490;
  text-decoration: none;
}
.c-year-selector__item--active {
  background-color: #206490;
  border-color: #206490;
  color: #ffffff;
}
.c-year-selector__item--active:hover {
  background-color: #245a72;
  border-color: #245a72;
  color: #ffffff;
}

.c-vtabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.c-vtabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 200px;
  background-color: #f5f5f5;
  border-right: 1px solid #e0e0e0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-vtabs__tab {
  display: block;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-vtabs__tab:last-child {
  border-bottom: none;
}
.c-vtabs__tab:hover {
  background-color: rgba(32, 100, 144, 0.1);
  color: #206490;
  text-decoration: none;
}
.c-vtabs__tab--active {
  background-color: #ffffff;
  color: #206490;
  font-weight: 700;
  border-right: 3px solid #206490;
  margin-right: -1px;
}
.c-vtabs__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px;
  min-width: 0;
}
@media (max-width: 768px) {
  .c-vtabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-vtabs__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
  }
  .c-vtabs__tab {
    white-space: nowrap;
    border-bottom: none;
    border-right: 1px solid #eeeeee;
    text-align: center;
  }
  .c-vtabs__tab:last-child {
    border-right: none;
  }
  .c-vtabs__tab--active {
    border-right-color: #eeeeee;
    border-bottom: 3px solid #206490;
    margin-right: 0;
    margin-bottom: -1px;
  }
}

.c-accordion-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.c-accordion-list__item {
  border-bottom: 1px solid #eeeeee;
}
.c-accordion-list__item:last-child {
  border-bottom: none;
}
.c-accordion-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  background-color: #f5f5f5;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  text-decoration: none;
  width: 100%;
}
.c-accordion-list__header i:first-child {
  color: #206490;
  width: 20px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-accordion-list__header span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-accordion-list__header:hover {
  background-color: rgb(234.8, 234.8, 234.8);
  text-decoration: none;
  color: #333333;
}
.c-accordion-list__chevron {
  margin-left: auto;
  font-size: 14px;
  color: #999999;
  -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;
}
details[open] > .c-accordion-list__header .c-accordion-list__chevron {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-accordion-list__body {
  padding: 16px 24px;
  background-color: #ffffff;
}
.c-accordion-list__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.c-accordion-list__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #206490;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.c-accordion-list__links a:hover {
  background-color: rgba(32, 100, 144, 0.1);
  text-decoration: none;
}
.c-accordion-list__links a i {
  font-size: 12px;
}
.c-accordion-list__item--link .c-accordion-list__header {
  cursor: pointer;
}
.c-accordion-list__item--link .c-accordion-list__header:hover {
  color: #206490;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.c-table th, .c-table td {
  padding: 8px 16px;
  border-bottom: 1px solid #eeeeee;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
.c-table th {
  background-color: #f5f5f5;
  font-weight: 600;
  white-space: nowrap;
  width: 30%;
}
.c-table thead th {
  background-color: #206490;
  color: #ffffff;
}
.c-table tr:last-child th,
.c-table tr:last-child td {
  border-bottom: none;
}

@media print {
  .l-header,
  .l-footer,
  .c-hamburger,
  .m-nav,
  .m-nav-overlay,
  .c-scroll-top,
  .c-sidebar,
  .l-sp-bottom-bar {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  .l-container {
    max-width: 100%;
    padding: 0;
  }
  .l-content {
    display: block;
  }
  .l-content__side {
    display: none;
  }
}
@media (max-width: 575px) {
  .c-detail-table th,
  .c-detail-table td {
    padding: 8px;
    font-size: 12px;
  }
  .c-form__input,
  .c-form__textarea,
  .c-form__select {
    font-size: 16px;
  }
  /* .l-top-info__heading {
      font-size: $font-size-base;
  } */
}
@media (min-width: 576px) and (max-width: 1023px) {
  .c-grid-list--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  body {
    padding-bottom: 70px;
  }
  .l-footer {
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .l-container {
    padding: 0 32px;
  }
}