@charset "utf-8";

/****************************************
　initial
****************************************/
/*style1.cssと干渉するのでコメントアウトします　20251205*/
/*body {
  font-family:  "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "meiryo", "MS Pゴシック", "MS PGothic", sans-serif;
  letter-spacing: .06em;
  line-height: 2.2;
  font-size: 16px;
  font-weight: 400;
}*/
/*ここまで*/

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.spShow, .tabShow {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tabHide {
    display: none;
  }

  .tabShow {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .pcShow {
    display: none;
  }

  .spShow {
    display: block;
  }
}


/****************************************
　Header
****************************************/
header {
  position: relative;
  z-index: 100;
}
.hb-menu {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 50px;
  cursor: pointer;
  z-index: 10;
}

.hb-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #F50000;
  margin: 12px 0;
  transition: 0.4s;
}

.header-cont {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: .5s ease-in-out;
  box-sizing: border-box;
  z-index: 5;
  display: flex;
}

.header-nav-wrap {
  background-color: #E5EBEE;
  width: 33.3333%;
  min-width: 420px;
  padding: 4.917% 3.074%;
  padding: 2.5%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.header-cont.open {
  opacity: 1;
  pointer-events: auto;
}

.hb-menu.active span:nth-child(1) {
  transform: rotate(30deg) translate(6px, 12px);
}

.hb-menu.active span:nth-child(2) {
  opacity: 0;
}

.hb-menu.active span:nth-child(3) {
  transform: rotate(-30deg) translate(6px, -14px);
}

.header-nav-wrap .logo {
  width: 250px;
  height: auto;
  margin-bottom: 40px;
}

.nav-list {
  line-height: 1;
}

.nav-01 .nav-list-item {
  margin-bottom: 35px;
}

.nav-01 .nav-list-item > a {
  margin-bottom: 25px;
  display: block;
}

.nav-01 a {
  font-size: 28px;
}

.nav-02 li {
  margin-bottom: 15px;
}

.nav-02 a {
  font-size: 14px;
}

.nav-02 li:before {
  content: "";
  width: 7px;
  height: 1px;
  display: inline-block;
  background: #009D62;
  vertical-align: middle;
  margin-right: .3rem;
}

.nav-blank a {
  color: #4C4948;
  font-size: 14px;
}

.nav-blank a:after {
  content: "";
  display: inline-block;
  background: url(../images/common/ic_window.svg) no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 10px;
  margin-left: 6px;
}

.nav-link a {
  color: #4C4948;
  font-size: 14px;
  position: relative;
}

.nav-link a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #009D62;
  border-right: solid 1px #009D62;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .hb-menu {
    top: 20px;
    right: 20px;
  }

  .header-nav-wrap {
    width: 100%;
    height: 100svh;
    padding: 20px 4%;
    min-width: initial;
  }

  .header-nav-wrap .logo {
    width: 200px;
  }
}


/***** slider *****/
.header-slider {
  width: calc(100% - 33.3333%);
  background: #E5EBEE;
  height: 100svh;
}

.slick03 {
  position: relative;
  margin: 0;
  padding: 0;
}
.slick03 .item {
  position: relative;
  height: 100%;
  background-size: cover !important;
    background-position: center center !important;
}

.slick03 .item-01 {
  background: url(../images/common/menu-slide-img01.jpg) no-repeat;
}

.slick03 .item-02 {
  background: url(../images/common/menu-slide-img02.jpg) no-repeat;
}

.slick03 .item-03 {
  background: url(../images/common/menu-slide-img03.jpg) no-repeat;
}

.slick03 .item::before {
  display: block;
  padding-top: 39%;
  content: "";
}

.slick03 .item .image {
  position: relative;
  overflow: hidden;
}

.slick03 .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}

.slick03 > .slick-list,
.slick03 > .slick-list > .slick-track,
.slick03 > .slick-list > .slick-track > .slick-slide > div {
  position: relative;
  height: 100%;
}

.slide-animation {
    animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.dots-wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.dots-wrap li {
  width: 80px;
  height: 5px;
  margin: 0;
  background: #E5EBEE;
  cursor: pointer;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #009D62;
}

@media screen and (max-width: 768px) {
  .slick-slider.slick03 {
    display: none;
  }
}


/****************************************
　Footer
****************************************/
.footernav-list {
  display: flex;
  justify-content: center;
  line-height: 1;
  padding: 30px 15px;
}

.footernav-list li:after {
  content: "|";
  color: #CBD5DC;
  padding: 0 20px;
}

.footernav-list li:last-child:after {
  content: none;
}

.footernav-list a {
  transition: .3s ease-in-out;
}

.footernav-list a:hover {
  opacity: .7;
}

footer .footer-wrap {
  background: #00794A;
  color: #fff;
  padding-left: 50px;
  padding-right: 50px;
}

footer .footer-inner {
  max-width: 1620px;
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

footer .footer-inner.flx {
  gap: 5%;
  width: 100%;
  /* max-width: 1620px; */
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: flex-end;
}

footer .footer-info.flx {
  gap: 0 30px;
  justify-content: flex-start;
}

.footer-info p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.copyright {
  font-weight: 500;
  display: flex;
  justify-content: flex-end;
}

.copyright small {
  font-size: 13px;
  line-height: 1.6;
}

.footer-info .logo {
  width: 240px;
  height: auto;
  margin-right: 30px;
}

.page-top {
  background: rgba(0, 0, 0, .5);
  width: 60px;
  height: 60px;
}

.page-top {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}

.page-top a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-top .dli-chevron-up {
  display: block;
  line-height: 1;
  width: 20px;
  height: 20px;
  border: 2px solid #FFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}


@media screen and (max-width: 1024px) {
  footer .footer-wrap {
    padding-left: 4%;
    padding-right: 4%;
  }
  .footernav-list {
    flex-wrap: wrap;
    padding: 0;
  }

  .footernav-list li {
    width: 50%;
    border-right: 1px solid #CBD5DC;
    border-bottom: 1px solid #CBD5DC;
    position: relative;
  }
  
  .footernav-list li:after {
    content: "";
  }

  .footernav-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 100%;
    position: relative;
  }

  /* リンク先ができたら復活 */
  /* .footernav-list li a:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #009D62;
    border-right: solid 2px #009D62;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
  } */

  footer .footer-inner {
    padding-bottom: 1.5rem;
  }

  footer .footer-inner.flx {
    gap: 30px 0;
    align-items: center;
    flex-direction: column;
  }
  
  footer .footer-info.flx {
    gap: 30px;
    flex-direction: column;
  }

  .footer-info .logo {
    margin-right: 0;
  }

  .copyright {
    text-align: center;
  }

  .copyright small {
    font-size: 10px;
  }
}


/****************************************
　TOP
****************************************/
.mv {
  display: flex;
  position: relative;
}

.mv .logo {
  position: absolute;
  left: calc(33.3333% - 75px);
  z-index: 1;
}

.mv-bg {
  background: #009D62;
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  line-height: 1.3;
  padding: 0 2.08333%;
}

.mv-bg img {
  width: clamp(260px, 50vw, 360px);
}

.mv-bg span {
  color: #fff;
  font-weight: 700;
}

.mv-bg .univ-name {
  font-size: clamp(20px, 3vw, 53px);
}

.mv-bg .faculty-name {
  font-size: clamp(36px, 5vw, 86px);
}

.mv-img {
  position: relative;
  background: url(../images/top/mv-01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 100svh;
  width: calc(100% - 33.3333%);
  display: flex;
  padding-left: 1.5%;
}

.mv-img img {
  width: 55.762%;
  width: min(820px, calc(50% + 250px));
  height: auto;
  filter: drop-shadow(0px 0px 8px rgba(72, 127, 180, .5));
}

.bg-gray {
  background: #E5EBEE;
}

.bg-white {
  background: #fff;
}

.inner {
  width: 100%;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  padding: 6.25% 20px;
}

td {
padding-right: 10px!important;
}

.main-title {
  font-family: 'HelveticaNowDisplay-Md', sans-serif;
  font-size: clamp(55px, 5.8vw, 100px);
  color: #009D62;
  line-height: 1;
  font-weight: 500;
}

.sub-title {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "meiryo", "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: clamp(13px, 1.6vw, 17px);
  color: #000;
  display: block;
  font-weight: 500;
  margin-top: 15px;
  line-height: 1.6;
}

.top .flx {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10.125%;
}

.top .flx-rev {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10.125%;
}

.flx-start {
  display: flex;
  justify-content: flex-start;
}

.cont-img {
  width: 35.1851%;
}

.cont-txt {
  width: 32.9012%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.btn-wrap {
  display: flex;
  gap: 10px;
}

.btn {
  font-size: 14px;
  width: 132px;
  height: 33px;
  text-align: center;
  background: #009D62;
  transition: .3s ease-in-out;
  border: 1px solid #009D62;
}

.btn:hover {
  background: #fff;
}

.btn a {
  color: #fff;
  display: block;
  transition: .3s ease-in-out;
}

.btn:hover a {
  color: #009D62;
}

.txt-comingsoon {
  color: #009D62;
  font-size: 15px;
  line-height: 1.4;
}

.mv .logo {
  opacity: 0;
  transition: 1s;
  transition-delay: .5s;
}

.mv.show .logo {
  opacity: 1;
}

.mv .mv-bg img,
.mv .mv-img img {
  opacity: 0;
  transition: .5s;
  transition-delay: 1.5s;
}

.mv.show .mv-bg img,
.mv.show .mv-img img {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .cont-txt {
    width: 36%;
  }
}
@media screen and (max-width: 1024px) {
  .mv .logo {
    left: 0;
    top: 0;
    width: 95px;
  }

  .mv {
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: 100svh;
  }

  .mv-bg {
    width: 100%;
    padding: 15px 9.8666%;
  }

  .mv-bg img {
    width: min(270px, calc(45% + 30px));
    margin: 0 auto;
  }
    
  .mv-img {
    background: url(../images/top/mv-01-sp.jpg) no-repeat;
    background-size: cover;
    background-position: center right;
    width: 100%;
    padding-left: 0;
    height: calc(100svh - 142px);
    height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .mv-img img {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: clamp(270px, 85vw, 360px);
    margin: 0 auto 15px;
    filter: drop-shadow(0px 0px 8px rgba(44, 60, 44, .4));
  }
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 11.179% 4%;
  }

  .top .flx {
    flex-direction: column;
  }

  .top .flx-rev {
    flex-direction: column;
  }

  .main-title {
    margin-bottom: 40px;
    text-align: center;
  }

  .cont-txt {
    width: 100%;
    gap: 40px;
  }
  
  .txt-comingsoon {
    text-align: center;
    font-size: 13px;
  }

  .cont-img {
    width: 70%;
    margin-bottom: 4%;
  }

  .btn-wrap {
    justify-content: center;
  }

  .btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 450px) {
  .cont-img {
    width: 100%;
    margin-bottom: 4%;
  }
}


/***** Ceremony area *****/
.sec-ceremony .card-wrap {
  width: 100%;
  margin: 0 auto 7.408%;
  max-width: 1400px;
}

.sec-ceremony .card {
  width: 100%;
  background: #009D62;
  border-bottom: 1px solid #E5EBEE;
  max-width: 1280px;
  margin: 0 auto;
}

.top .sec-ceremony .flx {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}

.sec-ceremony figure {
  /* width: 30.2469%; */
  width: 26%;
  background: url(../images/top/bnr-img.jpg) no-repeat;
  padding-top: 17.3%;
  background-position: center center;
  background-size: cover;
}

.sec-ceremony .txt-wrap {
  /* width: 69.753%; */
  width: 74%;
  padding: 30px;
}

.sec-ceremony .txt-wrap p {
  /* font-size: 20px; */
  color: #FFF;
  font-weight: 600;
  line-height: 1.6;
  text-indent: -62px;
  margin-left: 62px;
}

.sec-ceremony h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #009D62;
  background: #FFF;
  font-weight: bold;
  padding: 10px;
  line-height: 1.4;
}

.sec-ceremony .item-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.sec-ceremony p .lg {
  font-size: 24px;
  /* font-size: 22px; */
}

.sec-ceremony p .show-1520 {
  display: none;
}

.right {
  text-align: right;
  font-weight: 600;
}

.sec-ceremony .txt-wrap .txt-comingsoon {
  color: #FFF;
  font-weight: 300;
  font-size: 15px;
}

.sec-ceremony .item-wrap .flx {
  justify-content: space-between;
  gap: 20px;
}

.sec-ceremony .item-wrap .item {
  margin-bottom: 25px;
}

.sec-ceremony figure.qr {
  background: none;
  padding-top: 0;
  width: 130px;
  min-width: 130px;
  height: auto;
  margin-top: 5px;
}

.sec-ceremony figure.qr img {
  margin-bottom: 3px;
}

.sec-ceremony figure.qr a {
  font-size: 13px;
  transition: .3s ease-in-out;
  letter-spacing: 0;
}

.sec-ceremony figure.qr a:after {
  content: "";
  display: inline-block;
  background: url(../images/common/ic_window_w.svg) no-repeat;
  background-size: 100% auto;
  width: 9px;
  height: 9px;
  margin-left: 6px;
}

.sec-ceremony figure.qr a:hover {
  opacity: .7;
}

.sec-ceremony .txt-wrap {
  padding: 25px;
}

.sec-ceremony .txt-wrap p {
  font-weight: 600;
  text-indent: 0;
  margin-left: 0;
  line-height: 1.4;
}

.sec-ceremony .txt-wrap p.title {
  margin-bottom: 15px;
}

.sec-ceremony .txt-wrap p .mg {
  margin-left: -6px;
}

.sec-ceremony .item-wrap {
  color: #fff;
  gap: 0;
  line-height: 1.8;
  font-weight: 500;
}
.sec-ceremony .item-wrap ul {
  line-height: 1.8;
  margin-top: 5px;
  margin-bottom: 18px;
}

.sec-ceremony .card-wrap .btn {
  border: 1px solid #fff;
  text-indent: 0;
  margin-left: 0;
  font-size: 14px;
  font-weight: normal;
  width: 132px;
  height: 33px;
  margin: 0 auto 0 0;
}

.sec-ceremony .card-wrap .btn a {
  line-height: 2.2;
}

@media screen and (max-width: 1520px) {
  .sec-ceremony p .show-1520 {
    display: block;
  }
}

@media screen and (max-width: 1440px) {
  .sec-ceremony .card {
    width: 83%;
  }
}

@media screen and (max-width: 1100px) {
  .top .sec-ceremony .flx {
    flex-direction: column;
  }

  .sec-ceremony .card-wrap {
    width: 79%;
  }

    .sec-ceremony .card {
    width: 100%;
  }

  .sec-ceremony figure {
    width: 100%;
    padding-top: 30%;
  }

  .sec-ceremony .txt-wrap {
    width: 100%;
    padding: 20px;
  } 

  .top .sec-ceremony .item-wrap .flx {
    flex-direction: row;
  }

  .sec-ceremony .card-wrap .btn {
    margin: 0 auto;
  }

  .sec-ceremony br.none-1100 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sec-ceremony .card-wrap {
    width: 100%;
    margin: 0 auto 10.408%;
  }

  .sec-ceremony h3 {
    margin-bottom: 4%;
    font-size: 20px;
  }

  .sec-ceremony .txt-wrap h3 {
    text-align: center;
  }

  /* .sec-ceremony .txt-wrap {
    padding: 4%;
  } */

  .sec-ceremony .item-wrap .spShow {
    display: none;
  }

  .sec-ceremony .item-wrap > div p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .sec-ceremony p .lg {
    font-size: 20px;
  }

  .sec-ceremony .txt-wrap .txt-comingsoon {
    font-size: 13px;
  }
}

@media screen and (max-width: 540px) {
  .sec-ceremony figure {
    padding-top: 50%;
  }

  .top .sec-ceremony .item-wrap .flx {
    flex-direction: column;
  }

  .sec-ceremony .item-wrap .spShow {
    display: block;
  }

  .sec-ceremony figure.qr {
    margin-top: 0;
    margin: 0 auto 25px;
  }

  .sec-ceremony .item-wrap .item {
    margin-bottom: 0;
  }

  .sec-ceremony .item-wrap ul li:first-child {
    margin-bottom: 12px;
  }

  .sec-ceremony p .lg {
    font-size: 18px;
  }
}

/***** Intro *****/
.sec-intro .cont-txt {
  width: 33%;
}

.sec-intro .cont-txt p {
  color: #000;
  font-weight: 400;
}

.intro-title {
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: bold;
  color: #009D62;
  line-height: 1.75;
}

.sec-intro .cont-img img {
  min-width: 300px;
}

@media screen and (max-width: 1440px) {
  .sec-intro .cont-txt {
    width: 36%;
  }
}


@media screen and (max-width: 768px) {
  .sec-intro .cont-txt {
    width: 100%;
  }

  .sec-intro img {
    margin: 0 auto;
  }
}


/***** Statement *****/
.sec-statement .flx-start {
  gap: 1vh;
  align-items: flex-start;
}

.sec-statement .photo {
  width: calc((100% - 1vh) / 3);
  /* min-width: 135px; */
}

.sec-statement .img-02 {
  margin-top: 2rem;
}

.sec-statement .img-03 {
  margin-top: 4rem;
}

.sec-statement .photo-inner {
  background-size: cover;
  padding-top: 39.816vh;
  padding-top: 233.8%;
  background-position: center top;
}

.sec-statement .img-01 .photo-inner {
  background-image: url('../images/top/top-statement-01.jpg');
}

.sec-statement .img-02 .photo-inner {
  background-image: url('../images/top/top-statement-02.jpg');
}

.sec-statement .img-03 .photo-inner {
  background-image: url('../images/top/top-statement-03.jpg');
}


/***** Interview *****/
.sec-interview  {
  position: relative;
}

.sec-interview:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 50%;
  right: 0;
  bottom: 9%;
  background: #009D62;
  background-size: cover;
  padding-top: min(22.396%, 430px);
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.sec-interview .img-01 {
  width: 100%;
}

/** インタビュー写真が挙がってきたら下記スタイル削除 **/
.sec-interview .img-01 img {
  position: relative;
  z-index: 2;
}

.sec-interview .img-01 .photo-inner {
  position: relative;
  z-index: 1;
  background: url(../images/top/top-interview-01_1.jpg) no-repeat;
  background-size: cover;
  padding-top: 75.443%;
}

/** インタビュー写真が挙がってきたら下記スタイル使用 **/
/* .sec-interview:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 50%;
  right: 0;
  bottom: 11%;
  background: url(../images/top/top-interview-02.jpg) no-repeat;
  background-size: cover;
  padding-top: min(22.396%, 430px);
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
} */

/***** History *****/
.sec-history .img-01 {
  width: 100%;
}

.sec-history .img-01 .photo-inner {
  position: relative;
  background: url(../images/top/top-history-01.jpg) no-repeat;
  background-size: contain;
  padding-top: 75.443%;
}

@media screen and (max-width: 768px) {
  .sec-interview:after {
    width: 100%;
    bottom: 24%;
    padding-top: 40%;
    /* 上手くいかなかったら消す */
    content: none;
  }

  .sec-interview .cont-img {
    margin-bottom: 8%;
    position: relative;
    z-index: 1;
  }

  .sec-interview .cont-img:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    width: 110%;
    right: 0;
    bottom: -6%;
    background: #009D62;
    background-size: cover;
    padding-top: min(42.396%, 430px);
    padding-right: 4%;
    padding-left: 4%;
    margin-right: -4%;
    margin-left: -4%;
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
}

@media screen and (max-width: 440px) {
  .sec-interview:after {
    bottom: 32.5%;
  }
}

/*20251205add*/
#contents h1.tit_page {
    margin: 30px 10px;
    color: #000;
}


/***** About *****/
.sec-about .img-01 {
  width: 100%;
}

.sec-about .img-01 .photo-inner {
  position: relative;
  background: url(../images/top/top-about-01_1.jpg) no-repeat;
  background-size: contain;
  padding-top: 75.443%;
}


/***** Message *****/
.sec-message {
  position: relative;
}

.sec-message:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 50%;
  left: 0;
  bottom: 9%;
  background: #009D62;
  background-size: cover;
  padding-top: min(22.396%, 430px);
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.sec-message .img-01 {
  width: 100%;
}

.sec-message .img-01 .photo-inner {
  position: relative;
  z-index: 1;
  background: url(../images/top/top-message-01.jpg) no-repeat;
  background-size: cover;
  padding-top: 75.443%;
}

.sec-message .img-01 img {
  position: relative;
  z-index: 2;
}

.sec-message .img-02 img {
  position: absolute;
  z-index: 1;
  width: 50%;
  left: 0;
  margin-top: 6vh;
}

@media screen and (max-width: 768px) {
  .sec-message:after {
    content: none;
    width: 100%;
    bottom: 24%;
    padding-top: 40%;
  }

  .sec-message .cont-img {
    margin-bottom: 8%;
    position: relative;
    z-index: 1;
  }

  .sec-message .cont-img:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    width: 110%;
    right: 0;
    bottom: -6%;
    background: #009D62;
    background-size: cover;
    padding-top: min(42.396%, 430px);
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    padding-right: 4%;
    margin-right: -4%;
    padding-left: 4%;
    margin-left: -4%;
  }
}

@media screen and (max-width: 440px) {
  .sec-message:after {
    bottom: 32.5%;
  }
}


/***** Gallery *****/
.sec-gallery .flx {
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1260px;
  margin: 0 auto 3.125%;
  padding-left: 20px;
  padding-right: 20px;
}

.sec-gallery .inner {
  max-width: initial;
  padding: 6.25% 0 0;
}

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

.slick01 .slick-track,
.slick02 .slick-track {
  display: flex;
}

.slick02 {
  margin-top: -1px;
}

.sec-gallery .slick-initialized .slick-slide {
  margin-left: -1px;
}

@media screen and (max-width: 1440px) {
  .sec-gallery .flx {
    width: 83%;
  }
}

@media screen and (max-width: 768px) {
  .sec-gallery .inner {
    padding: 6.25% 0 0;
  }

  .sec-gallery .flx {
    flex-direction: row;
    align-items: flex-end;
    padding-left: 4%;
    padding-right: 4%;
    width: 100%;
  }

  .sec-gallery .main-title {
    margin-bottom: 0;
    text-align: left;
  }
}


/***** Banner area *****/
.sec-bnr .flx {
  gap: 0;
  margin-top: -1px;
  position: relative;
  z-index: 10;
  max-width: initial;
}

.sec-bnr .bnr-list li {
  width: 50%;
  position: relative;
}

.sec-bnr .bnr-list li:nth-child(1) {
  background: url(../images/common/bg-bnr-01.png) no-repeat;
  background-size: cover;
}

.sec-bnr .bnr-list li:nth-child(2) {
  background: url(../images/common/bg-bnr-02.png) no-repeat;
  background-size: cover;
}

.sec-bnr .bnr-list a {
  display: block;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 12.876% 20px;
  transition: .3s ease-in-out;
}

.sec-bnr .bnr-list a:hover {
  opacity: .6;
}

.sec-bnr .bnr-list .bnr-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
}

.sec-bnr .bnr-list .link-txt {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1;
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: 2px;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.5em;
  height: 0.5em;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 0.3rem;
}

.dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

/***** curtain *****/
.photo-inner {
  background-position: center;
  background-repeat: no-repeat;
}

.animation {
  position: relative;
  overflow: hidden;
}

.animation::before {
  content: '';
  display: block;
  position: absolute;
  top:0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #009D62;
  transform: translateY(-100%);
}

@keyframes showMask {
  0%{
    transform: translateY(-100%);
  }
  45%,50%{
    transform: translate(0%);
  }
  100%{
    transform: translateY(100%);
  }
}

.animation.show::before {
  animation: showMask 1s forwards;
}
.animation .photo-inner {
  opacity: 0;
}

@keyframes showElements{
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}
.animation.show .photo-inner {
  animation: showElements .01s .6s forwards;
}


/***** fade-in-up *****/
.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}

@keyframes fadeIn {
  0% {
  }
  100% {
      opacity: 1;
      transform: translate(0);
  }
}

/* フェードインさせるクラス */
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 768px) {
  .sec-bnr .bnr-list li {
    width: 100%;
  }
}


/****************************************
　UnderPage common
****************************************/
.underPage .mv .logo {
  width: 120px;
  left: calc(7.8125% - 60px);
}

.underPage .mv-bg {
  width: 7.8125%;
}

.underPage .mv-img {
  width: calc(100% - 7.8125%);
  height: 400px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
}

.underPage .mv-img h1 {
  font-family: 'HelveticaNowDisplay-Md', sans-serif;
  font-size: clamp(45px, 10vw, 100px);
  font-weight: 500;
  line-height: 1.4;
}

.underPage .mv-img span {
  font-size: 17px;
  font-weight: 500;
}

.underPage .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 0 15px;
  color: #4C4948;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

.underPage .breadcrumb li a {
  position: relative;
  display: inline-block;
}

.underPage .breadcrumb li a:after {
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #4C4948;
  border-right: solid 1px #4C4948;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  margin: auto;
}

.underPage .inner {
  max-width: 1440px;
}

@media screen and (max-width: 1024px) {
  .underPage .mv {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
  }

  .underPage .mv-bg {
    padding: 0;
  }

  .underPage .mv-img {
    align-items: flex-start;
    padding-left: 2.5%;
  }
}

@media screen and (max-width: 768px) {
  .underPage .mv .logo {
    width: 80px;
    left: calc(60px - 40px);
  }
  
  .underPage .mv-bg {
    width: 60px;
  }

  .underPage .mv-img {
    width: calc(100% - 60px);
    height: 250px;
  }

  .underPage .mv-img span {
    font-size: 12px;
  }

  .underPage .breadcrumb {
    padding: 10px 4%;
  }
}


/****************************************
　Statement
****************************************/
.statementPage .mv-img {
  background: url(../images/statement/bg-statement.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.statementPage h2 {
  font-size: 34px;
  font-weight: 500;
}

.introSec {
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.introInner {
  padding-left: 20px;
  padding-right: 20px;
}

.introInner.flx {
  align-items: flex-start;
}

.introSec .hdBox p {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
}

.introSec .hdBox p span {
  color: #F50000;
}

.introSecWrap {
  width: 55%;
}

.introSecWrap p {
  margin-bottom: 20px;
}

.introSecWrap p:last-of-type {
  margin-bottom: 0;
}

.statementPage h2.tit {
  margin-bottom: 50px;
  position: relative;
  line-height: 1.6;
  font-weight: 700;
}

/* .statementPage h2.tit:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #F50000;
  top: 28px;
  left: 0;
} */

.bgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.bgBox div {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
}

.bgBox .bg01 {
  background: url(../images/statement/statement-img-01.jpg) no-repeat center center/cover;
}

.celebrate {
  position: relative;
  z-index: 3;
}

.fvBox {
  position: relative;
  width: 50%;
  padding: 4% 4% 55vh;
  z-index: 2;
  box-sizing: border-box;
  background-color: rgba(229, 235, 238, .95);
  margin: 0 0 0 auto;
}

.nextDecade02 .nextDecade02Inner .fvBox {
  padding: 4%;
}

.fvBox figure {
  float: left;
  margin: 0 35px 35px 0;
}

.fvBox h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
}

.fvBox h3 span {
  font-size: 16px;
  line-height: 1.8;
  display: block;
}

.fvBox p {
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 2;
}

.fvBox p.last {
  font-weight: bold;
  margin-top: 4em;
}

.bgBox2 {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 4;
}

.bgBox2 div {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
}

.bgBox2 .bg02 {
  background: url(../images/statement/statement-img-02.jpg) no-repeat center center/cover;
}

.bgBox2 .bg03 {
  background: url(../images/statement/statement-img-03.jpg) no-repeat center center/cover;
}

.nextDecade01 {
  position: relative;
  z-index: 5;
  height: auto;
}

.nextDecade02 {
  position: relative;
  z-index: 6;
  height: auto;
}

.nextDecade01 .nextDecade01Inner {
  z-index: 4;
} 

.nextDecade02 .nextDecade02Inner {
  z-index: 5;
}


@media screen and (max-width: 1024px) {
  .introInner.flx {
    flex-direction: column;
    align-items: flex-start;
  }

  .introSec .hdBox p {
    margin-bottom: 30px;
  }

  .introSecWrap {
    width: 100%;
  }

  .fvBox {
    padding: 10% 4% 250px;
    width: 100%;
  }

  .statementPage h2.tit {
    font-size: 30px;
  }

  
  .statementPage h2.tit:before {
    top: 25px;
  }

  .fvBox figure {
    float: none;
    text-align: center;
    margin: 0 0 35px;
  }

  .fvBox h3 {
    text-align: center;
    font-size: 24px;
  }

  .fvBox h3 span {
    font-size: 14px;
  }

  .fvBox figure.bgImg {
    margin: 0;
  }

  .nextDecade02 .nextDecade02Inner .fvBox {
    padding: 10% 4% 60px;
  }
}

@media screen and (max-width: 768px) {
  .introSec {
    font-size: 13px;
  }

  .introInner {
    padding-left: 4%;
    padding-right: 4%;
  }

  .fvBox p {
    font-size: 13px;
  }
}

@media screen and (max-device-width: 767px) and (orientation: landscape) {
  .underPage .mv-img {
    height: 75vh;
  }
}


/****************************************
　Gallery
****************************************/
.galleryPage .mv-img {
  background: url(../images/gallery/bg-gallery.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.galleryPage .inner {
  padding: 6.25% 4% 120px;
}

.galleryPage .gakkery-wrap {
  max-width: 1620px;
}

.galleryPage .cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 40px;
}

.galleryPage .cat-item {
  color: #009D62;
  border: 1px solid #009D62;
  width: 13.6%;
  min-width: 170px;
  text-align: center;
  font-size: 15px;
  transition: .3s ease-in-out;
  cursor: pointer;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galleryPage .cat-item a {
  display: block;
  line-height: 33px;
  width: 100%;
  height: 100%;
}

.galleryPage .zoom-txt:before {
  content: "";
  display: inline-block;
  background: url(../images/gallery/ic-zoom.svg) no-repeat;
  background-size: 100% auto;
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 7px;
}

.galleryPage .zoom-txt {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin: 0 0 80px;
}

.galleryPage .zoom-txt .em {
  background: #009D62;
  color: #fff;
}

.galleryPage .grid:after {
  content: '';
  display: block;
  clear: both;
}

.galleryPage .gallery-list {
  margin: 0 auto 80px;
}

.galleryPage .gallery-item {
  width: 286px;
  height: auto;
  margin: 0.625%;
  float: left;
  box-sizing: border-box;
}

.galleryPage .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.galleryPage .isotope-pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #009D62;
  line-height: 1;
  flex-wrap: wrap;
}

.galleryPage .isotope-pager a {
  border: 1px solid #009D62;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.galleryPage .isotope-pager a.is-active {
  background: #009D62;
  color: #FFF;
}

.galleryPage .notion {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
/***** 2025.09.11 追加 *****/
/* .galleryPage .zoom-txt img {
  vertical-align: -7px;
  margin-right: 3px;
}

.galleryPage .gallery-item a {
  display: block;
  position: relative;
}

.galleryPage .gallery-item a:before {
  content: "";
  display: block;
  background: rgba(0, 157, 98, .8);
  background: rgba(0, 121, 74, .8);
  width: 26px;
  height: 26px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.galleryPage .gallery-item a:after {
  content: "";
  display: block;
  background: url(../images/gallery/ic-zoom-w.svg) no-repeat;
  background-size: 100% auto;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 4px;
  bottom: 4px;
} */

@media screen and (max-width: 768px) {
  .galleryPage .inner {
    padding: 11.179% 4% 60px;
  }

  .galleryPage .cat-list {
    justify-content: flex-start;
  }

  .galleryPage .cat-item {
    font-size: 13px;
    width: calc((100% - 10px) / 2);
    min-width: initial;
  }
  
  .galleryPage .zoom-txt {
    margin: 0 0 40px;
    line-height: 2;
  }

  .galleryPage .gallery-list {
    margin: 0 auto 40px;
  }
  
  .galleryPage .gallery-item {
    width: 200px;
  }
}

@media screen and (max-width: 440px) {
  .galleryPage .gallery-item {
    width: 150px;
  }
}

@media screen and (max-width: 320px) {
  .galleryPage .cat-item {
    min-width: 132px;
    font-size: 12px;
  }
  .galleryPage .gallery-item {
    width: 132px;
  }
}

@media screen and (min-width: 768px) {
  .galleryPage .cat-item:hover {
    background: #009D62;
    color: #fff;
  }
}


/****************************************
　Message
****************************************/
.messagePage .mv-img {
  background: url(../images/message/bg-message.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.messagePage .lead {
  text-align: center;
  margin-bottom: 30px;
}

.messagePage .section {
  padding: 0 20px;
}

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

.message-item {
  width: calc((100% - 20px) / 2);
  margin-bottom: 20px;
  border: 1px solid #009D62;
}

.message-item:nth-last-of-type(1),
.message-item:nth-last-of-type(2) {
  margin-bottom: 0;
}

.messagePage .item-card {
  padding: 4.1666%;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.item-card figure {
  width: 32.0512%;
}

.item-card .txt-wrap {
  width: calc(100% - 32.0512% - 3.8461%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 15px;
}

.item-card .txt-wrap > div {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.message-item h2 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
  font-weight: 500;
}

.message-item .post,
.message-item .name-en {
  line-height: 1;
}

.message-item .name-en {
  color: #798287;
}

.message-item hr {
  color: #E5EBEE;
}

.message-item h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

.item-card .txt-wrap h3 {
  margin-bottom: 40px;
}

.item-card .btn {
  margin: 0 0 0 auto;
}

.item-featherlight {
  display: none;
  max-width: 990px;
}

.featherlight-content {
  padding: 3.0303%;
}

.featherlight .featherlight-close-icon {
  background: #000;
  width: 60px;
  height: 60px;
  color: rgba(255, 255, 255, .7);
  font-size: 30px;
  transition: .3s ease-in-out;
}

.featherlight .featherlight-close-icon:hover {
  opacity: .7;
}

.belonging-wrap {
  display: flex;
  gap: 3.0303%;
  align-items: center;
  /* border-bottom: 1px solid #E5EBEE;
  padding-bottom: 3.0303%; */
  margin-bottom: 3%;
}

.belonging-wrap > div {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.featherlight .featherlight-content {
  max-height: 93vh;
  padding: 40px 40px 15px;
}

.featherlight-content figure {
  width: 160px;
  height: auto;
}

.featherlight-content h2 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
  font-weight: 500;
}

.featherlight-content .post,
.featherlight-content .name-en {
  line-height: 1;
}

.featherlight-content .name-en {
  color: #798287;
}

.featherlight-content h3 {
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}

.featherlight-content .txt {
  margin-bottom: 15px;
}

.featherlight-content .txt:last-of-type {
  margin-bottom: 0;
}

.featherlight-content hr {
  color: #E5EBEE;
  margin-bottom: 2%;
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 20px;
    margin-right: 20px;
    padding: 3.0303%;
    border-style: none;
  }
}

@media only screen and (max-width: 768px) {
  .messagePage .section {
    padding: 0;
  }
  .messagePage .item-card {
    flex-direction: column;
    row-gap: 15px;
  }

  .item-card figure {
    margin: 0 auto;
    width: 150px;
  }

  .item-card .txt-wrap {
    width: 100%;
    row-gap: 1rem;
  }

  .featherlight-content .txt {
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {
  .message-list {
    flex-direction: column;
    row-gap: 15px;
  }

  .message-item {
    width: 100%;
    margin-bottom: 0;
  }

  .item-card figure {
    width: 120px;
  }

  .belonging-wrap {
    margin-bottom: 20px;
  }

  .featherlight-content hr {
    margin-bottom: 10px;
  }

  .featherlight .featherlight-content {
    max-height: 80vh;
  }


  .featherlight-content figure {
    width: 120px;
  }

  .featherlight .featherlight-close-icon {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 320px) {
  .featherlight-content figure {
    width: 100px;
  }

  .featherlight-content .post, .featherlight-content .name-en {
    width: 70%;
    line-height: 1.2;
  }
}


/****************************************
　History
****************************************/
.historyPage .mv-img {
  background: url(../images/history/bg-history.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.historyPage section:nth-of-type(2n) {
  background: #fff;
}

.historyPage section:nth-of-type(2n) .history-item {
  background: #EFF3F5;
}

.historyPage .cont-wrap {
  margin: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.historyPage .item-wrap:last-of-type {
  padding-bottom: 100px;
}

.historyPage .item-wrap {
  width: 100%;
  background: #EFF3F5;
}

.historyPage .inner-wrap {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

.historyPage .inner {
  position: relative;
  /* padding: 100px 20px 80px; */
 /* padding: 100px 0 80px 50px;*/
 padding: 50px 0 50px 50px;/*20251210追加*/
}

.historyPage .branch {
  position: absolute;
  /*top: 0;*/
  top: 25px;/*20251205add*/
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  background-color: #e63178;
}

.historyPage .item-wrap:nth-of-type(1) .branch:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 1px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  background-color: #e63178;
}

.historyPage .item-wrap:last-of-type .branch:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 1px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
  background-color: #e63178;
}

.history-item {
  position: relative;
  /*padding: 30px;*/
  padding: 20px 20px 10px 30px;/*20251210追加*/
  margin: 0 0 20px 64px;
  background: #fff;
}

.history-item.first-item {
  /*padding: 45px 30px 30px;*/
  padding: 30px 30px 10px;/*20251210追加*/
}

.history-item:last-of-type {
  margin: 0 0 0 64px;
}

.history-item:before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 5;
  top: 30px;
}

.history-item:before {
  width: 122px;
  left: -122px;
  background: url(../images/history/arw-faculty.svg) no-repeat;
  background-size: cover;
  height: 20px;
}

.historyPage p {
  font-size: 16px;
}

.historyPage .when {
  font-family: 'HelveticaNowDisplay-Bd', sans-serif;
  /*font-size: clamp(45px, 5vw, 60px);*/
   font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  position: absolute;
  line-height: 1;
  top: -20px;
}

.historyPage .when {
  color: #e63178;
}
/*#container 20251205add*/
#container .historyPage .history-item h2 {
  /*font-size: clamp(20px, 2.3vw, 30px);*/
  font-size: clamp(12px, 2.3vw, 20px);/*テスト用追加*/
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
/*20251205add*/
  text-align: left;
  padding: 0
}

.historyPage .history-item .item-flx {
  display: flex;
  justify-content: space-between;
  gap: 20px 1.9841%;
}

.historyPage .history-item .item-flx > div {
  width: 58.7869%;
}

.historyPage .history-item .item-flx figure {
  width: auto;
  min-width: 280px;
  text-align: center;
}

/* .historyPage .history-item .item-flx P {
  width: calc(100% - 27.8% - 1.9841%);
} */

/* .historyPage .history-item .item-clm p {
  margin-bottom: 20px;
} */

.historyPage .history-item .item-clm figure {
  display: flex;
  justify-content: center;
  gap: 10px 1.9841%;
  text-align: center;
}

.historyPage .history-item .item-clm figure img {
  width: 27.8%;
  min-width: 220px;
}

#container .historyPage .history-item .era-text {
    text-indent: 5.5rem;
}


@media screen and (max-width: 1366px) {
  .historyPage .inner-wrap {
    width: 95%;
  }
}

@media screen and (max-width: 1023px) {
  .historyPage .inner-wrap {
    width: 100%;
  }

  .historyPage .history-item .item-flx {
    flex-direction: column;
  }

  .historyPage .history-item .item-flx > div {
    width: 100%;
  }

  .historyPage .history-item .item-flx p {
    width: 100%;
  }

  .historyPage .history-item .item-flx figure {
    width: 100%;
  }

  .historyPage .history-item .item-clm figure img {
    width: calc((100% - 3.9682%) / 3);
    min-width: auto;
  }

  .historyPage .when {
    top: -15px;
  }
}


@media screen and (max-width: 768px) {
  .historyPage .inner-wrap {
    padding: 0 4%;
  }

  .historyPage .cont-wrap {
    margin: 30px 0 0;
  }
  .historyPage p {
    font-size: 13px;
  }

  .historyPage .item-wrap:last-of-type {
    padding-bottom: 60px;
  }

  .historyPage .inner {
    padding: 60px 0;
  }

  .historyPage .history-item {
    padding: 4%;
  }

  .history-item.first-item {
    padding: 35px 4% 4%;
  }

  .historyPage .history-item .item-flx {
    gap: 10px 1.9841%;
  }

  .history-item:last-child {
    margin: 0 0 0 64px;
  }

  .history-item:before {
    width: 71px;
    left: -71px;
  }

  .historyPage .history-item .item-clm figure {
    flex-direction: column;
  }

  .historyPage .history-item .item-clm figure img {
    width: 100%;
  }
  
  #container .historyPage .history-item .era-text {
    text-indent: 0rem;
}

}

@media screen and (max-width: 450px) {
  .history-item {
     /*margin: 0 0 20px 45px;*/
    margin: 0 0 20px 0;/*20251208追加*/
  }

  .history-item:last-child {
    /*margin: 0 0 20px 45px;*/
    margin: 0 0 20px 0;/*20251208追加*/
  }

  .history-item:before {
    width: 53px;
    left: -53px;
  }

  .historyPage .history-item .item-flx figure {
    min-width: initial;
  }
}


/****************************************
　Interview
****************************************/
.interviewPage .inner {
  padding: 6.25% 20px;
}

.interviewPage .inner {
  max-width: calc(1080px + 40px);
}

@media screen and (max-width: 768px) {
  .interviewPage .inner {
    padding: 11.179% 4%;
  }
}

/***** Interview-list *****/
.interviewPage.interview-list .inner {
  padding: 6.25% 20px 120px;
}
.interviewPage.interview-list .mv-img {
  background: url(../images/interview/bg-interview-list.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.interviewPage.interview-list .lead {
  text-align: center;
  line-height: 2.2;
  margin-bottom: 60px;
}

.interviewPage.interview-list .list {
  display: flex;
  flex-direction: column;
  gap: 40px 4%;
}

.interviewPage.interview-list .list a {
  display: flex;
  align-items: stretch;
}

.interviewPage.interview-list .list figure {
  width: 66.6666%;
  overflow: hidden;
}

.interviewPage.interview-list .list img {
  transition: transform .3s ease-in-out;
}

.interviewPage.interview-list .list li:hover img {
  transform: scale(1.1);
}

.interviewPage.interview-list .list p {
  background: #009D62;
  color: #fff;
  position: relative;
  width: 33.3333%;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  padding: 2.7777%;
}

.interviewPage.interview-list .list p:after {
  content: "";
  display: inline-block;
  background: url(../images/common/ic-arw-white.svg) no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 19px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

/** ▼▼▼ 未公開 ▼▼▼ **/
.interviewPage.interview-list .list .is-yet a {
  pointer-events: none;
}

.interviewPage.interview-list .list .is-yet:hover img {
  transform: initial;
  position: relative;
}

.interviewPage.interview-list .list .is-yet figure {
  position: relative;
}

.interviewPage.interview-list .list .is-yet figure:before {
  content: "";
  display: block;
  background: rgba(40, 42, 43, .6);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.interviewPage.interview-list .list .is-yet figure:after {
  content: "COMING SOON";
  display: block;
  font-size: clamp(18px, 2.2vw, 30px);
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  letter-spacing: .1rem;
  font-family: 'HelveticaNowDisplay-Md', sans-serif;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

.interviewPage.interview-list .list .is-yet p:after {
  content: none;
}
/** ▲▲▲ 未公開 ▲▲▲ **/

@media screen and (max-width: 768px) {
  .interviewPage.interview-list .inner {
    padding: 6.25% 4% 60px;
  }
  .interviewPage.interview-list .lead {
    margin-bottom: 30px;
  }
  .interviewPage.interview-list .list {
    gap: 20px 4%;
  }

  .interviewPage.interview-list .list a {
    flex-direction: column;
  }

  .interviewPage.interview-list .list figure {
    width: 100%;
  }

  .interviewPage.interview-list .list p {
    width: 100%;
  }

  .interviewPage.interview-list .list p:after {
    right: 2.77%;
  }
} 

/***** interview-01 創設時の思い *****/
.interviewPage.interview-01 .mv-img {
  background: url(../images/interview/bg-interview-01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.interviewPage.interview-item .last .inner {
  padding: 6.25% 20px 120px;
}

.interviewPage.interview-item .member-box {
  border: 1px solid #009D62;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 0;
}

.interviewPage.interview-item .member-list {
  display: flex;
  justify-content: center;
  column-gap: 4.6926%;
  width: 100%;
}

.interviewPage.interview-item .member-list li {
  font-size: 17px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 329px;
  padding: 54px 0 25px;
}

.interviewPage.interview-item .member-list li.facilitator {
  background: #EFF3F5;
  position: relative;
  padding: 54px 25px 25px;
}

.interviewPage.interview-item .member-list li figure {
  margin-bottom: 15px;
}

.interviewPage.interview-item .member-list li p {
  margin-bottom: 0;
  line-height: 1.8;
}

.interviewPage.interview-item .member-list .facilitator .roll {
  position: absolute;
  top: 15px;
}

.interviewPage.interview-item .member-list li span {
  font-weight: 400;
  font-size: 15px;
  display: block;
}

.interviewPage.interview-item h2 {
  color: #009D62;
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.6;
}

.interviewPage.interview-item p {
  margin-bottom: 30px;
  font-size: 16px;
}

.interviewPage.interview-item .mb0 {
  margin-bottom: 0;
}

.interviewPage.interview-item figure {
  margin-bottom: 30px;
  text-align: center;
}

.interviewPage.interview-item p .name {
  color: #009D62;
  font-weight: 600;
}


@media screen and (max-width: 768px) {
  .interviewPage.interview-item .last .inner {
    padding: 11.179% 4% 60px;
  }
  .interviewPage.interview-item .member-box {
    padding: 4%;
    margin: 0 0 30px;
  }

  .interviewPage.interview-item .member-list {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 4%;
  }

  .interviewPage.interview-item .member-list li {
    width: 48%;
    padding: 42px 8px 20px;
    height: 300px;
  }

  .interviewPage.interview-item .member-list li:nth-child(1),
  .interviewPage.interview-item .member-list li:nth-child(2) {
    padding: 0 8px 20px;
    height: 270px;
  }

  .interviewPage.interview-item .member-list li.facilitator {
    padding: 42px 8px 20px;
  }

  .interviewPage.interview-item .member-list .facilitator .roll {
    top: 12px;
  }

  .interviewPage.interview-item .member-list li p {
    font-size: 13px;
  }

  .interviewPage.interview-item .member-list li span {
    font-size: 11px;
  }

  .interviewPage.interview-item p {
    font-size: 14px;
  }
}

@media screen and (max-width: 430px) {
  .interviewPage.interview-item .member-list li {
    height: 270px;
  }
  .interviewPage.interview-item .member-list li:nth-child(1), .interviewPage.interview-item .member-list li:nth-child(2) {
    height: 230px;
  }
}


/***** interview-02 卒業生座談会 *****/
.interviewPage.interview-02 .mv-img {
  background: url(../images/interview/bg-interview-02.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.interviewPage.interview-item.interview-02 .member-box {
  border-style: none;
  padding: 0;
}

.interviewPage .member-list-graduate {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.interviewPage .member-list-graduate > li {
  width: calc((100% - 15px) / 2);
  border: 1px solid #009D62;
}

.interviewPage .member-list-graduate .item-wrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 15px;
  border: 1px solid #E5EBEE;
}

.interviewPage.interview-item.interview-02 figure.member {
  margin-bottom: 0;
  min-width: 180px;
}

.interviewPage .member-list-graduate .name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.interviewPage .member-list-graduate .txt {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 0;
}

.interviewPage .member-list-graduate .history {
  font-size: 12px;
  padding: 15px 15px 15px 28px;
  line-height: 1.6;
}

.interviewPage .member-list-graduate .history li {
  position: relative;
  margin-bottom: 5px;
}

.interviewPage .member-list-graduate .history li:last-child {
  margin-bottom: 0;
}

.interviewPage .member-list-graduate .history li:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #009D62;
  width: 7px;
  height: 7px;
  border-radius: 4px;
  top: 7px;
  left: -14px;
}

.interviewPage.interview-item.interview-02 h2:before {
  content: "";
  display: inline-block;
  background: #009D62;
  width: 30px;
  height: 2px;
  vertical-align: middle;
  margin-right: 12px;
}

.interviewPage.interview-item.interview-02 h2.no-line:before {
  content: none;
}

.interviewPage.interview-item.interview-02 .mb80 {
  margin-bottom: 80px;
}

@media screen and (max-width: 1100px) {
  .interviewPage.interview-item.interview-02 figure.member {
    min-width: 140px;
  }
}

@media screen and (max-width: 768px) {
  .interviewPage .member-list-graduate .item-wrap {
    flex-direction: column;
  }

  .interviewPage .member-list-graduate .name {
    text-align: center;
  }

  .interviewPage.interview-item.interview-02 h2:before {
    width: 20px;
    margin-right: 8px;
  }

  .interviewPage.interview-item.interview-02 .mb80 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 450px) {
  .interviewPage .member-list-graduate > li {
    width: 100%;
  }

  .interviewPage .member-list-graduate .txt br {
    display: none;
  }
}


/****************************************
　About
****************************************/
.aboutPage .mv-img {
  background: url(../images/about/bg-about.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.aboutPage .tit {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
}

.aboutPage .tit.center {
  text-align: center;
}

.attempt .inner {
  padding: 6.25% 20px 0;
}

.attempt .tit {
  margin-bottom: 60px;
}

.attempt .inner > div {
  margin-bottom: 60px;
}

.attempt .flx,
.attempt .flx-rev {
  gap: 20px 5.7142%;
  align-items: flex-start;
}

.attempt figure,
.attempt .txt-area {
  width: calc((100% - 5.7142%) / 2);
}

.attempt .txt-area {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.attempt .link-txt a,
.attempt .link-blank a {
  position: relative;
  transition: .3s ease-in-out;
}

.attempt .link-txt a:hover,
.attempt .link-blank a:hover {
  opacity: .7;
}

.attempt .link-txt a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #009D62;
  border-right: solid 1px #009D62;
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  right: -10px;
  bottom: 0;
  margin: auto;
}

.attempt .link-list ul {
  list-style: none;
}

.attempt .link-blank a:after {
  content: "";
  display: inline-block;
  background: url(../images/common/ic_window.svg) no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 10px;
  margin-left: 7px;
}

.aboutPage h3 {
  font-size: 26px;
  font-weight: 500;
}

.aboutPage h3.flx {
  font-family: 'HelveticaNowDisplay-Bd', sans-serif;
  font-weight: 700;
  letter-spacing: .1rem;
}

.introduction .flx {
  gap: 0;
  align-items: stretch;
}

.introduction figure,
.introduction .txt-area {
  width: 50%;
}

.introduction figure {
  padding-top: 36.7vh;
}

.introduction .txt-area {
  color: #fff;
  background: #009D62;
  padding: 37px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.introduction .tit {
  margin-bottom: 30px;
}

.introduction .txt-area .txt {
  margin-bottom: 30px;
}

.introduction .btn {
  border: 1px solid #fff;
  text-indent: 0;
  margin-left: 0;
  font-size: 14px;
  font-weight: normal;
  width: 132px;
  height: 33px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 768px) {
  .aboutPage .tit {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .aboutPage h3 {
    font-size: 20px;
  }

  .attempt figure,
  .attempt .txt-area {
    width: 100%;
  }

  .introduction figure,
  .introduction .txt-area {
    width: 100%;
  }

  .introduction figure {
    padding-top: 34vh;
  }

  .introduction .txt-area {
    padding: 4%;
  }

  .introduction .tit {
    margin-bottom: 15px;
  }

  .introduction .txt-area .txt {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .introduction figure {
    padding-top: 77vh;
  }
}



/***** 式典終了バナー修正 2025.11.07 *****/
.sec-ceremony .txt-wrap p.title {
  font-size: 20px;
}

.sec-ceremony .item-wrap ul {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.sec-ceremony .txt-wrap {
  width: 72%;
}

.sec-ceremony figure {
  background: url(../images/top/bnr-img_202511.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  width: 38%;
}


@media screen and (max-width: 1100px) {
  .sec-ceremony figure {
    width: 100%;
  }

  .sec-ceremony .txt-wrap {
    width: 100%;
    padding: 4%;
  }


}


@media screen and (max-width: 768px) {
  .sec-ceremony h3 {
    font-size: 18px;
    padding: 7px;
  }

    .sec-ceremony .txt-wrap p.title {
    font-size: 16px;
  }
  
  .sec-ceremony .item-wrap ul {
    font-size: 13px;
  }

  .sec-ceremony .item-wrap .item {
    margin-bottom: 20px;
  }
}