@charset "utf-8";

/*============================
オープニングアニメーション
============================*/
.opening-overlay {
  position: fixed;
  inset: 0;
  background-color: #011062;
  z-index: 9999;
  pointer-events: auto;
}

.top-page header {
  transform: translateY(-100%);
}

/* オーバーレイ内テキスト（オープニング用） */
.opening-overlay__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  z-index: 1;
  text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.opening-overlay__text .en,
.opening-overlay__text .jp,
.opening-overlay__text .text {
  margin-bottom: 0.2rem;
}
.opening-overlay__text .en { margin-bottom: 0.3rem; }
.opening-overlay__text .jp { margin-bottom: 0.2rem; }

/* オープニング完了後 */
body:not(.top-page) .opening-overlay,
.opening-overlay.is-finished {
  pointer-events: none;
  visibility: hidden;
}

.mv {
  position: relative
}

.mv .scroll {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.18rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 640px) {
  .mv .scroll {
    font-size: 0.14rem;
  }
}

.mv .scroll span {
  display: block;
  position: relative
}

/* .mv .scroll span::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.02rem;
  height: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  overflow: hidden;
} */

.mv .scroll span::before {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.02rem;
  height: 0.3rem;
  background: linear-gradient(to bottom, transparent, #fff, transparent);
  animation: scrollLine 2s ease-in-out infinite;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

@keyframes scrollLine {
  0% {
    transform: translateX(-50%) translateY(-0.5rem);
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0.5rem);
    opacity: 0.2;
  }
}

/*============================
コンテンツ
============================*/
* {
  margin: 0;
  padding: 0;
}

.wrap {
  position: relative;
}

.js-sticky {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
}
.js-sticky .js-sticky-img {
  width: 100%;
  height: 100%;
}

.js-sticky .js-sticky-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  z-index: -1;
}


.js-sticky .js-sticky-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.js-sticky:has(.btn_common a:hover) .js-sticky-img img {
  opacity: 1;
}




.text_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  color: #fff;
}
.text_wrap .en {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 640px) {
  .text_wrap .en {
    font-size: 0.4rem;
  }
}

.text_wrap .jp {
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 640px) {
  .text_wrap .jp {
    font-size: 0.18rem;
  }
}
.text_wrap .text {
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  .text_wrap .text {
    font-size: 0.14rem;
  }
}

.text_wrap .btn_common {
  margin: 0 auto;
  margin-top: 1rem;
}

.btn_common {
  max-width: 3rem;
  box-sizing: border-box;
  /* margin: 0.5rem auto 0; */
}
@media screen and (max-width: 640px) {
  .text_wrap .btn_common {
    max-width: 2.5rem;
  }
}

.btn_common a {
  display: block;
  width: 100%;
  color: #000;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  padding: 0.25rem 0;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	text-align: center;
  position: relative;
}

@media screen and (max-width: 640px) {
  .btn_common a {
    font-size: 0.14rem;
    padding: 0.2rem 0;
  }
}
.btn_common a:hover {
  opacity: 0.7;
}
.btn_common a::after {
  content: '';
  position: absolute;
  width: 0.13rem;
  height: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  right: 0.25rem;
  width: 0.18rem;
  height: 0.14rem;
  background: url(../img/common/icon_btn_arrow.svg) no-repeat center center;
  background-size: contain;
  transition: all 0.3s ease;
}

.btn_common a:hover::after {
  right: 0.22rem;
}

/*============================
ニュース
============================*/
#news {
  padding: 1rem 0;
}
@media screen and (max-width: 640px) {
  #news {
    padding: 0.5rem 0 1rem 0;
  }
}

#news .in {
  max-width: 10rem;
  margin: 0 auto;
}


#news .title_wrap{
  text-align: center;
}


#news .title_wrap .en {
  font-size: 0.66rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
  #news .title_wrap .en {
    font-size: 0.4rem;
  }
}
#news .title_wrap .jp {
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1;
  font-family: "sans-serif";
}
@media screen and (max-width: 640px) {
  #news .title_wrap .jp {
    font-size: 0.14rem;
  }
}
#news .list {
  margin-top: 0.5rem;
}

#news .list .item {
  width: 100%;
  margin-bottom: 0.3rem;
}
#news .list .item a {
  display: flex;
  align-items: center;
  color: #000;
}
@media screen and (max-width: 640px) {
  #news .list .item a {
    flex-wrap: wrap;
  }
}
#news .list .item a:hover {
  opacity: 0.8;
}
#news .list .item .date {
  font-size: 0.16rem;
  width: 1.3rem;
}
@media screen and (max-width: 640px) {
  #news .list .item .date {
    font-size: 0.14rem;
    width: 1rem;
  }
}
#news .list .item .category {
  font-size: 0.16rem;
  width: 1.3rem;
  background-color: #011062;
  color: #fff;
  text-align: center;
  padding: 0.05rem 0;
  border-radius: 0.05rem;
}
@media screen and (max-width: 640px) {
  #news .list .item .category {
    font-size: 0.12rem;
  }
}
#news .list .item .text {
  font-size: 0.16rem;
  box-sizing: border-box;
  padding-left: 0.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  #news .list .item .text {
    font-size: 0.14rem;
    width: 100%;
    padding-left: 0;
    margin-top: 0.1rem;
  }
}

#news .list .item a:hover .text {
  color: #011062;
}

#news .btn_common  {
  margin: 0.5rem auto 0;
}

#news .btn_common a {
	background: #011062;
	color: #fff;
}
@media screen and (max-width: 640px) {
  #news .btn_common {
    max-width: 2.5rem;
  }
}

#news .btn_common a::after {
  background: url(../img/common/icon_btn_arrow_wh.svg) no-repeat center center;
}


/*============================
プロフィール
============================*/
#profile {
  padding: 1rem 0;
  background: rgba(1, 16, 98, 0.1);
}
@media screen and (max-width: 640px) {
  #profile {
    padding: 0.5rem 0 1rem 0;
  }
}
#profile .in {
  max-width: 10rem;
  margin: 0 auto;
}

#profile .title_wrap{
  text-align: center;
}

#profile .title_wrap .en {
  font-size: 0.66rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 640px) {
  #profile .title_wrap .en {
    font-size: 0.4rem;
  }
}
#profile .title_wrap .jp {
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1;
  font-family: "sans-serif";
}
@media screen and (max-width: 640px) {
  #profile .title_wrap .jp {
    font-size: 0.14rem;
  }
}
#profile table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.16rem;
}
#profile table th {
  width: 2rem;
  text-align: left;
  padding: 0.2rem 0;
  border-bottom: 1px solid #000;
  line-height: 2;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  #profile table th {
    font-size: 0.14rem;
    width: 100%;
    display: block;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.15rem;
    box-sizing: border-box;
    border-radius: 0.05rem;
  }
}
#profile table td {
  padding: 0.2rem 0;
  border-bottom: 1px solid #000;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  #profile table td {
    font-size: 0.14rem;
    width: 100%;
    display: block;
    border: none;
    padding: 0.15rem;
    box-sizing: border-box;
  }
}