/*
Theme Name: Hoshini Ichi Custom Theme
Author: jullycyan/mako
Version: 1.0
Description: This theme is exclusively for Ms. Hoshini Ichi.
*/

/* ---- 全体制御 ---- */
html {
    height: 100%;
}

body {
    font-family: 'Montserrat', 'kozuka-gothic-pr6n', sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

body:not(.home) main {
  margin-top: 80px;
}

@media screen and (max-width: 700px) {
  body {
    font-size: 11px;
  }

  body:not(.home) main {
    margin-top: 80px;
  }
}

a:hover {
  opacity: 0.5;
}

*:focus {
  outline: none;
  box-shadow: none;
}

/* ---- スプラッシュ画面 ---- */

/* オーバーレイ */
.splash {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    animation: fadeOutOverlay 1s ease forwards;
    animation-delay: 3s;
}

@keyframes fadeOutOverlay {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* 表示画像 */
.splash img {
    width: 200px;
    opacity: 0;
    animation: fadeInImage 1.5s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ---- ヘッダー・フッターメニュー ---- */
footer {
    padding: 20px;
}

.custom-logo {
    width: 100px;
}

.custom-logo-link:hover {
  opacity: 1;
}

nav.menu a {
    margin-right: 15px;
    text-decoration: none;
}

/* ---- 汎用 ---- */

/* セクションタイトル */
.section-title {
  font-weight: 700;
  font-style: normal;
  color: #AC012D;
  font-size: 30px;
  margin-bottom: 32px;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  border-top: 1px solid #AC012D;
}

.section-title-left {
  text-align: left;
}

.section-title-left::after {
  margin-top: 10px;
}

.section-title-center {
  text-align: center;
}

.section-title-center::after {
  margin: 10px auto 0;
}

/* ボタン */
.btn-animation {
    position: relative;
    overflow: hidden;
    color: #111111;
    background: #FFFFFF;
    cursor: pointer;
    z-index: 0;
    display: inline-block;
    border: 1px solid #111111;
    width: 200px;
}

.btn-animation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #111111;
    transition: width 0.3s ease;
    z-index: -1;
}

@media (hover:hover) and (pointer: fine) {
  .btn-animation:hover {
      color: #FFFFFF;
      opacity: 1;
  }

  .btn-animation:hover::before {
      width: 100%;
  }
}

.btn-animation a:hover {
    opacity: 1;
}

/* ライン付きリスト */
.list-line .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  line-height: 24px;
  justify-content: space-between;
}

.list-line .label {
  width: 100%;
  display: flex;
}

.list-line .label::after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #333333;
  flex-shrink: 9999;
  margin: 12px 2px 10px 14px;
}

.list-line .value {
  width: 65%;
  line-height: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 1005px) {
  .list-line .value {
    width: 50%;
  }
}

/* ラインなしリスト */
.list-noline .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  line-height: 24px;
  justify-content: space-between;
}

.list-noline .label {
  width: 100%;
  display: flex;
}

.list-noline .value {
  line-height: 20px;
  flex-shrink: 0;
}

/* ---- NEWS ---- */
#latest-news a {
  opacity: 1;
}

/* ---- PROFILE ---- */

/* プロフィール枠 */
.profile-frame {
  position: relative;
  border: solid 1px #4A4A4A;
  justify-content: space-between;
  padding: 30px;
}

.profile-frame::before {
  content: "";
  position: absolute;
  overflow: visible;
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
  border: solid 1px #4A4A4A;
  pointer-events: none;
}

/* メイン */
.main-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  padding: 0 60px;
}

.profile-image {
  width: 480px;
  height: auto;
  max-width: 480px;
  justify-content: center;
  transform: scale(1.1) translate(-30px, 0px);
}

@media screen and (max-width: 1005px) {
  .main-profile {
    flex-direction: column;
    padding: 50px 24px;
    align-items: stretch;
    justify-content: center;
  }

  .profile-image {
    width: 100%;
    margin: -80px auto 0 auto;
    transform: scale(1.0) translate(0px, 0px);
  }
}

@media screen and (max-width: 640px) {
  .profile-image {
      position: relative;
      left: 50%;
      transform: translateX(-50%);
  }
}

.profile-image-list {
  width: 100%;
}

.profile-image-item {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.profile-image-item img {
  width: 100%;
  height: auto;
  display: block;
}

.main-profile .slick-arrow {
  bottom: 0;
  cursor: pointer;
  margin: 2px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #333;
  font-size: 20px;
  outline: none;
}

.main-profile .slick-arrow:hover {
  opacity: 0.5;
}

.main-profile .slick-prev-icon {
  left: 0;
  z-index: 2;
}

.main-profile .slick-next-icon {
  left: 90%;
  z-index: 2;
}

.main-profile .profile-sentence {
  max-width: 100%;
  flex-grow: 1.5;
}

.profile-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.profile-name-main {
  font-weight: 700;
  font-size: 56px;
  line-height: 57px;
  letter-spacing: 0.13em;
  margin-right: 18px;
  white-space: nowrap;
}

@media screen and (max-width: 900px) {
  .profile-name-main {
    font-size: 48px;
  }
}

.profile-name-sub {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-top: 6px;
  white-space: nowrap;
}

.profile-introduction {
  margin-bottom: 40px;
  line-height: 1.8em;
}

.profile-barline {
  content: "";
  margin: 10px auto 0;
  border-top: 2px solid #111111;
  margin-bottom: 40px;
}

@media screen and (max-width: 1005px) {
  .profile-barline {
    margin-bottom: 24px;
  }
}

.profile-details {
  padding: 20px 0;
}

.profile-voice {
  display: flex;
  border: 1px solid #111111;
  padding: 12px;
}

.voice-title {
  padding-right: 24px;
}

.voice-btn {
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.speaker-icon {
  max-width: 20px;
  margin: 0 6px;
}

.profile-linkicons {
  display: flex;
  margin-top: 16px;
}

.profile-linkicons img {
  width: 40px;
  margin: 0 16px 0 0;
}

/* メイン以外のプロフィール項目 */
.profile-content-grid2row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .profile-content-grid2row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.profile-content-title {
  font-size: 30px;
  line-height: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.profile-content-title {
  text-align: left;
}

.profile-links-sentence {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

@media (min-width: 768px) {
  .profile-links-sentence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.profile-links-col {
  line-height: 2.0;
}

.profile-links-category {
  font-size: 18px;
}

.profile-links-category::before {
  content: "\f04b";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: relative;
  padding-right: 18px;
  font-size: 6px;
  vertical-align: middle;
}

.profile-linkitem {
  margin-left: 24px;
}

/* ---- MUSIC ---- */
.video-slider {
    position: relative;
    overflow: hidden;
}

.video-slider .slick-slide {
  margin:0 10px;
  width: 424px;
  height: 236px;
  display: flex;
  overflow: hidden;
  align-items: center;
}

.video-thumbnail-top img {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
}

/* ---- ページネーション ---- */
.custom-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.custom-pagination a,
.custom-pagination span {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.custom-pagination a:hover {
  background-color: #eee;
}

.custom-pagination .current-page {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* ---- NEWS 個別ページ ---- */
.newspage-barline {
  content: "";
  margin: 12px auto;
  border-top: 1px solid #111;
}
