@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Rubik:ital,wght@0,300..900;1,300..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");

/***************************

foundation/base.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 1.5rem;
  color: #6A5046;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

*:has(> wbr) {
  white-space: pre-wrap;
  word-break: keep-all;
}

/***************************

layout/_header.scss

***************************/
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
}

.header__logo {
  background: url(../img/common/logo_bg.png);
  padding: 26px 35px 30px 40px;
  border-bottom-right-radius: 30px;
  position: relative;
  z-index: 9999;
  font-size: 0;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 200px;
    padding: 15px 20px 15px 20px;
    border-bottom-right-radius: 20px;
  }
}

.header__nav {
  display: grid;
  grid-template-areas: "item1 item4 item3""item1 item5 item6""item1 item7 item7";
  gap: 10px 55px;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 580px) {
  .header__nav {
    grid-template-areas: "item1 item1""item3 item4""item5 item6""item7 item7";
    gap: 10px 30px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 580px) {
  .header__nav {
    grid-template-areas: "item1""item4""item3""item5""item6""item7";
  }
}

.header__nav__item {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.header__nav__item a {
  padding-left: 15px;
  position: relative;
  display: block;
}

.header__nav__item a:before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  background: #6A5046;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
}

.header__nav__item.--home {
  grid-area: item1;
}

.header__nav__item.--message {
  grid-area: item2;
}

.header__nav__item.--guide {
  grid-area: item3;
}

.header__nav__item.--education {
  grid-area: item4;
}

.header__nav__item.--news {
  grid-area: item5;
}

.header__nav__item.--about {
  grid-area: item6;
}

.header__nav__item.--access {
  grid-area: item7;
}

@media screen and (max-width: 450px) {
  .header__nav__item {
    font-size: 1.8rem;
  }
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

/* toggle button */
.header__toggleBtn {
  cursor: pointer;
  display: inline-block;
  background: url(../img/common/toggle_bg.png) no-repeat top right/contain;
  border: none;
  outline: none;
  position: relative;
  padding: 13px 0;
  text-align: center;
  z-index: 9999;
  width: 196px;
  height: 177px;
  padding-top: 40px;
  padding-left: 20px;
}

.header__toggleBtn__bar {
  position: relative;
  z-index: 9999;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 37px;
  height: 4px;
  border-radius: 999px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.header__toggleBtn__bar:before,
.header__toggleBtn__bar:after {
  position: absolute;
  content: "";
  display: block;
  width: 37px;
  height: 4px;
  border-radius: 999px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.header__toggleBtn__bar:before {
  top: -10px;
}

.header__toggleBtn__bar:after {
  top: 10px;
}

input[name=toggle]:checked+.header__toggleBtn__bar {
  background-color: transparent;
}

input[name=toggle]:checked+.header__toggleBtn__bar:before {
  transform: translateY(10px) rotate(45deg);
}

input[name=toggle]:checked+.header__toggleBtn__bar:after {
  transform: translateY(-10px) rotate(-45deg);
}

input[name=toggle] {
  display: none;
}

.header__toggleBtn__name {
  font-family: "Rubik", sans-serif;
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
}

.header__toggleBtn__name:before {
  content: "MENU";
}

.header__toggleBtn:has(input[name=toggle]:checked) .header__toggleBtn__name:before {
  content: "CLOSE";
}

@media screen and (max-width: 768px) {
  .header__toggleBtn {
    padding-top: 18px;
    width: 120px;
    height: 108px;
  }
}

@media screen and (max-width: 450px) {
  .header__toggleBtn {
    padding-top: 15px;
    width: 95px;
    height: 86px;
  }

  .header__toggleBtn__name {
    font-size: 1.3rem;
  }
}

.gnav {
  position: absolute;
  left: 0;
  top: 0;
  padding: 150px 20px 50px;
  width: 100%;
  height: 100svh;
  background: url(../img/top/main_deco03.png) no-repeat bottom 15px left 30px;
  background-color: #fff;
  border-bottom: 1px solid #E8E8E8;
  transition: opacity 0.5s, visibility 0.5s;
  overflow-y: auto;
  overflow-x: visible;
  opacity: 1;
  visibility: visible;
}

.header:has(input[name=toggle]:not(:checked)) .gnav {
  visibility: hidden;
  opacity: 0;
}

/***************************

layout/_footer.scss

***************************/
footer {
  background-image: url(../img/common/f_deco02.png), url(../img/common/f_deco03.png);
  background-repeat: no-repeat;
  background-position: top 93px left 0, top 35px right 30px;
  margin-top: 80px;
}

.footer-contact {
  max-width: 1010px;
  width: calc(100% - 30px);
  margin: 0 auto 50px;
  background: url(../img/common/f_contact_bg.jpg);
  border-radius: 20px;
  padding: 60px 20px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 60px;
  position: relative;
}

.footer-contact:before {
  content: "";
  width: 37px;
  aspect-ratio: 37/45;
  background: url(../img/common/f_deco04.png);
  position: absolute;
  top: -8px;
  right: 78px;
}

@media screen and (max-width: 600px) {
  .footer-contact {
    padding-top: 45px;
  }

  .footer-contact:before {
    right: 30px;
  }
}

.footer-contact__text {
  font-size: min(2.4rem, 5.333vw);
  font-weight: bold;
  line-height: 1.6;
}

.footer-contact__hdg {
  font-family: "Rubik", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}

.footer-contact__hdg:before {
  content: "";
  width: 6px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
}

.footer-contact__numWrap {
  font-family: "Rubik", sans-serif;
  font-size: min(2.2rem, 4vw);
  font-weight: 600;
  letter-spacing: 0.2em;
}

.footer-contact__num {
  font-size: min(4rem, 8vw);
}

.footer-bottom {
  background: url(../img/common/f_bottom_bg.jpg);
  border-radius: 300px 300px 0 0;
  padding: 50px 20px 35px;
  color: #fff;
  position: relative;
}

.footer-bottom:before {
  content: "";
  width: 127px;
  aspect-ratio: 127/142;
  background: url(../img/common/f_deco01.png);
  position: absolute;
  top: -100px;
  left: calc(50% - 63px);
}

@media screen and (max-width: 1500px) {
  .footer-bottom {
    border-radius: 15vw 15vw 0 0;
  }
}

.footer-copy {
  text-align: center;
  font-size: min(2.4rem, 4.8vw);
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-copy02 {
  display: block;
  text-align: center;
}

.footer-bottom__box {
  border-top: 2px dotted rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: 35px auto 0;
  padding: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom-nav {
  display: grid;
  grid-template-areas: "item1 item4 item3""item1 item5 item6""item1 item7 item7";
  gap: 10px 55px;
}

@media screen and (max-width: 580px) {
  .footer-bottom-nav {
    grid-template-areas: "item1 item1""item4 item3""item5 item6""item7 item7";
    gap: 10px 30px;
    margin: 0 auto;
  }
}

.footer-bottom-nav__item {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.footer-bottom-nav__item a {
  padding-left: 15px;
  position: relative;
  display: block;
}

.footer-bottom-nav__item a:before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
}

.footer-bottom-nav__item.--home {
  grid-area: item1;
}

.footer-bottom-nav__item.--message {
  grid-area: item2;
}

.footer-bottom-nav__item.--guide {
  grid-area: item3;
}

.footer-bottom-nav__item.--education {
  grid-area: item4;
}

.footer-bottom-nav__item.--news {
  grid-area: item5;
}

.footer-bottom-nav__item.--about {
  grid-area: item6;
}

.footer-bottom-nav__item.--access {
  grid-area: item7;
}

@media screen and (max-width: 450px) {
  .footer-bottom-nav__item {
    font-size: 1.8rem;
  }
}

.footer-copyright {
  display: block;
  max-width: 1200px;
  margin: 20px auto 0;
}

/***************************

layout/_slick.scss

***************************/
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }

  .slick-archive__label {
    font-size: 1rem;
  }
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin: 35px 0 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Rubik", sans-serif;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #14DA23;
  font-size: 1.8rem;
  margin: 5px;
  width: 60px;
  aspect-ratio: 1/1;
  text-decoration: none;
  padding: 0;
  background: #fff;
  border: 1px solid #14DA23;
  border-radius: 50%;
  font-weight: 500;
  line-height: 1.2;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 35px;
  color: #fff;
  background: #14DA23;
  padding-top: 2px;
}

.wp-pagenavi span.current {
  color: #fff;
  background: #14DA23;
  font-weight: 800;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 451px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 10px;
  }

  .wp-pagenavi .nextpostslink {
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }

  .wp-pagenavi .extend+.larger {
    display: none;
  }
}

@media screen and (max-width: 450px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 2.5em;
  }
}

.pager {
  margin: 20px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #1f1f1f;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}

/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}

.breadcrumbs a {
  color: #fff;
  display: block;
}

.breadcrumbs__item {
  position: relative;
}

.breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}

.breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

.breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

/***************************

layout/_subpage.scss

***************************/
.subpage-title {
  background: url(../img/common/page_title_bg.png) no-repeat bottom 70px left 50%;
  padding: 60px 0 min(80px, 10vw);
  position: relative;
}

.subpage-title:before {
  content: "";
  width: 48px;
  aspect-ratio: 48/57;
  background: url(../img/common/page_title_deco02.png) no-repeat center/contain;
  position: absolute;
  bottom: -13px;
  left: min(70px, 4vw);
}

@media screen and (min-width: 1501px) {
  .subpage-title {
    background-size: 100% auto;
  }
}

@media screen and (max-width: 768px) {
  .subpage-title {
    padding-top: 100px;
  }
}

.subpage-title__image {
  display: grid;
  grid-template-areas: "item1";
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 40px);
  border: 10px solid #fff;
  border-radius: min(310px, 20vw) min(310px, 20vw) 35px 35px;
  overflow: hidden;
  margin: 0 auto;
}

.subpage-title__image img {
  grid-area: item1;
}

.subpage-title__hdg {
  text-align: center;
  line-height: 1.4;
  color: #fff;
  grid-area: item1;
  position: relative;
  z-index: 2;
}

.subpage-title__hdg__jp {
  font-size: min(3rem, 6.666vw);
  font-weight: 600;
  text-align: center;
}

.subpage-title__hdg__jp:before,
.subpage-title__hdg__jp:after {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.subpage-title__hdg__jp:before {
  content: "(";
  margin-right: min(35px, 4vw);
}

.subpage-title__hdg__jp:after {
  content: ")";
  margin-left: min(35px, 4vw);
}

.subpage-title__hdg__en {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 11px;
}

.subpage-title__hdg__en:before,
.subpage-title__hdg__en:after {
  content: "";
  width: 22px;
  height: 4px;
  background: url(../img/common/page_title_deco.png) no-repeat center/contain;
  display: inline-block;
}

.subpage-contents+.subpage-contents {
  margin-top: min(80px, 10vw);
}

.subpage-anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 25px;
  width: fit-content;
  background: #F9F9F9;
  border-radius: 40px;
  padding: 25px min(45px, 4vw);
  margin: 0 auto min(80px, 10vw);
}

.subpage-anchor__item a {
  display: block;
  position: relative;
  padding-left: 15px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  line-height: 1.6;
}

.subpage-anchor__item a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #14DA23;
  border-bottom: 0;
  position: absolute;
  top: 8px;
  left: 0;
}

/***************************

object/component/_heading.scss

***************************/
.hdg-type01 {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
}

.hdg-type01__jp {
  font-size: min(3rem, 6.666vw);
  text-align: center;
}

.hdg-type01__jp:before,
.hdg-type01__jp:after {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #14DA23;
}

.hdg-type01__jp:before {
  content: "(";
  margin-right: 35px;
}

.hdg-type01__jp:after {
  content: ")";
  margin-left: 35px;
}

.hdg-type01__en {
  color: #14DA23;
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 11px;
}

.hdg-type01__en:before,
.hdg-type01__en:after {
  content: "";
  width: 22px;
  height: 4px;
  background: url(../img/common/hdg01_en_deco.png) no-repeat center/contain;
  display: inline-block;
}

.hdg-type02 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 30px;
  background: url(../img/common/hdg02_deco.png) no-repeat left 0 top 6px;
  margin-bottom: 20px;
}

@media screen and (max-width: 450px) {
  .hdg-type02 {
    font-size: 2.2rem;
  }
}

.hdg-type03 {
  color: #14DA23;
  line-height: 1.6;
  font-size: 2.2rem;
  font-weight: bold;
  width: fit-content;
  margin-bottom: 12px;
  text-decoration: underline;
  text-underline-offset: 8px;
}


.hdg-type04 {
  font-size: 1.8rem;
  font-weight: 900;
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
  line-height: 1.6;
}

.hdg-type04:before {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #14DA23;
  position: absolute;
  left: 0;
  top: 10px;
}

/***************************

object/component/_box.scss

***************************/
.container {
  max-width: 1230px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1090px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.box-type01 {
  background: #F9F9F9;
  border-radius: min(40px, 5.2vw);
  padding: min(25px, 4vw) min(45px, 4vw);
}

.box-type02 {
  background: #F9F9F9;
  border-radius: min(20px, 2.6vw);
  padding: min(25px, 4vw) min(45px, 4vw);
}

.box-2column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.box-2column__item {
  width: calc(50% - 15px);
  background: #F9F9F9;
  border-radius: min(40px, 5.2vw);
  padding: min(30px, 4vw) min(45px, 4vw);
}

@media screen and (max-width: 768px) {
  .box-2column {
    gap: 20px;
  }

  .box-2column__item {
    width: 100%;
  }
}

/***************************

object/component/_list.scss

***************************/
.list-type01__item {
  padding-left: 17px;
  position: relative;
  line-height: 1.6;
}

.list-type01__item:before {
  content: "";
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #14DA23;
  position: absolute;
  left: 0;
  top: 6px;
}

.ol-type01 {
  counter-reset: ol-type01;
}

.ol-type01__item {
  counter-increment: ol-type01;
  background: #fff;
  border-radius: min(40px, 5.2vw);
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  padding: 12px 20px 12px 50px;
  display: flex;
  align-items: center;
  gap: 5px 15px;
}

.ol-type01__item:before {
  content: counter(ol-type01);
  background: #14DA23;
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  line-height: 24px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 12px;
  left: 12px;
}

.ol-type01__item:nth-of-type(n+2) {
  margin-top: 5px;
}

@media screen and (max-width: 600px) {
  .ol-type01__item {
    flex-wrap: wrap;
  }
}

.ol-type01__item__hdg {
  font-size: 1.6rem;
  color: #14DA23;
  line-height: 1.4;
}

.dl-type01 {
  display: flex;
  flex-wrap: wrap;
}

.dl-type01__dt,
.dl-type01__dd {
  padding: 15px 25px;
  line-height: 1.6;
  border-bottom: 1px solid #E0DCDA;
  border-left: 1px solid #E0DCDA;
}

.dl-type01__dt:nth-of-type(1),
.dl-type01__dd:nth-of-type(1) {
  border-top: 1px solid #E0DCDA;
}

.dl-type01__dt {
  width: 180px;
  background: #14DA23;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.dl-type01__dt:nth-of-type(1) {
  border-top-left-radius: 7px;
}

.dl-type01__dt:last-of-type {
  border-bottom-left-radius: 7px;
}

.dl-type01__dd {
  width: calc(100% - 180px);
  border-right: 1px solid #E0DCDA;
  background: #fff;
}

.dl-type01__dd:nth-of-type(1) {
  border-top-right-radius: 7px;
}

.dl-type01__dd:last-of-type {
  border-bottom-right-radius: 7px;
}

@media screen and (max-width: 768px) {
  .dl-type01__dt {
    width: 30%;
    padding: 15px;
  }

  .dl-type01__dd {
    width: 70%;
    padding: 15px;
  }
}

.dl-type02 {
  background: url(../img/common/dl_tyle02_bg.jpg);
  padding: min(40px, 3.63vw) min(70px, 6.36vw);
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}

.dl-type02__dt {
  width: 160px;
  padding: 18px 5px;
  font-weight: bold;
  color: #14DA23;
}

.dl-type02__dt:nth-of-type(n+2) {
  border-top: 1px solid #E4E3E0;
}

.dl-type02__dd {
  width: calc(100% - 160px);
  font-weight: 500;
  padding: 18px 0;
}

.dl-type02__dd:nth-of-type(n+2) {
  border-top: 1px solid #E4E3E0;
}

@media screen and (max-width: 600px) {
  .dl-type02 {
    border-radius: 15px;
  }

  .dl-type02__dt {
    width: 100px;
  }

  .dl-type02__dd {
    width: calc(100% - 100px);
  }
}

.dl-type03 {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}

.dl-type03__dt {
  width: 120px;
  padding: 18px 5px;
  font-weight: bold;
  color: #14DA23;
}

.dl-type03__dt:nth-of-type(n+2) {
  border-top: 1px solid #E4E3E0;
}

.dl-type03__dd {
  width: calc(100% - 120px);
  font-weight: 500;
  padding: 18px 0;
}

.dl-type03__dd:nth-of-type(n+2) {
  border-top: 1px solid #E4E3E0;
}

@media screen and (max-width: 600px) {
  .dl-type03__dt {
    width: 100px;
  }

  .dl-type03__dd {
    width: calc(100% - 100px);
  }
}

/***************************

object/component/_button.scss

***************************/
.btn-type01 {
  border: 1px dashed #14DA23;
  outline: 3px solid #F9FF02;
  border-radius: 9999px;
  background: #F9FF02;
  padding: 10px 45px;
  color: #14DA23;
  min-width: 280px;
  min-height: 64px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}

.btn-type01:after {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/common/btn_type01_arrow.png) no-repeat center/contain;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}

.btn-type01.--back {
  padding-left: 65px;
}

.btn-type01.--back:after {
  left: 15px;
  right: auto;
  rotate: 180deg;
}

.btn-type02 {
  display: inline-flex;
  align-items: center;
  background: #14DA23;
  min-height: 48px;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  padding: 10px 50px 10px 30px;
  border-radius: 9999px;
  position: relative;
  margin: 10px 10px 0 0;
}

.btn-type02:after {
  content: "";
  width: 22px;
  aspect-ratio: 1/1;
  background: url(../img/common/btn_type02_arrow.png) no-repeat center/contain;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}

.btn-white {
  position: relative;
  padding-right: 25px;
  display: inline-block;
}

.btn-white:after {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../img/common/btn_white_arrow.png) no-repeat center/contain;
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
}

.btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: 365px;
  min-height: 60px;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.btn-tel__prefix {
  color: #14DA23;
  font-size: 1.8rem;
  letter-spacing: 1px;
  padding-top: 1px;
}

/***************************

object/component/_form.scss

***************************/
[type=text],
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.3rem;
  padding: 12px 15px;
  border-radius: 3px;
}

@media screen and (min-width: 451px) {

  [type=text],
  textarea {
    font-size: 1.6rem;
  }
}

[type=text]:focus-visible,
textarea:focus-visible {
  outline-color: #3351BF;
}

*::placeholder {
  color: #ddd;
  font-size: 1.5rem;
  font-weight: 500;
}

.wpcf7-list-item {
  padding: 10px 0;
  display: inline-block;
  margin-left: 0 !important;
}

.wpcf7-list-item input[type=radio],
.wpcf7-list-item input[type=checkbox] {
  display: none;
}

.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 25px;
  cursor: pointer;
  margin-right: 30px;
  line-height: 1.4;
  font-size: 1.5rem;
  display: inline-block;
}

.wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transition: all 0.3s;
}

.wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  border-radius: 50%;
}

.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 4px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: #3351BF;
  opacity: 0;
  transform: scale(0);
  z-index: 1;
  border-radius: 50%;
}

.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border-bottom: 4px solid #3351BF;
  border-right: 4px solid #3351BF;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  z-index: 1;
}

.wpcf7-list-item input:checked+.wpcf7-list-item-label::before {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

/***************************

object/component/_table.scss

***************************/
.table-type01 {
  border: none;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ddd;
  border-bottom: none;
  border-right: none;
  border-radius: 12px;
}

.table-type01 th,
.table-type01 td {
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 15px 25px;
  font-weight: 500;
}

.table-type01 thead th {
  background: #14DA23;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
}

.table-type01 tbody th {
  background: #14DA23;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
}

.table-type01 tbody th.--gray {
  background: #F8F8F8;
  color: inherit;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .table-type01 thead th {
    padding: 15px;
  }
}

.table-radius-top-left {
  border-top-left-radius: 12px;
}

.table-radius-top-right {
  border-top-right-radius: 12px;
}

.table-radius-bottom-left {
  border-bottom-left-radius: 12px;
}

.table-radius-bottom-right {
  border-bottom-right-radius: 12px;
}

.table-scrollWrap {
  overflow: auto;
}

/***************************

object/object/project/_home.scss

***************************/
.top-mv {
  padding: 75px 0 65px;
  overflow: hidden;
}

.top-mv__hdg {
  text-align: center;
  margin-bottom: -35px;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}

.top-mv__image {
  padding: 0 15px;
  max-width: 1430px;
  margin: 0 auto;
  position: relative;
  position: relative;
}

.top-mv__image>img {
  border-radius: min(280px, 20vw) min(280px, 20vw) 30px 30px;
}

.top-mv__image__deco01 {
  position: absolute;
  left: 0;
  top: 70px;
}

.top-mv__image__deco02 {
  position: absolute;
  top: 40px;
  right: -30px;
}
@media screen and (max-width: 768px){
  .top-mv__image__deco02 {
  position: absolute;
  top: 0;
}
}

.top-mv__image__deco03 {
  position: absolute;
  bottom: -30px;
  left: 100px;
}

.top-mv__snsLink {
  width: 206px;
  aspect-ratio: 1/1;
  border: 5px solid #fff;
  background: #FFFF5E;
  padding: 6px;
  border-radius: 50%;
  display: block;
  position: absolute;
  bottom: -50px;
  right: -45px;
  text-align: center;
  font-size: 2rem;
  color: #F540FF;
  font-weight: bold;
  line-height: 1.4;
}

.top-mv__snsLink i {
  font-size: 2.8rem;
  margin-top: 5px;
}

.top-mv__snsLink__inner {
  border: 1px dashed #F540FF;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1150px) {
  .top-mv {
    padding-top: 140px;
  }
}

@media screen and (max-width: 768px) {
  .top-mv {
    padding-top: 100px;
  }

  .top-mv__snsLink {
    right: 0;
    border-width: 2px;
    padding: 2px;
    width: 120px;
    font-size: 1.4rem;
  }

  .top-mv__snsLink i {
    font-size: 2rem;
  }

  .top-mv__image__deco01 {
    left: 0;
    top: 0;
  }

  .top-mv__image__deco03 {
    bottom: -30px;
    left: 30px;
  }
}

.top-news {
  padding: 60px 0 0;
  background: url(../img/top/news_deco_bg.png) no-repeat top;
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 30px 0 0;
  }
}

.top-news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 25px;
}

@media screen and (min-width: 769px) {
  .top-news__list:has(.top-news__list-item:nth-child(4)) {
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .top-news__list {
    justify-content: center;
  }
}

@media screen and (max-width: 450px) {
  .top-news__list {
    gap: 25px 10px;
  }
}

.top-news__list-item {
  width: calc((100% - 75px) / 4);
  max-width: 280px;
  line-height: 1.8;
}

.top-news__list-item a {
  display: block;
  position: relative;
}

.top-news__list-item p {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top-news__list-item {
    width: calc(50% - 13px);
  }
}

@media screen and (max-width: 450px) {
  .top-news__list-item {
    width: calc(50% - 5px);
  }
}

.top-news__list-new {
  width: 80px;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  background: #FFFF5E;
  padding: 3px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -20px;
  left: -20px;
  text-align: center;
  font-size: 1.3rem;
  color: #14DA23;
  font-weight: bold;
  line-height: 1.4;
  font-family: "Rubik", sans-serif;
}

@media screen and (max-width: 450px) {
  .top-news__list-new {
    width: 50px;
    font-size: 1.1rem;
    left: -10px;
  }
}

.top-news__list-new__inner {
  border: 1px dashed #14DA23;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-news__list-image img {
  border-radius: 15px 30px 15px 30px;
}

.top-news__list-image:has(+ .top-news__list-date) {
  margin-bottom: -20px;
}

.top-news__list-date {
  display: inline-block;
  width: fit-content;
  background: #F7F7F2;
  border-radius: 9999px;
  padding: 8px 12px;
  font-size: 1.1rem;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.top-news__list-hdg {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 5px;
}

.top-message {
  padding-top: 100px;
}

.top-message__inner {
  background: url(../img/top/message_bg.jpg) no-repeat bottom/cover;
  border-radius: 35px;
  max-width: 1360px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 130px min(150px, 10vw) 140px;
  color: #fff;
  display: grid;
  grid-template-areas: "item1 item2""item1 item3";
  gap: 75px 20px;
  grid-template-rows: max-content 1fr;
  grid-template-columns: max-content 1fr;
  position: relative;
}

.top-message__inner:before {
  content: "";
  width: 138px;
  aspect-ratio: 138/86;
  background: url(../img/top/message_deco01.png) no-repeat center/contain;
  position: absolute;
  top: -65px;
  left: 100px;
}

.top-message__inner:after {
  content: "";
  width: 271px;
  aspect-ratio: 271/81;
  background: url(../img/top/message_deco02.png) no-repeat center/contain;
  position: absolute;
  top: -65px;
  right: 55px;
}

@media screen and (max-width: 768px) {
  .top-message__inner:before {
    width: 80px;
    top: -37px;
    left: 5px;
  }

  .top-message__inner:after {
    width: 180px;
    top: -37px;
    right: 15px;
  }
}

.top-message__hdgWrap {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1.4;
  grid-area: item2;
}

.top-message__hdgSub {
  color: #fff;
  font-weight: 900;
  margin-left: 10px;
}

.top-message__hdg {
  font-size: min(7rem, 14vw);
  font-weight: 900;
  color: #F8FF00;
}

.top-message__hdg-inner {
  display: block;
}

.top-message__hdg-inner.--white {
  color: #fff;
}

.top-message__text {
  grid-area: item1;
  font-size: 1.7rem;
  font-weight: bold;
}

.top-message__image {
  grid-area: item3;
  position: relative;
}

.top-message__image img {
  position: absolute;
  top: 0;
  /* left: -90px; */
  left: -60px;
  width: 119.21%;
  max-width: 119.21%;
}

.top-message__text-hdg {
  font-family: "Rubik", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}

.top-message__text-hdg:before {
  content: "";
  width: 6px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}

@media screen and (max-width: 980px) {
  .top-message__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px 30px;
  }

  .top-message__image {
    width: calc(100% + 35px);
  }

  .top-message__image img {
    position: static;
    width: 100%;
  }
}

.top-decoSlide {
  overflow: hidden;
  padding-top: 120px;
  background: url(../img/top/slider_deco_bg.png) repeat-x center;
}

@media screen and (max-width: 768px) {
  .top-decoSlide {
    background-position: top 60px right -37px;
  }
}

.top-decoSlide__swiper-slide {
  max-width: 320px;
}

.top-decoSlide__swiper-slide.--even {
  padding-top: 120px;
}

.top-decoSlide__swiper-slide.--odd {
  padding-bottom: 120px;
}

.top-decoSlide__swiper-slide img {
  border-radius: 28px;
}

@media screen and (max-width: 768px) {
  .top-decoSlide__swiper-slide {
    max-width: 240px;
  }

  .top-decoSlide__swiper-slide img {
    border-radius: 18px;
  }

  .top-decoSlide__swiper-slide.--even {
    padding-top: 80px;
  }

  .top-decoSlide__swiper-slide.--odd {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .top-decoSlide__swiper-slide {
    max-width: 200px;
  }

  .top-decoSlide__swiper-slide img {
    border-radius: 14px;
  }

  .top-decoSlide__swiper-slide.--even {
    padding-top: 60px;
  }

  .top-decoSlide__swiper-slide.--odd {
    padding-bottom: 60px;
  }
}

.top-decoSlide__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.top-education {
  padding: 100px 0 0;
  background: url(../img/top/education_deco_bg.png) no-repeat top 120px left 53%;
}

.top-education__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .top-education__list {
    justify-content: center;
  }
}

@media screen and (max-width: 450px) {
  .top-education__list {
    gap: 20px 10px;
  }
}

.top-education__list-item {
  width: calc((100% - 50px) / 3);
}

.top-education__list-item a {
  display: block;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.top-education__list-item a:hover .top-education__list-image img {
  scale: 1.1;
}

.top-education__list-item.--small {
  width: calc(25% - 15px);
}

.top-education__list-item.--small .top-education__list-image {
  border-radius: 20px;
}

.top-education__list-item.--small .top-education__list-hdg {
  /* font-size: min(1.8rem, 1.45vw); */
  font-size: min(1.6rem, 1.45vw);
  padding: 10px 60px 10px 25px;
}

@media screen and (max-width: 768px) {
  .top-education__list-item {
    width: 100%;
  }

  .top-education__list-item.--small {
    width: calc(50% - 10px);
  }

  .top-education__list-item.--small .top-education__list-hdg {
    /* font-size: 1.3rem; */
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 450px) {
  .top-education__list-item.--small {
    width: calc(50% - 10px);
  }

  .top-education__list-item.--small .top-education__list-hdg {
    padding: 10px 45px 10px 25px;
  }
}

.top-education__list-image {
  border-radius: 30px;
  overflow: hidden;
}

.top-education__list-image img {
  transition: 0.3s;
}

.top-education__list-hdg {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top-right-radius: 20px;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 15px 60px 15px 25px;
}

.top-education__list-hdg:before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  background: #14DA23;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 4px);
  left: 7px;
}

.top-education__list-hdg:after {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/common/btn_type01_arrow.png) no-repeat center/contain;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
}

@media screen and (max-width: 450px) {
  .top-education__list-hdg {
    font-size: 1.8rem;
    padding: 15px 45px 15px 25px;
  }

  .top-education__list-hdg:after {
    width: 16px;
    top: calc(50% - 8px);
  }
}

.top-other {
  padding: 120px 0 0;
  background: url(../img/top/other_deco01.png) no-repeat top 85px right calc(50% + 650px), url(../img/top/other_deco02.png) no-repeat top 145px left calc(50% + 690px);
}

.top-other__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 20px;
  max-width: 1250px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.top-other__inner-box {
  text-align: center;
  width: fit-content;
  max-width: calc(50% - 10px);
  font-weight: 500;
}

.top-other__inner-box__image {
  margin-bottom: 15px;
}

.top-other__inner-box__image img {
  border-radius: 9999px;
}

@media screen and (max-width: 600px) {
  .top-other {
    background-position: top 30px left 10px, top 85px right 5px;
  }

  .top-other__inner {
    justify-content: center;
  }

  .top-other__inner-box {
    max-width: 100%;
  }
}

/***************************

object/object/project/_about.scss

***************************/
.about-box01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 40px;
}

.about-box01__text {
  width: 55.7%;
}

.about-box01__image {
  width: 40.6%;
  position: relative;
}

.about-box01__image>img {
  border-radius: 15px 25px 15px 25px;
}

.about-box01+.about-box01 {
  margin-top: min(60px, 8vw);
}

.about-box01__image__deco01,
.about-box01__image__deco02,
.about-box01__image__deco03,
.about-box01__image__deco04 {
  position: absolute;
  z-index: 1;
}

.about-box01__image__deco01 {
  width: min(75px, 6.52vw);
  aspect-ratio: 75/21;
  bottom: min(35px, 3.04vw);
  left: max(-40px, -3.47vw);
}

.about-box01__image__deco02 {
  width: min(128px, 11.13vw);
  aspect-ratio: 128/28;
  top: min(77px, 6.69vw);
  right: max(-29px, -2.52vw);
}

.about-box01__image__deco03 {
  width: min(69px, 6vw);
  aspect-ratio: 69/61;
  bottom: max(-22px, -1.91vw);
  right: min(40px, 3.47vw);
}

.about-box01__image__deco04 {
  width: min(91px, 7.91vw);
  aspect-ratio: 91/62;
  bottom: max(-18px, -1.56vw);
  left: min(35px, 3.04vw);
}

@media screen and (max-width: 768px) {
  .about-box01 {
    flex-wrap: wrap;
  }

  .about-box01__text {
    width: 100%;
  }

  .about-box01__image {
    width: fit-content;
    margin: 0 auto;
  }

  .about-box01__image__deco01 {
    width: min(75px, 16.3vw);
    bottom: min(35px, 7.6vw);
    left: max(-40px, -2.82vw);
  }

  .about-box01__image__deco02 {
    width: min(128px, 27.82vw);
    top: min(77px, 16.73vw);
    right: max(-29px, -2.82vw);
  }

  .about-box01__image__deco03 {
    width: min(69px, 15vw);
    bottom: max(-22px, -4.78vw);
    right: min(40px, 8.69vw);
  }

  .about-box01__image__deco04 {
    width: min(91px, 19.78vw);
    bottom: max(-18px, -3.91vw);
    left: min(35px, 7.6vw);
  }
}

.about-facility {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
}

.about-facility__item {
  width: calc(50% - 15px);
}

.about-facility__item.--small {
  width: calc((100% - 40px) / 3);
}

.about-facility__image {
  position: relative;
}

.about-facility__image>img {
  border-radius: 15px 25px 15px 25px;
}

.about-facility__image:after {
  content: "";
  background: url(../img/about/ico_lupe@2x.png) no-repeat center/17px 17px;
  background-color: #14DA23;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 14px 0 14px 0;
  z-index: 1;
}

.about-facility__hdg {
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about-facility {
    gap: 15px 0;
  }

  .about-facility__item {
    width: calc(50% - 5px);
  }

  .about-facility__item.--small {
    width: calc((100% - 20px) / 3);
  }
}

@media screen and (max-width: 600px) {
  .about-facility__image>img {
    border-radius: 5px 10px 5px 10px;
  }

  .about-facility__image:after {
    content: "";
    background-size: 13px 13px;
    width: 30px;
    border-radius: 4px 0 4px 0;
  }

  .about-facility__item.--small {
    width: calc(50% - 5px);
  }
}

/***************************

object/object/project/_message.scss

***************************/
/***************************

object/object/project/_education.scss

***************************/
.education-life__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.education-life__item:nth-last-of-type(n+2) {
  padding-bottom: 40px;
}

.education-life__item:nth-last-of-type(n+2):after {
  content: "";
  width: 4px;
  height: 100%;
  background: url(../img/education/time_dot.png) repeat-y top;
  position: absolute;
  top: 0;
  left: 38px;
}

.education-life__text {
  width: calc(100% - 95px);
}

.education-life__time {
  width: 80px;
  position: relative;
  z-index: 1;
}

.education-life__time__watch {
  border: 4px solid #14DA23;
  border-radius: 50%;
  background: radial-gradient(#14DA23 4px, #fff 4px, #fff calc(100% - 18px), #D5F8D7 calc(100% - 18px));
  width: 70px;
  aspect-ratio: 1/1;
  position: relative;
  margin: 0 auto -8px;
}

.education-life__time__watch:before,
.education-life__time__watch:after {
  content: "";
  width: 4px;
  background: #14DA23;
  border-radius: 99px;
  position: absolute;
  left: calc(50% - 2px);
  transform-origin: bottom;
}

.education-life__time__watch:before {
  height: 16px;
  top: 15px;
}

.education-life__time__watch:after {
  height: 21px;
  top: 10px;
}

.education-life__time__watch.--0750:before {
  rotate: 232.5deg;
}

.education-life__time__watch.--0750::after {
  rotate: -30deg;
}

.education-life__time__watch.--0745:before {
  rotate: 232.5deg;
}

.education-life__time__watch.--0745:after {
  rotate: 270deg;
}

.education-life__time__watch.--0815:before {
  rotate: 247.5deg;
}

.education-life__time__watch.--0815:after {
  rotate: 90deg;
}

.education-life__time__watch.--0900:before {
  rotate: 270deg;
}

.education-life__time__watch.--0900:after {
  rotate: 0deg;
}

.education-life__time__watch.--1000:before {
  rotate: 300deg;
}

.education-life__time__watch.--1000:after {
  rotate: 0deg;
}

.education-life__time__watch.--1145:before {
  rotate: 352.5deg;
}

.education-life__time__watch.--1145:after {
  rotate: 270deg;
}

.education-life__time__watch.--1300:before {
  rotate: 30deg;
}

.education-life__time__watch.--1300:after {
  rotate: 0deg;
}

.education-life__time__watch.--1330:before {
  rotate: 45deg;
}

.education-life__time__watch.--1330:after {
  rotate: 180deg;
}

.education-life__time__watch.--1400:before {
  rotate: 60deg;
}

.education-life__time__watch.--1400:after {
  rotate: 0deg;
}

.education-life__time__watch.--1800:before {
  rotate: 180deg;
}

.education-life__time__watch.--1800:after {
  rotate: 0deg;
}

.education-life__time__num {
  background: #14DA23;
  color: #fff;
  text-align: center;
  position: relative;
  font-family: "Rubik", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 32px;
  border-radius: 999px;
}

.education-lifeImage {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 20px;
}

.education-lifeImage__item img {
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .education-lifeImage__item {
    width: calc(50% - 10px);
  }

  .education-lifeImage__item img {
    border-radius: 15px;
  }
}

@media screen and (max-width: 450px) {
  .education-lifeImage {
    gap: 10px;
  }

  .education-lifeImage__item {
    width: calc(50% - 5px);
  }

  .education-lifeImage__item img {
    border-radius: 10px;
  }
}

.education-lifeWrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.education-lifeWrap .education-life {
  flex: 1 1 580px;
}

.education-lifeWrap .education-lifeImage {
  flex: 1 1 430px;
}

@media screen and (max-width: 768px) {
  .education-lifeWrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.education-season {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  background: #FA88C4;
  padding: 45px;
  border-radius: 35px;
  position: relative;
}

.education-season+.education-season {
  margin-top: 12px;
}

.education-season.--spring {
  background: #FA88C4;
}

.education-season.--spring .education-season__hdgWrap {
  background: url(../img/education/bg_spring.jpg) no-repeat center/cover;
}

.education-season.--spring .education-season__hdgWrap:before {
  content: "";
  width: 46px;
  height: 48px;
  background: url(../img/education/deco_spring.png) no-repeat center/contain;
  position: absolute;
  bottom: -6px;
  right: 0;
}

.education-season.--summer {
  background: #64BC3F;
}

.education-season.--summer .education-season__hdgWrap {
  background: url(../img/education/bg_summer.jpg) no-repeat center/cover;
}

.education-season.--summer .education-season__hdgWrap:before {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../img/education/deco_summer.png) no-repeat center/contain;
  position: absolute;
  bottom: 3px;
  right: -10px;
}

.education-season.--autum {
  background: #FD8B00;
}

.education-season.--autum .education-season__hdgWrap {
  background: url(../img/education/bg_autum.jpg) no-repeat center/cover;
}

.education-season.--autum .education-season__hdgWrap:before {
  content: "";
  width: 46px;
  height: 40px;
  background: url(../img/education/deco_autum.png) no-repeat center/contain;
  position: absolute;
  bottom: 12px;
  right: 4px;
}

.education-season.--winter {
  background: #048AD3;
}

.education-season.--winter .education-season__hdgWrap {
  background: url(../img/education/bg_winter.jpg) no-repeat center/cover;
}

.education-season.--winter .education-season__hdgWrap:before {
  content: "";
  width: 49px;
  height: 63px;
  background: url(../img/education/deco_winter.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

.education-season__hdgWrap {
  width: 140px;
  aspect-ratio: 1/1;
  background: url(../img/education/bg_spring.jpg) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  grid-column: 1/-1;
  margin: 0 auto;
  position: relative;
}

.education-season__hdg {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}

.education-season__hdgSub {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

.education-season__text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.education-season__month {
  color: #fff;
  border-bottom: 2px solid #fff;
  line-height: 1.6;
  font-size: 2.2rem;
  font-weight: bold;
  width: fit-content;
  padding-bottom: 2px;
  margin-bottom: 12px;
  flex: 0 0 auto;
}

.education-season__list__item {
  padding-left: 17px;
  position: relative;
  line-height: 1.6;
  color: #fff;
}

.education-season__list__item:before {
  content: "";
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 6px;
}

@media screen and (min-width: 769px) {
  .education-season {
    display: flex;
    align-items: flex-start;
    padding: 45px 20px 45px 210px;
    min-height: 230px;
  }

  .education-season__hdgWrap {
    position: absolute;
    left: 45px;
    top: 45px;
  }
}

@media screen and (max-width: 1100px) {
  .education-season {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 450px) {
  .education-season {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    padding: 45px 20px;
  }
}

.education-time {
  width: max-content;
}

@media screen and (min-width: 769px) {
  .education-time {
    width: 100%;
  }

  .education-time th {
    width: 180px;
  }
}

.about-box01 .education-lunch__image__deco01,
.about-box01 .education-lunch__image__deco02,
.about-box01 .education-lunch__image__deco03 {
  position: absolute;
  z-index: 1;
}

.about-box01 .education-lunch__image__deco01 {
  width: min(56px, 4.95vw);
  aspect-ratio: 56/46;
  top: max(-25px, -2.21vw);
  left: min(50px, 4.42vw);
}

.about-box01 .education-lunch__image__deco02 {
  width: min(87px, 7.69vw);
  aspect-ratio: 87/70;
  bottom: max(-27px, -2.38vw);
  left: min(110px, 9.73vw);
}

.about-box01 .education-lunch__image__deco03 {
  width: min(88px, 7.78vw);
  aspect-ratio: 88/82;
  bottom: max(-30px, -2.65vw);
  right: min(45px, 3.98vw);
}

@media screen and (max-width: 768px) {
  .about-box01 .education-lunch__image__deco01 {
    width: min(56px, 12.17vw);
    top: max(-20px, -4.34vw);
    left: min(50px, 10.86vw);
  }

  .about-box01 .education-lunch__image__deco02 {
    width: min(87px, 18.91vw);
    bottom: max(-27px, -5.86vw);
    left: min(110px, 23.91vw);
  }

  .about-box01 .education-lunch__image__deco03 {
    width: min(88px, 19.13vw);
    bottom: max(-30px, -6.52vw);
    right: min(45px, 9.78vw);
  }
}

.education-activity {
  background: #F9F9F9;
  border-radius: min(30px, 2.6vw);
  padding: min(40px, 4vw) min(55px, 4vw);
}

.education-activity+.education-activity {
  margin-top: 20px;
}

.education-activity__box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  justify-content: space-between;
}

.education-activity__box__text {
  width: 60%;
}

.education-activity__box__image {
  width: 35.8%;
}

.education-activity__box__image>img {
  border-radius: 15px 25px 15px 25px;
}

@media screen and (min-width: 769px) {
  .education-activity__box:has(+ .education-activity__instructor) .education-activity__box__text {
    padding-bottom: 30px;
  }
}

.education-activity__instructor {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  margin-top: 20px;
  color: #8B7B73;
  font-size: 1.3rem;
  font-weight: bold;
}

.education-activity__instructor__flag {
  width: 90px;
  aspect-ratio: 90/74;
  background: url(../img/education/activity_flag.png) no-repeat center/contain;
  color: #fff;
  padding: 14px 0 0 32px;
  position: absolute;
  left: -15px;
  top: -40px;
}

.education-activity__instructor__name {
  color: #14DA23;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 5px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .education-activity__box__text {
    width: 100%;
  }

  .education-activity__box__image {
    width: 100%;
    text-align: center;
  }

  .education-activity__instructor {
    margin-top: 50px;
  }
}

/***************************

object/object/project/_guide.scss

***************************/
/***************************

object/object/project/_access.scss

***************************/
.access-map {
  overflow: hidden;
  border-radius: 20px;
  font-size: 0;
}

.access-trans__item {
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #8B7A72;
}

.access-trans__item:nth-of-type(n+2) {
  margin-top: 12px;
}

@media screen and (max-width: 450px) {
  .access-trans__item {
    padding: 25px 20px;
  }
}

.access-trans__hdg {
  font-size: 2rem;
  font-weight: bold;
  color: #14DA23;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}

.access-trans__hdg__ico {
  font-size: 0;
  padding-top: 4px;
}

/***************************

object/object/project/_news.scss

***************************/
.newsDetail-thumb {
  margin-bottom: 30px;
}

.newsDetail-thumb img {
  border-radius: min(25px, 2.35vw) min(50px, 4.71vw) min(25px, 2.35vw) min(50px, 4.71vw);
}

.newsDetail-contents p:nth-of-type(n+2) {
  margin-top: 15px;
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

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

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

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

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

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 451px) {
  .sp {
    display: none;
  }
}

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

/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--underline {
  text-decoration: underline;
}

.link--underline:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

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

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

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

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

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

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

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

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

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--white {
  color: #fff;
}

.fc--black {
  color: #111111;
}

.fc--red {
  color: red;
}

.fc--green {
  color: #14DA23;
}

.txtdeco-none {
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.f-zen-maru-gothic {
  font-family: "Zen Maru Gothic", sans-serif;
}

.f-rubik {
  font-family: "Rubik", sans-serif;
}

.f-manrope {
  font-family: "Manrope", sans-serif;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

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

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/*# sourceMappingURL=style.css.map */
/* 260625 */

@media screen and (min-width: 769px) {
  .ol-type01__item:before {
    top: 50%;
    transform: translateY(-50%);
  }

  .ol-type01__item__hdg {
    width: 100%;
    max-width: 160px;
  }

  .table-type01 th {
    padding: 15px 13px;
  }

  .dl-type01__dt {
    padding: 15px 8px;
  }
}

.bd_green {
  color: #14DA23;
  text-decoration: underline;
}

.about-facility__hdg p {
  font-weight: 400;
}

.dl-type02__dt span {
  font-size: 20px;
}

.text_red {
  display: inline;
  padding: 0 4px 2px 4px;
  font-weight: bold;
  background: linear-gradient(transparent 55%, rgba(255, 69, 37, 0.3) 0%);
}

/* 260706 */
.about-box01__image.--type02 {
  width: 100%;
}

.about-box01__image__deco05 {
  text-align: center;
  margin-top: 10px;
}

.about-box01__text {
  width: 63.7%;
}

@media screen and (max-width: 768px) {
  .about-box01__text {
    width: 100%;
  }
}

.bd_link {
  text-decoration: underline;
}

.hdg-type03.bd_none {
  text-decoration: none;
}

.about-facility__hdg p {
  text-align: left;
}

.about-box01__image__deco01 {
  width: min(75px, 6.52vw);
  aspect-ratio: 75/21;
  /* bottom: min(35px, 3.04vw); */
  bottom: min(190px, 14.04vw);
  left: max(-40px, -3.47vw);
}

.about-box01__image__deco02 {
  width: min(128px, 11.13vw);
  aspect-ratio: 128/28;
  top: min(77px, 6.69vw);
  right: max(-29px, -2.52vw);
}

.about-box01__image__deco03 {
  width: min(69px, 6vw);
  aspect-ratio: 69/61;
  bottom: max(-22px, -1.91vw);
  /* right: min(40px, 3.47vw); */
  right: min(287px, 21.47vw);
}

@media screen and (max-width: 768px) {
  .about-box01__image__deco01 {
    width: min(75px, 16.3vw);
    /* bottom: min(35px, 7.6vw); */
    bottom: min(179px,46.6vw);
    left: max(-40px, -2.82vw);
  }

  .about-box01__image__deco02 {
    width: min(128px, 27.82vw);
    top: min(77px, 16.73vw);
    right: max(-29px, -2.82vw);
   
  }

  .about-box01__image__deco03 {
    width: min(69px, 15vw);
    bottom: max(-22px, -4.78vw);
    /* right: min(40px, 8.69vw); */
    right: min(255px,73.69vw);
  }
}

.list-type01__item.disc_none{
  padding-left: 0;
}
.list-type01__item.disc_none::before{
  display: none;
}

/* 260716 */
.archive-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.archive-wrap select{
  border: none;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
  max-width: 200px;
}

select, option{
  font-family: "Zen Maru Gothic", sans-serif;
}