@charset "UTF-8";
/*=====================
共通項目
=====================*/
html {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  width: 100%;
  min-width: 100dvw;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

body {
  position: relative;
  width: 100%;
  min-width: 100dvw;
}

a,
button {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  text-decoration: none;
}
a:hover,
button:hover {
  opacity: 0.6;
}

iframe img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

main {
  position: relative;
  z-index: 1;
}

section {
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  padding: 0;
}

.inner {
  width: calc(100% - 32px);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex.flex_nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.flex.direction_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex.direction_row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex.direction_col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex.direction_col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.flex.jc_between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex.jc_top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex.jc_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex.jc_bottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex.ai_top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex.ai_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.ai_bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.only_pc {
  display: block;
}
@media screen and (max-width: 781px) {
  .only_pc {
    display: none;
  }
}
.only_sp {
  display: none;
}
@media screen and (max-width: 781px) {
  .only_sp {
    display: block;
  }
}

/*=====================
アニメーション
=====================*/
@-webkit-keyframes ContentsFadeIn {
  from {
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes ContentsFadeIn {
  from {
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes FadeOut {
  from {
    height: 0;
    bottom: 0;
  }
  to {
    height: 2rem;
    bottom: -2rem;
  }
}
@keyframes FadeOut {
  from {
    height: 0;
    bottom: 0;
  }
  to {
    height: 2rem;
    bottom: -2rem;
  }
}
/*=====================
ロゴ設定
=====================*/
.logo_wrap {
  margin-left: 49px;
}
@media screen and (max-width: 1140px) {
  .logo_wrap {
    margin-left: 9px;
  }
}
.logo_box {
  width: 100%;
  height: 88px;
}
@media screen and (max-width: 781px) {
  .logo_box {
    height: 62px;
  }
}
.logo_box img {
  width: 78px;
  aspect-ratio: 1/1.026;
}
@media screen and (max-width: 781px) {
  .logo_box img {
    width: 55px;
  }
}
.logo_box .school_name {
  margin-left: 10px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
@media screen and (max-width: 781px) {
  .logo_box .school_name {
    font-size: 22px;
  }
}
.logo_box .school_name span {
  font-size: 14px;
  display: block;
}
.logo_box .school_name span:last-of-type {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 781px) {
  .logo_box .school_name span {
    font-size: 10px;
  }
}

header {
  position: absolute;
  width: 100%;
  z-index: 3;
}
header::after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(45, 34, 32, 0.63)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(45, 34, 32, 0.63) 0%, rgba(255, 255, 255, 0) 100%);
}

.header_inner {
  width: calc(100% - 28px);
  max-width: 1280px;
  height: 108px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 781px) {
  .header_inner {
    padding-top: 18px;
    height: 80px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header_inner .pc_menu {
  width: calc(100% - 417px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 25px;
  margin-right: calc(36px + 3.125vw);
}
@media screen and (max-width: 1140px) {
  .header_inner .pc_menu {
    display: none;
  }
}
.header_inner .pc_menu_btn {
  width: 18px; /* Vの横幅 */
  height: 18px; /* Vの縦幅 */
  background-image: url(../images/menu_toggle.svg);
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.header_inner .pc_menu .menu {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 50px;
}
.header_inner .pc_menu .menu > li {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}
.header_inner .pc_menu .menu > li a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header_inner .pc_menu .menu > li > a {
  z-index: 1;
}
.header_inner .pc_menu .menu > li > a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
.header_inner .pc_menu .menu > li > a:hover {
  opacity: 1;
}
.header_inner .pc_menu .menu > li > a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header_inner .pc_menu .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f7f7;
  position: absolute;
  left: 0;
  top: 110px;
  width: calc(100vw - 20px);
  max-width: 1280px;
  min-height: 170px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
.header_inner .pc_menu .sub-menu.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.header_inner .pc_menu .sub-menu dt {
  background-color: #083d6d;
  color: #fff;
  width: 141px;
  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;
  padding: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.header_inner .pc_menu .sub-menu dd {
  width: calc(100% - 141px);
  padding: 20px;
}
.header_inner .pc_menu .sub-menu dd ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.header_inner .pc_menu .sub-menu dd ul li {
  width: 100%;
}
.header_inner .pc_menu .sub-menu dd ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: block;
  padding: 17px 20px;
  color: #000;
  background-color: #fff;
  outline: solid 0.25px #999999;
  outline-offset: -0.25px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.header_inner .pc_menu .sub-menu dd ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  background-color: #014998;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  opacity: 0;
}
.header_inner .pc_menu .sub-menu dd ul li a:hover {
  color: #fff;
  opacity: 1;
}
.header_inner .pc_menu .sub-menu dd ul li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}

.btn_hamburger {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
  position: absolute;
  z-index: 4;
  bottom: 8px;
  right: -14px;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
@media screen and (max-width: 1140px) {
  .btn_hamburger {
    right: 6px;
    bottom: calc((100% - 50px) / 2 - 6px);
  }
}
@media screen and (max-width: 781px) {
  .btn_hamburger {
    bottom: auto;
    top: 24px;
  }
}
.btn_hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  position: absolute;
  left: calc((100% - 30px) / 2);
}
.btn_hamburger span:first-of-type {
  top: 14px;
}
.btn_hamburger span:nth-of-type(2) {
  top: 24px;
  opacity: 1;
}
.btn_hamburger span:last-of-type {
  top: 34px;
}
.btn_hamburger.active span {
  left: 50%;
}
.btn_hamburger.active span:first-of-type {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: auto;
}
.btn_hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.btn_hamburger.active span:last-of-type {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: auto;
}
@media screen and (max-width: 781px) {
  .btn_hamburger.active {
    border-color: #3d3d3d;
  }
  .btn_hamburger.active span {
    background-color: #3d3d3d;
  }
}

.menu_hamburger {
  position: absolute;
  top: 100%;
  opacity: 0;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  width: 100dvw;
  margin-left: calc((100dvw - 100%) / 2 * -1);
  background-color: #001245;
}
@media screen and (max-width: 781px) {
  .menu_hamburger {
    background-color: #fff;
    top: 129px;
  }
}
.menu_hamburger.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.menu_hamburger_inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 1em 58px;
  -webkit-columns: 5;
     -moz-columns: 5;
          columns: 5;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media screen and (max-width: 1366px) {
  .menu_hamburger_inner {
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
  }
}
@media screen and (max-width: 781px) {
  .menu_hamburger_inner {
    -webkit-columns: unset;
       -moz-columns: unset;
            columns: unset;
    padding: 0;
  }
}
.menu_hamburger_inner,
.menu_hamburger_inner a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.menu_hamburger_inner dl {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
  margin-bottom: 80px;
}
.menu_hamburger_inner dl:last-of-type {
  margin-bottom: 0;
}
.menu_hamburger_inner dl dt {
  font-size: 18px;
  font-weight: 400;
}
.menu_hamburger_inner dl .sub-menu .submenu-toggle {
  display: none;
}
@media screen and (max-width: 781px) {
  .menu_hamburger_inner dl {
    margin-bottom: 0;
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
  }
  .menu_hamburger_inner dl dt {
    padding: 24px 22px 24px 20px;
    margin-bottom: 1px;
    background-color: #001245;
    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;
  }
  .menu_hamburger_inner dl dt::after {
    content: "＋";
    font-size: 22px;
    line-height: 1;
  }
  .menu_hamburger_inner dl .sub-menu li.menu-item-has-children {
    position: relative;
  }
  .menu_hamburger_inner dl .sub-menu li.menu-item-has-children .submenu-toggle {
    display: block;
    position: absolute;
    top: 26px;
    right: 22px;
  }
  .menu_hamburger_inner dl .sub-menu li.menu-item-has-children .submenu-toggle::before {
    content: "＋";
    font-size: 22px;
    line-height: 1;
    color: #000;
  }
  .menu_hamburger_inner dl .sub-menu .sub-menu {
    display: none;
  }
  .menu_hamburger_inner dl .sub-menu .sub-menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .menu_hamburger_inner dl .sub-menu .sub-menu li a::before {
    display: block;
    content: "▶︎";
  }
}
.menu_hamburger_inner .sub-menu {
  margin: 48px 0 0;
}
@media screen and (max-width: 781px) {
  .menu_hamburger_inner .sub-menu {
    margin: 0 0 1px;
  }
}
.menu_hamburger_inner .sub-menu li + li {
  margin-top: 15px;
}
@media screen and (max-width: 781px) {
  .menu_hamburger_inner .sub-menu li + li {
    margin-top: 1px;
  }
}
.menu_hamburger_inner .sub-menu li.menu-item-has-children ul {
  display: none;
}
.menu_hamburger_inner .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  gap: 1em;
  line-height: 1.9375;
  position: relative;
}
.menu_hamburger_inner .sub-menu li a::before {
  content: "▶";
}
@media screen and (max-width: 781px) {
  .menu_hamburger_inner .sub-menu li a {
    display: block;
    color: #000;
    background-color: #cccccc;
    padding: 24px 42px;
  }
  .menu_hamburger_inner .sub-menu li a::before {
    content: "";
  }
  .menu_hamburger_inner .sub-menu li a:hover {
    color: #fff;
    background-color: #014998;
  }
}
.menu_hamburger_inner .sub-menu li a::after {
  content: "";
  display: block;
  width: calc(100% - 2em);
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 2em;
  bottom: 0;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  opacity: 1;
}
.menu_hamburger_inner .sub-menu li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}
@media screen and (max-width: 781px) {
  .menu_hamburger_inner .sub-menu li.current-menu-item a {
    color: #fff;
    background-color: #014998;
  }
}
.menu_hamburger_inner .only_sp .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  width: 100%;
}
.menu_hamburger_inner .only_sp .menu a {
  color: #083d6d;
}
.menu_hamburger_inner .only_sp .menu li {
  width: 50%;
}
.menu_hamburger_inner .only_sp .menu li 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;
  padding: 25px 1em 22px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.menu_hamburger_inner .only_sp .menu li:nth-of-type(n + 1) {
  border-bottom: solid 1px #808080;
}
.menu_hamburger_inner .only_sp .menu li:nth-of-type(odd) {
  border-right: 1px solid #808080;
}

body::after {
  content: "";
  display: block;
  width: 100dvw;
  height: 100dvh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  opacity: 0;
}
@media screen and (max-width: 781px) {
  body::after {
    height: 100dvh;
    position: fixed;
  }
}
body.global_open::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
body .header_sp_search {
  display: none;
}
@media screen and (max-width: 781px) {
  body.top .header_sp_search {
    display: none;
  }
  body.top.global_open header {
    position: relative;
  }
  body.top.global_open header::after {
    opacity: 0;
  }
  body.top.global_open header .logo_box .school_name {
    color: #3d3d3d;
  }
  body.top.global_open .header_sp_search {
    display: block;
  }
  body.under header {
    position: relative;
  }
  body.under header::after {
    display: none;
  }
  body.under header .logo_box .school_name {
    color: #3d3d3d;
  }
  body.under header .btn_hamburger {
    border-color: #3d3d3d;
  }
  body.under header .btn_hamburger span {
    background-color: #3d3d3d;
  }
  body.under .header_inner {
    height: 139px;
  }
  body.under .header_sp_search {
    display: block;
  }
  body.global_open {
    overflow: hidden;
  }
  body.global_open header {
    position: absolute;
    width: 100dvw;
    height: 100dvh;
    overflow-y: auto;
  }
  body.global_open .pagetop_wapper {
    z-index: -1;
  }
}
body.under header {
  background-color: #0e1d3a;
}
body.under header::after {
  display: none;
}
@media screen and (max-width: 781px) {
  body.under header {
    background-color: #fff;
  }
}
body.under .header_inner {
  height: 122px;
}
@media screen and (max-width: 781px) {
  body.under .header_inner {
    height: 139px;
  }
}

footer {
  background-color: #0e1d3a;
  padding: 60px 0 33px;
  position: relative;
  z-index: 10;
}
footer,
footer a {
  color: #fff;
}
@media screen and (max-width: 781px) {
  footer {
    background-color: #fff;
    padding: 24px 0;
  }
}

.footer_inner {
  max-width: 1280px;
  width: calc(100% - 20px);
  margin: 0 auto;
}
.footer_nav_wrap {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
}
@media screen and (max-width: 1366px) {
  .footer_nav_wrap {
    padding: 0 1em;
  }
}
@media screen and (max-width: 781px) {
  .footer_nav_wrap {
    display: none;
  }
}
.footer_nav_wrap dl {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.footer_nav_wrap dl + dl {
  margin-top: 60px;
}
.footer_nav_wrap dl dt {
  width: 160px;
  font-weight: 400;
  font-size: 18px;
}
.footer_nav_wrap dl dd {
  width: calc(100% - 160px);
}
.footer_nav_wrap .sub-menu {
  width: 100%;
}
.footer_nav_wrap .sub-menu li {
  width: 100%;
  margin: 0;
  font-size: 16px;
}
.footer_nav_wrap .sub-menu li + li {
  margin-top: 14px;
}
.footer_nav_wrap .sub-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  gap: 1em;
  line-height: 1.9375;
  position: relative;
}
.footer_nav_wrap .sub-menu a::before {
  content: "▶";
}
.footer_nav_wrap .sub-menu a::after {
  content: "";
  display: block;
  width: calc(100% - 2em);
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 2em;
  bottom: 0;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  opacity: 1;
}
.footer_nav_wrap .sub-menu a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}
.footer_icon_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin: 69px 0 67px;
}
@media screen and (max-width: 1366px) {
  .footer_icon_wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 781px) {
  .footer_icon_wrap {
    display: none;
  }
}
.footer_icon_wrap ul {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  grid-column: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
  margin-left: 160px;
}
@media screen and (max-width: 1366px) {
  .footer_icon_wrap ul {
    grid-column: 1;
    margin-left: 0;
  }
}
.footer_bottom_wrap {
  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;
}
.footer_bottom_wrap .school_info_wrap {
  margin-right: 120px;
}
.footer_bottom_wrap .copy_right {
  font-size: 16px;
}
@media screen and (max-width: 1366px) {
  .footer_bottom_wrap .school_info_wrap {
    margin-right: 0;
  }
}
@media screen and (max-width: 781px) {
  .footer_bottom_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  .footer_bottom_wrap .logo_wrap {
    margin: 0 6px;
  }
  .footer_bottom_wrap .copy_right {
    font-size: 13px;
  }
  .footer_bottom_wrap .logo_wrap *,
  .footer_bottom_wrap .school_info_wrap {
    color: #3d3d3d;
  }
}

.icon_youtube, .icon_instagram, .icon_line, .icon_x {
  display: block;
  width: 40px;
  height: 40px;
}
.icon_youtube a, .icon_instagram a, .icon_line a, .icon_x a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.icon_x a {
  background-image: url("./../images/footer_icon_x.svg");
}
.icon_line a {
  background-image: url("./../images/footer_icon_line.svg");
}
.icon_instagram a {
  background-image: url("./../images/footer_icon_insta.svg");
}
.icon_youtube a {
  background-image: url("./../images/footer_icon_youtube.svg");
}

.pagetop_wapper {
  position: fixed;
  display: none;
  bottom: 72px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}

.pagetop {
  background-color: #f6f5f2;
  text-decoration: none;
  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;
  width: 40px;
  height: 40px;
  padding: 14px 8px;
  border-radius: 2px;
  margin-left: auto;
  cursor: pointer;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
@media screen and (max-width: 781px) {
  .pagetop {
    background-color: #0e1d3a;
  }
}
.pagetop:hover {
  opacity: 0.6 !important;
}

footer {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-animation: ContentsFadeIn linear;
          animation: ContentsFadeIn linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
@media screen and (max-width: 781px) {
  footer {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

/*=====================
サイドメニュー
=====================*/
/*
// 2026.02.06 コメントアウト
// action.jsでスクロールで表示する場合にのみ必要な指定（コメントアウトを解除すると動き復活）
.side_show {
  .side_conts {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.side_conts {
  //スクロール時に左から表示させる設定
  transform: translateX(-110%); //初期: 画面外に隠す
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s ease-out,
    opacity 0.35s ease-out;
  will-change: transform, opacity;
}
*/
.side_conts {
  width: 320px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  background-color: #204b89;
  height: 100%;
  min-height: 100dvh;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (max-width: 781px) {
  .side_conts {
    display: none;
  }
}
.side_conts.fix {
  position: fixed;
  max-height: 100dvh;
}
.side_conts_inner {
  width: 336px;
  height: 100%;
  overflow-y: auto;
}
.side_menu ul,
.side_menu li,
.side_menu a, .side_link ul,
.side_link li,
.side_link a {
  width: 100%;
}
.side_menu {
  margin-bottom: 56px;
  width: 100%;
  max-width: 320px;
}
.side_menu p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  width: 320px;
  height: 95px;
  border-bottom: 5px solid #d1ac58;
  background-color: #204b89;
  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;
}
.side_menu .menu {
  list-style: none;
  width: 100%;
  padding: 0;
}
.side_menu .menu li {
  width: 100%;
  color: #fff;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid #3d6da5;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
.side_menu .menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  width: 100%;
  height: 70px;
  color: #fff;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}
.side_menu .menu li a::before {
  content: "▶";
}
.side_menu .menu li.has-child a {
  width: calc(100% - 40px);
}
.side_menu .menu li.current, .side_menu .menu li:hover {
  background-color: #0e1d3a;
  color: #fff;
}
.side_menu .menu > li > a {
  padding-left: 10px;
}
.side_menu .menu .sub-menu {
  background-color: #204b89;
}
.side_menu .sub-menu[data-nest="1"] > li > a {
  padding-left: calc(10px + 2em * 1);
}
.side_menu .sub-menu[data-nest="2"] > li > a {
  padding-left: calc(10px + 2em * 2);
}
.side_menu .sub-menu[data-nest="3"] > li > a {
  padding-left: calc(10px + 2em * 3);
}
.side_menu .sub-menu[data-nest="4"] > li > a {
  padding-left: calc(10px + 2em * 4);
}
.side_menu .sub-menu > li > a {
  padding-left: calc(10px + 8em);
}
.side_link {
  width: 264px;
  margin: 0 auto 20px 20px;
}
.side_link .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.side_link .menu li a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  padding: 15px 20px;
  border: solid 1px #3d6da5;
}

.btn_side_accordion {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 40px;
  height: 70px;
  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;
}

body.show_bottom .contents_wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 320px;
  background-color: #204b89;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-animation: FadeOut linear;
          animation: FadeOut linear;
  animation-timeline: view();
  animation-range: entry 0% cover 100%;
  animation-direction: reverse;
}
body.show_bottom .side_conts {
  top: auto;
  bottom: 0;
  height: 100dvh;
}

/*=====================
ブロックの設定
=====================*/
.entry-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.entry-content h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 26px;
}
.entry-content h2 {
  font-size: 26px;
  color: #014998;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  text-align: left;
  margin-bottom: 48px;
}
.entry-content h2.blue {
  font-size: 22px;
  color: #fff;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: left;
  background-color: #0e1d3a;
  border-radius: 5px;
  padding: 14px 20px;
  margin-bottom: 20px;
}
.entry-content h2.gold {
  font-size: 22px;
  color: #4d4d4d;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: left;
  background: linear-gradient(30deg, #deb457 0%, #e7c879 6%, #f1de9e 14%, #f8eeb9 21%, #fdf7ca 27%, #fffbd0 32%, #e7bf77 70%, #e2b972 77%, #d5ab63 85%, #c1934c 94%, #b08039 100% 100%);
  border-radius: 5px;
  padding: 14px 20px;
  margin-bottom: 20px;
}
.entry-content h2.black {
  font-size: 22px;
  color: #fff;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: left;
  background-color: #3d3d3d;
  border-radius: 5px;
  padding: 14px 20px;
  margin-bottom: 20px;
}
.entry-content h2.gray {
  font-size: 22px;
  color: #000;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: left;
  background-color: #ededed;
  border-radius: 5px;
  padding: 14px 20px;
  margin-bottom: 20px;
}
.entry-content h3 {
  font-size: 18px;
  color: #000;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 400;
  width: 100%;
  text-align: left;
  background-color: #fff;
  border: 0.5px solid #333333;
  border-radius: 5px;
  padding: 12px 20px;
  margin-bottom: 20px;
}
.entry-content h4 {
  font-size: 14px;
  color: #000;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: left;
  position: relative;
  padding: 13px 20px;
  margin-bottom: 20px;
}
.entry-content h4::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 40px;
  background-color: #014998;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.entry-content h5 {
  font-size: 14px;
  color: #000;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 700;
  width: 100%;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
}
.entry-content h6 {
  font-size: 14px;
  color: #000;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
}
.entry-content p {
  margin-top: 16px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: left;
  line-height: 2.19;
  margin-top: 0;
}
.entry-content img {
  max-width: 100%;
}
.entry-content table {
  width: 100%;
  border: 1px solid #d2d2d2;
}
@media screen and (max-width: 781px) {
  .entry-content table tbody {
    display: block;
  }
}
.entry-content table tr:not(:first-child) {
  border-top: 1px solid #d2d2d2;
}
@media screen and (max-width: 781px) {
  .entry-content table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.entry-content table tr th {
  font-weight: 300;
  padding: 28px 27px 25px;
  width: 200px;
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #d2d2d2;
  background-color: #eeeeee;
}
@media screen and (max-width: 781px) {
  .entry-content table tr th {
    width: 100%;
  }
}
.entry-content table tr td {
  padding: 28px 27px 25px;
}
@media screen and (max-width: 781px) {
  .entry-content table tr td {
    width: 100%;
  }
}
.entry-content .btn_block {
  width: 100%;
  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;
}
.entry-content .btn_block .btn {
  width: auto;
  color: #000;
  font-size: 0.875rem;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 3px;
  border: 1px solid #8b8b8b;
  background-color: #fff;
  margin: 4px;
}
.entry-content .column-2, .entry-content .column-3, .entry-content .column-4 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.entry-content .column-2 > * {
  width: calc(50% - 10px);
}
@media screen and (max-width: 781px) {
  .entry-content .column-2 > * {
    width: 100%;
  }
}
.entry-content .column-3 > * {
  width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 781px) {
  .entry-content .column-3 > * {
    width: 100%;
  }
}
.entry-content .column-4 > * {
  width: calc(25% - 30px);
}
@media screen and (max-width: 781px) {
  .entry-content .column-4 > * {
    width: 100%;
  }
}
.entry-content .column-2.nowrap, .entry-content .column-3.nowrap, .entry-content .column-4.nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.entry-content .column-2.nowrap-2 > *, .entry-content .column-3.nowrap-2 > *, .entry-content .column-4.nowrap-2 > * {
  width: calc(50% - 10px);
}
.entry-content .column-2.nowrap-2-3 > *, .entry-content .column-3.nowrap-2-3 > *, .entry-content .column-4.nowrap-2-3 > * {
  width: calc(33.3333333333% - 20px);
}
.entry-content .column-2.nowrap-4 > *, .entry-content .column-3.nowrap-4 > *, .entry-content .column-4.nowrap-4 > * {
  width: calc(25% - 30px);
}
.entry-content ol.order-list-num {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
  list-style-type: decimal;
}
.entry-content ol.order-list-num li {
  position: relative;
}
.entry-content ol.order-list-num li {
  counter-increment: list-item;
}
.entry-content ol.order-list-pth {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
}
.entry-content ol.order-list-pth li {
  position: relative;
}
.entry-content ol.order-list-pth li {
  counter-increment: list-item;
}
.entry-content ol.order-list-pth li::before {
  content: "(" counter(list-item) ")";
  position: absolute;
  top: 0;
  right: calc(100% + 0.5rem);
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background-color: transparent;
}
.entry-content ol.order-list-circle {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
}
.entry-content ol.order-list-circle li {
  position: relative;
}
.entry-content ol.order-list-circle li {
  counter-increment: list-item;
}
.entry-content ol.order-list-circle li::before {
  content: counter(list-item);
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  height: 22px;
  width: 22px;
  color: #000;
  font-size: 85%;
  position: absolute;
  top: 0;
  right: calc(100% + 0.5rem);
  background-color: transparent;
  padding-top: 0.1em;
}
.entry-content li ol.order-list-num {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
  list-style-type: decimal;
}
.entry-content li ol.order-list-num li {
  position: relative;
}
.entry-content li ol.order-list-num li {
  counter-increment: list-item;
}
.entry-content li ol.order-list-pth {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
}
.entry-content li ol.order-list-pth li {
  position: relative;
}
.entry-content li ol.order-list-pth li {
  counter-increment: list-item;
}
.entry-content li ol.order-list-pth li::before {
  content: "(" counter(list-item) ")";
  position: absolute;
  top: 0;
  right: calc(100% + 0.5rem);
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background-color: transparent;
}
.entry-content li ol.order-list-circle {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
}
.entry-content li ol.order-list-circle li {
  position: relative;
}
.entry-content li ol.order-list-circle li {
  counter-increment: list-item;
}
.entry-content li ol.order-list-circle li::before {
  content: counter(list-item);
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  height: 22px;
  width: 22px;
  color: #000;
  font-size: 85%;
  position: absolute;
  top: 0;
  right: calc(100% + 0.5rem);
  background-color: transparent;
  padding-top: 0.1em;
}
.entry-content li li ol.order-list-num {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
  list-style-type: decimal;
}
.entry-content li li ol.order-list-num li {
  position: relative;
}
.entry-content li li ol.order-list-num li {
  counter-increment: list-item;
}
.entry-content li li ol.order-list-pth {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
}
.entry-content li li ol.order-list-pth li {
  position: relative;
}
.entry-content li li ol.order-list-pth li {
  counter-increment: list-item;
}
.entry-content li li ol.order-list-pth li::before {
  content: "(" counter(list-item) ")";
  position: absolute;
  top: 0;
  right: calc(100% + 0.5rem);
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background-color: transparent;
}
.entry-content li li ol.order-list-circle {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
  counter-reset: list-item;
  line-height: 1.7em;
}
.entry-content li li ol.order-list-circle li {
  position: relative;
}
.entry-content li li ol.order-list-circle li {
  counter-increment: list-item;
}
.entry-content li li ol.order-list-circle li::before {
  content: counter(list-item);
  border: 1px solid #000;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  height: 22px;
  width: 22px;
  color: #000;
  font-size: 85%;
  position: absolute;
  top: 0;
  right: calc(100% + 0.5rem);
  background-color: transparent;
  padding-top: 0.1em;
}
.entry-content ul.circle-list {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
}
.entry-content ul.circle-list li {
  position: relative;
}
.entry-content ul.circle-list li::before {
  content: "";
  border: 1px solid #000;
  border-radius: 50%;
  display: block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 2.9px;
  right: calc(100% + 0.5rem);
  background-color: transparent;
}
.entry-content ul.circle-list-black {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
}
.entry-content ul.circle-list-black li {
  position: relative;
}
.entry-content ul.circle-list-black li::before {
  content: "";
  border: 1px solid #000;
  border-radius: 50%;
  display: block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 2.9px;
  right: calc(100% + 0.5rem);
  background-color: transparent;
  background-color: #000;
}
.entry-content li ul.circle-list {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
}
.entry-content li ul.circle-list li {
  position: relative;
}
.entry-content li ul.circle-list li::before {
  content: "";
  border: 1px solid #000;
  border-radius: 50%;
  display: block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 2.9px;
  right: calc(100% + 0.5rem);
  background-color: transparent;
}
.entry-content li ul.circle-list-black {
  list-style: none;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin: 10px 0;
}
.entry-content li ul.circle-list-black li {
  position: relative;
}
.entry-content li ul.circle-list-black li::before {
  content: "";
  border: 1px solid #000;
  border-radius: 50%;
  display: block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 2.9px;
  right: calc(100% + 0.5rem);
  background-color: transparent;
  background-color: #000;
}
.entry-content .bunner_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.entry-content .bunner_box {
  width: auto;
}
.entry-content .bunner_box a {
  display: block;
}
.entry-content .bunner_box a img {
  width: auto;
  max-width: none;
  margin-bottom: 0;
}
@media screen and (max-width: 781px) {
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    max-width: calc(100% - 39px);
    margin-left: 13px;
    margin-right: 26px;
  }
  .entry-content p,
  .entry-content table,
  .entry-content .btn_block,
  .entry-content .column-2,
  .entry-content .column-3,
  .entry-content .column-4,
  .entry-content .bunner_wrap,
  .entry-content > ul,
  .entry-content > ol {
    max-width: calc(100% - 49px);
    margin-left: 23px;
    margin-right: 26px;
  }
}

@media screen and (max-width: 781px) {
  .entry-content .snow-monkey-form {
    width: calc(100% - 49px);
    margin: 0 26px 0 23px;
  }
}
.entry-content input[type=text], .entry-content input[type=email], .entry-content input[type=date] {
  width: 100%;
}
.entry-content input[type=text].input-full, .entry-content input[type=email].input-full, .entry-content input[type=date].input-full {
  width: 100%;
}
.entry-content input[type=text].input-zip, .entry-content input[type=email].input-zip, .entry-content input[type=date].input-zip {
  width: 8em;
}
.entry-content input[type=text].input-tel, .entry-content input[type=email].input-tel, .entry-content input[type=date].input-tel {
  width: 13em;
}
.entry-content input[type=text].input-s, .entry-content input[type=email].input-s, .entry-content input[type=date].input-s {
  width: 10em;
}
.entry-content input[type=text].input-xs, .entry-content input[type=email].input-xs, .entry-content input[type=date].input-xs {
  width: 5em;
}
.entry-content input[type=file] {
  width: 100%;
}
.entry-content .smf-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  margin-bottom: 56px;
}
@media screen and (max-width: 600px) {
  .entry-content .smf-form {
    gap: 2em;
  }
}
.entry-content .smf-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .entry-content .smf-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.entry-content .smf-item__label {
  font-size: 18px;
  color: #000;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 400;
  width: 100%;
  text-align: left;
  background-color: #fff;
  border: 0.5px solid #333333;
  border-radius: 5px;
  padding: 12px 20px;
  width: 100%;
  height: 100%;
}
.entry-content .smf-item__label__text {
  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;
  gap: 1em;
}
.entry-content .smf-item__col--label {
  width: 17em;
}
@media screen and (max-width: 600px) {
  .entry-content .smf-item__col--label {
    width: 100%;
  }
}
.entry-content .smf-item__col--controls {
  width: calc(100% - 17em);
}
@media screen and (max-width: 600px) {
  .entry-content .smf-item__col--controls {
    width: 100%;
  }
}
.entry-content .smf-item.required .smf-item__label__text:after {
  content: "必須";
  font-size: 12px;
  background-color: #c1272d;
  color: #fff;
  padding: 4px 16px;
  line-height: 1;
  border-radius: 10px;
}
.entry-content .smf-action {
  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: 1em;
}
.entry-content .smf-action button {
  font-size: 18px;
  background: none;
  background-color: #001245;
  border: none;
  color: #fff;
  padding: 10px 21px;
  border-radius: 5px;
  outline: solid 1px #001245;
  outline-offset: -1px;
}
.entry-content .smf-action button[data-action=back] {
  background-color: #fff;
  color: #001245;
}
.entry-content .smf-radio-buttons-control--horizontal {
  margin-top: 0.6em;
}
.entry-content .form_item_flex.wp-block-group .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.entry-content .form_item_flex.wp-block-columns .wp-block-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.entry-content .form_item_flex.wp-block-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.entry-content .form_item_flex_wrap.wp-block-group > .wp-block-group__inner-container {
  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;
}
.entry-content .form_item_flex_wrap + .form_item_flex {
  margin-top: 0.5em;
}
.entry-content .form_item_flex + .form_item_flex {
  margin-top: 0.5em;
}
.entry-content .form_item_flex [data-name=city] {
  width: calc(100% - 2.5em);
}
.entry-content .form_caption {
  font-size: 12px;
}
.entry-content .form_caption_attention {
  font-size: 12px;
  color: #c1272d;
}

/*=====================
余白
=====================*/
.mg-10 {
  margin-top: 10px;
}
@media screen and (max-width: 781px) {
  .mg-10-sp {
    margin-top: 10px !important;
  }
}
.mg-20 {
  margin-top: 20px;
}
@media screen and (max-width: 781px) {
  .mg-20-sp {
    margin-top: 20px !important;
  }
}
.mg-30 {
  margin-top: 30px;
}
@media screen and (max-width: 781px) {
  .mg-30-sp {
    margin-top: 30px !important;
  }
}
.mg-40 {
  margin-top: 40px;
}
@media screen and (max-width: 781px) {
  .mg-40-sp {
    margin-top: 40px !important;
  }
}
.mg-50 {
  margin-top: 50px;
}
@media screen and (max-width: 781px) {
  .mg-50-sp {
    margin-top: 50px !important;
  }
}
.mg-60 {
  margin-top: 60px;
}
@media screen and (max-width: 781px) {
  .mg-60-sp {
    margin-top: 60px !important;
  }
}

/*=====================
スライダー
=====================*/
.swiper_wrap {
  width: 100%;
  position: relative;
}
.swiper_wrap .swiper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.swiper_wrap .swiper img {
  margin-bottom: 0;
}
.swiper_wrap .mainSwiper {
  width: 100%;
  height: calc(100% - 100px);
  margin-bottom: 20px;
}
.swiper_wrap .mainSwiper .swiper-slide {
  max-width: 100%;
}
.swiper_wrap .thumbSwiper {
  width: calc(100% - 40px);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 20px;
  height: 80px;
}
.swiper_wrap .thumbSwiper .swiper-slide {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.swiper_wrap .thumbSwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5;
}
.swiper_wrap .thumbSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper_wrap .thumb-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  z-index: 10;
  cursor: pointer;
  border-style: solid;
  border-width: 12px 8px 12px 8px;
  border-color: transparent;
}
.swiper_wrap .thumb-nav.thumb-prev {
  left: -15px;
  bottom: 26px;
  top: auto;
}
.swiper_wrap .thumb-nav.thumb-next {
  right: -15px;
  bottom: 26px;
  top: auto;
}
.swiper_wrap .thumb-prev {
  border-right-color: #0e1d3a;
}
.swiper_wrap .thumb-next {
  border-left-color: #0e1d3a;
}
@media screen and (max-width: 781px) {
  .swiper_wrap .thumb-prev,
  .swiper_wrap .thumb-next {
    display: none;
  }
}

/*=====================
カテゴリー
=====================*/
.cat_box {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.cat_box span.cat {
  width: 80px;
  height: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 12px;
  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;
  border-radius: 10px;
  background-color: #000000;
}
.cat_box span.nyuushi {
  background-color: #0071bc;
}
.cat_box span.ippan {
  background-color: #000000;
}
.cat_box span.ryousei {
  background-color: #009245;
}
.cat_box span.zenkou {
  background-color: #001245;
}
.cat_box span.chuugaku {
  background-color: #29abe2;
}
.cat_box.new::after {
  content: "NEW";
  width: 40px;
  height: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 12px;
  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;
  border-radius: 5px;
  background-color: #c1272d;
  margin-left: 10px;
}

/*=====================
スクロールバーカスタマイズ
=====================*/
.simplebar-scrollbar {
  background-color: #999999 !important;
  border-radius: 13px;
}
.simplebar-scrollbar::before {
  display: none;
}

.simplebar-track {
  background-color: #fff;
  margin-top: 14px;
  margin-bottom: 14px;
  overflow: visible !important;
  /* 上向き（▲）：高さ8px */
  /* 下向き（▼）：高さ8px */
}
.simplebar-track::before, .simplebar-track::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 横幅10pxにするため左右5pxずつ透明ボーダー */
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.simplebar-track::before {
  border-bottom: 8px solid #999999;
  top: -14px;
}
.simplebar-track::after {
  border-top: 8px solid #999999;
  bottom: -14px;
}

/*=====================
検索窓
=====================*/
.form_search {
  position: relative;
  z-index: 1;
  width: 150px;
  margin: 21px 0 0;
}
.form_search > input {
  background-color: #fff;
  width: 100%;
  font-size: 12px;
  color: #000;
  padding: 5px 10px 5px 30px;
  border-radius: 2px;
  outline: solid 1px #666666;
  outline-offset: -1px;
  text-align: right;
  line-height: 1;
}
.form_search > input::-webkit-input-placeholder {
  color: #666666;
}
.form_search > input::-moz-placeholder {
  color: #666666;
}
.form_search > input:-ms-input-placeholder {
  color: #666666;
}
.form_search > input::-ms-input-placeholder {
  color: #666666;
}
.form_search > input::placeholder {
  color: #666666;
}

.btn_search {
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc((100% - 20px) / 2);
  left: 5px;
  z-index: 2;
  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;
}
.btn_search img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.header_sp_search {
  width: 100%;
  padding: 11px 22.5px 18px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 781px) {
  .header_sp_search {
    padding: 11px 0 18px;
  }
}
.header_sp_search .form_search {
  width: 100%;
  margin: 0 0 0;
}
.header_sp_search .form_search > input {
  padding: 6px 10px 6px 47px;
  text-align: left;
  outline-width: 1.48px;
  outline-offset: -1.48pxpx;
}

.card_blog {
  margin-bottom: 20px;
}
.card_blog:last-of-type {
  margin-bottom: 0;
}
.card_blog,
.card_blog > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f7f7;
}
.card_blog .img_box {
  width: 130px;
  height: 140px;
  background-color: #a5bdce;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card_blog_inner {
  padding-left: 20px;
  padding-right: 24px;
  padding-top: 24px;
  width: 100%;
}
.card_blog_inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
.card_blog_inner p.day {
  margin-bottom: 14px;
}
.card_blog_inner p a {
  text-decoration: underline;
  color: #000;
}
.card_blog_title {
  text-decoration: underline;
  color: #000;
}

.pagination {
  margin: 64px auto 0;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .page-numbers > li > * {
  color: #083d6d;
  outline: solid 1px #083d6d;
  outline-offset: -1px;
  border-radius: 5px;
  padding: 0.25em 0.6em;
}
.pagination .page-numbers > li > *.current {
  background-color: #083d6d;
  color: #fff;
}

#entry-pager {
  margin: 64px auto 0;
}
#entry-pager .page_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#entry-pager .page_nav > li > * {
  color: #083d6d;
  outline: solid 1px #083d6d;
  outline-offset: -1px;
  border-radius: 5px;
  padding: 0.5em 1em;
}

.under .breadcrumbs_wrap {
  width: 100%;
  background-color: #e6e6e6;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media screen and (max-width: 781px) {
  .under .breadcrumbs_wrap {
    padding-bottom: 55px;
  }
}
.under #breadcrumbs {
  margin: 0 auto;
  font-size: 16px;
  color: #000;
}
.under #breadcrumbs span span {
  margin-left: 16px;
  margin-right: 16px;
}
.under #breadcrumbs span span:first-of-type {
  margin-left: 0;
}
.under #breadcrumbs span span:last-of-type {
  margin-right: 0;
}
.under #breadcrumbs a {
  color: #000;
}
@media screen and (max-width: 781px) {
  .under #breadcrumbs.inner {
    padding: 0 30px;
  }
}
.under .page_title {
  position: relative;
  overflow: hidden;
  padding-top: 122px;
}
@media screen and (max-width: 781px) {
  .under .page_title {
    display: none;
  }
}
.under .page_title .title_box {
  margin-top: auto;
  height: 90px;
  background-color: #ededed;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.under .page_title .title_box p {
  font-size: 30px;
  color: #000;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 400;
  text-align: left;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 30px;
}
.under .page_contents .contents_wrap {
  padding-top: 50px;
  padding-bottom: 76px;
  position: relative;
  margin: 0 auto;
  padding-left: calc((100dvw - 920px + 320px) / 2);
  padding-right: calc((100dvw - 920px - 320px) / 2);
  min-height: 100dvh;
}
@media screen and (max-width: 1366px) {
  .under .page_contents .contents_wrap {
    padding-left: 320px;
    padding-right: 0;
  }
}
@media screen and (max-width: 781px) {
  .under .page_contents .contents_wrap {
    width: 100%;
    padding-top: 16px;
    padding-left: 0;
    min-height: auto;
  }
}
.under .page_contents .contents_title {
  min-height: 80px;
  width: 100%;
  border-bottom: 5px solid #d1ac58;
  background-color: #0e1d3a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.under .page_contents .contents_title h1 {
  font-size: 30px;
  color: #fff;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 400;
  text-align: right;
  padding: 23px 30px 22px 0;
}
.under .page_contents .contents_title h1.inner {
  max-width: 1220px;
}
@media screen and (max-width: 781px) {
  .under .page_contents .contents_title h1.inner {
    width: 100%;
    padding: 23px 14px 22px;
  }
}
.under .page_contents .entry-content {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1260px) {
  .under .page_contents .entry-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1366px) {
  .under .page_contents .entry-content {
    width: 100%;
  }
}
@media screen and (max-width: 781px) {
  .under .page_contents .entry-content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.page_contents .contents_title {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-animation: ContentsFadeIn linear;
          animation: ContentsFadeIn linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
.page_contents .entry-content * {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-animation: ContentsFadeIn linear;
          animation: ContentsFadeIn linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.error404 .entry-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.error404 .entry-content .form_search {
  width: 100%;
  max-width: 400px;
}

.top_hero {
  position: relative;
  height: 100vh;
  min-height: 80.5dvh;
  max-height: 870px;
  overflow-y: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 781px) {
  .top_hero {
    max-height: 720px;
  }
}
.top_hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.top_hero video source,
.top_hero video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
@media screen and (max-width: 781px) {
  .top_hero video img.not_sp {
    display: none;
  }
}
.top_hero video img.only_sp {
  display: none;
}
@media screen and (max-width: 781px) {
  .top_hero video img.only_sp {
    display: block;
    max-width: unset;
  }
}
.top_hero .conseput_box {
  width: 100%;
  max-width: 1476px;
  height: 66.79%;
  max-height: 581px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  z-index: 0;
  top: 20.46%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 781px) {
  .top_hero .conseput_box {
    max-width: unset;
    top: 0;
    height: calc(100% - 100px);
    max-height: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top_hero .conseput_box p {
  font-size: 50px;
  color: #fff;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", serif;
  font-weight: 400;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.5%;
  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: 0 50px;
  text-shadow: -5px -5px 15px #000;
}
@media screen and (max-width: 920px) {
  .top_hero .conseput_box p {
    font-size: 40px;
  }
}
@media screen and (max-width: 781px) {
  .top_hero .conseput_box p {
    font-size: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_hero .conseput_box .img_box {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 781px) {
  .top_hero .conseput_box .img_box {
    max-width: 375px;
    width: 100%;
  }
}
.top_hero .conseput_box .img_box img {
  width: 100%;
}
@media screen and (max-width: 781px) {
  .top_hero .conseput_box .img_box img {
    width: 100%;
    display: block;
  }
}
.top_hero .link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 768px;
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 920px) {
  .top_hero .link_box {
    max-width: 600px;
    bottom: 10px;
  }
}
@media screen and (max-width: 781px) {
  .top_hero .link_box {
    max-width: unset;
    bottom: 0;
  }
}
.top_hero .link_box ul {
  width: 100%;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 781px) {
  .top_hero .link_box ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top_hero .link_box ul li {
  width: 25%;
  height: 60px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .top_hero .link_box ul li {
    height: 45px;
  }
}
@media screen and (max-width: 781px) {
  .top_hero .link_box ul li {
    width: 50%;
    height: 65px;
  }
}
.top_hero .link_box ul li:not(:last-of-type) {
  border-right: 0.5px solid #808080;
}
@media screen and (max-width: 781px) {
  .top_hero .link_box ul li:not(:last-of-type) {
    border-right: none;
  }
}
.top_hero .link_box ul li:first-of-type {
  border-radius: 5px 0px 0px 5px;
}
@media screen and (max-width: 781px) {
  .top_hero .link_box ul li:first-of-type {
    border-radius: 0;
  }
}
.top_hero .link_box ul li:last-of-type {
  border-radius: 0px 5px 5px 0px;
}
@media screen and (max-width: 781px) {
  .top_hero .link_box ul li:last-of-type {
    border-radius: 0;
  }
}
.top_hero .link_box ul li a {
  color: #083d6d;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  width: 100%;
  height: 100%;
  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;
}
@media screen and (max-width: 920px) {
  .top_hero .link_box ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 660px) {
  .top_hero .link_box ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 781px) {
  .top_hero .link_box ul li 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;
    padding: 25px 1em 22px;
    font-size: 18px;
  }
  .top_hero .link_box ul li a:nth-of-type(n + 1) {
    border-bottom: solid 1px #808080;
  }
  .top_hero .link_box ul li a:nth-of-type(odd) {
    border-right: 1px solid #808080;
  }
}
.top_sec_02 {
  padding-top: 56px;
  padding-bottom: 75px;
}
@media screen and (max-width: 781px) {
  .top_sec_02 {
    padding-bottom: 40px;
  }
}
.top_sec_02 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 781px) {
  .top_sec_02 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.top_sec_02 .title_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 781px) {
  .top_sec_02 .title_box {
    margin-bottom: 24px;
  }
}
.top_sec_02 .title_box img {
  width: 104px;
  display: block;
  margin-right: 32px;
}
@media screen and (max-width: 781px) {
  .top_sec_02 .title_box img {
    width: 75px;
    margin-right: 24px;
  }
}
@media screen and (max-width: 745px) {
  .top_sec_02 .title_box img {
    width: 65px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 600px) {
  .top_sec_02 .title_box img {
    width: 100px;
    margin-right: 16px;
  }
}
.top_sec_02 .title_box h2 {
  font-size: 24px;
  color: #3d3d3d;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: left;
  margin-bottom: 16px;
  width: calc(100% - 104px - 32px);
  margin-top: auto;
  margin-bottom: 0;
}
@media screen and (max-width: 781px) {
  .top_sec_02 .title_box h2 {
    width: calc(100% - 75px - 24px);
  }
}
@media screen and (max-width: 820px) {
  .top_sec_02 .title_box h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 745px) {
  .top_sec_02 .title_box h2 {
    width: calc(100% - 65px - 16px);
  }
}
@media screen and (max-width: 781px) {
  .top_sec_02 .title_box h2 {
    font-size: 24px;
    width: calc(100% - 100px - 24px);
  }
}
.top_sec_02 .title_box h2 span {
  font-size: 16px;
  color: #001245;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: left;
  display: block;
}
@media screen and (max-width: 820px) {
  .top_sec_02 .title_box h2 span {
    font-size: 14px;
  }
}
@media screen and (max-width: 781px) {
  .top_sec_02 .title_box h2 span {
    font-size: 16px;
  }
}
.top_sec_02 .left_box {
  width: 50%;
  padding-left: 60px;
  padding-right: 40px;
}
@media screen and (max-width: 1140px) {
  .top_sec_02 .left_box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 781px) {
  .top_sec_02 .left_box {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 60px;
  }
}
.top_sec_02 .right_box {
  width: 50%;
  padding-left: 60px;
  padding-right: 40px;
}
@media screen and (max-width: 1140px) {
  .top_sec_02 .right_box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 781px) {
  .top_sec_02 .right_box {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.top_sec_02 .contents_wrap {
  height: 720px;
  overflow-y: auto;
  padding-right: 20px;
}
.top_sec_02 .contents_wrap .card_blog_inner {
  width: calc(100% - 130px);
}
.top_sec_02 .contents_wrap .card_blog_inner .card_blog_title {
  height: 2.6em;
  overflow: hidden;
}
@media screen and (max-width: 781px) {
  .top_sec_02 .contents_wrap {
    height: auto;
    max-height: 720px;
  }
}
.top_sec_02 .button_box {
  margin-top: 56px;
  width: 100%;
}
@media screen and (max-width: 781px) {
  .top_sec_02 .button_box {
    margin-top: 24px;
  }
}
.top_sec_02 .button_box .see_more {
  display: block;
  width: 140px;
  height: 38px;
  margin-left: auto;
  margin-right: 20px;
  background-color: #0e1d3a;
  color: #fff;
  font-size: 18px;
  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;
}
.top_sec_03 {
  padding-top: 8px;
  padding-bottom: 110px;
  background-color: #f6f5f2;
}
@media screen and (max-width: 781px) {
  .top_sec_03 {
    padding-top: 46px;
    padding-bottom: 71px;
  }
}
.top_sec_03 .title_box {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  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;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .title_box {
    margin-left: 10px;
    margin-right: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top_sec_03 .title_box img {
  width: 104px;
  display: block;
  margin-bottom: 16px;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .title_box img {
    width: 100px;
    margin-bottom: 0;
    margin-right: 24px;
  }
}
.top_sec_03 .title_box h2 {
  font-size: 24px;
  color: #3d3d3d;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: left;
  margin-bottom: 16px;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: auto;
  margin-bottom: 0;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .title_box h2 {
    width: calc(100% - 100px - 24px);
  }
}
.top_sec_03 .title_box h2 span {
  font-size: 16px;
  color: #001245;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: left;
  display: block;
  text-align: center;
  line-height: 1;
  margin-top: 16px;
}
.top_sec_03 .contents_wrap {
  width: calc(100% - 20px);
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .contents_wrap {
    width: 100%;
    gap: 20px;
    padding-left: 10px;
    padding-right: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_sec_03 .contents_box {
  min-height: 400px;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .contents_box {
    width: 100%;
    min-height: 100px;
  }
  .top_sec_03 .contents_box a {
    min-height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
  }
}
.top_sec_03 .contents_box .img_box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .contents_box .img_box {
    min-height: unset;
    width: 100px;
    height: 100px;
    border-radius: 10px 0px 0px 10px;
  }
}
.top_sec_03 .contents_box .img_box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: none;
  min-width: 100%;
  height: 100%;
}
.top_sec_03 .contents_box .contents_inner {
  width: 100%;
  height: calc(100% - 200px);
  min-height: 200px;
  padding: 24px 32px;
  background-color: #0e1d3a;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .contents_box .contents_inner {
    width: calc(100% - 100px);
    height: 100px;
    min-height: unset;
    padding: 16px 12px;
    border-radius: 0px 10px 10px 0px;
  }
}
.top_sec_03 .contents_box .contents_inner p {
  color: #fff;
}
.top_sec_03 .contents_box .contents_inner .title {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .contents_box .contents_inner .title {
    text-align: left;
  }
}
.top_sec_03 .contents_box .contents_inner .text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.6;
  max-width: 337px;
  min-height: 82px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .contents_box .contents_inner .text {
    display: none;
  }
}
.top_sec_03 .contents_box .contents_inner .lean_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: calc(100% - 80px);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  position: absolute;
  bottom: 24px;
  right: 40px;
}
.top_sec_03 .contents_box .contents_inner .lean_more::after {
  content: "▶";
  padding-left: 0.5em;
}
@media screen and (max-width: 781px) {
  .top_sec_03 .contents_box .contents_inner .lean_more {
    bottom: 14px;
    right: 20px;
  }
}
.top_sec_03 .contents_box a .contents_inner .lean_more::before {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background-color: #fff;
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  opacity: 0;
}
.top_sec_03 .contents_box a .img_box img {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
.top_sec_03 .contents_box a:hover {
  opacity: 1;
}
.top_sec_03 .contents_box a:hover .contents_inner .lean_more::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.top_sec_03 .contents_box a:hover .img_box img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.top_sec_02 .inner > * > *,
.top_sec_03 * {
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -webkit-animation: ContentsFadeIn linear;
          animation: ContentsFadeIn linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}/*# sourceMappingURL=style.css.map */