@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --font-xs: 12px;
  --font-s: 14px;
  --font-base: 16px;
  --font-m: clamp(18px, 2vw, 24px);
  --font-l: clamp(26px, 2.8vw, 32px);
  --font-xl: clamp(32px, 3.5vw, 40px);
}

/* 基本設定 */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  color: #333;
  word-break: break-all;
  background-color: white;
}

html, body {
  width: 100%;
}

main {
  flex-grow: 1;
}

a {
  text-decoration: none;
  transition: color 0.3s;
}

select,
input[type=text],
input[type=email],
input[type=number],
textarea {
  font-family: inherit;
  font-size: 16px !important;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=submit] {
  appearance: none;
  border-radius: 0;
}

img {
  display: block;
  width: 100%;
  line-height: 1;
}

button {
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: none;
}

summary {
  list-style: none !important;
}
summary::marker {
  display: none;
  content: "";
}
summary::-webkit-details-marker {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  transition: opacity 0.3s ease;
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  padding: 16px 0;
  margin: 0 auto;
}
.header .header__logo {
  width: 100%;
  max-width: 82px;
  transition: max-width 0.3s ease;
}
.header .header__logo img {
  width: 100%;
  height: auto;
}
.header .header__nav {
  display: none;
  gap: 40px;
  align-items: center;
}
.header .header__items {
  display: flex;
  gap: 32px;
  line-height: 1;
  list-style: none;
}
.header .header__item {
  position: relative;
  color: #1a2d70;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.header .header__item::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #ed703a;
  transition: transform 0.3s;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.header .header__item:hover {
  color: #ed703a;
}
.header .header__item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header .is-active > .header__item {
  color: #ed703a;
}
.header .is-active > .header__item:hover::after {
  transform: scaleX(0);
}
.header .is-active > .header__item::before {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 5px;
  height: 5px;
  content: "";
  background: #ed703a;
  border-radius: 50%;
  transform: translateX(-50%);
}
.header .header__has-submenu {
  position: relative;
}
.header .header__has-submenu:hover .header__submenu {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.header .header__has-submenu:hover .header__item {
  color: #ed703a;
}
.header .header__has-submenu:hover .header__item::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header .header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 10;
  min-width: 200px;
  padding: 16px 0 8px;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-8px);
}
.header .header__submenu::before {
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.header .header__submenu > li {
  position: relative;
}
.header .header__submenu-link {
  display: block;
  padding: 12px 20px;
  font-size: var(--font-s);
  color: #1a2d70;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}
.header .header__submenu-link:hover {
  color: #ed703a;
  background-color: #f5f5f5;
}
.header .header__btn {
  position: absolute;
  right: 20px;
  z-index: 100;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.header .header__btn span {
  position: absolute;
  left: 13px;
  display: inline-block;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
}
.header .header__btn span:nth-child(1) {
  top: 22px;
  width: 50%;
}
.header .header__btn span:nth-child(2) {
  top: 29px;
  width: 30%;
}

.header.is-scrolled .header__logo {
  max-width: 70px;
}

.header.is-lightTheme .header__logo img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.header.is-lightTheme .header__item {
  color: white;
  transition: color 0.3s;
}
.header.is-lightTheme .header__item::after {
  background: white;
}
.header.is-lightTheme .header__btn span {
  background-color: white;
}

.is-menuActive .header .header__logo img {
  filter: none;
}
.is-menuActive .header .header__btn span {
  background-color: #333;
}
.is-menuActive .header .header__btn span:nth-child(1) {
  top: 20px;
  left: 16px;
  width: 35%;
  transform: translateY(6px) rotate(-45deg);
}
.is-menuActive .header .header__btn span:nth-child(2) {
  top: 32px;
  left: 16px;
  width: 35%;
  transform: translateY(-6px) rotate(45deg);
}

.admin-bar .header {
  top: 46px;
}

/* footer */
.footer .footer__wrap {
  width: 90%;
  max-width: 1200px;
  padding: 64px 0 48px;
  margin: 0 auto;
  border-bottom: solid 1px #333;
}
.footer .footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer .footer__logo {
  display: block;
  width: 100%;
  max-width: 120px;
}
.footer .footer__logo img {
  width: 100%;
  height: auto;
}
.footer .footer__tagline {
  font-size: var(--font-s);
  font-weight: bold;
  color: #1a2d70;
}
.footer .footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.footer .footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer__nav-heading {
  font-size: var(--font-base);
  font-weight: bold;
  color: #1a2d70;
}
.footer .footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.footer .footer__nav-link {
  font-size: var(--font-s);
  color: #333;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer .footer__nav-link:hover {
  color: #ed703a;
}

/* breadcrumb */
.breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  min-width: auto;
  padding: 12px 0 12px 24px;
  font-size: var(--font-s);
  font-weight: bold;
  color: #1a2d70;
  background-color: white;
}
.breadcrumb .breadcrumb-items {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-start;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.breadcrumb .breadcrumb-items .breadcrumb-item {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: center;
}
.breadcrumb .breadcrumb-items .breadcrumb-item:not(:last-child)::after {
  display: block;
  color: #333;
  content: "/";
}
.breadcrumb .breadcrumb-items .breadcrumb-item:last-child {
  padding-right: 24px;
}
.breadcrumb .breadcrumb-items .breadcrumb-item a {
  font-weight: normal;
  color: #333;
  text-decoration: underline;
  transition: all 0.3s;
}
.breadcrumb .breadcrumb-items .breadcrumb-item a:hover {
  color: #1a2d70;
}

.copyright {
  padding: 24px 0;
  font-size: var(--font-xs);
  color: #333;
  text-align: center;
}

.site-content {
  min-block-size: 100svb;
}

.spmenu {
  position: fixed;
  top: 0;
  z-index: 50;
  display: none;
  width: 100%;
  height: 100%;
  padding-top: 108px;
  overflow-y: auto;
  background-color: white;
  transition: all 0.3s;
}
.spmenu .spmenu__inner {
  width: 90%;
  margin: 0 auto;
}
.spmenu .spmenu__items {
  list-style: none;
}
.spmenu .spmenu__item {
  color: #1a2d70;
  border-bottom: solid 1px #dfdfdf;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(-20px);
}
.spmenu .spmenu__item[data-indent] .spmenu__link {
  position: relative;
  padding-left: 44px;
  font-size: var(--font-s);
  color: #4a5565;
}
.spmenu .spmenu__item[data-indent] .spmenu__link::before {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 10px;
  height: 1px;
  content: "";
  background-color: #99a1af;
  transform: translateY(-50%);
}
.spmenu .spmenu__link {
  display: block;
  padding: 20px 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.spmenu .spmenu__link:hover {
  color: #ed703a;
}

.is-menuActive .spmenu {
  display: block;
  animation: fade-in 0.3s;
}
.is-menuActive .spmenu .spmenu__item {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.submenu {
  position: fixed;
  left: 0;
  z-index: 99;
  width: 100%;
  visibility: hidden;
  background-color: #f5f5f5;
  border-top: solid 24px white;
  border-bottom: solid 1px #1a2d70;
  opacity: 0;
  transition: opacity 0.3s;
}
.submenu.is-active {
  visibility: visible;
  opacity: 1;
}
.submenu .submenu-container {
  display: flex;
  justify-content: center;
  padding: 32px 24px 48px;
}
.submenu .submenu-inner {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
.submenu .submenu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-content: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1110px;
  letter-spacing: 0.1em;
}
.submenu .submenu-item {
  width: 100%;
  max-width: 240px;
}
.submenu .submenu-item a:hover {
  color: #1a2d70;
}
.submenu .submenu-item a:hover img {
  opacity: 0.7;
}
.submenu .submenu-item a img {
  object-fit: cover;
  aspect-ratio: 240/140;
  border: solid 1px;
  opacity: 1;
  transition: opacity 0.3s;
}
.submenu .submenu-ttl {
  margin-top: 12px;
  font-weight: bold;
}

.font-serif {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.font-bold {
  font-weight: bold;
}

.font-base {
  font-size: var(--font-base);
}

.font-s {
  font-size: var(--font-s);
}

.font-m {
  font-size: var(--font-m);
}

.font-l {
  font-size: var(--font-l);
}

.font-xl {
  font-size: var(--font-xl);
}

.font-primary {
  color: #1a2d70;
}

:root {
  --fv-height: calc(100svh - 110px);
}

.fv {
  position: relative;
  display: grid;
  place-items: center;
  min-block-size: var(--fv-height);
}
.fv .fv-mv {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: -1 !important;
  max-width: 100%;
  line-height: 1;
}
.fv .fv-mv::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}
.fv .fv-item {
  line-height: 1;
}
.fv .fv-img {
  height: var(--fv-height);
  line-height: 1;
  object-fit: cover;
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}

.swiper-slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}
.sidemenu {
  position: absolute;
  top: 50%;
  left: 0%;
  display: none;
  width: 100%;
  max-width: 240px;
  transform: translateY(-50%);
}
.sidemenu .sidemenu-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  background-color: #1a2d70;
  border: solid 1px #1a2d70;
  border-radius: 0 24px 24px 0;
}
.sidemenu .sidemenu-content._white {
  background-color: white;
}
.sidemenu .sidemenu-content._white .sidemenu__list .sidemenu__item {
  color: #1a2d70;
  border-bottom: solid 1px #1a2d70;
}
.sidemenu .sidemenu-content._white .sidemenu__list .sidemenu__decs {
  color: #1a2d70;
}
.sidemenu .sidemenu-content .sidemenu__logo {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
}
.sidemenu .sidemenu-content .sidemenu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 200px;
}
.sidemenu .sidemenu-content .sidemenu__list .sidemenu__item {
  padding: 16px 8px;
  font-size: var(--font-xs);
  color: white;
  text-decoration: none;
  border-bottom: solid 1px white;
}
.sidemenu .sidemenu-content .sidemenu__list .sidemenu__decs {
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.background-white {
  background-color: white;
}

.background-gray {
  background-color: #f5f5f5;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: var(--font-s);
  color: #1a2d70;
  background: rgba(26, 45, 112, 0.1);
  border-radius: 100px;
}

.title-section {
  font-family: "Zen Antique Soft", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: var(--font-l);
  line-height: 1.3;
  color: #1a2d70;
}
.title-section._white {
  color: white;
}

.title-dec {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  font-family: "Zen Antique Soft", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: var(--font-l);
  line-height: 1.3;
  color: #1a2d70;
  background-color: #f4f1eb;
  background-image: url(../img/common/title-dec_bg.png);
  background-repeat: repeat;
}
.title-dec .title-dec__wrap {
  width: calc(100% - 100px);
  max-width: 1240px;
  padding: 0 10px;
  margin: 0 auto;
}
.title-dec .title-dec__image--left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
}
.title-dec .title-dec__image--right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
}

.textlink {
  color: #333;
  transition: all 0.3s;
}
.textlink:hover {
  color: #1a2d70;
}
.textlink._line {
  text-decoration: underline;
}
.textlink._icon {
  display: inline-flex;
  gap: 0 16px;
  align-items: center;
  text-decoration: underline;
}
.textlink._icon svg {
  transform: rotate(-90deg);
}
.textlink._icon svg path {
  transition: all 0.3s;
}
.textlink._icon:hover svg path {
  fill: #1a2d70;
}

/* googlemapのポインターイベント制御 */
.map-container iframe {
  pointer-events: none;
}
.map-container iframe.js-clicked {
  pointer-events: auto;
}
.map-container[data-maptype=mymap] {
  overflow: hidden;
}
.map-container[data-maptype=mymap] > iframe {
  margin-top: -68px;
}

.wrap {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.wrap._w-main {
  max-width: 1406px;
  padding-right: 20px;
  padding-left: 20px;
}
.wrap._w-1200 {
  max-width: 1240px;
  padding-right: 20px;
  padding-left: 20px;
}
.wrap._w-1000 {
  max-width: 1040px;
  padding-right: 20px;
  padding-left: 20px;
}

.btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 20px 40px;
  font-size: var(--font-base);
  line-height: 1;
  color: white;
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  background-color: #1a2d70;
  border: 1px solid #1a2d70;
  border-radius: 100px;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn::after {
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  content: "";
  background-color: currentColor;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
          mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.btn:hover {
  background-color: #2641a2;
  border-color: #2641a2;
}
.btn[data-type=outline] {
  color: #1a2d70;
  background-color: white;
}
.btn[data-type=outline]:hover {
  color: white;
  background-color: #1a2d70;
}
.btn[data-size=sm] {
  padding: 15px 24px;
  font-size: var(--font-s);
}
.btn[data-type=outline-white] {
  border-color: white;
}
.btn[data-type=outline-white]:hover {
  color: #1a2d70;
  background-color: white;
  border-color: white;
}
.btn[data-type=outline-accent] {
  color: #ed703a;
  background-color: white;
  border-color: #ed703a;
}
.btn[data-type=outline-accent]:hover {
  color: white;
  background-color: #ed703a;
}

.pagetitle {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  background-color: #f9fafb;
  border-radius: 16px;
}
.pagetitle .pagetitle__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pagetitle .pagetitle__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 20px;
}
.pagetitle .pagetitle__title {
  margin-top: 10px;
  font-size: clamp(30px, 8vw, 48px);
  font-weight: bold;
  line-height: 1.2;
  color: #1a2d70;
}
.pagetitle .pagetitle__desc {
  margin-top: 12px;
  font-size: var(--font-s);
  line-height: 1.8;
  color: #4a5565;
}
.pagetitle .pagetitle__desc br {
  display: none;
}
.pagetitle .pagetitle__img {
  width: calc(100% - 40px);
  aspect-ratio: 16/6.5;
  margin: 0 20px 20px;
  overflow: hidden;
  border-radius: 12px;
}
.pagetitle .pagetitle__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagehead {
  position: relative;
}

.border {
  height: 2px;
  background: linear-gradient(to right, #1a2d70 0%, #1a2d70 35px, #dfdfdf 35px, #dfdfdf 100%);
  border: none;
}

.border-outer {
  border: solid 1px #dfdfdf;
}

.fitcenter {
  margin-inline: auto;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
}

.topics .topics-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.topics .topics-items .topics-item a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 12px;
  background-color: #f5f5f5;
  border: solid 1px #f5f5f5;
  transition: all 0.3s;
}
.topics .topics-items .topics-item a:hover {
  color: #1a2d70;
  border: solid 1px #1a2d70;
}
.topics .topics-items .topics-item a span {
  flex: 1;
}

/* heading1 */
.heading1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.heading1 .heading1-main {
  font-size: var(--font-l);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.heading1 .heading1-main._white {
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.heading1 .heading1-sub {
  padding: 10px 24px;
  font-size: var(--font-s);
  color: white;
  background-color: #1a2d70;
  border-radius: 0 22px 22px;
}
.heading1._small .heading1-main {
  font-size: var(--font-m);
}
.heading1._small .heading1-sub {
  font-size: var(--font-s);
}

/* heading2 */
.heading2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
.heading2 .heading2-main {
  font-size: var(--font-l);
  line-height: 1.3;
}
.heading2 .heading2-sub {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  font-size: calc(0.85 * var(--font-m));
  color: #1a2d70;
}
.heading2 .heading2-sub::before {
  display: block;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #1a2d70;
}
.heading2._line .heading2-main {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.heading2._line .heading2-main::after {
  display: block;
  flex: 1;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(to right, #1a2d70 0%, #1a2d70 35px, #dfdfdf 35px, #dfdfdf 100%);
}

.list .list-item {
  position: relative;
  padding-left: 1.4em;
}
.list .list-item::before {
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #1a2d70;
  content: "・";
}
.list .list-item._num {
  counter-increment: list-counter;
}
.list .list-item._num::before {
  content: counter(list-counter) ".";
}
.list .list-item._bracket {
  padding-left: 1.8em;
  counter-increment: list-counter;
}
.list .list-item._bracket::before {
  content: "(" counter(list-counter) ")";
}
.list .list-item._line {
  padding-left: 1.3em;
}
.list .list-item._line::before {
  top: 0;
  bottom: 0;
  display: block;
  width: 8px;
  height: 2px;
  margin: auto;
  content: "";
  background-color: #1a2d70;
}

.spacing-10 {
  letter-spacing: 0.1em;
}

.postcontent .postcontent-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  align-items: flex-start;
  width: 100%;
}
.postcontent .postcontent-items .postcontent-item {
  width: 100%;
  max-width: 360px;
}
.postcontent .postcontent-items .postcontent-item picture {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  cursor: pointer;
  border: solid 1px #dfdfdf;
}
.postcontent .postcontent-items .postcontent-item picture:hover img {
  transform: scale(1.1);
}
.postcontent .postcontent-items .postcontent-item picture img {
  aspect-ratio: 360/215;
  object-fit: cover;
  transition: all 0.3s;
}
.postcontent .postcontent-items .postcontent-item time {
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.note {
  position: relative;
  padding-left: 1.4em;
}
.note::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "※";
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.section-head[data-align=center] {
  align-items: center;
  text-align: center;
}

.section-label {
  font-size: var(--font-s);
  font-weight: bold;
  color: #ed703a;
  letter-spacing: 0.1em;
}

.section-heading {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.4;
  color: #1a2d70;
  letter-spacing: 0.02em;
}

.content-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a2d70;
  letter-spacing: 0.02em;
}

.cta {
  padding: 100px 0;
  background-color: #1a2d70;
}
.cta .cta__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.cta .section-label {
  color: #ed703a;
}
.cta .section-heading {
  color: white;
}
.cta .cta__desc {
  font-size: 20px;
  line-height: 2;
  color: white;
  letter-spacing: 0.04em;
}
.cta .cta__btns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 16px;
  justify-content: center;
}
.cta .cta__btns .btn {
  justify-content: center;
  width: min(360px, 100%);
}
@media screen and (min-width: 640px){
  .header .header__logo {
    max-width: 89px;
  }
  .header.is-scrolled .header__logo {
    max-width: 89px;
  }
  .breadcrumb {
    min-width: 400px;
  }
  .heading1 .heading1-sub {
    font-size: var(--font-base);
  }
  .cta .cta__btns {
    flex-direction: row;
  }
  .cta .cta__btns .btn {
    width: auto;
  }
}
@media screen and (min-width: 768px){
  .breadcrumb {
    padding: 12px 0 12px 40px;
  }
  .breadcrumb .breadcrumb-items .breadcrumb-item:last-child {
    padding-right: 40px;
  }
  .sidemenu {
    display: block;
  }
  .title-dec .title-dec__wrap {
    width: calc(100% - 220px);
    padding: 0 20px;
  }
  .pagetitle {
    border-radius: 20px;
  }
  .pagetitle .pagetitle__content {
    padding: 28px 28px 0;
  }
  .pagetitle .pagetitle__img {
    width: calc(100% - 56px);
    aspect-ratio: 16/6.8;
    margin: 0 28px 28px;
    border-radius: 14px;
  }
  .topics .topics-items .topics-item a {
    flex-direction: row;
    gap: 24px;
    padding: 20px 24px;
  }
  .heading2._line .heading2-main {
    gap: 32px;
  }
  .postcontent .postcontent-items {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 96px 56px;
  }
}
@media screen and (min-width: 783px){
  .admin-bar .header {
    top: 32px;
  }
}
@media screen and (min-width: 1024px){
  .header .header__inner {
    padding: 20px 0;
  }
  .header .header__nav {
    display: flex;
  }
  .footer .footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer .footer__info {
    align-items: flex-start;
  }
  .footer .footer__nav {
    justify-content: flex-start;
  }
  .title-dec {
    height: 128px;
  }
  .title-dec .title-dec__wrap {
    width: calc(100% - 220px);
  }
  .title-dec .title-dec__image--left {
    width: 110px;
  }
  .title-dec .title-dec__image--right {
    width: 110px;
  }
  .pagetitle {
    height: 292px;
    border-radius: 24px;
  }
  .pagetitle .pagetitle__inner {
    flex-direction: row;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  .pagetitle .pagetitle__content {
    flex: 1;
    padding: 16px 0 16px 40px;
  }
  .pagetitle .pagetitle__title {
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.1;
  }
  .pagetitle .pagetitle__desc {
    margin-top: 24px;
    font-size: clamp(14px, 5vw, 18px);
    line-height: 1.6;
  }
  .pagetitle .pagetitle__img {
    align-self: stretch;
    width: auto;
    max-width: 496px;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 0 24px 24px 0;
  }
  .pagetitle .pagetitle__desc br {
    display: inline;
  }
  .topics .topics-items .topics-item a {
    gap: 48px;
    align-items: center;
  }
}
@media screen and (min-width: 1280px){
  .sidemenu {
    left: 20px;
  }
  .sidemenu .sidemenu-content {
    border-radius: 24px;
  }
}
