@charset "UTF-8";
:root {
  --text: #000;
  --primary: #005c9a;
  --primary30: rgba(0, 92, 154, .3);
  --primary_light: #78b2d9;
  --accent: #ca0505;
  --wh: #ffffff;
  --wh2: #f0f0f0;
  --bk: #000;
  --bk2: #333;
  --red: #f00;
  --pink: #cd2992;
  --pink2: #c13d8b;
  --gray: #999;
  --gray2: #ccc;
  --blue: #0099cc;
  --blue2: #0b98c1;
  --green: #4daa4a;
  --orange: #ef871c;
  --yellow: #fff6de;
}

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

figure {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

strong {
  font-weight: bold;
}

/* base settings */
/* -------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

button {
  border: none;
}

body {
  position: relative;
  margin: 0;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#header a,
.con_nav a,
.con_nav02 a {
  color: var(--text);
}

a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/*reCAPTCHA v3 バッジ非表示*/
.grecaptcha-badge {
  visibility: hidden;
}

/* common setting
-------------------------------------------------- */
body img {
  width: 100%;
  height: auto;
  font-size: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.main_width {
  margin: 0 auto;
  max-width: 1460px;
  width: calc(100% - 160px);
}
@media only screen and (max-width: 1330px) {
  .main_width {
    width: calc(100% - 140px);
  }
}
@media only screen and (max-width: 768px) {
  .main_width {
    width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 767px) {
  .main_width {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .main_width {
    width: calc(100% - 80px);
  }
}

/*
.tb {
  display: none !important;
}
*/
.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

/*
@media only screen and (max-width: $breakpoint_tablet) {
  .pc {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}
*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  /*
    .tb {
      display: none !important;
    }
  */
  .sp {
    display: block !important;
  }
}
.cen {
  text-align: center;
}

.btn a {
  position: relative;
  padding: 36px 80px 34px;
  color: #000 !important;
  font-size: clamp(1.6rem, 1.7vw, 2rem);
  font-weight: 500;
  line-height: 1;
  background: var(--wh);
  border: 1px solid var(--bk);
  border-radius: 15px;
  display: inline-block;
}
@media only screen and (max-width: 1329px) {
  .btn a {
    padding: 18px 40px 17px;
  }
}
@media only screen and (max-width: 767px) {
  .btn a {
    padding: 36px 80px 34px;
    font-weight: 400;
    border-radius: 5px;
  }
}
.btn a::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 14px;
  top: calc(50% - 7px);
  right: 26px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../img/common/arrow.png) no-repeat 0 0/contain;
}
@media only screen and (max-width: 1329px) {
  .btn a::after {
    width: 17px;
    height: 11px;
    top: calc(50% - 5px);
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .btn a::after {
    width: 24px;
    height: 15px;
    top: calc(50% - 6px);
    right: 17px;
  }
}
.btn a:hover {
  background: var(--wh2);
  /*
        &::after {
          right: 21px;
          @media only screen and (max-width: $breakpoint_w1329) {
            right: 17px;
          }
        }
  */
}

.external span {
  position: relative;
  padding-right: 26px;
}
.external span::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 11px;
  background: url(../img/common/icn_external.png) no-repeat 0 0;
  top: calc(50% - 5px);
  right: 0;
}

.txt_base p {
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .txt_base p {
    font-size: 1.6rem;
  }
}

/* wp editor */
/* -------------------------------------------------- */
.post_content {
  overflow: hidden;
}
.post_content a {
  color: #006699;
  word-break: break-all;
}
.post_content a:hover {
  text-decoration: underline;
}

.wp-block-image img {
  width: initial;
  width: auto;
}

.post_content ul {
  margin-left: 1.5em;
  list-style-type: inherit;
}

.post_content ol {
  margin-left: 1.5em;
  list-style-type: decimal;
}

.wp-block-image figcaption {
  margin-bottom: 1em;
  margin-top: 1em;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .wp-block-image figcaption {
    font-size: 1.6rem;
  }
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* parts */
/* -------------------------------------------------------- */
#pagetop {
  font-size: 1px;
  line-height: 0;
  overflow: hidden;
  float: right;
}
#pagetop a {
  text-decoration: none;
}
#pagetop img {
  width: 50px;
  height: 50px;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  #pagetop img {
    width: 40px;
    height: 40px;
  }
}

#pagetop.f_fixed {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  #pagetop.f_fixed {
    bottom: 15px;
    right: 15px;
  }
}

/*
.fancybox-nav span,
.fancybox-nav:hover span {
  @media only screen and (max-width: $breakpoint_tablet) and (any-hover:none) {
    display: none !important;
  }
}
.fancybox-close {
  @media only screen and (max-width: $breakpoint_tablet) and (any-hover:none) {
    display: none !important;
  }
}
*/
.animate.ver_down_top {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.animate.ver_down_top.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.animate.ver_left_right {
  opacity: 0;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.animate.ver_left_right.scrollin {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.animate.ver_right_left {
  opacity: 0;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.animate.ver_right_left.scrollin {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

/* marque */
/* ------------------------------------ */
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.marque {
  overflow: hidden;
  /*
    @media only screen and (max-width: $breakpoint_cnts) {
      padding: 90px 0 70px;
    }
    @media only screen and (max-width: $breakpoint_sp) {
      padding: 80px 0 70px;
    }
    @media only screen and (max-width: $breakpoint_sp) and (orientation: landscape){
      padding: 100px 0 70px;
    }
  */
}
.marque .marque_inner {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .marque .marque_inner {
    margin-bottom: 34px;
  }
}
.marque .marque_inner .marque_parent {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .marque .marque_inner .marque_parent {
    margin-bottom: 20px;
  }
}

/* bread_crumb */
/* ------------------------------------ */
.crumb {
  margin: 22px auto;
  padding: 0 70px;
  width: 100%;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  /*
    @media only screen and (max-width: $breakpoint_sp) and (orientation: portrait){
  //    margin: 0 auto 15px;
      padding: 15px 15px 0;
    }
    @media only screen and (max-width: $breakpoint_sp) and (orientation: landscape){
  //    margin: 0 auto 15px;
      padding: 15px 3.906vw 0;
    }
  */
}
@media only screen and (max-width: 1540px) {
  .crumb {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1329px) {
  .crumb {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .crumb {
    margin: 30px auto 28px;
    padding: 0 15px;
  }
}

.crumb span {
  margin: 0 5px;
}
.crumb span:first-of-type {
  margin: 0 5px 0 0;
}
.crumb span a {
  color: #666;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
}
.crumb span a:hover {
  text-decoration: underline;
}

/* page-numbers */
/* ------------------------------------ */
.page-numbers_wrap {
  margin: 70px auto 0;
  line-height: 1;
  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;
}
@media only screen and (max-width: 767px) {
  .page-numbers_wrap {
    margin: 50px auto 0;
  }
}
.page-numbers_wrap .prev_next {
  width: 18%;
  max-width: 170px;
}
@media only screen and (max-width: 1280px) {
  .page-numbers_wrap .prev_next {
    width: 18%;
    max-width: 25px;
  }
}
.page-numbers_wrap ul.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-numbers_wrap ul.pagination li {
  margin: 5px 3px;
}

.pagination li a,
.pagination li .current {
  padding: 0;
  width: 25px;
  height: 25px;
  line-height: 1.5;
  font-size: 1.4rem;
  background: #fff;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination li a {
  color: #999;
  border: 1px solid #999;
}

.pagination li a:hover,
.pagination li .current {
  color: #000;
  border: 1px solid #000;
}

.page-numbers_wrap .prev a,
.page-numbers_wrap .next a {
  position: relative;
  font-size: 1em;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .page-numbers_wrap .prev a,
  .page-numbers_wrap .next a {
    padding: inherit;
    width: 2.2em;
    height: 2.2em;
  }
}
.page-numbers_wrap .prev a::after,
.page-numbers_wrap .next a::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 14px;
  background: url(../img/common/btn_arrow.png) no-repeat 0 0/contain;
  top: calc(50% - 6.5px);
}
@media only screen and (max-width: 767px) {
  .page-numbers_wrap .prev a::after,
  .page-numbers_wrap .next a::after {
    top: 5px;
  }
}
.page-numbers_wrap .prev a span,
.page-numbers_wrap .next a span {
  white-space: nowrap;
}
.page-numbers_wrap .prev a:hover,
.page-numbers_wrap .next a:hover {
  color: #000;
  border: 1px solid #000;
}
.page-numbers_wrap .prev.sp a, .page-numbers_wrap .prev.tb a,
.page-numbers_wrap .next.sp a,
.page-numbers_wrap .next.tb a {
  padding: 5px 6px 6px 5px;
  width: 25px;
  height: 25px;
  line-height: 1;
  background: url(../img/common/btn_arrow_s.png) no-repeat center center/contain;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-numbers_wrap .prev.sp a::after, .page-numbers_wrap .prev.tb a::after,
.page-numbers_wrap .next.sp a::after,
.page-numbers_wrap .next.tb a::after {
  content: none;
}
.page-numbers_wrap .prev.sp a span, .page-numbers_wrap .prev.tb a span,
.page-numbers_wrap .next.sp a span,
.page-numbers_wrap .next.tb a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-numbers_wrap .prev a {
  padding: 14px 40px 14px 50px;
}
.page-numbers_wrap .prev a::after {
  left: 20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-numbers_wrap .prev.sp a, .page-numbers_wrap .prev.tb a {
  background: url(../img/common/btn_arrow_s_left.png) no-repeat center center/contain;
}

.page-numbers_wrap .next a {
  padding: 14px 50px 14px 40px;
}
.page-numbers_wrap .next a::after {
  right: 20px;
}

/* youtube */
/* modal */
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal_box {
  position: fixed;
  margin: 0;
  z-index: 7777;
  display: none;
  width: 80%;
  max-width: 1160px;
  max-height: 80vh;
  background: var(--wh);
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (max-width: 540px) {
  .modal_box {
    max-height: 70vh;
  }
}
.modal_box .modal_head {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 2;
}
.modal_box .modal_head .modal_close {
  position: absolute;
  content: "";
  width: 20px;
  height: 21px;
  background: url(../img/common/modal_close.png) no-repeat 0 0/contain;
  top: 30px;
  right: 25px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .modal_box .modal_head .modal_close {
    width: 10px;
    height: 11px;
    top: 14px;
    right: 12px;
  }
}
.modal_box .modal_head .modal_ttl {
  padding: 18px 0;
  width: 101%;
  color: var(--wh);
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  background: var(--primary);
  top: 0;
}
@media only screen and (max-width: 767px) {
  .modal_box .modal_head .modal_ttl {
    padding: 10px 0;
    font-size: 1.4rem;
  }
}
.modal_box .modal_cont {
  margin: 0 auto;
  padding: 80px 0 30px;
  width: 86%;
  max-width: 640px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .modal_box .modal_cont {
    padding: 40px 0 30px;
  }
}
.modal_box .modal_cont figure,
.modal_box .modal_cont .gmap {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .modal_box .modal_cont figure,
  .modal_box .modal_cont .gmap {
    margin-bottom: 30px;
  }
}
.modal_box .modal_cont figure.capimg,
.modal_box .modal_cont .gmap.capimg {
  margin-bottom: 10px;
}
.modal_box .modal_cont p {
  margin-bottom: 30px;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  line-height: 1.8;
}
.modal_box .modal_cont .cap {
  margin-bottom: 50px;
  letter-spacing: 0.025em;
}
.modal_box .modal_cont .cap a {
  cursor: pointer;
}

/* header */
/* -------------------------------------------------------- */
#header {
  position: relative;
  padding: 0;
  width: 100%;
  height: 130px;
  background: var(--primary_light);
}
@media only screen and (min-width: 1330px) {
  #header {
    z-index: 99;
  }
}
@media only screen and (max-width: 1329px) {
  #header {
    height: 86px;
  }
}
#header.h_fixed .h_inner {
  position: fixed;
  border-bottom: 1px solid var(--gray);
  background: var(--wh);
  z-index: 99;
}
#header .h_inner {
  padding: 0 70px;
  width: 100%;
  height: 130px;
  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;
  z-index: 3;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}
@media only screen and (max-width: 1540px) {
  #header .h_inner {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1329px) {
  #header .h_inner {
    padding: 20px 40px;
    height: 86px;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner {
    padding: 4px 15px 0;
  }
}
#header .h_inner .h_logo img {
  width: 307px;
  height: 73px;
}
@media only screen and (max-width: 1329px) {
  #header .h_inner .h_logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_logo img {
    max-width: 183px;
  }
}
#header .h_inner .h_logo a:hover img {
  opacity: 1;
}
#header .h_inner .h_right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .h_inner .h_right .gnav {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}
@media only screen and (max-width: 1329px) {
  #header .h_inner .h_right .gnav {
    display: none;
  }
}
#header .h_inner .h_right .gnav ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#header .h_inner .h_right .gnav ul li {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s cubic-bezier(0.26, 0.16, 0.1, 1), -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-left: 3.23vw;
  height: 100%;
}
@media only screen and (max-width: 1782px) {
  #header .h_inner .h_right .gnav ul li {
    margin-left: 2vw;
  }
}
#header .h_inner .h_right .gnav ul li:first-of-type {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
#header .h_inner .h_right .gnav ul li:nth-of-type(2) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
#header .h_inner .h_right .gnav ul li:nth-of-type(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#header .h_inner .h_right .gnav ul li:nth-of-type(4) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
#header .h_inner .h_right .gnav ul li:nth-of-type(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#header .h_inner .h_right .gnav ul li a {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1400px) {
  #header .h_inner .h_right .gnav ul li a {
    font-size: 1.5rem;
  }
}
#header .h_inner .h_right .gnav ul li a span::after {
  position: relative;
  content: "";
  width: 100%;
  height: 4px;
  background: var(--blue2);
  display: block;
  top: 0.3em;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: transform 1s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-transform 1s cubic-bezier(0.43, 0.05, 0.17, 1);
}
#header .h_inner .h_right .gnav ul li a:hover span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}
#header .h_inner .h_right .gnav ul li .child {
  position: absolute;
  padding-top: 59px;
  top: 20px;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 760px;
  overflow: hidden;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  display: none;
}
@media only screen and (max-width: 1400px) {
  #header .h_inner .h_right .gnav ul li .child {
    padding-top: 57px;
  }
}
#header .h_inner .h_right .gnav ul li .child.active {
  opacity: 1;
  display: block;
}
#header .h_inner .h_right .gnav ul li .child ul {
  padding: 25px;
  background: var(--blue2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 50px;
}
#header .h_inner .h_right .gnav ul li .child ul li {
  margin-left: 0;
  height: auto;
  width: 28%;
}
#header .h_inner .h_right .gnav ul li .child ul li a {
  position: relative;
  width: 100%;
  color: var(--wh);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}
#header .h_inner .h_right .gnav ul li .child ul li a::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 14px;
  background: url(../img/common/btn_arrow_w.png) no-repeat 0 0/contain;
  top: calc(50% - 7px);
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#header .h_inner .h_right .gnav ul li .child ul li a:hover {
  opacity: 0.7;
}
#header .h_inner .h_right .h_sns {
  margin-left: 53px;
  margin-right: 15px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 28px;
}
@media only screen and (max-width: 1329px) {
  #header .h_inner .h_right .h_sns {
    display: none;
  }
}
#header .h_inner .h_right .h_sns li a img {
  width: auto;
  height: 26px;
}
#header .h_inner .h_right .h_sns li a:hover img {
  opacity: 0.5;
}
#header .menu_button {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 13px;
  top: 37px;
  right: 40px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  z-index: 99999;
}
@media only screen and (min-width: 1330px) {
  #header .menu_button {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #header .menu_button {
    right: 15px;
  }
}
@media only screen and (max-width: 540px) {
  #header .menu_button {
    top: 32px;
  }
}
#header .menu_button span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--bk);
}
#header .menu_button span + span {
  margin-top: 4px;
}
#header .menu_button.close {
  right: 52px;
}
@media only screen and (max-width: 1280px) {
  #header .menu_button.close {
    right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #header .menu_button.close {
    right: 15px;
  }
}
#header .menu_button.close::after {
  content: "";
}
#header .menu_button.close span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 1px;
}
#header .menu_button.close span:nth-of-type(2) {
  display: none;
}
#header .menu_button.close span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header .menu_button.close span + span {
  margin-top: 0;
}

.nav_overlay_container {
  position: absolute;
  top: -200%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary_light);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  z-index: 20;
  opacity: 0;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  /* nav01 */
  /* nav02 */
}
.nav_overlay_container.active {
  top: 0;
  opacity: 1;
}
@media only screen and (max-width: 1329px) and (min-width: 768px) {
  .nav_overlay_container {
    background: var(--primary_light) url(../img/common/cloud_btm.png) no-repeat center top/100% auto;
  }
}
@media only screen and (max-width: 767px) {
  .nav_overlay_container {
    background: var(--primary_light) url(../img/common/cloud_btm_sp.png) no-repeat center -20px/100% auto;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container {
    background: var(--primary_light) url(../img/common/cloud_btm_sp.png) no-repeat center -290px/100% auto;
  }
}
.nav_overlay_container a:hover {
  opacity: 0.7;
}
.nav_overlay_container .nav_overlay {
  height: 100vh;
}
.nav_overlay_container .nav_container {
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .nav_overlay_container .nav_content.nav01 {
    display: none;
  }
}
.nav_overlay_container .nav_content.nav01 .main_width {
  margin-bottom: 70px;
  padding-top: 70px;
  width: calc(100% - 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (width: 768px) {
  .nav_overlay_container .nav_content.nav01 .main_width {
    width: calc(100% - 80px);
  }
}
.nav_overlay_container .nav_content.nav01 .nav_logo_box {
  width: 50%;
  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;
}
@media only screen and (max-width: 1210px) {
  .nav_overlay_container .nav_content.nav01 .nav_logo_box {
    width: 42%;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_overlay_container .nav_content.nav01 .nav_logo_box {
    margin-bottom: 42px;
    width: 40%;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_logo img {
  margin-bottom: 28px;
  width: 262px;
}
@media only screen and (max-width: 1460px) {
  .nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_logo img {
    margin-bottom: 24px;
    width: 270px;
  }
}
@media only screen and (max-width: 1329px) {
  .nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_logo img {
    margin-bottom: 0;
    width: 240px;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_logo_box .c_name {
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .nav_overlay_container .nav_content.nav01 .nav_logo_box .c_name {
    font-size: 1.4rem;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_school .school_name a {
  position: relative;
  padding-right: 20px;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_school .school_name a::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 11px;
  background: url(../img/common/icn_external.png) no-repeat 0 0/contain;
  top: calc(50% - 5px);
  right: 0;
}
.nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_school .addr {
  margin-bottom: 40px;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (min-width: 768px) {
  .nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_school .addr.last {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 860px) {
  .nav_overlay_container .nav_content.nav01 .nav_logo_box .nav_school .addr span {
    display: block;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box {
  width: 50%;
}
@media only screen and (max-width: 1210px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box {
    width: 56%;
  }
}
@media only screen and (max-width: 1280px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box {
    padding-top: 6px;
    width: 58%;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu01 {
  margin-bottom: 52px;
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu01 a {
  color: var(--text);
  letter-spacing: 0.05em;
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 {
  margin-bottom: 52px;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 {
    margin-bottom: 42px;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px 20px;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li {
  min-width: 22%;
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li:nth-of-type(2), .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li:nth-of-type(5) {
  width: 30%;
}
@media only screen and (max-width: 1329px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li {
    width: 45% !important;
  }
}
@media only screen and (width: 768px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li {
    width: 40% !important;
  }
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li:nth-of-type(2n) {
    width: 50% !important;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li {
    width: 40% !important;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li a {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 860px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_menu02 ul li a {
    font-size: 1.4rem;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul {
  margin-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
@media only screen and (max-width: 1329px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul {
    margin-bottom: 0;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li {
  width: 22%;
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li:nth-of-type(2n) {
  width: 30%;
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li:nth-of-type(4n) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1329px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li {
    width: 45% !important;
  }
}
@media only screen and (width: 768px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li {
    width: 40% !important;
  }
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li:nth-of-type(2n) {
    width: 50% !important;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li a {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 860px) {
  .nav_overlay_container .nav_content.nav01 .nav_menu_box .nav_class ul li a {
    font-size: 1.4rem;
  }
}
.nav_overlay_container .nav_content.nav01 .nav_sns {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 20px;
}
.nav_overlay_container .nav_content.nav01 .nav_sns li a img {
  width: auto;
  height: 26px;
}
.nav_overlay_container .nav_content.nav01 .nav_sns li a:hover img {
  opacity: 0.5;
}
.nav_overlay_container .nav_content.nav02 {
  margin: 0;
  padding-top: 17%;
}
@media only screen and (min-width: 768px) {
  .nav_overlay_container .nav_content.nav02 {
    display: none;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 {
    padding-top: 8%;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_logo {
  text-align: center;
}
.nav_overlay_container .nav_content.nav02 .nav_logo img {
  margin-bottom: 10px;
  width: 272px;
}
.nav_overlay_container .nav_content.nav02 .c_name {
  margin-bottom: 76px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.nav_overlay_container .nav_content.nav02 .nav_block {
  margin: 0 auto;
  width: calc(100% - 80px);
}
.nav_overlay_container .nav_content.nav02 .nav_block a {
  color: var(--bk);
  font-weight: 500;
  display: inline-block;
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_block01 {
  margin-bottom: 32px;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 .nav_block .nav_block01 {
    margin-bottom: 42px;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_block01 a {
  color: var(--text);
  letter-spacing: 0.05em;
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_block02 {
  margin-bottom: 32px;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 .nav_block .nav_block02 {
    margin-bottom: 42px;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_block02 ul {
  width: 100%;
  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 0;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 .nav_block .nav_block02 ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px 20px;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_block02 ul li {
  min-width: 22%;
  width: 100% !important;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 .nav_block .nav_block02 ul li {
    width: 40% !important;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_block02 ul li a {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_class ul {
  margin-bottom: 58px;
  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 0;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 .nav_block .nav_class ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px 20px;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_class ul li {
  width: 100% !important;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 .nav_block .nav_class ul li {
    width: 31% !important;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_block .nav_class ul li a {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav_overlay_container .nav_content.nav02 .nav_sns {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content.nav02 .nav_sns {
    margin: 70px auto 5px;
  }
}
.nav_overlay_container .nav_content.nav02 .nav_sns li a img {
  width: auto;
  height: 26px;
}
.nav_overlay_container .nav_content.nav02 .nav_sns li a:hover img {
  opacity: 0.5;
}
.nav_overlay_container .nav_content_footer {
  padding: 56px 0 70px;
  color: var(--bk);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .nav_overlay_container .nav_content_footer {
    padding: 56px 0 140px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .nav_overlay_container .nav_content_footer {
    padding: 56px 0 140px;
  }
}
.nav_overlay_container .nav_content_footer .external {
  color: var(--bk);
  display: block;
}
.nav_overlay_container .nav_content_footer .sns {
  margin: 60px 0 30px;
  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;
}
.nav_overlay_container .nav_content_footer .sns li {
  margin: 0 7px;
  width: 26px;
}
.nav_overlay_container .nav_content_footer .sns li:nth-of-type(2) {
  width: 28px;
}
.nav_overlay_container .nav_content_footer .sns li:nth-of-type(3) {
  width: 27px;
}
.nav_overlay_container .nav_content_footer .copyright {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* footer */
/* -------------------------------------------------------- */
footer {
  padding: 140px 0;
  background: var(--primary_light) url(../img/common/cloud_btm.png) no-repeat center top/100% auto;
}
@media only screen and (max-width: 1329px) {
  footer {
    padding: 80px 0 70px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 60px 0 70px;
    background: var(--primary_light) url(../img/common/cloud_btm_sp.png) no-repeat center -20px/100% auto;
  }
}
footer a {
  font-weight: 500;
}
footer a:hover {
  opacity: 0.7;
}
footer .main_width {
  max-width: 1640px;
}
@media only screen and (max-width: 1329px) {
  footer .main_width {
    width: calc(100% - 140px);
  }
}
@media only screen and (width: 768px) {
  footer .main_width {
    width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 767px) {
  footer .main_width {
    width: calc(100% - 80px);
  }
}
footer #f_info01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1329px) {
  footer #f_info01 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 {
    margin-bottom: 0;
    display: block;
  }
}
footer #f_info01 .f_logo_box {
  width: 50%;
  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;
}
@media only screen and (max-width: 1210px) {
  footer #f_info01 .f_logo_box {
    width: 42%;
  }
}
@media only screen and (max-width: 1280px) {
  footer #f_info01 .f_logo_box {
    margin-bottom: 42px;
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_logo_box {
    margin-bottom: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_logo_box .f_logo {
    text-align: center;
  }
}
footer #f_info01 .f_logo_box .f_logo img {
  margin-bottom: 28px;
  width: 262px;
}
@media only screen and (max-width: 1460px) {
  footer #f_info01 .f_logo_box .f_logo img {
    margin-bottom: 24px;
    width: 270px;
  }
}
@media only screen and (max-width: 1329px) {
  footer #f_info01 .f_logo_box .f_logo img {
    margin-bottom: 0;
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_logo_box .f_logo img {
    margin-bottom: 10px;
    width: 272px;
  }
}
footer #f_info01 .f_logo_box .c_name {
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  footer #f_info01 .f_logo_box .c_name {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_logo_box .c_name {
    margin-bottom: 55px;
    font-size: 1.6rem;
    text-align: center;
  }
}
footer #f_info01 .f_logo_box .f_school .school_name a {
  position: relative;
  padding-right: 20px;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_logo_box .f_school .school_name a {
    font-size: 1.5rem;
  }
}
footer #f_info01 .f_logo_box .f_school .school_name a::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 11px;
  background: url(../img/common/icn_external.png) no-repeat 0 0/contain;
  top: calc(50% - 5px);
  right: 0;
}
footer #f_info01 .f_logo_box .f_school .addr {
  margin-bottom: 40px;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_logo_box .f_school .addr {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  footer #f_info01 .f_logo_box .f_school .addr.last {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 860px) {
  footer #f_info01 .f_logo_box .f_school .addr span {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_logo_box .f_school .addr span {
    display: inline;
  }
}
footer #f_info01 .f_menu_box {
  width: 50%;
}
@media only screen and (max-width: 1210px) {
  footer #f_info01 .f_menu_box {
    width: 56%;
  }
}
@media only screen and (max-width: 1280px) {
  footer #f_info01 .f_menu_box {
    padding-top: 6px;
    width: 58%;
  }
}
@media only screen and (width: 768px) {
  footer #f_info01 .f_menu_box {
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box {
    padding-top: 0;
    width: 100%;
  }
}
footer #f_info01 .f_menu_box .f_menu01 {
  margin-bottom: 52px;
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_menu01 {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  footer #f_info01 .f_menu_box .f_menu01 {
    margin-bottom: 42px;
  }
}
footer #f_info01 .f_menu_box .f_menu01 a {
  color: var(--text);
  letter-spacing: 0.05em;
}
footer #f_info01 .f_menu_box .f_menu02 {
  margin-bottom: 52px;
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_menu02 {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  footer #f_info01 .f_menu_box .f_menu02 {
    margin-bottom: 42px;
  }
}
footer #f_info01 .f_menu_box .f_menu02 a {
  color: var(--text);
  letter-spacing: 0.05em;
}
footer #f_info01 .f_menu_box .f_menu02 ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_menu02 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  footer #f_info01 .f_menu_box .f_menu02 ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px 20px;
  }
}
footer #f_info01 .f_menu_box .f_menu02 ul li {
  min-width: 22%;
}
footer #f_info01 .f_menu_box .f_menu02 ul li:nth-of-type(2), footer #f_info01 .f_menu_box .f_menu02 ul li:nth-of-type(5) {
  width: 30%;
}
@media only screen and (max-width: 1329px) {
  footer #f_info01 .f_menu_box .f_menu02 ul li {
    width: 45% !important;
  }
}
@media only screen and (width: 768px) {
  footer #f_info01 .f_menu_box .f_menu02 ul li {
    width: 40% !important;
  }
  footer #f_info01 .f_menu_box .f_menu02 ul li:nth-of-type(2n) {
    width: 50% !important;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_menu02 ul li {
    width: 100% !important;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  footer #f_info01 .f_menu_box .f_menu02 ul li {
    width: 40% !important;
  }
}
footer #f_info01 .f_menu_box .f_menu02 ul li a {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 860px) {
  footer #f_info01 .f_menu_box .f_menu02 ul li a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_menu02 ul li a {
    font-size: 1.6rem;
  }
}
footer #f_info01 .f_menu_box .f_menu02_02 {
  display: none;
}
@media only screen and (width: 768px) {
  footer #f_info01 .f_menu_box .f_menu02_02 {
    margin-bottom: 24px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px 20px;
  }
}
footer #f_info01 .f_menu_box .f_menu02_02 dl {
  width: 50%;
}
footer #f_info01 .f_menu_box .f_menu02_02 dl:first-of-type {
  width: 40%;
}
footer #f_info01 .f_menu_box .f_menu02_02 dl dt {
  margin-bottom: 30px;
}
footer #f_info01 .f_menu_box .f_menu02_02 dl dt a {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
footer #f_info01 .f_menu_box .f_class ul {
  margin-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 20px;
}
@media only screen and (max-width: 1329px) {
  footer #f_info01 .f_menu_box .f_class ul {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_class ul {
    margin-bottom: 58px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  footer #f_info01 .f_menu_box .f_class ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px 20px;
  }
}
footer #f_info01 .f_menu_box .f_class ul li {
  width: 22%;
}
footer #f_info01 .f_menu_box .f_class ul li:nth-of-type(2n) {
  width: 30%;
}
footer #f_info01 .f_menu_box .f_class ul li:nth-of-type(4n) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1329px) {
  footer #f_info01 .f_menu_box .f_class ul li {
    width: 45% !important;
  }
}
@media only screen and (width: 768px) {
  footer #f_info01 .f_menu_box .f_class ul li {
    width: 40% !important;
  }
  footer #f_info01 .f_menu_box .f_class ul li:nth-of-type(2n) {
    width: 50% !important;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_class ul li {
    width: 100% !important;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  footer #f_info01 .f_menu_box .f_class ul li {
    width: 31% !important;
  }
}
footer #f_info01 .f_menu_box .f_class ul li a {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 860px) {
  footer #f_info01 .f_menu_box .f_class ul li a {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  footer #f_info01 .f_menu_box .f_class ul li a {
    font-size: 1.6rem;
  }
}
footer .f_sns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 20px;
}
footer .f_sns.sns02 {
  display: none;
}
@media only screen and (max-width: 1329px) {
  footer .f_sns.sns01 {
    display: none;
  }
  footer .f_sns.sns02 {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  footer .f_sns {
    margin: 40px auto 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  footer .f_sns.sns02 {
    margin: 70px auto 60px;
  }
}
footer .f_sns li a img {
  width: auto;
  height: 26px;
}
footer .f_sns li a:hover img {
  opacity: 0.5;
}
footer .copyright {
  margin-top: 44px;
  text-align: center;
}
@media only screen and (max-width: 1329px) {
  footer .copyright {
    margin-top: 50px;
  }
}
footer .copyright small {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* news_list */
/* -------------------------------------------------------- */
.news_list dl {
  position: relative;
  padding: 46px 0;
  border-bottom: 1px solid #999;
  line-height: 1.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}
@media only screen and (max-width: 1280px) {
  .news_list dl {
    gap: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .news_list dl {
    padding: 30px 0 20px;
    display: block;
  }
}
.news_list dl:first-of-type {
  border-top: 1px solid #999;
}
.news_list dl::after {
  position: absolute;
  content: "→";
  width: 27px;
  height: 28px;
  top: calc(50% - 14px);
  right: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  .news_list dl::after {
    width: 21px;
    top: calc(50% - 15px);
    right: 5px;
  }
}
.news_list dl.nolink::after {
  content: none;
}
.news_list dl dt {
  position: relative;
  padding-right: 120px;
  width: calc(100% - 182px);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .news_list dl dt {
    padding-right: 50px;
    padding-bottom: 10px;
    width: 100%;
  }
}
.news_list dl dt a {
  color: var(--text);
}
.news_list dl dt a:hover {
  text-decoration: underline;
}
.news_list dl dd.date {
  width: 128px;
  color: var(--gray);
  white-space: nowrap;
}
@media only screen and (max-width: 1280px) {
  .news_list dl dd.date {
    width: 148px;
  }
}
.news_list dl dd.cat {
  margin-right: 24px;
  width: 82px;
}
.news_list dl dd.cat span {
  padding: 2px 2px 3px;
  width: 82px;
  color: var(--wh);
  font-size: 1.4rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
@media only screen and (max-width: 767px) {
  .news_list dl dd.cat span {
    margin-bottom: 8px;
  }
}
.news_list dl dd.cat span.park {
  background: var(--park);
}
.news_list dl dd.cat span.event {
  background: var(--event);
}
.news_list dl dd.cat span.corporation {
  background: var(--corporation);
}
.news_list dl dd.cat span.greening {
  background: var(--greening);
}
.news_list dl dd.cat span.others {
  background: var(--others);
}

/* sec_enq */
/* ------------------------------------ */
/*
.sec_enq {
  padding: 90px 0 120px;
  background: #eef9fa;
  @media only screen and (max-width: $breakpoint_tablet) {
    padding: 60px 0 70px;
  }
  @media only screen and (max-width: $breakpoint_sp) {
    padding: 60px 0 70px;
  }
  .main_width {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:0 70px;
    @media only screen and (max-width: $breakpoint_tablet) {
      display: block;
    }
    @media only screen and (max-width: $breakpoint_sp) {
      display: block;
    }
    figure {
      width: 32%;
      max-width: 403px;
      @media only screen and (max-width: $breakpoint_tablet) {
        margin: 0 auto 30px;
      }
      @media only screen and (max-width: $breakpoint_sp) {
        margin: 0 auto 30px;
        width: 40%;
      }
      @media only screen and (max-width: $breakpoint_sp2) {
        margin: 0 auto 30px;
        width: 65%;
      }
    }
    .txt {
      h2 {
        margin-bottom: 36px;
        color: var(--red2);
        font-size: 4.4rem;
        font-weight: 700;
        line-height: 1.36;
        @media only screen and (max-width: $breakpoint_tablet) {
          font-size: 3rem;
          text-align: center;
        }
        @media only screen and (max-width: $breakpoint_sp) {
          font-size: 2.2rem;
          text-align: center;
        }
      }
      p {
        margin-bottom: 50px;
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: 0.025em;
        line-height: 2;
        @media only screen and (max-width: $breakpoint_tablet) {
          margin-bottom: 30px;
          padding-left: 140px;
          padding-right: 140px;
          font-size: 1.6rem;
        }
        @media only screen and (max-width: $breakpoint_sp) {
          margin-bottom: 30px;
          padding-left: 140px;
          padding-right: 140px;
          font-size: 1.6rem;
        }
        @media only screen and (max-width: $breakpoint_sp2) {
          padding-left: 30px;
          padding-right: 30px;
        }
      }
      .btn {
        a {
          @media only screen and (max-width: $breakpoint_tablet) {
            margin: 0 auto;
          }
          @media only screen and (max-width: $breakpoint_sp) {
            margin: 0 auto;
          }
        }
      }
    }
  }
}
*/
/* sec_contact */
/* ------------------------------------ */
.sec_contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
@media only screen and (max-width: 767px) {
  .sec_contact {
    display: block;
  }
}
.sec_contact .box_wrap {
  width: 50%;
  height: 542px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1329px) {
  .sec_contact .box_wrap {
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .sec_contact .box_wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .sec_contact .box_wrap {
    width: 100%;
    height: auto;
  }
}
.sec_contact .box_wrap:last-of-type {
  border-top: none;
  border-left: 1px solid var(--gray);
}
@media only screen and (max-width: 767px) {
  .sec_contact .box_wrap:last-of-type {
    border-left: none;
    border-top: 1px solid var(--gray);
  }
}
.sec_contact .box_wrap .box {
  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: 0 20px;
}
@media only screen and (min-width: 1920px) {
  .sec_contact .box_wrap .box {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0 64px;
  }
}
@media only screen and (max-width: 1280px) {
  .sec_contact .box_wrap .box {
    padding: 60px 15px 70px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .sec_contact .box_wrap .box {
    padding: 70px 50px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .sec_contact .box_wrap .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 64px;
  }
}
.sec_contact .box_wrap .box figure {
  width: 48%;
  max-width: 320px;
}
@media only screen and (max-width: 1280px) {
  .sec_contact .box_wrap .box figure {
    margin-bottom: 20px;
    width: 50%;
    max-width: initial;
  }
}
@media only screen and (max-width: 540px) {
  .sec_contact .box_wrap .box figure {
    margin-bottom: 32px;
    width: 72%;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .sec_contact .box_wrap .box figure {
    width: 48%;
    max-width: 352px;
  }
}
.sec_contact .box_wrap .box .txt {
  width: 60%;
}
@media only screen and (max-width: 1280px) {
  .sec_contact .box_wrap .box .txt {
    width: 100%;
    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;
  }
}
@media only screen and (max-width: 767px) {
  .sec_contact .box_wrap .box .txt {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .sec_contact .box_wrap .box .txt {
    width: 60%;
  }
}
.sec_contact .box_wrap .box .txt h2 {
  margin-bottom: 21px;
  font-size: clamp(2.6rem, 2.4vw, 3.5rem);
  font-weight: 550;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}
@media only screen and (max-width: 1280px) {
  .sec_contact .box_wrap .box .txt h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .sec_contact .box_wrap .box .txt h2 {
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .sec_contact .box_wrap .box .txt h2 {
    font-size: 2.8rem;
    text-align: left;
  }
}
.sec_contact .box_wrap .box .txt p {
  margin-bottom: 26px;
  color: var(--text);
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  line-height: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 62px;
}
@media only screen and (max-width: 1280px) {
  .sec_contact .box_wrap .box .txt p {
    margin-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    min-height: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .sec_contact .box_wrap .box .txt p {
    margin-bottom: 30px;
    padding-left: 160px;
    padding-right: 160px;
    font-size: 1.6rem;
    min-height: inherit;
  }
}
@media only screen and (max-width: 540px) {
  .sec_contact .box_wrap .box .txt p {
    margin-bottom: 35px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: justify;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .sec_contact .box_wrap .box .txt p {
    margin-bottom: 12px;
    padding-left: 0px;
    padding-right: 30px;
    text-align: justify;
  }
}
.sec_contact .box_wrap .box .txt .btn a {
  margin: 36px 0 0;
  padding: 0;
  width: 290px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1329px) {
  .sec_contact .box_wrap .box .txt .btn a {
    width: 278px;
    height: 69px;
  }
}
@media only screen and (max-width: 1280px) {
  .sec_contact .box_wrap .box .txt .btn a {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .sec_contact .box_wrap .box .txt .btn a {
    width: 244px;
    height: 65px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .sec_contact .box_wrap .box .txt .btn a {
    margin: 20px 0 0;
  }
}
.sec_contact .box_wrap .box.trial h2 {
  color: var(--accent);
}
.sec_contact .box_wrap .box.faq h2 {
  color: var(--primary);
}