@charset "UTF-8";
/* -------------------------------
	table
-------------------------------- */
table {
  line-height: 1.5;
}

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1.5em 0;
}
.table-design-1 > tbody > tr > th {
  padding-left: 1em;
}
.table-design-1 > tbody > tr > td {
  padding-left: 2em;
}

.table-design-2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 1em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th {
  background: #eee;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

.table-design-3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid var(--primary);
}
.table-design-3 > tbody > tr > th, .table-design-3 > tbody > tr > td {
  padding: 1em;
  border-bottom: 1px solid var(--primary);
  vertical-align: text-top;
}
.table-design-3 > tbody > tr > th {
  color: var(--primary);
}

@media only screen and (max-width: 767px) {
  .table-inline colgroup {
    display: none !important;
  }
  .table-inline > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-inline > tbody > tr > th, .table-inline > tbody > tr > td {
    width: 100% !important;
    display: block;
  }

  .table-design-1.table-inline tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td {
    margin-top: .5em;
  }

  .table-design-3.table-inline > tbody > tr {
    border-bottom: 1px solid var(--primary);
    padding: 0.75em 0;
  }
  .table-design-3.table-inline > tbody > tr > th, .table-design-3.table-inline > tbody > tr > td {
    padding: 0 0.5em;
    border-bottom: none;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-inbk {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1em;
  padding: 0;
}

.list-dot-1 {
  list-style: none;
  padding-left: 0;
}
.list-dot-1 > li {
  padding-left: 1.2em;
  position: relative;
}
.list-dot-1 > li:before {
  content: "●";
  position: absolute;
  left: 0;
  transform: scale(0.5);
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	hr
-------------------------------- */
.hr {
  --border-color: var(--info);
  height: 0;
  border-top: solid 1px var(--border-color);
}

/* -------------------------------
	figure
-------------------------------- */
.link_figure, a:has(figure) {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover, a:has(figure):hover {
  text-decoration: none;
}

figure {
  margin-bottom: 0;
  height: 100%;
  position: relative;
  z-index: 0;
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(svg) */
.img-font {
  width: auto;
  height: 1em;
}

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto;
}

@media print, screen and (min-width: 768px) {
  img.alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }
  img.alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* 画像を枠に収める */
.photo-ofi {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi.cover img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* objectの位置 */
.object-lt {
  object-position: left top;
}

.object-lb {
  object-position: left bottom;
}

.object-rt {
  object-position: right top;
}

.object-rb {
  object-position: right bottom;
}

.object-cc {
  object-position: center center;
}

@media print, screen and (min-width: 576px) {
  .object-sm-lt {
    object-position: left top;
  }

  .object-sm-lb {
    object-position: left bottom;
  }

  .object-sm-rt {
    object-position: right top;
  }

  .object-sm-rb {
    object-position: right bottom;
  }

  .object-sm-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 768px) {
  .object-md-lt {
    object-position: left top;
  }

  .object-md-lb {
    object-position: left bottom;
  }

  .object-md-rt {
    object-position: right top;
  }

  .object-md-rb {
    object-position: right bottom;
  }

  .object-md-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 992px) {
  .object-lg-lt {
    object-position: left top;
  }

  .object-lg-lb {
    object-position: left bottom;
  }

  .object-lg-rt {
    object-position: right top;
  }

  .object-lg-rb {
    object-position: right bottom;
  }

  .object-lg-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1200px) {
  .object-xl-lt {
    object-position: left top;
  }

  .object-xl-lb {
    object-position: left bottom;
  }

  .object-xl-rt {
    object-position: right top;
  }

  .object-xl-rb {
    object-position: right bottom;
  }

  .object-xl-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1500px) {
  .object-xxl-lt {
    object-position: left top;
  }

  .object-xxl-lb {
    object-position: left bottom;
  }

  .object-xxl-rt {
    object-position: right top;
  }

  .object-xxl-rb {
    object-position: right bottom;
  }

  .object-xxl-cc {
    object-position: center center;
  }
}
/**/
.photo img, .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	画像拡大
-------------------------------- */
a[data-lightbox]:after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  color: #222;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  width: 2em;
  border-radius: 50%;
  margin-top: -1em;
  margin-left: -1em;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity .3s ease;
}
a[data-lightbox]:hover:after {
  opacity: 1;
}

/* -------------------------------
	btn
-------------------------------- */
.btn {
  font-weight: 800;
}

.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l {
  padding-left: 2em;
}
.btn-icon-l i {
  left: 1.2em;
}

.btn-icon-r {
  padding-right: 2em;
}
.btn-icon-r i {
  right: 1.2em;
}

.btn-1 {
  font-size: 1.2em;
  padding: 0.39483em 2em;
  min-width: min(74.666vw, 320px);
  border: dotted 3px #feae00;
  border-radius: 10em;
  background-color: #fff;
  transform: rotateZ(0.03deg);
}
.btn-1:hover {
  color: #000;
  background-color: #FFD478;
}

.btn-sns {
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
}
.btn-sns img {
  height: 1.5em;
  margin-right: 0.5em;
}
.btn-sns:hover {
  text-decoration: underline;
}

/* file icon */
.link-icon:before {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1em;
}
.link-icon[href$=".pdf"]:before {
  content: "\f1c1";
}
.link-icon[href$=".xls"]:before, .link-icon[href$=".xlsx"]:before {
  content: "\f1c3";
}
.link-icon[href$=".doc"]:before, .link-icon[href$=".docx"]:before {
  content: "\f1c2";
}
.link-icon [target="_blank"]:before {
  content: "\f35d";
  font-size: 0.875em;
}

/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-top: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 20px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-top: 560px;
  }
}

.googlecalendar {
  width: 100%;
  padding-top: 100%;
  /* 16:9 */
  position: relative;
  background-color: #ccc;
}
.googlecalendar iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .googlecalendar {
    padding-top: 56.25%;
    /* 16:9 */
  }
}

/* -------------------------------
	youtube
-------------------------------- */
.youtube {
  position: relative;
  padding-bottom: 56.3%;
  background-color: #ccc;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  --fs: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone i.tel_icon {
  --font-size: 0.6;
  color: #fff;
  font-size: calc(1em * var(--font-size));
  width: calc(1em * (1.5 / var(--font-size)));
  height: calc(1em * (1.5 / var(--font-size)));
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-right: 0.5em;
  background-color: #66e500;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	背景アイコン
-------------------------------- */
.bg-icon {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
}

/* -------------------------------
	splide
-------------------------------- */
.splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
.splide__arrow--prev, .splide__arrow--next {
  font-size: 1rem;
  display: grid;
  place-content: center;
  width: 4em;
  height: 4em;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #b93c42;
  position: absolute;
  top: 50%;
  margin-top: -2em;
  z-index: 20;
}
.splide__arrow--prev svg, .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.splide__arrow--prev:hover, .splide__arrow--next:hover {
  outline: none;
}

.splide__arrow--prev {
  left: 15px;
}
.splide__arrow--prev svg {
  transform: scale(-1, 1);
}

.splide__arrow--next {
  right: 15px;
}

.splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}
.splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

/* ---  --- */
.page_contact {
  padding: 65px 0;
  border-radius: 20px;
  background-color: #fff;
}
.page_contact .ttl {
  font-size: 23px;
  text-align: center;
  margin-bottom: 0.5em;
}
.page_contact .ttl > span {
  width: 2.68965em;
  height: 2.68965em;
  display: block;
  margin: 0 auto 0.25em;
  background-repeat: no-repeat;
  background-position: center center;
}
@media print, screen and (min-width: 768px) {
  .page_contact .ttl {
    font-size: min(calc(18px + 11 * (100vw - 768px) / 732), 29px);
  }
}
@media print, screen and (min-width: 768px) {
  .page_contact .links {
    padding-top: 1rem;
  }
}
.page_contact .links2 {
  font-size: 25px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page_contact .links2 {
    font-size: min(calc(18px + 12 * (100vw - 768px) / 732), 40px);
    padding-top: 1rem;
  }
}
.page_contact .links2 a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.page_contact .links2 a:hover {
  opacity: 0.65;
}
.page_contact .btn {
  color: #fff;
  font-size: 23px;
  max-width: 11.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0.21666em 0.5em;
  border: none;
  border-radius: 10em;
  background-color: #ccc;
}
.page_contact .btn:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0px 0.4em 0.66666em;
  border-color: transparent transparent transparent #fff;
  margin-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .page_contact .btn {
    font-size: min(calc(18px + 12 * (100vw - 768px) / 732), 30px);
  }
}
.page_contact .row > div {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #7f7f7f;
}
.page_contact .row > div:last-child {
  border: none;
}
@media print, screen and (min-width: 768px) {
  .page_contact .row > div {
    border-bottom: none;
    border-right: solid 1px #7f7f7f;
  }
}

.page_contact .page_contact_tel .ttl > span {
  border-radius: 50%;
  background-color: #f2a9a8;
  background-image: url("../images/common/tel.png");
  background-size: 70%;
}
.page_contact .page_contact_tel .telphone {
  color: #f2a9a8;
  font-size: 32px;
  text-align: center;
}
.page_contact .page_contact_tel .subtxt {
  font-weight: 500;
  font-size: 1.1em;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page_contact .page_contact_tel .telphone {
    font-size: min(calc(26px + 13 * (100vw - 768px) / 732), 38px);
  }
}

.page_contact .page_contact_mail .ttl > span {
  border-radius: 50%;
  background-color: #84c8ef;
  background-image: url("../images/common/mail.png");
  background-size: 60%;
}
.page_contact .page_contact_mail .btn {
  background-color: #84c8ef;
}
.page_contact .page_contact_mail .btn:hover {
  background-color: #3CA8E5;
}
.page_contact .page_contact_mail .links2, .page_contact .page_contact_mail .links2 a {
  color: #84c8ef;
}

.page_contact .page_contact_line .ttl > span {
  background-image: url("../images/common/line.png");
  background-size: contain;
}
.page_contact .page_contact_line .btn {
  background-color: #4bc763;
}
.page_contact .page_contact_line .btn:hover {
  background-color: #32A147;
}
.page_contact .page_contact_line .links2, .page_contact .page_contact_line .links2 a {
  color: #4bc763;
}

/* -------------------------------
	ページング
-------------------------------- */
.paging {
  font-size: 1rem;
  line-height: normal;
  letter-spacing: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 0;
}
.paging span {
  transform: rotateZ(0.03deg);
}
.paging span.paging-text {
  cursor: pointer;
  padding: 0 0.35em;
}
.paging span.current {
  color: #8a8986;
  cursor: auto;
  padding: 0 0.35em;
}
.paging span.paging-text a {
  color: #000;
  padding: 0 0.5em;
  transition: color 0.3s ease, border 0.3s ease;
}
.paging span.paging-text a:hover {
  color: #8a8986;
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  background-color: #ececec;
}

/* --▼text-- */
/* --▼font -- */
.fs-xxs {
  font-size: 0.75em !important;
}

.fs-sm {
  font-size: 0.875em !important;
}

.fs-md {
  font-size: 1.120em !important;
}

.fs-lg {
  font-size: 1.250em !important;
}

.f-feature {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

.fw4 {
  font-weight: 400 !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw7 {
  font-weight: 700 !important;
}

.fwn {
  font-weight: 400 !important;
}

.fwb {
  font-weight: 700 !important;
}

/* --▼margin-- */
.pb_foot {
  padding-bottom: min(calc(80px + 110 * (100vw - 320px) / 1600), 190px);
}

/* --▼margin-- */
/* space */
.mt-50 {
  margin-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
}

.mb-50 {
  margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
}

.mtb-50 {
  margin-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
}

.mt-60 {
  margin-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
}

.mb-60 {
  margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
}

.mtb-60 {
  margin-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
}

.mt-70 {
  margin-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
}

.mb-70 {
  margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
}

.mtb-70 {
  margin-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
}

.mt-80 {
  margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mb-80 {
  margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mtb-80 {
  margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.mt-90 {
  margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mb-90 {
  margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mtb-90 {
  margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.mt-100 {
  margin-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.mb-100 {
  margin-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.mtb-100 {
  margin-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  margin-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.mt-130 {
  margin-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

.mb-130 {
  margin-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

.mtb-130 {
  margin-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  margin-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

.pt-50 {
  padding-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
}

.pb-50 {
  padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
}

.ptb-50 {
  padding-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
}

.pt-60 {
  padding-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
}

.pb-60 {
  padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
}

.ptb-60 {
  padding-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
}

.pt-70 {
  padding-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
}

.pb-70 {
  padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
}

.ptb-70 {
  padding-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
}

.pt-80 {
  padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.pb-80 {
  padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.ptb-80 {
  padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
}

.pt-90 {
  padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.pb-90 {
  padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.ptb-90 {
  padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
}

.pt-100 {
  padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.pb-100 {
  padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.ptb-100 {
  padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
}

.pt-130 {
  padding-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

.pb-130 {
  padding-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

.ptb-130 {
  padding-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  padding-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
}

@media print, screen and (min-width: 992px) {
  .mt-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  }

  .mb-lg-50 {
    margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  }

  .mtb-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
    margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  }

  .mt-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  }

  .mb-lg-60 {
    margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  }

  .mtb-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
    margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  }

  .mt-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  }

  .mb-lg-70 {
    margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  }

  .mtb-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
    margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  }

  .mt-lg-80 {
    margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .mb-lg-80 {
    margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .mtb-lg-80 {
    margin-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
    margin-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .mt-lg-90 {
    margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .mtb-lg-90 {
    margin-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
    margin-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .mt-lg-100 {
    margin-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .mb-lg-100 {
    margin-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .mtb-lg-100 {
    margin-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
    margin-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .mt-lg-130 {
    margin-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }

  .mb-lg-130 {
    margin-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }

  .mtb-lg-130 {
    margin-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
    margin-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }
}
@media print, screen and (min-width: 992px) {
  .pt-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  }

  .pb-lg-50 {
    padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  }

  .ptb-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
    padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 880), 50px);
  }

  .pt-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  }

  .pb-lg-60 {
    padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  }

  .ptb-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
    padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 880), 60px);
  }

  .pt-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  }

  .pb-lg-70 {
    padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  }

  .ptb-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
    padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 880), 70px);
  }

  .pt-lg-80 {
    padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .pb-lg-80 {
    padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .ptb-lg-80 {
    padding-top: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
    padding-bottom: min(calc(32px + 48 * (100vw - 320px) / 880), 80px);
  }

  .pt-lg-90 {
    padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .ptb-lg-90 {
    padding-top: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
    padding-bottom: min(calc(36px + 54 * (100vw - 320px) / 880), 90px);
  }

  .pt-lg-100 {
    padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .pb-lg-100 {
    padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .ptb-lg-100 {
    padding-top: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
    padding-bottom: min(calc(40px + 60 * (100vw - 320px) / 880), 100px);
  }

  .pt-lg-130 {
    padding-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }

  .pb-lg-130 {
    padding-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }

  .ptb-lg-130 {
    padding-top: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
    padding-bottom: min(calc(52px + 78 * (100vw - 320px) / 880), 130px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

.mr-full {
  margin-right: -15px;
}

@media print, screen and (min-width: 576px) {
  .ml-full, .ml-sm-full {
    margin-left: calc((510px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full {
    margin-right: calc((510px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 768px) {
  .ml-full, .ml-sm-full, .ml-md-full {
    margin-left: calc((690px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full {
    margin-right: calc((690px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 992px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full {
    margin-left: calc((930px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full {
    margin-right: calc((930px - var(--app-w)) / 2);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full {
    margin-left: calc((1110px - var(--app-w)) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - var(--app-w)) / 2);
  }
}
/**/
@media print, screen and (min-width: 992px) {
  .ml-lg-half {
    margin-left: calc((930px - var(--app-w)) / 4);
  }

  .mr-lg-half {
    margin-right: calc((930px - var(--app-w)) / 4);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-lg-half, .ml-xl-half {
    margin-left: calc((1110px - var(--app-w)) / 4);
  }

  .mr-lg-half, .mr-xl-half {
    margin-right: calc((1110px - var(--app-w)) / 4);
  }
}
/* -------------------------------
	ページ内　共通デザイン
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.clear {
  clear: both;
}

/* ---  --- */
.fs-20-24 {
  font-size: min(calc(1em + 4 * (100vw - 320px) / 880), 1.2em);
}

/* -------------------------------
	main title
-------------------------------- */
.title-hh-1 {
  font-size: min(calc(28px + 20 * (100vw - 320px) / 1180), 48px);
  line-height: normal;
  text-align: center;
}
.title-hh-1 > small {
  font-size: 0.41666em;
  display: block;
  transform: rotateZ(0.03deg);
}
.title-hh-1 > img {
  width: 1.7em;
  display: block;
  margin: 0 auto 0.25em;
}

/* タイトル用フォントサイズ */
.ttl-fs-1 {
  font-size: 1.25rem;
}
@media print, screen and (min-width: 768px) {
  .ttl-fs-1 {
    font-size: 1.75rem;
  }
}
@media print, screen and (min-width: 992px) {
  .ttl-fs-1 {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .ttl-fs-1 {
    font-size: 2.5rem;
  }
}

/* -------------------------------
	bootstrap
-------------------------------- */
.container-fluid-xl {
  max-width: 1500px;
  width: 100%;
  padding-left: calc(15px + 35 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 35 * (100vw - 320px) / 1180);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1500px) {
  .container-fluid-xl {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* --- row --- */
.row-gallery {
  margin-left: calc(-5px - 10 * (100vw - 320px) / 880);
  margin-right: calc(-5px - 10 * (100vw - 320px) / 880);
}
.row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
  padding-left: calc(5px + 10 * (100vw - 320px) / 880);
  padding-right: calc(5px + 10 * (100vw - 320px) / 880);
  margin-bottom: calc(10px + 20 * (100vw - 320px) / 880);
}
@media print, screen and (min-width: 1200px) {
  .row-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row-gallery > [class^="col"], .row-gallery > [class*=" col"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}

/* --- gap --- */
.gap-y-10 {
  gap: 10px 0;
}

.gap-y-20 {
  gap: 20px 0;
}

.gap-y-30 {
  gap: 30px 0;
}

/* -------------------------------
	mainvisual
-------------------------------- */
#mainvisual {
  height: calc(var(--app-h) * 0.6);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainvisual {
    height: var(--app-h);
  }
}
@media print, screen and (min-width: 768px) {
  #mainvisual {
    height: var(--app-h);
  }
}

/* -------------------------------
	home
-------------------------------- */
/* ---  --- */
.home_ttl_1 {
  font-size: min(calc(28px + 20 * (100vw - 320px) / 1180), 48px);
  line-height: normal;
  text-align: center;
  transform: rotateZ(0.03deg);
}
.home_ttl_1 > small {
  font-size: 0.41666em;
  display: block;
}

/* --- お知らせ --- */
.home_news {
  padding-top: 60px;
  padding-bottom: min(calc(80px + 160 * (100vw - 320px) / 1180), 240px);
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.home_news .container-fluid {
  max-width: 1680px;
}
.home_news:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: min(8.7vw, 175px);
  background: url("../images/home/home_news_bottom.svg") no-repeat center bottom/100% 100%;
}
.home_news:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../images/home/home_news_bg.png") no-repeat center top;
}
.home_news .icon01 {
  left: min(2vw, 40px);
  bottom: 0;
  width: min(3.9vw, 78px);
  aspect-ratio: 39 / 35;
  background: url("../images/home/home_news_icon1.png") no-repeat center center/contain;
}

.home_news_splide {
  /* 前へ / 次へボタン */
}
.home_news_splide .splide__list {
  gap: 10px;
}
.home_news_splide .splide__list .splide__slide {
  flex: 0 0 280px;
}
@media print, screen and (min-width: 1200px) {
  .home_news_splide {
    margin-right: -30px;
  }
  .home_news_splide .splide__list {
    gap: 30px;
  }
  .home_news_splide .splide__list .splide__slide {
    flex: 0 0 calc(25% - 30px);
  }
}
.home_news_splide .splide__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 1em;
}
.home_news_splide .splide__arrow--prev, .home_news_splide .splide__arrow--next {
  font-size: 1rem;
  display: grid;
  place-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50% !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #feae00;
  z-index: 20;
}
.home_news_splide .splide__arrow--prev svg, .home_news_splide .splide__arrow--next svg {
  fill: #fff;
  width: 1em;
}
.home_news_splide .splide__arrow--prev:hover, .home_news_splide .splide__arrow--next:hover {
  outline: none;
}
.home_news_splide .splide__arrow--prev svg {
  transform: scale(-1, 1);
}
.home_news_splide .splide__arrow:disabled {
  background-color: #efefef;
  pointer-events: none;
  opacity: 1;
}
.home_news_splide .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.home_news_splide_figure {
  --bg-color: #000;
  --cat-fontsize: 1.2rem;
  position: relative;
  z-index: 0;
}
.home_news_splide_figure .photo {
  width: 100%;
  aspect-ratio: 78 / 53;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.home_news_splide_figure figcaption {
  padding: 0 5.1282%;
  margin-top: calc(-0px - var(--cat-fontsize));
  position: relative;
  z-index: 10;
}
.home_news_splide_figure figcaption .cat {
  color: #fff;
  font-size: var(--cat-fontsize);
  min-width: 6.45833em;
  padding: 0 1em;
  height: 2.08334em;
  display: inline-grid;
  place-items: center;
  border-radius: 0.41666em;
  background-color: var(--bg-color);
  position: relative;
}
.home_news_splide_figure figcaption .date {
  font-weight: 500;
  margin: 0.35em 0;
}
.home_news_splide_figure figcaption .ttl {
  font-size: 1.2rem;
}
a > .home_news_splide_figure .photo img {
  transition: transform 0.8s ease;
}
a > .home_news_splide_figure:hover .photo img {
  transform: scale(1.2);
}

/* ---  --- */
.home_about {
  background-color: #bce3f9;
  position: relative;
  z-index: 0;
}

.home_about_head {
  padding: 30px 0 35px;
  position: relative;
  z-index: 0;
}
.home_about_head:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  aspect-ratio: 500 / 277;
  background: url("../images/home/home_about_bg1.png") no-repeat center top/contain;
  pointer-events: none;
}
.home_about_head h2 {
  font-size: min(calc(18px + 24 * (100vw - 320px) / 1180), 42px);
  line-height: 1.25;
  text-align: center;
}
.home_about_head .icon01 {
  position: absolute;
  top: calc(-0px - min(8.8vw, 176px));
  right: 0;
  width: min(6.4vw, 128px);
  aspect-ratio: 128 / 221;
  background: url("../images/home/home_about_icon_1.png") no-repeat center center/contain;
}

.home_about_content {
  background: url("../images/home/home_about_2_bg.png") no-repeat center top;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.home_about_column {
  --border-radius: clamp(10px, 1.66666vw, 25px);
  padding: clamp(20px, 3.33334vw, 50px) clamp(15px, 2vw, 30px);
  border-radius: var(--border-radius);
  background-color: #fff;
}
.home_about_column .home_about_column_row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 18px;
}
@media print, screen and (min-width: 768px) {
  .home_about_column .home_about_column_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 922px) {
  .home_about_column .home_about_column_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.home_about_column.col4 {
  --border-radius: clamp(10px, 1.33334vw, 20px);
  padding: clamp(20px, 2vw, 30px) clamp(15px, 2vw, 30px);
}
.home_about_column.col4 .home_about_column_row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 18px;
}
@media print, screen and (min-width: 768px) {
  .home_about_column.col4 .home_about_column_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 922px) {
  .home_about_column.col4 .home_about_column_row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home_about_figure .photo {
  width: 100%;
  aspect-ratio: 29 / 18;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  overflow: hidden;
}
.home_about_figure figcaption h3 {
  color: #fff;
  font-size: calc(var(--measure-width) / 13.5652);
  line-height: 1.2;
  text-align: center;
  padding: 0.65em 0;
  margin-bottom: 0.625em;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  background-color: #4db05d;
}
@media print, screen and (min-width: 768px) {
  .home_about_figure figcaption h3 {
    font-size: calc(var(--measure-width) / 10.85);
  }
}
a > .home_about_figure .photo img {
  transition: all 0.8s ease;
}
a > .home_about_figure:hover .photo img {
  transform: scale(1.2);
}

.home_about_figure2 .photo {
  width: 100%;
  aspect-ratio: 29 / 18;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  overflow: hidden;
}
.home_about_figure2 figcaption h3 {
  color: #fff;
  font-size: calc(var(--measure-width) / 13.5652);
  line-height: 1.2;
  text-align: center;
  padding: 0.65em 0;
  margin-bottom: 0.625em;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  background-color: #4db05d;
}
.home_about_figure2 figcaption p {
  font-size: 0.9em;
}
@media print, screen and (min-width: 768px) {
  .home_about_figure2 figcaption h3 {
    font-size: calc(var(--measure-width) / 10.85);
  }
}
a > .home_about_figure2 .photo img {
  transition: all 0.8s ease;
}
a > .home_about_figure2:hover .photo img {
  transform: scale(1.2);
}

/* */
.home_download_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: min(2.66666vw, 40px);
}
.home_download_list > li {
  flex: 0 0 calc((100% - (min(2.66666vw, 40px) * 2)) / 3);
}
@media print, screen and (min-width: 768px) {
  .home_download_list {
    justify-content: center;
  }
  .home_download_list > li {
    flex: 0 0 calc((100% - (min(2.66666vw, 40px) * 3)) / 4);
  }
}
.home_download_list > li > a {
  font-weight: 800;
  font-size: calc(var(--measure-width) / 8);
  text-align: center;
  text-decoration: none;
  width: 100%;
  display: grid;
  aspect-ratio: 1/1;
  place-items: center;
  border-radius: 0.625em;
  border: solid 3px #fff;
  background-color: #fff;
  transition: border 0.3s ease;
}
.home_download_list > li > a > span {
  display: block;
}
.home_download_list > li > a > span img {
  width: auto;
  height: 3.75em;
  display: block;
  margin: 0.625em auto 0;
}
.home_download_list > li > a:hover {
  border-color: var(--warning);
}

/* ---  --- */
.home_gallery {
  position: relative;
}
.home_gallery .icon01 {
  right: 0;
  top: calc(0px - min(3.5vw, 70px));
  z-index: 10;
  width: clamp(30px, 5.95vw, 119px);
  aspect-ratio: 119 / 100;
  background-image: url("../images/home/loop_splide_icon1.png");
}

.loop_splide .splide__list {
  gap: clamp(5px, 1.33334vw, 20px);
}

.loop_splide_photo {
  width: clamp(120px, 26vw, 390px);
  aspect-ratio: 78 / 59;
}
.loop_splide_photo img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	園のこと
-------------------------------- */
/* --- 教育目標 --- */
.ennai_objective_head {
  background-color: #95d6a6;
  position: relative;
}
.ennai_objective_head:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: min(3.5vw, 70px);
  margin-top: calc(0px - min(1.75vw, 35px));
  background: url("../images/common/nami_green_1.png") repeat-x center center/contain;
}
.ennai_objective_head .ennai_objective_head_row {
  --padding: clamp(6px, 3.33334vw, 50px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  margin: 0 calc(0px - var(--padding));
}
.ennai_objective_head .ennai_objective_head_row a {
  text-decoration: none;
}
.ennai_objective_head .ennai_objective_head_row a > div {
  transition: transform 0.3s ease;
}
.ennai_objective_head .ennai_objective_head_row a:hover > div {
  transform: translateY(-15px);
}
.ennai_objective_head .ennai_objective_head_row > .item {
  --icon-ww: 36.5%;
  flex: 0 0 33.33334%;
  padding: 0 var(--padding);
}
.ennai_objective_head .ennai_objective_head_row > .item .icon {
  text-align: center;
  width: var(--icon-ww);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.ennai_objective_head .ennai_objective_head_row > .item .column {
  width: 100%;
  aspect-ratio: 1/1;
  margin-top: calc(0px - (var(--icon-ww) / 2));
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: dotted 5px #017101;
  background-color: #fff;
}
.ennai_objective_head .ennai_objective_head_row > .item .column p {
  color: #b93c42;
  font-size: calc(var(--measure-width) / 9);
  text-align: center;
}
.ennai_objective_head .ennai_objective_head_row > .item .column p ruby rt {
  letter-spacing: normal;
}

.ennai_objective_content {
  position: relative;
  z-index: 0;
}
.ennai_objective_content:before, .ennai_objective_content:after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.ennai_objective_content:before {
  right: 0;
  top: min(13.25vw, 265px);
  width: min(25.6vw, 512px);
  aspect-ratio: 521 / 795;
  background-image: url("../images/ennai/ennai_objective_content_bg_1.png");
}
.ennai_objective_content:after {
  left: 0;
  bottom: min(34.5vw, 690px);
  width: min(26.7vw, 534px);
  aspect-ratio: 267 / 482;
  background-image: url("../images/ennai/ennai_objective_content_bg_2.png");
}

.ennai_objective_content_top {
  --width: min(5.33334vw, 80px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(var(--width) * 0.75) var(--width) 0px var(--width);
  border-color: #95d6a6 transparent transparent transparent;
  margin: 0 auto;
}

/**/
.ennai_objective_content_item {
  --icon-ww: clamp(100px, 13.33334vw, 200px);
}
.ennai_objective_content_item .icon {
  text-align: center;
  width: var(--icon-ww);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.ennai_objective_content_item .icon img {
  max-width: inherit;
  width: 100%;
}
.ennai_objective_content_item .inner {
  border: solid clamp(5px, 1.33334vw, 20px) #95d6a6;
  border-radius: 25px;
  padding: clamp(15px, 3.33334vw, 50px);
  padding-bottom: clamp(30px, 6.6vw, 100px);
  padding-top: calc(var(--icon-ww) / 2);
  margin-top: calc(0px - (var(--icon-ww) / 2.5));
  background-color: #fff;
  position: relative;
}
.ennai_objective_content_item .inner h4 {
  color: #b93c42;
  font-size: min(calc(23px + 27 * (100vw - 320px) / 1180), 60px);
  text-align: center;
}
.ennai_objective_content_item .inner > .kumo1, .ennai_objective_content_item .inner > .kumo2 {
  width: min(19.2vw, 288px);
  aspect-ratio: 8 / 5;
  background-image: url("../images/ennai/ennai_objective_content_kumo.png");
}
.ennai_objective_content_item .inner > .kumo1 {
  right: 0;
  top: 0;
  transform: translate(55%, -20%);
  z-index: 10;
}
.ennai_objective_content_item .inner > .kumo2 {
  left: 0;
  bottom: 0;
  transform: translate(-55%, 50%);
  z-index: 10;
}

.ennai_objective_grid {
  --bg-color-1: #ace978;
  --bg-color-2: #feda2f;
  --bg-color-3: #f17200;
  --item_head: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 30px 1fr 50px 1fr;
  grid-template-areas: "a f" "b h" "c g" "d d" "e e";
  align-items: stretch;
  gap: 0 var(--item_head);
}
.ennai_objective_grid .item1 {
  grid-area: a;
}
.ennai_objective_grid .item2 {
  grid-area: f;
}
.ennai_objective_grid .item3 {
  grid-area: b;
}
.ennai_objective_grid .item4 {
  grid-area: h;
}
.ennai_objective_grid .item5 {
  grid-area: c;
}
.ennai_objective_grid .item6 {
  grid-area: g;
}
.ennai_objective_grid .item7 {
  grid-area: d;
}
.ennai_objective_grid .item8 {
  grid-area: e;
}
@media print, screen and (min-width: 768px) {
  .ennai_objective_grid {
    --item_head: min(3.33334vw, 50px);
    grid-template-columns: 1fr min(3.33334vw, 50px) 1fr min(3.33334vw, 50px) 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "a b c d e" "f h g d e";
    align-items: stretch;
    gap: var(--item_head) 0;
  }
}
.ennai_objective_grid .item {
  display: flex;
  flex-direction: column;
  border: solid 3px #000;
  border-radius: 10px;
}
.ennai_objective_grid .item .item_head {
  height: var(--item_head);
  border-radius: 10px 10px 0 0;
  position: relative;
}
.ennai_objective_grid .item .item_head > span {
  font-size: calc(var(--item_head) / 2.5);
  line-height: 1;
  letter-spacing: -0.05em;
  width: 4em;
  height: 4em;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: solid 2px #000;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotateZ(0.03deg);
}
.ennai_objective_grid .item .item_column {
  flex: 1 1 0;
  display: grid;
  place-items: center;
  padding: 10px 0;
}
.ennai_objective_grid .item .item_column p {
  font-size: calc(var(--width-item) / 13);
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .ennai_objective_grid .item .item_column {
    padding: 20px 0;
  }
}
.ennai_objective_grid .item1 .item_head, .ennai_objective_grid .item2 .item_head {
  background-color: var(--bg-color-1);
}
.ennai_objective_grid .item1 .item_head > span, .ennai_objective_grid .item2 .item_head > span {
  background-color: var(--bg-color-1);
}
.ennai_objective_grid .item5 .item_head, .ennai_objective_grid .item6 .item_head {
  background-color: var(--bg-color-2);
}
.ennai_objective_grid .item5 .item_head > span, .ennai_objective_grid .item6 .item_head > span {
  background-color: var(--bg-color-2);
}
.ennai_objective_grid .item8 {
  background-color: var(--bg-color-3);
}
.ennai_objective_grid .item8 .item_head > span {
  color: #fff;
  background-color: #000;
}
.ennai_objective_grid .item8 .item_column p {
  color: #fff;
  font-size: calc(var(--width-item) / 8);
}
@media print, screen and (min-width: 768px) {
  .ennai_objective_grid .item8 .item_column p {
    font-size: calc(var(--width-item) / 10);
  }
}
.ennai_objective_grid .item3, .ennai_objective_grid .item4 {
  display: flex;
}
.ennai_objective_grid .item3 > span, .ennai_objective_grid .item4 > span {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  background-color: #000;
}
@media print, screen and (min-width: 768px) {
  .ennai_objective_grid .item3 > span, .ennai_objective_grid .item4 > span {
    width: 100%;
    height: 2px;
    margin: auto 0;
  }
}
.ennai_objective_grid .item7 {
  display: flex;
}
.ennai_objective_grid .item7 .line1 {
  width: calc(50% + (var(--item_head) / 2));
  height: 40%;
  border: solid 2px #000;
  border-top: none;
  margin: 0 auto;
  position: relative;
}
.ennai_objective_grid .item7 .line1:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: calc(100% + 2px);
  background-color: #000;
}
@media print, screen and (min-width: 768px) {
  .ennai_objective_grid .item7 .line1 {
    width: calc(50% + 1px);
    height: calc(50% + (var(--item_head) / 2));
    border: solid 2px #000;
    border-left: none;
    margin: auto 0;
    position: relative;
  }
  .ennai_objective_grid .item7 .line1:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: calc(100% + 2px);
    height: 2px;
    background-color: #000;
  }
}

/* ---  --- */
.ennai_history {
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.ennai_history > .bg {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.ennai_history > .bg01 {
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(600px, 59.4666vw, 892px);
  background: url("../images/ennai/ennai_history_bg_1.svg") no-repeat center top/cover;
}
.ennai_history > .bg02 {
  top: 40%;
  left: 0;
  width: 100%;
  height: clamp(600px, 73vw, 1095px);
  background: url("../images/ennai/ennai_history_bg_2.svg") no-repeat center top/cover;
}
.ennai_history__inner {
  --h3-size: min(calc(20px + 40 * (100vw - 320px) / 1180), 60px);
}
.ennai_history__inner h3 {
  font-size: var(--h3-size);
  line-height: 1.5;
  text-align: center;
}

.ennai_history_item {
  margin-bottom: 50px;
}
.ennai_history_item:last-child {
  margin-bottom: 0;
}
.ennai_history_item h4 {
  color: var(--info);
}
.ennai_history_item h4 > small {
  color: var(--success);
  font-weight: 500;
  transform: rotateZ(0.03deg);
}
@media print, screen and (min-width: 992px) {
  .ennai_history_item {
    margin-bottom: min(10vw, 150px);
  }
  .ennai_history_item:nth-child(odd) .row > div:first-child {
    order: 13;
  }
  .ennai_history_item:nth-child(odd) .columns {
    padding-right: 9%;
  }
  .ennai_history_item:nth-child(even) .columns {
    padding-left: 9%;
  }
}

.ennai_history_item_photo {
  margin-bottom: 1rem;
}
.ennai_history_item_photo img {
  max-width: inherit;
  width: 100%;
}
@media print, screen and (min-width: 992px) {
  .ennai_history_item_photo {
    margin-bottom: 0;
  }
}

/* ---  --- */
.ennai_search {
  background-color: #dbf3d2;
  position: relative;
  z-index: 0;
}
.ennai_search:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: min(15vw, 300px);
  z-index: -1;
  pointer-events: none;
  background: url("../images/ennai/ennai_search_btm.svg") no-repeat center top/100% auto;
}

.ennai_search_inner {
  padding: min(calc(15px + 45 * (100vw - 320px) / 1180), 60px);
  border-radius: min(calc(10px + 15 * (100vw - 320px) / 1180), 25px);
  background-color: #fff;
}

.ennai_search_map {
  --ww: 1162px;
  max-width: 800px;
  aspect-ratio: 581 / 561;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.ennai_search_map .link {
  position: absolute;
  z-index: 10;
}
.ennai_search_map .link a {
  transition: opacity 0.3s ease;
}
.ennai_search_map .link a:after {
  display: none;
}
.ennai_search_map .link a:hover {
  opacity: 0.65;
}

.ennai_search_map1 {
  --hh: 1122px;
  aspect-ratio: 581 / 561;
  margin: 0 auto;
  background: url("../images/ennai/ennai_search_map1.jpg") no-repeat center center/contain;
}
.ennai_search_map1 .icon1 {
  width: calc((181px / var(--ww)) * 100%);
  left: calc((173px / var(--ww)) * 100%);
  top: calc((143px / var(--hh)) * 100%);
}
.ennai_search_map1 .icon2 {
  width: calc((179px / var(--ww)) * 100%);
  left: calc((220px / var(--ww)) * 100%);
  bottom: calc((162px / var(--hh)) * 100%);
}
.ennai_search_map1 .icon3 {
  width: calc((43px / var(--ww)) * 100%);
  left: calc((40px / var(--ww)) * 100%);
  bottom: calc((557px / var(--hh)) * 100%);
}
.ennai_search_map1 .icon4 {
  width: calc((86px / var(--ww)) * 100%);
  left: calc((488px / var(--ww)) * 100%);
  top: calc((34px / var(--hh)) * 100%);
}
.ennai_search_map1 .icon5 {
  width: calc((107px / var(--ww)) * 100%);
  left: calc((492px / var(--ww)) * 100%);
  top: calc((413px / var(--hh)) * 100%);
}
.ennai_search_map1 .icon6 {
  width: calc((140px / var(--ww)) * 100%);
  left: calc((462px / var(--ww)) * 100%);
  top: calc((540px / var(--hh)) * 100%);
}
.ennai_search_map1 .icon7 {
  width: calc((107px / var(--ww)) * 100%);
  right: calc((78px / var(--ww)) * 100%);
  bottom: calc((328px / var(--hh)) * 100%);
}
.ennai_search_map1 .icon8 {
  width: calc((179px / var(--ww)) * 100%);
  right: calc((73px / var(--ww)) * 100%);
  bottom: calc((29px / var(--hh)) * 100%);
}

.ennai_search_map2 {
  --hh: 1168px;
  aspect-ratio: 581 / 584;
  margin: 0 auto;
  background: url("../images/ennai/ennai_search_map2.jpg") no-repeat center center/contain;
}
.ennai_search_map2 .icon1 {
  width: calc((185px / var(--ww)) * 100%);
  left: calc((174px / var(--ww)) * 100%);
  top: calc((292px / var(--hh)) * 100%);
}
.ennai_search_map2 .icon2 {
  width: calc((185px / var(--ww)) * 100%);
  left: calc((233px / var(--ww)) * 100%);
  bottom: calc((172px / var(--hh)) * 100%);
}
.ennai_search_map2 .icon3 {
  width: calc((185px / var(--ww)) * 100%);
  right: calc((253px / var(--ww)) * 100%);
  bottom: calc((500px / var(--hh)) * 100%);
}
.ennai_search_map2 .icon4 {
  width: calc((175px / var(--ww)) * 100%);
  right: calc((250px / var(--ww)) * 100%);
  top: calc((60px / var(--hh)) * 100%);
}

.ennai_search_map3 {
  --hh: 1168px;
  aspect-ratio: 581 / 584;
  margin: 0 auto;
  background: url("../images/ennai/ennai_search_map3.jpg") no-repeat center center/contain;
}
.ennai_search_map3 .icon1 {
  width: calc((185px / var(--ww)) * 100%);
  left: calc((199px / var(--ww)) * 100%);
  top: calc((305px / var(--hh)) * 100%);
}
.ennai_search_map3 .icon2 {
  width: calc((185px / var(--ww)) * 100%);
  left: calc((746px / var(--ww)) * 100%);
  top: calc((377px / var(--hh)) * 100%);
}
.ennai_search_map3 .icon3 {
  width: calc((249px / var(--ww)) * 100%);
  left: calc((538px / var(--ww)) * 100%);
  bottom: calc((176px / var(--hh)) * 100%);
}
.ennai_search_map3 .icon4 {
  width: calc((122px / var(--ww)) * 100%);
  left: calc((23px / var(--ww)) * 100%);
  bottom: calc((278px / var(--hh)) * 100%);
}

/**/
.map-thumbs-splide .splide__list {
  justify-content: center;
}

.map-main-splide .splide__slide .slide {
  transform-origin: center center;
  opacity: 0.5;
  transition: opacity 0.1s ease, transform 0.3s ease;
}
.map-main-splide .splide__slide .slide .slide-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.map-main-splide .splide__slide .slide .slide-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.map-main-splide .splide__slide .slide .slide-txt {
  font-weight: 500;
  font-size: min(calc(13px + 5 * (100vw - 320px) / 1280), 18px);
  text-align: center;
  padding-top: 10px;
}
.map-main-splide .splide__slide.is-prev .slide, .map-main-splide .splide__slide.is-next .slide {
  opacity: 0.5;
}
.map-main-splide .splide__slide.is-active .slide {
  transform: scale(1);
  opacity: 1;
}
.map-main-splide .splide__arrow--prev, .map-main-splide .splide__arrow--next {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .map-main-splide .splide__arrow--prev, .map-main-splide .splide__arrow--next {
    font-size: min(calc(13px + 3 * (100vw - 768px) / 832), 16px);
    display: block;
  }
}
.map-main-splide .splide__arrow--prev {
  left: -2em;
}
.map-main-splide .splide__arrow--next {
  right: -2em;
}

.map-thumbs-splide {
  margin-top: 15px;
}
.map-thumbs-splide .splide__slide {
  cursor: pointer;
  background-color: #000;
}
.map-thumbs-splide .splide__slide img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.map-thumbs-splide .splide__slide.is-active {
  cursor: default;
}
.map-thumbs-splide .splide__slide.is-active img {
  opacity: 0.5;
}

/* ---  --- */
.ennai_overview {
  background-color: #f2e1d1;
}

.ennai_overview_wrap {
  padding: min(calc(20px + 40 * (100vw - 320px) / 1180), 60px) min(calc(15px + 65 * (100vw - 320px) / 1180), 90px);
  border-radius: min(calc(15px + 65 * (100vw - 320px) / 1180), 90px);
  background-color: #fff;
}

@media print, screen and (min-width: 992px) {
  .ennai_overview_content {
    display: flex;
  }
  .ennai_overview_content .ennai_overview_content_column {
    flex: 1 1 0;
    padding-right: 30px;
  }
  .ennai_overview_content .ennai_overview_content_map {
    flex: 0 0 39%;
  }
}

.ennai_overview_content_column_head {
  display: flex;
  flex-wrap: wrap;
}
.ennai_overview_content_column_head .ttl_box {
  flex: 1 1 0;
  margin-right: 30px;
}
.ennai_overview_content_column_head .ttl_box h4 {
  color: var(--primary);
  font-size: clamp(25px, var(--measure-width)/9, 50px);
  line-height: normal;
  white-space: nowrap;
}
.ennai_overview_content_column_head .ttl_box h4 > small {
  font-weight: 500;
  font-size: 0.4em;
  display: block;
}
.ennai_overview_content_column_head .sns_box {
  margin-left: auto;
  margin-top: 1rem;
}
.ennai_overview_content_column_head .sns_box > ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, min(7.8125vw, 60px));
  gap: 10px;
}
@media print, screen and (min-width: 992px) {
  .ennai_overview_content_column_head .sns_box {
    margin-top: 0;
  }
  .ennai_overview_content_column_head .sns_box > ul {
    grid-template-columns: repeat(3, min(4.3vw, 60px));
  }
}

@media print, screen and (min-width: 992px) {
  .ennai_overview_content_map .googlemap {
    height: 100%;
  }
}

/* -------------------------------
	５つの特徴
-------------------------------- */
/**/
.kyoiku_head_img {
  border-radius: 20px;
  overflow: hidden;
}

.kyoiku_head_img2 {
  border-radius: 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .kyoiku_head_img2 {
    width: 68.14285%;
  }
}

.kyoiku_ttl_1 {
  font-size: min(calc(22px + 10 * (100vw - 320px) / 448), 32px);
  line-height: 1.2;
}
@media print, screen and (min-width: 768px) {
  .kyoiku_ttl_1 {
    font-size: min(calc(26px + 24 * (100vw - 768px) / 732), 50px);
  }
}
.kyoiku_ttl_1 .num {
  color: #fff;
  font-size: 1.2em;
  line-height: 1;
  width: 2.68334em;
  height: 1.43334em;
  display: inline-grid;
  place-items: center;
  border-radius: 0.5em;
  margin-left: 0.25em;
  background-color: #4db05d;
  transform: translateY(-0.5em);
  position: relative;
}
.kyoiku_ttl_1 .num:before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  margin-left: -0.13334em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.18334em 0.13334em 0px 0.13334em;
  border-color: #4db05d transparent transparent transparent;
}
.kyoiku_ttl_1 > .txt {
  display: block;
}
.kyoiku_ttl_1.text-center {
  margin-left: 0;
}

/* ---  --- */
.kyoiku_point_1 {
  position: relative;
  z-index: 0;
}
.kyoiku_point_1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  aspect-ratio: 2000 / 123;
  background: url("../images/kyoiku/kyoiku_1_1_bg.svg") no-repeat center top/cover;
}

.kyoiku_point_2 {
  background-color: #fff1ec;
}

.kyoiku_point_3 {
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.kyoiku_point_3:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  aspect-ratio: 2000 / 279;
  background: url("../images/kyoiku/kyoiku_3_bg.svg") no-repeat center bottom/cover;
}
.kyoiku_point_3 .kyoiku_head_img2 {
  margin-left: auto;
}
.kyoiku_point_3 .kyoiku_sub_img {
  text-align: right;
}

.kyoiku_point_4 {
  background-color: #cdecd5;
  position: relative;
  z-index: 0;
}
.kyoiku_point_4:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  aspect-ratio: 2000 / 309;
  background: url("../images/kyoiku/kyoiku_4_bg.svg") no-repeat center top/cover;
}

.kyoiku_point_5 {
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.kyoiku_point_5:before, .kyoiku_point_5:after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.kyoiku_point_5:before {
  left: 0;
  top: -1px;
  width: 100%;
  aspect-ratio: 2000 / 186;
  background: url("../images/kyoiku/kyoiku_5_bg_top.svg") no-repeat center bottom/cover;
}
.kyoiku_point_5:after {
  left: 0;
  bottom: -1px;
  width: 100%;
  aspect-ratio: 2000 / 450;
  background: url("../images/kyoiku/kyoiku_5_bg_btm.svg") no-repeat center top/cover;
}
.kyoiku_point_5 .kyoiku_head_img2 {
  margin-left: auto;
}
.kyoiku_point_5 .kyoiku_sub_img {
  text-align: right;
}

.kyoiku_art_ttl {
  color: var(--warning);
  display: inline-grid;
  padding: 0.5em 0.75em;
  border-radius: 0.5em;
  background-color: #fff;
  margin-bottom: 0.75em;
  position: relative;
}
.kyoiku_art_ttl:before {
  content: "";
  position: absolute;
  left: 1em;
  top: calc(100% - 1px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0.5em 0px 0.5em;
  border-color: #fff transparent transparent transparent;
}
.kyoiku_art_ttl > .in {
  display: block;
}

/* -------------------------------
	園庭探検
-------------------------------- */
.schoolyard_head {
  background-color: #fdf1ed;
  position: relative;
  z-index: 0;
}
.schoolyard_head:before {
  content: "";
  position: absolute;
  top: calc(0px - min(5vw, 100px));
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../images/schoolyard/schoolyard_head_bg.svg") no-repeat center top/100% auto;
}

.schoolyard_map {
  --ww: 2000px;
  --hh: 2204px;
  width: 100%;
  aspect-ratio: 50 / 59;
  background: url("../images/schoolyard/schoolyard_map.jpg") no-repeat center top/cover;
  position: relative;
  z-index: 0;
}
.schoolyard_map:before, .schoolyard_map:after {
  content: "";
  position: absolute;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}
.schoolyard_map:before {
  top: -1px;
  left: 0;
  aspect-ratio: 40 / 3;
  background: url("../images/schoolyard/schoolyard_bg_top.svg") no-repeat center bottom/cover;
}
.schoolyard_map:after {
  left: 0;
  bottom: -1px;
  aspect-ratio: 1000 / 47;
  background: url("../images/schoolyard/schoolyard_bg_btm.svg") no-repeat center top/cover;
}

.schoolyard_button .item {
  position: absolute;
  z-index: 10;
  width: 8.6vw;
}
.schoolyard_button .item button {
  padding: 0;
  transition: all 0.3s ease;
}
.schoolyard_button .item button:hover {
  transform: scale(1.2);
}
.schoolyard_button .item1 {
  left: calc((248px / var(--ww)) * 100%);
  top: calc((809px / var(--hh)) * 100%);
}
.schoolyard_button .item2 {
  left: calc((1228px / var(--ww)) * 100%);
  top: calc((546px / var(--hh)) * 100%);
}
.schoolyard_button .item3 {
  left: calc((808px / var(--ww)) * 100%);
  top: calc((934px / var(--hh)) * 100%);
}
.schoolyard_button .item4 {
  left: calc((1252px / var(--ww)) * 100%);
  top: calc((1170px / var(--hh)) * 100%);
}

/**/
.schoolyard_modal .close {
  position: absolute;
  right: 5px;
  top: 0px;
}
.schoolyard_modal .modal-dialog {
  max-width: 900px;
}
.schoolyard_modal .modal-body {
  padding: 20px;
  border: none;
}
.schoolyard_modal .modal-footer {
  border: none;
  justify-content: center;
}
.schoolyard_modal .modal-footer button {
  transform: rotateZ(0.03deg);
}

/* -------------------------------
	園での１⽇
-------------------------------- */
.day_schedule_flow {
  position: relative;
  z-index: 0;
}
.day_schedule_flow .bg {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}
.day_schedule_flow .bg01 {
  top: 24.85vw;
  height: 878px;
  background: url("../images/day/day_schedule_flow_bg1.svg") no-repeat center center/cover;
}
.day_schedule_flow .bg02 {
  top: 50%;
  height: 1181px;
  margin-top: -400px;
  background: url("../images/day/day_schedule_flow_bg2.svg") no-repeat center center/cover;
}
.day_schedule_flow .bg03 {
  bottom: 0;
  height: 863px;
  background: url("../images/day/day_schedule_flow_bg3.svg") no-repeat center center/cover;
}
.day_schedule_flow .day_schedule_flow_inner {
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  .day_schedule_flow .bg01 {
    height: min(43.9vw, 878px);
  }
  .day_schedule_flow .bg02 {
    height: min(59.05vw, 1181px);
    margin-top: calc(0px - min(59.05vw, 1181px) * 0.3);
  }
  .day_schedule_flow .bg03 {
    height: min(43.15vw, 863px);
  }
}

/**/
.day_schedule_flow_item {
  max-width: 566px;
  margin: 0 auto 15px;
}
.day_schedule_flow_item .day_schedule_time {
  display: none;
}
.day_schedule_flow_item .day_schedule_time:has(> p) {
  display: flex;
  flex-direction: column;
}
.day_schedule_flow_item .day_schedule_time p {
  font-size: 25px;
  line-height: normal;
  text-align: center;
}
.day_schedule_flow_item .day_schedule_time p strong {
  color: #e25845;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1;
  display: block;
}
.day_schedule_flow_item .day_schedule_time p strong .small {
  font-size: 0.3em;
  display: block;
  margin-top: 5px;
}
.day_schedule_flow_item .day_schedule_time:before, .day_schedule_flow_item .day_schedule_time:after {
  content: "";
  width: 4px;
  height: 30px;
  border-radius: 2px;
  margin: 15px auto;
  background-color: #e25845;
}
.day_schedule_flow_item .day_schedule_column .photo {
  border-radius: 10px;
  overflow: hidden;
}
.day_schedule_flow_item .day_schedule_column .day_columns {
  padding-top: 10px;
}
.day_schedule_flow_item .day_schedule_column .day_columns .ttl {
  font-weight: 800;
  font-size: 1.25em;
  margin: 0 0 0.5rem;
}
.day_schedule_flow_item:first-child .day_schedule_time:before {
  display: none;
}
@media print, screen and (min-width: 992px) {
  .day_schedule_flow_item {
    max-width: 700px;
    width: 50%;
    margin: 0;
    margin-top: calc(0px - min(calc(131px + 67 * (100vw - 992px) / 508), 198px));
    margin-bottom: min(calc(75px + 25 * (100vw - 992px) / 508), 100px);
    position: relative;
  }
  .day_schedule_flow_item .day_schedule_time {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 100%;
    width: 38%;
    height: 100%;
    margin-left: -19%;
  }
  .day_schedule_flow_item .day_schedule_time:before, .day_schedule_flow_item .day_schedule_time:after {
    flex: 1 1 0;
    height: auto;
    margin: 0 auto;
  }
  .day_schedule_flow_item .day_schedule_time:after {
    display: none;
  }
  .day_schedule_flow_item .day_schedule_time:has(> p):before {
    margin-bottom: 15px;
  }
  .day_schedule_flow_item .day_schedule_time:has(> p):after {
    margin-top: 15px;
    display: block;
  }
  .day_schedule_flow_item .day_schedule_time p {
    font-size: min(calc(25px + 15 * (100vw - 992px) / 508), 40px);
  }
  .day_schedule_flow_item:first-child {
    margin-top: 0;
  }
  .day_schedule_flow_item:last-child .day_schedule_time:after {
    opacity: 0;
  }
  .day_schedule_flow_item .day_schedule_column {
    width: 80.857%;
  }
  .day_schedule_flow_item:nth-child(even) {
    margin-left: auto;
  }
  .day_schedule_flow_item:nth-child(even) .day_schedule_time {
    left: auto;
    right: 100%;
    margin-left: auto;
    margin-right: -19%;
  }
  .day_schedule_flow_item:nth-child(even) .day_schedule_column {
    margin-left: auto;
  }
}

/* ---  --- *


/**/
.day_schedule_foot {
  text-align: center;
}
.day_schedule_foot .day_schedule_time:before {
  margin-top: -10px;
  border-radius: 0 0 1em 1em;
}
.day_schedule_foot .day_schedule_time:after {
  display: none;
}
.day_schedule_foot .column {
  color: #fff;
  font-size: min(calc(22px + 10 * (100vw - 320px) / 448), 32px);
  line-height: 1;
  display: inline-block;
  border-radius: 0.5em;
  padding: 0.25em 1em;
  margin-top: 30px;
  background-color: #4db05d;
  position: relative;
}
.day_schedule_foot .column:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  margin-left: -0.13334em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0.13334em 0.18334em 0.13334em;
  border-color: transparent transparent #4db05d transparent;
}
@media print, screen and (min-width: 768px) {
  .day_schedule_foot .column {
    font-size: min(calc(26px + 24 * (100vw - 768px) / 732), 50px);
  }
}

/* ---  --- */
.day_event {
  position: relative;
  z-index: 0;
}
.day_event:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  aspect-ratio: 40 / 9;
  background: url("../images/day/day_event_bg.svg") no-repeat center top/cover;
}

.day_event_tabs {
  font-size: min(calc(25px + 20 * (100vw - 320px) / 1180), 45px);
  border: none;
  justify-content: center;
  gap: 2px;
  margin-bottom: min(calc(30px + 50 * (100vw - 320px) / 1180), 80px) !important;
}
.day_event_tabs > li > a {
  color: #472802;
  text-decoration: none;
  width: 2em;
  height: 2em;
  display: grid;
  place-items: center;
  background-color: #f6deb6;
  border-radius: 0.25em;
  transition: background 0.3s ease;
}
.day_event_tabs > li > a:hover {
  background-color: #EDBE6F;
}
.day_event_tabs > li > a.active {
  color: #fff;
  background-color: #f27200;
}

/**/
.day_event_content {
  --ttl-fs: min(calc(25px + 20 * (100vw - 320px) / 1180), 45px);
  --padding: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px);
  padding-bottom: var(--padding);
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .day_event_content {
    min-height: min(calc(300px + 300 * (100vw - 768px) / 732), 600px);
  }
}

.day_event_content_inner {
  padding: 0;
  position: relative;
}
.day_event_content_inner h4 {
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.day_event_content_inner h4 > .txt {
  font-size: var(--ttl-fs);
  width: 2em;
  height: 2em;
  display: grid;
  place-items: center;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-color: #f3e2d2;
}
.day_event_content_inner h4 > .en {
  font-size: var(--ttl-fs);
}
@media print, screen and (min-width: 992px) {
  .day_event_content_inner {
    width: 50%;
  }
}

.day_event_flow .box .month, .day_event_flow .box .column {
  padding-left: 25px;
  position: relative;
}
.day_event_flow .box .month:before, .day_event_flow .box .column:before {
  content: "";
  position: absolute;
  left: calc((16px - 2px) / 2);
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #000;
}
.day_event_flow .box .month {
  font-size: 1.25em;
  position: relative;
}
.day_event_flow .box .month:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border: solid 2px #000;
  border-radius: 50%;
  margin-top: -8px;
  background-color: #fff;
}
.day_event_flow .box .column {
  padding-top: 1em;
  padding-bottom: 1em;
}
.day_event_flow .box .column ul {
  list-style: none;
  padding-left: 0;
}
.day_event_flow .box .column ul > li {
  padding-left: 1.2em;
  position: relative;
}
.day_event_flow .box .column ul > li:before {
  content: "●";
  position: absolute;
  left: 0;
  transform: scale(0.5);
}
.day_event_flow .box:first-child .month:before {
  top: 50%;
}
@media print, screen and (min-width: 768px) {
  .day_event_flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .day_event_flow .box {
    width: 100%;
    position: relative;
  }
  .day_event_flow .box:before {
    content: "";
    position: absolute;
    left: 1em;
    right: -2em;
    top: calc((16px - 2px) / 2);
    bottom: auto;
    width: auto;
    height: 2px;
    background-color: #000;
  }
  .day_event_flow .box:last-child:before {
    right: 0;
  }
  .day_event_flow .box .month, .day_event_flow .box .column {
    padding-top: 25px;
    padding-left: 0;
  }
  .day_event_flow .box .month:before, .day_event_flow .box .column:before {
    display: none;
  }
  .day_event_flow .box .month {
    white-space: nowrap;
    display: inline-grid;
  }
  .day_event_flow .box .month:after {
    left: 50%;
    top: 0;
    margin-top: 0;
    margin-left: -8px;
  }
  .day_event_flow .box .column {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 1em;
  }
  .day_event_flow .box:first-child .month:before {
    top: calc((16px - 2px) / 2);
    left: 50%;
  }
}

.day_event_content_bg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media print, screen and (min-width: 992px) {
  .day_event_content_bg {
    position: absolute;
    right: 0;
    top: calc(var(--ttl-fs) * 2);
    width: 46%;
  }
}
.day_event_content_bg .loop_splide .splide__list {
  gap: 5px;
}
.day_event_content_bg .loop_splide_photo {
  aspect-ratio: 666 / 595;
}

/* -------------------------------
	0.1.2歳の⽅
-------------------------------- */
/* ---  --- */
.preschoolers_navi {
  --gap: clamp(5px, 1.33334vw, 20px);
}
.preschoolers_navi > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.preschoolers_navi > ul > li {
  font-size: calc(var(--width-li) / 8);
  flex: 0 0 calc(33.33334% - var(--gap));
}
@media print, screen and (min-width: 768px) {
  .preschoolers_navi > ul > li {
    flex: 0 0 calc(20% - var(--gap));
  }
}
.preschoolers_navi > ul > li > a {
  color: #472802;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 0.75em 0;
  border-radius: 0.25em;
  background-color: #f6deb6;
  transition: background 0.3s ease;
}
.preschoolers_navi > ul > li > a:hover {
  background-color: #EEC176;
}

/* ---  --- */
.preschoolers_content {
  --padding: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px);
  padding: var(--padding);
  border-radius: calc(var(--padding) / 2);
  background-color: #fff;
}

.preschoolers_content_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
}
.preschoolers_content_head .cat {
  flex: 0 0 8.34375em;
}
.preschoolers_content_head .ttl {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 992px) {
  .preschoolers_content_head .ttl {
    flex: 1 1 0;
  }
}
.preschoolers_content_head .cat {
  color: #472802;
  font-size: min(calc(18px + 14 * (100vw - 320px) / 1180), 32px);
  height: 3.15625em;
  margin-right: min(3.86666vw, 58px);
  display: grid;
  place-items: center;
  border-radius: 0.3125em;
  background-color: #f6deb6;
}
.preschoolers_content_head .cat > span {
  display: inline-block;
}
.preschoolers_content_head .ttl h3 {
  font-size: min(calc(25px + 30 * (100vw - 320px) / 1180), 55px);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.preschoolers_content_head .ttl h3 > .txt {
  color: #e5555d;
  flex: 0 0 100%;
  white-space: nowrap;
}
.preschoolers_content_head .ttl h3 > .en {
  color: #0099cb;
  font-size: 0.63636em;
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: 2.3em;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .preschoolers_content_head .ttl h3 > .txt {
    flex: 0 0 auto;
    margin-right: 1em;
  }
  .preschoolers_content_head .ttl h3 > .en {
    flex: 0 0 auto;
    margin: 0;
  }
}

/**/
.preschoolers_pattern_1 .photo {
  border-radius: 15px;
  position: relative;
}
.preschoolers_pattern_1 .photo img {
  border-radius: 15px;
}
@media print, screen and (min-width: 992px) {
  .preschoolers_pattern_1 .photo {
    margin-right: min(4.46666vw, 67px);
  }
}
.preschoolers_pattern_1 h4 {
  color: var(--danger);
  font-size: min(calc(18px + 9 * (100vw - 320px) / 1180), 27px);
}

/**/
.preschoolers_pattern_2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: min(calc(30px + 20 * (100vw - 320px) / 1180), 50px);
}
@media print, screen and (min-width: 992px) {
  .preschoolers_pattern_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.preschoolers_pattern_2 .box {
  display: flex;
  gap: 0 20px;
}
.preschoolers_pattern_2 .box .icon {
  flex: 0 0 min(calc(40px + 100 * (100vw - 320px) / 1180), 140px);
}
.preschoolers_pattern_2 .box .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center top;
}
.preschoolers_pattern_2 .box .columns {
  flex: 1 1 0;
  padding-top: 0.5rem;
}
.preschoolers_pattern_2 .box .columns .ttl {
  font-size: 1.5em;
  margin-bottom: 0.15em;
}

/* */
.preschoolers_qr_dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 20px;
}

/**/
.preschoolers_flow .ttl {
  font-size: 1.2em;
}
.preschoolers_flow .preschoolers_flow_step {
  --dot: 16px;
  padding-left: calc(var(--dot) * 1.5);
}
.preschoolers_flow .preschoolers_flow_step .step {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 0.5em;
  transform: rotateZ(0.03deg);
  position: relative;
}
.preschoolers_flow .preschoolers_flow_step .step:before {
  content: "";
  position: absolute;
  left: calc(-1px - (var(--dot) * 1.5) + (var(--dot) / 2));
  top: 0;
  bottom: -0.5em;
  width: 2px;
  background-color: #000;
}
.preschoolers_flow .preschoolers_flow_step .step:first-child:before {
  top: 1em;
}
.preschoolers_flow .preschoolers_flow_step .step:last-child {
  margin-bottom: 0;
}
.preschoolers_flow .preschoolers_flow_step .step:last-child:before {
  top: 0;
  bottom: auto;
  height: 1em;
}
.preschoolers_flow .preschoolers_flow_step .step .date {
  flex: 1 1 0;
  position: relative;
}
.preschoolers_flow .preschoolers_flow_step .step .date:before {
  content: "";
  position: absolute;
  left: calc(0px - (var(--dot) * 1.5));
  top: 50%;
  margin-top: calc(0px - (var(--dot) / 2));
  width: var(--dot);
  height: var(--dot);
  border: solid 2px #000;
  border-radius: 50%;
  background-color: #fff;
}
.preschoolers_flow .preschoolers_flow_step .step .date_col {
  font-weight: 500;
  flex: 0 0 calc(100% - 5em);
}
.preschoolers_flow .preschoolers_flow_step .step .column {
  font-weight: 500;
  flex: 0 0 100%;
  margin-top: 5px;
}

/* --- おひさま広場 --- */
.oyako_event .preschoolers_content_head .ttl h3 .en:after {
  aspect-ratio: 132 / 95;
  background-image: url("../images/preschoolers/preschoolers_1_icon.png");
}

.oyako_event_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.oyako_event_row > .box {
  flex: 0 0 100%;
  padding: 15px 0;
  border-bottom: solid 1px var(--info);
}
.oyako_event_row > .box:last-child {
  border: none;
}
.oyako_event_row > .box .ttl {
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 992px) {
  .oyako_event_row {
    margin: 0 -15px;
  }
  .oyako_event_row > .box {
    flex: 0 0 33.33334%;
    padding: 0 15px;
    border-right: solid 1px var(--info);
    border-bottom: none;
  }
}

/* --- おひさま広場 --- */
.class_2yo .preschoolers_content_head .ttl h3 .en:after {
  aspect-ratio: 89 / 93;
  background-image: url("../images/preschoolers/preschoolers_2_icon.png");
}

.class_2yo_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.class_2yo_row > .box {
  flex: 0 0 100%;
  padding: 15px 0;
  border-bottom: solid 1px var(--info);
}
.class_2yo_row > .box:last-child {
  border: none;
}
@media print, screen and (min-width: 992px) {
  .class_2yo_row {
    margin: 0 -30px;
  }
  .class_2yo_row > .box {
    flex: 0 0 50%;
    padding: 0 30px;
    border-right: solid 1px var(--info);
    border-bottom: none;
  }
}

/* --- 園庭を探検しよう！ --- */
.entei_open .preschoolers_content_head .ttl h3 .en:after {
  aspect-ratio: 89 / 93;
  background-image: url("../images/preschoolers/preschoolers_3_icon.png");
}

.entei_open_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.entei_open_row > .box {
  flex: 0 0 100%;
  padding: 15px 0;
  border-bottom: solid 1px var(--info);
}
.entei_open_row > .box:last-child {
  border: none;
}
@media print, screen and (min-width: 992px) {
  .entei_open_row {
    margin: 0 -30px;
  }
  .entei_open_row > .box {
    flex: 0 0 50%;
    padding: 0 30px;
    border-right: solid 1px var(--info);
    border-bottom: none;
  }
}

/* ---  --- */
.kengaku_event .preschoolers_content_head .ttl h3 .en:after {
  aspect-ratio: 89 / 93;
  background-image: url("../images/preschoolers/preschoolers_4_icon.png");
}

.kengaku_event_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.kengaku_event_row > .box {
  flex: 0 0 100%;
  padding: 15px 0;
  border-bottom: solid 1px var(--info);
}
.kengaku_event_row > .box:last-child {
  border: none;
}
@media print, screen and (min-width: 992px) {
  .kengaku_event_row {
    margin: 0 -30px;
  }
  .kengaku_event_row > .box {
    flex: 0 0 50%;
    padding: 0 30px;
    border-right: solid 1px var(--info);
    border-bottom: none;
  }
}

/* ---  --- */
.ikuji_soudan .preschoolers_content_head .ttl h3 .en:after {
  aspect-ratio: 89 / 93;
  background-image: url("../images/preschoolers/preschoolers_4_icon.png");
}

/* ---  --- */
.preschoolers_calendar {
  background-color: #ececec;
  position: relative;
  z-index: 0;
}
.preschoolers_calendar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../images/preschoolers/preschoolers_calendar_bg.svg") no-repeat center center/102% 100%;
}
.preschoolers_calendar .preschoolers_calendar_ttl {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.preschoolers_calendar .preschoolers_calendar_ttl h3 {
  font-size: min(calc(30px + 20 * (100vw - 320px) / 1180), 50px);
  text-align: center;
  margin: 0;
}
.preschoolers_calendar .preschoolers_calendar_ttl h3 small {
  font-size: 0.7em;
}
@media print, screen and (min-width: 992px) {
  .preschoolers_calendar .preschoolers_calendar_ttl {
    position: relative;
  }
  .preschoolers_calendar .preschoolers_calendar_ttl:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(73.7804%, 242px);
    aspect-ratio: 121 / 150;
    background: url("../images/preschoolers/preschoolers_calendar_icon.png") no-repeat center center/contain;
  }
  .preschoolers_calendar .preschoolers_calendar_ttl h3 {
    text-align: left;
  }
}

/* -------------------------------
	入園案内
-------------------------------- */
/* ---  --- */
.nyuen_head {
  position: relative;
}
.nyuen_head:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  z-index: -1;
}
.nyuen_head .container-fluid-xl {
  position: relative;
  z-index: 10;
}

.nyuen_head_gallery {
  --gap: min(calc(5px + 15 * (100vw - 320px) / 1180), 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--gap);
}
.nyuen_head_gallery > .photo {
  flex: 0 0 calc(50% - calc(var(--gap) / 2));
}
.nyuen_head_gallery > .photo img {
  border-radius: calc(var(--gap) * 0.83334);
}
@media print, screen and (min-width: 768px) {
  .nyuen_head_gallery {
    flex-wrap: nowrap;
  }
  .nyuen_head_gallery > .photo {
    flex: 1 1 0;
  }
  .nyuen_head_gallery > .photo:nth-child(2), .nyuen_head_gallery > .photo:nth-child(3) {
    margin-top: calc(var(--gap) * 2);
  }
}

/* ---  --- */
.nyuen_flow {
  position: relative;
  z-index: 0;
}
.nyuen_flow:before, .nyuen_flow:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: -1;
  background-image: url("../images/nyuen/nyuen_flow_nami.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.nyuen_flow:before {
  top: calc(0px - min(13.9vw, 278px));
  background-position: center top;
  background-color: #ececec;
}
.nyuen_flow:after {
  bottom: 0;
  background-position: center bottom;
}
.nyuen_flow > .bg {
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 100%;
  z-index: -1;
  background-color: #ccecd4;
}
@media print, screen and (min-width: 992px) {
  .nyuen_flow > .bg {
    display: none;
  }
}
.nyuen_flow .icon01 {
  left: 1%;
  top: calc(0px - min(5vw, 100px));
  width: min(8.55001vw, 171px);
  aspect-ratio: 57 / 44;
  background-image: url("../images/nyuen/nyuen_flow_i1.png");
}
.nyuen_flow .icon02 {
  right: 0;
  top: calc(0px - min(13vw, 260px));
  width: min(9.15vw, 183px);
  aspect-ratio: 183 / 304;
  background-image: url("../images/nyuen/nyuen_flow_i2.png");
}
.nyuen_flow .icon03 {
  left: 0;
  bottom: min(13vw, 260px);
  width: min(4.45vw, 89px);
  aspect-ratio: 89 / 103;
  background-image: url("../images/nyuen/nyuen_flow_i3.png");
}
.nyuen_flow .icon04 {
  right: 0;
  bottom: min(2.65vw, 53px);
  width: min(5.95vw, 119px);
  aspect-ratio: 119 / 124;
  background-image: url("../images/nyuen/nyuen_flow_i4.png");
}

/**/
.nyuen_flow_youkou h3 {
  font-size: min(calc(27px + 16 * (100vw - 320px) / 1180), 43px);
  position: relative;
  padding-left: 2.25em;
}
.nyuen_flow_youkou h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2em;
  height: 1.5em;
  background: url("../images/nyuen/nyuen_icon_1.png") no-repeat left center/contain;
}

.nyuen_flow_youkou_table {
  overflow: auto;
  background-color: #fff;
}
.nyuen_flow_youkou_table .inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nyuen_flow_youkou_table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: solid 1px var(--info);
  margin: 0;
  padding: 5px;
  background-color: #fff;
}
.nyuen_flow_youkou_table table > thead > tr, .nyuen_flow_youkou_table table > tbody > tr {
  border-top: solid 1px var(--info);
}
.nyuen_flow_youkou_table table > thead > tr > th, .nyuen_flow_youkou_table table > thead > tr > td, .nyuen_flow_youkou_table table > tbody > tr > th, .nyuen_flow_youkou_table table > tbody > tr > td {
  text-align: center;
  padding: 1em;
}
.nyuen_flow_youkou_table table > thead > tr .bg_blue, .nyuen_flow_youkou_table table > tbody > tr .bg_blue {
  background-color: #e9fefe;
}
.nyuen_flow_youkou_table table > thead > tr .bg_red, .nyuen_flow_youkou_table table > tbody > tr .bg_red {
  background-color: #fef4f3;
}
.nyuen_flow_youkou_table table > thead > tr > th, .nyuen_flow_youkou_table table > thead > tr > td {
  color: var(--info);
}
.nyuen_flow_youkou_table table > tbody > tr > th, .nyuen_flow_youkou_table table > tbody > tr > td {
  padding: 1em;
}
.nyuen_flow_youkou_table table > tbody > tr > th {
  color: var(--info);
  white-space: nowrap;
  background: #fff;
}
.nyuen_flow_youkou_table table > tbody > tr > td {
  font-weight: 500;
  font-size: 0.83334em;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .nyuen_flow_youkou_table {
    white-space: nowrap;
  }
}
.nyuen_flow_youkou_table .hyouki {
  color: var(--primary);
  font-size: 0.75em;
  padding: 0.5em;
  margin: 0;
  display: none;
}

/**/
.nyuen_flow_step {
  width: 30%;
}
.nyuen_flow_step h3 {
  font-size: min(calc(27px + 16 * (100vw - 320px) / 1180), 43px);
  text-align: center;
}
.nyuen_flow_step h3 > .in {
  display: inline-block;
  border-bottom: solid 2px var(--info);
}

.nyuen_flow_step_list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: number;
}
.nyuen_flow_step_list > li {
  color: var(--info);
  line-height: 1.5;
  text-align: center;
  padding: 0.5em 1em;
  border-radius: 10em;
  background-color: #fff;
  margin-bottom: 1.5em;
  position: relative;
}
.nyuen_flow_step_list > li:before {
  counter-increment: number;
  content: counter(number);
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0.5em;
  width: 1.8em;
  height: 1.8em;
  display: grid;
  place-items: center;
  margin-top: -0.9em;
  border-radius: 50%;
  background-color: var(--info);
}
.nyuen_flow_step_list > li:last-child {
  color: #fff;
  margin-bottom: 0;
  background-color: var(--danger);
}
.nyuen_flow_step_list > li:last-child:before {
  color: var(--danger);
  background-color: #fff;
}
.nyuen_flow_step_list > li > .arrow {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: calc(1.5em - 2px);
  background-color: var(--info);
}
.nyuen_flow_step_list > li > .arrow:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  margin-left: -6px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0px 6px;
  border-color: var(--info) transparent transparent transparent;
}

/* ---  --- */
.nyuen_column_1 {
  --padding: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px);
  padding: var(--padding);
  border-radius: calc(var(--padding) / 2);
  background-color: #fff;
  position: relative;
}
.nyuen_column_1 > .icon01 {
  right: 0;
  top: 0;
  width: 6.7857%;
  aspect-ratio: 95 / 62;
  background: url("../images/nyuen/icon002.png") no-repeat center center/contain;
  transform: translate(-50%, -50%);
}
.nyuen_column_1 .columns h4 {
  color: var(--info);
  font-size: min(calc(20px + 16 * (100vw - 320px) / 1180), 36px);
}

.nyuen_image_1 {
  text-align: center;
}
.nyuen_image_1 .image {
  display: inline-flex;
  position: relative;
}
.nyuen_image_1 .image img {
  border-radius: 20px;
}

.nyuen_image_2 {
  text-align: center;
}

.nyuen_column_foot {
  display: flex;
  flex-wrap: wrap;
}
.nyuen_column_foot .box {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  flex: 0 0 100%;
  border-bottom: solid 1px var(--info);
}
.nyuen_column_foot .box:last-child {
  border: none;
}
.nyuen_column_foot .box .icon {
  flex: 0 0 50px;
  aspect-ratio: 1 / 1;
}
.nyuen_column_foot .box .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nyuen_column_foot .box .column {
  padding-left: 1em;
}
.nyuen_column_foot .box .column p {
  color: var(--info);
  font-weight: 500;
  margin: 0;
}
.nyuen_column_foot .box .column .ttl {
  font-weight: 700;
  font-size: 1.5em;
}
@media print, screen and (min-width: 992px) {
  .nyuen_column_foot .box {
    flex: 0 0 50%;
    border-right: solid 1px var(--info);
    border-bottom: none;
  }
  .nyuen_column_foot .box:nth-child(2) {
    justify-content: center;
  }
}

/* ---  --- */
.nyuen_bus_service {
  position: relative;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(236, 236, 236, 0) 0%, rgba(236, 236, 236, 0) 50%, #ececec 50%, #ececec 100%);
}
.nyuen_bus_service h3 {
  font-size: min(calc(27px + 16 * (100vw - 320px) / 1180), 43px);
  position: relative;
  padding-left: 2.25em;
}
.nyuen_bus_service h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2em;
  height: 1.5em;
  background: url("../images/nyuen/nyuen_icon_1.png") no-repeat left center/contain;
}

.nyuen_bus_service_inner {
  background-size: auto 100%;
  position: relative;
  z-index: 0;
}
.nyuen_bus_service_inner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/nyuen/nyuen_bus_service_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  pointer-events: none;
}
@media print, screen and (min-width: 992px) {
  .nyuen_bus_service_inner:before {
    top: min(6.5vw, 130px);
    bottom: min(8.5vw, 170px);
    background-size: 100% 100%;
  }
}

.nyuen_bus_service_root h4 {
  padding-left: 2em;
  position: relative;
}
.nyuen_bus_service_root h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2em;
  height: 1.5em;
  background: url("../images/nyuen/nyuen_flow_ttl_1.png") no-repeat left center/contain;
}
.nyuen_bus_service_root .ttl {
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  margin-bottom: 1rem;
  background-color: #db9972;
}
.nyuen_bus_service_root .photo {
  position: relative;
}
.nyuen_bus_service_root .photo:after {
  content: "";
  position: absolute;
  right: -1.8%;
  bottom: -2%;
  width: 9.82587%;
  aspect-ratio: 79 / 82;
  background: url("../images/nyuen/icon006.png") no-repeat center center/contain;
  pointer-events: none;
}
.nyuen_bus_service_root .nyuen_bus_service_root_row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.nyuen_bus_service_root .column {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}
.nyuen_bus_service_root .column h5 {
  font-size: min(calc(var(--width-box) / 8), 24px);
  line-height: 1.75;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5em;
  position: relative;
  transform: rotateZ(0.03deg);
}
.nyuen_bus_service_root .column h5:before {
  content: "";
  width: 1.75em;
  height: 1.75em;
  display: block;
  margin-right: 0.5em;
  background-image: url("../images/nyuen/bus1.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  transform: rotateZ(-0.03deg);
}
.nyuen_bus_service_root .column h5.in_red:before {
  background-image: url("../images/nyuen/bus2.png");
}
.nyuen_bus_service_root .column ol {
  font-size: min(calc(var(--width-box) / 14), 18px);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: number;
}
.nyuen_bus_service_root .column ol > li {
  color: var(--info);
  text-align: center;
  padding: 0.25em 0.5em 0.25em 2.3em;
  margin-bottom: 0.5em;
  border-radius: 0.5em;
  background-color: #e9fefe;
  position: relative;
}
.nyuen_bus_service_root .column ol > li:last-child {
  margin-bottom: 0;
}
.nyuen_bus_service_root .column ol > li:before {
  counter-increment: number;
  content: counter(number);
  color: #e9fefe;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0.5em;
  width: 1.5em;
  height: 1.5em;
  display: grid;
  place-items: center;
  margin-top: -0.75em;
  border-radius: 50%;
  background-color: var(--info);
}
.nyuen_bus_service_root .column ol.in_red > li {
  color: var(--danger);
  background-color: #ffebe7;
}
.nyuen_bus_service_root .column ol.in_red > li:before {
  color: #ffebe7;
  background-color: var(--danger);
}

/* ---  --- */
.nyuen_activities {
  background-color: #ececec;
}
.nyuen_activities h3 {
  font-size: min(calc(27px + 16 * (100vw - 320px) / 1180), 43px);
  position: relative;
  padding-left: 2.5em;
}
.nyuen_activities h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2em;
  height: 1.5em;
  background: url("../images/nyuen/nyuen_activities_ttl_icon.png") no-repeat left center/contain;
}

.nyuen_activities_item_1 {
  border: solid min(1.3333vw, 20px) #0076ba;
  border-radius: min(3.3333vw, 50px);
  padding: min(3.3333vw, 50px);
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.nyuen_activities_item_1 .subttl {
  position: absolute;
  left: calc(0px - min(1.3333vw, 20px));
  top: calc(0px - min(1.3333vw, 20px));
  z-index: 10;
  color: #fff;
  font-size: min(calc(12px + 18 * (100vw - 320px) / 1180), 30px);
  text-align: center;
  width: 12em;
  height: 10em;
  display: grid;
  place-items: center;
  padding-right: 5em;
  padding-bottom: 3.5em;
}
.nyuen_activities_item_1 .subttl:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  border-top-left-radius: min(3.3333vw, 50px);
  background-color: #0076ba;
}
.nyuen_activities_item_1 .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.nyuen_activities_item_1 .content h4 {
  color: #0076ba;
  font-size: clamp(24px, calc(var(--measure-width) / 13), 36px);
}
@media print, screen and (min-width: 992px) {
  .nyuen_activities_item_1.even .subttl {
    position: absolute;
    left: auto;
    right: calc(0px - min(1.3333vw, 20px));
    padding-right: 0;
    padding-left: 5em;
  }
  .nyuen_activities_item_1.even .subttl:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    border-top-left-radius: 0;
    border-top-right-radius: min(3.3333vw, 50px);
  }
  .nyuen_activities_item_1.even .row > div:first-child {
    order: 13;
  }
}

.nyuen_activities_item_2 {
  border-radius: min(3.3333vw, 50px);
  padding: min(3.3333vw, 50px);
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.nyuen_activities_item_2 h4 {
  color: var(--info);
  font-size: clamp(24px, calc(var(--measure-width) / 13), 36px);
}
.nyuen_activities_item_2 .photo {
  border-radius: 20px;
  overflow: hidden;
}
.nyuen_activities_item_2 .column_foot {
  margin-top: auto;
}

.nyuen_activities_2col {
  color: var(--info);
}
.nyuen_activities_2col > .box .ttl {
  font-size: 1.25em;
  margin-bottom: 0.5rem;
}
.nyuen_activities_2col > .box .btn {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.nyuen_activities_2col > .box:first-child {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px var(--info);
}
@media print, screen and (min-width: 768px) {
  .nyuen_activities_2col {
    display: flex;
    margin: auto -15px 0;
  }
  .nyuen_activities_2col > .box {
    flex: 0 0 50%;
    padding: 0 15px;
  }
  .nyuen_activities_2col > .box:first-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    border-right: solid 1px var(--info);
  }
}

.nyuen_activities_2col_2 {
  color: var(--info);
  display: flex;
  margin: 0 -15px;
}
.nyuen_activities_2col_2 > .box {
  flex: 0 0 50%;
  padding: 0 15px;
}
.nyuen_activities_2col_2 > .box .ttl {
  font-size: 1.25em;
  margin-bottom: 0.5rem;
}
.nyuen_activities_2col_2 > .box:first-child {
  border-right: solid 1px var(--info);
}
@media print, screen and (min-width: 768px) {
  .nyuen_activities_2col_2 {
    margin: 0 calc(0px - min(calc(15px + 15 * (100vw - 992px) / 508), 30px));
  }
  .nyuen_activities_2col_2 > .box {
    padding: 0 min(calc(15px + 15 * (100vw - 992px) / 508), 30px);
  }
}

/* ---  --- */
.nyuen_contact {
  background: url("../images/nyuen/nyuen_contact_bg.svg") no-repeat center top/100% 100%;
}

/* -------------------------------
	職員募集
-------------------------------- */
/* ---  --- */
.recruit_head {
  padding-top: min(calc(50px + 150 * (100vw - 320px) / 1180), 200px);
  position: relative;
}
.recruit_head:before, .recruit_head:after {
  content: "";
  position: absolute;
  width: 100%;
  z-index: -1;
}
.recruit_head:before {
  top: 0;
  aspect-ratio: 200 / 13;
  background: url("../images/recruit/recruit_head_bg_top.svg") no-repeat center bottom/cover;
}
.recruit_head:after {
  bottom: 0;
  aspect-ratio: 5 / 1;
  background: url("../images/recruit/recruit_head_bg_btm.svg") no-repeat center top/cover;
}
.recruit_head .container-fluid-xl {
  position: relative;
  z-index: 10;
}

.recruit_head_gallery {
  --gap: min(calc(5px + 15 * (100vw - 320px) / 1180), 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--gap);
}
.recruit_head_gallery > .photo {
  flex: 0 0 calc(50% - calc(var(--gap) / 2));
}
.recruit_head_gallery > .photo img {
  border-radius: calc(var(--gap) * 0.83334);
}
@media print, screen and (min-width: 768px) {
  .recruit_head_gallery {
    flex-wrap: nowrap;
  }
  .recruit_head_gallery > .photo {
    flex: 1 1 0;
  }
  .recruit_head_gallery > .photo:nth-child(1), .recruit_head_gallery > .photo:nth-child(4) {
    transform: translateY(-50%);
  }
}

/* ---  --- */
.recruit_features {
  background-color: #e8f7e8;
  position: relative;
}
.recruit_features > .icon01 {
  top: 0;
  left: 0;
  width: min(13vw, 260px);
  aspect-ratio: 52 / 59;
  background-image: url("../images/recruit/icon001.png");
}
.recruit_features > .icon02 {
  bottom: 1%;
  left: 1%;
  width: min(13vw, 260px);
  aspect-ratio: 52 / 59;
  background-image: url("../images/recruit/icon001.png");
  z-index: 10;
}

.recruit_features_content {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border-radius: 20px;
  background-color: #fff;
}
.recruit_features_content .content {
  flex: 0 0 100%;
  padding: 0 15px;
}
.recruit_features_content .image {
  flex: 0 0 100%;
  padding: 0 15px;
}
@media print, screen and (min-width: 768px) {
  .recruit_features_content {
    padding: min(calc(20px + 40 * (100vw - 768px) / 732), 60px) min(calc(14px + 60 * (100vw - 768px) / 732), 74px);
  }
  .recruit_features_content .content {
    flex: 0 0 66.66666%;
    padding-right: min(calc(10px + 45 * (100vw - 768px) / 732), 55px);
  }
  .recruit_features_content .image {
    flex: 0 0 33.33334%;
  }
  .recruit_features_content:nth-child(even) .content {
    order: 2;
    padding-right: 0;
    padding-left: min(calc(10px + 45 * (100vw - 768px) / 732), 55px);
  }
  .recruit_features_content:nth-child(even) .image {
    order: 1;
  }
}

.recruit_features_content .ttl {
  font-size: clamp(18px, calc(var(--width-ttl) / 19.125), 40px);
  line-height: normal;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.recruit_features_content .ttl .num {
  color: #fff;
  font-size: 1.75em;
  line-height: 1;
  flex: 0 0 1.48572em;
  aspect-ratio: 26 / 25;
  display: grid;
  place-items: center;
  border-radius: 0.54285em;
  background-color: var(--primary);
  position: relative;
  transform: rotateZ(0.03deg);
}
.recruit_features_content .ttl .num:after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  margin-left: -6px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0px 6px;
  border-color: var(--primary) transparent transparent transparent;
}
.recruit_features_content .ttl .txt {
  display: block;
  flex: 1 1 0;
  padding-left: 1em;
  transform: rotateZ(0.03deg);
}
.recruit_features_content .ttl .txt small {
  font-size: 0.75em;
}
.recruit_features_content .column {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.recruit_features_content .comment {
  font-size: 0.9rem;
  padding: 20px;
  background-color: #fbf6ee;
}
.recruit_features_content .comment h5 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  transform: rotateZ(0.03deg);
}

/* ---  --- */
.recruit_loop_splide {
  background-color: #e8f7e8;
}

/* --- --- */
.recruit_job {
  background: #c1e9af;
  position: relative;
  z-index: 0;
}
.recruit_job:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  aspect-ratio: 2000 / 91;
  z-index: -1;
  pointer-events: none;
  background: url("../images/recruit/recruit_job_top.svg") no-repeat center bottom/cover;
}
.recruit_job .title-hh-1 > img {
  width: 2.25em;
}

.recruit_job_tabs {
  font-size: min(calc(10px + 24 * (100vw - 375px) / 1125), 34px);
  border-radius: 10em;
  border: none;
  margin-bottom: 1.25em;
  background-color: #fff;
}
.recruit_job_tabs > li {
  flex: 1 1 0;
}
.recruit_job_tabs > li > a {
  color: #5e5e5e;
  text-decoration: none;
  text-align: center;
  padding: 0.3088em;
  display: block;
  border-radius: 10em;
  transition: color 0.3s ease, background 0.3s ease;
}
.recruit_job_tabs > li > a.active {
  color: #fff !important;
  background-color: #000;
}
.recruit_job_tabs > li > a:hover {
  color: #000;
}

.recruit_job_content {
  min-height: min(calc(180px + 320 * (100vw - 375px) / 1125), 500px);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: min(5.33333vw, 80px);
  background-color: #fff;
}
.recruit_job_content > .not {
  font-size: min(calc(20px + 20 * (100vw - 375px) / 1125), 40px);
  margin: auto;
}

/* ---  --- */
.recruit_faq {
  background-color: #f6f6f6;
  position: relative;
  z-index: 0;
}
.recruit_faq:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  aspect-ratio: 2000 / 161;
  z-index: -1;
  pointer-events: none;
  background: url("../images/recruit/recruit_faq_bg_top.svg") no-repeat center bottom/cover;
}
.recruit_faq .title-hh-1 > img {
  width: 2.83334em;
}

.recruit_faq_content {
  --bg-color: #017101;
  --icon-size: min(calc(20px + 40 * (100vw - 320px) / 1180), 60px);
  border: solid clamp(5px, 0.66666vw, 10px) var(--bg-color);
  border-top: none;
  border-radius: 20px;
  margin-bottom: min(calc(30px + 50 * (100vw - 320px) / 1180), 80px);
  background-color: var(--bg-color);
}
.recruit_faq_content:last-child {
  margin-bottom: 0;
}
.recruit_faq_content h4 {
  color: #fff;
  font-size: min(calc(22px + 15 * (100vw - 320px) / 1180), 37px);
  padding: 0.54em 0.54em 0.54em 0;
  margin: 0;
  border-radius: 10px 10px 0 0;
  padding-left: calc(var(--icon-size) * 3);
  background-color: var(--bg-color);
  position: relative;
}
.recruit_faq_content h4:before {
  content: "Q";
  color: #f27200;
  font-size: var(--icon-size);
  line-height: 1;
  padding-bottom: 0.15em;
  position: absolute;
  left: calc(var(--icon-size) / 2);
  top: calc(0px - (clamp(5px, 0.66666vw, 10px) * 2));
  width: 2em;
  height: 1.666669em;
  border-radius: 0.6em;
  border: solid clamp(3px, 0.66666vw, 10px) var(--bg-color);
  display: grid;
  place-items: center;
  background-color: #fff;
}
.recruit_faq_content .column {
  min-height: calc(var(--icon-size) * 2.25);
  padding: 1em;
  padding-left: calc(var(--icon-size) * 3);
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  position: relative;
}
.recruit_faq_content .column:before {
  content: "A";
  color: #fff;
  font-size: var(--icon-size);
  line-height: 1;
  padding-bottom: 0.15em;
  position: absolute;
  top: 0.75rem;
  left: calc(var(--icon-size) / 2);
  width: 2em;
  height: 1.666669em;
  border-radius: 0.6em;
  display: grid;
  place-items: center;
  background-color: #f27200;
}
.recruit_faq_content:nth-child(even) {
  --bg-color: #6cd684;
}

/* ---  --- */
.recruit_contact {
  background-color: #f6f6f6;
  position: relative;
  z-index: 0;
}
.recruit_contact:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
  width: 100%;
  height: 80%;
  background: url("../images/nyuen/nyuen_contact_bg.svg") no-repeat center top/100% 100%;
}

/* ---  --- */
.recruit_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.recruit_table > tbody > tr > th, .recruit_table > tbody > tr > td {
  vertical-align: text-top;
  padding: 1em;
  border-bottom: 1px solid #000;
}
.recruit_table > tbody > tr > th {
  color: var(--primary);
}
.recruit_table > tbody > tr > th > p {
  padding-left: 1.25em;
  position: relative;
}
.recruit_table > tbody > tr > th > p:before {
  content: "●";
  position: absolute;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .recruit_table > tbody > tr > th {
    width: 10em;
  }
  .recruit_table > tbody > tr:first-child > th, .recruit_table > tbody > tr:first-child td {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .recruit_table colgroup {
    display: none !important;
  }
  .recruit_table > tbody > tr {
    width: 100%;
    display: block;
    margin-bottom: 0.5em;
  }
  .recruit_table > tbody > tr:last-child {
    margin-bottom: 0;
  }
  .recruit_table > tbody > tr > th, .recruit_table > tbody > tr > td {
    width: 100% !important;
    display: block;
    padding: 0;
  }
  .recruit_table > tbody > tr > th {
    border-bottom: none;
  }
  .recruit_table > tbody > tr > td {
    padding: 0.5em;
  }
}

/* -------------------------------
	お知らせ
-------------------------------- */
/* ---  --- */
.news_contents {
  padding: min(calc(50px + 150 * (100vw - 320px) / 1600), 200px) 0;
  position: relative;
}
.news_contents:before, .news_contents:after {
  content: "";
  position: absolute;
  width: 100%;
  z-index: -1;
}
.news_contents:before {
  top: 0;
  aspect-ratio: 100 / 7;
  background: url("../images/news/news_contents_bg_top.svg") no-repeat center bottom/cover;
}
.news_contents:after {
  bottom: 0;
  aspect-ratio: 50 / 3;
  background: url("../images/news/news_contents_bg_btm.svg") no-repeat center top/cover;
}
.news_contents .news_columns {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .news_contents .news_contents_inner {
    display: flex;
  }
  .news_contents .news_contents_inner .news_columns {
    margin: 0;
    flex: 1 1 0;
    padding-right: min(calc(30px + 40 * (100vw - 768px) / 732), 70px);
  }
  .news_contents .news_contents_inner .news_sidebar {
    flex: 0 0 270px;
  }
}

/* ---  --- */
.news_item_list {
  display: grid;
  gap: 30px;
}
@media print, screen and (min-width: 768px) {
  .news_item_list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(calc(30px + 20 * (100vw - 768px) / 732), 50px);
  }
}
@media print, screen and (min-width: 992px) {
  .news_item_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news_figure {
  display: flex;
  align-items: flex-start;
  border-radius: 10px;
}
.news_figure .photo {
  flex: 0 0 30%;
  aspect-ratio: 32 / 29;
  border-radius: 10px;
  overflow: hidden;
}
.news_figure figcaption {
  padding: 10px;
}
.news_figure figcaption p {
  margin: 0;
}
.news_figure figcaption .date {
  font-size: 13px;
}
.news_figure figcaption .cat {
  --bg-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 11px;
  text-align: center;
  display: inline-block;
  min-width: 8em;
  padding: 0.15em 0.5em;
  border-radius: 0.5em;
  background-color: var(--bg-color);
}
.news_figure figcaption .ttl {
  font-size: 0.9rem;
  margin-top: 0.25em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .news_figure {
    display: block;
  }
  .news_figure figcaption {
    padding: 0.8rem;
  }
}
a > .news_figure {
  transition: box-shadow 0.3s ease;
}
a > .news_figure .photo img {
  transition: transform 0.3s ease;
}
a > .news_figure:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
a > .news_figure:hover .photo img {
  transform: scale(1.15);
}

/* ---  --- */
.news_side_nav {
  padding: 20px;
  border-radius: 10px;
  background-color: #ececec;
}
.news_side_nav h3 {
  font-size: 1.1rem;
  line-height: normal;
  text-align: center;
  margin: 0 0 0.5em;
  transform: rotateZ(0.03deg);
}
.news_side_nav h3 > small {
  font-weight: 500;
  font-size: 0.72em;
  display: block;
}
.news_side_nav ul {
  font-size: 0.9em;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.list_nav_cat > li {
  transform: rotateZ(0.03deg);
}
.list_nav_cat > li > a {
  --bg-color: #000;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.35em 2em 0.35em 1em;
  border-radius: 0.5em;
  border: solid 2px var(--bg-color);
  background-color: var(--bg-color);
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}
.list_nav_cat > li > a:before {
  content: "\f178";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8em;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0.75em;
  margin-top: -.5em;
}
.list_nav_cat > li > a:hover {
  color: var(--bg-color);
  background-color: #fff;
}
.list_nav_cat > li.active > a {
  color: var(--bg-color);
  background-color: #fff;
}

.list_nav_tag > li {
  transform: rotateZ(0.03deg);
}
.list_nav_tag > li > a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 0.35em 2em 0.35em 1em;
  border-radius: 0.5em;
  background-color: #fff;
  transition: color 0.3s ease, background 0.3s ease;
}
.list_nav_tag > li > a:hover {
  color: #000;
  background-color: #C0C0C0;
}
.list_nav_tag > li.active > a {
  color: #000;
  background-color: #C0C0C0;
}

.list_nav_newitem > li > a {
  text-decoration: none;
  padding: 0.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 0.5em;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
.list_nav_newitem > li > a .date {
  font-size: 0.77777em;
  flex: 0 0 6.5em;
}
.list_nav_newitem > li > a .cat {
  --bg-color: #000;
  color: #000;
  font-weight: 500;
  font-size: 0.66666em;
  text-align: center;
  flex: 1 1 0;
  max-width: 10em;
  padding: 0.35em 0.5em;
  border-radius: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 0;
}
.list_nav_newitem > li > a .cat:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--bg-color);
  opacity: 0.35;
}
.list_nav_newitem > li > a .column {
  flex: 0 0 100%;
  margin-top: 0.25em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.list_nav_newitem > li > a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

/* ---  --- */
.news_detail {
  background-color: #f9f8f2;
}

.news_detail_content {
  padding: min(calc(20px + 40 * (100vw - 320px) / 1180), 60px);
  border-radius: min(calc(10px + 15 * (100vw - 320px) / 1180), 25px);
  background-color: #fff;
}
.news_detail_content h3 {
  font-size: min(calc(20px + 8 * (100vw - 320px) / 1180), 28px);
  margin: 0.9em 0;
}

/**/
.news_taxonomy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1em;
}
.news_taxonomy .cat, .news_taxonomy .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.25em 0.5em;
}
.news_taxonomy .cat .in, .news_taxonomy .tag .in {
  display: block;
  transform: rotateZ(0.03deg);
}
.news_taxonomy .cat {
  --bg-color: #000;
}
.news_taxonomy .cat .in {
  color: #000;
  font-weight: 500;
  padding: 3px 0.75em;
  border-radius: 0.25em;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.news_taxonomy .cat .in:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--bg-color);
  opacity: 0.35;
}
.news_taxonomy .tag .in {
  font-weight: 500;
}

/* */
.news_detail_navi {
  font-size: min(calc(12px + 8 * (100vw - 320px) / 1180), 20px);
}
.news_detail_navi > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 0.3em;
  overflow: hidden;
}
.news_detail_navi > ul > li > a {
  color: #4c2e06;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 0.75em 0;
  background-color: #f1ecdf;
  transition: background 0.3s ease;
  position: relative;
}
.news_detail_navi > ul > li > a:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}
.news_detail_navi > ul > li > a:hover {
  background-color: #D6C8A3;
}
.news_detail_navi > ul > li.prev > a:before {
  content: "\f053";
  left: 1em;
}
.news_detail_navi > ul > li.next > a:before {
  content: "\f054";
  right: 1em;
}

.news_detail_column {
  --gap: 20px;
}
.news_detail_column .htmlarea {
  margin-bottom: var(--gap);
}
.news_detail_column .news_gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.news_detail_column .news_gallery > div {
  flex: 0 0 100%;
  margin-bottom: var(--gap);
}
@media print, screen and (min-width: 992px) {
  .news_detail_column .news_gallery {
    gap: var(--gap);
  }
  .news_detail_column .news_gallery > div {
    flex: 0 0 calc((100% - (var(--gap) * 2)) / 3);
    margin-bottom: var(--gap);
  }
}
@media print, screen and (min-width: 992px) {
  .news_detail_column {
    --gap: min(calc(10px + 20 * (100vw - 992px) / 508), 30px);
  }
}

.news_file .btn {
  font-size: 1rem;
  min-width: inherit !important;
}

/* -------------------------------
	課外教室
-------------------------------- */
/* ---  --- */
.classroom_contents {
  padding: clamp(10px, 5.2vw, 100px) 0;
  background-color: #f1f1f1;
  position: relative;
}

/**/
.classroom_profile {
  --radius: min(calc(10px + 15 * (100vw - 320px) / 1180), 25px);
  width: 100%;
  border-bottom-left-radius: var(--radius);
  margin-bottom: 15px;
  background-image: url("../images/classroom/classroom_profile_bg1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.classroom_sports .classroom_profile {
  background-image: url("../images/classroom/classroom_sports_bg.jpg");
}
.classroom_profile .classroom_profile_head {
  padding-left: clamp(15px, calc(var(--measure-width) / 15.55555), 90px);
  padding-top: min(calc(15px + 15 * (100vw - 320px) / 1180), 30px);
  padding-bottom: min(calc(15px + 15 * (100vw - 320px) / 1180), 30px);
  background-color: rgba(110, 172, 219, 0.78);
}
.classroom_profile .classroom_profile_head .subttl {
  color: #93f5ff;
  font-size: clamp(20px, calc(var(--measure-width) / 30.43478), 46px);
  line-height: 1.2;
  text-transform: uppercase;
}
.classroom_profile .classroom_profile_head h3 {
  font-size: clamp(23px, calc(var(--measure-width) / 21.875), 64px);
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
.classroom_profile .classroom_profile_head h3 > .class {
  color: #fff;
  display: block;
  margin-right: 0.53125em;
}
.classroom_profile .classroom_profile_head h3 > .name {
  color: #50d6dd;
  font-size: 0.78125em;
  padding: 0.22em 1em;
  border-radius: 10em;
  background-color: #fff;
}
.classroom_profile .classroom_profile_message {
  display: flex;
  flex-direction: column;
  min-height: calc((var(--measure-width) / 28) * (5 * 1.5));
  padding-left: clamp(15px, calc(var(--measure-width) / 15.55555), 90px);
  position: relative;
  z-index: 0;
}
.classroom_profile .classroom_profile_message h4 {
  color: #fff;
  font-size: clamp(20px, calc(var(--measure-width) / 30), 45px);
  padding: 1em 0 0;
  margin: auto 0;
}
.classroom_profile .classroom_profile_message .bg_en {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -1;
  color: #89e3ed;
  font-size: clamp(30px, calc(var(--measure-width) / 6.66666), 210px);
  line-height: 1;
  margin-top: -.5em;
  width: 3.5em;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .classroom_profile .classroom_profile_message h4 {
    padding: 1em 0;
  }
}
.classroom_profile .classroom_profile_photo {
  position: relative;
  z-index: 0;
}
.classroom_profile .classroom_profile_photo .image {
  width: 50%;
  margin: 0 0 0 auto;
}
.classroom_profile .classroom_profile_photo .txt {
  position: absolute;
  left: 15px;
  bottom: 30px;
}
.classroom_profile .classroom_profile_photo .txt p {
  color: #fff;
  font-size: min(calc(12px + 8 * (100vw - 320px) / 1180), 20px);
  text-align: center;
  border-radius: 10em;
  padding: 0.5666em 1em;
  display: inline-block;
  min-width: 19em;
  background-color: #006c65;
}
@media print, screen and (min-width: 768px) {
  .classroom_profile .classroom_profile_photo {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    width: 51.071428%;
    height: 100%;
  }
  .classroom_profile .classroom_profile_photo .image {
    width: 100%;
    height: 100%;
    padding-top: 10%;
    margin: 0;
  }
  .classroom_profile .classroom_profile_photo .image img {
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }
  .classroom_profile .classroom_profile_photo .txt {
    left: 0;
    bottom: calc(min(5.2vw, 78px) / 1.5);
    width: 100%;
    text-align: center;
  }
  .classroom_profile .classroom_profile_photo .txt p {
    font-size: min(calc(14px + 10 * (100vw - 768px) / 732), 24px);
  }
}
.classroom_profile .classroom_profile_columns {
  position: relative;
  z-index: 0;
}
.classroom_profile .classroom_profile_columns:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: min(5.2vw, 78px);
  background-color: #fff;
}
.classroom_profile .classroom_profile_columns .content {
  --padding: min(calc(15px + 15 * (100vw - 320px) / 1180), 30px);
  padding: var(--padding);
  border-top-left-radius: var(--radius);
  display: flex;
  background-color: #fff;
}
.classroom_profile .classroom_profile_columns .content .ttl {
  flex: 0 0 auto;
  padding-right: var(--padding);
}
.classroom_profile .classroom_profile_columns .content .ttl h4 {
  font-size: 0.9em;
  line-height: 1.2;
  display: flex;
  flex-direction: row-reverse;
}
.classroom_profile .classroom_profile_columns .content .ttl h4 > span, .classroom_profile .classroom_profile_columns .content .ttl h4 > small {
  display: block;
  writing-mode: vertical-rl;
  transform: rotateZ(0.03deg);
}
.classroom_profile .classroom_profile_columns .content .ttl h4 > small {
  color: #006ab4;
  font-weight: 500;
  font-size: 0.77777em;
}
.classroom_profile .classroom_profile_columns .content .column {
  flex: 1 1 0;
}
.classroom_profile .classroom_profile_columns .content .column h5 {
  font-size: 1.3em;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.classroom_profile .classroom_profile_columns .content .column p {
  font-size: 0.9em;
}
@media print, screen and (min-width: 768px) {
  .classroom_profile .content {
    width: 56%;
    max-width: 685px;
  }
}

/**/
.classroom_class_content {
  display: flex;
  flex-wrap: wrap;
}
.classroom_class_content .classroom_class_content_features, .classroom_class_content .classroom_class_content_experience {
  flex: 0 0 100%;
  padding: min(calc(15px + 15 * (100vw - 320px) / 1180), 30px);
  border-radius: min(calc(10px + 10 * (100vw - 320px) / 1180), 20px);
  background-color: #fff;
}
.classroom_class_content h4 {
  color: #41c7df;
  font-size: min(calc(20px + 24 * (100vw - 320px) / 1180), 44px);
  text-align: center;
  border-bottom: solid 1px #0d7dbe;
  padding-bottom: 0.35rem;
  margin: 0 0 0.75rem;
}
@media print, screen and (min-width: 768px) {
  .classroom_class_content {
    gap: 0 15px;
  }
  .classroom_class_content .classroom_class_content_features {
    flex: 0 0 46%;
  }
  .classroom_class_content .classroom_class_content_experience {
    flex: 1 1 0;
  }
  .classroom_class_content h4 {
    font-size: min(calc(22px + 16 * (100vw - 768px) / 732), 38px);
  }
}
@media print, screen and (min-width: 992px) {
  .classroom_class_content .classroom_class_content_features {
    flex: 0 0 35.71428%;
  }
}

.classroom_class_content_features {
  margin-bottom: 15px;
}
.classroom_class_content_features dl {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: clamp(90px, 27.2%, 136px) 1fr;
}
.classroom_class_content_features dl > dt, .classroom_class_content_features dl > dd {
  margin: 0;
}
.classroom_class_content_features dl > dd {
  font-size: 0.9rem;
  padding: 1em;
}
.classroom_class_content_features dl > dd h5 {
  color: #5e5e5e;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  .classroom_class_content_features {
    margin-bottom: 0;
  }
}

.classroom_class_content_experience {
  font-size: 0.9rem;
  padding: 1em;
}
.classroom_class_content_experience h5 {
  color: #5e5e5e;
  font-size: 1rem;
  line-height: 1.2;
  padding-left: 1.2em;
  margin-bottom: 0.5rem;
  position: relative;
}
.classroom_class_content_experience h5:before {
  content: "●";
  position: absolute;
  left: 0;
}
.classroom_class_content_experience .photo {
  border: solid min(1vw, 10px) #5e5e5e;
  border-radius: min(2vw, 20px);
  overflow: hidden;
}

.classroom_popup .modal-dialog {
  max-width: 1900px;
}
.classroom_popup .modal-dialog .close {
  position: absolute;
  left: 20px;
  top: 10px;
  z-index: 99;
}
@media print, screen and (min-width: 992px) {
  .classroom_popup .modal-dialog .close {
    right: 20px;
    left: auto;
  }
}
.classroom_popup .modal-dialog .modal-body {
  padding: 0;
}

/* -------------------------------
	お問い合わせ
-------------------------------- */
.tel_contact .telphone {
  font-size: calc(20px + 16 * (100vw - 320px) / 880);
  text-align: center;
}
.tel_contact .telphone i {
  margin-right: 10px;
}
@media print, screen and (min-width: 1200px) {
  .tel_contact .telphone {
    font-size: 36px;
  }
}

#contactform {
  /**/
}
#contactform .form-control, #contactform .custom-select {
  transform: rotateZ(0.03deg);
  border-radius: 10px;
}
#contactform .form-control {
  border-color: #ededed;
  background-color: #f6f6f6;
  box-shadow: none;
}
#contactform .form-control:focus {
  border-color: #ededed;
  background-color: #ededed;
  box-shadow: none;
}
#contactform .form-control:not(:placeholder-shown) {
  border-color: #ededed;
  background-color: #ededed;
  box-shadow: none;
}
#contactform .custom-select {
  box-shadow: none !important;
  border-color: #ededed;
  background-color: #ededed;
}
#contactform .custom-select:focus {
  border-color: #ededed;
}
#contactform textarea {
  min-height: 10em;
}
@media print, screen and (min-width: 768px) {
  #contactform textarea {
    min-height: 20em;
  }
}
#contactform input[type="file"] {
  font-size: 15px;
  letter-spacing: normal;
}
#contactform input[type="file"]::-webkit-file-upload-button {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  #contactform .select-inline, #contactform .p-region {
    width: auto;
    display: inline;
  }
}

/* フォーム用　table */
.table-contact {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  border-top: solid min(5px, 0.66666vw, 10px) #318c6e;
  border-bottom: solid min(5px, 0.66666vw, 10px) #318c6e;
  border-right: solid min(5px, 0.66666vw, 10px) #318c6e;
  border-radius: 20px;
  background-color: #318c6e;
  overflow: hidden;
}
.table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
  padding: 1em;
  vertical-align: text-top;
}
.table-contact > tbody > tr > th {
  color: #fff;
  width: 15em;
  border-bottom: solid 1px #fff;
  background-color: #318c6e;
}
.table-contact > tbody > tr > th p {
  display: flex;
  align-items: center;
}
.table-contact > tbody > tr > th .hisu {
  font-size: 0.75em;
  display: block;
  padding: 0 0.75em;
  margin-left: 0.75em;
  top: -.5em;
  border-radius: 10em;
  background-color: #f3a9a8;
}
.table-contact > tbody > tr > td {
  border-bottom: solid 1px #787878;
  background-color: #fff;
}
.table-contact > tbody > tr > td .sm, .table-contact > tbody > tr > td .p-postal-code {
  width: auto !important;
  display: inline;
}
.table-contact > tbody > tr > td .md {
  max-width: 360px !important;
}
.table-contact > tbody > tr > td .rei {
  color: #555;
  font-size: 0.8125rem;
  line-height: normal;
  display: block;
  margin: 5px 0 0;
}
.table-contact > tbody > tr:last-child > th, .table-contact > tbody > tr:last-child > td {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .table-contact {
    border-left: solid min(5px, 0.66666vw, 10px) #318c6e;
  }
  .table-contact > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-contact > tbody > tr > th, .table-contact > tbody > tr > td {
    width: 100%;
    display: block;
    padding: 1em;
    border-bottom: none;
  }
}

.img-hisu {
  margin: -.2em .5em 0 0;
}

/*  */
.agree {
  text-align: center;
  margin-top: 20px;
}

.buttons {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.buttons .btn {
  display: block;
  flex: 0 0 calc(100% - 10px);
  padding: 1em;
  cursor: pointer;
}
.buttons .btn .in_rotatez {
  display: inline-grid;
}
.buttons .btn i {
  position: absolute;
}
.buttons .btn .bi-arrow-right {
  margin-left: 1em;
}
.buttons .btn .bi-arrow-left {
  margin-left: -2em;
}
@media print, screen and (min-width: 768px) {
  .buttons .btn {
    flex: 1 1 0;
  }
}

/* プライバシーポリシー */
#policy {
  margin-top: 30px;
  padding: min(calc(20px + 30 * (100vw - 320px) / 1180), 50px);
  border-radius: 20px;
  background-color: #fff;
}
#policy h4 {
  font-size: min(calc(18px + 10 * (100vw - 320px) / 1180), 28px);
  border-left: solid 0.25em var(--success);
  padding-left: 0.5em;
}
#policy .contents {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 300px;
  padding-right: 3%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: auto;
}
#policy .contents h5 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: bold;
  margin: 2rem 0 0;
  transform: rotateZ(0.03deg);
}
#policy .contents p, #policy .contents ol {
  font-size: 0.9rem;
  margin: 1rem 0;
}
#policy .contents > ol {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
#policy .contents > ol > li {
  padding-left: 2em;
  margin-bottom: 5px;
  position: relative;
}
#policy .contents > ol > li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) " )";
}

/* ---  --- */
.contact_faq {
  position: relative;
  z-index: 0;
}
.contact_faq:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  z-index: -1;
  width: 100%;
  aspect-ratio: 2000 / 123;
  background: url("../images/contact/contact_faq_nh_top.svg") no-repeat center bottom/cover;
}
.contact_faq .title-hh-1 > img {
  width: 2.854em;
}

/**/
.faq_content_item {
  --radius: min(calc(15px + 10 * (100vw - 320px) / 1180), 25px);
  --border: solid min(5px,0.66666vw, 10px) #000;
  --head-num-bg-color: #91d2c4;
  border-radius: var(--radius);
  border: var(--border);
  margin-bottom: 50px;
  overflow: hidden;
}
.faq_content_item:last-child {
  margin-bottom: 0;
}
.faq_content_item:nth-child(even) .faq_content_item_head {
  --head-num-bg-color: #ffc16d;
}

.faq_content_item .faq_content_item_head {
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: var(--border);
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}
.faq_content_item .faq_content_item_head .num {
  color: #fff;
  font-size: min(calc(23px + 92 * (100vw - 320px) / 1180), 115px);
  line-height: 1;
  text-align: center;
  display: grid;
  place-items: center;
  flex: 0 0 100%;
  padding: 10px;
  border-bottom: var(--border);
  background-color: var(--head-num-bg-color);
  position: relative;
  z-index: 0;
}
.faq_content_item .faq_content_item_head .num:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0.43478em;
  height: 0.43478em;
  z-index: 10;
  border-right: var(--border);
  border-bottom: var(--border);
  background-color: var(--head-num-bg-color);
  transform: translate(-50%, -50%) rotate(45deg);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.faq_content_item .faq_content_item_head .num small {
  font-size: 0.22608em;
  display: block;
}
.faq_content_item .faq_content_item_head .ttl {
  flex: 1 1 0;
}
.faq_content_item .faq_content_item_head .ttl h4 {
  font-size: calc(var(--width-faq_ttl) / 18.2258);
  line-height: 1.2;
  margin: 0;
  padding: 0.6em 1em;
  transform: rotateZ(0.03deg);
}
@media print, screen and (min-width: 768px) {
  .faq_content_item .faq_content_item_head .num {
    flex: 0 0 2.26086em;
    border-bottom: none;
  }
}

/**/
.faq_content_item .faq_content_item_body {
  padding: min(calc(20px + 50 * (100vw - 320px) / 1180), 70px) min(calc(15px + 35 * (100vw - 320px) / 1180), 50px);
  background-color: #eeeeee;
}

/**/
.faq_content_item .answer_box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  margin-bottom: min(calc(20px + 40 * (100vw - 320px) / 1180), 60px);
  background-color: #ecf7f6;
  position: relative;
}
.faq_content_item .answer_box .ttl {
  font-size: min(calc(23px + 24 * (100vw - 320px) / 1180), 47px);
  flex: 0 0 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.faq_content_item .answer_box .ttl p {
  line-height: 1;
  text-align: center;
  padding: 1em 0;
  width: 2.2em;
  position: relative;
}
.faq_content_item .answer_box .ttl p > small {
  font-size: 0.531914em;
  color: #91d1c4;
  display: block;
}
.faq_content_item .answer_box .columns {
  font-size: 16px;
  padding: 1em;
}
.faq_content_item .answer_box .columns p {
  margin: 0;
}
.faq_content_item .answer_box .columns .name {
  text-align: right;
}
.faq_content_item .answer_box .icon {
  --border-color: #24992a;
  font-size: min(calc(23px + 24 * (100vw - 320px) / 1180), 47px);
  width: 2.5em;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  border-radius: 50%;
  background-color: #95d6a6;
  overflow: hidden;
}
.faq_content_item .answer_box .icon img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid clamp(2px, 0.2857vw, 4px) var(--border-color);
  object-fit: contain;
}
@media print, screen and (min-width: 768px) {
  .faq_content_item .answer_box {
    padding-right: 25px;
  }
  .faq_content_item .answer_box .ttl {
    flex: 0 0 3.957em;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .faq_content_item .answer_box .ttl p > small {
    position: absolute;
    margin-top: -1.1em;
  }
  .faq_content_item .answer_box .columns {
    font-size: min(calc(16px + 15 * (100vw - 768px) / 732), 31px);
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
  }
  .faq_content_item .answer_box .columns .column_inner {
    margin: auto 0;
  }
  .faq_content_item .answer_box .image {
    display: grid;
    place-items: center;
    position: relative;
  }
  .faq_content_item .answer_box .image:after {
    content: "";
    position: absolute;
    width: clamp(20px, 3.0714vw, 43px);
    top: calc(100% - 1px);
    left: 50%;
    aspect-ratio: 43 / 24;
    background: url("../images/contact/fukidasi.svg") no-repeat center bottom/cover;
    transform: translateX(-25%);
  }
  .faq_content_item .answer_box .image .icon {
    position: static;
    width: min(10.357vw, 145px);
  }
}
@media print, screen and (min-width: 768px) {
  .faq_content_item:nth-child(even) .answer_box {
    padding: 0 0 0 25px;
  }
  .faq_content_item:nth-child(even) .answer_box .ttl {
    order: 3;
    border-radius: 0 0.5rem 0.5rem 0;
  }
  .faq_content_item:nth-child(even) .answer_box .columns {
    order: 2;
  }
  .faq_content_item:nth-child(even) .answer_box .image {
    order: 1;
  }
  .faq_content_item:nth-child(even) .answer_box .image:after {
    transform: translateX(-50%) scaleX(-1);
  }
}

/**/
.answer_box2 {
  --bg-color: #fdf8f5;
  --color: #ef9a71;
  padding: min(calc(15px + 15 * (100vw - 320px) / 1180), 30px);
  border-radius: 0.5rem;
  height: 100%;
  background-color: var(--bg-color);
}
.answer_box2 .answer_head {
  display: flex;
  margin-bottom: 1rem;
}
.answer_box2 .answer_head .icon {
  flex: 0 0 min(10.357vw, 145px);
  margin-right: 10px;
}
.answer_box2 .answer_head .icon .img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid clamp(2px, 0.2857vw, 4px) var(--color);
}
.answer_box2 .answer_head .icon .img img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.answer_box2 .answer_head .column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  border-bottom: dotted 3px #000;
}
.answer_box2 .answer_head .column h4 {
  font-size: min(calc(18px + 11 * (100vw - 320px) / 1180), 29px);
  line-height: 1.2;
  padding-left: 1.5em;
  margin-bottom: 0.5rem;
  position: relative;
  transform: rotateZ(0.03deg);
}
.answer_box2 .answer_head .column h4:before {
  content: "A.";
  color: var(--color);
  position: absolute;
  left: 0;
}
.answer_box2 .answer_head .column p {
  font-weight: 500;
  text-align: right;
  margin-right: 1em;
  margin-top: auto;
  margin-bottom: 0.5em;
}

/* =============================
 * フェード（上下左右）
 * ============================= */
@media screen {
  .amn-fade-up,
  .amn-fade-down,
  .amn-fade-left,
  .amn-fade-right {
    --translate-y: 50px;
    --translate-y-on: 0;
    --translate-x: 100px;
    --translate-x-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }

  .amn-fade-up {
    transform: translateY(var(--translate-y));
  }
  .amn-fade-up.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-down {
    transform: translateY(calc(var(--translate-y) * -1));
  }
  .amn-fade-down.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }

  .amn-fade-left {
    transform: translateX(var(--translate-x));
  }
  .amn-fade-left.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-fade-right {
    transform: translateX(calc(var(--translate-x) * -1));
  }
  .amn-fade-right.is-active {
    opacity: 1;
    transform: translateX(var(--translate-x-on));
  }

  .amn-span-up {
    opacity: 0;
  }
  .amn-span-up .is-span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
  }
  .amn-span-up.is-active {
    opacity: 1;
  }
  .amn-span-up.is-active .is-span {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================
 * 行要素の段階表示
 * ============================= */
@media screen {
  .js-row-1 > * {
    --translate-y: 50px;
    --translate-y-on: 0;
    --duration: 1s;
    --easing: ease;
    opacity: 0;
    transform: translateY(var(--translate-y));
    transition: opacity var(--duration) var(--easing), transform var(--duration) var(--easing);
  }
  .js-row-1 > *.is-active {
    opacity: 1;
    transform: translateY(var(--translate-y-on));
  }
}
/* =============================
 * マスクエフェクト
 * ============================= */
@media screen {
  .amn-lr-open {
    --mask-duration: 0.5s cubic-bezier(.9,.09,.67,.93);
    opacity: 0;
    mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 100% 50%;
    -webkit-mask-position: 100% 50%;
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
    transition: mask-position var(--mask-duration);
  }
  .amn-lr-open.is-active {
    opacity: 1;
    mask-position: 0% 50%;
    -webkit-mask-position: 0% 50%;
  }
}
/* =============================
 * マスクアップ
 * ============================= */
@media screen {
  .amn-mask-up {
    --duration: 1s;
    --easing: ease;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
  }
  .amn-mask-up > .is-span {
    display: inline-block;
    transform: translateY(101%);
    transition: transform var(--duration) var(--easing);
  }
  .amn-mask-up.is-active {
    opacity: 1;
  }
  .amn-mask-up.is-active > .is-span {
    transform: translateY(0%);
  }
}
/* =============================
 * マーカー
 * ============================= */
@media screen {
  .amn-marker-yellow {
    --mark-bg: rgba(254,239,68,1);
    --mark-duration: 3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--mark-bg) 50%, var(--mark-bg) 90%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    background-size: 200% 1em;
    background-position: 200% 0.5em;
    transition: background var(--mark-duration);
    display: inline;
  }
  .amn-marker-yellow.is-active {
    background-position: 100% 0.5em;
  }
}
/* =====================================================
 * シャッターエフェクト（CSS変数版）
 * ===================================================== */
@media screen {
  .amn-shutter {
    --shutter-bg: #73b400;
    --shutter-duration: 0.5s;
    --shutter-easing: cubic-bezier(.62,0,.46,1.01);
    --shutter-delay: 0.7s;
    opacity: 0;
    position: relative;
    z-index: 0;
  }
  .amn-shutter .shutter__element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shutter-bg);
    z-index: 10;
    transform: scale(0, 1);
  }
  .amn-shutter .shutter__contents {
    opacity: 0;
    height: 100%;
  }
  .amn-shutter.lr.is-active {
    opacity: 1;
  }
  .amn-shutter.lr.is-active .shutter__element {
    animation: shutter2_lr_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_lr_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.lr.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
  .amn-shutter.rl.is-active {
    opacity: 1;
  }
  .amn-shutter.rl.is-active .shutter__element {
    animation: shutter2_rl_1 var(--shutter-duration) var(--shutter-easing) 0s forwards, shutter2_rl_2 var(--shutter-duration) var(--shutter-easing) var(--shutter-delay) forwards;
  }
  .amn-shutter.rl.is-active .shutter__contents {
    animation: shutter2_contents 0s ease .6s forwards;
  }
}
@keyframes shutter2_lr_1 {
  from {
    transform: scale(0, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_lr_2 {
  from {
    transform: scale(1, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_1 {
  from {
    transform: scale(0, 1);
    transform-origin: right top;
  }
  to {
    transform: scale(1, 1);
    transform-origin: right top;
  }
}
@keyframes shutter2_rl_2 {
  from {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  to {
    transform: scale(0, 1);
    transform-origin: left top;
  }
}
@keyframes shutter2_contents {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=module.css.map */
