@charset "UTF-8";

/* ベースのスタイル
------------------------------------------ */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
}

a {
    color: #000;
    text-decoration: none;
  }

  a,
  a:hover,
  a i {
    transition: all 0.3s;
  }

  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }

  html {
    scroll-padding-top: 6rem;
  }

/* flexbox */
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Outfitフォント */
  .outfit {
    font-family: Outfit, sans-serif;
  }
  
  /* 文字の太さmedium */
  .medium {
    font-weight: 500;
  }
  

  /* Slick矢印 */
.slick-arrow {
  position: absolute;
  top: calc((100% - 10px) / 2);
  z-index: 1;
  cursor: pointer;
}

@media (min-width: 768px) {
  .slick-arrow {
    top: calc((100% - 24px) / 2);
  }
}


/* Slickドット */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  bottom: 1.25rem;
  display: flex;
  column-gap: 1.25rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .slick-dots {
    bottom: 2rem;
  }
}

.slick-dots li {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0;
}

.slick-dots li button {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: 0.0625rem solid #fff;
  border-radius: 50%;
}

.slick-dots li button::before {
  width: 0.625rem;
  height: 0.625rem;
  line-height: normal;
  border-radius: 50%;
  opacity: 0;
}

.slick-dots li button:hover::before,
.slick-dots li.slick-active button::before {
  color: #fff;
  background-color: #fff;
  opacity: 1;
}



  /* コンテナ */
  .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 67.5rem;
    margin: auto;
  }

  
  @media (min-width: 768px) {
    .container {
      padding-top: 6.25rem;
      padding-bottom: 6.25rem;
    }
  }

  .fadeIn {
    transform: translate3d(0, 0, 0);
    transition: 1.5s;
    opacity: 0;
  }
  
  .fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .fadeIn-left {
    transform: translate3d(50px, 0, 0);
    transition: 1.5s;
    opacity: 0;
  }
  
  .fadeIn-left.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .fadeIn-right {
    transform: translate3d(-50px, 0, 0);
    transition: 1.5s;
    opacity: 0;
  }
  
  .fadeIn-right.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .fadeIn-bottom {
    transform: translate3d(0, 50px, 0);
    transition: 1.5s;
    opacity: 0;
  }
  
  .fadeIn-bottom.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .updown{
    /* アニメーションの名前 */
    animation-name:UpDown;
    /* アニメーションの１回分の長さ */
    animation-duration: 1.5s;
    /* アニメーションの回数 */
    animation-iteration-count: infinite;
    /* アニメーションの進行具合 */
    animation-timing-function: ease-in-out;
    /* アニメーション再生の向き */
    animation-direction: alternate;
    }
    /* アニメーションの設定 */
    @keyframes UpDown{
    /* 開始地点 */
    0%{
    /* Y軸0px */
    transform: translateY(0);
    }
    /* 終了地点 */
    100%{
    /* Y軸50px */
    transform: translateY(50px);
    }
    }

    .title{
      position: absolute;
      top: -1.5rem;
      left:3rem;
      color: #fff;
    }

    .title::before{
      content: '';
      position: absolute;
      top: 0.75rem;
      left: -1.25rem;
      width: 15px;
      height: 15px;
      border-top: 5px solid #fff;
      border-left: 5px solid #fff;
      transform: rotate(-135deg);
    }

    .title-txt{
      margin-bottom: 2rem;
    }

    
  @media (min-width: 768px) {
    .title{
      top: -2.25rem;
      left:10rem;
      font-size: 2.5rem;
    }

    .title::before{
      content: '';
      position: absolute;
      top: 0.95rem;
      left: -2rem;
      width: 25px;
      height: 25px;
      border-top: 5px solid #fff;
      border-left: 5px solid #fff;
      transform: rotate(-135deg);
    }

    .title-txt{
      margin-bottom: 2rem;
      font-size: 1.625rem;
    }
  }





  /*ヘッダー
  ---------------------------------*/
  header {
    position: fixed;
    width: 100%;
    z-index: 28;
    background-color: #fff;
    box-shadow: 0px 3px 6px #0000004D;
  }

  header h1 {
    margin: 0;
  }

  header .row {
    display: flex;
    height: 5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  header nav {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }
  
  header nav a {
    color: #fff;
    text-decoration: none;
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;  /* 縦方向に要素を配置 */
    align-items: center;    /* 横方向の中央寄せ */
    justify-content: center; /* 縦方向の中央寄せ */
    text-align: center;      /* テキストの中央寄せ */
    height: 100%;
    font-size: 0.8rem;
  }

  header nav a:first-child {
    background-color: #ff6f80;
  }

  header nav a:nth-child(2) {
    background-color: #f5ed50;
  }

  header nav a:nth-child(3) {
    background-color: #4df77a;
  }


  header nav a:hover {
    opacity: 0.9;
    transition: 0.2s;
    background-color: #000;
  }
  
  .bi{
    font-size: 1.8rem;
  }


/* カバー
------------------------------------------ */
.cover{
  background-color: #4285F4;
}

@media (min-width: 768px) {
  .cover {
    margin-top: 0;
  }
}

/* コンテナ */
.cover-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cover-container {
    flex-direction: row-reverse;
  }
}

/*カバー画像*/
.cover-top{
  background-position: center;
  background-size: 100%;
  text-align: center;

}

.cover-top img{
  width: 100%;
  margin-top: 5.05rem;
}



@media (min-width: 768px) {
  .cover-top {
    width: 100%;
    height: 100vh;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(12,192,223,1) 0%, rgba(255,222,89,1) 100%);
    background-position: 0 35%;
    background-size: 100%;
  }

  .cover-top img{
    width: 72.5%;
    margin-top: 5.15rem;
  }
}

.cover-bottom {
  padding-top: 0.2rem;
}

.cover-bottom img{
  width: 100%;
  background-color:#001eb0c9;
  margin-top: -0.45rem;
}


/* カバーテキスト */
@media (min-width: 768px) {
  .cover-bottom {
    position: relative;
    display: flex;
    background-color: rgba(12,192,223,1);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 1rem;
    width: 50%;
    padding-top: 0.2rem;
    padding-left: 4.25rem;
    padding-right: 4.25rem;
    }

    .cover-bottom img{
      width: 100%;
      background-color: #00000000;
      margin-top: 0;
  }
}


@media (min-width: 768px) {
  .cover-catch {
    width: 33.75rem;
    margin: .4rem 0 0 auto;
  }
}



/* カバー説明 */
.cover-description {
  display: block;
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 2;
  color: #fff;
  padding: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .cover-description {
    margin-top: 2rem;
    font-size: 1.1rem;
    background-color:transparent;
    text-align: center;
    margin-bottom: 0;
  }
}

/* スクロール */
.cover-scroll {
  display: none;
}
@media (min-width: 768px) {
  .cover-scroll {
    position: absolute;
    bottom: 1.8rem;
    left: 0;
    display: block;
    font-size: .8125rem;
    letter-spacing: .1rem;
    transform: rotate(-90deg);
    height: 0.8rem;
  }
}
@media (min-width: 1081px) {
  .cover-scroll {
    right: 5rem;
    left: auto;
  }
}
.cover-scroll::after {
  background-color: #263165;
  position: absolute;
  right: .25rem;
  bottom: 1.75rem;
  width: 5rem;
  height: .125rem;
  content: "";
}


/*パーソナリティ*/
.personality{
  background-color: #ff6f80;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 0.825rem;
  padding-right: 0.825rem;
}

@media (min-width: 768px) {
.personality{
  padding-top: 5rem;
  padding-bottom: 8rem;
  padding-left: 5.825rem;
  padding-right: 5.825rem;
}

}

.personality-item{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.personality-item img{
  width: 95%;
}


@media (min-width:768px){
.personality-item{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  row-gap: 3rem;
  margin-top: 2.5rem;
}

.personality-item-ana{
  width: calc(22% - 1.25rem);
}
}


/* message
------------------------------------------ */

.message{
  background-color: #f5ed50;
  padding-top: 3rem;
  padding-left: 0.825rem;
  padding-right: 0.825rem;
  padding-bottom: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .message{
    padding-top: 5rem;
    padding-bottom: 8rem;
    padding-left: 5.825rem;
    padding-right: 5.825rem;
  }
}

/* messageアイテム */
.message-list-group {
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .message-list-group {
    row-gap: 2.3rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* messageリンク */
.message-list-group-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content:space-between;
  padding: 0.2rem;
  background-color: #fff;
  border-radius: 0.625rem;
  color: #000;
}



@media (min-width: 768px) {
  .message-list-group-item {
    width: calc(50% - 1.25rem);
    padding: 1.25rem;
  }
}

.message-list-group-item .bi{
  font-size: 2.5rem;
  padding-right: 1rem;
}


/* タイトル */
.message-list-title {
  padding-left: 1rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .message-list-title {
    font-size: 1.25rem;
  }
}
/* brタグ */
@media (min-width: 1081px) {
  .message-list-title br {
    display: none;
  }
}

/* 右矢印 */
.message-list-icon {
  position: absolute;
  top: 50%;
  right: .5rem;
  font-size: 1.5rem;
  line-height: 1;
  transform: translate(0%, -50%);
}

@media (min-width: 768px) {
  .message-list-icon {
    right: .7rem;
    font-size: 2rem;
  }
}

  /* オレンジ色ボタン */
  .button-orange {
    max-width: 18.75rem;
    padding: .8rem 1rem .725rem;
    margin: 2.25rem auto 0;
    background-color: #ec6a00;
    font-size: 1.4rem;
  }
  
  @media (min-width: 768px) {
    .button-orange {
      margin: 2.75rem auto 0;
      padding: .9rem 0;
    }
  }
  
  .button {
    position: relative;
    display: block;
    color: #fff;
    text-align: center;
    border-radius: 3rem;
  }

  .lisen{
  background-color: #4df77a;
  padding-top: 3rem;
  padding-left: 0.825rem;
  padding-right: 0.825rem;
  padding-bottom: 3rem;
  position: relative;
  }

  @media (min-width: 768px) {
    .lisen{
      padding-top: 3rem;
      padding-left: 5.825rem;
      padding-right: 5.825rem;
      padding-bottom: 3rem;
      position: relative;
      } 
  }

  /*フッター*/

.footer {
    padding: 2.5rem 0;
    text-align: center;
    color: #fff;
    background-color: #d9d9d9;
  }
  
  @media (min-width: 768px) {
    .footer {
      padding: 2.4rem 0;
    }
  }
  
  /* フッターナビゲーション */
  .footer-nav {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }
  
  @media (min-width: 768px) {
    .footer-nav {
      margin-bottom: 1.7rem;
      font-size: 1.125rem;
    }
  }
  
  .footer-nav li {
    padding: 0 1.25rem;
    border-left: .0625rem solid #fff;
  }
  
  @media (min-width: 768px) {
    .footer-nav li {
      padding: 0 1.75rem;
    }
  }
  
  .footer-nav li:last-child {
    border-right: .0625rem solid #fff;
  }
  .footer-nav li a {
    display: block;
    line-height: 1;
    color: #fff;
  }
  /* コピーライト */
  .footer-copyright {
    font-size: .75rem;
  }
  
  @media (min-width: 768px) {
    .footer-copyright {
      font-size: 0.875rem;
    }
  }
  
  
  /* ページトップへ戻るボタン */
  .button-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 1rem; /* 位置を調整 */
    right: 1rem; /* 位置を調整 */
    width: 2.75rem;
    height: 2.75rem;
    font-size: 2.75rem;
    color: #fff;
    background-color: #a7e6ff;
    border-radius: 50%;
  }
  
  .button-to-top i{
    line-height: 0;
  }

