@charset "UTF-8";
/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
}
@media (min-width: 768px) {
  .l-header {
    position: relative;
    padding: 0 40px;
    background: url(../images/header_shadow.png) left top repeat-x;
    border-bottom: 1px solid #cec5c4;
  }
}
.l-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: url(../images/border.gif) top left repeat;
  background-size: auto;
}
@media screen and (min-width: 768px) {
  .l-header::before {
    display: none;
  }
}
.l-header__inner {
  padding: 12px 10px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 9px 0 0;
    align-items: flex-end;
    width: 1000px;
  }
}
.l-header__branding-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  translate: 10px 0;
}
@media (min-width: 768px) {
  .l-header__branding-wrapper {
    width: 400px;
    translate: 0 0;
  }
}
.l-header__description {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__description {
    display: block;
    margin: 1px 0 37px 5px;
    font-size: 12px;
    font-family: "ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    white-space: nowrap;
    color: #777;
  }
}
.l-header__logo {
  margin: 8px 0 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .l-header__logo {
    margin: 0;
  }
}
.l-header__logo img {
  width: 234px;
}
@media screen and (min-width: 768px) {
  .l-header__logo img {
    width: auto;
    margin: 0 0 24px 0;
  }
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-header__right {
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
  }
}
.l-header__app-banner {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__app-banner {
    display: block;
    margin-right: 3px;
  }
}
.l-header__app-banner img {
  display: block;
  width: 255px;
  height: auto;
}
.l-header__nav {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #c4deff;
  z-index: 90;
  overflow-y: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header__nav.is-open {
  transform: translateY(100vh);
}
@media (min-width: 768px) {
  .l-header__nav.is-open {
    transform: translateY(0%);
    transition: none;
  }
}
.l-header__nav.is-open .l-header__menu.l-header__menu--sp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .l-header__nav.is-open .l-header__menu.l-header__menu--sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: block;
    position: static;
    width: 600px;
    height: auto;
    background-color: transparent;
    padding-top: 0;
    overflow-y: visible;
  }
  .l-header__nav.is-open {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}
.l-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__menu--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__menu--pc {
    display: flex;
    gap: 1px;
  }
}
.l-header__menu--sp {
  display: flex;
  flex-direction: column;
  margin: 40px 16px 0 16px;
  border: 1px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
  .l-header__menu--sp {
    display: none;
  }
}
.l-header__menu--sp .l-header__menu-item {
  width: 100%;
}
.l-header__menu--sp .l-header__menu-item.js-drawer-toggle {
  position: absolute;
  top: 7px;
  right: 4px;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: auto;
  text-align: center;
}
.l-header__menu--sp .l-header__menu-item.js-drawer-toggle .text-close {
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 36px;
  color: #444;
  line-height: 0.7;
  font-weight: 400;
  text-align: center;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.l-header__menu--sp .l-header__menu-item + .l-header__menu-item {
  border-top: 1px solid #e5e5e5;
}
.l-header__menu--sp .l-header__menu-item a {
  display: block;
  padding: 14px 20px;
  font-size: 1.6rem;
  color: #333;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}
.l-header__menu--sp .l-header__menu-item a:hover {
  color: #fff;
  background-color: #e50202;
}
.l-header__menu--sp .l-header__menu-item a.is-active {
  color: #fff;
  background-color: #e50202;
}
.l-header__menu-item a {
  display: block;
}
.l-header__menu-item a .l-header__menu-img-wrapper {
  position: relative;
  width: 100%;
  display: flex;
}
.l-header__menu-item a .l-header__menu-img-wrapper img {
  display: block;
  width: auto;
  height: auto;
  transition: opacity 0.2s;
  max-height: 40px;
}
.l-header__menu-item a .l-header__menu-img-wrapper .img-active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.l-header__menu-item a:hover .img-normal {
  opacity: 0;
}
.l-header__menu-item a:hover .img-active {
  opacity: 1;
}
.l-header__menu-item a.is-active .img-normal {
  opacity: 0;
}
.l-header__menu-item a.is-active .img-active {
  opacity: 1;
}
.l-header__menu-btn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 19px;
  height: 23px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-header__menu-btn {
    display: none;
  }
}
.l-header__menu-btn .img-menu {
  display: block;
  width: 100%;
  height: auto;
}
.l-header__menu-btn[aria-expanded=true] .img-menu {
  display: none;
}
.l-header__menu-btn[aria-expanded=true] .text-close {
  display: block;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/* Layout - Footer */
.l-footer {
  position: relative;
  width: 100%;
  background-color: #8ed9ff;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 0 30px;
    background-color: #f7f7f7;
  }
}
@media (min-width: 768px) {
  .l-footer::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: url(../images/border.gif) top left repeat;
  }
}
.l-footer__inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 20px 0 10px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
  }
}
.l-footer__content {
  width: 100%;
}
.l-footer__top {
  display: none;
}
@media (min-width: 768px) {
  .l-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.l-footer__banners {
  display: none;
}
@media (min-width: 768px) {
  .l-footer__banners {
    display: flex;
    gap: 40px;
    align-items: center;
  }
}
.l-footer__banner-link {
  display: block;
  width: 150px;
}
@media (min-width: 768px) {
  .l-footer__banner-link {
    width: auto;
  }
}
.l-footer__banner-image {
  width: 180px;
  height: auto;
  display: block;
}
.l-footer__schools {
  display: none;
}
@media (min-width: 768px) {
  .l-footer__schools {
    display: flex;
    flex-direction: column;
    gap: 19px;
    min-width: 320px;
  }
}
.l-footer__school-item {
  width: 100%;
}
.l-footer__school-row {
  display: flex;
  align-items: flex-start;
  gap: 2.73px;
}
.l-footer__school-tel {
  width: 351px;
  height: 30px;
  display: block;
}
.l-footer__map-link {
  display: block;
}
.l-footer__map-image {
  width: 61px;
  height: 30px;
  display: block;
}
.l-footer__tel-sp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .l-footer__tel-sp {
    display: none;
  }
}
.l-footer__tel-sp-image {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}
.l-footer__app {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 34px;
}
@media (min-width: 768px) {
  .l-footer__app {
    display: none;
  }
}
.l-footer__app-link {
  display: inline-block;
}
.l-footer__app-image {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}
.l-footer__banners-sp {
  display: flex;
  gap: 17px;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .l-footer__banners-sp {
    display: none;
  }
}
.l-footer__bottom {
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__bottom {
    padding-top: 1px;
  }
}
.l-footer__sitemap {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .l-footer__sitemap {
    padding: 0 0 24px 0;
  }
}
.l-footer__sitemap-link {
  display: block;
  padding: 10px;
  font-size: 14.4px;
  color: #666;
  text-decoration: none;
}
@media (min-width: 768px) {
  .l-footer__sitemap-link {
    padding: 0;
    font-size: 12.2px;
    line-height: 18px;
    color: #777;
    text-decoration: underline;
  }
}
.l-footer__sitemap-link:hover {
  text-decoration: none;
}
.l-footer__sitemap-link::before {
  content: "› ";
}
@media (min-width: 768px) {
  .l-footer__sitemap-link::before {
    content: "";
  }
}
.l-footer__copyright {
  padding: 16px 10px 0;
  border-top: 1px solid #d6d6d6;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    padding: 1px 0 0;
  }
}
.l-footer__copyright p {
  font-size: 11.5px;
  line-height: 24.48px;
  color: #888;
  margin: 0;
}
@media (min-width: 768px) {
  .l-footer__copyright p {
    font-size: 10.9px;
    line-height: 25.84px;
    color: #333;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-mv {
  width: 100%;
  margin-bottom: 30px;
  background-color: #f7f7f7;
  background-image: url(../images/slider_bg.png);
  background-repeat: repeat;
  background-size: 8px 8px;
}
@media (min-width: 768px) {
  .l-mv {
    margin-bottom: 0;
  }
}
@container (min-width: 981px) {
  .l-mv {
    padding: 20px 0;
  }
}
.l-mv__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  .l-mv__inner {
    width: 980px;
  }
}
@media (min-width: 768px) {
  .l-mv__slider-frame {
    width: 100%;
    background-color: transparent;
    border: 8px solid #fdfdfd;
    border-radius: 10px;
    background: #fff;
  }
}
@container (min-width: 981px) {
  .l-mv__slider-frame {
    box-shadow: 1px 0px 6px 0px rgb(147, 147, 147);
  }
}
.l-mv__slider {
  width: 100%;
  height: auto;
  aspect-ratio: 961/345;
  overflow: hidden;
  position: relative;
}
.l-mv__list {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .l-mv__list {
    transition: transform 1s ease-out;
  }
  .l-mv__list.is-no-transition {
    transition: none !important;
  }
}
@media screen and (max-width: 767px) {
  .l-mv__list {
    position: relative;
    transform: none !important;
  }
  .l-mv__list .l-mv__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    z-index: 1;
  }
  .l-mv__list .l-mv__item.is-active {
    opacity: 1;
    z-index: 2;
  }
}
.l-mv__item {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.l-mv__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.l-mv__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (min-width: 768px) {
  .l-mv__pagination {
    bottom: 30px;
  }
}
.l-mv__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #666;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  padding: 0;
}
@media (min-width: 768px) {
  .l-mv__dot {
    width: 12px;
    height: 12px;
  }
}
.l-mv__dot.is-active {
  background-color: #000;
}

.l-information {
  width: 100%;
  margin: 22px 0 30px;
}
@media (min-width: 768px) {
  .l-information {
    margin: 20px 0 30px;
  }
}
.l-information__header {
  width: 100%;
}
.l-information__title {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.l-information__title-link {
  display: block;
  width: 100%;
}
.l-information__title-link > img {
  border: 1px solid transparent;
}
.l-information__title-link:hover > img {
  border: 1px solid #999;
}
.l-information__title-image {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}
.l-information__body {
  width: 100%;
  padding: 10px 10px 0;
  border: 2px solid #9ddeff;
  border-top: none;
  border-radius: 0 0 10px 10px;
  position: relative;
  overflow: hidden;
  background-image: url("../images/logo_bg.png");
  background-repeat: no-repeat;
  background-position: 360px 20px;
}
@media (min-width: 768px) {
  .l-information__body {
    padding: 10px 12px 22px;
  }
}
.l-information__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.l-information__item {
  padding: 0 0 0 16px;
  border-bottom: none;
  position: relative;
}
@media (min-width: 768px) {
  .l-information__item {
    padding: 0 0 0 13px;
  }
}
.l-information__item:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .l-information__item:nth-child(n+5) {
    display: none;
  }
}
.l-information__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon_arrow.gif");
  background-size: contain;
  background-repeat: no-repeat;
}
.l-information__article {
  display: block;
}
.l-information__date {
  display: block;
  font-weight: 700;
  font-size: 11.7px;
  line-height: 20.74px;
  color: #444;
}
@media screen and (min-width: 768px) {
  .l-information__date {
    margin-bottom: 2px;
    font-size: 13.7px;
    line-height: 21.89px;
  }
}
.l-information__heading {
  margin: 0 0 4px 0;
  padding: 0;
  font-size: 14.3px;
  line-height: 20.74px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .l-information__heading {
    margin: 0 0 2px 0;
    font-size: 15px;
    line-height: 21.89px;
  }
}
.l-information__link {
  color: #0039d1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.l-information__link:hover {
  text-decoration: underline;
}
.l-information__new-icon {
  display: inline-block;
  width: 25px;
  height: 9px;
  margin-left: 5px;
  vertical-align: middle;
}
.l-information__excerpt {
  display: block;
  font-size: 11.664px;
  line-height: 12.8304px;
  color: #333;
  margin: 0;
  word-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .l-information__excerpt {
    font-size: 12.3px;
    line-height: 13.54px;
  }
}
.l-information__excerpt > a {
  text-decoration: underline;
}
.l-information__excerpt > a:hover {
  text-decoration: none;
}
.l-information__empty {
  font-size: 14px;
  color: #333;
  text-align: center;
  padding: 20px 0;
}

.l-about {
  width: 100%;
  margin: 32px 0 22px;
}
@media (min-width: 768px) {
  .l-about {
    margin: 20px 0 40px;
  }
}
.l-about__header {
  width: 100%;
  margin-bottom: 20px;
}
.l-about__title {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: center;
}
.l-about__title-image {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}
.l-about__intro {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 88.97px;
}
@media screen and (min-width: 768px) {
  .l-about__intro {
    align-items: flex-start;
    height: 174.6px;
    margin-bottom: 59.35px;
  }
}
.l-about__intro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: calc(55% - 20px);
}
@media screen and (min-width: 768px) {
  .l-about__intro-content {
    width: auto;
    gap: 25.85px;
  }
}
.l-about__intro-text {
  font-size: 13px;
  line-height: 24.48px;
  color: #333;
}
@media screen and (min-width: 768px) {
  .l-about__intro-text {
    font-size: 15.2px;
    line-height: 25.84px;
  }
}
.l-about__intro-text p {
  margin: 0;
}
.l-about__intro-button {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .l-about__intro-button {
    position: static;
  }
}
.l-about__btn {
  display: block;
}
.l-about__btn img {
  width: auto;
  height: 38px;
  display: block;
}
.l-about__intro-image {
  width: 45%;
}
@media screen and (min-width: 768px) {
  .l-about__intro-image {
    position: static;
  }
}
.l-about__intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.l-about__video-section {
  width: 100%;
  background-color: #fff;
}
@media (min-width: 768px) {
  .l-about__video-section {
    margin: -40px 0 0;
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 10px;
  }
}
@media (min-width: 768px) {
  .l-about__video-main {
    margin-bottom: 15px;
  }
}
.l-about__video-link {
  display: block;
}
.l-about__video-thumbnail {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid transparent;
}
.l-about__video-thumbnail:hover {
  border: 1px solid #999;
}
@media (min-width: 768px) {
  .l-about__video-thumbnail {
    margin-top: 27px;
  }
}
.l-about__video-caption {
  text-align: center;
  margin-top: 4px;
  font-size: 13px;
  line-height: 18.14px;
  color: #333;
}
@media screen and (min-width: 768px) {
  .l-about__video-caption {
    font-size: 15.2px;
    line-height: 21.28px;
  }
}
.l-about__video-caption p {
  margin: 0;
}
.l-about__video-description {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 24.48px;
  color: #333;
}
@media screen and (min-width: 768px) {
  .l-about__video-description {
    margin-bottom: 0;
    font-size: 15.2px;
    line-height: 25.84px;
  }
}
.l-about__video-description p {
  margin: 0;
}
.l-about__videos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .l-about__videos {
    flex-direction: row;
    gap: 30px;
    margin-bottom: 58px;
  }
}
.l-about__videos .l-about__video-thumbnail {
  margin-top: 0;
  aspect-ratio: 16/9.6;
  object-fit: cover;
  object-position: left top;
}
@media (min-width: 768px) {
  .l-about__videos .l-about__video-thumbnail {
    aspect-ratio: 16/9;
  }
}
.l-about__video-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-about__video-item {
    gap: 15px;
  }
}
.l-about__video-label {
  font-size: 14.4px;
  line-height: 24.48px;
  color: #444;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-about__video-label {
    font-size: 15.2px;
    line-height: 25.84px;
  }
}
.l-about__gallery {
  display: grid;
  gap: 33px;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .l-about__gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 10px;
    margin-bottom: 15px;
  }
}
.l-about__gallery-item {
  width: 100%;
  overflow: hidden;
}
.l-about__gallery-image {
  width: 100%;
  aspect-ratio: 4/3.14;
  object-fit: cover;
  object-position: left top;
  display: block;
}
@media (min-width: 768px) {
  .l-about__gallery-image {
    aspect-ratio: 4/3;
  }
}
.l-about__more {
  text-align: center;
}
.l-about__more-btn {
  display: inline-block;
}
.l-about__more-btn img {
  width: auto;
  height: 29px;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-about__more-btn img {
    height: 29px;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-sidebar {
    width: calc(33% - 30px);
    margin-bottom: 27px;
  }
}
.l-sidebar__item:not(:first-of-type) {
  width: 100%;
  margin-bottom: 20px;
  padding: 2px 8px 15px;
  background-color: #f4fcff;
  border: 2px solid #69bfe7;
  border-radius: 10px;
}
.l-sidebar__item:not(:first-of-type):last-child {
  margin-bottom: 0;
}
.l-sidebar__item:not(:first-of-type):nth-last-of-type(-n + 2) {
  padding: 0;
  background-color: transparent;
  border: none;
}
.l-sidebar__btn-program, .l-sidebar__btn-recruit, .l-sidebar__banner {
  display: block;
  width: 100%;
}
.l-sidebar__btn-program > img, .l-sidebar__btn-recruit > img, .l-sidebar__banner > img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 1px solid transparent;
}
.l-sidebar__btn-program:hover > img, .l-sidebar__btn-recruit:hover > img, .l-sidebar__banner:hover > img {
  border: 1px solid #999;
}
.l-sidebar__btn-recruit {
  width: min(100%, 223px);
  margin: 0 auto;
}
.l-sidebar__heading {
  margin-bottom: 15px;
}
.l-sidebar__heading img {
  width: 100%;
  height: auto;
}
.l-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-sidebar__list-item {
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
  font-size: 1.4rem;
}
.l-sidebar__list-item a {
  display: block;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.l-sidebar__list-item a:hover {
  color: #e50202;
}
.l-sidebar__more {
  text-align: right;
  margin-top: 5px;
  font-size: 1.2rem;
}
.l-sidebar__more a {
  color: #666;
  text-decoration: none;
}
.l-sidebar__more a:hover {
  text-decoration: underline;
}
.l-sidebar__banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-sidebar__program-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.l-sidebar__program-link-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  font-size: 1.52rem;
  font-weight: bold;
  color: #3333ff;
}
@media (min-width: 768px) {
  .l-sidebar__program-link-wrap {
    justify-content: space-between;
  }
}
.l-sidebar__program-link {
  display: block;
  margin-bottom: 3px;
  font-size: 1.44rem;
  font-weight: 700;
  color: #0039d1;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .l-sidebar__program-link {
    font-size: 1.52rem;
  }
}
.l-sidebar__program-link::before {
  content: "・";
  color: #33f;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;
}
.l-sidebar__program-link:hover {
  text-decoration: none;
}
.l-sidebar__program-desc {
  font-size: x-small;
  line-height: 2.448;
  color: #444;
  margin: 0;
}
@media (min-width: 768px) {
  .l-sidebar__program-desc {
    line-height: 2.585;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-main {
  padding-top: 86px;
}
@media (min-width: 768px) {
  .l-main {
    padding-top: 0;
  }
}

.l-section {
  width: 100%;
}
@media (min-width: 768px) {
  .l-section {
    background: url(../images/section_bg.png) left top repeat;
  }
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .l-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 40px;
    gap: 0;
    width: 1060px;
  }
}

.l-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-content {
    width: calc(67% - 30px);
  }
}
.l-content .cta-banner {
  display: block;
  margin-bottom: 20px;
}
.l-content .cta-banner > img {
  border: 1px solid transparent;
}
.l-content .cta-banner:hover > img {
  border: 1px solid #999;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-article {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .l-article {
    padding: 30px;
  }
}
.l-article__header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #69bfe7;
}
.l-article__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 768px) {
  .l-article__title {
    font-size: 24px;
  }
}
.l-article__title-link {
  color: #333;
  text-decoration: none;
}
.l-article__title-link:hover {
  text-decoration: underline;
}
.l-article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-article__date {
  font-size: 14px;
  font-weight: 700;
  color: #444;
}
.l-article__content {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l-article__content {
    font-size: 15px;
  }
}
.l-article__content p {
  margin-bottom: 1em;
}
.l-article__content p:last-child {
  margin-bottom: 0;
}
.l-article__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}
.l-article__content a {
  color: #0039d1;
  text-decoration: underline;
}
.l-article__content a:hover {
  text-decoration: none;
}
.l-article__nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #69bfe7;
}
@media screen and (min-width: 768px) {
  .l-article__nav {
    gap: 40px;
  }
}
.l-article__nav-prev, .l-article__nav-next {
  flex: 1;
}
.l-article__nav-prev a, .l-article__nav-next a {
  font-size: 14px;
  color: #0039d1;
  text-decoration: none;
  display: block;
}
.l-article__nav-prev a:hover, .l-article__nav-next a:hover {
  text-decoration: underline;
}
.l-article__nav-prev {
  text-align: left;
}
.l-article__nav-next {
  text-align: right;
}
.l-article__back {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 67.36px;
}
.l-article__back-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, #8bd1eb 0%, #42a1d2 100%);
  padding: 6px 39px 8px;
  border-radius: 7px;
  text-decoration: none;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/* Layout - Page Top Button */
.l-pagetop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
  z-index: 1000;
}
@media (min-width: 768px) {
  .l-pagetop {
    right: 50px;
    bottom: 50px;
  }
}
.l-pagetop.is-show {
  opacity: 1;
}
.l-pagetop__icon {
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../images/btn_pagetop.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 50px;
}
.l-pagetop:hover .l-pagetop__icon {
  background-position: 0 -50px;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/* Lightbox Styles */
/* Used in: page-about, page-album */
.l-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-lightbox {
    cursor: zoom-out;
  }
}
.l-lightbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.l-lightbox.is-active {
  visibility: visible;
  pointer-events: auto;
}
.l-lightbox.is-visible::before {
  opacity: 1;
}
.l-lightbox__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 20px;
}
@media (min-width: 768px) {
  .l-lightbox__inner {
    max-width: 90%;
    max-height: 90%;
    padding: 80px 20px 40px;
  }
}
.l-lightbox__image-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: auto;
}
@media (min-width: 768px) {
  .l-lightbox__image-wrapper {
    width: auto;
  }
}
.l-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.l-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
  padding: 0;
}
@media (max-width: 767px) {
  .l-lightbox__close {
    top: 15px;
    right: 15px;
  }
}
.l-lightbox__close::before, .l-lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #333;
}
@media (max-width: 767px) {
  .l-lightbox__close::before, .l-lightbox__close::after {
    width: 20px;
  }
}
.l-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-lightbox__close:hover {
  opacity: 0.7;
}
.l-lightbox__prev, .l-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 767px) {
  .l-lightbox__prev, .l-lightbox__next {
    display: none;
  }
}
.l-lightbox__prev:hover, .l-lightbox__next:hover {
  background: rgba(0, 0, 0, 0.2);
}
.l-lightbox__prev::before, .l-lightbox__next::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.l-lightbox__prev {
  left: 20px;
}
.l-lightbox__prev::before {
  transform: rotate(-135deg);
}
.l-lightbox__next {
  right: 20px;
}
.l-lightbox__next::before {
  transform: rotate(45deg);
}
.l-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 3px;
  border: 1px solid #ddd;
  display: none;
}
@media (max-width: 767px) {
  .l-lightbox__counter {
    bottom: 15px;
    font-size: 12px;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page {
  width: 100%;
  margin-bottom: 67.36px;
}
.l-page__header {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .l-page__header {
    margin-bottom: 25px;
  }
}
.l-page__title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 14px 4.46%;
  font-size: clamp(1.6rem, 0.3595rem + 3.3079vw, 2.9rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background: url(../images/title_bg.png) left top/cover no-repeat;
  aspect-ratio: 627/80;
}
.l-page__content {
  line-height: 1.5;
  font-size: 14px;
  color: #444;
}
@media (min-width: 768px) {
  .l-page__content {
    font-size: 15px;
  }
}
.l-page__content p {
  margin: 0 0 1em;
}
.l-page__content p:last-child {
  margin-bottom: 0;
}
.l-page__content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #69bfe7;
}
@media (min-width: 768px) {
  .l-page__content h2 {
    font-size: 20px;
  }
}
.l-page__content h2:first-child {
  margin-top: 0;
}
.l-page__content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 25px 0 12px;
}
@media (min-width: 768px) {
  .l-page__content h3 {
    font-size: 18px;
  }
}
.l-page__content h3:first-child {
  margin-top: 0;
}
.l-page__content ul,
.l-page__content ol {
  margin: 1em 0;
  padding-left: 2em;
}
.l-page__content li {
  margin: 0.5em 0;
}
.l-page__content a {
  color: #0039d1;
  text-decoration: underline;
}
.l-page__content a:hover {
  opacity: 0.7;
}
.l-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.l-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.l-page__content table th,
.l-page__content table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
@media (min-width: 768px) {
  .l-page__content table th,
  .l-page__content table td {
    padding: 12px;
  }
}
.l-page__content table th {
  background: #f5f5f5;
  font-weight: 700;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-about {
  width: 100%;
}
.l-page-about__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-about__header {
    margin: 15.2px 0;
  }
}
.l-page-about__title {
  margin: 0;
}
.l-page-about__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-about__section {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .l-page-about__section {
    margin-bottom: 26px;
  }
}
.l-page-about__section:last-child {
  margin-bottom: 60px;
}
.l-page-about__subtitle {
  margin: 0 0 28px;
}
.l-page-about__subtitle-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-about__content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}
.l-page-about__main-image {
  width: 40%;
}
@media (min-width: 768px) {
  .l-page-about__main-image {
    width: 250px;
    flex-shrink: 0;
  }
}
.l-page-about__main-image img {
  display: block;
  width: 100%;
  height: auto;
}
.l-page-about__info {
  flex: 1;
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
  width: 60%;
}
@media (min-width: 768px) {
  .l-page-about__info {
    font-size: 15.2px;
    width: auto;
  }
}
.l-page-about__address {
  margin-bottom: 5px !important;
}
.l-page-about__tel, .l-page-about__fax {
  font-weight: bold;
}
.l-page-about__divider {
  height: 20px;
}
.l-page-about__access {
  line-height: 1.7;
  margin-bottom: 0 !important;
}
.l-page-about__link {
  margin-bottom: 5px;
}
.l-page-about__link.exception {
  margin-top: 5px;
}
.l-page-about__link a {
  position: relative;
  padding-left: 18px;
  color: #444;
  text-decoration: underline;
  font-size: 14.4px;
  background-image: url(../images/icon_arrow.gif);
  background-position: left center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .l-page-about__link a {
    font-size: 15.2px;
  }
}
.l-page-about__link a:hover {
  opacity: 0.7;
}
.l-page-about__gallery {
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .l-page-about__gallery {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .l-page-about__gallery {
    overflow: hidden;
  }
}
.l-page-about__gallery-slider {
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .l-page-about__gallery-slider {
    gap: 7.6px;
    justify-content: flex-end;
    flex-wrap: wrap;
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .l-page-about__gallery-slider {
    flex-wrap: nowrap;
    gap: 0;
    transition: transform 0.3s ease;
    will-change: transform;
  }
}
.l-page-about__gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .l-page-about__gallery-item {
    width: calc((100% - 30.4px) / 5);
    aspect-ratio: 118.91/89.17;
    cursor: zoom-in;
  }
  .l-page-about__gallery-item:hover .l-page-about__gallery-icon {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .l-page-about__gallery-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 370/277.5;
    cursor: default;
  }
}
.l-page-about__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-page-about__gallery-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  background-color: rgba(90, 90, 90, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media (max-width: 767px) {
  .l-page-about__gallery-icon {
    display: none;
  }
}
.l-page-about__gallery-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}
.l-page-about__gallery-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 0 6px;
}
@media (max-width: 767px) {
  .l-page-about__gallery-pagination {
    display: flex;
  }
}
.l-page-about__gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bbb;
  cursor: pointer;
  transition: background-color 0.3s;
}
.l-page-about__gallery-dot.is-active {
  background-color: #333;
}
.l-page-about__map {
  width: 100%;
}
.l-page-about__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}
@media (min-width: 768px) {
  .l-page-about__map iframe {
    height: 300px;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-program {
  width: 100%;
}
.l-page-program__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-program__header {
    margin: 15.2px 0;
  }
}
.l-page-program__title {
  margin: 0;
}
.l-page-program__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
}
.l-page-program__intro {
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
}
@media (min-width: 768px) {
  .l-page-program__intro {
    font-size: 15.2px;
    margin-bottom: 15px;
  }
}
.l-page-program__section {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .l-page-program__section {
    margin-bottom: 36px;
  }
}
.l-page-program__section:last-child {
  margin-bottom: 60px;
}
.l-page-program__subtitle {
  margin: 0 0 14px;
}
@media (min-width: 768px) {
  .l-page-program__subtitle {
    margin-bottom: 16px;
  }
}
.l-page-program__subtitle-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
}
.l-page-program__content {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}
@media (min-width: 768px) {
  .l-page-program__content {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}
.l-page-program__main-image {
  width: 45vw;
  order: 2;
}
@media (min-width: 768px) {
  .l-page-program__main-image {
    width: 313px;
    max-width: none;
    flex-shrink: 0;
    order: 1;
  }
}
.l-page-program__main-image img {
  display: block;
  width: 100%;
  height: auto;
}
.l-page-program__list-wrapper {
  order: 1;
}
@media (min-width: 768px) {
  .l-page-program__list-wrapper {
    width: 247px;
    padding-left: 25px;
    order: 2;
  }
}
.l-page-program__list {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8px;
}
@media (min-width: 768px) {
  .l-page-program__list {
    gap: 0;
  }
}
.l-page-program__item {
  width: 100%;
}
.l-page-program__item a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .l-page-program__item a {
    font-size: 15.2px;
  }
}
.l-page-program__item a:hover {
  opacity: 0.7;
}
.l-page-program__item a:hover span {
  text-decoration: none;
}
.l-page-program__item a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #444;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}
.l-page-program__item a span {
  text-decoration: underline;
  text-underline-position: from-font;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-program-detail {
  width: 100%;
  margin-bottom: 67.36px;
}
.l-page-program-detail__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-program-detail__header {
    margin: 15.2px 0;
  }
}
.l-page-program-detail__title {
  margin: 0;
}
.l-page-program-detail__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-program-detail__intro {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 38px;
  gap: 20px;
}
@media (min-width: 768px) {
  .l-page-program-detail__intro {
    padding: 10px;
    margin-bottom: 9px;
    border: 1px dotted #ccc;
  }
}
.l-page-program-detail__intro-image {
  width: 40%;
}
@media (min-width: 768px) {
  .l-page-program-detail__intro-image {
    width: 241.83px;
  }
}
.l-page-program-detail__intro-image img {
  display: block;
  width: 100%;
  height: auto;
}
.l-page-program-detail__intro-text {
  flex: 1;
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
  padding-top: 0;
}
@media (min-width: 768px) {
  .l-page-program-detail__intro-text {
    font-size: 15.2px;
  }
}
.l-page-program-detail__intro-text p {
  margin: 0 0 0.73px;
}
@media (min-width: 768px) {
  .l-page-program-detail__intro-text p {
    margin: 0 0 0.84px;
  }
  .l-page-program-detail__intro-text p:first-of-type {
    margin-top: -0.79px;
  }
}
.l-page-program-detail__intro-text p strong {
  font-weight: bold;
}
.l-page-program-detail__divider {
  height: 20px;
}
.l-page-program-detail__gallery {
  position: relative;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .l-page-program-detail__gallery {
    margin-bottom: 56px;
  }
}
.l-page-program-detail__gallery-slider {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .l-page-program-detail__gallery-slider {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
}
.l-page-program-detail__gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 100%;
  aspect-ratio: 370/246.66;
}
@media (min-width: 768px) {
  .l-page-program-detail__gallery-item {
    width: calc((100% - 30px) / 4);
    aspect-ratio: 149.14/99.42;
    cursor: zoom-in;
  }
  .l-page-program-detail__gallery-item:hover .l-page-program-detail__gallery-icon {
    opacity: 1;
  }
}
.l-page-program-detail__gallery-item img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.l-page-program-detail__gallery-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  background-color: rgba(90, 90, 90, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.l-page-program-detail__gallery-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}
.l-page-program-detail__section {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .l-page-program-detail__section {
    margin-bottom: 14.18px;
  }
}
.l-page-program-detail__subtitle {
  margin: 0;
}
.l-page-program-detail__subtitle-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-program-detail__text-section {
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
}
@media (min-width: 768px) {
  .l-page-program-detail__text-section {
    font-size: 15.2px;
    margin-bottom: 0.84px;
  }
}
@media (min-width: 768px) {
  .l-page-program-detail__text-section p {
    margin: 0 0 0.84px;
  }
}
.l-page-program-detail__text-section p strong {
  font-weight: bold;
}
.l-page-program-detail__text-section p strong.red {
  color: red;
}
.l-page-program-detail__table {
  background: #fff;
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .l-page-program-detail__table {
    margin-bottom: 30px;
  }
}
.l-page-program-detail__table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.4;
  color: #404040;
}
@media (min-width: 768px) {
  .l-page-program-detail__table table {
    font-size: 13.7px;
  }
}
.l-page-program-detail__table th {
  background-color: #9feeff;
  border: 1px solid #ccc;
  text-align: center;
  font-weight: bold;
  padding: 24.59px 8.776px 25.72px;
}
@media (min-width: 768px) {
  .l-page-program-detail__table th {
    padding: 25.98px 9.208px 27.15px;
  }
}
.l-page-program-detail__table td {
  border: 1px solid #ccc;
  text-align: center;
  padding: 16.33px 8.776px 17.45px;
}
@media (min-width: 768px) {
  .l-page-program-detail__table td {
    padding: 17.28px 9.208px 18.44px;
  }
}
.l-page-program-detail__table thead tr:first-child th:nth-child(3) {
  padding: 7.26px 8.776px 8.4px;
}
@media (min-width: 768px) {
  .l-page-program-detail__table thead tr:first-child th:nth-child(3) {
    padding: 7.7px 9.208px 8.86px;
  }
}
.l-page-program-detail__table thead tr:nth-child(2) th {
  background-color: #d6f7ff;
  padding: 7.27px 8.776px 8.39px;
}
@media (min-width: 768px) {
  .l-page-program-detail__table thead tr:nth-child(2) th {
    padding: 7.7px 9.208px 8.86px;
  }
}
.l-page-program-detail__table tbody td:nth-child(3),
.l-page-program-detail__table tbody td:nth-child(4) {
  padding: 7.33px 8.776px 8.45px;
}
@media (min-width: 768px) {
  .l-page-program-detail__table tbody td:nth-child(3),
  .l-page-program-detail__table tbody td:nth-child(4) {
    padding: 7.785px 9.208px 8.935px;
  }
}

.page-template-page-program-kids .l-page-program-detail__intro {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .page-template-page-program-kids .l-page-program-detail__intro {
    margin-bottom: 10px;
  }
}
.page-template-page-program-kids .l-page-program-detail__gallery-item {
  aspect-ratio: 370/277.5;
}
@media (min-width: 768px) {
  .page-template-page-program-kids .l-page-program-detail__gallery-item {
    aspect-ratio: 149.14/111.84;
  }
}
.page-template-page-program-kids .l-page-program-detail__table th {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
}
@media (min-width: 768px) {
  .page-template-page-program-kids .l-page-program-detail__table th {
    padding: 0.6em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-kids .l-page-program-detail__table thead tr:first-of-type th:first-of-type,
.page-template-page-program-kids .l-page-program-detail__table thead tr:nth-of-type(2) th,
.page-template-page-program-kids .l-page-program-detail__table tbody tr td:first-of-type {
  width: 10%;
}
.page-template-page-program-kids .l-page-program-detail__table td {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .page-template-page-program-kids .l-page-program-detail__table td {
    padding: 0.5em !important;
    font-size: 12.996px;
  }
}

.page-template-page-program-junior-a .l-page-program-detail__intro {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .page-template-page-program-junior-a .l-page-program-detail__intro {
    margin-bottom: 10px;
  }
}
.page-template-page-program-junior-a .l-page-program-detail__gallery-item {
  aspect-ratio: 370/277.5;
}
@media (min-width: 768px) {
  .page-template-page-program-junior-a .l-page-program-detail__gallery-item {
    aspect-ratio: 149.14/111.84;
  }
}
.page-template-page-program-junior-a .l-page-program-detail__gallery {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-template-page-program-junior-a .l-page-program-detail__gallery {
    margin-bottom: 36px;
  }
}
.page-template-page-program-junior-a .l-page-program-detail__table th {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
}
@media (min-width: 768px) {
  .page-template-page-program-junior-a .l-page-program-detail__table th {
    padding: 0.6em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-junior-a .l-page-program-detail__table thead tr:first-of-type th:first-of-type,
.page-template-page-program-junior-a .l-page-program-detail__table thead tr:nth-of-type(2) th,
.page-template-page-program-junior-a .l-page-program-detail__table tbody tr td:first-of-type {
  width: 10%;
}
.page-template-page-program-junior-a .l-page-program-detail__table td {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .page-template-page-program-junior-a .l-page-program-detail__table td {
    padding: 0.5em !important;
    font-size: 12.996px;
  }
}

.page-template-page-program-challenge .l-page-program-detail__intro {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-template-page-program-challenge .l-page-program-detail__intro {
    margin-bottom: 10px;
  }
}
.page-template-page-program-challenge .l-page-program-detail__gallery-item {
  aspect-ratio: 370/277.5;
}
@media (min-width: 768px) {
  .page-template-page-program-challenge .l-page-program-detail__gallery-item {
    aspect-ratio: 149.14/111.84;
  }
}
.page-template-page-program-challenge .l-page-program-detail__gallery {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-template-page-program-challenge .l-page-program-detail__gallery {
    margin-bottom: 36px;
  }
}
.page-template-page-program-challenge .l-page-program-detail__table th {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
}
@media (min-width: 768px) {
  .page-template-page-program-challenge .l-page-program-detail__table th {
    padding: 0.6em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-challenge .l-page-program-detail__table thead tr:first-of-type th:first-of-type,
.page-template-page-program-challenge .l-page-program-detail__table tbody tr td:first-of-type {
  width: 20%;
}
.page-template-page-program-challenge .l-page-program-detail__table thead tr:nth-of-type(2) th {
  width: 10%;
}
.page-template-page-program-challenge .l-page-program-detail__table td {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .page-template-page-program-challenge .l-page-program-detail__table td {
    padding: 0.5em !important;
    font-size: 12.996px;
  }
}

.page-template-page-program-senior .l-page-program-detail__intro {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-template-page-program-senior .l-page-program-detail__intro {
    margin-bottom: 15px;
  }
}
.page-template-page-program-senior .l-page-program-detail__intro-text p {
  margin: 0;
}
.page-template-page-program-senior .l-page-program-detail__text-section p {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .page-template-page-program-senior .l-page-program-detail__text-section p {
    margin-bottom: 20px;
  }
}
.page-template-page-program-senior .l-page-program-detail__table {
  max-width: 500.26px;
}
@media (min-width: 768px) {
  .page-template-page-program-senior .l-page-program-detail__table {
    max-width: 501.26px;
  }
}
.page-template-page-program-senior .l-page-program-detail__table th {
  padding: 7.26px 8.776px 8.4px;
}
@media (min-width: 768px) {
  .page-template-page-program-senior .l-page-program-detail__table th {
    padding: 7.7976px;
  }
}
.page-template-page-program-senior .l-page-program-detail__table td {
  padding: 6.156px !important;
  font-size: 12.312px;
}
@media (min-width: 768px) {
  .page-template-page-program-senior .l-page-program-detail__table td {
    padding: 6.498px !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-senior .l-page-program-detail__table thead tr th:first-of-type {
  width: 40%;
}
.page-template-page-program-senior .l-page-program-detail__table thead tr th:nth-of-type(2) {
  width: 30%;
}
.page-template-page-program-senior .l-page-program-detail__table thead tr th:nth-of-type(3) {
  width: 30%;
}

.page-template-page-program-ikuse .l-page-program-detail__intro {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-template-page-program-ikuse .l-page-program-detail__intro {
    margin-bottom: 15px;
  }
}
.page-template-page-program-ikuse .l-page-program-detail__intro-text p {
  margin: 0;
}
.page-template-page-program-ikuse .l-page-program-detail__text-section p {
  margin-bottom: 0;
}
.page-template-page-program-ikuse .l-page-program-detail__table th {
  padding: 7.3872px !important;
  font-size: 12.312px;
}
@media (min-width: 768px) {
  .page-template-page-program-ikuse .l-page-program-detail__table th {
    padding: 0.6em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-ikuse .l-page-program-detail__table thead tr:first-of-type th:first-of-type,
.page-template-page-program-ikuse .l-page-program-detail__table tbody tr td:first-of-type {
  width: 12.29%;
}
@media (min-width: 768px) {
  .page-template-page-program-ikuse .l-page-program-detail__table thead tr:first-of-type th:first-of-type,
  .page-template-page-program-ikuse .l-page-program-detail__table tbody tr td:first-of-type {
    width: 139.03px;
  }
}
@media (min-width: 768px) {
  .page-template-page-program-ikuse .l-page-program-detail__table thead tr:first-of-type th:nth-of-type(2),
  .page-template-page-program-ikuse .l-page-program-detail__table tbody tr:first-of-type td:nth-of-type(2) {
    width: 69.5px;
  }
}
.page-template-page-program-ikuse .l-page-program-detail__table td {
  padding: 0.5em !important;
  font-size: 12.312px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .page-template-page-program-ikuse .l-page-program-detail__table td {
    font-size: 12.996px;
  }
}
.page-template-page-program-ikuse .l-page-program-detail__table:last-of-type {
  margin-bottom: 67.36px;
}
@media (min-width: 768px) {
  .page-template-page-program-ikuse .l-page-program-detail__table:last-of-type {
    margin-bottom: 30px;
  }
}

.page-template-page-program-sensyu .l-page-program-detail__intro {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__intro {
    margin-bottom: 10px;
  }
}
.page-template-page-program-sensyu .l-page-program-detail__intro-text p {
  margin: 0;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__gallery-slider {
    align-items: center;
    gap: 0 10px;
  }
}
.page-template-page-program-sensyu .l-page-program-detail__gallery-item {
  aspect-ratio: 370/277.5;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__gallery-item {
    aspect-ratio: 149.14/111.84;
  }
}
.page-template-page-program-sensyu .l-page-program-detail__gallery-item:nth-last-of-type(-n + 2) {
  aspect-ratio: 370/493.33;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__gallery-item:nth-last-of-type(-n + 2) {
    aspect-ratio: 149.16/198.88;
  }
}
.page-template-page-program-sensyu .l-page-program-detail__gallery {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__gallery {
    margin-bottom: 17px;
  }
}
.page-template-page-program-sensyu .l-page-program-detail__text-section p {
  margin-bottom: 0;
}
.page-template-page-program-sensyu .l-page-program-detail__table th {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__table th {
    padding: 0.6em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-sensyu .l-page-program-detail__table thead tr:first-of-type th:first-of-type,
.page-template-page-program-sensyu .l-page-program-detail__table tbody tr td:first-of-type {
  width: 20%;
}
.page-template-page-program-sensyu .l-page-program-detail__table thead tr:first-of-type th:nth-of-type(2),
.page-template-page-program-sensyu .l-page-program-detail__table tbody tr td:nth-of-type(2) {
  width: 10%;
}
.page-template-page-program-sensyu .l-page-program-detail__table thead tr:first-of-type th:nth-of-type(3) {
  width: 70%;
}
.page-template-page-program-sensyu .l-page-program-detail__table thead tr:nth-of-type(2) th {
  width: 10%;
}
.page-template-page-program-sensyu .l-page-program-detail__table tbody tr td:nth-child(n+3) {
  width: 10%;
}
.page-template-page-program-sensyu .l-page-program-detail__table td {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__table td {
    padding: 0.5em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-sensyu .l-page-program-detail__table:last-of-type {
  margin-bottom: 67.36px;
}
@media (min-width: 768px) {
  .page-template-page-program-sensyu .l-page-program-detail__table:last-of-type {
    margin-bottom: 30px;
  }
}

.page-template-page-program-senmon .l-page-program-detail__intro {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-template-page-program-senmon .l-page-program-detail__intro {
    margin-bottom: 16px;
  }
}
.page-template-page-program-senmon .l-page-program-detail__intro-text {
  width: 100%;
}
.page-template-page-program-senmon .l-page-program-detail__intro-text p {
  margin: 0;
}
.page-template-page-program-senmon .l-page-program-detail__table {
  max-width: 626.59px;
}
@media (min-width: 768px) {
  .page-template-page-program-senmon .l-page-program-detail__table {
    max-width: 626.59px;
  }
}
.page-template-page-program-senmon .l-page-program-detail__table th {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
}
@media (min-width: 768px) {
  .page-template-page-program-senmon .l-page-program-detail__table th {
    padding: 0.6em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-senmon .l-page-program-detail__table thead tr:first-of-type th:first-of-type {
  width: 20%;
}
.page-template-page-program-senmon .l-page-program-detail__table thead tr:first-of-type th:nth-of-type(2),
.page-template-page-program-senmon .l-page-program-detail__table thead tr:nth-of-type(2) th {
  width: 10%;
}
.page-template-page-program-senmon .l-page-program-detail__table thead tr:first-of-type th:nth-of-type(3) {
  width: 70%;
}
.page-template-page-program-senmon .l-page-program-detail__table td {
  padding: 0.5em 0 !important;
  font-size: 12.312px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .page-template-page-program-senmon .l-page-program-detail__table td {
    padding: 0.5em !important;
    font-size: 12.996px;
  }
}
.page-template-page-program-senmon .l-page-program-detail__table:last-of-type {
  margin-bottom: 67.36px;
}
@media (min-width: 768px) {
  .page-template-page-program-senmon .l-page-program-detail__table:last-of-type {
    margin-bottom: 30px;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-staff {
  width: 100%;
}
.l-page-staff__header {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .l-page-staff__header {
    margin: 15.2px 0;
  }
}
.l-page-staff__title {
  margin: 0;
}
.l-page-staff__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-staff__subtitle {
  max-width: 626px;
  margin: 0 auto 15px;
}
.l-page-staff__main-section {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .l-page-staff__main-section {
    margin-bottom: 27px;
  }
}
.l-page-staff__main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .l-page-staff__main-content {
    flex-direction: row;
    gap: 25px;
  }
}
.l-page-staff__main-image {
  width: 100%;
}
@media (min-width: 768px) {
  .l-page-staff__main-image {
    width: 313px;
    flex-shrink: 0;
  }
}
.l-page-staff__main-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.l-page-staff__main-info {
  flex: 1;
  padding-left: 8%;
}
@media (min-width: 768px) {
  .l-page-staff__main-info {
    margin-top: 17px;
    padding-left: 0;
  }
}
.l-page-staff__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 55px;
  margin-bottom: 63px;
}
@media (min-width: 768px) {
  .l-page-staff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 32px;
    margin-bottom: 20px;
  }
}
.l-page-staff__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-page-staff__item-image {
  width: 100%;
  aspect-ratio: 297.3/228.16;
}
@media (min-width: 768px) {
  .l-page-staff__item-image {
    max-width: 430px;
  }
}
.l-page-staff__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.l-page-staff__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.2px;
  color: #404040;
  font-weight: 600;
  line-height: 1.6;
}
.l-page-staff__table th,
.l-page-staff__table td {
  padding: 2px;
  text-align: left;
  vertical-align: top;
  border-bottom: 2px dotted #85c5e4;
  word-break: break-all;
  font-size: 11.52px;
}
@media (min-width: 768px) {
  .l-page-staff__table th,
  .l-page-staff__table td {
    font-size: 12.16px;
  }
}
.l-page-staff__table th {
  width: 20%;
  font-weight: 600;
}
.l-page-staff__table td {
  width: auto;
  font-weight: 600;
  vertical-align: middle;
}
.l-page-staff__table tr:last-child th,
.l-page-staff__table tr:last-child td {
  border-bottom: none;
}
.l-page-staff__table tr:first-child th,
.l-page-staff__table tr:first-child td {
  padding-top: 1px;
}
.l-page-staff__table tr:not(:first-child) th,
.l-page-staff__table tr:not(:first-child) td {
  padding-top: 2px;
}
.l-page-staff__table tr:has(th:contains("体操協会")) td {
  padding-bottom: 4px;
}
.l-page-staff__table tr:has(th:contains("好きな言")) td {
  padding-top: 11.72px;
  padding-bottom: 13.16px;
}
.l-page-staff__table tr:has(th:contains("コメント")) th {
  padding-bottom: 41.31px;
}
.l-page-staff__table tr:has(th:contains("コメント")) td {
  padding-top: 2px;
  padding-bottom: 2px;
}
.l-page-staff__all-photo {
  display: none;
  width: 100%;
}
@media (min-width: 768px) {
  .l-page-staff__all-photo {
    display: block;
    margin: 39.52px 0 55px;
  }
}
.l-page-staff__all-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-faq {
  width: 100%;
  margin-bottom: 40px;
}
.l-page-faq__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-faq__header {
    margin: 15.2px 0;
  }
}
.l-page-faq__title {
  margin: 0;
}
.l-page-faq__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14.4px;
}
@media (min-width: 768px) {
  .l-page-faq__list {
    gap: 15.2px;
  }
}
.l-page-faq__item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.l-page-faq__item:not(:first-child) {
  margin-top: 5.6px;
}
@media (min-width: 768px) {
  .l-page-faq__item:not(:first-child) {
    margin-top: 19.99px;
  }
}
.l-page-faq__question {
  width: 100%;
  max-width: 626px;
  margin: 0 auto 14.4px;
}
.l-page-faq__question img {
  display: block;
  width: 100%;
  height: auto;
}
.l-page-faq__answer {
  background: #ffffff;
  border: 1px dotted #85c5e4;
  padding: 2% 1%;
  text-align: center;
  width: 100%;
  max-width: 626px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-page-faq__answer {
    padding: 13.531px 7.266px;
  }
}
.l-page-faq__answer p {
  font-size: 14.4px;
  line-height: 1.6;
  color: #404040;
  margin: 0;
}
@media (min-width: 768px) {
  .l-page-faq__answer p {
    font-size: 15.2px;
    line-height: 24.32px;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-recruit {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .l-page-recruit {
    margin-bottom: 40px;
  }
}
.l-page-recruit__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-recruit__header {
    margin: 15.2px 0;
  }
}
.l-page-recruit__title {
  margin: 0;
}
.l-page-recruit__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
}
.l-page-recruit__subtitle {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-recruit__subtitle {
    margin-bottom: 15.2px;
  }
}
.l-page-recruit__subtitle-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
}
.l-page-recruit__intro {
  margin-bottom: 20px;
}
.l-page-recruit__intro p {
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
  margin: 0;
}
@media (min-width: 768px) {
  .l-page-recruit__intro p {
    font-size: 15.2px;
    line-height: 1.7;
  }
}
.l-page-recruit__section {
  margin-bottom: 40px;
}
.l-page-recruit__section:last-of-type {
  margin-bottom: 0;
}
.l-page-recruit__section.exception {
  margin-top: -20px;
}
@media (min-width: 768px) {
  .l-page-recruit__section.exception {
    margin-top: -18px;
  }
}
.l-page-recruit__section.exception .l-page-recruit__subsection-title {
  margin-bottom: 0;
}
.l-page-recruit__section-title {
  font-size: 16.8px;
  line-height: 1.5;
  color: #404040;
}
@media (min-width: 768px) {
  .l-page-recruit__section-title {
    font-size: 17.8px;
    line-height: 1.45;
  }
}
.l-page-recruit__subsection-title {
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
  font-weight: bold;
  margin: 0 0 8px;
}
@media (min-width: 768px) {
  .l-page-recruit__subsection-title {
    font-size: 15.2px;
    line-height: 1.7;
  }
}
.l-page-recruit__list {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
}
.l-page-recruit__list li {
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
}
@media (min-width: 768px) {
  .l-page-recruit__list li {
    font-size: 15.2px;
    line-height: 1.7;
  }
}
.l-page-recruit__list li:last-child {
  margin-bottom: 0;
}
.l-page-recruit__text {
  margin: -40px 0 40px;
}
.l-page-recruit__text p {
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
  margin: 0;
}
@media (min-width: 768px) {
  .l-page-recruit__text p {
    font-size: 15.2px;
    line-height: 1.7;
  }
}
.l-page-recruit__link {
  color: #444;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.l-page-recruit__link:hover {
  opacity: 0.7;
}
.l-page-recruit__contact {
  font-weight: bold !important;
  margin-top: 20px !important;
}
.l-page-recruit__contact-info {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .l-page-recruit__contact-info {
    margin-bottom: 20px;
  }
}
.l-page-recruit__contact-info p {
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
  margin: 0;
}
@media (min-width: 768px) {
  .l-page-recruit__contact-info p {
    font-size: 15.2px;
    line-height: 1.7;
  }
}
.l-page-recruit__bg-logo {
  display: none;
}
@media (min-width: 768px) {
  .l-page-recruit__bg-logo {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url("../images/logo_bg_02.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: -1;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-sitemap {
  width: 100%;
  margin-bottom: 40px;
}
.l-page-sitemap__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-sitemap__header {
    margin: 15.2px 0;
  }
}
.l-page-sitemap__title {
  margin: 0;
}
.l-page-sitemap__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
}
.l-page-sitemap__nav {
  width: 100%;
}
.l-page-sitemap__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.l-page-sitemap__item {
  position: relative;
  margin: 0;
}
.l-page-sitemap__link {
  display: inline-block;
  font-size: 17.3px;
  line-height: 1.45;
  color: #444;
  font-weight: bold;
  text-decoration: underline;
  text-underline-position: from-font;
  transition: opacity 0.3s ease;
  padding-left: 18px;
  background-image: url(../images/icon_arrow.gif);
  background-position: left center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .l-page-sitemap__link {
    font-size: 18.2px;
    line-height: 1.42;
  }
}
.l-page-sitemap__link:hover {
  text-decoration: none;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-results {
  width: 100%;
}
.l-page-results__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-results__header {
    margin: 15.2px 0;
  }
}
.l-page-results__title {
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .l-page-results__title {
    text-align: left;
  }
}
.l-page-results__title-image {
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 626px;
}
.l-page-results__intro {
  text-align: center;
  line-height: 1.7;
  color: #404040;
  font-size: 14.4px;
}
@media (min-width: 768px) {
  .l-page-results__intro {
    text-align: left;
    font-size: 15.2px;
    margin-bottom: 15px;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-taiken {
  width: 100%;
}
.l-page-taiken__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-taiken__header {
    margin: 15.2px 0;
  }
}
.l-page-taiken__title {
  margin: 0;
}
.l-page-taiken__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-taiken__section {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .l-page-taiken__section {
    margin-bottom: 20px;
  }
}
.l-page-taiken__section:first-of-type {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .l-page-taiken__section:first-of-type {
    margin-bottom: 36px;
  }
}
.l-page-taiken__section:last-of-type {
  margin-bottom: 20px;
}
.l-page-taiken__subtitle {
  margin: 0 0 14.4px;
}
@media (min-width: 768px) {
  .l-page-taiken__subtitle {
    margin: 0 0 15.2px;
  }
}
.l-page-taiken__subtitle-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-taiken__content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 0;
}
.l-page-taiken__main-image {
  width: 40%;
}
@media (min-width: 768px) {
  .l-page-taiken__main-image {
    width: 250.63px;
    flex-shrink: 0;
  }
}
.l-page-taiken__main-image img {
  display: block;
  width: 100%;
  height: auto;
}
.l-page-taiken__info {
  flex: 1;
  font-size: 14.4px;
  line-height: 1.7;
  color: #404040;
  width: 60%;
}
@media (min-width: 768px) {
  .l-page-taiken__info {
    font-size: 15.2px;
    width: auto;
  }
}
.l-page-taiken__text {
  margin: 0 0 0;
}
.l-page-taiken__text.bold {
  font-weight: bold;
}
.l-page-taiken__divider {
  height: 20px;
}
.l-page-taiken__contact {
  display: none;
}
@media (min-width: 768px) {
  .l-page-taiken__contact {
    display: block;
    background-color: #ffffff;
    border: 2px dotted #cccccc;
    border-radius: 8px;
    padding: 14.19px 22.8px;
    margin-bottom: 20px;
  }
}
.l-page-taiken__contact-title {
  font-size: 15.2px;
  line-height: 1.7;
  color: #404040;
  text-align: center;
  margin: 0 0 10px;
}
.l-page-taiken__contact-info {
  display: flex;
  flex-direction: column;
}
.l-page-taiken__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.l-page-taiken__contact-label {
  font-size: 18px;
  line-height: 1.445;
  color: #404040;
}
.l-page-taiken__contact-tel {
  font-size: 24px;
  line-height: 1.4584;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-page-taiken__contact-tel.makinosato {
  color: #ff0000;
}
.l-page-taiken__contact-tel.takahari {
  color: #3333ff;
  margin-bottom: 2px;
}
.l-page-taiken__contact-tel:hover {
  opacity: 0.7;
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-album {
  width: 100%;
}
.l-page-album__header {
  margin-bottom: 14.4px;
}
@media (min-width: 768px) {
  .l-page-album__header {
    margin: 15.2px 0;
  }
}
.l-page-album__title {
  margin: 0;
}
.l-page-album__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-album__gallery {
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .l-page-album__gallery {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .l-page-album__gallery {
    overflow: hidden;
  }
}
.l-page-album__gallery-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  transform: none !important;
  width: calc(100% - 90px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-page-album__gallery-slider {
    width: min(100%, 536.59px);
  }
}
.l-page-album__gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  transition: opacity 0.3s;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .l-page-album__gallery-item {
    width: calc((100% - 30px) / 4);
  }
  .l-page-album__gallery-item:hover .l-page-album__gallery-icon {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .l-page-album__gallery-item {
    width: calc((100% - 10px) / 2);
  }
}
.l-page-album__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-page-album__gallery-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  background-color: rgba(90, 90, 90, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.l-page-album__gallery-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}
.l-page-album__gallery-pagination {
  display: none;
}
@media (max-width: 767px) {
  .l-page-album__gallery-pagination {
    display: none;
  }
}

/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #333;
  container-type: inline-size;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.l-page-information {
  width: 100%;
  margin-bottom: 67.36px;
}
.l-page-information__header {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .l-page-information__header {
    margin: 15.2px 0 20px;
  }
}
.l-page-information__title {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.l-page-information__title-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 626px;
  margin: 0 auto;
}
.l-page-information__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.l-page-information__item {
  padding: 0 0 0 16px;
  border-bottom: none;
  position: relative;
}
@media (min-width: 768px) {
  .l-page-information__item {
    padding: 0 0 0 13px;
  }
}
.l-page-information__item:not(:last-child) {
  margin-bottom: 10px;
}
.l-page-information__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon_arrow.gif");
  background-size: contain;
  background-repeat: no-repeat;
}
.l-page-information__article {
  display: block;
}
.l-page-information__date {
  display: block;
  font-weight: 700;
  font-size: 11.7px;
  line-height: 20.74px;
  color: #444;
}
@media (min-width: 768px) {
  .l-page-information__date {
    font-size: 13.7px;
    line-height: 21.89px;
  }
}
.l-page-information__heading {
  margin: 0 0 4px 0;
  padding: 0;
  font-size: 14.3px;
  line-height: 20.74px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .l-page-information__heading {
    margin: 0 0 3px 0;
    font-size: 15px;
    line-height: 21.89px;
  }
}
.l-page-information__link {
  color: #0039d1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.3s;
}
.l-page-information__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.l-page-information__new-icon {
  display: inline-block;
  width: 25px;
  height: 9px;
  margin-left: 5px;
  vertical-align: middle;
}
.l-page-information__excerpt {
  display: block;
  font-size: 11.7px;
  line-height: 12.83px;
  color: #333;
  margin: 0;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .l-page-information__excerpt {
    font-size: 12.3px;
    line-height: 13.54px;
  }
}
.l-page-information__excerpt > a {
  text-decoration: underline;
}
.l-page-information__excerpt > a:hover {
  text-decoration: none;
}
.l-page-information__empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 14px;
}
@media (min-width: 768px) {
  .l-page-information__empty {
    font-size: 15px;
  }
}
.l-page-information__pagination {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.l-page-information__pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.l-page-information__pagination li {
  margin: 0;
  padding: 0;
}
.l-page-information__pagination a,
.l-page-information__pagination span {
  display: block;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #9ddeff;
  border-radius: 4px;
  color: #0039d1;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: all 0.3s;
  min-width: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .l-page-information__pagination a,
  .l-page-information__pagination span {
    font-size: 15px;
  }
}
.l-page-information__pagination a:hover {
  background: #9ddeff;
  color: #fff;
}
.l-page-information__pagination .current {
  background: #0039d1;
  color: #fff;
  border-color: #0039d1;
  font-weight: bold;
}
.l-page-information__pagination .dots {
  border: none;
  background: none;
  color: #666;
}
.l-page-information__pagination .prev,
.l-page-information__pagination .next {
  font-weight: bold;
}