@charset "utf-8";
:root {
  --bl: #000;
  --gray-02: #ccc;
  --grad-01: linear-gradient(90deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-01-rev: linear-gradient(270deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-02: linear-gradient(90deg, var(--LACC) 0%, var(--ACC) 100%);
  --grad-02-rev: linear-gradient(270deg, var(--LACC) 0%, var(--ACC) 100%);
  --grad-03: linear-gradient(90deg, var(--LOTH) 0%, var(--OTH) 100%);
  --grad-03-rev: linear-gradient(270deg, var(--LOTH) 0%, var(--OTH) 100%);
  --transition: all 0.3s ease-in-out;
  --oversize: calc((100% - 100vw) / 2);
}

/* ==================================
テキストシャドウ
===================================== */
.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

/* ==================================
リセット・調整・ファンデーション
===================================== */
/* 高さを画像自体の高さにする */
:where(img) {
  /* max-width: 100%; */
  height: auto;
  vertical-align: bottom;
}

/* 下層ページの画像に共通のアスペクト比設定 */
/* :where(#dcms_layoutPageBlock) :where(img) {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
} */

/*---------- アクセシビリティ ----------*/
/* アイコンをスクリーンリーダーに読み上げられないようにする */
i,
[class*="material-icons"],
[class*="material-symbols"] {
  speak: none;
}
/*---------- マテリアルアイコンのフォントサイズを親要素から継承させる ----------*/
/*[class*="material-icons"],
[class*="material-symbols"] {
  font-size: inherit;
}*/

/*---------- ボタンのアイコンを「→」に変更 ----------*/
/* :where(.lib-link__btn):not([class*="ico-after-"]):not([class*="ico-before-"]) > .txt:after {
  content: "\ea03";
  font-size: 1em;
} */

/* ==================================
タイポ
===================================== */
/* ゴシックとか */
.ff-notosans {
  font-family: "Noto Sans JP", serif;
}
.ff-lato {
  font-family: "Lato", sans-serif;
  /* letter-spacing: 0.05rem; */
}
.ff-oswald {
  font-family: "Oswald", sans-serif;
}
.ff-poppins {
  font-family: "Poppins", sans-serif;
}
.ff-zenmarugo {
  font-family: "Staatliches", sans-serif;
}
.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
  font-family: "Zen Maru Gothic", sans-serif;
}
.ff-m-plus-rounded-1c {
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.07deg);
}
/* 明朝とか */
.ff-notoserif {
  font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
  font-family: "Yu Mincho", "YuMincho", serif;
}

/* font-weight */
.fw-600 {
  font-weight: 600 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

/* ==================================
ユーティリティー
===================================== */
/*---------- 字幅 ----------*/
.u-l-0 {
  letter-spacing: 0;
}
.u-l-1 {
  letter-spacing: 1px;
}
.u-l-2 {
  letter-spacing: 2px;
}
.u-l-3 {
  letter-spacing: 3px;
}
.u-l-4 {
  letter-spacing: 4px;
}
.u-l-5 {
  letter-spacing: 5px;
}

/*---------- 画像の比率 ----------*/
.u-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--16x9 img {
  aspect-ratio: 16 / 9;
}
.u-aspect.--21x9 img {
  aspect-ratio: 21 / 9;
}
.u-aspect.--1x1 img {
  aspect-ratio: 1 / 1;
}
.u-aspect.--2x1 img {
  aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
  aspect-ratio: 3 / 1;
}
.u-aspect.--4x1 img {
  aspect-ratio: 4 / 1;
}
.u-aspect.--7x8 img {
  aspect-ratio: 7 / 8;
}
.u-aspect.--9x16 img {
  aspect-ratio: 9 / 16;
}
.u-aspect.--3x4 img {
  aspect-ratio: 3 / 4;
}

/* 画像全体を枠内に入れたいとき */
.u-aspect.--contain img {
  object-fit: contain !important;
}

/* メディア一覧の画像 */
.media-post__thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem;
}
/*---------- 角丸 ----------*/
[class*="u-rounded-"] {
  overflow: hidden;
}
.u-rounded-_25 {
  border-radius: 0.25rem !important;
}
.u-rounded-_5 {
  border-radius: 0.5rem !important;
}
.u-rounded-_75 {
  border-radius: 0.75rem !important;
}
.u-rounded-1 {
  border-radius: 1rem !important;
}
.u-rounded-1_5 {
  border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
  border-radius: 1.25rem !important;
}
.u-rounded-2 {
  border-radius: 2rem !important;
}
.u-rounded-3 {
  border-radius: 3rem !important;
}
[class*="u-rounded-"].--t-only {
  border-bottom-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--b-only {
  border-top-right-radius: unset !important;
  border-top-left-radius: unset !important;
}
[class*="u-rounded-"].--r-only {
  border-top-left-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--l-only {
  border-top-right-radius: unset !important;
  border-bottom-right-radius: unset !important;
}
.u-rounded-img img {
  border-radius: 1rem !important;
}
.u-rounded-img-none {
  border-radius: 0 !important;
}

/*---------- はみ出させる ----------*/
.u-over {
  margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
  margin-right: var(--oversize);
}
@media print,
screen and (min-width: 768px) {
  .u-r-md-over {
    margin-right: var(--oversize);
  }
}
@media print,
screen and (min-width: 992px) {
  .u-r-lg-over {
    margin-right: var(--oversize);
  }
}
/* 左に */
.u-l-over {
  margin-left: var(--oversize);
}
@media print,
screen and (min-width: 768px) {
  .u-l-md-over {
    margin-left: var(--oversize);
  }
}
@media print,
screen and (min-width: 992px) {
  .u-l-lg-over {
    margin-left: var(--oversize);
  }
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-*、個別にwidth・height指定して調整。） ----------*/
.c-icon {
  aspect-ratio: 1 / 1;
  speak: none;
}
.c-icon img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  speak: none;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
/* 余白の微調整は「gap-*」 */
.c-icon-text {
  display: grid !important;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.5em;
  justify-content: center;
  align-items: center;
}
/* アイコンだけ右寄せ */
.c-icon-text.--r {
  grid-template-columns: 1fr auto;
}
/* アイコンだけ左寄せ */
.c-icon-text.--l {
  grid-template-columns: auto 1fr;
}
@media print,
screen and (min-width: 992px) {
  .c-icon-text {
    column-gap: 1em;
  }
}

/*---------- 背景のベース ----------*/
/* 背景画像を敷く場合、
   背景画像に各色のフィルターをかける場合
   疑似要素を配置したいときのベース */
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.p-bg.--contain {
  background-size: contain;
}
/* 疑似要素のファンデーション */
.p-bg::before,
.p-bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  pointer-events: none;
  speak: none;
}
/* 黒透明フィルター */
.p-bg.--bl::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bl);
  opacity: 0.3;
}
/* 白透明フィルター */
.p-bg.--wh::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--WHT);
  opacity: 0.3;
}
/* メインカラーフィルター */
.p-bg.--main::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--MAIN);
  opacity: 0.3;
}
.p-bg.--lmain::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LMAIN);
  opacity: 0.3;
}
/* アクセントカラーフィルター */
.p-bg.--accent::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ACC);
  opacity: 0.3;
}
.p-bg.--laccent::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LACC);
  opacity: 0.3;
}
/* 補助色カラーフィルター */
.p-bg.--other::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--OTH);
  opacity: 0.3;
}
.p-bg.--lother::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LOTH);
  opacity: 0.3;
}
/* 色の濃さ（opacity） */
.p-bg.--light::before {
  opacity: 0.1;
}
.p-bg.--md::before {
  opacity: 0.5;
}
.p-bg.--strong::before {
  opacity: 0.7;
}
.p-bg.--strongest::before {
  opacity: 0.9;
}

/*---------- ホバーアクション ----------*/
.c-hover {
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}
.c-hover:hover {
  text-decoration: none;
}
.c-hover.--underline:hover {
  text-decoration: underline;
}
.c-hover.--bg-main:hover {
  background-color: var(--MAIN);
}
.c-hover.--bg-accent:hover {
  background-color: var(--ACC);
}
.c-hover.--bg-other:hover {
  background-color: var(--OTH);
}
.c-hover.--bg-lmain:hover {
  background-color: var(--LMAIN);
}
.c-hover.--bg-laccent:hover {
  background-color: var(--LACC);
}
.c-hover.--bg-lother:hover {
  background-color: var(--LOTH);
}
.c-hover.--bg-gry:hover {
  background-color: var(--GRY);
}
.c-hover.--bg-lgry:hover {
  background-color: var(--LGRY);
}
.c-hover.--opacity:hover {
  opacity: 0.8;
}
.c-hover.--up:hover {
  transform: translateY(-0.125rem);
}
.c-hover.--scale-up img {
  transition: var(--transition);
}
.c-hover.--scale-up:hover img {
  transform: scale(1.1);
}

/*---------- レイアウト ----------*/
/* display: grid;で重ねる */
.l-overlap {
  display: grid;
}
.l-overlap>* {
  grid-area: 1 / -1;
}
.c-hover.--overlap .--after {
  opacity: 0;
  transition: var(--transition);
}
.c-hover.--overlap:hover .--after {
  opacity: 1;
}
#tinymce .l-overlap>*,
.editor_block .l-overlap>* {
  grid-area: unset !important;
  z-index: 1 !important;
  opacity: 1 !important;
}

/* 子要素を中央配置 */
/* 縦 */
.l-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* 縦横中央 */
.l-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ==================================
改行
===================================== */
.br-pc {
  display: inline;
}
.br-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}

/* ==================================
フォントサイズ
===================================== */
@media only screen and (min-width: 767px) {
  .fs-md-50 {
    font-size: 3.125rem;
  }
  .fs-md-60 {
    font-size: 3.75rem;
  }
}
@media only screen and (min-width: 992px) {
  .fs-lg-50 {
    font-size: 3.125rem;
  }
  .fs-lg-60 {
    font-size: 3.75rem;
  }
  .fs-lg-80 {
    font-size: 5rem;
  }
}

/* ==================================
幅
===================================== */
.w-90 {
  width: 90% !important;
}
.w-80 {
  width: 80% !important;
}
.w-70 {
  width: 70% !important;
}
.w-60 {
  width: 60% !important;
}
.w-50 {
  width: 50% !important;
}
.w-40 {
  width: 40% !important;
}
.w-30 {
  width: 30% !important;
}
.w-20 {
  width: 20% !important;
}
.w-10 {
  width: 10% !important;
}
@media only screen and (min-width: 767px) {
  .w-md-25 {
    width: 25% !important;
  }
}

/* ==================================
header
===================================== */
/* ヘッダー高さ */
@media only screen and (max-width: 991px) {
  .lib-header__bar {
    height: 80px;
    box-shadow: none;
  }
}
/* ハンバーガーメニュー */
.lib-menu__btn {
  width: 100px;
  height: 80px;
  border-radius: 100px 0 0 100px;
}
.lib-menu__btn>.line {
  left: 35%;
  width: 40%;
}
.lib-menu__btn>.line:nth-of-type(1) {
  top: calc(50% - 1px - 15px);
}
.lib-menu__btn>.line:nth-of-type(2) {
  top: calc(50% - 6px);
}
.lib-menu__btn>.line:nth-of-type(3) {
  bottom: calc(50% - 1px - 5px);
}
/* ハンバーガーメニュータイトル */
.lib-menu__btn>.h-menu {
  position: absolute;
  bottom: 7px;
  left: 54%;
  transform: translateX(-50%);
}
.lib-menu__btn[aria-expanded=true]>.line {
  left: 35%;
}
.lib-header__outer.typeN .lib-menu__btn:after {
  display: none !important;
}
/* ヘッダーメニュータイトル */
.lib-child__list .lib-child__item>a {
  padding-left: 10px;
}
.lib-child__item>a .txt {
  font-size: .85rem;
}
/* SPメニュー */
.lib-nav__panel {
  top: 80px;
  height: calc(100dvh - 80px);
}
.lib-header__outer.lib-header-BS01 .lib-header__logo a {
  padding: 10px 20px;
}
@media only screen and (min-width: 992px) {
  /* header logo */
  .lib-header__outer.lib-header-BS01 .lib-header__logo a {
    box-shadow: none;
  }
  /* header menu */
  .lib-header__outer.typeN .lib-nav__panel {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    scrollbar-color: var(--GRY) #f5f5f5;
    z-index: 10;
  }
  .lib-header__outer.lib-header-BS01 .lib-header__nav {
    right: 0;
    position: absolute;
  }
  .lib-header__outer.lib-header-BS01 .lib-menu__btn {
    width: 120px !important;
    height: 90px !important;
    border-radius: 100px 0 0 100px;
  }
  /* スクロール後 */
  .is-scroll .lib-header__outer.lib-header-BS01 {
    top: 60px;
  }
  .is-scroll .lib-header__outer.lib-header-BS01 .lib-header__logo {
    width: 240px;
  }
  .is-scroll .lib-header__outer.lib-header-BS01 .lib-header__logo a {
    height: 90px;
  }
}


/* ==================================
footer
===================================== */
.lib-footer__list {
  display: block;
}
.lib-footer__sns>li>a {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
}
.lib-footer__title a {
  font-size: .85rem;
  text-decoration: none;
}
.lib-footer__title a.border-main {
  border-color: var(--MAIN) !important;
}
.lib-footer__title a.border-other {
  border-color: var(--OTH) !important;
}
.lib-footer__title a.border-accent {
  border-color: var(--ACC) !important;
}
.lib-footer__title a.border-blue {
  border-color: var(--BLUE) !important;
}
.lib-footer__title a.border-brown {
  border-color: var(--BROWN) !important;
}
.lib-footer__title a.border-main:hover {
  color: var(--MAIN) !important;
}
.lib-footer__title a.border-other:hover {
  color: var(--OTH) !important;
}
.lib-footer__title a.border-accent:hover {
  color: var(--ACC) !important;
}
.lib-footer__title a.border-blue:hover {
  color: var(--BLUE) !important;
}
.lib-footer__title a.border-brown:hover {
  color: var(--BROWN) !important;
}

/* ==================================
common
===================================== */
html.is-open {
  position: relative;
}
html.is-open::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#wrapper {
  padding-top: 80px;
}
/* カラー */
.border-blue {
  border-color: var(--BLUE);
}
.bg-blue {
  background-color: var(--BLUE);
}
.text-blue {
  color: var(--BLUE);
}
.border-brown {
  border-color: var(--BROWN);
}
.bg-brown {
  background-color: var(--BROWN);
}
.text-brown {
  color: var(--BROWN);
}
/* フォント */
.inter-font {
  font-family: "Inter", serif !important;
}

/* パンくず */
.lib-breadcrumb__outer {
  background-color: #f5f5f5;
}

/* ボタン */
.lib-link__btn.text-def:hover {
  color: var(--MAIN) !important;
}
.lib-link__btn.text-def:hover .txt {
  text-decoration: underline !important;
}
.hover-none {
  pointer-events: none !important;
}

/* ==================================
TOP
===================================== */
/* メインビジュアル */
.top-mv {
  width: 90vw;
  margin: 60px auto 0;
}
@media only screen and (min-width: 576px) {
  .lib-fv__thumb {
    height: 80vh;
  }
}
@media only screen and (max-width: 767px) {
  .top-mv {
    width: 100vw;
    margin: 40px auto 0;
  }
}
.top-mv .lib-cnt-011__col .bg-wht {
  background-color: rgba(255, 255, 255, 0.9) !important;
}
.top-mv .lib-cnt-011__col a.lib-card__item:hover {
  text-decoration: none !important;
}
.top-mv .lib-cnt-011__col .lib-card__thumb {
  width: auto;
}
/* 左側１カラム */
.top-mv .lib-cnt-011__col.--left a.lib-card__item {
  width: 250px;
  height: 250px;
}
.top-mv .lib-cnt-011__col.--left .lib-card__thumb img {
  transition: transform .6s ease;
}
/* 右側３カラム */
.top-mv .lib-cnt-011__col.--right a.lib-card__item {
  width: 180px;
  height: 180px;
  background-color: #fff !important;
  border-width: 3px;
}
.top-mv .lib-cnt-011__col.--right .lib-card__thumb img {
  transition: transform .6s ease;
}
.top-mv .lib-cnt-011__col a.lib-card__item:hover .lib-card__thumb img {
  transform: scale(1.1);
}
@media only screen and (max-width: 991px) {
  /* 左側１カラム */
  .top-mv .lib-cnt-011__col.--left a.lib-card__item {
    width: 200px;
    height: 200px;
  }
  /* 右側３カラム */
  .top-mv .lib-cnt-011__col.--right a.lib-card__item {
    width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 768px) {
  /* 右側３カラム */
  .top-mv .lib-cnt-011__col.--right a.lib-card__item {
    width: 125px;
    height: 125px;
  }
}
@media only screen and (max-width: 767px) {
  /* 左側１カラム */
  .top-mv .lib-cnt-011__col.--left a.lib-card__item {
    width: 150px;
    height: 150px;
  }
  /* 右側３カラム */
  .top-mv .lib-cnt-011__col.--right a.lib-card__item {
    width: 100px;
    height: 100px;
  }
}

/* MV下スライダー */
.top-slider .lib-bnr-003__link img {
  transition: transform .6s ease;
}
.top-slider .lib-bnr-003__link:hover img {
  transform: scale(1.1);
}
.top-slider .lib-bnr-003__thumb {
  overflow: hidden;
}
.top-slider-icon {
  width: 40px;
  height: 40px;
}

/* News */
.top-news .lib-cnt-024__menu li,
.top-news .lib-cnt-024__menu li:hover,
.top-news .lib-cnt-024__menu li:visited, 
.top-news .lib-cnt-024__menu li:active,
.top-news .lib-tab__panel, 
.top-news .lib-tab__btn {
  box-shadow: none !important;
}
.top-news .lib-tab__btn[aria-selected=true] {
  color: var(--MAIN);
}
.top-news .lib-blog-002 a {
  text-decoration: none;
}
.top-news .lib-media__category .badge:hover {
  color: var(--WHT) !important;
}
.top-news .lib-badge__tag {
  position: relative;
  padding-left: 10px;
}
.top-news .lib-badge__tag::before {
  position: absolute;
  content: '#';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: inherit;
  color: inherit;
}
.lib-media__category .badge.--ecology-book {
  background-color: var(--ACC);
}
.lib-media__category .badge.--nature {
  background-color: var(--MAIN);
}
.lib-media__category .badge.--foundation {
  background-color: #FF6666;
}
.lib-media__category .badge.--news {
  background-color: var(--BLUE);
}
.lib-media__category a.badge.--ecology-book:hover {
  color: var(--ACC);
  border-color: var(--ACC);
  background-color: var(--WHT);
}
.lib-media__category a.badge.--nature:hover {
  color: var(--MAIN);
  border-color: var(--MAIN);
  background-color: var(--WHT);
}
.lib-media__category a.badge.--foundation:hover {
  color: #FF6666;
  border-color: #FF6666;
  background-color: var(--WHT);
}
.lib-media__category a.badge.--news:hover {
  color: var(--BLUE);
  border-color: var(--BLUE);
  background-color: var(--WHT);
}
.facebook-wrapper .fb_iframe_widget iframe {
  width: 100%;
  border-radius: 1rem !important;
}
@media only screen and (min-width: 992px) {
  .top-news .lib-blog-002 {
    position: relative;
  }
  .top-news-btn {
    z-index: 2;
    position: absolute;
    top: -75px;
    right: 0;
  }  
}
@media only screen and (max-width: 991px) {
  .top-news .lib-card__txtarea {
    position: relative;
    padding-bottom: 70px !important;
  }
  .top-news-btn {
    position: absolute;
    bottom: 10px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top-news .lib-tab__cover {
    border: none !important;
  }
  .top-news-cate {
    overflow-x: scroll;
  }
  .top-news-cate .lib-cnt-024__menu {
    width: max-content;
    gap: 10px;
  }
  .top-news-cate .lib-cnt-024__menu li {
    flex: 0 0 auto;
  }
}

.top-movie video {
  display: block;
  border-radius: 1rem;
}


/* ==================================
スライダー
===================================== */
.lib-gallery__thumb .swiper-slide img,
.lib-gallery__main .swiper-slide img {
  /* object-fit: cover !important; */
  border-radius: .5rem;
  object-fit: contain !important;
}
.lib-gallery__thumb .lib-gallery__btn {
  height: 100px;
}

/* ==================================
学校からの報告フォーム
===================================== */
.lib-flow-001__col:nth-child(3n):after {
  display: block;
}
.page-school-form .lib-form-flow__outer {
  display: none !important;
}
.page-school-form :where(textarea) {
  border-color: var(--MAIN);
}
/* .page-school-form .lib-form__item:nth-last-of-type(2) :where(textarea),
.page-school-form .lib-form__item:nth-last-of-type(3) :where(textarea),
.page-school-form .lib-form__item:last-of-type :where(textarea) {
  border-color: var(--GRY);
} */
.page-school-form .lib-example__text {
  display: none;
}
@media only screen and (min-width: 768px) {
  .page-school-form .lib-form__item {
    display: block;
  }
  .page-school-form .lib-form__title {
    width: 100%;
    padding-right: 0;
    padding-bottom: 12px;
  }
  .page-school-form .lib-form__input {
    width: 100%;
  }
  /*.page-school-form .lib-form__item:nth-last-of-type(2),
  .page-school-form .lib-form__item:nth-last-of-type(3),
  .page-school-form .lib-form__item:last-of-type {
    display: flex;
  }
  .page-school-form .lib-form__item:nth-last-of-type(2) .lib-form__title,
  .page-school-form .lib-form__item:nth-last-of-type(3) .lib-form__title,
  .page-school-form .lib-form__item:last-of-type .lib-form__title {
    width: 300px;
    padding-right: 2rem;
    padding-bottom: 0;
  } */
}



/* ==================================
メディア
===================================== */
/* メディア詳細の画像 */
.media-post__image {
  display: none !important;
}
.media-post__details .lib-gallery__main .swiper-slide {
  height: 100% !important;
}
.media-post__details .lib-gallery__main {
  font-size: 1rem;
  line-height: normal;
}
.media-post__details .lib-gallery__main img {
  margin-bottom: 10px;
}
.media-post__details .lib-gallery__main p {
  opacity: 0;
}
.media-post__details .lib-gallery__main .swiper-slide-active p {
  opacity: 1;
}
.media-post__item,
.lib-swiper__btn {
  border-radius: 1rem !important;
}

/* ==================================
メディアカスタマイズ
===================================== */
.media-post__outer .media-post__item .media-post__chip {
  display: none;
}
.media-post__outer .media-post__item .lib-media__time.media-post__time {
  display: none;
}
.media-post__outer .row-cols-md-3 .media-post__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 32%;
  flex-flow: column-reverse;
  margin-top: 0;
}
.media-post__outer .row-cols-md-3 .media-post__item a {
  text-decoration: none;
  font-size: 1.1rem;
}
.media-post__outer .row-cols-md-3 .media-post__thumb {
  height: 180px;
  width: 100%;
}
.media-post__outer .row-cols-md-3 .media-post__title {
  font-size: 1.5rem;
}
.media-post__outer .row-cols-md-3 {
  gap: 10px;
}



@media print,
screen and (min-width: 768px) {
  .media-post__outer .row-cols-md-3 .media-post__item .media-post__inside {
    padding-left: 0;
    margin-top: 1rem;
  }
}

@media print,
screen and (max-width: 768px) {
  ul.media-post__list.row.row-cols-md-3 {
    padding: 1.5rem .75rem 100px;
  }
  .media-post__outer .row-cols-md-3 .media-post__item {
    width: 100%;
  }
}


/* ==================================
フォーム
===================================== */
input,
.lib-form__select,
textarea,
.lib-input__file,
.lib-input__file-label {
  border-radius: 6px !important;
}
.lib-form-flow__list>li {
  border-radius: 100px;
}

/* ==================================
table 角丸
===================================== */
table {
  border: 1px solid var(--GRY);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1rem !important;
}