@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

.blinking {
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  -moz-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

p:empty {
  display: none;
}
@media print, screen and (min-width: 835px) {
  .sp {
    display: none;
  }

  /* flex box */
  .flex {
    display: flex;
  }

  .inline-flex {
    display: inline-flex;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .flex.justify-sb {
    justify-content: space-between;
  }

  .flex.justify-center {
    justify-content: center;
  }

  .pc-block {
    display: block;
  }

  .pc-in-block {
    display: inline-block;
  }

  .pc-none {
    display: none !important;
  }
}

@media print, screen and (max-width: 834px) {
  .pc {
    display: none;
  }

  /* flex box */
  .sp-flex {
    display: flex;
  }

  .sp-flex.justify-sb {
    justify-content: space-between;
  }

  .sp-flex.justify-center {
    justify-content: center;
  }

  .sp-flex-wrap {
    flex-wrap: wrap;
  }

  .sp-block {
    display: block !important;
  }

  .sp-in-block {
    display: inline-block;
  }

  .sp-inline {
    display: inline !important;
  }

  .sp-none {
    display: none !important;
  }
}

.in-block {
  display: inline-block;
}

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

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

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

.box01 {
  margin: 2em auto;
  padding: 2em 2.5em;
  background: #ecf4d9;
  border-radius: 1.25em;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
}

ul.list01,
dl.list01 {
  padding: 0;
}

.list01 > li,
.list01 > dt {
  position: relative;
  padding-left: 1.75em;
  list-style-type: none;
}

.list01 > li:before,
.list01 > dt:before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  padding: 0;
  left: 0.25em;
  top: 0.38em;
  background: #009944;
  box-sizing: border-box;
  padding: 0 !important;
  padding-left: 1.5em;
  transform: rotate(45deg);
}

.list01 dd {
  padding-left: 1.75em;
  margin-left: 0;
}

.link01 {
  position: relative;
  padding-left: 1em;
  text-decoration: none;
  color: #231815;
}

.link01:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.35em;
  border: 0.4em solid transparent;
  border-left: 0.65em solid #e3556e;
}

.btn01 {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  /*  padding: .5em .75em .4em;*/
  padding: 0.35em 0.75em 0.15em;
  min-height: 3.085em;
  color: #eb637d;
  border: 4px solid #eb637d;
  border-radius: 99999px;
  max-width: 445px;
  font-weight: bold;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
}

.btn01.arrow {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
}

.btn01.arrow > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.4em;
  top: 50%;
  border: 0.45em solid transparent;
  border-left: 0.7em solid #eb637d;
  transform: translateY(-50%);
}

ul.note {
  padding: 0;
}

ul.note > li {
  list-style: none;
  padding: 0 !important;
  margin: 0;
  text-indent: -0.5em;
  padding-left: 0.5em !important;
  font-size: 0.875em;
}

.mt0 {
  margin-top: 0 !important;
}

.mt05em {
  margin-top: 0.5em !important;
}

.mt1em {
  margin-top: 1em !important;
}

.mt2em {
  margin-top: 2em !important;
}

.mt3em {
  margin-top: 3em !important;
}

.mt4em {
  margin-top: 4em !important;
}

/* header */
.header-container {
  position: fixed !important;
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 10;
  /*background: url(images/bg_header.png) no-repeat 0 0;
  background-size: cover;*/
}

@media print, screen and (max-width: 1980px) and (min-width: 1024x) {
  .header-container {
    background-size: 100% auto;
  }
}

.pg_top .content {
  margin-top: 0;
}

@media print, screen and (min-width: 835px) {
  .content:before {
    content: "";
    display: block;
    width: 100%;
    height: clamp(100px, 17vw, 210px);
  }

  @media print, screen and (max-width: 1640px) and (min-width: 835px) {
    .content:before {
      height: min(15vw, 210px);
    }
  }

  @media print, screen and (max-width: 1200px) and (min-width: 835px) {
    .content:before {
      height: max(100px, 16.8vw);
    }
  }

  /* 固定 */
  .fixed-header,
  .header-container {
    box-shadow: none;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 90%,
      rgba(255, 255, 255, 0) 100%
    );
    background: #fff;
  }

  .header-container .header-container-in {
    display: block;
    background: url(images/bg_header.png) no-repeat 0 0;
    background-size: cover;

    padding: 0;
    max-width: initial;
  }

  /*.fixed-header .header-container-in.:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 80%,rgba(255,255,255,0) 100%);
    z-index: -1;
  }*/

  .header-container .header-container-in .wrap {
    width: 100%;
    /*    padding-bottom: .75em;*/
    padding-bottom: 0.5em;
  }

  .header-container-in .logo-header {
    /*    max-height: 60px;*/
  }
}

.wrap {
  max-width: 1450px;
  padding-left: 30px;
  padding-right: 30px;
}

.header {
  aspect-ratio: initial;
  background: none;
  max-height: 215px;
  padding: 5.25% 0;
  /*  padding: 2.5vw 0;*/
  /*  padding: 1.5vw 0 .5vw;*/
  padding: 0.25vw 0 0;
}

#header-in {
  background: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1630px;
  /* gap: 0; */
  /* width: auto; */
}

#header-in > div {
  margin: 0;
  padding: 0;
}

#header-in:after {
  display: none;
}

#header-in .logo {
  flex: 0 1 40.4vw;
  /*    max-width: 800px;*/
  max-width: 500px;
}

.logo-image .site-name,
.logo-image .site-name > span {
  overflow: hidden;
  display: block;
  padding: 0;
}

#header-in .logo img {
  display: block;
  width: auto;
  max-height: initial;
}

#header-in .tel {
  flex: 0 1 29.8484%;
  padding: 0;
  /*    margin-bottom: 1%;*/
}

#header-in .tel li {
  list-style: none;
  margin: 0;
}

#header-in .tel img {
  display: block;
}

@media screen and (min-width: 835px) {
  #header-in .logo {
    min-width: 360px;
    position: relative;
    top: min(0.5vw, 12px);
    margin-bottom: -0.25vw;
  }

  #header-in .tel {
    min-width: 270px;
    max-width: 380px;
  }
}

/* gnav */
#navi {
  background: none;
  display: flex;
  justify-content: space-between;
}

.navi-in {
  width: 100%;
  /*  max-width: 1600px;*/
  max-width: 1200px;
}

#navi ul > li {
  min-width: 90px;
  /*  width: 12.5% !important;*/
  width: max(11%, 4.25em) !important;
  height: auto;
  line-height: 1;
}

#navi ul > li a {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
  font-weight: bold;
  /*  font-size: min(1.4vw, 20px);*/
  font-size: clamp(12px, 1vw, 17px);
  padding: 12% 0 0;
  overflow: hidden;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d3edfb+0,d3edfb+50,d3edfb+70,7db9e8+100&1+0,1+50,0+70,0+100 */
  background: radial-gradient(
    ellipse at center,
    rgba(211, 237, 251, 1) 0%,
    rgba(211, 237, 251, 1) 50%,
    rgba(211, 237, 251, 0) 70%,
    rgba(125, 185, 232, 0) 100%
  );
}

#navi ul > li.current-menu-item a {
  background: radial-gradient(ellipse at center, #ffe893 0%, #ffe893 50%, transparent 70%, transparent 100%);
}

#navi ul > li a:before {
  content: "";
  display: block;
  box-sizing: border-box;
  /* position: absolute;
  left: 50%;
  top: 0; */
  width: 60%;
  /* height:0;
  min-height: 0;
  overflow: hidden;
  padding: 70% 0 0; */
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: url(images/ico-gnav.png) no-repeat 0 0;
  background-size: auto 100%;
  /* transform: translateX(-50%); */
}

#navi ul > li:nth-of-type(2) a:before {
  background-position-x: 14.25%;
}

#navi ul > li:nth-of-type(3) a:before {
  background-position-x: 28.6%;
}

#navi ul > li:nth-of-type(4) a:before {
  background-position-x: 42.9%;
}

#navi ul > li:nth-of-type(5) a:before {
  background-position-x: 57%;
}

#navi ul > li:nth-of-type(6) a:before {
  background-position-x: 71.5%;
}

#navi ul > li:nth-of-type(7) a:before {
  background-position-x: 85.75%;
}

#navi ul > li:nth-of-type(8) a:before {
  background-position-x: 100%;
}

/* footer */
#footer {
  padding: 3em 0 1em;
  font-size: 0.9em;
}

.footer-in {
  max-width: 1690px;
}

.footer-widgets:after {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
}

.footer-bottom:after {
  display: none;
}

.footer-in .logo-image {
  padding: 0;
  margin: 0 0 1em;
}

.footer-bottom-logo img {
  height: auto;
}

.footer-widgets,
.footer-widgets-mobile {
  justify-content: space-between;
}

.footer-center {
  flex: 0 1 auto;
  width: auto;
}

.footer-right {
  width: auto;
}

.widget-footer-right {
  display: flex;
  padding-top: 1em;
}

.widget-footer-right-title {
  padding-top: 0.25em;
  flex: 0 0 auto;
  padding-right: 1.5em;
  font-weight: normal;
  font-size: 1em;
}

.footer-widgets .menu {
  display: block;
  column-count: 2;
  text-align: left;
}

.footer-widgets .menu > li {
  position: relative;
  margin: 0 0.5em;
  padding-left: 1em;
  border: 0;
  /*  font-size: 21px;*/
}

.footer-widgets .menu > li:before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0.275em;
}

.footer-widgets .menu > li > a {
  padding: 0.25em 0;
}

.footer-widgets .menu > li > a:hover {
  background: none;
}

.go-to-top .go-to-top-button {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

/* title */
h2.ttl {
  color: #fff;
  border: 5px solid #c3d94e;
  border-radius: 99999px;
  background: url(images/ttl_bg.png) no-repeat 0 0;
  font-size: 32px;
  /*  font-size: 1.583em;*/
  font-size: 1.2em;
  margin: 0 0 1em;
  /*  padding: .3em 1em .16em;*/
  padding: 0.5em 1.2em 0.3em;
  line-height: 1.3;
}

h2.ttl_m,
.ttl_m {
  background: none;
  padding: 0;
  font-size: 1.4166em;
  text-align: center;
}

/*.ttl_m.text-center {
  text-align: center;
}*/

/* single page title */
.single .article h2 {
  background: none;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid #ddd;
}

.pg_lower .entry-title {
  text-align: center;
  margin: 0 auto 1.75em;
  width: fit-content;
  min-width: 10.82em;
  background: url(images/pgttl_bg.png) no-repeat 0 0;
  background-size: cover;
  padding: 0.62em 1em 0.4em;
  line-height: 1.3;
  /*    font-size: 1.7272em;*/
  font-size: max(1.19191vw, 1.5em);
  color: #fff;
  border-radius: 99999px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pg_lower .entry-title.wide {
  background: url(images/pgttl_bg_l.png) no-repeat 0 0;
  min-width: 19em;
  background-size: cover;
}

.pg_lower .entry-title.ex-wide {
  background: url(images/pgttl_bg_exl.png) no-repeat 0 0;
  min-width: 22em;
  background-size: cover;
}

/* top page */
.pg_top #main {
  padding: 0;
}

.pg_top h1.entry-title {
  display: none;
}

.pg_top .entry-content {
  margin-top: 0;
}

/* slider */
.slider {
  padding: 0 !important;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
  margin: 0 !important;
}

.slider .mv {
  position: relative;
  padding: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.slider .mv > br {
  display: none;
}

.slider .mv img {
  margin: 0 auto;
  object-fit: contain;
  aspect-ratio: 1375 / 673;
  max-height: 528px;
}

@media print, screen and (min-width: 835px) {
  .slick-slide img.sp {
    display: none;
  }
}

@media print, screen and (max-width: 834px) {
  .slick-slide img.pc {
    display: none;
  }
}

.slick-prev,
.slick-next {
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: rgba(0, 0, 0, 0.25);
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-prev:before,
.slick-next:before {
  color: #fff;
  font-size: 1rem;
}

/* sidebar */
.side_menu {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0 !important;
}

.side .side_menu > li {
  margin: 0 0 1em;
  padding: 0;
  list-style-type: none;
  width: 32%;
}

.side_menu li a {
  text-decoration: none;
}

.side_menu li img {
  display: block;
}

.side_menu .nav_side {
  margin: 0 0 1em;
}

.side_menu .nav_side .side_btn01,
.side_menu .nav_side .side_btn02 {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 3.5vw;
  border-radius: 3px;
  overflow: hidden;
  text-align: center;
}

.side_menu .nav_side .side_btn01 > span,
.side_menu .nav_side .side_btn02 > span {
  display: grid;
  place-items: center;
  /*width: calc(100% - .35em);
    height: calc(100% - .35em);*/
  width: calc(100% - min(0.35em, 4px));
  height: calc(100% - min(0.35em, 4px));
  border-radius: 1px;
}

.side_menu .nav_side .side_btn01:before,
.side_menu .nav_side .side_btn02:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 120%;
  height: 0;
  padding: 33% 0 0;
  background: rgb(255 255 255 / 10%);
  border-radius: 50%;
  transform: translate(-50%, -35%);
  z-index: 1;
}

.side_btn01 {
  background: linear-gradient(to bottom, #de3c70 0%, #e76d79 100%);
}

.side_btn01 > span {
  background: linear-gradient(to bottom, #e76d79 0%, #de3c70 100%);
}

.side_btn02 {
  background: linear-gradient(to bottom, #005daa 0%, #0097d8 100%);
}

.side_btn02 > span {
  background: linear-gradient(to bottom, #0097d8 0%, #005daa 100%);
}

.side_menu .nav_side .side_btn01:after,
.side_menu .nav_side .side_btn02:after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.4em;
  height: 0.4em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/*.side_menu .nav_side .side_btn01 {
    background: url(images/btn_side_01.png) no-repeat 0 0;
    background-size: contain;
}

.side_menu .nav_side .side_btn02 {
    background: url(images/btn_side_02.png) no-repeat 0 0;
    background-size: contain;
}*/

@media print, screen and (min-width: 835px) {
  .contentWrap {
    display: flex;
    justify-content: space-between;
    margin-top: 3.25em;
  }

  .contentWrap .content_main {
    flex: 1 1 auto;
    padding-right: 7.45%;
    max-width: 1036px;
    box-sizing: initial;
  }

  .contentWrap .side {
    flex: 0 0 250px;
  }

  .side_menu {
    display: block;
  }

  .side .side_menu > li {
    width: auto;
  }

  .side_menu .nav_side .side_btn01,
  .side_menu .nav_side .side_btn02 {
    font-size: 1em;
    min-height: 69px;
  }

  .side_menu .nav_side .side_btn01 > span,
  .side_menu .nav_side .side_btn02 > span {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
}

.pg_top .ttl + p {
  display: none;
}

#newpostcatch-3 {
  margin: 0;
}

#newpostcatch-3 #npcatch {
  padding: 0 0.5em;
  margin: 0;
}

#newpostcatch-3 #npcatch li {
  list-style: none;
  margin: 0 0 1em;
}

#newpostcatch-3 #npcatch li:last-child {
  margin-bottom: 0;
}

#newpostcatch-3 #npcatch li a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875em;
}

#newpostcatch-3 #npcatch li figure {
  display: none;
  flex: 0 0 100px;
}

#newpostcatch-3 #npcatch li figure img {
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

#newpostcatch-3 #npcatch li .detail {
  display: flex;
  flex-direction: column-reverse;
  flex-grow: 1;
  margin-top: 0;
  padding-top: 0;
  /* padding-left: .85em; */
}

#newpostcatch-3 #npcatch li .detail .date {
  padding: 0;
  margin: 0;
  font-size: 0.85em;
}

#newpostcatch-3 #npcatch li .detail .title {
  padding: 0;
  margin: 0;
}

/* -------------------------------
  LOWER PAGE STYLES
  -------------------------------- */
.pg_lower .content {
  /* margin-top: 4.5% */
  margin-top: 2.25%;
}

.pg_lower .wrap {
  max-width: 1600px;
}

.entry-content > .section + .section {
  margin-top: 9%;
}

@media print, screen and (min-width: 835px) {
  .linkSection .flex.col2 > .btn01 {
    max-width: 527px;
    flex: 0 1 47%;
  }

  .linkSection .flex.col3 > .btn01 {
    flex: 0 1 30%;
  }
}

/* ----- greeting page ----- */
.pg_greeting .historySection .list01 li {
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}

.pg_greeting .historySection .list01 li:before {
  top: 1.1em;
}

.pg_greeting .historySection .list01 li:not(:last-of-type) {
  border-bottom: 4px dotted #898989;
}

.pg_greeting .historySection .box01 ul {
  margin: 0;
  padding: 0;
}

.pg_greeting .policySection .txt {
  margin: 2.5em auto 0;
}

.pg_greeting .policySection .head {
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  margin: 0 auto -1.35em;
  width: 6.65em;
  aspect-ratio: 1 / 1;
  background: #ffe893;
  /*  font-size: 1.1667em;*/
  font-size: 1.45em;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
}

.pg_greeting .policySection .txt p {
  text-align-last: left;
}

@media print, screen and (min-width: 835px) {
  .pg_greeting .flex .box {
    width: calc(calc(100% - 5.6em) / 3);
  }
}

/* introduction page styles */
.pg_introduction .mapSection .map {
  position: relative;
  overflow: hidden;
}

@media print, screen and (min-width: 835px) {
  .pg_introduction .mapSection .map img.pc {
    display: block;
  }

  .pg_introduction .entry-content > .note.pc {
    display: flex;
    align-items: center;
    position: absolute;
    top: 2.5rem;
    height: 4rem;
    /*    left: calc(50% + 22em);*/
    left: 77%;
    margin: 0;
    min-height: 3em;
    line-height: 1.5;
    transform: translate(-50%, 0);
    font-size: 0.8em;
    white-space: nowrap;
  }

  .pg_introduction .entry-content > .note.pc br.tb {
    display: none;
  }
}

@media print, screen and (max-width: 1360px) {
  .pg_introduction .entry-content > .note.pc {
    left: calc(50% + 22em);
    font-size: min(1.5vw, 0.8em);
  }
}

@media print, screen and (max-width: 834px) {
  .pg_introduction .mapSection .map img.sp {
    display: block;
  }
}

.pg_introduction .mapSection .facilityList {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0.84em;
}

.pg_introduction .mapSection .facilityList li {
  list-style: none;
  position: absolute;
  /*letter-spacing: .07em;
  letter-spacing: -.03em;*/
  letter-spacing: 0.03em;
  line-height: 1.3;
}

@media print, screen and (max-width: 1540px) {
  .pg_introduction .mapSection .facilityList {
    /*    font-size: 1.22vw;*/
    font-size: max(1.22vw, 0.6em);
  }

  .pg_introduction .content-in {
    padding-left: 0;
    padding-right: 0;
  }
  .pg_introduction.no-sidebar .content .main {
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1420px;
  }

  .pg_introduction .detailSection {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pg_introduction .mapSection .facilityList .anchr01 {
  /* left: 85.2vw; */
  left: 89.825%;
  /* top: 58vw; */
  top: 85.5%;
  min-width: 5.1em;
}

.pg_introduction .mapSection .facilityList .anchr02 {
  /* left: 63.5vw; */
  /* top: 44.5vw; */
  left: 67.5%;
  top: 0.2%;
  min-width: 6.6em;
}

.pg_introduction .mapSection .facilityList .anchr03 {
  /* left: 69.1vw; */
  /* top: 34.6vw; */
  left: 73.8%;
  top: 52.2%;
  letter-spacing: 0;
  min-width: 8.1em;
}

.pg_introduction .mapSection .facilityList .anchr04 {
  /* left: 52.95vw; */
  /* top: 25.8vw; */
  left: 56.7%;
  top: 39.05%;
  min-width: 7.5em;
}

.pg_introduction .mapSection .facilityList .anchr05 {
  /* left: 33.6vw; */
  /* top: 19.45vw; */
  left: 36.7%;
  top: 29%;
  min-width: 6.5em;
}

.pg_introduction .mapSection .facilityList .anchr06 {
  /* left: 85.92vw; */
  /* top: 38.01vw; */
  left: 91.48%;
  top: 57.5%;
  min-width: 5em;
}

.pg_introduction .mapSection .facilityList .anchr07 {
  /* left: 43.22vw; */
  /* top: 31.14vw; */
  left: 45.2%;
  top: 46.35%;
  line-height: 1.2;
  min-width: 4.8em;
}

.pg_introduction .mapSection .facilityList .anchr08 {
  /* left: 7.35vw; */
  /* top: 58.2vw; */
  left: 8.77%;
  top: 86.95%;
  min-width: 5em;
  /* letter-spacing: -.005em; */
}

.pg_introduction .mapSection .facilityList .anchr09 {
  /* left: 71.3vw; */
  /* top: 15.88vw; */
  left: 75.9%;
  top: 23.65%;
  min-width: 4.1em;
}

.pg_introduction .mapSection .facilityList .anchr10 {
  /* left: 34.1vw; */
  /* top: 42.9vw; */
  left: 37.13%;
  top: 64.1%;
  min-width: 5.1em;
}

.pg_introduction .mapSection .facilityList .anchr11 {
  left: 72.45vw;
  top: 57.71vw;
  left: 77%;
  top: 86.35%;
  min-width: 3.6em;
  /* letter-spacing: .13em; */
}

.pg_introduction .mapSection .facilityList .anchr12 {
  /* left: 60.53vw; */
  /* left: 60.77vw; */
  /* top: 12.8vw; */
  left: 64.65%;
  top: 19.06%;
  line-height: 1.2;
  min-width: 4.8em;
}

.pg_introduction .mapSection .facilityList a {
  display: block;
  /*  padding: .18em .98em;*/
  padding: 0.2em 0.5em 0.16em;
  color: inherit;
  text-decoration: none;
  border-radius: 9999px;
  text-align: center;
  font-weight: bold;
  /*  background:rgb(16 255 0 / 49%);*/
}

.pg_introduction .mapSection .facilityList a:hover {
  background: #e43c00;
  color: #fff;
}

@media print, screen and (min-width: 835px) {
  .pg_introduction .mapSection .facilityList li .num {
    display: none;
  }

  .pg_introduction .mapSection .facilityList li a {
    transition: background-color 0.3s ease-out;
  }

  /* .pg_introduction .mapSection .facilityList li a .txt {
    visibility: hidden;
  }

  .pg_introduction .mapSection .facilityList .anchr01 a {
    background: url(images/map_txt01.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr02 a {
    background: url(images/map_txt02.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr03 a {
    background: url(images/map_txt03.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr04 a {
    background: url(images/map_txt04.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr05 a {
    background: url(images/map_txt05.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr06 a {
    background: url(images/map_txt06.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr07 a {
    background: url(images/map_txt07.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr08 a {
    background: url(images/map_txt08.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr09 a {
    background: url(images/map_txt09.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr10 a {
    background: url(images/map_txt10.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr11 a {
    background: url(images/map_txt11.png) no-repeat 0 0;
    background-size: 100% auto;
  }

  .pg_introduction .mapSection .facilityList .anchr12 a {
    background: url(images/map_txt12.png) no-repeat 0 0;
    background-size: 100% auto;
  } */

  .pg_introduction .mapSection .facilityList li a:hover {
    background-color: #e43c00;
    background-position: 0 bottom;
  }

  .pg_introduction .detailSection .flex .box .head .num {
    display: none;
  }
}

.pg_introduction .detailSection .flex .box .head {
  border: 0;
  padding: 0.5em 0.5em 0.4em;
  margin: 0.5em 0 0.75em;
  line-height: 1.4;
  border-radius: 999999px;
  background: #d8e084;
  font-size: 1.1667em;
  color: #1a1311;
  text-align: center;
}

.pg_introduction .detailSection .flex .box:nth-of-type(even) .head {
  background: #ffe17d;
}

.pg_introduction .detailSection .flex {
  gap: 0 2em;
}

.pg_introduction .detailSection .flex .box {
  width: calc(calc(100% - 6em) / 4);
}

@media print, screen and (max-width: 1980px) {
  .pg_introduction .detailSection .flex {
    font-size: max(1.11vw, 18px);
  }
}

/* modal */
.pum-overlay {
  background: rgba(255, 255, 255, 0.85) !important;
}

.pum .pum-container.popmake {
  background: none;
  border: 0;
  box-shadow: none;
}

.pum .pum-content.popmake-content {
  color: inherit;
}

.pum .pum-title.popmake-title {
  display: none;
}

.pum .pum-container .box {
  max-width: 350px;
  margin: 0 auto;
}
.pum .pum-container .box img {
  display: block;
  margin: 0 auto;
}

.pum .pum-container .box .head {
  padding: 0.5em;
  margin: 1em 0;
  border-radius: 99999px;
  line-height: 1.3;
  background: #d8e084;
  text-align: center;
}

.pum .pum-container .box.even .head {
  background: #ffe893;
}

.pum .pum-container .pum-content + .pum-close,
.pum-theme-default-theme .pum-content + .pum-close {
  background: none;
  box-shadow: none;
  color: #303030;
  font-size: 2em;
  line-height: 1;
  padding: 0;
  width: 1.8em;
  height: 1.8em;
  transition: color 0.3s ease-out;
}

.pum .pum-container .pum-content + .pum-close:hover,
.pum-theme-default-theme .pum-content + .pum-close:hover {
  /*    color: #E43C00;*/
  opacity: 0.6;
}

@media print, screen and (min-width: 835px) {
  .pum .pum-container .box .head .num {
    display: none;
  }
}

@media print, screen and (max-width: 834px) {
  .pum .pum-container.popmake {
    top: 50px !important;
  }

  .pum .pum-container .pum-content + .pum-close,
  .pum-theme-default-theme .pum-content + .pum-close {
    width: 1.2em;
    height: 1.2em;
    top: -0.7em;
  }
}

/* guidance page styles */
.pg_guidance .guidanceBox {
  margin: 0 0 3.5em;
}

.pg_guidance .guidanceBox .head {
  background: #d8e698;
  /* font-size: 1.1667em; */
  font-size: 14px;
  border-radius: 999999px;
  border: 0;
  padding: 0.7em 1.25em 0.6em;
}

.pg_guidance .guidanceBox .txt *:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 835px) {
  .pg_guidance .guidanceBox .head {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 0;
    width: 8.5273em;
    height: 8.5273em;
    font-size: max(1.29633vw, 1em);
    border-radius: 50%;
  }

  .pg_guidance .guidanceBox .txt {
    flex-grow: 1;
    padding-left: 1.5em;
  }
}

/* ----- events page ----- */
.pg_events .box {
  margin: 0 0 3em;
}

.pg_events .box .txt {
  display: flex;
  align-items: center;
  margin: 0 0 -1em;
  font-size: 1.1667em;
  font-weight: bold;
  line-height: 1.4;
}

.pg_events .box .txt .month {
  display: grid;
  place-items: center;
  width: 4.1em;
  height: 4.1em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-right: 1em;
  margin-left: -1.1em;
  font-size: 1.4285em;
  background: #d8e084;
}

.pg_events .box:nth-of-type(2) .txt .month,
.pg_events .box:nth-of-type(3) .txt .month,
.pg_events .box:nth-of-type(6) .txt .month,
.pg_events .box:nth-of-type(7) .txt .month,
.pg_events .box:nth-of-type(10) .txt .month,
.pg_events .box:nth-of-type(11) .txt .month {
  background: #ffe17d;
}

.pg_events .flex .box .img {
  overflow: hidden;
  border-radius: 1.1em;
}

@media print, screen and (min-width: 835px) {
  .pg_events .flex .box {
    width: calc(calc(100% - 5.6em) / 2);
  }
}

@media print, screen and (max-width: 1980px) {
  .pg_events .flex .box .txt {
    font-size: max(1.29633vw, 1em);
  }
}

/* support page styles */
.pg_support .entry-title:not(.custom) {
  display: none;
}

.pg_support .flex .box {
  margin: 0 auto 2.5em;
}

.pg_support .flex .box:last-of-type {
  margin-bottom: 0;
}

.pg_support .flex > br {
  display: none;
}

.pg_support .txtLink .flex {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pg_support .txtLink a {
  display: block;
  margin: 0.35em auto;
  text-align-last: left;
}

@media print, screen and (min-width: 835px) {
  .pg_support .flex .box {
    margin: 0;
    width: calc(calc(100% - 3em) / 2);
  }

  .pg_support .txtLink .flex {
    gap: 0.75em 1.25em;
    max-width: 820px;
    width: auto;
  }

  .pg_support .txtLink .flex > * {
    margin: 0;
    width: calc(calc(100% - 2.5em) / 3);
  }

  .pg_support .txtLink a {
    margin: 0;
  }
}

/* students page styles */
.pg_students .entry-title:not(.custom) {
  display: none;
}

.pg_students .flex {
  max-width: 1380px;
  margin: 1em auto 0;
}

.pg_students .box {
  margin: 0 0 3.75em;
  padding: 1.75em;
  border-radius: 1.1em;
  overflow: hidden;
}

.pg_students .box .head {
  display: grid;
  place-items: center;
  border-radius: 99999px;
  margin: 0 0 1.25em;
  min-height: 3.9em;
  background: #fff;
  border: 0;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.5);
  font-size: 1.1667em;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.pg_students .box:nth-of-type(1) {
  background: url(images/students_bg01.png) no-repeat 0 0;
  background-size: cover;
}

.pg_students .box:nth-of-type(2) {
  background: url(images/students_bg02.png) no-repeat 0 0;
  background-size: cover;
}

.pg_students .box:nth-of-type(3) {
  background: url(images/students_bg03.png) no-repeat 0 0;
  background-size: cover;
}

.pg_students .box:nth-of-type(4) {
  background: url(images/students_bg04.png) no-repeat 0 0;
  background-size: cover;
}

.pg_students .box .list01 {
  font-size: 1.0833em;
  margin: 0 auto;
  width: fit-content;
}

.pg_students .tel {
  display: inline-flex;
  gap: 0 2em;
  align-items: center;
  font-weight: bold;
  font-size: min(2.45vw, 1.61em);
  line-height: 1;
  overflow: hidden;
}

.pg_students .tel > p,
.pg_students .tel > br {
  margin: 0;
}

.pg_students .tel .addr > p {
  margin-bottom: 0;
}

.pg_students .tel .hd {
  display: block;
  position: relative;
  background: #ea5405;
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0 1em;
  height: 2.8em;
  min-width: 9.5em;
  font-size: 1.1em;
  font-family: "Open Sans", sans-serif;
}

.pg_students .tel .hd:before {
  content: "";
  display: block;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 1.4em solid transparent;
  border-left: 0.95em solid #ea5405;
}

.pg_students .tel .num > span,
.pg_students .tel .num a > span {
  font-size: 0.6em;
}

.pg_students .tel .num {
  font-size: 2em;
  color: #ea5405;
}

.pg_students .tel .num a {
  color: #ea5405;
  text-decoration: none;
}

.pg_students .tel .mail {
  margin: 0.3em 0 0;
  display: block;
}

.pg_students .tel .mail a {
  text-decoration: none;
  color: inherit;
}

@media print, screen and (min-width: 835px) {
  .pg_students .flex .box {
    width: calc(calc(100% - 3em) / 2);
    max-width: 611px;
  }
}

@media print, screen and (max-width: 1980px) {
  .pg_students .flex .box .head {
    font-size: max(1.29633vw, 1em);
  }
}

/* ----- access page ----- */
.pg_access .map {
  position: relative;
}

.pg_access .map:before {
  content: "";
  display: block;
  height: 0;
  padding: 86.4% 0 0;
}

.pg_access .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 835px) {
  .pg_access .flex .map {
    flex: 0 1 55%;
    max-width: 750px;
  }
}

@media screen and (max-width: 834px) {
  .pg_access .flex {
    display: grid;
  }

  .pg_access .flex .txt {
    display: contents;
  }

  .pg_access .flex .ttl_m {
    order: 1;
  }

  .pg_access .flex .map {
    order: 2;
  }

  .pg_access .flex .txtwrap {
    order: 3;
    margin-top: 2.5em;
  }
}

/* お知らせ詳細ページのタイトル（オレンジ背景無し） */
.single-news .entry-title {
  padding: 0;
  background: none;
  border-radius: 0;
  color: inherit;
  text-shadow: none;
}

/* 投稿 - 関連記事 */
.related-entry-card-wrap {
  margin-bottom: 0.5em;
}

.related-entry-card-thumb {
  display: none;
}

.related-entry-card-content {
  margin-left: 0;
}

.pager-post-navi a figure {
  display: none;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1200px以下*/
@media screen and (max-width: 1200px) {
  #footer {
    font-size: 1.6vw;
  }
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/

  body:where(.mblt-header-mobile-buttons, .mblt-header-and-footer-mobile-buttons) {
    margin-top: 0;
  }

  ul.mobile-header-menu-buttons.mobile-menu-buttons.has-logo-button {
    background: none;
    box-shadow: none;
    justify-content: flex-end;
    z-index: 10;
  }

  ul.mobile-header-menu-buttons.mobile-menu-buttons.has-logo-button .logo-menu-button,
  ul.mobile-header-menu-buttons.mobile-menu-buttons.has-logo-button .search-menu-button {
    display: none;
  }

  .navi-in .menu-pc {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  h2.ttl {
    font-size: 3.128vw;
  }

  h2.ttl_m,
  .ttl_m {
    margin-bottom: 1.25em;
  }

  .pg_lower .entry-title {
    font-size: 3.323vw;
  }

  /* footer */
  .footer-widgets {
    display: flex;
  }
  .footer-widgets > div {
    width: auto;
  }

  .footer-left {
    flex: 0 1 35%;
  }

  /* lower page styles */
  .main {
    font-size: 2.0527vw;
  }

  /* introduction page styles */
  .pg_introduction .detailSection .flex {
    gap: 0 1.5em;
  }

  .pg_introduction .detailSection .flex .box {
    width: calc(calc(100% - 4.5em) / 3);
  }
}

@media screen and (min-width: 835px) {
  ul.mobile-header-menu-buttons.mobile-menu-buttons.has-logo-button,
  .navi-menu-content {
    display: none;
  }
}

/*834px以下*/
@media screen and (max-width: 834px) {
  /*@media screen and (max-width: 767px) {*/
  /*必要ならばここにコードを書く*/
  .sp-block {
    display: block !important;
  }

  .sp-text-left {
    text-align: left !important;
  }

  .sp-text-right {
    text-align: right !important;
  }

  .sp-text-center {
    text-align: center !important;
  }

  .sp-mt0 {
    margin-top: 0 !important;
  }

  .sp-mt05em {
    margin-top: 0.5em !important;
  }

  .sp-mt1em {
    margin-top: 1em !important;
  }

  .sp-mt2em {
    margin-top: 2em !important;
  }

  .sp-mt3em {
    margin-top: 3em !important;
  }

  .box01 {
    padding: 20px;
  }

  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn01 {
    margin: 0 auto;
    /*    width: fit-content;*/
    /*    min-width: 18.5em;*/
    max-width: 18.5em;
    width: 100%;
    border-width: 2px;
  }

  .btn01 + .btn01 {
    margin-top: 1.5em;
  }

  body:where(.mblt-header-mobile-buttons, .mblt-header-and-footer-mobile-buttons),
  body {
    /*      margin-top: 88px !important;*/
    /*      margin-top: 83px !important;*/
    margin-top: max(83px, 14%) !important;
  }

  .header {
    padding: 0;
    /*    height: 88px;*/
    height: max(15vw, 88px);
  }

  .header-container {
    position: relative;
    /*background: url(images/bg_header_sp.png) no-repeat 0 0;
    background-size: auto 88px;*/
    /*    background-size: contain;*/
    background: none;
    z-index: 1;
  }

  .is-header-fixed .header-container,
  .header-container {
    position: fixed !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 82%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .header-container:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    /*    top: 0;*/
    top: auto;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1 / 0.2346;
    /* height: 23.46%; */
    background: url(images/bg_header_sp.png) no-repeat 0 bottom;
    /*    background-size: cover;*/
    background-size: 100% 100%;
    /*    max-height: 88px;*/
    max-height: 130px;
    z-index: -1;
  }

  .header {
    padding-right: 40px;
    /* height: 72px; */
    padding-bottom: 16px;
  }

  #header-in {
    /*      padding: 0 20px;*/
    padding: 0 15px;
  }

  .site-name-text img {
    display: none !important;
  }

  #header-in .logo {
    flex: 0 1 50.27vw;
    max-width: 238.5px;
  }

  .site-name-text {
    position: relative;
    background: url(images/logo_sp.png) no-repeat 0 0;
    background-size: contain;
  }

  .site-name-text:before {
    content: "";
    display: block;
    height: 0;
    padding: 23.28% 0 0;
  }

  #header-in .tel {
    max-width: 103px;
  }

  .has-logo-button .menu-button {
    top: 0.7em;
    right: 0.5em;
    width: 40px;
    height: auto !important;
    min-height: 0 !important;
  }

  .menu-content {
    overflow: auto;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    /* max-width: 400px; */
    /* height: 100%; */
    max-width: initial;
    height: auto;
    background: #fff;
    transition: 0.3s ease-in-out;
    opacity: 1;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .navi-menu-content {
    left: 0;
    /* -webkit-transform: translateX(-105%);
      transform: translateX(-105%); */
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  #navi-menu-input:checked ~ #navi-menu-content,
  #sidebar-menu-input:checked ~ #sidebar-menu-content,
  #search-menu-input:checked ~ #search-menu-content,
  #share-menu-input:checked ~ #share-menu-content,
  #follow-menu-input:checked ~ #follow-menu-content {
    transition: 0.3s ease-in-out;
    /* -webkit-transform: translateX(0%);
      transform: translateX(0%); */
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }

  .menu-close-button {
    padding: 0.5em 0.75em 0.25em;
    text-align: right;
    line-height: 1;
  }

  .menu-close-button .fa-times:before,
  .menu-close-button .fa-times:after {
    width: 3px;
    height: 0.7em;
    background: #000;
    position: absolute;
    display: block;
    content: "";
    top: 15px;
    right: 30px;
    border-radius: 9999px;
  }

  .menu-close-button .fa-times:before {
    transform: rotate(45deg);
  }

  .menu-close-button .fa-times:after {
    transform: rotate(-45deg);
  }

  #navi {
    display: none;
  }

  .navi-in {
    padding-left: 20px;
    padding-right: 20px;
  }

  .entry-content {
    margin-top: 0;
  }

  .pg_lower .entry-title {
    font-size: 19px;
  }

  .pg_lower .entry-title.wide {
    min-width: 0;
  }

  h2.ttl {
    border-width: 3px;
    font-size: 1.2em;
  }

  h3.ttl_m,
  .ttl_m {
    margin-bottom: 0.5em;
    //font-size: 1.1em;
  }

  .menu-content .menu-drawer,
  .navi-in .menu-pc {
    display: flex;
    flex-wrap: wrap;
    margin: 0.5em auto 0;
    justify-content: flex-start;
    gap: 0 0.5em;
  }

  .menu-content .menu-drawer li,
  #navi .navi-in > ul > li {
    margin: 0 0 0.75em;
    width: calc(calc(100% - 1.5em) / 4) !important;
  }

  .menu-content .menu-drawer li a,
  #navi .navi-in > ul > li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 0.75em;
    padding-left: 40px;
    height: 100%;
    min-height: 4.235em;
    aspect-ratio: initial;
    background: #d1eaf8;
    border-radius: 99999px;
    font-size: 13px;

    font-weight: bold;
    padding-left: min(35%, 50px);
  }

  .menu-content .menu-drawer li.current-menu-item a,
  #navi .navi-in > ul > li.current-menu-item a {
    background: #ffe893;
  }

  .caption-wrap {
    flex-grow: 1;
    max-width: 90%;
    text-align: center;
  }

  .navi .item-label,
  .navi .item-description {
    text-overflow: initial;
    white-space: initial;
    text-align: center;
    margin: 0 auto;
    max-width: 5em;
  }

  .menu-content .menu-drawer li a:before {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 60%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .menu-content .menu-drawer li a:before,
  #navi .navi-in > ul > li a:before {
    position: absolute;
    left: 8%;
    margin: 0;
    width: 35px;
    height: 35px;
    min-height: 0;
    top: 50%;
    background: url(images/ico-gnav_sp.png) no-repeat 0 0;
    background-size: auto 100%;
    transform: translateY(-50%);
  }

  .menu-content .menu-drawer li:nth-of-type(2) a:before,
  #navi ul > li:nth-of-type(2) a:before {
    background-position-x: 14.25%;
  }

  .menu-content .menu-drawer li:nth-of-type(3) a:before,
  #navi ul > li:nth-of-type(3) a:before {
    background-position-x: 28.6%;
  }

  .menu-content .menu-drawer li:nth-of-type(4) a:before,
  #navi ul > li:nth-of-type(4) a:before {
    background-position-x: 42.9%;
  }

  .menu-content .menu-drawer li:nth-of-type(5) a:before,
  #navi ul > li:nth-of-type(5) a:before {
    background-position-x: 57%;
  }

  .menu-content .menu-drawer li:nth-of-type(6) a:before,
  #navi ul > li:nth-of-type(6) a:before {
    background-position-x: 71.5%;
  }

  .menu-content .menu-drawer li:nth-of-type(7) a:before,
  #navi ul > li:nth-of-type(7) a:before {
    background-position-x: 85.75%;
  }

  .menu-content .menu-drawer li:nth-of-type(8) a:before,
  #navi ul > li:nth-of-type(8) a:before {
    background-position-x: 100%;
  }

  main.main,
  div.sidebar {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .content {
    margin-top: 0;
  }

  .entry-content > br:first-child {
    display: none;
  }

  /* footer */
  #footer {
    padding: 1em 0 0;
    font-size: 13px;
  }

  .footer .wrap {
    padding: 0;
  }

  .footer-widgets {
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    max-width: 420px;
  }

  .footer-left {
    flex-grow: 1;
    padding: 2em 15px;
    background: #fff;
    text-align: center;
  }

  .footer-in .logo-image {
    margin: 0 auto 1em;
    width: 151px;
  }

  .footer-right {
    padding: 0 15px 1em;
  }

  .footer-widgets .widget {
    margin: 0 auto;
    width: fit-content;
    display: block;
  }

  .footer-widgets h3 {
    font-weight: bold;
    padding: 0 0 0.5em;
  }

  /*.footer-widgets .menu > li {
      font-size: 12px;
      line-height: 1.4;
      width: 100%;
  }*/

  .footer-widgets .menu {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0 1em;
    column-count: initial;
    column-gap: initial;
  }

  .footer-widgets .menu > li {
    margin: 0;
    float: none;
    width: 50%;
  }

  .footer-widgets .menu > li:nth-of-type(-n + 6) {
    width: calc(60% - 0.5em) !important;
  }

  .footer-widgets .menu > li:nth-of-type(n + 7) {
    width: calc(40% - 0.5em) !important;
  }

  .footer-widgets .menu > li:nth-of-type(1) {
    order: 1;
  }

  .footer-widgets .menu > li:nth-of-type(2) {
    order: 3;
  }

  .footer-widgets .menu > li:nth-of-type(3) {
    order: 5;
  }

  .footer-widgets .menu > li:nth-of-type(4) {
    order: 7;
  }

  .footer-widgets .menu > li:nth-of-type(5) {
    order: 9;
  }

  .footer-widgets .menu > li:nth-of-type(6) {
    order: 11;
  }

  .footer-widgets .menu > li:nth-of-type(7) {
    order: 2;
  }

  .footer-widgets .menu > li:nth-of-type(8) {
    order: 4;
  }

  .footer-widgets .menu > li:nth-of-type(9) {
    order: 6;
  }

  .footer-widgets .menu > li:nth-of-type(10) {
    order: 8;
  }

  .footer-widgets .menu > li:nth-of-type(11) {
    order: 10;
  }

  .footer-widgets .menu > li a {
    padding: 0.5em 0;
  }

  .footer-bottom {
    display: none;
  }

  .entry-content > .section + .section {
    margin-top: 4em;
  }

  .side .side_menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1em;
  }

  .side .side_menu > li:first-child {
    width: 100%;
  }

  .side .side_menu > li:first-child a {
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: 198px;
  }

  .side .side_menu > .nav_side {
    margin: 0;
    width: calc(calc(100% - 1em) / 2);
    max-width: 160px;
  }

  .side .side_menu > .nav_side a {
    min-height: 50px;
    font-size: 16px;
  }

  .main {
    /*      font-size: 1em;*/
    font-size: max(1.91846vw, 14px);
  }

  /* top page */
  .sliderArea {
    margin-left: -20px;
    margin-right: -20px;
  }

  .pg_top .mv {
    margin: 0;
    /*margin-left: -20px;
    margin-right: -20px;*/
  }

  .slider .mv img {
    width: 100%;
    aspect-ratio: 751 / 458;
  }

  .slick-prev {
    left: 10px;
  }

  .slick-next {
    right: 10px;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 1.35rem;
  }

  #newpostcatch-3 #npcatch li {
    margin: 0;
  }

  #newpostcatch-3 #npcatch li a {
    font-size: 1em;
  }

  #newpostcatch-3 #npcatch li a .date {
    font-weight: bold;
  }

  /* lower page */
  .pg_lower .content {
    margin-top: 0;
  }

  /* .pg_lower .entry-content {
    margin-bottom: 0;
  }*/

  .pg_lower .main {
    padding-bottom: 0;
  }

  /* greeting page styles */
  .pg_greeting .policySection .box {
    margin: 0 auto 2em;
    max-width: 216px;
  }

  .pg_greeting .policySection .box:last-child {
    margin-bottom: 0;
  }

  .pg_greeting .policySection .head {
    margin: 0.75em 0 0.75em;
    width: auto;
    aspect-ratio: initial;
    padding: 0.65em;
    border-radius: 99999px;
    font-size: 14px;
  }

  .pg_greeting .historySection .list01 li:not(:last-of-type) {
    border-bottom-width: 2px;
  }

  /* introduction page styles */
  .pg_introduction .note {
    text-align: center;
  }

  .pg_introduction .mapSection .map img {
    width: 100%;
    height: auto;
  }

  .pg_introduction .mapSection .facilityList {
    //font-size: max(3.8vw, 15px);
    font-size: max(4.2vw, 15px);
    font-family: "Open Sans", sans-serif;
  }

  .pg_introduction .mapSection .facilityList li a {
    padding: 0;
    width: 1.55em;
    height: 1.55em;
    line-height: 1.5em;
    border-radius: 50%;
    background: #e43c00;
    border: 1px solid transparent;
    color: #fff;
    letter-spacing: -0.035em;
    text-align: center;
    transition: all 0.3s ease-out;
  }

  .pg_introduction .mapSection .facilityList li a:hover {
    background: #ffef24;
    color: #e43c00;
    border-color: #e43c00;
  }

  .pg_introduction .mapSection .facilityList li .txt {
    display: none;
  }

  .pg_introduction .mapSection .facilityList .anchr01 {
    left: 91.5%;
    top: 83.3%;
  }

  .pg_introduction .mapSection .facilityList .anchr02 {
    left: 71.1%;
    top: 1.6%;
  }

  .pg_introduction .mapSection .facilityList .anchr03 {
    left: 75.6%;
    top: 49.5%;
  }

  .pg_introduction .mapSection .facilityList .anchr04 {
    left: 59%;
    top: 36.6%;
  }

  .pg_introduction .mapSection .facilityList .anchr05 {
    left: 29.9%;
    top: 14.2%;
  }

  .pg_introduction .mapSection .facilityList .anchr06 {
    left: 90.7%;
    top: 55.4%;
  }

  .pg_introduction .mapSection .facilityList .anchr07 {
    left: 30%;
    top: 49.2%;
  }

  .pg_introduction .mapSection .facilityList .anchr08 {
    left: 2.3%;
    top: 82.7%;
  }

  .pg_introduction .mapSection .facilityList .anchr09 {
    left: 76.4%;
    top: 20.2%;
  }

  .pg_introduction .mapSection .facilityList .anchr10 {
    left: 45.2%;
    top: 59.7%;
  }

  .pg_introduction .mapSection .facilityList .anchr11 {
    left: 74.7%;
    top: 83.8%;
  }

  .pg_introduction .mapSection .facilityList .anchr12 {
    left: 63.8%;
    top: 15.9%;
  }

  .pg_introduction .detailSection .flex .box {
    width: auto;
    max-width: 360px;
    margin: 0 auto 2em;
  }

  .pg_introduction .detailSection .flex .box .img {
    text-align: center;
  }

  /* evnets page styles */
  .pg_events .flex .box {
    margin: 0 auto 3em;
    max-width: 306px;
  }

  .pg_events .box:nth-of-type(odd) .txt .month {
    background: #d8e084;
  }

  .pg_events .box:nth-of-type(even) .txt .month {
    background: #ffe17d;
  }

  .pg_events .flex .box .txt {
    font-size: 14px;
  }

  .pg_events .flex .box .txt .month {
    font-size: 20px;
  }

  /* support page styles */
  .pg_support .linkSection {
    display: grid;
  }

  .pg_support .flex.col2 {
    display: contents;
  }

  .pg_support .linkSection .flex.col2 > .btn01:last-of-type {
    order: 3;
    margin-top: 1.5em;
  }

  .pg_support .linkSection .txtLink {
    margin-top: 1.5em !important;
  }

  /* students page styles */
  .pg_students .flex .box {
    margin: 0 auto 2.5em;
    width: 100%;
  }

  .pg_students .flex .box .head {
    font-size: 14px;
  }

  /* guidance page styles */
  .pg_guidance .guidanceBox {
    margin: 0 0 3em;
  }

  .pg_students .tel {
    font-size: 3.3vw;
    gap: 0 1.5em;
  }

  .pg_students .tel .hd {
    min-width: 0;
    padding: 0 0 0 0.5em;
    font-size: 0.9em;
    white-space: nowrap;
  }
}

@media screen and (max-width: 575px) {
  .wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sp2-block {
    display: block !important;
  }

  .menu-content .menu-drawer,
  .navi-in .menu-pc {
    justify-content: space-between;
  }

  .menu-content .menu-drawer li,
  #navi .navi-in > ul > li {
    margin: 0 0 1em;
    width: calc(calc(100% - 0.5em) / 2) !important;
  }

  .menu-content .menu-drawer li a,
  #navi .navi-in > ul > li a {
    font-size: 12px;
    /*    padding-left: 35px;*/
  }

  .menu-content .menu-drawer li a:before,
  #navi .navi-in > ul > li a:before {
    left: 5%;
  }

  .menu-content .menu-drawer .item-label,
  .menu-content .menu-drawer .item-description,
  .navi .item-label,
  .navi .item-description {
    max-width: initial;
  }

  /* top page */
  .pg_top .mv {
    /*margin-left: -15px;
    margin-right: -15px;*/
  }

  .sliderArea {
    margin-left: -15px;
    margin-right: -15px;
  }

  /* introduction page styles */
  .pg_introduction .detailSection {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*480px以下*/
@media screen and (max-width: 480px) {
  /*必要ならばここにコードを書く*/
}

/*374px以下*/
@media screen and (max-width: 374px) {
  .header-container:before {
    top: 0;
  }

  footer .menu > li {
    font-size: 3.45vw;
  }
}
