/*
Theme Name:new-ringo
Description:2026Renew
Version:1.0
Author:blank
*/



/* FONT */
html {font-size: 62.5%;}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #111;
  letter-spacing: 0.02em;
}
.biz-udmincho-regular {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  font-style: normal;
}


/* 見出し */
h1, h2, h3, h4 {
  font-weight: 200;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.6rem;letter-spacing:0.35em; }
h3 { font-size: 1.8rem; }

p  { font-size: 1.5rem; } /* 15px */
small {font-size: 1.2rem;color: #777;}

/* 段落 */
p {
  margin-bottom: 1.2em;
}

li{margin:0 0 20px 0}
a {color:#111;text-decoration:none;}
a:hover {text-decoration:underline;}

/* カラー設定 */
.backcolor-gray1{background-color:#f7f7f7;}



img{
width:100%;
height:auto;
display:block;
margin:0 auto;
}

body{
font-family:sans-serif;
line-height:1.6;
}

/* =========================
   ヘッダー
========================= */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 1002;
  border-bottom: 1px solid #eee;
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
}
.logo{
  font-weight: bold;
}
/* ハンバーガー */
#menu-btn{
  display: none;
}
.menu-icon{
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: block;
  z-index: 1003;
}
.menu-icon span{
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  transition: 0.3s;
}
.menu-icon span:nth-child(1){ top: 0; }
.menu-icon span:nth-child(2){ top: 9px; }
.menu-icon span:nth-child(3){ bottom: 0; }
/* チェック時：×に変形 */
#menu-btn:checked + .menu-icon span:nth-child(1){
  top: 9px;
  transform: rotate(45deg);
}
#menu-btn:checked + .menu-icon span:nth-child(2){
  opacity: 0;
}
#menu-btn:checked + .menu-icon span:nth-child(3){
  bottom: 9px;
  transform: rotate(-45deg);
}
/* ナビ */
nav{
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
	text-align:center;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1001;
}
#menu-btn:checked + .menu-icon + nav{
  max-height: 100vh;
}
nav ul{list-style: none;}
nav li{border-bottom: 1px solid #eee;}
nav a{
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #000;
}
nav a:hover{background-color:#ec263f;color:#fff;}
/* オーバーレイ */
.menu-overlay{
  position: fixed;
  top: 60px; /* ヘッダーの下から */
  left: 0;
  width: 100%;
  height: calc(100vh - 60px); /* ヘッダー分を除く */
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* メニュー開いたら表示 */
#menu-btn:checked ~ .menu-overlay{
  opacity: 1;
  visibility: visible;
}



/* =========================
   サブナビ（小リンク）
========================= */
.menu-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 8px 14px;
  padding: 16px;
}
.menu-subnav a {
  font-size: 1.2rem;
  color: #666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.menu-subnav a:hover {
  color: #fff;
}



/* =========================
   固定ヘッダー基本
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: opacity .4s ease, transform .4s ease, visibility .4s ease;
}
/* トップページだけ最初は隠す */
.home .site-header {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
}
/* FVを過ぎたら表示 */
.home .site-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* それ以外のページは常に表示 */
body:not(.home) .site-header {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}




/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 40px 20px 30px;
  background: #f7f7f7;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* ナビ */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1px 18px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}
.footer-nav li {
  font-size: 1.2rem;
}
.footer-nav a {
  color: #666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-nav a:hover {
  color: #000;
}

/* コピー */
.footer-copy {
  margin: 0;
  font-size: 1.1rem;
  color: #999;
}

/* スマホ */
@media (max-width: 767px) {
  .site-footer {
    padding: 30px 16px 20px;
  }

  .footer-nav {
    gap: 1px 14px;
  }

  .footer-nav li {
    font-size: 1.1rem;
  }
}


/* セクション */

section{
padding:60px 20px;
}

/* =========================
   FV 全体
========================= */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/*
.fv-logo{
	position:absolute;
	width:100%;
}
.fv-logo img{
	display:block;
	margin:0 auto;
	height:180px;
}*/

/* =========================
   各メンバーの位置決め
   全員いったん画面中央基準
========================= */
.fv-item {
  position: absolute;
  left: 50%;
  top: 25vh;
  transform: translateX(-50%);
  opacity: 0;
  animation: fvMemberFade 0.9s ease forwards;
}

/* =========================
   トリミング枠
========================= */
.fv-crop {
  position: relative;
  overflow: hidden;
}

/* =========================
   画像本体
========================= */
.fv-crop img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

/* =====================================================
   個別調整
   -----------------------------------------------------
   width  : 見た目の横幅
   height : 見せる範囲の高さ（トリミング枠）
   margin-left : 中央から左右にずらす
   img width : 元画像の表示サイズ
   img margin-top : 上下位置調整（顔位置合わせ）
===================================================== */

/* KING */
.fv-item.king {
  z-index: 4;
  margin-left: -32vw; /* ← 左右位置調整 */
  animation-delay: 0.2s;
}
.fv-item.king .fv-crop {
  width: 40vw;
  /*max-width: 320px;*/
  min-width: 400px;
  /*height: 68vh; */
  max-height: 780px;
}
.fv-item.king .fv-crop img {
  width: 100%;
  margin-top: 0; /* ← 顔位置調整 */
}

/* KINSEI */
.fv-item.kinsei {
  z-index: 1;
  margin-left: -11vw;
  animation-delay: 0.6s;
}
.fv-item.kinsei .fv-crop {
  width: 40vw;
  /*max-width: 320px;*/
  min-width: 400px;
  /*height: 70vh;*/
  max-height: 780px;
}
.fv-item.kinsei .fv-crop img {
  width: 100%;
  margin-top: -1vh;
}

/* GRIN */
.fv-item.grin {
  z-index: 2;
  margin-left: 11vw;
  animation-delay: 1.0s;
}
.fv-item.grin .fv-crop {
  width: 40vw;
  /*max-width: 320px;*/
  min-width: 400px;
  /*height: 69vh;*/
  max-height: 780px;
}
.fv-item.grin .fv-crop img {
  width: 100%;
  margin-top: -2vh;
}

/* PINK */
.fv-item.pink {
  z-index: 3;
  margin-left: 30vw;
  animation-delay: 1.4s;
}
.fv-item.pink .fv-crop {
  width: 40vw;
  /*max-width: 320px;*/
  min-width: 400px;
  /*height: 67vh;*/
  max-height: 780px;
}
.fv-item.pink .fv-crop img {
  width: 100%;
  margin-top: -1vh;
}
@media (max-width: 767px) {
	.fv-item.king, .fv-item.kinsei, .fv-item.grin, .fv-item.pink{
		min-width:130px;
		max-height:600px;
	}
	.fv-item.pink{margin-left:20vw}
	.fv-item.king .fv-crop img,
	.fv-item.pink .fv-crop img{
		margin-top: 10vh; /* ← 顔位置調整 */
	}
	.fv-item.king{margin-left:-22vw}
	.fv-item.kinsei{margin-left:-23vw}
	.fv-item.pink{margin-left:20vw}

}

/* ロゴ */
.fv-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fvLogoFade 1.0s ease forwards;
  animation-delay: 2.2s;
}

.fv-logo {
  width: min(70vw, 700px);
  height: auto;
  display: block;
}
@media (max-width: 430px) {
	.fv-logo-wrap{
		position:relative;
		width:80%;
	}
}
@media (max-height:500px){
	.fv-logo-wrap{margin-top:-70px}
}

/* メンバー表示アニメーション */
@keyframes fvMemberFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ロゴ表示アニメーション */
@keyframes fvLogoFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}




/* コンテンツ幅 */

.container{
max-width:1000px;
margin:auto;
}



/* --------------- */
/* バナー */
/* --------------- */

/* バナーセクション */

.banner-area{width:100%;max-width:1000px;margin:0 auto;border-radius:0;}
.banner-area-sub{width:100%;display:flex;}
.banner-area img{margin-bottom:6px;}
@media (max-width: 768px) {
	.banner-area-sub{display:block;}
}



/* --------------- */
/* トップページ */
/* --------------- */
.top-h2{margin-bottom:30px;}

/* プロフィール=============== */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* メンバーカード */
.member {
  min-width: 0;
  text-align: center;
  height: 300px;
  transition: 0.3s;
}

.member:hover {
  transform: translateY(-5px);
}

.member img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.member h3 {
  margin-top: 10px;
  font-size: 1.6rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.member p {
  font-size: 1.4rem;
  color: #555;
}

/* SP対応 */
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --------------- */
/* メンバーページ */
.member-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.member-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.member-main-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.member-name {
  font-size: 2.75rem;
	font-weight:bold;
  line-height: 1.2;
}

.member-copy {
  margin: 0;
  font-size: 1.4rem;
  color: #555;
}

.member-profile {
  font-size: 1.6rem;
  line-height: 2;
}

.member-profile p {
  margin-bottom: 0.5em;
}

@media (max-width: 767px) {
  .member-page {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .member-page-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .member-name {
    font-size: 2.25rem;
  }

  .member-copy {
    font-size: 1.6rem;
  }
}
/* 個別情報 */
.member-profile h3{border-top:solid 1px #d9d9d9;padding:1rem 0;font-size:1.6rem;margin:0;}
.member-profile p{line-height:110%;padding:1rem;}
/* 顔リンク */
.member-face-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content:flex-end;
	margin-top:40px;
}
.member-face {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  border: 1px solid #ddd;
  background: #f5f5f5;
}
.member-face img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;   /* 顔を大きく見せるため、枠より大きく */
  height: auto;
  max-width: none;
}
/* 個別調整 */
.member-face.king img {
  transform: translate(-30px, 0) scale(1.15);
}
.member-face.kinsei img {
  transform: translate(-25px, 9px) scale(1.15);
}
.member-face.grin img {
  transform: translate(-40px, 5px) scale(1.15);
}
.member-face.pink img {
  transform: translate(-33px, 5px) scale(1.15);
}

/* ホバー */
.member-face:hover {
  transform: scale(1.06);
  transition: 0.2s;
}

/* =========================
   MOVIE
========================= */
.movie-page {
  padding-top: 80px;
  padding-bottom: 80px;
}
.movie-header {
  margin-bottom: 30px;
}
.movie-title {
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.movie-card {
  display: block;
  color: #111;
  text-decoration: none;
}
.movie-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 12px;
  background: #eee;
}
.movie-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}
.movie-card:hover .movie-thumb img {
  transform: scale(1.04);
}
.movie-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 2rem;
  line-height: 56px;
  text-align: center;
  pointer-events: none;
}
.movie-card-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .movie-page {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .movie-title {
    font-size: 2.8rem;
  }
  .movie-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .movie-card-title {
    font-size: 1.4rem;
  }
}

/* タイトル重ねる */
.movie-card-ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 12px;

  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4;

  /* 読みやすくするための黒グラデーション */
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.0)
  );
}

/* ===================
   INTRO（動画背景）
=================== */
.intro{
  position:relative;
  height:140svh;
  overflow:hidden;
  color:#fff;
}
/* 動画 */
.intro-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.intro-bg video{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* 暗いフィルター */
.intro-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:1;
}
/* テキスト */
.intro-inner{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  margin-top:20%;
  align-items:center;
  text-align:center;
}
/* タイトル */
.intro-title{}

.full-text{
  font-size:clamp(40px, 20vw, 160px);
  font-weight:700;
  line-height:1;
  letter-spacing:-0.02em;
}
/* 本文 */
.intro-text{
  font-size:clamp(17px,2vw,1.9vw);
  line-height:1.8;
  max-width:700px;
  margin-top:1rem;
}

/* フェードイン */
.intro-inner{
  opacity:0;
  transform:translateY(30px);
  animation:introFade 1.5s 0.5s forwards;
}
@keyframes introFade{
  to{
    opacity:1;
    transform:none;
  }
}

/* ===================
   CONCEPT
=================== */

.concept{
  background:#f9f9f9;
}

.concept-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.concept-item{
  text-align:center;
}

.concept-item h3{
  margin-bottom:10px;
  font-size:1.5rem;
  letter-spacing:0.1em;
}

.concept-item p{
  font-size:14px;
  line-height:1.8;
}
@media (max-width:768px){
  .concept-grid{
    grid-template-columns:1fr;
  }
  .member-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .movie-grid{
    grid-template-columns:1fr;
  }
}

/* --------------- */
/* パーツ */
/* --------------- */
/* もっと見る */
.view-more {text-align:right;}

/* SP改行 */
@media (min-width:768px){
	.pc_none{display:none;}
}

/* 外部リンクアイコン */
.ext-icon {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1px solid #666;
  position: relative;
}
.ext-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
}