@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono');
/* =========================
   Hero catch (背景色が流れるテキスト)
   ========================= */
#gf {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}
/* ===== 左上固定ロゴ ===== */
.site-logo {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 1000;
  display: block;
}
.site-logo img {
  height: 40px; /* サイズ調整 50px→40px*/
  width: auto;
  display: block;
  transition: 0.3s ease;
}
/* ホバー */
.site-logo:hover img {
  opacity: 0.8;
  transform: translateY(-2px);
}
/* ===== レスポンシブ ===== */
@media(max-width:768px) {
  .site-logo img {
    height: 36px;
  }
}
.bg-left, .bg-right { /*左右背景*/
  position: fixed;
  top: 0;
  width: 600px;
  height: 100%;
  background-repeat: repeat-y;
  background-size: contain;
  pointer-events: none;
  z-index: -1; /* 必ず背景を最背面に */
}
.bg-left { /* それぞれ背景画像を指定 */
  left: 0;
  background: url('../project/img/back_left.jpg') left top / contain repeat-y;
}
.bg-right { /* それぞれ背景画像を指定 */
  right: 0;
  background: url('../project/img/back_right.jpg') right top / contain repeat-y;
}
@media (max-width:768px) { /*スマホで左右画像を薄く表示*/
  .bg-left, .bg-right {
    opacity: 0.7; /* 薄くする */
    width: 120px; /* サイズ小さめ */
  }
}
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.bg .bg-wrap .inn {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 5px 15px;
  /* 画像上で読みやすく */
  text-shadow: 0 4px 12px rgba(0, 0, 0, .35);
}
.bg.is-animated .bg-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left center;
  background: linear-gradient(to right, #1198A7 0%, #009C84 50%, #F1985E 100%);
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    opacity: 1;
    transform: scaleX(1) translateX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) translateX(0);
  }
}
/* =========================
   Hero layout (トップ画像に重ねる)
   ※ 今のHTML構造（.media / h1 img / .hero-catch）に合わせる
   ========================= */
.media.mt-0 {
  position: relative;
}
.hero-catch {
  position: absolute;
  left: 8%; /* ロゴで左余白 */
  bottom: 10%;
  z-index: 5;
}
/* ロゴ（rogo.png） */
.hero-rogo {
  position: absolute;
  left: 0%; /* 帯で左余白 */
  top: 4%;
  width: clamp(220px, 40vw, 800px); /* 画面幅で自然に伸縮 */
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 768px) {
  .hero-rogo {
    left: 4%;
    top: 0%;
    width: 80vw; /* Boost!ロゴ横幅 */
  }
}
.hero-rogo img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-rogo.is-show {
  animation: rogoFadeIn .9s cubic-bezier(.22, 1, .36, 1) forwards;
}
@keyframes rogoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 769px) {
  .hero-rogo.hero-rogo-right {
    left: auto;
    right: 0;
  }
}
/* =========================
   OTHER INTERVIEW (4列PC / 2列SP)
   ========================= */
.other {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 20px;
}
.other-title {
  font-size: 56px;
  line-height: 1;
  margin: 0 0 8px;
}
.other-sub {
  margin: 0 0 28px;
  font-weight: 700;
}
.other-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
/* card */
.other-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.other-media {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 7;
  background: #eee;
}
.other-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .55s ease;
}
.other-card:hover .other-media img, .other-card:focus-visible .other-media img {
  transform: scale(1.08);
}
/* overlay */
.other-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(2px);
  transform: translateY(0);
  transition: transform .35s ease;
}
.other-card:hover .other-overlay, .other-card:focus-visible .other-overlay {
  transform: translateY(-2px);
}
.other-no {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #F1985E;
  margin-bottom: 6px;
}
.other-role {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  opacity: .9;
  margin-bottom: 8px;
}
.other-name {
  display: block;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 4px;
}
.other-en { /*ローマ字*/
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .75;
}
.other-card:focus-visible {
  outline: 3px solid rgba(230, 106, 0, .35);
  outline-offset: 6px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .other-media {
    aspect-ratio: 3 / 5;
  }
  .other-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 10px 10px;
    border-radius: 14px;
    max-height: 48%;
    overflow: hidden;
  }
  .other-no {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .other-role {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .other-name {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .other-en {
    font-size: 10px;
  }
  .other-role {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
/* =========================
   Qデザイン
   ========================= */
.qa {
  position: relative;
  padding-left: 60px;
  line-height: 1.8;
}
.qa::before {
  content: "Q";
  position: absolute;
  left: -10px;
  top: -20px;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(241, 152, 94, .50);
  z-index: 0;
}
.marker2 {
  display: inline;
  padding: 0 .2em;
  background: linear-gradient(transparent 60%, rgba(241, 152, 94, .50) 60%);
  background-repeat: no-repeat;
  background-size: 102% 100%;
  background-position: -2px 0;
}
/* =========================
   Scroll reveal
   ========================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
  /* hero */
  .hero-catch {
    left: 5%;
    bottom: 8%;
  }
  .bg .bg-wrap .inn {
    font-size: 2.0rem;
    padding: 4px 10px;
  }
  /* member */
  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .member-title {
    font-size: 36px;
  }
  .member-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 12px 10px;
  }
  .member-name {
    font-size: 18px;
  }
  /* Q */
  .qa {
    padding-left: 42px;
  }
  .qa::before {
    font-size: 48px;
    left: -12px;
    top: -4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up.is-show {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .hero-rogo {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .bg.is-animated .bg-wrap::before {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* ===== プロフィール ===== */
.profile-summary {
  /* background: #fff;*/
  background: linear-gradient(to right, #1198A7 0%, #009C84 50%, #F1985E 100%);
  padding: 0px 40px 0px;
  /*border-bottom: 1px solid #eee;*/
}
.profile-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
/* ===== 名前 ===== */
.profile-name {
  margin: 0;
  display: flex;
  align-items: baseline;
  font-size: 34px;
  font-weight: 800;
  /*color: #009C84;*/
  color: #fff;
  letter-spacing: .02em;
  line-height: 1.2;
}
/* ローマ字（少し軽く・少し小さく） */
.profile-name-en {
  font-weight: 500;
  font-size: 0.92em;
  opacity: .85;
}
/* 区切り */
.profile-sep {
  margin: 0 .5em;
  font-weight: 400;
  opacity: .6;
}
/* 日本語名（主役） */
.profile-name-jp {
  font-weight: 800;
}
/* ===== 右側情報 ===== */
.profile-meta {
  display: flex;
  gap: 56px;
  font-size: 20px;
  font-weight: 700;
  /*color: #111;*/
  color: #fff;
  justify-content: space-between;
}
.profile-meta-item {
  white-space: nowrap;
}
/* ===== SP ===== */
@media (max-width: 768px) {
  .profile-name-en {
    font-size: 0.6em;
  }
  .profile-sep {
    display: none;
  }
  .profile-summary {
    padding: 10px 16px;
  }
  .profile-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .profile-name {
    font-size: 40px;
    flex-wrap: wrap;
  }
  .profile-meta {
    flex-direction: column;
    gap: 0px;
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.profile-career {
  width: 1000px;
}
.profile-career dl {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 30px;
}
.profile-career dt {
  font-style: normal;
  line-height: 1.2em;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  background-image: url(xxx.gif);
  background-repeat: no-repeat;
  background-position: 0% 0%;
  width: 20%;
}
.profile-career dd {
  position: relative;
  top: -1.2em;
  left: 16em;
  border-width: 0px;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  line-height: 100%;
  z-index: 1;
  width: 80%;
  line-height: 1.2em;
}
.profile-career p {
  margin: 0 0 4px 0;
  padding: 0;
}
.career_box {
  padding: 1em 2.5em;
  margin: 2em 0;
  background: -webkit-repeating-linear-gradient(-45deg, #F0F8F9, #F0F8F9 3px, #FAFCFD 3px, #FAFCFD 6px); /*ストライプ*/
  background: repeating-linear-gradient(-45deg, #F0F8F9, #F0F8F9 3px, #FAFCFD 3px, #FAFCFD 6px); /*ストライプ*/
  color: #000000; /*文字色*/
}
.career_box p {
  margin: 0;
  padding: 0;
}
.career_box dl dt {
  color: #009C84;
}
.career_box2 {
  position: relative;
  padding: 1em 1.5em;
  margin: 2em 0;
  background: #fff;
  border: solid 3px #009C84; /*線*/
  border-radius: 8px; /*角の丸み*/
  color: #000000; /*文字色*/
}
.career_box2 .career_box2_title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 25px;
  padding: 0 10px;
  line-height: 1;
  font-size: 1.6em; /*タイトル文字サイズ*/
  background: #ffffff; /*タイトル文字背景色*/
  color: #009C84; /*タイトル文字色*/
  font-weight: bold;
}
.career_box2 dl {
  margin: 0;
  padding: 15px 15px 0px;
}
.career_box2 dl dt, dd {
  font-size: 1.2em;
}
.career_box2 dl dt {
  color: #009C84; /*タイトル文字色*/
}
.career_box2 p {
  margin: 0;
  padding: 15px 15px 0px;
  font-size: 2.0em;
}
.profile {
  font-size: 0.8em;
}
.profile-uekake {
  text-align: center;
  margin-top: 110px;
  padding-left: 110px;
}
.profile-kato {
  text-align: center;
  margin-top: 110px;
  padding-left: 100px;
}
.profile-hiramatsu {
  text-align: center;
  margin-top: 110px;
  padding-left: 80px;
}
.profile-kobayashi {
  text-align: center;
  margin-top: 110px;
  padding-left: 45px;
}
.profile-takahashi {
  text-align: center;
  margin-top: 110px;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .profile-sp {
    padding: 20px;
	  font-size: 1.3em;
	  font-weight: bold;
  }
}
.color-g{
	color: #009C84;
}