@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-mt-2xl {
  margin-top: 48px;
}

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

.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;
}

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

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

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  left: 0px !important; /* 右から左へ変更 */
  right: auto !important; /* デフォルトの右固定を解除 */
}
@media (max-width: 1023px) {
  .grecaptcha-badge {
    bottom: 80px !important;
  }
}

/* ホバーした時にバナーが広がる挙動を維持する場合 */
.grecaptcha-badge:hover {
  width: 256px !important;
}

.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 > h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5em;
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  width: 100%;
}
@media (min-width: 576px) {
  .c-slideshow > h2 {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .c-slideshow > h2 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .c-slideshow > h2 {
    font-size: 60px;
  }
}
.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;
  -webkit-animation-duration: 24s !important;
          animation-duration: 24s !important;
  will-change: transform;
}
.c-slideshow .swiper-wrapper.is-marquee .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 1000/782;
}
@media (min-width: 768px) {
  .c-slideshow .swiper-wrapper.is-marquee {
    height: 450px;
  }
}
@media (min-width: 1024px) {
  .c-slideshow .swiper-wrapper.is-marquee {
    height: 560px;
  }
}
.c-slideshow .swiper-slide img {
  width: 100%;
  height: 78.2vw;
  -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;
}

:root {
  --contents-inner-lr-pad: 0.3rem;
}
@media (min-width: 576px) {
  :root {
    --contents-inner-lr-pad: 0.5rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --contents-inner-lr-pad: 1rem;
  }
}

.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-heading-lv3 {
  padding: 0.3rem max(var(--contents-inner-lr-pad), 0.5rem);
  line-height: 1.5em;
  display: block;
  margin-bottom: 1rem;
  background-color: color-mix(in srgb, var(--page-unique-color), #FFF 80%);
  border-radius: 4px;
}
@media (max-width: 1023px) {
  .c-heading-lv3 {
    font-size: 1.1em;
  }
}
@media (max-width: 767px) {
  .c-heading-lv3 {
    font-size: 1em;
  }
}
@media (max-width: 575px) {
  .c-heading-lv3 {
    font-size: 1em;
  }
}
.c-heading-lv4 {
  padding: 0 0 0.75rem;
  line-height: 1.5em;
  display: block;
  margin-bottom: 1rem;
  position: relative;
}
.c-heading-lv4::before, .c-heading-lv4::after {
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.c-heading-lv4::before {
  width: 100%;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--page-unique-color), #FFF 80%);
}
.c-heading-lv4::after {
  width: 4rem;
  background-color: var(--page-unique-color);
  border-radius: 4px 0 0 4px;
  z-index: 2;
}

section.u-mb-lg {
  margin-bottom: 2.25rem;
}
section.u-mb-md {
  margin-bottom: 1.75rem;
}
section.u-mb-sm {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  section.u-mb-lg {
    margin-bottom: 3rem;
  }
  section.u-mb-md {
    margin-bottom: 2.25rem;
  }
  section.u-mb-sm {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  section.u-mb-lg {
    margin-bottom: 4rem;
  }
  section.u-mb-md {
    margin-bottom: 3rem;
  }
  section.u-mb-sm {
    margin-bottom: 2rem;
  }
}
section > section {
  padding-left: var(--contents-inner-lr-pad);
  padding-right: var(--contents-inner-lr-pad);
}

.c-post-heading ~ *:not(.c-product-modal__overlay), .c-heading-lv3 ~ *:not(section):not(.c-product-modal__overlay), .c-heading-lv4 ~ *:not(section):not(.c-product-modal__overlay) {
  margin-left: var(--contents-inner-lr-pad);
  margin-right: var(--contents-inner-lr-pad);
  max-width: calc(100% - var(--contents-inner-lr-pad) * 2);
}

.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-text {
  font-size: 0.9375rem;
}

.c-list {
  font-size: 0.9375rem;
}

.c-list > li:has(strong) {
  padding-top: 1rem;
  padding-left: 1em;
}
.c-list > li:has(strong) strong {
  display: inline-block;
  text-indent: -1em;
  color: #206490;
}
.c-list > li:nth-child(1):has(strong) {
  padding-top: 0;
}
.c-list-mark-circle > li::before {
  content: "●";
  color: #206490;
}

.c-detail-table {
  width: 100%;
  border-collapse: collapse;
}
.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;
  cursor: pointer;
}
.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%;
  aspect-ratio: 4/3;
  -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;
}
.c-grid-list__body, .c-grid-list__body--column {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-grid-list__body--column {
  padding-top: 1rem;
}
.c-grid-list__body--column > *:not(.c-grid-list__more--jigyo), .c-grid-list__body--column > *:not(.c-grid-list__more--bushi) {
  padding-left: 1rem;
  padding-right: 1rem;
}
.c-grid-list__body--column .c-grid-list__title {
  margin-bottom: 8px;
}
.c-grid-list__body--column .c-grid-list__more {
  margin-top: 1rem;
}
.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-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .c-link-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .c-link-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-link-card__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-link-card__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-link-card__link {
  margin-top: auto;
}
.c-link-card__link a {
  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;
  border: none;
}
.c-link-card__link a::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-link-card__link a:hover {
  background: rgb(210.4, 224, 232.8);
}
.c-link-card__link i {
  font-size: 10px;
  position: relative;
  z-index: 1;
}
.c-link-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: rgba(230.609375, 238.046875, 242.859375, 0.37);
}
.c-link-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-link-card__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-link-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #333333;
  text-align: center;
}
.c-link-card__text {
  font-size: 14px;
  margin-bottom: 12px;
}

.c-link-list__item {
  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;
  position: relative;
  padding: 16px calc(16px + 16px * 2) 16px 16px;
}
.c-link-list__link:hover {
  color: #206490;
  text-decoration: none;
}
.c-link-list__link i {
  color: #206490;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-link-list__title {
  font-size: 16px;
  font-weight: 500;
}
.c-link-list__desc {
  font-size: 14px;
  color: #666666;
  margin-top: 4px;
}

.required-mark, .c-form__label .c-form__required {
  display: inline-block;
  background-color: #c62828;
  color: #ffffff;
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 400;
  margin-right: 4px;
}

.c-form {
  margin: 0 auto;
}
@media (min-width: 576px) {
  .c-form {
    border-top: solid 1px #e0e0e0;
  }
}
.c-form__group {
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .c-form__group {
    display: grid;
    width: 100%;
    grid-template-columns: 16em 1fr;
    margin: 0;
  }
}
.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: $color-white;
  font-size: $font-size-xs;
  padding: 1px 6px;
  border-radius: $radius-sm;
  margin-left: $spacing-xs;
  font-weight: 400; */
  margin-left: 4px;
}
@media (min-width: 576px) {
  .c-form__label {
    border-right: solid 1px #e0e0e0;
    border-bottom: solid 1px #e0e0e0;
    border-left: solid 1px #e0e0e0;
    padding: 16px;
    background-color: #f5f5f5;
    margin: 0;
  }
}
.c-form__parts {
  padding-bottom: 24px;
  border-bottom: solid 1px #e0e0e0;
}
@media (min-width: 576px) {
  .c-form__parts {
    border-right: solid 1px #e0e0e0;
    border-bottom: solid 1px #e0e0e0;
    padding: 16px;
    margin: 0;
  }
}
.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;
  display: block;
  margin-top: 24px;
}
@media (min-width: 576px) {
  .c-form__submit {
    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__main--full {
  width: 100%;
}
.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;
}
@media (max-width: 1023px) {
  .c-sidebar__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 8px;
  }
}
.c-sidebar__content {
  border-top: 2px solid #206490;
}
.c-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .c-sidebar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    margin: 16px 8px 0;
  }
}
@media (max-width: 575px) {
  .c-sidebar__list {
    gap: 8px;
  }
}
@media (max-width: 1023px) {
  .c-sidebar__item {
    border: solid 1px #e0e0e0;
    border-radius: 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: 16px 8px;
  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 !important;
  border-bottom: 1px dotted #e0e0e0;
}
@media (max-width: 1023px) {
  .c-sidebar__label {
    border-bottom: none;
    padding: 16px;
  }
}
@media (max-width: 575px) {
  .c-sidebar__label {
    padding: 8px;
    gap: 8px;
  }
}
.c-sidebar__label > span {
  text-decoration: none;
}
.c-sidebar__label:hover {
  background: #fafafa;
  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-sidebar__icon {
  width: 18px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #aaa;
}

[data-scroll-anchor] {
  scroll-margin-top: calc(80px + 35px);
}
@media (max-width: 575px) {
  [data-scroll-anchor] {
    scroll-margin-top: calc(60px + 15px);
  }
}

.c-filter-bar {
  scroll-margin-top: calc(80px + 35px);
}
@media (max-width: 575px) {
  .c-filter-bar {
    scroll-margin-top: calc(60px + 15px);
  }
}
.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;
}
@media (max-width: 575px) {
  .c-filter-bar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px 16px;
    margin-bottom: 16px;
  }
  .c-filter-bar:has(.c-filter-bar__content > *:nth-child(3)) .c-filter-bar__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.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;
  white-space: nowrap;
}
.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;
}
@media (max-width: 1023px) {
  .c-filter-bar__content {
    gap: 8px;
  }
}
@media (max-width: 575px) {
  .c-filter-bar__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px 8px;
  }
}
.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;
}
@media (max-width: 575px) {
  .c-post-list__item:not(.c-post-list__item--kasidasi) {
    display: block;
  }
}
.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__item--padded {
  padding: 15px 0;
}
.c-post-list__item--kasidasi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .c-post-list__item--kasidasi {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.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__date--wide {
  width: 100px;
}
.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;
  opacity: 0.5;
  -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%;
  }
}

.p-bushi-base__flow-figure {
  text-align: center;
  padding: 24px;
  max-width: 728px !important;
  margin: 0 auto !important;
}
@media (max-width: 575px) {
  .p-bushi-base__flow-figure {
    padding: 0;
    margin: 0 var(--contents-inner-lr-pad) !important;
  }
}

.p-general-card-wrapper {
  width: 100%;
}
.p-general-card-wrapper .c-link-card__image {
  height: auto;
  max-height: 240px;
  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;
}
.p-general-card-wrapper .c-link-card__image img {
  width: auto;
  max-height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

.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;
}
@media (max-width: 575px) {
  .c-semester-tabs {
    margin-bottom: 8px;
  }
}
.c-semester-tabs__item {
  margin-bottom: -2px;
}
.c-semester-tabs__link {
  display: block;
  padding: 8px 20px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
  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: rgba(32, 100, 144, 0.1);
}
.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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}
.c-product-list__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  -ms-flex-item-align: center;
      align-self: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  border: solid 1px #e0e0e0;
  background: #fafafa;
  min-height: 135px;
  max-height: 180px;
  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;
}
.c-product-list__thumb img {
  width: 100%;
  height: auto;
  max-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-product-list__thumb:hover img {
  opacity: 0.85;
}
.c-product-list__thumb--no-image {
  cursor: pointer;
  min-height: 135px;
  max-height: 135px;
}
.c-product-list__thumb--no-image .c-no-image {
  height: 100%;
  min-height: 135px;
}
@media (max-width: 575px) {
  .c-product-list__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    min-height: 75px;
    max-height: 100px;
  }
  .c-product-list__thumb img {
    max-height: 100px;
  }
  .c-product-list__thumb.c-product-list__thumb--no-image {
    min-height: 75px;
    max-height: 75px;
  }
  .c-product-list__thumb.c-product-list__thumb--no-image .c-no-image {
    min-height: 75px;
  }
}
.c-product-list__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 32px;
}
@media (max-width: 575px) {
  .c-product-list__body {
    gap: 8px 32px;
  }
}
.c-product-list__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.c-product-list__meta-text {
  font-size: 0.85rem;
  color: #666666;
  margin: 0 0 0;
}
.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;
  font-size: 0.85rem;
}
@media (max-width: 575px) {
  .c-product-list__meta {
    font-size: 0.75rem;
  }
}
.c-product-list__tag {
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
  white-space: nowrap;
}
.c-product-list__tag--brand {
  background: #e9dd57;
  color: #333333;
  text-align: center;
  width: 5em;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.c-product-list__tag--allergen {
  background: #fff3cd;
  color: #856404;
}
@media (max-width: 575px) {
  .c-product-list__tag {
    font-size: 0.75rem;
  }
}
.c-product-list__btn-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
}
.c-product-list__detail-btn {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  background: rgb(232.7, 239.5, 243.9);
  padding: 8px 16px;
  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;
  text-align: center;
}
.c-product-list__detail-btn:hover {
  background: rgb(210.4, 224, 232.8);
}
.c-product-list__detail-btn i {
  font-size: 10px;
}
@media (max-width: 575px) {
  .c-product-list__detail-btn {
    font-size: 0.75rem;
    padding: 4px 16px;
  }
}

.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__overlay:not(:has(.c-product-modal__body)) {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-product-modal__box {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  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);
  padding: 24px;
}
.c-product-modal__box:not(:has(.c-product-modal__body)) {
  padding: 0;
}
.c-product-modal__box:not(:has(.c-product-modal__body)) .c-product-modal__image-wrap img {
  max-height: none;
}
.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 {
  background: #fafafa;
  border-radius: 8px;
  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;
  min-height: 60px;
}
.c-product-modal__image-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(240px, 42vw, 400px);
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .c-product-modal__image-wrap img {
    min-height: calc((100vw - 64px) * 0.75);
    max-height: 80vw;
  }
}
.c-product-modal__image-wrap--no-image {
  min-height: 120px;
  aspect-ratio: 16/9;
}
.c-product-modal__image-wrap--no-image .c-no-image {
  height: auto;
  aspect-ratio: 16/9;
}
.c-product-modal__body {
  padding: 1.25rem 0 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.85rem;
  color: #333333;
  margin: 0 0 16px;
  line-height: 1.7;
}
.c-product-modal__section-header {
  background: #f4eeab;
  color: #333333;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 16px;
  margin: 0 0 0.6rem;
  padding-left: 0;
  border-radius: 4px;
}
.c-product-modal__section-body {
  font-size: 0.85rem;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
}
.c-product-modal__section-body > p {
  font-size: 0.75rem;
  color: #666666;
}
.c-product-modal__section-body > p:nth-last-of-type(3), .c-product-modal__section-body > p:nth-last-of-type(4) {
  font-size: 0.85rem;
  color: #333333;
}
.c-product-modal__section-body:last-child {
  margin-bottom: 0;
}

.c-shiryou-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  padding: 16px 24px;
  margin-bottom: 24px;
  border-radius: 4px;
  background: var(--page-unique-color, #206490);
  color: #ffffff;
}
@media (max-width: 575px) {
  .c-event-heading {
    margin-bottom: 16px;
  }
}
.c-event-heading__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  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);
}
@media (max-width: 767px) {
  .c-event-heading .c-post-list__btn--pdf {
    margin: 0 auto;
  }
}

.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.3rem 0;
  font-size: 0.75rem;
  color: #333333;
}
.c-event-card__tag {
  background: #f4eeab;
  color: #333333;
  padding: 0 5px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5em;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.c-grid-list__more--bushi {
  border-radius: 0 0 4px 4px;
}

.p-bushi-cat-badge {
  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: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  color: #333;
  white-space: nowrap;
}

.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-pagination__ellipsis {
  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;
  color: #999999;
  border: none;
  background: transparent;
}
.c-pagination__summary {
  display: none;
  margin-left: 8px;
  font-size: 14px;
  color: #999999;
}
@media (max-width: 768px) {
  .c-pagination {
    gap: 4px;
  }
  .c-pagination__item {
    min-width: 32px;
    padding: 0 4px;
    font-size: 12px;
  }
  .c-pagination__item.is-hidden-on-mobile {
    display: none !important;
  }
  .c-pagination__summary {
    display: inline-block;
  }
}

.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: auto;
}
.c-table thead th {
  background-color: color-mix(in srgb, var(--page-unique-color), #FFF 40%);
  color: #ffffff;
  border-right: solid 1px #FFF;
}
.c-table thead tr th:nth-last-child(1) {
  border-right: none;
}
.c-table tr:last-child th,
.c-table tr:last-child td {
  border-bottom: none;
}
.c-table tbody th:has(+ th) {
  border-right: 1px solid #eeeeee;
}
.c-table tbody tr td {
  border-right: solid 1px #eeeeee;
}
.c-table tbody tr td:nth-last-child(1) {
  border-right: none;
}

.transform_table .th-badge {
  background-color: color-mix(in srgb, var(--page-unique-color), #FFF 40%);
  color: #ffffff;
  padding: 0 0.5em;
  width: 4.25em;
  line-height: 1.75em;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media (min-width: 576px) {
  .transform_table .th-badge {
    display: none;
  }
}
@media (max-width: 575px) {
  .transform_table,
  .transform_table tbody,
  .transform_table tr,
  .transform_table th,
  .transform_table td {
    display: block;
    border: none;
  }
  .transform_table thead {
    display: none;
  }
  .transform_table th,
  .transform_table td {
    background-color: white;
    padding: 0 0 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  .transform_table th .th-badge,
  .transform_table td .th-badge {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4em;
            flex: 0 0 4em;
  }
  .transform_table tr td:nth-last-child(1) {
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: solid 1px #e0e0e0;
  }
}

.c-table-col--15 {
  width: 15%;
}

.c-table-col--20 {
  width: 20%;
}

.c-table-col--25 {
  width: 25%;
}

.c-table-col--30 {
  width: 30%;
}

.c-table-col--32 {
  width: 32%;
}

.c-table-col--35 {
  width: 35%;
}

.c-grid-list .c-empty {
  grid-column: 1/-1;
}

.c-no-image {
  width: 100%;
  height: 100%;
  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-no-image__icon {
  font-size: 2rem;
}

.c-img--bordered {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.c-alert--success {
  background-color: rgb(234.1, 242, 234.5);
  border: 1px solid rgb(150.5, 190, 152.5);
  color: #2e7d32;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.c-alert--error {
  background-color: rgb(249.3, 233.5, 233.5);
  border: 1px solid rgb(226.5, 147.5, 147.5);
  color: #c62828;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.c-required-mark {
  color: #c62828;
}

.p-pagination-center {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-list-empty {
  padding: 40px;
  text-align: center;
  color: #999;
}

.u-icon-mr {
  margin-right: 0.4em;
}

.u-cursor-pointer {
  cursor: pointer;
}

.c-step-bar {
  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;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  gap: 0;
}
.c-step-bar__item {
  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;
  gap: 4px;
  min-width: 80px;
  color: #999999;
}
.c-step-bar__item .c-step-bar__icon {
  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: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: 2px solid #e0e0e0;
  font-size: 18px;
  color: #999999;
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.c-step-bar__item .c-step-bar__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-step-bar__item.is-done {
  color: #206490;
}
.c-step-bar__item.is-done .c-step-bar__icon {
  background-color: rgba(32, 100, 144, 0.1);
  border-color: #206490;
  color: #206490;
}
.c-step-bar__item.is-active {
  color: #245a72;
}
.c-step-bar__item.is-active .c-step-bar__icon {
  background-color: #206490;
  border-color: #245a72;
  color: #ffffff;
  -webkit-box-shadow: 0 2px 8px rgba(32, 100, 144, 0.4);
          box-shadow: 0 2px 8px rgba(32, 100, 144, 0.4);
}
.c-step-bar__item.is-active .c-step-bar__label {
  font-weight: 700;
}
.c-step-bar__arrow {
  list-style: none;
  padding: 0 8px;
  padding-bottom: 32px;
  color: #e0e0e0;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 480px) {
  .c-step-bar {
    gap: 0;
    margin-bottom: 32px;
  }
  .c-step-bar__item {
    min-width: 60px;
  }
  .c-step-bar__item .c-step-bar__icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .c-step-bar__item .c-step-bar__label {
    font-size: 12px;
  }
  .c-step-bar__arrow {
    padding: 0 4px;
    padding-bottom: 32px;
  }
}
.c-inquiry__intro-text {
  margin-bottom: 8px;
}
.c-inquiry__list {
  list-style: decimal;
  padding-left: 2em;
  margin-bottom: 8px;
}
.c-inquiry__intro-text span, .c-inquiry__list span {
  color: #D90000;
  font-weight: 700;
}

@media (min-width: 576px) {
  .c-complete-box__body {
    text-align: center;
  }
}
.c-complete-box__btn {
  text-align: center;
}

.u-mt-xs {
  margin-top: 4px;
}

.u-ml-xs {
  margin-left: 4px;
}

.c-form__zip-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: 4px 8px;
  margin-bottom: 8px;
}

.c-form__zip-mark {
  font-size: 16px;
  color: #666666;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-form__zip-sep {
  color: #999999;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-form__input--zip {
  width: 6em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-form__input--zip7 {
  width: 10em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-form__zip-row + .c-form__input,
.c-form__zip-row + input[name=address],
.c-form__parts > input[name=address],
.c-form__parts > input[id$=address] {
  margin-top: 8px;
  display: block;
}

.c-form__input-confirm-label {
  display: block;
  font-size: 12px;
  color: #999999;
  margin-top: 16px;
  margin-bottom: 4px;
}

.c-form__parts .c-form__input + .c-form__error + .c-form__input,
.c-form__parts .c-form__input.u-mt-xs {
  margin-top: 16px;
}

.c-form__parts .c-form__error + .c-form__input.u-mt-xs {
  margin-top: 8px;
}

.p-kasidasi-item__thumb {
  width: 180px;
  min-height: 135px;
  max-height: 180px;
  background: #fafafa;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  border-radius: 8px;
  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;
}
@media (max-width: 575px) {
  .p-kasidasi-item__thumb {
    width: 100%;
    aspect-ratio: 4/3;
    min-height: unset;
    max-height: unset;
  }
}
.p-kasidasi-item__thumb-img {
  width: 100%;
  height: auto;
  max-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 575px) {
  .p-kasidasi-item__thumb-img {
    width: 100%;
    height: 100%;
    max-height: unset;
  }
}
.p-kasidasi-item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-kasidasi-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.p-kasidasi-item__no {
  color: #999;
  font-size: 12px;
}
.p-kasidasi-item__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.5;
}
.p-kasidasi-item__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .p-kasidasi-item__desc {
    margin-bottom: 0;
  }
}
.p-kasidasi-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.kasidasi-lb-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.kasidasi-lb-trigger img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}

.p-kasidasi-expand-btn {
  background: #f0f4f8;
  color: #5b86be;
  padding: 6px 25px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
}
.p-kasidasi-expand-btn i {
  font-size: 11px;
  margin-left: 5px;
}

.p-cat-badge {
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 3px;
  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;
  color: #333;
}

.c-grid-list__image--placeholder {
  width: 100%;
  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--placeholder i {
  font-size: 2rem;
}

.c-grid-list__image--recipe-placeholder {
  width: 100%;
  background: #eee;
  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: #999;
}
.c-grid-list__image--recipe-placeholder i {
  font-size: 2rem;
}

.p-grid-item-date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.c-grid-list__more--jigyo {
  margin-top: auto;
  display: block;
  background: rgb(232.7, 239.5, 243.9);
  color: #206490;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
.c-grid-list__more--jigyo i {
  font-size: 10px;
}
.c-grid-list__more--jigyo:hover {
  background: rgb(222.6136363636, 231.25, 239.8863636364);
  text-decoration: none;
  color: #5b86be;
}

.p-jigyo-post-link {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}
.p-jigyo-post-link:hover {
  text-decoration: underline;
}

.p-filter-range-sep {
  -ms-flex-item-align: center;
      align-self: center;
  font-weight: bold;
}

.c-grid-list__title--min-h {
  min-height: 3em;
}

.c-quick-links__list--mt {
  margin-top: 2rem;
}

.c-quick-links__list--mt-sm {
  margin-top: 1rem;
}

.c-product-modal__box--wide {
  max-width: 640px;
}

.c-product-modal__lb-img {
  max-height: min(80vh, 640px);
  -o-object-fit: contain;
     object-fit: contain;
}

.p-info-greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2rem;
}
.p-info-greeting__figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
.p-info-greeting__img {
  max-width: 160px;
  border-radius: 4px;
}
.p-info-greeting__caption {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.p-info-greeting__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 575px) {
  .p-info-greeting {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-info-greeting__figure {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-info-greeting__body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.c-table-list {
  margin: 0;
  padding-left: 1.5em;
}
.c-table-list--spaced {
  margin: 0.5em 0;
}

ol.c-table-list {
  list-style: decimal;
}

.p-enkaku-table tbody th {
  white-space: nowrap;
  text-align: right;
}
@media (min-width: 576px) {
  .p-enkaku-table tbody th {
    text-align: left;
  }
  .p-enkaku-table tbody th br {
    display: none;
  }
}

.p-kifu-rekidai-table tbody th {
  max-width: 300px;
  white-space: nowrap;
  text-align: right;
}
@media (min-width: 576px) {
  .p-kifu-rekidai-table tbody th {
    text-align: left;
  }
  .p-kifu-rekidai-table tbody th br {
    display: none;
  }
}
.p-kifu-rekidai-table tbody td {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-yosan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 24px;
}
.p-yosan-list li, .p-yosan-list p {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 768px) {
  .p-yosan-list li, .p-yosan-list p {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 24px) / 2);
            flex: 0 0 calc((100% - 24px) / 2);
  }
}
.p-yosan-list li a, .p-yosan-list p a {
  padding: 16px;
  border: solid 1px #eeeeee;
  display: block;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.p-yosan-list li a:hover, .p-yosan-list p a:hover {
  background-color: #f5f5f5;
}
.p-yosan-list li a i, .p-yosan-list p a i {
  color: #d34c84;
  margin-right: 0.25rem;
}

.p-sisetu-gallery {
  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: 2rem;
  margin-top: 2rem;
}
.p-sisetu-gallery__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 2rem) / 2);
          flex: 0 0 calc((100% - 2rem) / 2);
}
@media (max-width: 767px) {
  .p-sisetu-gallery__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.p-sisetu-gallery__img {
  border-radius: 4px;
}
.p-sisetu-gallery__caption {
  margin: 0.5rem 0 0;
  text-align: center;
  line-height: 1.5em;
  font-size: 0.935rem;
}

.p-map-embed-wrap {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.p-map-embed-wrap iframe {
  border: 0;
}

.p-map-access__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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.p-map-access__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 2rem) / 2);
          flex: 0 0 calc((100% - 2rem) / 2);
  padding: 0;
  margin: 0;
  counter-increment: access_figure;
}
@media (max-width: 767px) {
  .p-map-access__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.p-map-access__figure {
  margin: 0;
  padding: 0;
  position: relative;
}
.p-map-access__figure::before {
  content: counter(access_figure);
  text-align: center;
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 700;
  width: 1.25em;
  height: 1.25em;
  line-height: 1.15em;
  overflow: hidden;
  border-radius: 100%;
  color: #FFF;
  background-color: #d86a97;
  position: absolute;
  top: -0.25em;
  left: -0.25em;
  z-index: 10;
}
.p-map-access__img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-map-access__caption {
  margin: 0.5rem 0 0;
  text-align: center;
  line-height: 1.5em;
  font-size: 0.935rem;
}

.p-jimu-figure {
  text-align: center;
  padding: 24px;
  max-width: 728px !important;
  margin: 0 auto !important;
}
@media (max-width: 575px) {
  .p-jimu-figure {
    padding: 0;
    margin: 0 var(--contents-inner-lr-pad) !important;
  }
}

.c-text--right {
  text-align: right;
  margin-top: 1rem;
}

.p-recruit-greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-recruit-greeting__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  text-align: center;
}
.p-recruit-greeting__photo {
  width: 160px;
  height: 200px;
  background: #e8e8e8;
  border-radius: 8px;
  margin: 0 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;
  color: #aaa;
}
.p-recruit-greeting__icon {
  font-size: 4rem;
}
.p-recruit-greeting__name {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.p-recruit-greeting__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 220px;
}
.p-recruit-greeting__text {
  line-height: 1.9;
  color: #333;
}

.p-recruit-member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.p-recruit-member__header {
  text-align: center;
  margin-bottom: 1rem;
}
.p-recruit-member__avatar {
  width: 100px;
  height: 100px;
  background: #e8e8e8;
  border-radius: 50%;
  margin: 0 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;
  color: #aaa;
}
.p-recruit-member__avatar-icon {
  font-size: 2.5rem;
}
.p-recruit-member__name {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.p-recruit-member__desc {
  line-height: 1.8;
  font-size: 0.9rem;
  color: #444;
}

.c-accordion__trigger {
  width: 100%;
  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: 1rem 1.25rem;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.c-accordion__trigger:hover {
  background: #ebebeb;
}

.c-accordion__trigger-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-accordion__trigger-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}

.c-recruit-kubun {
  background: #206490;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 4px;
}
.c-recruit-kubun.shinsotsu {
  background-color: #c75581;
}
.c-recruit-kubun.chuto {
  background-color: #a06d01;
}
.c-recruit-kubun.part {
  background-color: #01a070;
}
.c-recruit-kubun.arbeit {
  background-color: #0a8eb6;
}

.c-accordion__icon {
  font-size: 1.1rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1rem;
}

.c-accordion__body-wrap {
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.c-accordion__body-inner {
  padding: 1.25rem;
}

.c-form__input--date {
  max-width: 220px;
}

.p-entry-back-btn {
  margin-right: 1rem;
}

.p-inspect-nav-list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-documents-intro {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .p-documents-intro {
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .c-post-list__item--document {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px 0;
  }
}

.c-post-list__title--document {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}
@media (max-width: 575px) {
  .c-post-list__title--document {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .c-post-list__title--document + .c-post-list__actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-post-list__title--document + .c-post-list__actions > a {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px;
  }
}

.p-sitemap-list {
  --sitemap-flex-gap: 48px;
}
.p-sitemap-list, .p-sitemap-list ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.5;
}
.p-sitemap-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--sitemap-flex-gap);
}
.p-sitemap-list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - var(--sitemap-flex-gap)) / 2);
          flex: 0 0 calc((100% - var(--sitemap-flex-gap)) / 2);
}
.p-sitemap-list > li a {
  display: block;
  text-decoration: none;
  padding: 4px 16px;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.p-sitemap-list > li a:hover {
  background-color: rgba(32, 100, 144, 0.1);
}
.p-sitemap-list > li > a:has(.g-nav__icon) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-sitemap-list > li > a:has(.g-nav__icon) .g-nav__icon {
  height: 60px;
  width: auto;
}
.p-sitemap-list > li > a:has(.g-nav__icon) span {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .p-sitemap-list > li > a:has(.g-nav__icon) .g-nav__icon {
    height: 36px;
  }
  .p-sitemap-list > li > a:has(.g-nav__icon) span {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .p-sitemap-list {
    --sitemap-flex-gap: 24px;
    gap: 32px var(--sitemap-flex-gap);
  }
}
@media (max-width: 575px) {
  .p-sitemap-list {
    --sitemap-flex-gap: 24px;
    gap: 32px 0;
  }
  .p-sitemap-list > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.p-sitemap__icon {
  width: 20px;
}

.p-sitemap-list--sub > li > a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: rgb(143.5, 177.5, 199.5);
}

.p-sitemap-list--sub2 > li > a {
  padding-left: 32px;
}
.p-sitemap-list--sub2 > li > a::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  color: rgb(143.5, 177.5, 199.5);
}

.p-sitemap-other-list {
  --sitemap-sub-flex-gap: 32px;
  list-style: none !important;
  margin: 48px 0 0 !important;
  padding: 24px;
  border-radius: 8px;
  background-color: rgba(32, 100, 144, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px var(--sitemap-sub-flex-gap);
}
.p-error-page {
  padding: 64px 0;
  text-align: center;
}
.p-error-page__code {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #206490;
  line-height: 1;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .p-error-page__code {
    font-size: 7rem;
  }
}
.p-error-page__message {
  font-size: 16px;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 48px;
}
@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;
  }
}