@charset "utf-8";
/* スクロールオーバーレイ */
.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.8s ease;
  z-index: 100;
}

.container.scrolled .dark-overlay {
  mix-blend-mode: multiply;
  background:#2C2F7A; /* Adjust the darkness level */
}/* スクロールオーバーレイ */

/* ローディング画面 */
.loading-screen {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, #001d3d, #003566); */
  background: linear-gradient(180deg, #020434, #062271);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1s ease 3s forwards;
  z-index: 9999;

}

.loading-screen.active {
  display: flex; /* 表示 */
  opacity: 1; /* 徐々に表示される */
}

.logo {
  width: 200px; /* ロゴの幅を調整 */
  margin-bottom: 20px;
  animation: fadeIn 1s ease 0.1s forwards;
  opacity: 0;
}

.loader {
  width: 40%; /* ゲージの幅を短く設定 */
  max-width: 200px; /* 最大幅の制限 */
  height: 2px; /* 高さを細く設定 */
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #b7d4de, #ffffff);
  animation: load 3s linear forwards;
}

@keyframes load {
  0% {
      width: 0;
  }
  100% {
      width: 100%;
  }
}

@keyframes fadeOut {
  to {
      opacity: 0;
      visibility: hidden;
  }
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}/*loadingここまで*/


/*==========================
mainVisual
==========================*/
.mainVisual{
animation: fadeIn 1s ease 3.5s forwards;
}

.mv__txt{
  margin-left: 7.7%;
  padding-top: 18vh;
  padding-bottom: 60vh;
  width: 60%;
  opacity: 0;
  transform: translate(0, 5%);
  filter: blur(10px); /* 初期状態でぼかしを適用 */
  animation: textBlurSlideIn 2s ease 4s forwards;
}

@keyframes textBlurSlideIn {
  0% {
      opacity: 0;
      filter: blur(10px);
      transform: translate(0, 5%); /* 少し下に配置 */
  }
  100% {
      opacity: 1;
      filter: blur(0);
      transform: translate(0, 0); /* 元の位置に移動 */
  }
}

.mv__txt__pc{
  display:none;
}

/* .mainVisual pc */
@media screen and (min-width:769px) {
  .mv__txt{
    margin-left: 4%;
    padding-top: 50vh;
    padding-bottom: 60vh;
    width: 40%;
  }

  .mv__txt__pc{
    display:block;
  }
  
  .mv__txt__sp{
    display: none;
  }
}

/*==========================
profile
==========================*/
.section--profile{
  margin: 0 12.3% 0;
  padding-top: 120px;
}

.profile__content{
  margin-top: 20px;
}

.profile__txt{
  margin-top: -70px;
}

.name__En{
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 3.0rem;
  font-style: normal;
  font-weight: 500;
}

.name__Ja{
  text-align: center;
  font-size: 1.4rem;
}

.favorite{
  margin-top: 24px;
  font-size: 1.4rem;
}

.selfIntroduction{
  margin-top: 24px;
  font-size: 1.4rem;
}

/* .profile pc */
@media screen and (min-width:769px) {  
  .section--profile{
    margin: 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile__global{
    position: relative;
    width: 80%;
  }

  .profile__content{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    height: 500px;
    max-width: 920px;
  }

  .profile__global .section__topic{
    justify-content: flex-start;
  }

  .profile__img{
    position: relative;
    width: 100%;
    height: 90%;
    margin-left: 14%;
  }

  .profile__img img{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120%;
    width: auto; /* 横幅を自動調整 */
    object-fit: contain; /* アスペクト比を維持 */
  }

  .profile__txt{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 450px;
    bottom: 0;    
  }

  .name__En{
    font-size: 4.0rem;
    letter-spacing: 0.1em;
  }

  .name__Ja{
    margin-top: 10px;
    font-size: 1.8rem;
  }

  .favorite {
    margin-top: 54px;
    font-size: 1.8rem;
  }

  .selfIntroduction{
    padding-bottom: 40px;
    font-size: 1.8rem;
  }
}

/*==========================
news
==========================*/
.section--news{
  margin: 120px 12.3% 0;
  padding-top:110px;
}

.news__span{
  display: none;
}

.xname{
  margin-top: 60px;
  font-weight: 600;
  text-align: center;
}

.x__wrapper__content:nth-of-type(2){
  margin-top: 130px;
}

.x__post--sp{
  margin-top: 20px;
}

.x__post--pc{
  display: none;
}

/* .news pc */
@media screen and (min-width:769px) {  
  .section--news{
    margin: 240px 14.6% 0;
    padding-top:110px;
  }

  .section--news .section__topic{
    justify-content: flex-start;
  }

  .news__span{
    display: inline;
  }

  .x__wrapper{
    display: flex;
    justify-content: center;
    gap: 58px;
  }

  .x__wrapper__content{
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .x__wrapper__content .btn{
    max-width: 300px;
    height: 50px;
    margin-top: 50px;
  }

  .x__wrapper__content:nth-of-type(2){
    margin-top: 0;
  }

  .xname{
    margin-top: 60px;
    font-size: 1.8rem;
    text-align: left;
  }

  .x__wrapper__part{
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }

  .x__post--sp{
    display: none;
  }

  .x__post--pc{
    margin-top: 20px;
    display: block;
    width: 100%;
  }
}

/*==========================
movie
==========================*/
.section--movie__topics{
  margin: 120px 0 0;
}

.slider{
  margin: 36px;
  aspect-ratio: 16 / 9;
}

.slider iframe{
  height:100%;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.slick-prev:before {
  content: "" !important;
}

.slick-prev:after {
  margin-right: 10px;
  content: url(../images/arrow_left.png);
}

.slick-next:before {
  content: "" !important;
}

.slick-next:after {
  margin-left: 10px;
  content: url(../images/arrow_right.png);
}

.slick-dots li:nth-of-type(-n+6) button:before{
  background: url("../images/slider_dots.png") no-repeat;
  background-size: contain!important;
}

.slick-dots{
  bottom: initial!important;
  margin-top:20px!important;
}

.slick-dots li button:before{
  content: ''!important;
  height:100%!important;
  width: 100%!important;
}

.view_btn{
  display: none;
}

.section--movie__topics .btn{
  margin: 74px 23% 0;
}

/* .movie pc */
@media screen and (min-width:769px) { 
  .section--movie__topics{
    margin: 240px 14.6% 0;
  }

  .slider{
    margin-top: 124px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    aspect-ratio: 16 / 9;
  }
  
  .slider iframe{
    width: 30%; 
    height: 30%;
    
  }

  .section--movie__topics .btn{
    margin: 55px auto 0;
    max-width: 440px;
  }

  .view_btn{
    margin-top: -80px;
    display: block;
    font-family: "Cormorant Garamond";
    font-size: 2.0rem;
    letter-spacing: 0.2em;
    text-align: center;
  }


  .view_btn a{
    padding-bottom: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .view_btn a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.6s ease;
  }

  .view_btn a:hover::after {
    transform-origin: left top;
    transform: scaleX(1);
  }

  .view_btn a::before {
    content: '';  
    background-image: url(../images/kirakira.svg);
    position: absolute;
    bottom: -23%;
    right: -16%;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    transition: transform 0.3s ease 0.8s, opacity 0.3s ease 0.4s; /* Delay of 0.8 seconds */
    opacity: 0;
    
  }

  .view_btn a:hover::before {
    opacity: 1;
  }  
}

/*==========================
goods
==========================*/
.section--goods{
  margin-top: 120px;
}

.slider-item{
  margin-top: 45px;
}

.goods_item{
  margin-right: 10px;
}

.goods_item .overlay{
  display: none;
}

.goods_item span {
  opacity: 0;
}

@media screen and (min-width:769px) {  
  .section--goods{
    margin-top: 240px;
  }


  .slider-item{
    margin-top: 90px;
  }
  
  .section--goods .btn{
    margin: 0 auto;
    max-width: 440px;
    margin-top: 55px;
  }

  /* item＿hover */
  .goods_item {
    position: relative;
    overflow: hidden;
  }

  .goods_item .overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.3s ease-in-out;
  }

  .goods_item:hover .overlay {
    opacity: 1;
  }

  .goods__img {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
  }

  .goods_item:hover .goods__img{
    transform: scale(1.1);
  }
  /* item＿hover */
  
}


/*==========================
message
==========================*/
.section--message{
  margin: 120px 12.3% 45px;
  padding: 27px 0;
  background-image: url(../images/message_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.5s ease, opacity 0.5s ease;
}

.section--message.active {
  background-image: url('../images/message_sp_h.png');
  opacity: 1;
}

.message_icon{
  margin: 30px auto 0;
  width: 240px;
  height: 128px;
  background-image: url(../images/letter.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease, opacity 0.5s ease;
}

.message_icon.active{
  background-image: url(../images/letter_h.png);
}

@media screen and (min-width:769px) {  
  .section--message{
    margin: 120px 0 0;
    padding: 90px 9% ;
    background-image: url(../images/message_pc.png);
    position: relative;
  }

  .section--message.active {
    background-image: url('../images/message_pc_h.png');
    opacity: 1;
  }

  .section--message .section__topic{
    justify-content:left;
    margin-left: 38vw;
  }

  .section--message .btn{
    margin: 35px 0 0 38vw;
  }

  .message_icon{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    margin: 0;
    width: 30%;
    height: 100%;
  }

  .section--message .btn{
    max-width: 430px;
    height: 50px;
  }

} 