@charset "utf-8";
/* Document
 * ========================================================================== 
  ボタンやタイトル等の共通パーツCSS
  以下の基本CSSを読み込み */
@import url(reset.css);
@import url(variable.css);
@import url(module.css);

/* -------------------------------------------------
  レイアウト
------------------------------------------------- */
/*  ボディ、メイン
-------------------------------- */
.body-wrapper {
	position: relative;
  padding: var(--header-height) 0 0 0;
  overflow: clip;
  visibility: hidden;
  opacity: 0;
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
  font-family: var(--font-family-sans-sefif);
  font-size: var(--font-size-small);
}
@media print, screen and (min-width: 768px) {
	.body-wrapper {
		min-width: 1024px;
    font-size: var(--font-size-base);
	}
}

html.is-loaded .body-wrapper {
  visibility: visible;
  opacity: 1;
}

/*  ヘッダー
-------------------------------- */
.header {
  z-index: var(--zindex-header);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
	height: var(--header-height);
	background-color: white;
}

.header.is-fixed {
	position: fixed;
  transform: translate(0, -105%);
}

.header-is-fixed .header.is-fixed {
  transition: all .3s ease;
}

.site-scroll-up .header.is-fixed {
  transition: .48s ease;
  transform: translate(0, 0);
}

/* ヘッダーコンテンツの大枠 */
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 0 0 4vw;
}
@media print, screen and (min-width: 1320px) {
  .header__container {
    padding: 0 4vw 0;
  }
}

/* ロゴ部分 */
.header__logos {
	width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 10px;
  height: 100%;
  position: relative;
  z-index: var(--zindex-headerLogo);
  background-color: white;
}
@media print, screen and (min-width: 768px) {
  .header__logos {
    column-gap: 20px;
    align-items: end;
    height: auto;
  }
}

.header__logo-item {
	display: block;
  position: relative;
}

.header__logo-img {
	display: block;
	height: 35px;
	width: auto;
}
@media print, screen and (min-width: 768px) {
  .header__logo-img {
    height: 40px;
  }
}

/*  フッター
-------------------------------- */
.footer {
	position: relative;
  padding-top: 3rem;
}
@media print, screen and (min-width: 768px) {
	.footer {
		padding-top: 5.8rem;
	}
}

/* コンテンツ部分 */
.footer__contents {
  padding: 0 var(--content-side-gutter-medium);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
@media print, screen and (min-width: 768px) {
  .footer__contents {
    grid-template-columns: 1.8fr 1fr 1fr;
    column-gap: 4%;
  }
}

/* ロゴ */
.footer__logos {
	width: 100%;
  max-width: 400px;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
}
@media print, screen and (min-width: 768px) {
  .footer__logos {
    column-gap: 20px;
  }
}

.footer__logos-item {
	display: block;
  position: relative;
}

.footer__logos-img {
	display: block;
	width: 100%;
  height: auto;
}

/* アドレス */
.footer__addr {
  margin-top: 20px;
  font-size: 19px;
}

/* ボタン */
.footer__btns {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .footer__btns {
    margin-top: 50px;
    max-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4%;
  }
}

.footer__btns__divider:nth-child(1) {
  background-color: var(--color-green);
}
.footer__btns__divider:nth-child(2) {
  background-color: #F7C8CE;
}

.footer__btns__item {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: .8rem 0;
  font-size: var(--font-size-large);
  font-weight: 500;
  color: var(--color-dark);
}

.footer__btns__item-icon {
  display: block;
  height: 25px;
  width: auto;
}

/* 下部 */
.footer__end {
  position: relative;
  background-color: var(--color-dark);
  margin-top: 60px;
  padding: 10px 0 60px 0;
}
@media print, screen and (min-width: 768px){
  .footer__end {
    margin-top: 120px;
    padding: 20px 0;
  }
}

/* 下部 TOPへ戻るボタン */
.footer__end__btn {
  display: block;
  width: fit-content;
  position: absolute;
  bottom: 99%;
  right: 8%;
  padding: 10px 20px;
  background-color: var(--color-dark);
  color: white;
  border-radius: 10px 10px 0 0;
  vertical-align: bottom;
}
@media print, screen and (min-width: 768px) {
  .footer__end__btn {
    right: 4%;
    padding: 14px 30px;
  }
}

.footer__end__btn::after {
  content: '▲';
  color: var(--color-pink);
  font-size: 10px;
  margin-left: 8px;
}

/* 下部 コピーライト */
.footer__end__copy {
  padding: 0 var(--content-side-gutter-small);
  font-size: 10px;
  color: white;
}
@media print, screen and (min-width: 768px) {
  .footer__end__copy {
    text-align: center;
  }
}

/*  セクション
-------------------------------- */
.section {
  padding-top: var(--section-gutter-medium);
  padding-bottom: var(--section-gutter-medium);
  position: relative;
}

.section.section--small {
  padding-top: var(--section-gutter-small);
  padding-bottom: var(--section-gutter-small);
}

.section.section--large {
  padding-top: var(--section-gutter-large);
  padding-bottom: var(--section-gutter-large);
}

/* 上 */
.section.section--top-large {
  padding-top: var(--section-gutter-large);
}

.section.section--top-small {
  padding-top: var(--section-gutter-small);
}

/* 下 */
.section.section--bottom-large {
  padding-bottom: var(--section-gutter-large);
}

.section.section--bottom-small {
  padding-bottom: var(--section-gutter-small);
}

/* 0 */
.section.section--full {
  padding: 0;
}

/*  コンテナ
-------------------------------- */
.container {
	padding: 0 var(--content-side-gutter-medium) 0;
}

.container.container--full {
	padding: 0;
}


/* -------------------------------------------------
  プロジェクト
------------------------------------------------- */
/*  ローディング
-------------------------------- */
.loading {
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  overflow: hidden;
  text-align: center;
  visibility: visible;
  background-color: white;
  opacity: 1;
  transition: transform 500ms cubic-bezier(.165, .84, .44, 1) 300ms;
}

.loading.is-hidden {
	transform: scaleX(0);
  transform-origin: right;
}

.loading__logo {
  z-index: 2;
	width: 8rem;
}
@media print, screen and (min-width: 768px) {
  .loading__logo {
    width: 12rem;
  }
}

.loading__progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-gradation-alpha);
}

/*  ハンバーガーボタン
-------------------------------- */
.hamburger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  aspect-ratio: 1/1;
  padding: 0;
  cursor: pointer;
  background-color: var(--color-dark);
  z-index: var(--zindex-headerLogo);
}
@media print, screen and (min-width: 1320px) {
  .hamburger {
    display: none;
  }
}

.hamburger__container {
  position: relative;
  display: block;
  width: 27px;
  height: 23px;
  margin: auto;
}

.hamburger__item {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: white;
  transition: all .3s ease;
}

.hamburger__container > :nth-child(1) {
  top: 0;
}

.hamburger__container > :nth-child(2) {
  top: 0;
  bottom: 0;
  width: 100%;
}

.hamburger__container > :nth-child(3) {
  bottom: 0;
}

.hamburger.is-active .hamburger__container > :nth-child(1) {
  top: 48%;
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger__container > :nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__container > :nth-child(3) {
  bottom: 44%;
  transform: rotate(-45deg);
}

/* グローバルナビ
-------------------------------- */
.gnav {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100vh;
  padding: var(--header-height) var(--content-side-gutter-medium) 1.8rem;
  overflow-y: auto;
  font-size: 1.4rem;
  background-color: white;
  transition: transform .1s;
  transform: translateX(100%);
  -webkit-overflow-scrolling: touch;
  z-index: var(--zindex-gnav);
}

.gnav.is-active {
  transition: transform 500ms cubic-bezier(.165, .84, .44, 1) 300ms;
  transform: translateX(0);
}
@media print, screen and (min-width: 1320px) {
  .gnav {
    position: initial;
    width: auto;
    height: 100%;
    padding: 0;
    overflow: visible;
    background-color: transparent;
    transform: translateX(0);
  }
}

/* ナビ コンテンツ */
.gnav__container {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 20px;
}
@media print, screen and (min-width: 1320px) {
  .gnav__container {
    flex-direction: column;
    row-gap: initial;
    align-items: end;
    justify-content: space-between;
    height: 100%;
  }
}

@media print, screen and (max-width: 1319px) {
  .gnav__container {
    padding-bottom: 100px;
  }
}

/* ナビ ボタンエリア */
.gnav__btn-area {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media print, screen and (min-width: 1320px) {
  .gnav__btn-area {
    flex-direction: row;
    row-gap: initial;
    column-gap: 15px;
  }
}

.gnav__btn-item {
  display: flex;
  width: 100%;
  color: var(--color-text);
  font-size: var(--font-size-base);
  letter-spacing: 1px;
  padding: 1rem;
  font-weight: 600;
}
@media print, screen and (min-width: 1320px) {
  .gnav__btn-item {
    width: fit-content;
    padding: .6rem 1rem ;
  }
}

.gnav__btn-item:nth-child(1){
  background-color: var(--color-green);
}
.gnav__btn-item:nth-child(2){
  background-color: #F7C8CE;
}

.gnav__btn-item-icon {
  display: inline-block;
  height: 25px;
  width: auto;
  margin-right: 10px;
}

/* ナビ ナビゲーションアイテムエリア */
.gnav__list {
  display: block;
}
@media print, screen and (min-width: 1320px) {
  .gnav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: end;
    column-gap: 4px;
  }
}

.gnav__divider {
  display: block;
}

.gnav__item {
  position: relative;
  display: block;
  padding: .3rem;
  font-size: 16px;
  color: var(--color-text);
}
@media print, screen and (min-width: 1320px) {
  .gnav__item {
    padding: .3rem .3rem 1.2rem .3rem;
  }
}

.gnav__item::after {
  content: '';
  position: absolute;
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--color-pink);
  bottom: 0;
  left: 0;
  transition: all .5s ease;
}

.gnav__item:hover {
  opacity: 1;
}
.gnav__item:hover::after {
  width: 100%;
}

/* 子ページナビ（SP） */
.gnav__item__child {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 768px){
  .gnav__item__child {
    display: none;
  }
}

.gnav__item__child .gnav__item {
  font-size: 14px;
  padding: .1rem .3rem;
  line-height: 1.2;
}

.gnav__item__child .gnav__item::before {
  content: '-';
  color: var(--color-pink);
  margin-right: 7px;
  line-height: 1;
  font-size: 20px;
}

/* PC 子ページナビのアコーディオン */
@media print, screen and (max-width: 768px) {
  .pc-child-gnav {
    display: none;
  }
  .pc-child-gnav.is-mousover {
    display: none;
  }
}
.pc-child-gnav {
  /* visibility: none; */
  opacity: 0;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 1;
  transition: opacity .3s ease, top 0s ease .3s;
  background-color: white;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 1rem 0;
}
.pc-child-gnav.is-mousover {
  /* visibility: visible; */
  opacity: 1;
  z-index: 10;
  top: var(--header-height);
  transition: opacity .3s ease;
}

.pc-child-gnav__head {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: var(--font-family-serif);
}

.pc-child-gnav__body {
  padding: 2.5rem 4%;
}

/* スマホ 下部固定ボタン
-------------------------------- */
.sp-fixed-btns {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 10;
}
@media print, screen and (min-width: 768px) {
  .sp-fixed-btns {
    display: none;
  }
}

.sp-fixed-btns__divider {
  width: 50%;
}
.sp-fixed-btns__divider:nth-child(1) {
  background-color: var(--color-green);
}
.sp-fixed-btns__divider:nth-child(2) {
  background-color: #F7C8CE;
}

.sp-fixed-btns__item {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: .8rem 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
}

.sp-fixed-btns__item-icon {
  display: block;
  height: 22px;
  width: auto;
}

/*  サイトマップ
-------------------------------- */
.sitemap {
  display: flex;
  flex-direction: column;
  column-gap: .5rem;
  border-top: 1px solid var(--color-gray);
}
@media print, screen and (min-width: 768px) {
  .sitemap {
    border-top: none;
  }
}

.sitemap__divider {
  position: relative;
  border-bottom: 1px solid var(--color-gray);
}
@media print, screen and (min-width: 768px) {
  .sitemap__divider {
    border-bottom: none;
  }
}

.sitemap__item {
  display: block;
  padding: 1rem 0;
  font-size: var(--font-size-base);
  color: var(--color-text);
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .sitemap__item {
    padding: .5rem 0;
  }
}

.sitemap__item::before {
  content: '▶︎';
  color: var(--color-pink);
  margin-right: 10px;
  display: inline;
  font-size: var(--font-size-small);
}


/* ニュースリスト 
----------------------------------------------*/
.news-list {
	position: relative;
}

.news-list__divider {
	border-bottom: 1px solid var(--color-gray);
}

.news-list__inner {
	display: block;
	position: relative;
	width: 100%;
	padding: 20px 30px 20px 0;
	background-image: url('../img/new_img/arrow.svg');
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: right 0% bottom 25%;
	transition: all .3s ease;
}
@media print, screen and (min-width: 768px) {
	.news-list__inner {
		background-size: 22px auto;
		background-position: right 0% center;
	}
}

.news-list__inner__date {
	color: var(--color-pink);
	margin-bottom: 6px;
}

.news-list__inner__title {
	color: var(--color-dark);
}

/* メニュー
------------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bottom-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
  }
}

.bottom-menu__item {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 479/300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.bottom-menu__item-icon {
  height: 62px;
  width: auto;
  margin-bottom: 20px;
}

.bottom-menu__item-title {
  background-color: white;
  width: fit-content;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 3px 18px;
  font-size: var(--font-size-large);
  color: var(--color-dark);
}

.bottom-menu__item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .3s ease;
}

.bottom-menu__item:hover .bottom-menu__item-bg {
  transform: scale(1.02);
}

/*  下層ページ ヒーロー
------------------------------------------ */
.inner-kv {
  width: 100%;
  height: auto;
  aspect-ratio: 393/358;
  position: relative;
  background-image:
  repeating-linear-gradient(
    90deg,
    var(--color-blue) ,
    var(--color-blue) 2px,
    transparent 1px,
    transparent 12px
  ),
  repeating-linear-gradient(
    0deg,
    var(--color-blue) ,
    var(--color-blue) 2px,
    #fff 1px,
    #fff 12px
  );
}
@media print, screen and (min-width: 768px) {
  .inner-kv {
    aspect-ratio: 18/7;
    background-image:
    repeating-linear-gradient(
    90deg,
    var(--color-blue) ,
    var(--color-blue) 2px,
    transparent 1px,
    transparent 24px
  ),
  repeating-linear-gradient(
    0deg,
    var(--color-blue) ,
    var(--color-blue) 2px,
    #fff 1px,
    #fff 24px
  );
  }
}

.inner-kv__head {
  position: relative;
}

/* 画像 */
.inner-kv__image {
  width: 100%;
  aspect-ratio: 101/46;
}
@media print, screen and (min-width: 768px) {
  .inner-kv__image {
    width: 70%;
  }
}

.inner-kv__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* タイトルボックス */
.inner-kv__title-box {
  position: absolute;
  width: 80%;
  aspect-ratio: 2/1;
  background: var(--color-gradation);
  top: 70%;
  left: 50%;
  transform: translate(-50%, 0);
  padding: .5rem 0;
}
@media print, screen and (min-width: 768px) {
  .inner-kv__title-box {
    width: 50%;
    max-width: 480px;
    left: initial;
    right: 8%;
    top: 50%;
    transform: translate(0, -50%);
  }
}

.inner-kv__title-box__inner {
  background-color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* タイトル */
.inner-kv__title-text {
  font-size: 24px;
  font-family: var(--font-family-serif);
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .inner-kv__title-text {
    font-size: 38px;
  }
}

.inner-kv__title-text span {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .inner-kv__title-text span {
    font-size: 24px;
  }
}

/* タイトルアイコン */
.inner-kv__title-icon {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .inner-kv__title-icon {
    width: 80px;
  }
}

/* パンくずリスト */
.inner-kv__blead-crambs {
  position: absolute;
  bottom: 6%;
  left: var(--content-side-gutter-medium);
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .inner-kv__blead-crambs {
    left: var(--content-side-gutter-small);
  }
}

.inner-kv__blead-crambs__item {
  position: relative;
  vertical-align: middle;
}

.inner-kv__blead-crambs__item a {
  color: var(--color-dark);
}

.inner-kv__blead-crambs__item::after {
  content: '';
  color: var(--color-pink);
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-pink);
  border-right: 2px solid var(--color-pink);
  transform: translateY(-25%) rotate(45deg);
  margin-left: 8px ;
  margin-right: 8px ;
}

.inner-kv__blead-crambs__item:last-child::after {
  content: none;
}


/*  下層ページ ヒーロー （ミニマムタイプ）
----------------------------------------- */
.inner-kv-min {
  position: relative;
  width: 100%;
}

/* パンくずリスト */
.inner-kv-min__blead-crambs {
  padding: 1rem var(--content-side-gutter-medium);
  display: flex;
  align-items: center;
  background-image:
  repeating-linear-gradient(
    90deg,
    var(--color-blue) ,
    var(--color-blue) 2px,
    transparent 1px,
    transparent 12px
  ),
  repeating-linear-gradient(
    0deg,
    var(--color-blue) ,
    var(--color-blue) 2px,
    #fff 1px,
    #fff 12px
  );
}
@media print, screen and (min-width: 768px) {
  .inner-kv-min__blead-crambs {
    padding: 2rem var(--content-side-gutter-small);
  }
}

.inner-kv-min__blead-crambs__item {
  position: relative;
  vertical-align: middle;
}

.inner-kv-min__blead-crambs__item a {
  color: var(--color-dark);
}

.inner-kv-min__blead-crambs__item::after {
  content: '';
  color: var(--color-pink);
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-pink);
  border-right: 2px solid var(--color-pink);
  transform: translateY(-25%) rotate(45deg);
  margin-left: 8px ;
  margin-right: 8px ;
}

.inner-kv-min__blead-crambs__item:last-child::after {
  content: none;
}

/* ページタイトル */
.inner-kv-min__main {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--color-gradation-alpha);
  min-height: 250px;
  padding: 3rem 0 ;
}
@media print, screen and (min-width: 768px) {
  .inner-kv-min__main {
    min-height: 310px;
    padding: 3.4rem 0 ;
  }
}

.inner-kv-min__main h1 {
  position: relative;
  font-family: var(--font-family-serif);
  padding-left: 3rem;
}
@media print, screen and (min-width: 768px){
  .inner-kv-min__main h1 {
    padding-left: 8%;
  }
}

.inner-kv-min__main h1::before {
  content: '';
  display: block;
  width: 2rem;
  height: 100%;
  background: var(--color-gradation-v);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .inner-kv-min__main h1::before {
    width: 3rem;
  }
}

.inner-kv-min__main h1 .ruby {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 768px){
  .inner-kv-min__main h1 .ruby {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.inner-kv-min__main h1 .title {
  display: block;
  font-weight: 500;
  font-size: 32px;
}
@media print, screen and (min-width: 768px){
  .inner-kv-min__main h1 .title {
    font-size: 42px;
  }
}

/*  ページ内インデックス
-------------------------------- */
.page-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5%;
  row-gap: 4px;
}
@media print, screen and (min-width: 768px) {
  .page-index {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4%;
    row-gap: 1rem;
  }
  .page-index.page-index--gnav {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-index__divider {
  position: relative;
  width: 100%;
  border-bottom: 1px solid;
  border-image: var(--color-gradation) 1;
  z-index: 1;
}

.page-index__item {
  display: block;
  color: var(--color-dark);
  padding: .8rem .3rem;
}
@media print, screen and (min-width: 768px) {
  .page-index__item {
    padding: 1.2rem .3rem;
  }
}

.page-index__item::after {
  content: '';
  display: block;
  background-image: url('../img/new_img/arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.4rem;
  aspect-ratio: 32/12;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .page-index__item::after {
    width: 1.7rem;
  }
}

/* アンカーリンク */
.page-index__item.page-index__item--anchor::after {
  transform: translateY(-50%) rotate(90deg);
}

/* ホバー */
.page-index__item::before {
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to right, rgba(238, 135, 180, 0.5), rgba(100, 192, 171, 0.5));
  opacity: 0;
  transition: all .3s ease;
}
.page-index__item:hover::before {
  opacity: 1;
}
.page-index__item:hover {
  font-weight: 500;
}

/* 現在のページ */
.page-index__item.is-current::before {
  opacity: 1;
}
.page-index__item.is-current::after {
  display: none;
}

/* -------------------------------------------------
  コンポーネント（パーツ）
------------------------------------------------- */
/*  タイトル
-------------------------------- */
/*  H1
---------------------- */
.title-h1 {
  position: relative;
  color: var(--color-dark);
  font-family: var(--font-family-serif);
  line-height: 1;
  padding: 0 0 0 var(--content-side-gutter-medium);
}
@media print, screen and (min-width: 768px) {
  .title-h1 {
    padding: 0;
  }
}

.title-h1 span {
  display: block;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 12px;
}
@media print, screen and (min-width: 768px) {
  .title-h1 span {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

.title-h1 p {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 768px) {
  .title-h1 p {
    font-size: 42px;
  }
}

.title-h1::before {
  content: "";
  display: block;
  height: 100%;
  width: var(--content-side-gutter-medium);
  background: var(--color-gradation-v);
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .title-h1::before {
    width: calc(var(--content-side-gutter-medium)/2);
    max-width: 52px;
  }
}

.container .title-h1::before {
  transform: translateX(calc(-1*var(--content-side-gutter-medium)));
}

/* 下部マージンがある時 */
.title-h1.title-h1--mb {
  margin-bottom: var(--title-margin-bottom);
}

/* PCの時右側に */
@media print, screen and (min-width: 768px) {
  .title-h1.title-h1--pc-right::before {
    left: initial;
    right: 0;
    transform: translateX(var(--content-side-gutter-medium));
  }
}

/*  H2
---------------------- */
.title-h2 {
  width: 100%;
  background-image: linear-gradient(to right, rgba(238, 135, 180, 0.5), rgba(100, 192, 171, 0.5));
  padding: 8px 8px;
  font-size: 22px;
  font-family: var(--font-family-serif);
}
@media print, screen and (min-width: 768px) {
  .title-h2 {
    padding: 10px 10px;
    font-size: 32px;
  }
}

.title-h2.title-h2--mb {
  margin-bottom: var(--title-margin-bottom-s);
}

/*  H3
---------------------- */
.title-h3 {
  border-bottom: 1px solid;
  border-image: var(--color-gradation) 1;
  padding: 4px 4px 8px 18px;
  font-family: var(--font-family-serif);
  font-weight: 500;
  font-size: 20px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .title-h3 {
    padding: 8px 8px 10px 20px;
    font-size: 28px;
  }
}

.title-h3::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-image: var(--color-gradation-v);
}

.title-h3.title-h3--mb {
  margin-bottom: var(--title-margin-bottom-s);
}

/*  H4 〜 H6
---------------------- */
.title-h4,
.title-h5,
.title-h6 {
  font-family: var(--font-family-serif);
  font-weight: 500;
}

.title-h4.title-h4--mb,
.title-h5.title-h5--mb,
.title-h6.title-h6--mb {
  margin-bottom: var(--title-margin-bottom-s);
}

.title-h4 {
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .title-h4 {
    font-size: 26px;
  }
}

.title-h5 {
  font-size: 17px;
}
@media print, screen and (min-width: 768px) {
  .title-h5 {
    font-size: 24px;
  }
}

.title-h6 {
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .title-h6 {
    font-size: 22px;
  }
}

/*  テキスト
-------------------------------- */
/*  リードテキスト
---------------------- */
.text-lead {
  font-family: var(--font-family-serif);
  font-size: 28px;
}
@media print, screen and (min-width: 768px) {
  .text-lead {
    font-size: 32px;

  }
}

/*  リードテキスト サブ
---------------------- */
.text-lead-sub {
  font-family: var(--font-family-serif);
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .text-lead-sub {
    font-size: 24px;
  }
}

/*  センテンス
---------------------- */
.text-sentence {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
@media print, screen and (min-width: 768px) {
  .text-sentence {
    font-size: 16px;
  }
}

/*  リンク(インライン)
---------------------- */
.text-link {
  text-decoration: underline;
  text-decoration-color: #BA527C;
}

/*   ボーダーボタン
-------------------------------- */
.border-button {
  display: block;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .border-button {
    max-width: 320px;
  }
  .border-button.border-button--l {
    max-width: 600px;
  }
}

/* インラインボタン */
.border-button.border-button--inline {
  display: inline-block;
  width: fit-content;
}

.border-button__inner {
  display: block;
  border: 1px solid var(--color-dark);
  padding: 17px 10px;
  position: relative;
  text-align: center;
  color: var(--color-text);
  background-image: url('../img/new_img/arrow.svg');
  background-repeat: no-repeat;
  background-size: auto .7rem;
  background-position: right 8% center;
  transition: all .3s ease;
}

.border-button__inner:hover {
  background-position: right 4% center;
}

/* 小サイズ */
.border-button.border-button--s .border-button__inner {
  padding: 8px 10px;
}
/* タグ */
.border-button.border-button--inline .border-button__inner {
  padding: 4px 2rem;
  background-image: none;
}

/*   色付きボタン
-------------------------------- */
.pink-button,
.green-button {
  display: block;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .pink-button,
  .green-button {
    max-width: 320px;
  }
  .pink-button.pink-button--l,
  .green-button.green-button--l {
    max-width: 600px;
  }
}

/* インラインボタン */
.pink-button.pink-button--inline,
.green-button.green-button--inline {
  display: inline-block;
  width: fit-content;
}

.pink-button {
  background-color: var(--color-pink-pastel);
}
.green-button {
  background-color: var(--color-green);
}

.pink-button__inner,
.green-button__inner 
{
  display: block;
  padding: 17px 10px;
  position: relative;
  text-align: center;
  color: var(--color-text);
  background-image: url('../img/new_img/arrow-dark.svg');
  background-repeat: no-repeat;
  background-size: auto .7rem;
  background-position: right 8% center;
  transition: all .3s ease;
}

.pink-button__inner:hover,
.green-button__inner:hover {
  background-position: right 4% center;
}

/* 小サイズ */
.pink-button.pink-button--s .pink-button__inner,
.green-button.green-button--s .green-button__inner {
  padding: 8px 10px;
}
/* インライン */
.pink-button.pink-button--inline .pink-button__inner,
.green-button.green-button--inline .green-button__inner {
  padding: 4px 2rem;
  background-image: none;
}

/*   ファイルボタン
-------------------------------- */
.file-button {
  display: block;
  width: 100%;
}

.file-button__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-dark);
  padding: 17px 10px;
  position: relative;
  text-align: center;
  color: var(--color-text);
  background-image: url('../img/new_img/arrow.svg');
  background-repeat: no-repeat;
  background-size: auto .7rem;
  background-position: right 4% center;
  transition: all .3s ease;
}

.file-button__inner:hover {
  background-position: right 1% center;
}

.file-button__icon {
  display: block;
  width: 30px;
}

.file-button__name {
  text-decoration: underline;
  display: block;
  width: calc(100% - 80px - .7rem);
  text-align: left;
}

/*  表 (定義リスト)
-------------------------------- */
.dl-table {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-gray-dark);
  border-left: 1px solid var(--color-gray-dark);
  border-right: 1px solid var(--color-gray-dark);
}
@media print, screen and (min-width: 768px) {
  .dl-table {
    grid-template-columns: 1fr 2.5fr;
  }
}

/* dt */
.dl-table__dt {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--color-gray-dark);
}
@media print, screen and (min-width: 768px) {
  .dl-table__dt {
    padding: 1rem 1.2rem;
  }
}

/* dt 色派生 */
.dl-table__dt.dl-table__dt--pink {
  background-color: var(--color-pink-pastel);
}
.dl-table__dt.dl-table__dt--green {
  background-color: var(--bg-color-green);
}

/* dd */
.dl-table__dd {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--color-gray-dark);
}
@media print, screen and (min-width: 768px ){
  .dl-table__dd {
    border-left: 1px solid var(--color-gray-dark);
    padding: 1rem 1.2rem;
  }
}

/*  リスト
-------------------------------- */
/*  大きなリスト
---------------------- */
.main-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.main-list__item {
  display: flex;
  align-items: baseline;
  column-gap: 6px;
}
@media print, screen and (min-width: 768px) {
  .main-list__item {
    column-gap: 12px;
  }
}

.main-list__item::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50px;
  background-color: var(--color-pink);
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .main-list__item::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.main-list__item-head {
  font-family: var(--font-family-serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .main-list__item-head {
    font-size: 26px;
  }
}

/*  小さなリスト
---------------------- */
.sub-list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.sub-list__item {
  color: var(--color-dark);
  text-indent: -16px;
  padding-left: 16px;
}

.sub-list__item::before {
  content: '・';
  color: var(--color-pink);
  margin-right: 2px;
}

/* 米印 */
.sub-list.sub-list--kome .sub-list__item::before {
  content: '※';
}

/* アスタリスク */
.sub-list.sub-list--asterisk .sub-list__item::before {
  content: '＊';
}

/* リンク */
.sub-list.sub-list--link .sub-list__item a {
  color: #0000EE;
  text-decoration: underline;
}
.sub-list.sub-list--link .sub-list__item::before {
  content: '＊';
  color: #0000EE;
}

/*  大きな番号リスト
---------------------- */
.main-list-order {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
  counter-reset: listnum;
}

.main-list-order__item {
  display: flex;
  align-items: baseline;
  column-gap: 6px;
}
@media print, screen and (min-width: 768px) {
  .main-list-order__item {
    column-gap: 12px;
  }
}

.main-list-order__item::before {
  counter-increment: listnum;
	content: '0' counter(listnum);
  display: block;
  color: var(--color-pink);
  flex-shrink: 0;
  font-size: 22px;
  font-family: var(--font-family-serif);
}
@media print, screen and (min-width: 768px) {
  .main-list-order__item::before {
    font-size: 28px;
  }
}

.main-list-order__item-head {
  font-family: var(--font-family-serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .main-list-order__item-head {
    font-size: 26px;
  }
}

/*  小さな番号リスト
---------------------- */
.sub-list-order {
  display: flex;
  flex-direction: column;
  row-gap: .8rem;
  counter-reset: listnum;
}

.sub-list-order__item {
  display: flex;
  align-items: baseline;
  column-gap: 2px;
}
@media print, screen and (min-width: 768px) {
  .sub-list-order__item {
    column-gap: 5px;
  }
}

.sub-list-order__item::before {
  counter-increment: listnum;
	content: counter(listnum);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--color-pink);
  flex-shrink: 0;
  font-size: 17px;
  width: 24px;
  height: 24px;
  font-family: var(--font-family-serif);
  border: 1px solid var(--color-pink);
  border-radius: 50px;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .sub-list-order__item::before {
    font-size: 20px;
  }
}

/*  色付き番号リスト
---------------------- */
.color-list-order {
  counter-reset: listnum;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
@media print, screen and (min-width: 768px) {
  .color-list-order {
    row-gap: 1.7rem;
  }
}

.color-list-order__item {
  line-height: 1.8;
  display: flex;
  align-items: baseline;
  column-gap: .6rem;
}
@media print, screen and (min-width: 768px) {
  .color-list-order__item {
    align-items: flex-start;
    column-gap: 1.1rem;
  }
}

.color-list-order__item::before {
  counter-increment: listnum;
	content: '0' counter(listnum);
  display: block;
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  font-family: var(--font-family-serif);
  color: var(--color-pink);
}
@media print, screen and (min-width: 768px) {
  .color-list-order__item::before {
    font-size: 30px;
  }
}

.color-list-order__item:nth-child(2n)::before {
  color: var(--color-purple);
}
.color-list-order__item:nth-child(3n)::before {
  color: var(--color-green);
}
.color-list-order__item:nth-child(4n)::before {
  color: #64C0AB;
}

/*  アコーディオンボックス
----------------------------------------------------------
  アコーディオンの動きを制御するクラスは別で付与する必要有
  module.cssで定義しています。 */
.accordion-box {
  background-color: var(--color-gray-light);
  transition: all .3s ease;
}

.accordion-box:has(.is-open) {
  background-color: var(--color-pink-light);
}

.accordion-box__head {
  padding: .9rem 2.3rem .9rem 1rem;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .accordion-box__head {
    padding: 1.8rem 4.5rem 1.8rem 2rem ;
  }
}

.accordion-box__cont {
  padding: 1.4rem 1rem;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .accordion-box__cont {
    padding: 2rem 2rem;
  }
}

.accordion-box__cont::before {
  content: '';
  width: calc(100% - 2rem);
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  .accordion-box__cont::before {
    width: calc(100% - 4rem);
  }
}

/*  バナー
-------------------------------- */
/*  メニューバナー
---------------------- */
.menu-banner {
  width: 100%;
  position: relative;
}

.menu-banner__inner {
  display: block;
  position: relative;
}

.menu-banner__inner::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/parts/banner-cover.svg');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top left;
}

/* 画像 ※幅高さの基準*/
.menu-banner__inner-img {
  display: block;
  width: 100%;
  aspect-ratio: 57/19;
  object-fit: cover;
}

/* コンテナ */
.menu-banner__inner-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .menu-banner__inner-container {
    padding: 18px;
  }
}

/* タイトル */
.menu-banner__title h1 {
  background-color: white;
  color: var(--color-pink);
  font-family: var(--font-family-serif);
  font-size: 19px;
}
@media print, screen and (min-width: 768px) {
  .menu-banner__title h1 {
    font-size: 26px;
  }
}

.menu-banner__title p {
  font-family: var(--font-family-caveat);
  font-size: 16px;
  line-height: 1.9;
}
@media print, screen and (min-width: 768px) {
  .menu-banner__title p {
    font-size: 26px;
  }
}
.menu-banner__title p.white {
  color: white;
}

/* ボタン */
.menu-banner__button {
  display: flex;
  align-self: flex-end;
  align-items: center;
  width: fit-content;
  background-color: white;
  padding-left: 8px;
  padding-right: 4px;
}

.menu-banner__button::before {
  content: '';
  display: inline-block;
  height: 18px;
  width: 24px;
  background-image: url('../img/new_img/arrow-dark.svg');
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: left center;
}

/*  汎用バナー
---------------------- */
a.banner {
  display: block;
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  a.banner {
    max-width: 280px;
  }
}

a.banner img {
  display: block;
  width: 100%;
}

/*  サムネ付きYoutube
---------------------- */
.thumb-youtube {
  width: 100%;
  aspect-ratio: 57/32;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.thumb-youtube__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 57/32;
  object-fit: cover;
  object-position: center;
  transition: all .3s ease;
}

.thumb-youtube.is-start .thumb-youtube__thumb{
  opacity: 0;
  pointer-events: none;
}

.thumb-youtube iframe {
  aspect-ratio: 57/32;
  width: 100%;
}

/*  普通のYoutube
---------------------- */
.youtube {
  width: 100%;
  aspect-ratio: 57/32;
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 57/32;
}

/*  グリッドコンテナ
-------------------------------- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media print, screen and (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
  }
  .grid-container.grid-container--w1000 {
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    /* 画像が枠に収まるようにする */
    justify-items: center;
  }
}

/* ギャップ 広 */
.grid-container.grid-container--gap-l {
  gap: 18px;
}
@media print, screen and (min-width: 768px) {
  .grid-container.grid-container--gap-l {
    gap: 38px;
  }
}

/* グリッドアイテム */
/* デフォルト 1カラム */
.grid-container__item {
  display: block;
  width: 100%;
  grid-column: span 6;
}
@media print, screen and (min-width: 768px) {
  .grid-container__item {
    grid-column: span 12;
  }
}

/* 2カラム PCとSPで個別設定 */
@media print, screen and (max-width: 767px) {
  .grid-container__item-sp-2 {
    grid-column: span 3;
  }
}
@media print, screen and (min-width: 768px) {
  .grid-container__item-pc-2 {
    grid-column: span 6;
  }
}

/* 3カラム PCとSPで個別設定 */
@media print, screen and (max-width: 767px) {
  .grid-container__item-sp-3 {
    grid-column: span 2;
  }
}
@media print, screen and (min-width: 768px) {
  .grid-container__item-pc-3 {
    grid-column: span 4;
  }
}

/* 4カラム SPで4列はキツいのでPCのみ */
@media print, screen and (min-width: 768px) {
  .grid-container__item-pc-4 {
    grid-column: span 3;
  }
}

/* グリッドアイテムの中身が一枚画像の場合。
  このクラスはなくてもいいし、個別にcssを書いてもいい */
.grid-container__item-img {
  display: block;
  width: 100%;
}


/*追記*/
.pc-child-gnav{
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.pc-child-gnav.is-mouseover{
    opacity: 1;
    top: 100px;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.page-navi{
    padding-bottom: var(--section-gutter-medium);
    position: relative;
}

.sec{
    padding-bottom: var(--section-gutter-medium);
    position: relative;
}

.inner-kv{
  margin-bottom: var(--section-gutter-medium);
}

/*  H2
---------------------- */
h2 {
  width: 100%;
  background-image: linear-gradient(to right, rgba(238, 135, 180, 0.5), rgba(100, 192, 171, 0.5));
  padding: 8px 8px;
  font-size: 22px;
  font-family: var(--font-family-serif);
}
@media print, screen and (min-width: 768px) {
  h2 {
    padding: 10px 10px;
    font-size: 32px;
  }
}

h2 {
  margin-bottom: var(--title-margin-bottom-s);
}

/*  H3
---------------------- */
h3 {
  border-bottom: 1px solid;
  border-image: var(--color-gradation) 1;
  padding: 4px 4px 8px 18px;
  font-family: var(--font-family-serif);
  font-weight: 500;
  font-size: 20px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  h3 {
    padding: 8px 8px 10px 20px;
    font-size: 28px;
  }
}

h3::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-image: var(--color-gradation-v);
}

h3 {
  margin-bottom: var(--title-margin-bottom-s);
}

/*  H4 〜 H6
---------------------- */
h4,
h5,
h6 {
  font-family: var(--font-family-serif);
  font-weight: 500;
}

h4 {
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
h4 {
    font-size: 26px;
  }
}

h5 {
  font-size: 17px;
}
@media print, screen and (min-width: 768px) {
h5 {
    font-size: 24px;
  }
}

.titleStaff,
h6{
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .titleStaff,
  h6{
    font-size: 22px;
  }
}

.titleStaff{
  margin-top: var(--title-margin-bottom-s);
}

/*  センテンス
---------------------- */
p {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}



/*  ページナビ
-------------------------------- */
.page-navi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5%;
  row-gap: 4px;
}
@media print, screen and (min-width: 768px) {
  .page-navi {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4%;
    row-gap: 1rem;
  }
  .page-index.page-index--gnav {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-navi li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid;
  border-image: var(--color-gradation) 1;
  z-index: 1;
}

.page-navi li a {
  display: block;
  color: var(--color-dark);
  padding: .8rem .3rem;
}
@media print, screen and (min-width: 768px) {
  .page-navi li a{
    padding: 1.2rem .3rem;
  }
}

.page-navi li a::after {
  content: '';
  display: block;
  background-image: url('../img/new_img/arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.4rem;
  aspect-ratio: 32/12;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .page-navi li a::after {
    width: 1.7rem;
  }
}

/* アンカーリンク */
.page-navi li a::after {
  transform: translateY(-50%) rotate(90deg);
}

.linkPage .page-navi li a::after {
  transform: translateY(0) rotate(0);
}

/* ホバー */
.page-navi li a::before {
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to right, rgba(238, 135, 180, 0.5), rgba(100, 192, 171, 0.5));
  opacity: 0;
  transition: all .3s ease;
}
.page-navi li a:hover::before {
  opacity: 1;
}
.page-navi li a:hover {
  font-weight: 500;
}

/* 現在のページ */
.page-index__item.is-current::before {
  opacity: 1;
}
.page-index__item.is-current::after {
  display: none;
}

.inner-kv-min__main{
  margin-bottom: var(--section-gutter-medium);
}

.bottom-menu{
  margin-top: 50px;
}

/*   拡大ボタン
-------------------------------- */
.alnC.mt10 a,.btn a{
  display: block;
  width: 100%;
  margin: auto;
  margin-bottom: 30px;
}
.page-content-list a{
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .alnC.mt10 a,.btn a,.page-content-list a{
    max-width: 600px;
  }
}

/* インラインボタン */
.alnC.mt10 a,.btn a,.page-content-list a{
  display: inline-block;
}

.alnC.mt10 a,.btn a,.page-content-list a{
  display: block;
  border: 1px solid var(--color-dark);
  padding: 17px 10px;
  position: relative;
  text-align: center;
  color: var(--color-text);
  background-image: url('../img/new_img/arrow.svg');
  background-repeat: no-repeat;
  background-size: auto .7rem;
  background-position: right 8% center;
  transition: all .3s ease;
}

.alnC.mt10 a:hover,.btn a:hover,.page-content-list a:hover {
  background-position: right 4% center;
}


.kyoiku55_flex.career02 {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}

.kyoiku55_flex.career02 .kyoiku_flex_in {
	width: 47.5%;
}

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

.kyoiku55_flex.career02 .kyoiku_flex_in {
	padding: 20px 0 0 20px;
	box-sizing: border-box;
	position: relative;
}

.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_01a,
.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_02a {
	width: 100%;
	padding: 15px 20px;
	font-size: 30px;
	box-sizing: border-box;
	text-align: center;
}

.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_01a {
	background-color: #F7C8CE;
}

.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_02a {
	background-color: #BEDFC2;
}

.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_01b,
.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_02b {
	position: absolute;
	top: 1px; left: 1px;
	font-size: 72px;
	line-height: 1.0;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_01a,
	.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_02a {
		font-size: 24px;
		padding: 15px 15px 15px 30px;
	}
	.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_01b,
	.kyoiku55_flex.career02 .kyoiku_flex_in p.career02_02b {
		font-size: 48px;
	}
}

.red{
  color:#EE87B4;
}


/*  表 (定義リスト)
-------------------------------- */
.table-responsive table,
.acbox-under table,
.inter .table{
  width: 100%;
  margin-bottom: 20px;
}

.acbox-under table{
  margin-top: 20px;
}

.table-responsive table,
.acbox-under table,
.inter .table{

  border-top: 1px solid var(--color-gray-dark);
  border-left: 1px solid var(--color-gray-dark);
  border-right: 1px solid var(--color-gray-dark);
}


/* dt */
.table-responsive table th,
.acbox-under table th,
.inter .table th{
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--color-gray-dark);
  border-left: 1px solid var(--color-gray-dark);
  font-weight: normal;
}
@media print, screen and (min-width: 768px) {
  .table-responsive table th,
  .acbox-under table th,
  .inter .table th{
    padding: 1rem 1.2rem;
  }
}

/* dt 色派生 */
.table-responsive table th,
.acbox-under table th,
.inter .table th{
  background-color: var(--color-pink-pastel);
}

/* dd */
.table-responsive table td,
.acbox-under table td,
.inter .table td{
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--color-gray-dark);
}
@media print, screen and (min-width: 768px ){
.table-responsive table td,
  .acbox-under table td,
  .inter .table td{
    border-left: 1px solid var(--color-gray-dark);
    padding: 1rem 1.2rem;
  }
}

/* アコーディオン
------------------------------------ */
/* トリガー要素 */
.acbox{
  position: relative;
  cursor: pointer;
}

/* トグルアイコン */
.js-accordion-trg__btn {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: var(--color-pink);
  border-radius: 500px;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  transition: all .3s ease;
}
@media print, screen and (min-width: 768px) {
  .js-accordion-trg__btn {
    width: 30px;
    height: 30px;
    right: 1.8rem;
  }
}

.acbox label{
  display: block;
  position: relative;
  cursor: pointer;
}

.acbox input:checked ~ label::after {
    content: "▲";
}
.acbox label:after {
    color: #EE87B4;
    content: "▼";
    position: absolute;
    top: 50%;
    right: 45%;
    margin-top: -14px;
    font-size: 0.9em;
}


/* 隠しコンテンツ */
.acbox div{
  transition: max-height 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.acbox input:checked ~ div {
  max-height: 2000px;
}


/*よくある質問*/
.specific_faq dl {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: dashed 1px #ccc;
}

.specific_faq dt {
	font-weight: bold;
	margin-bottom: 15px;
}

.specific_faq dt,
.specific_faq dd {
	padding-left: 35px;
	text-indent: -30px;
	margin-left: 0!important;
}

.specific_faq dd a {
	word-break: break-all;
}

.specific_faq dt::before {
   content: "Q.";
   font-size: 1.2em;
   padding-right: 10px;
   color: #EE87B4;
}

.specific_faq dd::before {
   content: "A.";
   font-size: 1.2em;
   padding-right: 10px;
   color: #BEDFC2;
   font-weight: bold;
}

@media screen and (max-width: 640px) {
	.specific_faq {
		width: 100%;
		margin-bottom: 30px;
	}

	.specific_faq dt,
	.specific_faq dd {
		padding-left: 0;
		text-indent: 0;
	}

	.specific_faq dt::before,
	.specific_faq dd::before {
		padding-right: 0;
		margin-bottom: 5px;
		display: block;
	}  

}

.thumb {
  margin-bottom: 20px;
}

.youtube_flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.youtube_box2{
  width:calc((100% - 20px) / 2);
  margin-bottom: 20px;
}


.youtube_box_in{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube_box_in iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}


@media screen and (max-width: 640px) {
  .youtube_flex{
    display: block;
  }

  .youtube_box2{
    width:100%;
    margin-bottom: 20px;
  }
}

.faq{
  margin-bottom: 20px;
}

.faq dt{
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}

.faq dt:before{
  content:"Q";
  display: inline-block;
  margin-right: 8px;
  color: #EE87B4;
  font-size: 25px;
  top:-5px;;
  left: 0;
  position: absolute;
}

.faq dd{
  padding-left: 30px;
}

.faq dd .faq-tit-a:before{
  content:"A";
  display: inline-block;
  margin-right: 8px;
  color: #BEDFC2;
  font-size: 25px;
  top:-8px;;
  left: 0;  
  position: absolute;
}

.faq dd .faq-tit-a{
  position: relative;
  padding-left: 30px;
 font-size: 18px;
  margin-top: 20px;
}

.inter .Information dt span{
  font-size: 18px;
}


/*=======
TOPページCSS
=======*/
/* -------------------------------------------------
  キービジュアル
------------------------------------------------- */
.top-kv {
  position: relative;
  display: block;
  width: 100%;
	background-color: white;
}
@media print, screen and (min-width: 768px) {
  .top-kv {
    display: grid;
    align-items: end;
    grid-template-columns: 300px 1fr;
  }
}

/* スライダーコンテナ */
.top-kv__container {
	position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 30vw;
}
@media print, screen and (min-width: 768px){
  .top-kv__container {
    padding-bottom: initial;
    order: 2;
  }
}

/* スライダー */
.top-kv__slider.swiper {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .top-kv__slider.swiper {
    width: calc(100vw - 300px );
  }
}

.top-kv__slider .swiper-wrapper {
  width: 100%;
  height: auto;
}

.top-kv__slider .swiper-slide {
  width: 100%;
}

/* スライダーボタン&ページャー */
.top-kv__slide-options {
  width: 100%;
  background-color: var(--color-gray-light);
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .top-kv__slide-options {
    order: 1;
  }
}

.top-kv__pagination {
  text-align: center;
  font-size: 20px;
}

.top-kv__slide-btn-prev,
.top-kv__slide-btn-next {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-dark);
}

.top-kv__slide-btn-prev span,
.top-kv__slide-btn-next span {
  display: block;
  width: 0;
  height: 0;
  border-bottom: 6px solid white;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.top-kv__slide-btn-prev {
  left: 0;
}
.top-kv__slide-btn-prev span {
  transform: rotate(-90deg);
}

.top-kv__slide-btn-next {
  right: 0;
}
.top-kv__slide-btn-next span {
  transform: rotate(90deg);
}


/* タイトル */
.top-kv__title {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .top-kv__title {
    width: 36%;
    max-width: 430px;
    bottom: 50%;
    transform: translate(-50%, 50%);
  }
}

.top-kv__title-picture {
  display: block;
  height: 100%;
  width: auto;
}

/* -------------------------------------------------
  上部のバナー
------------------------------------------------- */
.top-head-bnr {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .top-head-bnr {
    flex-direction: row;
    justify-content: center;
    column-gap: 3%;
  }
}

.top-head-bnr__item {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .top-head-bnr__item {
    width: 48%;
    max-width: 580px;
  }
}

/* -------------------------------------------------
  看護理念
------------------------------------------------- */
.top-philosophy {
  display: grid;
  grid-template-columns: 1fr;
}
@media print, screen and (min-width: 768px) {
  .top-philosophy {
    grid-template-columns: 1fr 1fr;
    column-gap: 6%;
  }
}

/* .top-philosophy__text-area {} */

.top-philosophy__image-area {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .top-philosophy__image-area {
    margin-top: 0;
  }
}

.top-philosophy__image-area img {
  display: block;
  width: 100%;
}

/* -------------------------------------------------
  看護部長からの挨拶
------------------------------------------------- */
/* 背景 */
.top-greeting-bg {
  position: relative;
  z-index: 1;
}
.top-greeting-bg::before {
  content: '';
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 80%;
  background-color: var(--bg-color-green);
  bottom: 0;
  left: 0;
}

@media print, screen and (min-width: 768px) {
  .top-greeting-bg::before {
    width: 80%;
    height: calc(50% + var(--section-gutter-medium));
    top: calc(50% + var(--section-gutter-medium));
    bottom: initial;
    transform: translateY(-50%);
  }
}

/* コンテンツ */
.top-greeting {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}
@media print, screen and (min-width: 768px) {
  .top-greeting {
    grid-template-columns: 1.4fr 1fr;
    column-gap: 4%;
  }
}

.top-greeting__image-area {
  order: 2;
}
@media print, screen and (min-width: 768px) {
  .top-greeting__image-area {
    order: 1;
  }
}

.top-greeting__image-area img {
  
  transform: translateX(calc(-1*var(--content-side-gutter-medium)));
}

.top-greeting__text-area {
  display: contents;
}
@media print, screen and (min-width: 768px) {
  .top-greeting__text-area {
    display: block;
    order: 2;
  }
}

.top-greeting__text-area h1 {
  order: 1;
}
@media print, screen and (min-width: 768px) {
  .top-greeting__text-area h1 {
    order: initial;
    margin-bottom: 60px;
  }
}

.top-greeting__text-area__contents {
  order: 3;
}
@media print, screen and (min-width: 768px) {
  .top-greeting__text-area__contents {
    order: initial;
  }
}

/* -------------------------------------------------
  お知らせ
------------------------------------------------- */
.top-news {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .top-news {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 300px 1fr;
  }
  .top-news h1 {
    margin-top: 5rem;
  }
}

/* ニュースエリア */
.top-news-contents {
  background-color: var(--bg-color-pink);
  padding: 2rem 5%;
  height: 500px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .top-news-contents {
    background-color: var(--bg-color-pink);
    padding: 5rem 5%;
    height: 550px;
  }
  .top-news-contents::before {
    content: '';
    display: block;
    background-color: var(--bg-color-pink);
    height: 100%;
    width: 25%;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

.top-news-contents__inner {
  height: 100%;
}

/* ニュースリスト 
--------------------------------------
  共通パーツはnews.cssへ
*/
.news-list.news-list--top {
	height: 100%;
	padding-right: 10%;
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE, Edge 対応 */
	scrollbar-width: none;
	/* Firefox 対応 */
}
.news-list.news-list--top::-webkit-scrollbar {
	/* Chrome, Safari 対応 */
	display: none;
}

.news-list.news-list--top .news-list__inner {
  padding: 10px 30px 10px 0;
}

/* リスト スクロールバー */
.simplebar-scrollbar::before {
  background: var(--color-pink);
  border-radius: 50px;
  width: 8px !important;
  left: 0 !important;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.simplebar-track {
  background: #ccc;
  border-radius: 50px;
  width: 8px !important;
}

/* ボタン */
.top-news + .border-button {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .top-news + .border-button {
    margin-top: -20px;
    margin-right: 4%;
  }
}

/* -------------------------------------------------
  看護師の声 スライダー
------------------------------------------------- */
/* 背景 */
.top-voice-bg {
  position: relative;
  z-index: 1;
  background-image: url('../img/new_img/bg-tree-yellow.svg'), url('../img/new_img/bg-tree-pink.svg'), linear-gradient(to bottom, #fff 0%, #fff 10%, #fafafa 10%,#fafafa 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: 45% auto, 50% auto ;
  background-position: left -4% top 0, right -4% top 0;
}
@media print, screen and (min-width: 768px) {
  .top-voice-bg {
    background-size: auto 80%, auto 95% ;
    background-position: left -10% bottom 0, right -30% bottom 0;
  }
}

/* タイトル */
.top-voice-title {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 5rem;
}

.top-voice-title img {
  height: 50px;
  width: auto;
}
@media print, screen and (min-width: 768px) {
  .top-voice-title img {
    height: 70px;
  }
}

.top-voice-title p {
  font-family: var(--font-family-serif);
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .top-voice-title p {
    font-size: 32px;
  }
}

/* スライダー */
.top-voice-slider {
  width: 100%;
  --slider-pager-height: 40px; 
}

.top-voice-slider .swiper {
  width: 100%;
  padding-top: var(--slider-pager-height);
}

.top-voice-slider .swiper-wrapper {
  height: auto;
}

.top-voice-slider .swiper-slide {
  transition: all .7s ease;
}
.top-voice-slider .swiper-slide.swiper-slide-active {
  transform: translateY(calc(-1*var(--slider-pager-height)));
}

/* スライダーオプション */
.top-voice-slider__slide-options {
  width: 45%;
  margin: -10px auto 0;
  height: var(--slider-pager-height);
  position: relative;
  background-color: var(--color-gray-light);
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .top-voice-slider__slide-options {
    width: 15%;
  }
}

.top-voice-slider__pagination {
  text-align: center;
}

.top-voice-slider__slide-btn-prev,
.top-voice-slider__slide-btn-next {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-dark);
}

.top-voice-slider__slide-btn-prev span,
.top-voice-slider__slide-btn-next span {
  display: block;
  width: 0;
  height: 0;
  border-bottom: 6px solid white;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.top-voice-slider__slide-btn-prev {
  left: 0;
}
.top-voice-slider__slide-btn-prev span {
  transform: rotate(-90deg);
}

.top-voice-slider__slide-btn-next {
  right: 0;
}
.top-voice-slider__slide-btn-next span {
  transform: rotate(90deg);
}

/* カード */
.top-voice-card.swiper-slide{
  border-radius: 20px;
  background-color: var(--color-blue);
  padding: 30px 15px;
}
@media print, screen and (min-width: 768px) {
  .top-voice-card.swiper-slide{
    padding: 30px;
  }
}

.top-voice-card.top-voice-card--yellow{
  background-color: var(--color-yellow);
}
.top-voice-card.top-voice-card--green{
  background-color: var(--color-green);
}
.top-voice-card.top-voice-card--pink {
  background-color: var(--color-pink-light);
}

/* カード タイトル */
.top-voice-card__head {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.top-voice-card__head-icon {
  display: block;
  width: 40px;
}
@media print, screen and (min-width: 768px) {
  .top-voice-card__head-icon {
    width: 70px;
  }
}

.top-voice-card__head-title {
  font-family: var(--font-family-serif);
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .top-voice-card__head-title {
    font-size: 20px;
  }
}

.top-voice-card__head-title span {
  display: block;
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  .top-voice-card__head-title span {
    font-size: 14px;
  }
}

/* カード コンテンツ */
.top-voice-card__sentence {
  margin-top: 20px;
  line-height: 1.75;
}

@media print, screen and (max-width: 768px) {
  .inner-kv__blead-crambs__item{
      font-size: 10px;
  }
  
  .inner-kv-min__blead-crambs__item{
      font-size: 8px;
  }
  
  .alnC.mt10 a, .btn a, .page-content-list a {
    padding-right: 80px;
  }
  
  .acbox label:after {
    top: 65%;
    right: 0;
    margin-top: -14px;
  }
  
  .page-navi li {
    display: flex;
    align-items: center;
    padding-right: 20px;
}
  
  .acbox-under td:not(:last-child){
    border-right: 1px solid var(--color-gray-dark);
  }  

}

.faq dt:before{display: none;}

.alnC{
  text-align: center;
}


/*  アコーディオンボックス
----------------------------------------------------------
  アコーディオンの動きを制御するクラスは別で付与する必要有
  module.cssで定義しています。 */
.accordion-box {
  background-color: var(--color-gray-light);
  transition: all .3s ease;
}

.accordion-box.highlight {
  background-color: var(--color-pink-light);
}

.accordion-box__head {
  padding: .9rem 2.3rem .9rem 1rem;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .accordion-box__head {
    padding: 1.8rem 4.5rem 1.8rem 2rem ;
  }
}

.accordion-box__cont {
  padding: 1.4rem 1rem;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .accordion-box__cont {
    padding: 2rem 2rem;
  }
}

.accordion-box__cont::before {
  content: '';
  width: calc(100% - 2rem);
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  .accordion-box__cont::before {
    width: calc(100% - 4rem);
  }
}

/* -------------------------------------------------
  Q & A アコーディオンアイテムのヘッド
------------------------------------------------- */
.contact-question-head {
  display: flex;
  column-gap: 1rem;
}
@media print, screen and (min-width: 768px){
  .contact-question-head {
    align-items: center;
  }
}

.contact-question-head span.q {
  font-family: var(--font-family-serif);
  color: var(--color-pink);
  font-size: 25px;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .contact-question-head span.q {
    font-size: 34px;
  }
}

.acbox-under .faq-tit-a{
  font-size: 16px;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.acbox-under .faq-tit-a:before{
  content:"A";
  font-size: 20px;
  position: absolute;
  left: 0;
  top:0;
}

@media screen and (min-width:768px){
  .btn-2col{
    display: flex;
    flex-wrap: wrap;
  }
  
  .btn-2col .btn{
    width: 48%;
    margin:0 1%;
    margin-bottom: 0;
  }
  
  .flexCont{
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
  }  
  
  .flexCont .thumb{
    width: 25%;
  }  

  
  .flexCont .text{
    width: 70%;
  }  
}



/* 説明会 */
.seminar-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.seminar-table th, .seminar-table td {
  border: 1px solid #ddd;
  padding: 1rem 1.2rem;
}
.seminar-table th, .seminar-table td:nth-child(-n+2) {
  white-space: nowrap;
}

.seminar-table th {
  background-color: var(--bg-color-green);
  font-weight: normal;
}
.seminar-table td a {
  text-decoration: underline;
  text-decoration-color: #BA527C;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .seminar-table thead {
    display: none; /* ヘッダーを非表示 */
  }

  .seminar-table tbody tr {
    display: block;
    margin-bottom: 2rem;
    border: 2px solid #ddd;
  }

  .seminar-table tbody tr > td {
    display: block;
    border-left: none;
    border-top: none;
    border-right: none;
  }
  .seminar-table tbody tr > td:nth-child(3) {
    border-bottom: none;
  }

  .seminar-table tbody tr > td:before {
    content: attr(data-label) " ：";
    font-weight: bold;
    display: inline-block;
    width: 25%; /* ラベルの幅を調整 */
  }

  .seminar-table tbody tr > td[data-label="件名"] {
    font-weight: bold;
  }

  .seminar-table tbody tr > td[data-label="件名"]:before {
    content: ""; /* 件名のラベルを非表示 */
    display: none;
  }
}

/* ページネーションコンテナ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* 画面幅が狭い場合にボタンを自動で折り返す設定 */
  gap: 10px;
  margin-top: 40px;
}
/* ページネーションのボタン共通 */
.pagination__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}
/* ホバー時のアクション（パソコン向け） */
@media (hover: hover) {
  .pagination__btn:hover {
    background-color: #f5f5f5;
  }
}
/* 現在のページのボタン */
.pagination__btn.is-active {
  background-color: #EE87B4FF; /* サイトのメインカラーに合わせて変更してください */
  color: #fff;
  border-color: #EE87B4FF;
  pointer-events: none;
}
/* スマートフォン向けのレスポンシブ対応 (画面幅768px以下) */
@media screen and (max-width: 768px) {
  .pagination {
    gap: 6px; /* ボタン同士の隙間を少し狭くして配置しやすくする */
    margin-top: 30px;
  }
  .pagination__btn {
    min-width: 36px; /* タップしやすい最低限のサイズを確保しつつ幅を縮小 */
    height: 36px;
    padding: 0 8px;
    font-size: 13px; /* 文字サイズを少し小さくして圧迫感を軽減 */
  }
}