/* 初期設定 */
a {
  line-height: 150%;
}
a:link, a:visited {
  color: #101113;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: none;
}
body {
  color: #101113;
  background: #ffffff;
  font-family: 'Noto Sans JP', 'Cormorant Garamond', "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino MinchoProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho" ,'Cormorant Infant' , serif , "Shippori Mincho B1", "Helvetica Neue",Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "YuGothic","Meiryo", "メイリオ", "ＭＳ ゴシック", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  min-width: initial;
  letter-spacing: 0.96px;
}
.pconly-text {
  display: inline;
}
.sponly-text {
  display: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.84px;
  }
  .pconly-text {
    display: none;
  }
  .sponly-text {
    display: inline;
  }
}
#g_wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 100%;
}
/* mainタグ内のリンク挙動 */
main a:link, main a:visited {
  text-decoration: underline;
}
main a:hover, main a:active {
  text-decoration: none;
  opacity: 1.0;
}
.Cormorant-Garamond-font {
font-family: "Cormorant Garamond", serif;
}
.Shippori-Mincho-B1-font {
font-family: "Shippori Mincho B1", serif;
}
.Noto-Sans-JP-font {
  font-family: "Noto Sans JP", sans-serif;
}
.main-grid-bg {
  position: relative;
  padding-bottom: 120px;
}
.main-grid-bg.animate::before {
  opacity: 1;
}
.main-grid-bg::before {
  /* 背景線の付与 */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* コンテンツエリア(1200px-左右のpadding値（6.076vw）分を引く */
  width: calc(100% - (6.076vw * 2));
  max-width: 1200px;
  height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(#efeff0, #efeff0),
    linear-gradient(#efeff0, #efeff0),
    linear-gradient(#efeff0, #efeff0),
    linear-gradient(#efeff0, #efeff0),
    linear-gradient(#efeff0, #efeff0);
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: 0% center, 25% center, 50% center, 75% center, 100% center;
  opacity: 0;
  transition: opacity 2s ease-out;
}
@media screen and (max-width: 767px) {
  .main-grid-bg{
    padding-bottom: 80px;
  }
  .main-grid-bg::before {
    left: 30px;
    right: 30px;
    width: auto;
    max-width: none;
    transform: none;
    background-image:
      linear-gradient(#efeff0, #efeff0),
      linear-gradient(#efeff0, #efeff0),
      linear-gradient(#efeff0, #efeff0),
      linear-gradient(#efeff0, #efeff0);
    background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: 0% center, 33.333% center, 66.666% center, 100% center;
  }
}
/* 共通デザイン */
.c-list-view-btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: right;
  margin-top: 24px;
}
.c-list-view-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: end;
}
a.c-list-view-btn-link:link,
a.c-list-view-btn-link:visited {
  text-decoration: none;
}
a.c-list-view-btn-link:hover {
  text-decoration-line: underline;
}
.c-list-view-btn-txt {
  font-family: "Shippori Mincho B1",serif;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.96px;
}
.c-list-view-btn-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid #C9CACC;
  border-radius: 50%;
  margin-left: 12px;
  background-color: #ffffff;
  overflow: hidden;
  transition: 0.2s;
}
.c-list-view-btn-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/common/images/icon_right.png');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.c-list-view-btn-link:hover .c-list-view-btn-icon {
  background-color: #eef0f2;
}
.c-list-view-btn-link:hover .c-list-view-btn-icon::after {
  animation: reveal-icon 0.5s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .c-list-view-btn{
    font-size: 16px;
  }
}
.icon-new-window{
  position: relative;
}
.icon-new-window::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('/common/images/icon_window.png');
  background-repeat: no-repeat;
  background-size: contain;
}
@keyframes reveal-icon {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.external-link-icon {
  width: 16px;
  height: 16px;
  padding: 2.156px 1.832px 2.095px 1.832px;
  vertical-align: middle;
}
img {
  width: 100%;
  height: 100%;
}
/* kv */
.s-kv {
  position: relative;
  width: 100vw;
  height: calc(100vw * (700 / 1366));
  box-sizing: border-box;
  overflow: hidden;
}
.responsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corner-text.top-left {
  width: 35.90775vw;
  position: absolute;
  top: -2.30598vw;
  left: -1.31769vw;
  align-self: start;
  justify-self: start;
  z-index: 1;
}
.corner-text.top-left img {
  width: 100%;
  height: auto;
}
.bottom-text-container {
  width: 10.5417vw;
  position: absolute;
  left: 26.02485vw;
  top: 36.30303vw;
}
.bottom-text-container img {
  width: 100%;
  height: auto;
}
.left-image-container {
  width: 25.23429vw;
  height: 35.77599vw;
  position: absolute;
  top: 5.1381vw;
  z-index: 2;
}
.center-text {
  position: absolute;
  top: 11.4642vw;
  left: 23.0598vw;
  width: 52.22839vw;
  z-index: 3;
}
.center-text img {
  width: 100%;
  height: auto;
}
.center-text .catchphrase-pc{
  display: block;
}
.center-text .catchphrase-sp{
  display: none;
}
.right-text-container {
  position: absolute;
  width: 7.37919vw;
  top: 2.89899vw;
  right: 17.8551vw;
}
.right-image-container {
  width: 14.09958vw;
  height: 14.09958vw;
  position: absolute;
  top: 0;
  right: 2.83311vw;
}
.right-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.right-bottom-image-container {
  position: absolute;
  top: 31.22991vw;
  right: 20.81988vw;
  width: 22.599vw;
  height: 13.7043vw;
  z-index: 2;
}
.corner-text.bottom-right {
  width: 23.12721vw;
  position: absolute;
  right: -1.55889vw;
  top: 35.79705vw;
  z-index: 1;
}
.scroll-down-area{
  position: absolute;
  top: 13.217vw;
  right: 3.6603vw;
}
.scroll-down {
  position: relative;
  width: 122px;
  height: 122px;
}
.scroll-down img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: 2;
}
.scroll-text-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: text-rotate 10s linear infinite;
}
.scroll-text-circle span {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  font-size: 12px;
  color: #990000;
}
@keyframes text-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.scroll-text-circle .small-space {
  width: 0;
  height: 0;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
}
/* KVローディングアニメーション */
.top-first-event {
  margin: auto;
  z-index: 10;
  background-color: #595959;
  width: 100%;
  height: 100%;
}
.loading-img {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  animation: fadein 2s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
.top-first-event img {
  height: auto;
  width: 100%;
  margin: auto;
}
#loading {
  display: none;
}
@media screen and (min-width: 768px) {
  .loading-img-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .loading-img-pc {
    display: none;
  }
}
/* KVアニメーション */
.fade-in-first.animate {
  opacity: 1;
}
.fade-in-first {
  opacity: 0;
  transition: opacity 2s ease-out;
}
.scroll-down-area.open {
  opacity: 1;
}
.scroll-down-area {
  opacity: 0;
  transition: opacity 2s ease-out;
  z-index: 3;
}
.slide-in-txt img{
  z-index: 1;
  clip-path: inset(0 100% 0 0);
}
.slide-in-txt.open img{
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.5s ease-out;
}
.slide-in-img {
  transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transform: translateX(-100%);
  opacity: 0;
}
.slide-in-img {
  overflow: hidden;
  object-fit: cover;
  z-index: 2;
}
.slide-in-img.open {
  transform: translateX(0);
  opacity: 1;
}

.slide-in-img.left-image-container:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("/top/images/shape_01_gradation.png");
  background-size: auto 100%;
  transition: 3.0s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 2;
}
.slide-in-img.right-bottom-image-container:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("/top/images/shape_02_gradation.png");
  background-size: auto 100%;
  transition: 3.0s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 2;
}
.slide-in-img.right-image-container:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("/top/images/shape_03_gradation.png");
  background-size: auto 100%;
  transition: 3.0s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 2;
}
.slide-in-img.open:after {
  animation: kv-show 12.0s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes kv-show {
  /* 1回目 */
  0% { width: 0%; left: 0; }
  4.17% { width: 100%; left: 0; } /* 0.5秒で表示 */
  8.33% { width: 0%; left: 100%; } /* 0.5秒で非表示 */

  /* 2回目 */
  33.33% { width: 0%; left: 0; } /* 4秒後から待機 */
  37.5% { width: 100%; left: 0; } /* 4.5秒後から0.5秒で表示 */
  41.67% { width: 0%; left: 100%; } /* 5秒後から0.5秒で非表示 */

  /* 3回目 */
  66.66% { width: 0%; left: 0; } /* 8秒後から待機 */
  70.83% { width: 100%; left: 0; } /* 8.5秒後から0.5秒で表示 */
  75% { width: 0%; left: 100%; } /* 9秒後から0.5秒で非表示 */

  100% { width: 0%; left: 0; } /* 12秒後（最初に戻る） */
}

.slide-in-img img {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
}

.slide-in-img.open .image-01 {
  animation: kv-show-01 12.0s infinite cubic-bezier(0.37, 0, 0.63, 1);  
}
@keyframes kv-show-01 {
  0% { opacity: 0; transform: scale(1.1) translateX(0%); }
  4.17% { opacity: 0; transform: scale(1.1) translateX(-5%); }
  6.25% { opacity: 0.3; transform: scale(1.1) translateX(-3%); }
  8.33% { opacity: 1; transform: scale(1.1) translateX(-2%); }
  37.5% { opacity: 1; transform: scale(1.1) translateX(5%); }
  37.6% { opacity: 0; transform: scale(1.1) translateX(0%); }
  100% { opacity: 0%; }
}

.slide-in-img.open .image-02 {
  animation: kv-show-02 12.0s infinite cubic-bezier(0.37, 0, 0.63, 1);
}
@keyframes kv-show-02 {
  0% { opacity: 0; transform: scale(1.1) translateX(0%); }
  37.5% { opacity: 0; transform: scale(1.1) translateX(-5%); }
  39.58% { opacity: 0.3; transform: scale(1.1) translateX(-3%); }
  41.67% { opacity: 1; transform: scale(1.1) translateX(-2%); }
  70.83% { opacity: 1; transform: scale(1.1) translateX(5%); }
  70.84% { opacity: 0; transform: scale(1.1) translateX(0%); }
  100% { opacity: 0%; }
}

/* 1回目用のアニメーション（0→4.17%を非表示） */
@keyframes kv-show-03-first {
  0% { opacity: 0; transform: scale(1.1) translateX(0%); }
  4.17% { opacity: 0; transform: scale(1.1) translateX(0%); }
  4.18% { opacity: 0; transform: scale(1.1) translateX(0%); }
  70.83% { opacity: 0; transform: scale(1.1) translateX(-5%); }
  72.69% { opacity: 0.5; transform: scale(1.1) translateX(-3%); }
  75% { opacity: 1; transform: scale(1.1) translateX(-2%); }
}

/* 2回目以降用のアニメーション（通常） */
@keyframes kv-show-03-loop {
  0% { opacity: 1; transform: scale(1.1) translateX(5%); }
  4.17% { opacity: 1; transform: scale(1.1) translateX(5%); }
  4.18% { opacity: 0; transform: scale(1.1) translateX(5%); }
  70.83% { opacity: 0; transform: scale(1.1) translateX(-5%); }
  72.69% { opacity: 0.3; transform: scale(1.1) translateX(-3%); }
  75% { opacity: 1; transform: scale(1.1) translateX(-2%); }
  100% { opacity: 1; transform: scale(1.1) translateX(5%); }
}

@media screen and (max-width: 767px) {
  .s-kv {
    position: relative;
    width: 100vw;
    height: calc(100vw * (560 / 375));
    box-sizing: border-box;
  }
  .responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .corner-text.top-left {
    position: absolute;
    top: -3.4667vw;
    right: 0.8vw;
    left: auto;
    width: 56.2667vw;
    z-index: 1;
  }

  .corner-text.top-left img {
    width: 100%;
    height: auto;
  }

  .bottom-text-container {
    position: absolute;
    top: 94.4vw;
    left: 8vw;
    width: 30.4vw;
  }

  .bottom-text-container img {
    width: 100%;
    height: auto;
  }

  .left-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 38.1333vw;
    height: 50.4vw;
    z-index: 2;
  }

  .center-text {
    position: absolute;
    top: 56.3vw;
    left: 5.0667vw;
    width: 90.1333vw;
    z-index: 3;
  }

  .center-text img {
    width: 100%;
    height: auto;
  }
  .center-text .catchphrase-pc{
    display: none;
  }
  .center-text .catchphrase-sp{
    display: block;
  }
  .right-text-container {
    position: absolute;
    width: 19.2vw;
    top: 42.6667vw;
    right: 15vw;
  }

  .right-image-container {
    position: absolute;
    top: 13.6vw;
    right: 2.6667vw;
    width: 26.4vw;
    height: 26.4vw;
  }

  .right-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .right-bottom-image-container {
    position: absolute;
    top: 104.7vw;
    right: 13.3333vw;
    width: 50.6667vw;
    height: 37.0667vw;
  }

  .corner-text.bottom-right {
    position: absolute;
    width: 39.4667vw;
    height: 11.28vw;
    left: 0;
    top: 120.73vw;
    object-fit: contain;
  }
  .scroll-down {
    position: absolute;
    width: 18.6667vw;
    height: 18.6667vw; 
  }
  .scroll-down img {
    width: 6.24vw;
    height: 6.24vw;
    max-width: 25px;
    max-height: 25px;
  }
  .scroll-down-area {
    position: absolute;
    top: 89.44vw;
    right: 21.3333vw;
  }
  .scroll-text-circle span {
    font-size: 7.8px;
  }
}

/* 重要なお知らせ */
.s-important-news {
	background-color: #eff0f2;
	padding: 40px clamp(20px, 6.076vw, 83px) 56px;
}
.s-important-news:not(:has(.news-link)) {
  display: none;
}
.important-news-text-box {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.important-news-text-box h2 {
	font-size: 28px;
	font-weight: 500;
	color: #101113;
	line-height: 150%;
	margin-bottom: 16px;
	font-style: normal;
	letter-spacing: 1.68px;
}
.important-news-text-box ul {
	background-color: #ffffff;
}
.important-news-text-box ul li {
	border-top: 1px solid #eff0f2;
  	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13.5px 24px 13.5px 16px;
}
.important-news-text-box ul li:first-child {
	border-top: none;
}
.txt-limit {
	position: relative;
	padding: 0 12px 0 44px;
}
.txt-limit:hover {
  text-decoration: none;
}
.txt-limit::before {
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50%;
	left: 1px;
	content: "";
	display: inline-block;
	background-image: url("/top/images/icon_error.png");
	background-size: contain;
  background-repeat: no-repeat;
	transform: translateY(-50%);
	margin-right: 12px;
}
.important-news-text-box time {
	font-size: 12px;
	color: #6B6C70;
	letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .s-important-news {
    background-color: #eff0f2;
    padding: 32px 30px 40px 30px;
  }
  .important-news-text-box {
    width: 100%;
    max-width: none;
    margin: auto;
  }
  .important-news-text-box h2 {
    font-size: 20px;
    letter-spacing: 1.2px;
  }
  .important-news-text-box ul li {
    position: relative;
    display: block;
    padding: 8px 26px 8px 49px;
  }
  .important-news-text-box ul li:first-child {
    border-top: none;
  }
  .important-news-text-box ul li::before {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 12px;
    content: "";
    background-image: url("/top/images/icon_error.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
  }
  .txt-limit {
    padding-left: 0px;
  }
  .txt-limit::before {
    display: none;
  }
  .important-news-text-box time {
    padding-top: 4px;
  }
}
/* TOPICS */
.s-topics {
  max-width: 1200px;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
  margin: 184px auto 120px;
  position: relative;
}
.topics-background {
  background-image: url('/top/images/bg_topics_pc.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 1075px;
  height: 751px;
  position: absolute;
  z-index: -10;
  top: -110px;
  left: 0px;
}
.topics-background::before {
  content: '';
  position: absolute;
  left: calc(-1 * (100vw - 1200px) / 2);
  top: 0;
  bottom: 0;
  width: calc((100vw - 1200px) / 2);
  background-color: #990000;
}
.topics-txt-box {
  margin-bottom: 48px;
  color: #ffffff;
}
.topics-heading {
  font-size: 112px;
  font-style: normal;
  font-weight: 500;
  line-height: 85%;
  letter-spacing: -2.24px;
  margin-bottom: 14px;
}
.topics-decorative-txt {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.6px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 48px;
}
.topics-decorative-txt::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("/top/images/icon_decoration.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.topics-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.96px;
}
.topics-slide {
  max-width: 368px;
  margin-right: 48px;
  background-color: #ffffff;
}
.topics-slide:last-child {
  margin-right: 0;
}
.topics-img-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.topics-img-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #720000;
  opacity: 0.25;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.topics-img-link:hover:after,
.topics-slide .topics-img-link.is-active:after {
  transform: scaleX(1);
}
.topics-img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.topics-content {
  padding: 16px 24px;
  position: relative;
  z-index: 2;
}
.topics-date {
  display: inline-block;
  position: relative;
  font-size: 12px;
  font-style: normal;
  color: #6B6C70;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.72px;
  margin-bottom: 8px;
}
.topics-date.new::after {
  position: absolute;
  content: "NEW";
  color: #900900;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.72px;
  background-color: #EFF0F2;
  height: 18px;
  padding: 0 12px;
  margin-left: 10px;
}
.topics-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.84px;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 8px;
}
.topics-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 14px;
}
.topics-tags-list li {
  line-height: 150%;
}
.topics-tags-list li a {
  color: #900900;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.84px;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.topics-tags-list li a:before {
  content: "#";
}
.scroll-bar-container {
  max-width: 1064px;
  width: 100%;
  height: 4px;
  background-color: #C9CACC;
  margin-top: 15px;
  border-radius: 5px;
  position: relative;
}
.scroll-thumb {
  height: 100%;
  background-color: #900900;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
}
.swiper-controls {
  display: flex;
  align-items: center;
  margin: 24px 0;
}
.swiper-controls .swiper-scrollbar {
  position: static;
  flex-grow: 1;
  height: 4px;
  background-color: #c9cacc;
  margin-right: 20px;
  border-radius: 0;
}
.swiper-scrollbar-drag {
  background-color: #900900;
  border-radius: 0;
}
.swiper-navigation-buttons {
  display: flex;
}
.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid #c9cacc;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 2;
  transition: 0.2s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #e0e0e0;
}
.swiper-button-prev {
  margin-right: 10px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 20px;
  height: 20px;
}
.swiper-button-prev::after {
  background-image: url('/top/images/icon_chevron_left.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper-button-next::after {
  background-image: url('/top/images/icon_chevron_right.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper-button-prev:hover:after,
.swiper-button-next:hover::after {
  /* 一覧を見るボタンのアニメーション流用 */
  animation: reveal-icon 0.5s ease-out forwards;
}
.topics-sliders {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .s-topics {
    margin: 113px auto 80px;
    padding: 0 30px;
  }
  .topics-background {
    background-image: url("/top/images/bg_topics_sp.jpg");
    width: 100%;
    height: 573.333px;
    top: -64px;
    left: 0px;
  }
  .topics-txt-box {
    margin-bottom: 40px;
  }
  .topics-heading {
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 54.4px;
    letter-spacing: -1.28px;
    margin-bottom: 12px;
  }
  .topics-decorative-txt {
    font-size: 14px;
    line-height: 28px;
  }
  .topics-decorative-txt::before {
    width:20px ;
    height: 20px;
    margin-right: 8px;
  }
  .topics-description {
    font-size: 14px;
  }
  .topics-slide-wrapper {
    width: 220px;
  }
  .topics-slide {
    margin-right: 15px;
  }
  .topics-content {
    padding: 16px 15px 20px 15px ;
  }
  .topics-date {
    margin-bottom: 4px;
  }
  .topics-title {
    margin-bottom: 4px;
  }
}

/*about*/
.s-about {
  margin-bottom: 120px;
}
.about-head {
	margin-bottom: -75px;
}
.about-animation{
  position: relative;
  overflow: hidden;
}
.about-animation::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #990000;
  transform: translatex(-100%);
}
@keyframes showMask{
  0%{
      transform: translateX(-100%);
  }
  45%,50%{
        transform: translate(0%);
  }
  100%{
      transform: translateX(100%);
  }
}
.about-animation.show::before{
  animation: showMask 1s forwards;
}
.img-about-bg {
  width: 100%;
  height: 530px;
  background-image: url("/top/images/bg_about_pc.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
}
@keyframes showElements{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}
.about-animation.show .img-about-bg{
  animation: showElements .01s .5s forwards;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #720000;
  opacity: 0;
  pointer-events: none;
}
@keyframes fadeOverlay {
  0% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
.about-animation.show .overlay {
  animation: fadeOverlay 0.7s 0.5s forwards;
}
.about-txt-box {
  display: flex;
  justify-content: space-between;
	margin: 0 auto 64px;
  position: relative;
	top: -91px;
	color: #101113;
	max-width: 1200px;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
  z-index: 3;
}
.about-title-area {
  display: inline-block;
  margin: 52px 48px 0 0;
}
.about-title-area h2 {
  /* リキッドレイアウト用に可変 */
  font-size: clamp(64px, 8.5vw ,112px);
	font-weight: 500;
	line-height: 85%;
	margin-bottom: 14px;
	letter-spacing: -2.6px;
}
.about-title-area p {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	margin: auto;
	padding-left: 36px;
	letter-spacing: 1.6px;
}
.about-title-area p::before {
	width: 28px;
	height: 28px;
	position: absolute;
	left: 0;
	content: "";
	display: inline-block;
	background-image: url("/top/images/icon_decoration_990000.png");
	background-size: 28px 28px;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 8px;
}
.about-txt-area {
	max-width: 564px;
	position: relative;
	background-color: #EFF0F2;
	padding: 48px;
}
.about-txt-area h3 {
	font-size: 48px;
	line-height: 130%;
	margin-bottom: 20px;
	letter-spacing: -0.1em;
}
.about-txt-area p {
	font-size: 16px;
  font-weight: 400;
	color: #6B6C70;
	line-height: 200%;
	letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .s-about {
    margin-bottom: 80px;
  }
  .about-head {
    /*48pxから【about-txt-area top:-38px】考慮した値 */
    margin-bottom: 10px;
  }
  .about-animation {
    padding-top: 35px;
  }
  .img-about-bg {
    height: 375px;
    background-image: url("/top/images/bg_about_sp.jpg");
  }
  .about-txt-box {
    top: -38px;
    padding: 0;
    margin-bottom: 0px;
  }
  .about-title-area {
    position: absolute;
    top: -375px;
    margin-top: 0;
    padding: 0 30px;
  }
  .about-title-area h2 {
    font-size: 64px;
    margin-bottom: 12px;
    letter-spacing: -1.28px;
  }
  .about-title-area p {
    font-size: 14px;
    margin: auto;
    padding-left: 32px;
    letter-spacing: 1.4px;
  }
  .about-title-area p::before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    margin-right: 8px;
  }
  .about-txt-area {
    max-width: 100%;
    left: 0;
    margin: 0 0 0 30px;
    padding: 32px 30px;
  }
  .about-txt-area h3 {
    font-size: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.1em;
  }
  .about-txt-area p {
    font-size: 14px;
    letter-spacing: 0.84px;
  }
}
/*sliders（About）*/
.about-sliders {
	color: #101113;
	max-width: 1200px;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
  margin: 0 auto;
}
.about-sliders .swiper-wrapper {
	display: flex;
  flex-wrap: wrap;
}
.about-slide {
	flex-shrink: inherit;
  margin-bottom: 72px;
}
.about-slide:last-child {
	margin-bottom: 0;
}
.about-slide-title{
  margin-bottom: 40px;
}
.about-slide-title p{
	font-size: 42px;
	line-height: 120%;
	letter-spacing: 0.28px;
}
.img-about-slide {
	width: 100%;
	margin-bottom: 24px;
}
.txt-about-slide {
	font-size: 16px;
  font-weight: 400;
	color: #6B6C70;
	line-height: 200%;
	margin-bottom: 24px;
	letter-spacing: 0.96px;
}
.about-contents-box{
  display: flex;
  gap: 48px;
}
.about-slide:nth-of-type(2n) .about-contents-box {
  flex-direction: row-reverse;
}
.about-img{
  max-width: 576px;
  width: 100%;
}
.about-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-contents{
  width: 576px;
}
.about-contents p{
  color: #6b6c70;
  font-weight: 400;
  letter-spacing: 0.96px;
}
.about-slide-link {
  margin-top: 24px;
}
.about-slide-link li {
	max-width: 368px;
	border: 1px solid #101113;
  background-color: #ffffff;
	margin: 0 auto ;
}
.about-slide-link li:first-child {
	margin-bottom: 12px;
}
.about-slide-link li a {
  min-height: 48px;
	position: relative;
	display: grid;
  place-items: center center;
	font-size: 18px;
	font-weight: 500;
	color: #101113;
	line-height: 130%;
	text-align: center;
	margin: 0 auto;
  padding: 8px 44px;
	letter-spacing: 1.08px;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  transition: 0.5s;
}
.about-slide-link li a:hover {
  opacity: 1;
  text-decoration: underline;
  background-color: #EFF0F2;
}
.about-arrow::after {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	right: 12px;
	content: "";
	display: block;
	background-image: url("/common/images/icon_right.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
  transform: translateY(-50%);
}
.about-window::after {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	right: 12px;
	content: "";
	display: block;
	background-image: url("/common/images/icon_window.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
  transform: translateY(-50%);
}
.about-slide-link li a:hover::after {
  animation: wipe-and-reveal 0.5s ease-in-out 1;
}
/* --- アニメーション定義 --- */
@keyframes wipe-and-reveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.sponly {
	display: none;
}
@media screen and (max-width: 767px) {
  .about-sliders {
    padding: 0 30px;
  }
  .about-sliders .swiper-wrapper{
    flex-wrap: nowrap;
  }
  .about-slide {
    min-width: 260px;
    margin: 0 30px 0 0;
  }
  .about-slide:last-child {
    margin-right: 0;
    padding-top: 0;
  }
  .about-slide-title {
    margin-bottom: 0px;
    position: relative;
    top: 16px;
  }
  .about-slide-title p {
    max-width: 230px;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0.2px;
    padding-bottom: 8px;
    background-color: #ffffff;
  }
  .about-contents-box{
    flex-wrap: wrap;
    gap: 24px;
  }
  .txt-about-slide {
    font-size: 14px;
    letter-spacing: 0.84px;
  }
  .about-slide-link li {
    width: 100%;
    max-width: none;
  }
  .about-slide-link li a {
    min-height: 48px;
    height: auto;
    font-size: 16px;
    line-height: 120%;
    padding: 8px 40px;
    letter-spacing: 0.96px;
  }
  .sponly {
    display: block;
  }
  .about-slide-link li a:before {
    top: 1px;
  }
}
/*スライダー topicsから流用*/
@media screen and (max-width: 767px) {
.swiper-controls {
  display: flex;
  align-items: center;
  margin: 24px 0 0 0;
}

.swiper-controls .swiper-scrollbar {
  position: static;
  flex-grow: 1;
  height: 4px;
  background-color: #e0e0e0;
  margin-right: 15px;
}

.swiper-scrollbar-drag {
  background-color: #900900;
}

.swiper-navigation-buttons {
  display: flex;
}

.swiper-button-prev,
.swiper-button-next {
  position: static; 
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid #C9CACC;
  border-radius: 50%;
}
.swiper-button-prev {
  margin-right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  }
}
/* スクロールアニメーション */
.about-animation-fade-in {
  opacity: 0;
}
.about-animation-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.txt-box-fade-in {
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.slide01-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.slide02-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s, transform 2s;
}
/* newsエリア */
.s-news-and-release{
  max-width: 1200px;
  margin: 120px auto;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
}
.news-box{
  display: flex;
  gap: 80px;
  margin-bottom: 24px;
}
.news-heading{
  /* リキッドレイアウト用に可変 */
  font-size: clamp(64px, 8.5vw ,112px);
  font-style: normal;
  line-height: 85%;
  letter-spacing: -2.24px;
  margin-bottom: 12px;
}
.news-decorative-txt{
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.6px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 48px;
}
.news-decorative-txt::before {
  content: "";
  display: inline-block;
  width:28px ;
  height: 28px;
  background-image: url("/top/images/icon_decoration_990000.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.news-scrolling{
  overflow: scroll;
  overflow-x: hidden;
  max-width: 680px;
  width: 100%;
  height: 280px;
  box-sizing:content-box;
  border: 1px solid #c9cacc;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.news-scrolling::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.news-scrolling .simplebar-scrollbar::before {
  background: #990000;
  border-radius: 0;
  width: 4px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.news-scrolling .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.news-scrolling .simplebar-track {
  background: #eff0f2;
  width: 4px !important;
  margin: 10px 5px 10px 0;
}
.news-scrolling::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 15px);
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) -73.71%, #ffffff 100%);
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.news-scrolling.hide-after::after {
  opacity: 0;
}
.news-lists {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  padding: 10px 24px;
}
.news-contents{
  padding:16px 0 20px;
  width: 100%;
  border-bottom: 1px solid #c9cacc;
}
.news-contents:first-child{
  padding-top: 10px;
}
.news-contents:last-child{
  border-bottom: none;
}
.news-date{
  display: inline-block;
  position: relative;
  color: #6B6C70;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.72px;
  margin-bottom: 4px;
}
.news-date.new::after{
  position: absolute;
  content: "NEW";
  color: #900900;
  font-size: 12px;
  background-color:#EFF0F2 ;
  height: 18px;
  padding: 0 12px;
  margin-left: 10px;
}
.news-title {
  line-height: 150%;
}
.news-link{
  color: #101113;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.84px;
  text-decoration-line: underline;
  text-decoration-style: solid;
}
.media-infomation{
  margin-top: 16px;
}
.media-list-view{
  color: #101113;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.84px;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
.s-events{
  margin-top: 96px;
}
.s-events:not(:has(.event-contents)) {
  display: none;
}
.events-txt-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.events-heading{
  color: #101113;
  font-feature-settings: 'halt' on;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 68px;
}
.events-box{
  display: flex;
  margin-bottom: 24px;
  background-color: #ffffff;
}
.event-contents{
  width: 100%;
  flex-grow: 1;
  padding: 16px 32px 24px;
  border-left: 1px solid #c9cacc;
}
.event-contents:last-child{
  border-right: 1px solid #c9cacc;
}
.event-date{
  font-feature-settings: 'halt' on;
  color: #101113;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}
.event-year{
  color: #6B6C70;
  font-size: 14px;
  line-height: 18.2px;
  line-height: 130%;
  letter-spacing: 0.28px;
}
.event-date-month,.event-date-day{
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0.72px;
}
.event-date-separator,
.event-day-of-week{
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.36px;
}
.event-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.9px;
  margin-bottom: 4px;
}
.event-title a{
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}
.event-tag-list{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
}
.event-tag-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.84px;
}
.event-tag-list li a {
  color: #900900;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.event-tag-list li a:before {
  content: "#";
}
.event-tag-list li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .s-news-and-release{
    padding: 0 30px;
  }
  .news-box{
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-bottom: 24px;
  }
  .news-heading{
    font-size: 64px;
    line-height: 54.4px;
    letter-spacing: -1.28px;
  }
  .news-decorative-txt{
    font-size: 14px;
    letter-spacing: 1.4px;
    margin-bottom: 40px;
  }
  .news-scrolling{
    width: 100%;
  }
  .s-events{
    margin-top: 64px;
  }
  .events-txt-box{
    margin-bottom: 32px;
  }
  .events-box{
    flex-wrap: wrap;
  }
  .events-heading{
    font-size: 48px;
  }
  .event-contents{
    padding: 16px 0 20px;
    border-left: none;
    border-top: 1px solid #c9cacc;
  }
  .event-contents:last-child{
    border-right: none;
    border-bottom: 1px solid #c9cacc;
  }
  .event-year{
    font-size: 14px;
  }
  .event-date-month,.event-date-day{
    font-size: 24px;
    letter-spacing: 0.48px;
  }
  .event-date-separator,
  .event-day-of-week{
    font-size: 16px;
  }
  .event-title{
    padding-bottom: 12px;
    border-bottom: none;
  }
}

/*admission*/
.s-admission {
	background-image: url("/top/images/bg_admission_pc.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
  position: relative;
}
.s-admission::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #720000;
  opacity: 0.25;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.s-admission:hover:after {
  transform: scaleX(1);
}
.s-admission .admission-txt-wrapper {
  display: block;
	position: relative;
  color: #ffffff;
  text-decoration: none;
  padding: 96px 0;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}
.admission-txt-wrapper:hover {
  opacity: 1;
  text-decoration: none;
}
.admission-txt-wrapper::before {
  width: 26px;
	height: 26px;
	position: absolute;
  top: 50%;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
	right: clamp(20px, 6.076vw, 83px);
	content: "";
	display: inline-block;
  transform: translateY(-50%);
	background-color: #ffffff;
	border: 1px solid #c9cacc;
	border-radius: 50%;
	padding: 18.7px;
  z-index: 3;
}
.admission-txt-wrapper::after {
  content: "";
	width: 26.6px;
	height: 26.6px;
	position: absolute;
	top: 50%;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
	right: clamp(20px, 6.076vw, 83px);
	background-image: url("/common/images/icon_right.png");
	background-size: 26.6px;
	transform: translateY(-50%);
	padding: 18.7px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
  z-index: 4;
}
/* --- ホバー時の動作 --- */
/* 背景色をスライドイン */
.admission-txt-wrapper:hover::before {
  transform: translateY(-50%);
  background-color: #C9CACC;
  animation: background-clip-wipe 0.5s ease-in-out forwards;
}
/* 画像レイヤー(: : after)にワイプアニメーションを適用 */
.admission-txt-wrapper:hover::after {
  animation: wipe-and-reveal 0.6s ease-in-out 1;
}
@keyframes background-wipe {
  0% {
    background: linear-gradient(90deg, #C9CACC 0%, #C9CACC 0%, #ffffff 0%, #ffffff 100%);
  }
  100% {
    background: linear-gradient(90deg, #C9CACC 0%, #C9CACC 100%, #ffffff 100%, #ffffff 100%);
  }
}
/* --- アニメーション定義 --- */
@keyframes wipe-and-reveal {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.admission-heading {
	font-size: 80px;
	line-height: 85%;
	margin-bottom: 32px;
}
.admission-decorative-txt {
	font-size: 16px;
	line-height: 200%;
	letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .s-admission {
    background-image: url("/top/images/bg_admission_sp.jpg");
  }
  .s-admission .admission-txt-wrapper {
    padding: 56px 25px;
  }
  .admission-txt-wrapper::after {
    display: none;
  }
  .admission-txt-wrapper::before {
    display: none;
  }
  .admission-heading {
    font-size: 48px;
    margin-bottom: 24px;
  }
  .admission-decorative-txt {
    position: relative;
    font-size: 14px;
    padding-right: 64px;
    letter-spacing: 0.84px;
  }
  .admission-decorative-txt::before {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    display: inline-block;
    background-color: #ffffff;
    background-size: 20px;
    transform: translateY(-50%);
    border: 1px solid #c9cacc;
    border-radius: 50%;
    margin-left: 16px;
    padding: 14px;
  }
  .admission-decorative-txt::after {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    background-image: url("/common/images/icon_right.png");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    margin-left: 16px;
    padding: 14px;
  }
  /* --- ホバー時の動作 --- */
  /* 背景色をスライドイン */
  .admission-decorative-txt:hover::before {
    transform: translateX(0);
    background-color: #720000;
    opacity: 0.25;
    top: 50%;
    transform: translateY(-50%);
  }
  /* 画像レイヤー(: : after)にワイプアニメーションを適用 */
  .admission-decorative-txt:hover::after {
    animation: wipe-and-reveal 0.6s ease-in-out 1;
  }
}

/* Featureエリア */
.s-features{
  max-width: 1200px;
  margin: 120px auto;
  position: relative;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
}
.features-background{
  width: 1075px;
  height: 572px;
  background-color: #eff0f2;
  position: absolute;
  z-index: -10;
  right: 0px;
  top: 66.67px;
}
.features-background::after{
  content: '';
  position: absolute;
  right: calc(-1 * (100vw - 1075px) / 2);
  top: 0;
  bottom: 0;
  width: calc((100vw - 1075px) / 2);
  background-color: #eff0f2;
}
.features-txt-box{
  margin-bottom: 48px;
  color: #101113;
}
.features-heading{
  font-size: 112px;
  font-style: normal;
  font-weight: 500;
  line-height: 85%;
  letter-spacing: -2.24px;
  margin-bottom: 14px;
}
.features-decorative-txt{
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 48px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.6px;
}
.features-decorative-txt::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("/top/images/icon_decoration_990000.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 8px;
}
.features-description{
  color: #6B6C70;;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.96px;
}
.features-sliders{
  margin-bottom: 96px;
  overflow: visible;
}
.features-slide{
  max-width: 368px;
  margin-right: 48px;
  flex-shrink: inherit;
  background-color: #ffffff;
}
.features-slide:last-child{
  margin-right: 0;
}
.features-img-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.features-img-link::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #720000;
  opacity: 0.25;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.features-img-link:hover:after,
.features-slide .features-img-link.is-active:after {
  transform: scaleX(1);
}
.features-img{
  display: block;
  width: 100%;
}
.features-content{
  padding: 16px 24px;
  position: relative;
  z-index: 2;
}
.features-date{
  display: inline-block;
  position: relative;
  font-size: 12px;
  color:#6B6C70;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.72px;
  margin-bottom: 8px;
}
.features-title{
  line-height: 150%;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}
.features-title a{
  color: #101113;
  text-decoration: underline;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.9px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.features-title a:hover{
  text-decoration: none;
}
.features-title a:hover{
  text-decoration: none;
}
.ritsumei-insta-description{
  color: #6b6c70;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.96px;
  margin-bottom: 48px;
}
.ritsumei-insta-box{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 220px));
  justify-content: center;
  gap: 25px;
  margin-bottom: 24px;
}
.ritsumei-insta-contents{
  position: relative;
}
.ritsumei-insta-contents:nth-child(1).fade-in{
  transition: opacity 1s, transform 1s;
}
.ritsumei-insta-contents:nth-child(2).fade-in{
  transition: opacity 2s, transform 2s;
}
.ritsumei-insta-contents:nth-child(3).fade-in{
  transition: opacity 3s, transform 3s;
}
.ritsumei-insta-contents:nth-child(4).fade-in{
  transition: opacity 4s, transform 4s;
}
.ritsumei-insta-contents:nth-child(5).fade-in{
  transition: opacity 5s, transform 5s;
}
.ritsumei-insta-contents:nth-of-type(2n){
  margin-top: 32px;
}
.ritsumei-insta-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.ritsumei-insta-link::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #720000;
  opacity: 0.25;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ritsumei-insta-link:hover::before{
  transform: scaleX(1);
}
.insta-link-icon{
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 1px solid #c9cacc;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: 0.2s;
}
.insta-link-icon img{
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  display: block;
  z-index: 2;
}
.ritsumei-insta-contents:hover .insta-link-icon {
  background-color: #e0e0e0;
}
.ritsumei-insta-contents:hover .insta-link-icon img{
  animation: insta-new-window 0.6s ease-in-out 1;
}
@keyframes insta-new-window {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.ritsumei-insta-img{
  width: 100%;
}

@media screen and (max-width: 767px) {
  .s-features{
    padding: 0 30px;
    margin: 96px 0 80px;
  }
  .features-background{
    width: 290px;
    height: 514px;
    top: 36.47px;
    right: 0;
  }
  .features-heading{
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 85%;
    letter-spacing: -1.28px;
    margin-bottom: 12px;
  }
  .features-decorative-txt{
    font-size: 14px;
    font-style: normal;
    line-height: 150%;
    letter-spacing: 1.4px;
  }
  .features-description{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.84px;
  }
  .features-sliders{
    margin-bottom: 64px;
  }
  .features-slide{
    max-width: 220px;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .features-content{
    padding: 16px 20px 20px;
  }
  .features-date{
    margin-bottom: 2px;
  }
/*スライダー topicsから流用*/
  .swiper-controls {
    margin: 24px 0 0 0;
  }
  .ritsumei-insta-description{
    font-size: 14px;
    letter-spacing: 0.84px;
    margin-bottom: 24px;
  }
  .ritsumei-insta-box {
    max-width: 480px;
    margin: 0 auto 24px;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
  }
  .ritsumei-insta-contents:nth-child(1) {
    grid-column: span 3;
  }
  .ritsumei-insta-contents:nth-child(2) {
    grid-column: span 3;
  }
  .ritsumei-insta-contents:nth-child(3) {
    grid-column: span 2;
  }
  .ritsumei-insta-contents:nth-child(4) {
    grid-column: span 2;
  }
  .ritsumei-insta-contents:nth-child(5) {
    grid-column: span 2;
  }
  .ritsumei-insta-contents:nth-of-type(2n){
    margin-top: initial;
  }
}

/*links*/
.s-links {
  max-width: 1200px;
  margin: 0 auto;
  /*ウィンド幅1366pxの際の左右マージン(83px / 1366px * 100 = 6.076vw)*/
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
}
@media screen and (max-width: 767px) {
.s-links {
  padding: 0 30px;
}
}
.links-tab-container {
  display: flex;
  margin-bottom: 96px;
}
.links-txt-box {
  margin-right: 48px;
}
.links-heading {
  font-size: 112px;
  line-height: 85%;
  letter-spacing: -2.24px;
  margin-bottom: 12px;
}
.links-decorative-txt {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  padding-left: 36px;
  letter-spacing: 1.6px;
}
.links-decorative-txt::before {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: inline-block;
  background-image: url("/top/images/icon_decoration_990000.png");
  background-size: 28px 28px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 8px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .links-tab-container {
  display: block;
  margin-bottom: 64px;
}
.links-txt-box {
  margin: 0 0 40px 0;
}
.links-heading {
  font-size: 64px;
  letter-spacing: -1.28px;
}
.links-decorative-txt {
  font-size: 14px;
  padding-left: 32px;
  letter-spacing: 1.4px;
}
.links-decorative-txt::before {
  width: 24px;
  height: 24px;
  background-size: 24px;
  margin-right: 8px;
}
}
.links-tab {
  max-width: 784px;
  width: 100%;
  margin: 8px 0 0 auto;
}
.tab-links-menu {
  display: flex;
  justify-content: center;
  min-height: 50px;
  padding: 0;
  margin: 0;
  gap: 5px;
}
.tab-links-menu-item {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  color: #101113;
  list-style: none;
  width: 50%;
  padding: 15.5px 12px;
  text-align: center;
  border: 1px solid #99000033;
  border-bottom: none;
  cursor: pointer;
  transition: 0.5s;
}
.tab-links-menu-item::after {
  position: absolute;
  content: "";
  left:0;
  top: 0;
  background-color: #f6eaea;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.tab-links-menu-item:last-of-type {
  margin-right: 0px;
}
.tab-links-menu-item:hover {
  text-decoration: underline;
  background-color: #eddada;
}
.tab-links-menu-item a:link, .tab-links-menu-item a:visited{
  text-decoration: none;
}
.tab-links-menu-item:hover::before {
  transform: translateX(0);
}
.tab-links-menu-item.active {
  color: #990000;
  background-color: #ffffff;
  border: 1px solid #990000;
  border-bottom: none;
  cursor: auto;
}
.tab-links-menu-item.active:hover {
  text-decoration: none;
}
.tab__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #ffffff;
}
.tab-links-panel-box01 {
  display: none;
}
.tab-links-panel-box02 {
  display: none;
}
.tab-links-panel-text {
  padding-top: 24px;
}
.tab-links-list {
  position: relative;
  border-bottom: 1px solid #C9CACC;
  transition: 0.5s;
}
.tab-links-list:hover {
  background-color: #EFF0F2;
}
.tab-links-list:first-child {
  border-top: 1px solid #C9CACC;
}
.tab-links-list a {
  display: block;
  height: 100%;
  padding: 20px 32px 20px 0;
}
.tab-links-list a:hover {
  opacity: 1;
  text-decoration: underline;
}
.tab-links-panel-text a:link {
  text-decoration: none;
}
.tab-links-panel-text a:hover {
  text-decoration: underline;
}
.arrow::after {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: inline-block;
  background-image: url("/common/images/icon_right.png");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  z-index: 1;
}
.window::after {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: inline-block;
  background-image: url("/common/images/icon_window.png");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  z-index: 1;
}
.arrow:hover::after,.window:hover::after {
  animation: links-list-animation 0.5s ease-in-out 1;
}
/* --- アニメーション定義 --- */
@keyframes links-list-animation {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.tab-links-panel-box.show {
  display: block;
}
@media screen and (max-width: 767px) {
  .links-tab {
    margin: 0;
  }
  .tab-links-menu {
    min-height: 48px;
  }
  .tab-links-menu-item {
    font-size: 14px;
    padding: 13.5px 12px;
  }
  .tab-links-list a {
    padding: 16px 32px 16px 0;
  }
}
/*topicsから流用 links用swiper*/
.s-links .swiper-controls{
  margin-bottom: 0px;
}
/* --- コントロール全体のレイアウト --- */
@media screen and (max-width: 767px) {
  .swiper-controls .swiper-scrollbar {
    height: 2px;
  }
}
/*swiper links固有*/
.links-slide {
	flex-shrink: 0;
  margin-right: 24px;
  max-width: 276px;
}
.links-sliders {
  overflow: visible;
}
.links-slide:last-child {
  margin-right: 0;
}
.links-sliders .links-slide a {
  display: block;
  opacity: 1;
}
.links-slide a img {
  width: 100%;
}
.links-hover-img {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: 1px solid #c9cacc;
}
.links-hover-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #72000040;
  transform: translateX(-100%);
  transition: transform 0.5s;
  pointer-events: none;
  z-index: 1;
}
.links-hover-img:hover::after {
  transform: translateX(0);
}
.links-hover-img:hover + .links-slide-hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .links-slide {
    max-width: 220px;
    height: auto;
  }
  .swiper-wrapper .links-sliders {
    align-items: flex-start;
    height: auto;
  }
}

/*TOPに戻るボタン*/
.pagetop {
  width: 36px;
	height: 36px;
  position: fixed;
  bottom: 21px;
	right: 0;
	content: "";
	display: inline-block;
	background-color: #101113;
	padding: 6px;
  overflow: hidden;
  z-index: 5;
  cursor: pointer;
  transition: background-color 0.4s;
}
.pagetop::after {
	width: 36px;
	height: 36px;
  position: absolute;
  bottom: 0;
	right: 0;
	content: "";
	background-image: url("/common/images/icon_chevron_top.png");
	background-size: 36px;
	padding: 6px;
	background-position: center;
	background-repeat: no-repeat;
  z-index: 15;
}
/* --- ホバー時の動作 --- */
.pagetop:hover {
  background-color: #6b6c70;
}
.pagetop:hover::after {
  animation: pagetop-btn-animation 0.6s ease-in-out 1;
}
/* --- アニメーション定義 --- */
@keyframes pagetop-btn-animation {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.pagetop-link {
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 0;
	right: 0;
  padding: 6px;
}
@media screen and (max-width: 767px) {
.pagetop {
	padding: 2px;
}
.pagetop::after {
	padding: 2px;
}
.pagetop-link {
  padding: 2px;
}
}

/* バナー箇所 */
.s-banner {
  display: none;
  position: relative;
  bottom: 25px;
  left: 0;
  position: fixed;
  z-index: 9999;
  max-width: 200px;
  border: 1px solid #c9cacc;
}
.s-banner .banner-img {
  display: block;
  max-width: 100%;
  position: relative;
}
.s-banner img {
  display: block;
  max-width: 100%;
  position: relative;
}
/* ホバー */
.s-banner a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-101%);
  background-color: #72000040;
  transition: transform 0.5s;
  z-index: 50;
}
.s-banner a:hover::before {
  transform: translateX(0);
}
/* 削除ボタン */
.banner-close-btn {
  cursor: pointer;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  padding: 4.5px;
  border-radius: 50%;
  border: 1px solid #c9cacc;
  background-color: #ffffff;
  overflow: hidden;
  z-index: 100;
  transition: 0.4s;
}

.banner-close-btn img {
  position: relative;
  z-index: 2;
}

.banner-close-btn:hover {
  background-color: #eff0f2;
}
.banner-close-btn:hover img {
  animation: banner-close-btn-animation 0.6s ease-in-out 1;
}
/* --- アニメーション定義 --- */
@keyframes banner-close-btn-animation {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@media screen and (max-width: 767px) {
  .s-banner {
    bottom: 10px;
  }
}
