@charset "UTF-8";
.mv_wrap {
  position: relative;
}

@media print, screen and (min-width: 920px) {
  .mv_wrap {
    display: flex;
    margin-bottom: 90px;
  }
  .mv_wrap:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: calc(100% + 90px);
    background: url("../img/top/topbg.svg") no-repeat center center;
    background-color: #fff;
    background-size: cover;
  }
}

.mv_photo {
  position: relative;
  width: 100%;
  height: 60vw;
}

@media print, screen and (min-width: 920px) {
  .mv_photo {
    width: 100%;
    height: auto;
  }
}

.mv_photo .catch_copy {
  position: absolute;
  top: 80%;
  left: 53%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-align: left;
}

@media print, screen and (min-width: 768px) {
  .mv_photo .catch_copy {
    font-size: 5rem;
    width: 100%;
    letter-spacing: 0.2em;
  }
}

@media print, screen and (min-width: 920px) {
  .mv_photo .catch_copy {
    font-size: 3.3vw;
  }
}

.mv_photo_slider {
  height: 100%;
  width: 100%;
  margin: 0;
}

.mv_photo_slider .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mv_photo_slider .swiper-slide2 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.mv_bnr {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  padding-bottom: 100px;
  background: #f7f7f7;
  z-index: 1;
}

@media print, screen and (min-width: 768px) {
  .mv_bnr {
    padding-bottom: 120px;
  }
}

@media print, screen and (min-width: 920px) {
  .mv_bnr {
    align-items: flex-start;
    width: 50%;
    margin-top: 10%;
    margin-left: -45%;
    padding: 70px;
    background: none;
  }
}

.mv_bnr_slider_wrap {
  position: relative;
  width: 637px;
  max-width: 100%;
  z-index: 1;
  margin-top: -48px;
}

@media print, screen and (min-width: 920px) {
  .mv_bnr_slider_wrap {
    margin-top: 0;
  }
}

.mv_bnr_slider {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.mv_bnr_slider a {
  display: block;
  background: #fff;
  padding: 15px;
}

@media print, screen and (min-width: 768px) {
  .mv_bnr_slider a {
    padding: 20px;
  }
}

.mv_bnr_slider a img {
  transition: 0.3s ease;
}

@media print, screen and (min-width: 768px) {
  .mv_bnr_slider a:hover img {
    opacity: 0.7;
  }
}

.swiper_nav {
  position: relative;
  display: block;
  height: 35px;
  width: 250px;
  margin-left: auto;
  margin-top: 40px;
}

@media print, screen and (min-width: 920px) {
  .swiper_nav {
    margin-top: 30px;
    margin-right: 36px;
  }
}

.mv_bnr .swiper_nav {
  position: absolute;
  right: 10px;
  bottom: -60px;
  margin: 0;
}

@media print, screen and (min-width: 920px) {
  .mv_bnr .swiper_nav {
    bottom: -13%;
    right: 36px;
  }
}

/* プログレスバー */
.progressbar {
  position: absolute;
  width: 80px;
  height: 4px;
  top: 16px;
  left: 30px;
  background: #d7d7e0;
  border-radius: 6px;
  overflow: hidden;
}

.progressbar span {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background: #db6b68;
  border-radius: 7px;
  transform: scaleX(0);
  transform-origin: left center;
  transition-timing-function: linear;
}

/* ページネーション */
.swiper-pagination {
  position: relative;
}

.swiper-pagination-fraction {
  color: transparent;
  top: 0;
  bottom: unset !important;
}

.swiper-pagination-current {
  position: absolute;
  color: #222222;
  top: 10px;
  left: 0;
  font-weight: bold;
}

.swiper-pagination-total {
  position: absolute;
  color: #222222;
  top: 10px;
  left: 123px;
  font-weight: bold;
}

/* 前へ次への矢印カスタマイズ */
/* 共通部分 */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  display: block;
  width: 35px !important;
  height: 35px !important;
  margin-top: 0;
  border: 1px solid #d7d7e0;
  background: #fff;
  transition: 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: block;
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s ease;
}

@media print, screen and (min-width: 768px) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: #f7f7f7;
  }
}

.swiper-button-next {
  right: unset !important;
  left: 160px !important;
  top: 0 !important;
}

.swiper-button-next:after {
  width: 8px;
  height: 8px;
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -1px;
}

.swiper-button-prev {
  right: unset !important;
  left: -50px !important;
  top: 0 !important;
}

.swiper-button-prev:after {
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #222222;
  border-left: 1px solid #222222;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 2px;
}

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

.swiper-slide2 img {
  width: 100%;
  height: auto;
}



.top_bnr {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media print, screen and (min-width: 920px) {
  .top_bnr {
    margin-top: 120px;
  }
}

.top_bnr img {
  transition: 0.3s ease;
}

.top_bnr:hover img {
  opacity: 0.7;
}

.caution {
  position: relative;
  z-index: 1;
  margin-top: -10px;
}

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

.caution dl {
  position: relative;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  border-bottom: 4mm ridge rgba(219, 107, 104, 0.6);
}

@media print, screen and (min-width: 920px) {
  .caution dl {
    display: flex;
  }

}

.caution dt {
  position: relative;
  color: #fff;
  font-size: 1.0rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #db6b68;
  line-height: 1.4;
  width: 100%;
  padding: 15px;
}

@media print, screen and (min-width: 920px) {
  .caution dt {
    font-size: 1.0rem;
    width: 23%;
  }
}

.caution dt i {
  font-size: 1.2rem;
  margin-right: 5px;
}

@media print, screen and (min-width: 768px) {
  .caution dt i {
    font-size: 2.1rem;
    margin-right: 8px;
  }
}

.caution dd {
  padding: 20px;
}

@media print, screen and (min-width: 768px) {
  .caution dd {
    padding: 25px 35px;
  }
}

.caution dd li {
  margin-top: 15px;
}

@media print, screen and (min-width: 920px) {
  .caution dd li {
    margin-top: 10px;
  }
}

.caution dd li:first-child {
  margin-top: 0;
}

.caution dd a {
  display: block;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
}

@media print, screen and (min-width: 920px) {
  .caution dd a {
    display: flex;
    align-items: center;
    line-height: 1.6;
  }
}

.caution dd a .icon-arrow01.in_bg {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #e63434;
  margin-left: 0.3em;
  border-radius: 0;
}

@media print, screen and (min-width: 768px) {
  .caution dd a .icon-arrow01.in_bg {
    margin-left: 0.5em;
    font-size: 1.0rem;
    width: 16px;
    height: 16px;
  }
}

.caution dd a:hover .text {
  color: #376092;
}

.caution dd .day {
  display: block;
  margin-bottom: 5px;
  font-size: 0.8rem;
  margin-right: 20px;
  display: block;
  color: #313131;
}

@media print, screen and (min-width: 920px) {
  .caution dd .day {
    display: inline-block;
    margin-bottom: 0;
    font-size: 0.8rem;
  }
}

.caution dd .text {
  font-size: 0.9rem;
  color: #313131;
  text-decoration: 0.3s;
}

@media print, screen and (min-width: 768px) {
  .caution dd .text {
    font-size: 1.0rem;
  }
}

@media print, screen and (min-width: 920px) {
  .caution dd .text {
    display: flex;
    align-items: center;
    line-height: 1.6;
  }
}

.pickup {
  overflow: hidden;
}

.title_pickup {
  padding: 60px 0 30px;
}

@media print, screen and (min-width: 768px) {
  .title_pickup {
    padding: 40px 0;
  }
}

.title_pickup .title {
  display: flex;
  align-items: baseline;
  font-size: 2.1.2rem;
  font-weight: 600;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #313131;
}

@media print, screen and (min-width: 768px) {
  .title_pickup .title {
    font-size: 3.7rem;
  }
}

.title_pickup .title span {
  font-size: 1.2rem;
  padding-left: 15px;
}
.title_topics .title span {
  font-size: 1.2rem;
  padding-left: 15px;
}

@media print, screen and (min-width: 768px) {
  .title_pickup .title span {
    font-size: 1.0rem;
  }
  .title_topics .title span {
    font-size: 1.0rem;
  }
}

.pickup_slider {
  overflow: visible;
}

.pickup_slider a {
  display: block;
  text-decoration: none;
  color: #222222;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

@media print, screen and (min-width: 768px) {
  .pickup_slider a:hover .bg img {
    transform: scale(1.05);
  }
  .pickup_slider a:hover .info {
    opacity: 0.6;
  }
}

.pickup_slider .bg {
  height: 40vw;
  overflow: hidden;
  border-bottom: 3px solid #db6b68;
}

@media print, screen and (min-width: 920px) {
  .pickup_slider .bg {
    height: 16vw;
  }
}

@media print, screen and (min-width: 1180px) {
  .pickup_slider .bg {
    height: 17vw;
  }
}

@media print, screen and (min-width: 1440px) {
  .pickup_slider .bg {
    height: 240px;
  }
}

.pickup_slider .bg img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pickup_slider .info {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  column-gap: 10px;
  transition: 0.3s ease;
}

.pickup_slider .info .date {
  display: flex;
  align-items: center;
  color: #313131;
  font-size: 1.0rem;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s ease;
}

@media print, screen and (min-width: 920px) {
  .pickup_slider .info .date {
    font-size: 0.8rem;
  }
}

.pickup_slider .info .category {
  display: block;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
  border: 1px solid #db6b68;
  color: #db6b68;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 2px 8px 1px 8px;
}

@media print, screen and (min-width: 920px) {
  .pickup_slider .info .category {
    font-size: 0.8rem;
    padding: 4px 8px 2px 8px;
  }
}

.pickup_slider .info .title {
  width: 100%;
  margin-top: 5px;
  line-height: 1.4;
  font-size: 1.0rem;
  font-weight: bold;
  color: #313131;
}

.pickup_slider .info .tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
  margin-left: -6px;
  margin-right: -6px;
}

.pickup_slider .info .tags .tag {
  padding: 0 6px;
  font-size: 1.2rem;
}

@media print, screen and (min-width: 920px) {
  .pickup_slider .swiper_nav {
    margin-right: 0;
  }
}

.pickup_slider .swiper_nav .swiper-button-prev,
.pickup_slider .swiper_nav .swiper-button-next {
  border-color: #f7f7f7;
  background-color: #f7f7f7;
}

.pickup_slider .swiper_nav .swiper-button-prev:hover,
.pickup_slider .swiper_nav .swiper-button-next:hover {
  background-color: #fff;
}

.topics {
  padding-top: 80px;
  padding-bottom: 65px;
    background-color: #f5f2eb;
}

@media print, screen and (min-width: 920px) {
  .topics {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f5f2eb;
  }
}

@media print, screen and (min-width: 1180px) {
  .colms_wrap {
    display: flex;
  }
}

@media print, screen and (min-width: 1180px) {
  .colms_wrap .colm_news {
    width: 100%;
    padding-right: 3%;
  }
}

.colms_wrap .colm_pr {
  margin-top: 60px;
}

@media print, screen and (min-width: 1180px) {
  .colms_wrap .colm_pr {
    width: 100%;
    padding-left: 3%;
    margin-top: 0;
  }
}

.topics_category_select {
  width: 100%;
  max-width: 350px;
  margin-bottom: 30px;
}

@media print, screen and (min-width: 920px) {
  .topics_category_select {
    margin-bottom: 40px;
  }
}

@media print, screen and (min-width: 768px) {
  .topics_category_select .dropdown {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.news_list .news_list_item a {
  border: 0;
}

@media print, screen and (min-width: 920px) {
  .news_list .news_list_item .bg {
    height: 19vw;
  }
}

@media print, screen and (min-width: 1180px) {
  .news_list .news_list_item .bg {
    height: 162px;
  }
}

.news_list .news_list_item .info {
  padding-left: 0;
  padding-right: 0;
}

@media print, screen and (min-width: 920px) {
  .pr_list {
      display: flex; /* Flexboxを有効にする */
  flex-wrap: wrap; /* 子要素を複数行に折り返す */
  justify-content: space-between; /* 子要素の間に均等なスペースを配置 */
  list-style: none; /* リストの点（bullet）を非表示にする */
  padding: 0; /* デフォルトのpaddingをリセット */
  margin: 0; /* デフォルトのmarginをリセット */
  }
  .pr_list li {
  width: calc(33.33% - 20px); /* 3列表示にするための幅計算 (余白を考慮) */
  margin-bottom: 30px; /* 各項目の下部の余白 */
  box-sizing: border-box; /* paddingやborderをwidthに含める */
  border-bottom: 1px solid #ccc;
}

.pr_list li a {
  display: block;
  padding: 15px;
  color: #222222;
  text-decoration: none;
  transition: 0.5s ease;
}
  .pr_list li a:hover {
    background: #f7f7f7;
  }
}


/* スマートフォンでの表示 (メディアクエリ) */
@media (max-width: 768px) { /* 768px以下の画面幅で適用 */
  .pr_list {
    flex-direction: column; /* 子要素を縦方向に並べる */
    align-items: center; /* 中央寄せにする場合は指定 */
  }

  .pr_list li {
    width: 100%; /* スマホでは幅を大きくする (例: 90%) */
    max-width: 400px; /* 必要に応じて最大幅を設定 */
    margin-bottom: 20px; /* 項目の下部の余白 */
    margin-left: 0; /* PC用のマージンをリセット */
    margin-right: 0; /* PC用のマージンをリセット */
    border-bottom: 1px solid #ccc;
  }
}

.pr_list .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 5px;
}

@media print, screen and (min-width: 920px) {
  .pr_list .info {
    flex-wrap: nowrap;
    row-gap: 0;
  }
}

.pr_list .info .date {
  display: block;
  color: #313131;
  font-size: 1.0rem;
  font-weight: bold;
  line-height: 1;
}

@media print, screen and (min-width: 920px) {
  .pr_list .info .date {
    font-size: 0.8rem;
  }
}

.pr_list .info .category {
  display: block;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
  background-color: #db6b68;
  color: #ffffff;
  border-radius: 100px;
  font-size: 0.8rem;
  padding: 2px 8px 1px 8px;
}

@media print, screen and (min-width: 920px) {
  .pr_list .info .category {
    font-size: 0.9rem;
    padding: 4px 8px 2px 8px;
  }
}

.pr_list .info .tags {
  padding-left: 10px;
}

.pr_list .info .tag {
  width: 100%;
  color: #313131;
  font-size: 1.1rem;
}

@media print, screen and (min-width: 920px) {
  .pr_list .info .tag {
    width: auto;
    font-size: 1.2rem;
    margin-left: 5px;
  }
}

.pr_list .title {
  margin-top: 5px;
  font-size: 1.0rem;
  line-height: 1.75;
}

@media print, screen and (min-width: 920px) {
  .pr_list .title {
    margin-top: 6px;
    font-size: 1.0rem;
  }
}

.pr_list .title span {
  background-image: linear-gradient(to right, #222222, #222222);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
  transition-duration: 0.4s;
  transition-property: background-size;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.sns_area {
  padding-bottom: 100px;
}

@media print, screen and (min-width: 920px) {
  .sns_area {
    padding-bottom: 160px;
  }
}

.sns_box {
  position: relative;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 15px 20px 15px;
}

@media print, screen and (min-width: 768px) {
  .sns_box {
    padding: 45px 30px 30px 30px;
  }
}

@media print, screen and (min-width: 1180px) {
  .sns_box {
    padding: 45px 50px 30px 50px;
  }
}

.sns_box .text_follow {
  position: absolute;
  top: -6%;
  left: -5%;
  width: 40vw;
  transform: rotate(-12deg);
}

@media print, screen and (min-width: 768px) {
  .sns_box .text_follow {
    top: -8%;
    left: -4%;
    width: 25vw;
  }
}

@media print, screen and (min-width: 920px) {
  .sns_box .text_follow {
    top: -50px;
    left: -40px;
    width: 256px;
  }
}

.sns_box .title_sns {
  text-align: center;
  margin-bottom: 28px;
}

@media print, screen and (min-width: 768px) {
  .sns_box .title_sns {
    margin-bottom: 33px;
  }
}

.sns_box .title_sns .title {
  font-weight: normal;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.0rem;
  color: #313131;
}

@media print, screen and (min-width: 768px) {
  .sns_box .title_sns .title {
    font-size: 2.3rem;
  }
}

.sns_box .sns_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  margin-left: -5px;
  margin-right: -5px;
}

@media print, screen and (min-width: 920px) {
  .sns_box .sns_list {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.sns_box .sns_list li {
  width: calc((100% - 10px) / 2);
  padding: 0 5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

@media print, screen and (min-width: 768px) {
  .sns_box .sns_list li {
    margin-bottom: 30px;
    width: calc((100% - 30px) / 4);
    padding: 0;
  }
}

@media print, screen and (min-width: 1180px) {
  .sns_box .sns_list li {
    padding: 0 20px;
  }
}

.sns_box .sns_list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #313131;
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

@media print, screen and (min-width: 768px) {
  .sns_box .sns_list li a {
    font-size: 1.0rem;
  }
}

@media print, screen and (min-width: 768px) {
  .sns_box .sns_list li a:hover {
    color: #db6b68;
  }
}

.sns_box .sns_list li a i {
  margin-right: 5px;
}

@media print, screen and (min-width: 768px) {
  .sns_box .sns_list li a i {
    margin-right: 10px;
  }
}

@media print, screen and (min-width: 920px) {
  .sns_box .sns_list li a i {
    margin-right: 20px;
  }
}

.sns_box .sns_list li a i:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-size: 3rem;
}

@media print, screen and (min-width: 768px) {
  .sns_box .sns_list li a i:before {
    font-size: 4rem;
  }
}

@media print, screen and (min-width: 1180px) {
  .sns_box .sns_list li a i:before {
    font-size: 4.8rem;
  }
}

.sns_box .sns_list li a i.i_inst:before {
  content: "\e906";
}

.sns_box .sns_list li a i.i_fb:before {
  content: "\e908";
}

.sns_box .sns_list li a i.i_yt:before {
  content: "\e907";
}

.department {
  background: #f7f7f7;
  padding: 90px 0;
}

@media print, screen and (min-width: 920px) {
  .department {
    padding: 140px 0;
      background: url("../img/top/topbg2.svg") no-repeat center center;
      background-color: #d5e1eb;
      background-size: cover;
  }
}

.title_department {
  margin-bottom: 60px;
}

.title_department .title {
  font-weight: 600;
  font-size: 2.1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #313131;
}

@media print, screen and (min-width: 768px) {
  .title_department .title {
    font-size: 3.5rem;
  }
}

.title_department .title span {
  display: block;
  font-size: 0.9rem;
  margin-top: 10px;
}

@media print, screen and (min-width: 768px) {
  .title_department .title span {
    font-size: 1.2rem;
    padding-top: 10px;
  }
}

@media print, screen and (min-width: 920px) {
  .department_menu {
    display: flex;
  }
}

.department_menu__item {
  width: 100%;
}

@media print, screen and (min-width: 920px) {
  .department_menu__item {
    width: 50%;
  }
}

.department_menu__item.literature {
  margin-bottom: 50px;
}
.department_menu__item.humanlife {
  margin-bottom: 50px;
}
.department_menu__item.sports {
  margin-bottom: 50px;
}

@media print, screen and (min-width: 920px) {
  .department_menu__item.literature {
    margin-bottom: 0;
  }
}

.department_menu__item.literature .bg {
  background-image: url(../img/top/department_literature_img.jpg);
}

@media print, screen and (min-width: 920px) {
  .department_menu__item.literature .bg {
    margin-left: calc(-23.3vw + 100%);
  }
}

.department_menu__item.literature .menu_box {
  border-bottom: 4mm ridge rgba(81, 132, 189, 0.6);
}

.department_menu__item.literature .menu_box .link_head {
  border-bottom-color: #5184bd;
}

.department_menu__item.literature .menu_box_wrap {
  margin-top: -40px;
  margin-right: 0;
}

@media print, screen and (min-width: 920px) {
  .department_menu__item.literature .menu_box_wrap {
    padding-right: 6.5%;
    margin-top: -75px;
  }
}

.department_menu__item.humanlife .bg {
  background-image: url(../img/top/department_humanlife_img.jpg);
}

@media print, screen and (min-width: 920px) {
  .department_menu__item.humanlife .bg {
    margin-left: calc(-23.3vw + 100%);
  }
}

.department_menu__item.humanlife .menu_box {
  border-bottom: 4mm ridge rgba(165, 127, 175, 0.6);
}

.department_menu__item.humanlife .menu_box .link_head {
  border-bottom-color: #a57faf;
}

.department_menu__item.humanlife .menu_box_wrap {
  margin-top: -40px;
  margin-left: auto;
}

@media print, screen and (min-width: 920px) {
  .department_menu__item.humanlife .menu_box_wrap {
    margin-top: -75px;
    padding-right: 6.5%;
  }
}

.department_menu__item.sports .bg {
  background-image: url(../img/top/department_sports_img.jpg);
}

@media print, screen and (min-width: 920px) {
  .department_menu__item.sports .bg {
    margin-left: calc(-23.3vw + 100%);
  }
}

.department_menu__item.sports .menu_box {
  border-bottom: 4mm ridge rgba(61, 169, 171, 0.6);
}

.department_menu__item.sports .menu_box .link_head {
  border-bottom-color: #3da9ab;
}

.department_menu__item.sports .menu_box_wrap {
  margin-top: -40px;
  margin-left: auto;
}

@media print, screen and (min-width: 920px) {
  .department_menu__item.sports .menu_box_wrap {
    margin-top: -75px;
    padding-right: 6.5%;
  }
}

.department_menu__item .bg {
  margin: 0 calc(-50vw + 50%);
  padding-top: 80%;
  background: no-repeat center center;
  background-size: cover;
}

@media print, screen and (min-width: 920px) {
  .department_menu__item .bg {
    margin: 0;
    width: calc(38% + (35vw - 100%));
    padding-top: 80%;
  }
}

.department_menu__item .menu_box {
  background: #fff;
  padding: 20px 20px 20px;
  border-bottom: 5px solid #ddd;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media print, screen and (min-width: 768px) {
  .department_menu__item .menu_box {
    padding: 25px 35px 35px;
  }
}

.department_menu__item .menu_box .link_head {
  display: block;
  position: relative;
  line-height: 1.1;
  font-size: 1.0rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  border-bottom: 1px solid #b99576;
  color: #222222;
  text-decoration: none;
  padding-bottom: 17px;
}

@media print, screen and (min-width: 768px) {
  .department_menu__item .menu_box .link_head {
    font-size: 2.0rem;
    padding-bottom: 20px;
  }
}

.department_menu__item .menu_box .link_head:after {
  position: absolute;
  top: 50%;
  color: #313131;
  right: 0;
  transform: translateY(-50%);
  margin-top: -8px;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;

  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea42";
  font-size: 1.3rem;
  transition: 0.3s ease;
}

@media print, screen and (min-width: 768px) {
  .department_menu__item .menu_box .link_head:after {
    font-size: 1.8rem;
    margin-top: -8px;
  }
}

@media print, screen and (min-width: 768px) {
  .department_menu__item .menu_box .link_head:hover {
    color: rgba(34, 34, 34, 0.6);
  }
  .department_menu__item .menu_box .link_head:hover:after {
    color: #db6b68;
    right: -5px;
  }
}

.department_menu__item .menu_box .link_list {
  margin-top: 10px;
}

.department_menu__item .menu_box .link_list li a {
  position: relative;
  display: block;
  padding: 6px 30px 6px 0;
  color: #222222;
  text-decoration: none;
  font-size: 1.0rem;
}

@media print, screen and (min-width: 768px) {
  .department_menu__item .menu_box .link_list li a {
    padding: 3px 30px 3px 0;
    font-size: 1.2rem;
  }
}

.department_menu__item .menu_box .link_list li a:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: -3px;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea3c";
  font-size: 1.2rem;
  transition: 0.3s ease;
}

@media print, screen and (min-width: 768px) {
  .department_menu__item .menu_box .link_list li a:after {
    font-size: 1.0rem;
    margin-top: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .department_menu__item .menu_box .link_list li a:hover {
    color: rgba(34, 34, 34, 0.6);
  }
  .department_menu__item .menu_box .link_list li a:hover:after {
    color: #db6b68;
    right: -5px;
  }
}

.department_submenu {
  margin-top: 50px;
}

@media print, screen and (min-width: 920px) {
  .department_submenu {
    margin-top: 80px;
  }
}

.department_submenu_box {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

@media print, screen and (min-width: 768px) {
  .department_submenu_box {
    width: calc(100% - 80px);
  }
}

@media print, screen and (min-width: 920px) {
  .department_submenu_box .submenu_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
}

.department_submenu_box .submenu_list li {
  width: 100%;
  margin-bottom: 15px;
}

@media print, screen and (min-width: 920px) {
  .department_submenu_box .submenu_list li {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

.department_submenu_box .submenu_list li.wide_full {
  width: 100%;
  /*margin-bottom: 0;*/
}

.research {
  overflow: hidden;
  padding: 0 0 45px;
}

@media print, screen and (min-width: 920px) {
  .research {
    padding: 0 0 160px;
  }
}

@media print, screen and (min-width: 920px) {
  .research .swiper_nav {
    margin-right: 0;
  }
}

.research .swiper_nav .swiper-pagination-current,
.research .swiper_nav .swiper-pagination-total {
  color: #fff;
}

.research .swiper_nav .progressbar span {
  background-color: #222222;
}

.title_research {
  margin-bottom: 35px;
}

@media print, screen and (min-width: 920px) {
  .title_research {
    margin-bottom: 50px;
  }
}

.title_research .title {
  font-weight: 600;
  font-size: 2.1.2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #313131;
}

@media print, screen and (min-width: 768px) {
  .title_research .title {
    font-size: 3.5rem;
  }
}

.title_research .subtitle {
  font-weight: 600;
  font-size: 1.0rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #313131;
  padding-top: 5px;
}

@media print, screen and (min-width: 768px) {
  .title_research .subtitle {
    font-size: 1.2rem;
  }
}

.research_intro {
  font-size: 1.0rem;
  margin-bottom: 35px;
  line-height: 2;
}

@media print, screen and (min-width: 920px) {
  .research_intro {
    margin-bottom: 45px;
  }
}

.research_link_list li {
  border-bottom: 1px solid #d7d7e0;
}

.research_link_list li a {
  position: relative;
  display: block;
  color: #222222;
  text-decoration: none;
  font-size: 1.0rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 20px 30px 20px 0;
}

@media print, screen and (min-width: 920px) {
  .research_link_list li a {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 920px) {
  .research_link_list li a:hover {
    color: rgba(34, 34, 34, 0.6);
  }
  .research_link_list li a:hover:after {
    color: #db6b68;
    right: -3px;
  }
}

.research_link_list li a:after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  font-size: 1.2rem;
  transition: 0.3s ease;
}

@media print, screen and (min-width: 920px) {
  .research_link_list li a:after {
    font-size: 1.65rem;
  }
}

.research_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 40px;
}

@media print, screen and (min-width: 768px) {
  .research_tags {
    gap: 10px;
  }
}

.research_tags .tag {
  display: inline-block;
  background: #f7f7f7;
  line-height: 1;
  padding: 8px 8px;
  color: #313131;
  text-decoration: none;
  font-size: 1.1rem;
}

@media print, screen and (min-width: 768px) {
  .research_tags .tag {
    padding: 10px 8px;
    font-size: 1.0rem;
  }
}

.research_tags .tag:hover {
  background: #313131;
  color: #fff;
}

.research_head {
  position: relative;
  padding-top: 30px;
  padding-bottom: 45px;
  background: #b8aba7;
}

@media print, screen and (min-width: 920px) {
  .research_head {
    padding-top: 70px;
    padding-bottom: 0;
  }
}

@media print, screen and (min-width: 920px) {
  .research_colm_wrap {
    display: flex;
  }
}

@media print, screen and (min-width: 920px) {
  .research_colm__item {
    width: 50%;
  }
}

@media print, screen and (min-width: 920px) {
  .research_colm__item.item_res_slider {
    padding-left: 40px;
    padding-bottom: 70px;
  }
}

@media print, screen and (min-width: 1280px) {
  .research_colm__item.item_res_slider {
    padding-left: 96px;
  }
}

.research_info_box {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  padding: 60px 35px 60px 0;
  margin-bottom: 45px;
}

@media print, screen and (min-width: 920px) {
  .research_info_box {
    padding: 80px 52px;
    margin-bottom: -70px;
  }
}

.research_info_box:after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
}

@media print, screen and (min-width: 920px) {
  .research_info_box:after {
    content: none;
  }
}

.research_slider_bottom_bg {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #b5aeaa;
}

@media print, screen and (min-width: 768px) {
  .research_slider_bottom_bg {
    padding-bottom: 60px;
  }
}

@media print, screen and (min-width: 920px) {
  .research_slider_bottom_bg {
    padding-top: 88px;
    padding-bottom: 60px;
  }
}

.research_slider_bottom {
  display: flex;
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 920px) {
  .research_slider_bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.research_slider_bottom .research_more {
  width: 100%;
  margin-top: 60px;
}

@media print, screen and (min-width: 920px) {
  .research_slider_bottom .research_more {
    width: 586px;
    max-width: 45%;
    margin-top: 0;
  }
}

.research_slider_bottom .swiper_nav {
  margin-top: 0;
}

@media print, screen and (min-width: 920px) {
  .research_slider_bottom .swiper_nav {
    margin-top: 50px;
    margin-right: 0;
  }
}

.research_bottom {
  padding: 30px 0 90px;
  background: #f7f7f7;
}

@media print, screen and (min-width: 768px) {
  .research_bottom {
    padding-top: 56px;
  }
}

@media print, screen and (min-width: 920px) {
  .research_bottom {
    padding: 56px 0 140px;
  }
}

@media print, screen and (min-width: 920px) {
  .research_submenu {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
  }
}

.research_submenu li {
  margin-bottom: 15px;
}

@media print, screen and (min-width: 920px) {
  .research_submenu li {
    padding: 0 10px;
    width: 50%;
    margin-bottom: 0;
  }
}

.research_slider .swiper-slide {
  width: 100%;
}

.research_slider .swiper-slide a {
  display: block;
  color: #222222;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide a:hover {
    color: rgba(34, 34, 34, 0.6);
  }
  .research_slider .swiper-slide a:hover .bg img {
    transform: scale(1.05);
  }
}

.research_slider .swiper-slide a .bg {
  overflow: hidden;
  height: 55vw;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide a .bg {
    height: 380px;
  }
}

@media print, screen and (min-width: 1180px) {
  .research_slider .swiper-slide a .bg {
    height: 320px;
  }
}

.research_slider .swiper-slide a .bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.research_slider .swiper-slide a .info {
  position: relative;
  margin-top: -20px;
  padding-right: 12%;
  z-index: 1;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide a .info {
    margin-top: -45px;
  }
}

.research_slider .swiper-slide a .info .title {
  display: inline-block;
  background: #fff;
  padding: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.3rem;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide a .info .title {
    padding: 20px 30px 20px 16px;
    font-size: 1.2rem;
  }
}

.research_slider .swiper-slide a .info .title > span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.research_slider .swiper-slide a .info .tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
  margin-left: -4px;
  margin-right: -4px;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide a .info .tags {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.research_slider .swiper-slide a .info .tags .tag {
  padding: 0 4px;
  color: #fff;
  font-size: 1.1rem;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide a .info .tags .tag {
    padding: 0 12px;
    font-size: 1.0rem;
  }
}

.research_slider .swiper-slide2 {
  width: 100%;
}

.research_slider .swiper-slide2 a {
  display: block;
  color: #222222;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide2 a:hover {
    color: rgba(34, 34, 34, 0.6);
  }
  .research_slider .swiper-slide2 a:hover .bg img {
    transform: scale(1.05);
  }
}

.research_slider .swiper-slide2 a .bg {
  overflow: hidden;
  height: 55vw;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide2 a .bg {
    height: 380px;
  }
}

@media print, screen and (min-width: 1180px) {
  .research_slider .swiper-slide2 a .bg {
    height: 320px;
  }
}

.research_slider .swiper-slide2 a .bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.research_slider .swiper-slide2 a .info {
  position: relative;
  margin-top: -20px;
  padding-right: 12%;
  z-index: 1;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide2 a .info {
    margin-top: -45px;
  }
}

.research_slider .swiper-slide2 a .info .title {
  display: inline-block;
  background: #fff;
  padding: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.3rem;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide2 a .info .title {
    padding: 20px 30px 20px 16px;
    font-size: 1.2rem;
  }
}

.research_slider .swiper-slide2 a .info .title > span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.research_slider .swiper-slide2 a .info .tags {
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
  margin-left: -4px;
  margin-right: -4px;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide2 a .info .tags {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.research_slider .swiper-slide2 a .info .tags .tag {
  padding: 0 4px;
  color: #fff;
  font-size: 1.1rem;
}

@media print, screen and (min-width: 768px) {
  .research_slider .swiper-slide2 a .info .tags .tag {
    padding: 0 12px;
    font-size: 1.0rem;
  }
}

.feature {
  padding-top: 0%;
  padding-bottom: 90px;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .feature {
    padding-top: 45%;
  }
}

@media print, screen and (min-width: 920px) {
  .feature {
    padding-top: 0%;
    padding-bottom: 150px;
    background: url("../img/top/topbg2.svg") no-repeat center center;
    background-color: #f5f2eb;
    background-size: cover;
  }
}

/*.feature:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 100%;
  background: url(../img/top/youcan_bg.jpg) no-repeat center center;
  background-size: cover;
}

@media print, screen and (min-width: 768px) {
  .feature:before {
    padding-top: 70%;
  }
}

@media print, screen and (min-width: 920px) {
  .feature:before {
    padding-top: 50%;
  }
}*/

.feature_slider {
  position: relative;
  z-index: 1;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

@media print, screen and (min-width: 920px) {
  .feature_slider {
    margin: 0;
    width: 55%;
  }
}

.feature_slider a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.feature_slider a img {
  transition: 0.3s ease;
}

.feature_slider a:hover img {
  opacity: 0.7;
}

@media print, screen and (min-width: 920px) {
  .feature_slider .swiper_nav {
    margin-right: 54px;
  }
}

.feature_slider .swiper_nav .swiper-button-prev,
.feature_slider .swiper_nav .swiper-button-next {
  border-color: #f7f7f7;
  background-color: #f7f7f7;
}

.feature_slider .swiper_nav .swiper-button-prev:hover,
.feature_slider .swiper_nav .swiper-button-next:hover {
  background-color: #fff;
}

.feature_bnr_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-left: -5px;
  margin-right: -5px;
}

@media print, screen and (min-width: 920px) {
  .feature_bnr_list {
    margin-top: 140px;
    margin-left: -10px;
    margin-right: -10px;
  }
}

.feature_bnr_list li {
  padding: 0 5px;
  margin-bottom: 10px;
  width: 50%;
}

@media print, screen and (min-width: 768px) {
  .feature_bnr_list li {
    width: 33.333333%;
  }
}

@media print, screen and (min-width: 920px) {
  .feature_bnr_list li {
    padding: 0 10px;
    margin-bottom: 20px;
    width: 25%;
  }
}

.feature_bnr_list li a {
  display: block;
}

.feature_bnr_list li a:hover {
  opacity: 0.7;
}

/*YOU CAN FIND*/
#youcan_box {
  display: block;
  position: relative;
  margin-top: -1px;
  margin-bottom: 0px;
  background-color: #eaf0f2;
}
#youcan_box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  /* bottom: 20%; */
  background: 
  /*linear-gradient(to bottom, rgba(234, 240, 242,1), rgba(234, 240, 242,0)), */
  url("../img/top/youcan_bg.jpg") no-repeat center center;
  background-size: cover;
}
.youcan_box_inner {
  display: block;
  position: relative;
  padding: 100px 30px 60px 30px;
  
}
.youcan_title_box {
  display: block;
  position: relative;
  width: 51%;
  margin-left: 32%;
  margin-right: 17%;
}
.youcan_title_box h3 {
  display: block;
  position: relative;
  width: 100%;
  background: url("../img/top/youcan_catchcopy_1.svg") no-repeat left top;
  background-size: contain;
  padding-bottom: 16%;
  margin-bottom: 35px;
}
.youcan_title_box h3 span {
  display: none;
}
.youcan_title_box p {
  display: block;
  position: relative;
  width: 100%;
  background: url("../img/top/youcan_catchcopy_2.svg") no-repeat left top;
  background-size: contain;
  padding-bottom: 13%;
  margin-bottom: 80px;
}
.youcan_title_box p span {
  display: none;
}
@media screen and (max-width: 768px) {
  #youcan_box {
    display: block;
    position: relative;
    margin-top: -1px;
    margin-bottom: 0px;
    padding-bottom: 20px;
}
#youcan_box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
  /* bottom: 20%; */
  background: url("../img/top/youcan_bg.jpg") no-repeat left 10% top;
  background-size: cover;
}
.youcan_box_inner {
  display: block;
  position: relative;
  padding: 30px 0px 60px 0px;
  height: 440px;
}
.youcan_title_box {
  display: block;
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.youcan_title_box h3 {
  display: block;
  position: relative;
  width: 100%;
  background: url("../img/top/youcan_catchcopy_1.svg") no-repeat center top;
  background-size: contain;
  padding-bottom: 20%;
  margin-bottom: 10px;
}
.youcan_title_box h3 span {
  display: none;
}
.youcan_title_box p {
  display: block;
  position: relative;
  width: 100%;
  background: url("../img/top/youcan_catchcopy_2.svg") no-repeat center top;
  background-size: contain;
  padding-bottom: 13%;
  margin-bottom: 80px;
}
.youcan_title_box p span {
  display: none;
}
.feature {
  padding-top: 0%;
  padding-bottom: 0px;
  position: relative;
}

}

/*TOP news*/

.p-topNews {
  overflow: hidden;
}
.p-topNews.is-animeted .p-topNews_inr:after, .p-topNews.is-animeted .p-topNews_inr:before {
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.p-topNews .p-topNews_inr {
  position: relative;
  padding-top: 45px;
  padding-bottom: 70px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.p-topNews .p-topNews_inr:before {
  background-image: url(../img/common/bg-news-left.svg);
  width: 867px;
  height: 980px;
  top: 0;
  left: -375px;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.p-topNews .p-topNews_inr:after {
  background-image: url(../img/common/bg-news-right.svg);
  width: 598px;
  height: 980px;
  bottom: 0;
  right: -280px;
  -ms-transform-origin: right bottom;
  transform-origin: right bottom;
}
.p-topNews .p-topNews_inr:after, .p-topNews .p-topNews_inr:before {
  content: " ";
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: -1;
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  transition: .3s ease-in;
}

.l-wrap {
  width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.p-topNews .p-topNews_ttl {
  padding-left: 170px;
  margin-bottom: 20px;
}
.p-topNews .p-topNews_cardUnit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.p-topNews .p-topNews_card:nth-child(1n) {
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}
.p-topNews .p-topNews_card:nth-child(2n) {
  margin-top: 75px;
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.p-topNews .p-topNews_card:nth-child(4n) {
  margin-right: 0;
}

.p-topNews .p-topNews_card.is-animeted {
  opacity: 1;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
.p-topNews .p-topNews_card {
  width: 270px;
  margin-right: 26.6666px;
  opacity: 0;
  transition: .5s ease-out;
}
.p-topNews .p-topNews_card a {
  border-radius: 5px;
  border: 1px solid #bababa;
  background-color: #fff;
  display: block;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.15);
  color: #212121;
}
.p-topNews .p-topNews_card .p-topNews_card_img {
  position: relative;
  padding-top: 200px;
}
.p-topNews .p-topNews_card .p-topNews_card_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 5px 5px 0 0;
}
.p-topNews .p-topNews_card .p-topNews_card_desc {
  position: relative;
  padding: 9px 20px;
}
/*.p-topNews .p-topNews_card .p-topNews_card_desc:before {
  content: " ";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 125px;
  height: 160px;
  background: linear-gradient(to bottom right, transparent 50%, #fff 50.5%);
}*/
.p-topNews .p-topNews_card .p-topNews_card_info {
    /*position: absolute;250703斜め線やめたので*/
  position: relative;
  right: 8px;
  bottom: calc(100% + 10px);
  text-align: left;
  z-index: 1;
  display: flex;
  gap: 3px;
  margin-bottom: 5px;
}
.c-label {
  font-size: 0.7rem;
  padding: 4px 8px 2px 8px;
  background: linear-gradient(90deg, #53abe5 0, rgba(167, 100, 164, 0.65) 50.56%, rgba(219, 107, 104, 0.65) 100%);
  color: #fff;
  display: inline-block;
  font-weight: 700;
}
.p-topNews .p-topNews_card .p-topNews_card_date {
  font-size: 0.8rem;
  margin-top: 3px;
}
.p-topNews .p-topNews_card .p-topNews_card_ttl {
  font-size: 1.0rem;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .c-label {
  font-size: 0.55rem;
  padding: 4px 4px 4px 4px;
  background: linear-gradient(90deg, #53abe5 0, rgba(167, 100, 164, 0.65) 50.56%, rgba(219, 107, 104, 0.65) 100%);
  color: #fff;
  display: inline-block;

}
}



/*ニュースカテゴリ*/
.c-tabNav {
    border: 2px solid #db6b68;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 1.0rem;
    padding: 20px 25px;
}
.c-tabNav ul {
    margin-top: -10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}
.c-tabNav ul li {
    padding-right: 15px;
    position: relative;
    margin-top: 10px;
}
.c-tabNav ul li:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 150%;
    background-color: #db6b68;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform-origin: top right;
    transform-origin: top right;
}
.c-tabNav ul li a.is-active {
    background-color: #db6b68;
    color: #fff;
}
.c-tabNav ul li a:hover {
    background-color: #db6b68;
    color: #fff; /* 必要であればテキスト色も設定 */
}
.c-tabNav ul li a {
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
    -ms-transform-origin: right center;
    transform-origin: right center;
    display: block;
    padding: 0 15px;
    color: #212121;
}
.c-tabNav ul li a span {
    display: block;
    -ms-transform: skewX(45deg);
    transform: skewX(45deg);
}
@media screen and (max-width: 768px) {
.c-tabNav {
    font-size: 1.0rem;
    padding: 10px 15px;
    margin-bottom: 20px;
}
.c-tabNav ul li {
    padding-right: 10px;
}
}

/*TOP SNS*/
@media screen and (min-width: 768px) {
.section--media {
    padding-top: 80px;
    background-color: #f5f2eb;
    padding-bottom: 80px;
}
.section__inner_sns {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}
.modListLink {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
}
.modListLink--4col .modListLink__item {
    width: calc(25% - 24px);
}
.modBtnSquare {
    min-height: 80px;
    padding: 18px 70px 18px 28px;
    line-height: 1.8;
}

.modBtnSquare::before {
    right: 24px;
    transition: all .3s ease-in-out;
}
.modBtnSquare[target=_blank]::after {
    right: 34px;
}

.modBtnSquare::after {
    right: 34px;
    transition: all .3s ease-in-out;
}
.modBtnSquare--line>span::before {
    width: 45px;
    height: 45px;
}
}
.modBtnSquare {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    background: #fff;
    border-radius: 8px;
}
.modListLink__item .modBtnSquare {
    height: auto;
}

.modBtnSquare::before {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid #212121;
    transform: translateY(-50%);
}
.modBtnSquare::before, .modBtnSquare::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
}
.modBtnSquare>span {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.modBtnSquare--x>span::before {
    content: "";
    display: block;
    width: 31px;
    height: 31px;
    background: url("../img/common/icon_x.png") no-repeat 0 0;
    background-size: 100%;
}
.modBtnSquare[target=_blank]::after {
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url("../img/common/icon_link.svg") no-repeat 0 0;
    background-size: 100%;
    border: none;
    margin: 0;
}
.modBtnSquare::after {
    width: 8px;
    height: 8px;
    right: 15px;
    transform: rotate(-45deg) translateY(-50%);
    border-bottom: 2px solid #212121;
    border-right: 2px solid #212121;
    margin: -1px 0 0;
}
.modBtnSquare:hover {
    /* マウスオーバー時に半透明にする（例: 0.7 = 70%の不透明度） */
    opacity: 0.7; 
}
.modBtnSquare--line>span::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("../img/common/icon_line.png") no-repeat 0 0;
    background-size: 100%;
}
.modBtnSquare--tikTok>span::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("../img/common/icon_tikTok.webp") no-repeat 0 0;
    background-size: 100%;
}
.modBtnSquare--insta>span::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("../img/common/icon_instagram.webp") no-repeat 0 0;
    background-size: 100%;
}
.sns_title {
  text-align: center;
  font-size: 1.6rem;
  margin: 33px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
.section--media {
    padding-top: 10px;
    background-color: #f5f2eb;
}
.sns_title {
  text-align: center;
  font-size: 1.4rem;
  margin: 33px;
  font-weight: bold;
}
.modBtnSquare {
    min-height: 90px;
    padding: 14px 65px 14px 25px;
    line-height: 1.5;
}
.modBtnSquare {
    min-height: 90px;
    padding: 14px 65px 14px 25px;
    line-height: 1.5;
}
.modBtnSquare::before {
    right: 20px;
}
.modBtnSquare[target=_blank]::after {
    right: 30px;
}
.modListLink__item {
    margin: 10px;
}
.modListLink__item:last-child {
    padding-bottom: 20px;
}
}

.sns_title span {
padding: 0.2rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(transparent 70%, #d0dd16 70%);
    font-weight: bold;
    font-size: 26px;
}

/*フッターバナーエリア*/
@media print, screen and (min-width: 768px) {
.opnavi._page {
        padding-top: 80px;
        padding-bottom: 56px;
        border-top: 1px solid #e9e9e9;
}
.opnavi._page {
        padding-left: 12.5vw;
        padding-right: 12.5vw;
}
.opnavi {
    background-image: url(../img/top/opnavi_bg_pc.png);
}
.opnavi._page .opnavi_list {
    padding: 0 0 25px;
}
.opnavi_list {
    display: flex;
    flex-wrap: wrap;
}
.opnavi._page .opnavi_item {
    width: calc(33.333333% - 16px);

}
.opnavi_item {
    margin-bottom: 32px;
    margin-right: 13px;
}
.link._box._black, .link._box._brown, .link._box._gray, .link._box._white {
    border-bottom: none;
}
.link._box {
    height: 80px;
    padding: 0 64px 0 32px;
    font-size: 1.0rem;
}
.opnavi_item a {
    font-size: 1.0rem!important;
}
.link._box._white .link_arr:before {
    width: 24px;
    height: 8px;
    background-image: url(../img/top/arrow_right_w.svg);
}
.link._box .link_arr:before {
    right: 27px!important;
}
.link._box .link_arr:after {
    top: -1px;
    width: 80px;
    height: 80px;
}
.link._box._brown:after, .link._box._white:after {
    background-color: #d7d7e0;
}
.link._box:after {
    transition: all .3s .15s;
}
.link._arr:after, .link._box:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 1px;
    transform: translateX(-50%);
}
/* オンマウス時のスタイル */
.link._box._white:hover {
  background-color: #fff; /* 背景を白に */
}

.link._box._white:hover .link_arr:before {
  background-image: url(../img/top/arrow_right_r.svg); /* 矢印を茶色に（茶色の矢印画像が必要です） */
}

.link._box._white:hover:after {
  background-color: #d7d7e0; /* 下線の色を茶色に維持、または変更したい色に */
}

}




.opnavi {
    position: relative;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
}
.link._box._white {
    background-color: #fff;
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-bottom: 1px solid #db6b68;
    border-radius: 8px;
}
.link._box {
    display: flex;
    align-items: center;
}

.link._box {
    display: flex;
    align-items: center;
}
.link {
    position: relative;
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link_arr {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.link._box._white .link_arr:before {
    content: "";
    position: absolute;
    top: 50%;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}
.link_arr:before {
    z-index: 2;
}
.link_arr:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #db6b68;
    z-index: 1;

}
.link._box._white:hover .link_arr:after {
    background-color: #fff; /* ホバー時に背景を白に */
  }

@media (hover: hover) {
    .link._box, .link._box .link_arr:after {
        transition: all .3s;
    }
}

@media screen and (max-width: 767px) {
    .opnavi._home {
        display: flex;
        flex-direction: column-reverse;
    }
    .opnavi {
    padding-left: 20px;
    padding-right: 20px;
}
.opnavi {
    padding-top: 32px;
    padding-bottom: 32px;
    background-image: url(../img/top/opnavi_bg_pc.png);
}
.opnavi._home .opnavi_pic {
    height: 200px;
}
.opnavi._home .opnavi_pic img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
.opnavi._home .opnavi_box {
    padding-bottom: 28px;
}
.opnavi_list {
    margin-bottom: 18px;
}
.link._box._white .link_arr:before {
    width: 12.5px;
    height: 4.5px;
    background-image: url(../img/top/arrow_right_w.svg);
}
.link._box .link_arr:before {
    right: 21px!important;
}
.link._box .link_arr:after {
    top: -1px;
    width: 56px;
    height: 56px;
}
.link._box, .link._line {
    font-size: 1.1rem;
}
.opnavi_item+.opnavi_item {
    margin-top: 8px;
}
.link._box {
    height: 56px;
    padding-right: 16px;
    padding-left: 16px;
}
.opnavi_item>a {
    padding-right: 24px!important;
    padding-left: 24px!important;
    font-size: 1.0rem!important;
}

}

/* 769px以上のとき */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

/* 768px以下のとき */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .page_inner_m p{
 line-height: 1.6;
 text-align: left !important;
}
}  
 
/*学部学科の※PタグCSS*/
.page_inner_m p{
 line-height: 1.6;
 text-align: center;
}

.page_inner_m p a{
  color: #db6b68;
}

