@charset "UTF-8";

/* --- ベースリセット & 共通スタイル --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden; /* ★追加：横方向のはみ出しを強制的にカットする */
  width: 100%; /* ★追加：画面幅にぴったり合わせる */
margin: 0;
  padding: 0;
  line-height: 0; /* 隙間の原因になる行間をリセット */
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background-color: #fafafa;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}

/* ==================================================
   オープニングアニメーション画面
================================================== */
#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#opening.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 背景画像 */
.op-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/opening_bg.jpg') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

/* 下から現れる画像 */
.op-image-u {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 500px;
  max-height: 50vh;
  object-fit: contain;
  z-index: 2;
  animation: slideUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.2s;
}

/* 中央の文字（縦書き完全1行） */
.op-text-wrap {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 2em; /* 2文字分下げる */
  z-index: 3;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3em;
}

.op-text {
  font-size: min(2.4rem, 4.5vh);
  color: #1a66b3;
  white-space: nowrap;
  word-break: keep-all; 
  line-height: 1;
  overflow: hidden;
  max-height: 0;
  animation: typewriter 1.0s steps(15) forwards;
  animation-delay: 0.6s;
}

.op-text-sub {
  font-size: min(1.2rem, 2.5vh);
  display: inline-block; /* ★追加：余白調整を有効にする */
  margin-top: 0.5em; /* ★変更：マイナスの数値で上に引き上げる（もっと近づけるなら -0.8em などに） */
}

/* アニメーションキーフレーム */
@keyframes slideUp {
  0% {
    transform: translateX(-50%) translateY(100%);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes typewriter {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 100vh;
  }
}


/* ==================================================
   メインコンテンツ（TOP以降）
================================================== */

/* --- メインビジュアル（TOPセクション） --- */
.top-section {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面いっぱいに表示 */
  overflow: hidden;
}

/* 背景動画 */
.top-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画面を覆い尽くすように配置 */
}

/* 画面端の帯画像 */
.top-side-bar {
  position: absolute;
  top: 0;
  left: 0; /* 左にぴったり寄せる */
  height: 100%; /* 縦幅を画面の高さに合わせる */
  z-index: 2;
  display: flex;
}

.top-side-image {
  height: 100%; /* どの端末でも縦幅が途切れないように100%で表示 */
  width: auto; /* 縦の長さに合わせて横幅を自動調整（比率キープ） */
  object-fit: contain;
}

/* ==================================================
   メニューボタン & メニュー画面
================================================== */
/* メニューボタン（右上に固定） */
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 90px; /* アイコンの大きさに合わせて調整してください */
  cursor: pointer;
  z-index: 998;
  transition: transform 0.3s ease;
}
.menu-btn:hover {
  transform: scale(1.05);
}
.menu-btn img {
  width: 100%;
  height: auto;
}

/* メニューオーバーレイ（背景と全体） */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('images/bg_menu.jpg') repeat center center;
  background-size: 300px;
  z-index: 1000;
  
  /* ★追加：これで縦方向も中央寄せになります */
  display: flex;
  justify-content: center; 
  align-items: center;     
  
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  opacity: 0;
  visibility: hidden;
  transition: clip-path 0.8s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.5s ease;
	transition: clip-path 0.8s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.5s ease, visibility 0.5s;
}

.menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* メニューコンテナの中央配置（全体を約80%に縮小） */
.menu-inner {
  width: 90%;
  max-width: 300px;
  /* ★margin: auto; を削除、または margin: 0; に変更して親のflex設定に任せます */
  margin: 0; 
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* アンテナ（星マーク） */
.menu-antennas {
  display: flex;
  justify-content: center;
  gap: 40px; /* ★少し狭く */
  margin-bottom: -15px;
  position: relative;
  z-index: 1;
}
.antenna {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(48px, 6vh); /* ★小さく */
  height: min(48px, 6vh); /* ★小さく */
  background-color: #ed4c8b;
  color: #fff;
  font-size: min(1.5rem, 3vh); /* ★小さく */
  border-radius: 50%;
}

/* ナビゲーションブロック */
.menu-nav {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.menu-item {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: min(20px, 2.5vh) 0; 
  text-align: center;
  line-height: 1.2;
  position: relative; /* ★追加：重なり順を制御できるようにする */
  z-index: 2; /* ★追加：キャラクターより「手前」に配置して挟む */
}
.menu-item .en {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: min(1.9rem, 6.5vw); /* ★小さく */
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  white-space: nowrap;
}
.menu-item .ja {
  display: block;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: min(0.75rem, 2.5vw); /* ★小さく */
  letter-spacing: 0.15em;
  white-space: nowrap;
}

/* 各ブロックの色指定 */
.bg-darkblue { background-color: #004899; }
.bg-pink { background-color: #ed4c8b; }
.bg-green { background-color: #1d9c94; }
.bg-lightblue {
  background-color: #99d2f2;
  color: #004899;
}
.bg-lightblue .en, .bg-lightblue .ja {
  color: #004899;
}

/* 角丸の処理 */
.rounded-top { border-radius: 40px 40px 0 0; }
.rounded-bottom { border-radius: 0 0 40px 40px; }

/* 間に挟まるキャラクター画像 */
.menu-character {
  position: relative;
  height: 40px; /* 上下のメニューブロックの間に作る隙間 */
  z-index: 1; /* メニュー項目の「裏」に配置 */
}
 
.menu-character img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px; /* ★ここで画像の大きさを調整（倍のサイズにしています） */
  height: auto;
  /* ★上下の位置調整（-30% の数値を -10% などに変えると下に下がります） */
  transform: translate(-50%, -30%);
}

/* 閉じるボタン（右上に配置） */
.menu-close {
  position: absolute; /* ★画面の右上に固定 */
  top: 20px;
  right: 20px;
  width: 60px; /* ★丸ボタンの幅 */
  height: 60px; /* ★丸ボタンの高さ */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Mochiy Pop One", sans-serif;
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%; /* ★きれいな丸に */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  z-index: 1001; /* メニューより上に */
}
.menu-close:hover {
  transform: scale(1.05);
}

/* ==================================================
   導入セクション
================================================== */
.intro-section {
  background-color: #cfe9ff;
  position: relative; 
  z-index: 1; /* ★下敷きにする */
  padding-bottom: 50px; /* テキスト下の余白を確保 */
}

/* ★追加：上部のアーチ画像 */
.intro-top-img {
  width: 100%;
  height: auto;
  display: block; /* 画像下の不要な隙間を消す */
}

.intro-inner {
  padding: 0 20px 100px;
  margin-top: -40px; 
  text-align: center;
  position: relative; 
  z-index: 2;
}

/* キャッチコピー */
.intro-catch {
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  color: #004899;
  font-size: min(2rem, 6vw);
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

.catch-text {
  position: relative;
  display: inline-block;
  padding: 0 5px;
  z-index: 1;
}

.catch-text::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #fff;
  z-index: -1;
}

/* テキストブロック */
.intro-desc {
  color: #004899;
  font-weight: bold;
  line-height: 2;
  text-align: left;
  display: block;
  max-width: 600px;
  margin: 0 auto 50px auto; 
  padding: 0 30px; 
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 1s ease, transform 1.5s ease;
}

.center-text {
  text-align: left;
}

.intro-logo {
  margin-bottom: 50px;
}
.intro-logo img {
  width: 200px;
  height: auto;
}

.intro-desc.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   HISTORYセクション
================================================== */
.history-section {
  position: relative;
  z-index: 2; /* 導入セクションより手前に被せる */
  width: 100%;
  line-height: 0;
  font-size: 0;
  margin-top: -50px; /* ここで上の水色エリアに食い込ませて隙間を消す！ */
}

.history-bg {
  display: block;
  width: 100%;
  margin: 0;
  vertical-align: top;
}

/* アート画像の配置 */
.art-img {
  position: absolute;
  z-index: 10;
}
.art1 {
  width: 40%; /* ★30%から40%へ少し大きく！ */
  top: -7%;   /* ★マイナスの値で上の境目に被さるように配置！ */
  right: 5%;
  /* ★ゆらゆら揺れるアニメーションを追加 (4秒周期、無限に繰り返す) */
  animation: art-swing 4s ease-in-out infinite;
}
.art2 {
  width: 40%;
  top: 10%;   /* ★2%から10%に増やして、少し下げました！ */
  left: 5%;
  /* ★ひょこひょこ動くアニメーションを追加 (2秒周期、無限に繰り返す) */
  animation: cat-jump 2s ease-in-out infinite;
}

.art3 {
  width: 80%;  /* サイズはお好みで調整してください */
  bottom: -5%;  /* ★下から5%の高さに配置（少し上） */
  left: 0;     /* 左端ぴったり */
}

/* ==================================================
   A.P WORKS セクション
================================================== */
.works-section {
  background-image: url('images/bg3.jpg'); 
  background-size: 100% auto; /* ★横幅を画面いっぱいに設定 */
  background-repeat: repeat-y; /* ★縦方向にのみ繰り返す */
  padding: 60px 20px;
  text-align: center;
}

.works-title {
  color: #fff;
  margin-bottom: 40px;
}
.works-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.works-main-title {
  font-family: "Times New Roman", serif;
  font-size: 2.8rem; /* ★ 2remから2.8remに変更（お好みで調整） */
  letter-spacing: 0.1em;
}

/* クリーム色のコンテナ（右上だけ大きく角丸） */
.works-container {
  background-color: #fcfcf0;
  border-radius: 0 80px 0 0;
  padding: 50px 20px;
  width: 85%; /* ★追加：画面に対して85%の幅にして、必ず左右に余白を作る */
  max-width: 600px; /* ★650pxから600pxへ少し狭く */
  margin: 0 auto;
  text-align: left;
}

.work-block {
  margin-bottom: 60px;
}

.work-heading {
  color: #1d9c94;
  font-size: 3rem; /* ★ 2remから3remに大きくしました！ */
  border-bottom: 3px solid #1d9c94;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
	
	opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.work-heading.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.work-text {
  font-size: 0.8rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 20px;
	width: 70%;
}

.work-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.work-images img {
  width: 32%;
  /* height: auto; を削除して、下の2行を追加します */
  aspect-ratio: 3 / 4; /* ★縦横比を固定（この場合は縦長） */
  object-fit: cover;   /* ★画像を歪ませず、枠に合わせて綺麗に切り取る */
  border-radius: 5px;
}

.work-images-wrap {
  overflow: hidden;
  width: 100vw; /* 画面全体の幅にする */
  margin-left: calc(50% - 50vw); /* 白い箱を飛び出して、画面の左端にピタッと合わせる魔法のコード！ */
  margin-bottom: 20px;
}

/* アニメーションで動く中身 */
.work-images-loop {
  display: flex;
  width: max-content; /* 画像の数に合わせて横に広げる */
  animation: loop-slide 15s linear infinite; /* ★15秒かけて一定の速度でループ */
}

/* 各画像のスタイル */
.work-images-loop img {
  width: 150px; /* ★画像の横幅（プレビューを見て調整してください） */
  margin-right: 20px; /* 画像と画像の隙間 */
  aspect-ratio: 3 / 4; /* 縦幅を統一 */
  object-fit: cover;
  border-radius: 5px;
}

/* ★アニメーションの動き（半分進んだら一瞬で0に戻る） */
@keyframes loop-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

.work-label {
  text-align: right;
  color: #1d9c94;
  font-weight: bold;
  font-family: "Times New Roman", serif;
}

/* 「つくる」の画像用アレンジ（枠のサイズは統一しつつ、全体を表示） */
.craft-loop {
  align-items: center; 
}
.craft-loop img {
  aspect-ratio: 3 / 4; /* ★枠の大きさを「描く」と統一します */
  object-fit: contain; /* ★画像を切り取らずに、枠の中にすべて収める魔法のコード！ */
}

/* ==================================================
   INFO セクション
================================================== */
.info-section {
  background-image: url('images/bg3.jpg');
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding: 0; /* ★ 0 20px から 0 に変更 */
  color: #0a57a1;
}

.info-container {
  background-image: url('images/bg_footer.png');
  background-size: cover; /* ★画面の高さに合わせて必要なら拡大し、隙間なく覆う */
  background-repeat: no-repeat;
  background-position: bottom center; /* ★一番下を基準にピタッと合わせる */
  
  padding: 100px 20px 40px; /* 上のアーチの余白は文字が被らないように調整してね */
  width: 100vw; 
  margin-left: calc(50% - 50vw); 
  text-align: center;
}

.follow-title img {
  width: 250px; /* 画像サイズに合わせて調整してください */
  margin-bottom: 20px;
}

.sns-links {
  margin-bottom: 30px;
}
.sns-links img {
  width: 60px;
  margin: 0 10px;
}

.company-info {
  font-size: 0.85rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 40px;
  
  /* ★ここを追加：ブロック全体は中央にしつつ、文字は左揃えにする */
  display: inline-block;
  text-align: left;
}

/* スケジュール画像のデザイン */
.schedule-box {
  max-width: 400px; /* ★画像の最大サイズ（お好みで調整） */
  margin: 0 auto 40px;
  text-align: center;
}
.schedule-img {
  width: 100%;
  height: auto;
}

/* コピーライト */
.copyright {
  color: #004899;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 30px; /* ★ここを追加！もっと上げたい時は数字を大きくしてみてね */
}

/* style.css */
html {
  scroll-behavior: smooth; /* これだけでアンカーリンクがスムーズに動くようになります */
}

/* sns-linksの装飾をリセット */
.sns-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;       /* アイコン同士の隙間を調整 */
  margin-bottom: 30px;
}

.sns-links a {
  text-decoration: none; /* 下線を消す */
  border: none;          /* ボーダーを消す */
  display: block;
}

.sns-links img {
  display: block;        /* 余計な隙間を消す */
  border: none;          /* ボーダーを消す */
  width: 60px;
  margin: 0;             /* 左右の余計なマージンを消す */
}

/* ==================================================
   下層P
================================================== */

/* セクション設定（修正版） */
.concept-section {
  width: 100%;
  position: relative; /* 惑星の配置基準 */
  line-height: 0;     /* 余計な隙間を消す */
  font-size: 0;
  
  /* ↓ 削除しました ↓
  background-image: url('images/bg_b1.jpg');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  height: 100vh; 
  */
}

/* ★追加：背景画像のスタイル */
.concept-bg-img {
  width: 100vw;
  height: auto;
  display: block;
}

/* 惑星画像のアニメーション（サイズ2倍版） */
.concept-planet {
  position: absolute;
  top: 10%;        /* 上からの位置はそのまま */
  left: -300px;    /* 画像が大きくなったので、隠す距離も大きくする(元の幅150pxの倍の300px) */
  
  /* ★ここを修正：元のサイズ(150px)の倍の300pxにする */
  width: 230px;    
  height: auto;
  
  animation: slideInFromLeft 1.5s ease-out forwards;
}

@keyframes slideInFromLeft {
  from {
    left: -300px;  /* 画面外から開始 */
    opacity: 0;
  }
  to {
    left: 0;       /* 左端にぴったり配置 */
    opacity: 1;
  }
}

/* style.css の修正 */
.message-section {
  margin-top: -30px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  line-height: 0;
  font-size: 0;
  background-color: #fcffee;
  /* アニメーション用設定 */
  opacity: 0;
  /* 左上から右下へ対角線上に広がるマスク（最初は見えない） */
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  transition: opacity 0.5s ease, clip-path 2.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.message-section.is-visible {
  opacity: 1;
  /* 完全に画像が開いた状態 */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.message-section img {
  display: block;
  width: 100vw;
  height: auto;
  object-fit: contain;
}

/* 代表経歴セクション */
.yoshioka-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  line-height: 0;
  font-size: 0;
  background-color: #fcffee; /* 壁紙の色 */
  
  /* アニメーション設定 */
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  transition: opacity 0.5s ease, clip-path 2.5s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.yoshioka-section.is-visible {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.yoshioka-section img {
  display: block;
  width: 100vw;
  height: auto;
  object-fit: contain;
}

/* ==================================================
   アニメーション用キーフレーム
================================================== */

/* 猫の「ひょこひょこ」アニメーション */
@keyframes cat-jump {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); } /* 5pxだけ上に動く */
}

/* 花瓶の「ゆらゆら」アニメーション */
@keyframes art-swing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(4deg); }   /* 2度傾く */
  75% { transform: rotate(-4deg); }  /* -2度傾く */
}

/* ==================================================
   NEWS セクション (安全なレイアウト修正版)
================================================== */
.news-section {
  width: 100%;
  line-height: 0;
}

/* 背景の絵の具画像 */
.news-top-img {
  width: 100vw;
  height: auto;
  display: block;
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 10; /* ★アーチより手前に出す */
  pointer-events: none;
}

/* クリーム色のアーチ */
.news-container {
  background-color: #fcffee;
  border-radius: 50vw 50vw 0 0;
  
  /* ★修正1：スマホで見切れないよう、上の余白(padding)を広げる */
padding: 60px 30px 100px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  
  /* ★修正2：スマホでの食い込みを減らす（-120pxから-50pxへ） */
  margin-top: -50px; 
  position: relative;
  
  /* ★修正3：z-index: 5; を完全に削除（これで文字が手前に出ます！） */
  
  line-height: 1.8;
  font-size: 1rem;
}

/* タイトル */
.news-title {
  font-family: "Times New Roman", serif;
  color: #ed4c8b;
  font-size: min(3rem, 12vw);
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
  position: relative;
  z-index: 20; /* ★画像より手前に出す */
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.news-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -10%;
  width: 120%;
  height: 1px;
  background-color: #ed4c8b;
}

/* お知らせリスト全体 */
.news-list-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 15%;
  position: relative;
  z-index: 20; /* ★画像より手前に出す */
}

/* 日付をブルーに変更 */
.news-date {
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
  color: #004899; 
}

/* 各お知らせ項目（横線） */
.news-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  padding-bottom: 20px; 
  margin-bottom: 20px;  
  border-bottom: 1px solid #ccc; 
  transition: opacity 0.2s;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* ==================================================
   レスポンシブ対応（タブレット向け）
================================================== */
@media (max-width: 768px) {
  .intro-inner {
    padding: 0 20px 60px;
  }
  .header-inner {
    flex-direction: column;
    gap: 10px;
  }
  .features-grid {
    flex-direction: column;
  }
  .video-circle {
    width: 150px;
    height: 150px;
  }
}

/* ==================================================
   PC表示でのスマホ幅制限ベース設定
================================================== */
.site-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  background-color: #fafafa;
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

body {
  background-color: #e0e0e0;
  margin: 0;
}

/* ==================================================
   スマホ実機向け（枠・壁紙を消して全画面化）
================================================== */
@media screen and (max-width: 480px) {
  .site-container {
    max-width: 100%;
    box-shadow: none;
  }
}

/* ==================================================
   PC表示向け（481px以上：壁紙・枠内レイアウト調整）
================================================== */
@media screen and (min-width: 481px) {
  
  /* 1. 壁紙の設定 */
  body {
    background-image: url('images/pc_wallpaper.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
  }

  /* 2. メニューボタンの枠内固定（追従） */
  .menu-btn {
    position: fixed !important;
    top: 20px !important;
    right: calc(50% - 220px) !important;
    left: auto !important;
  }

  /* 3. 画像ループ要素を枠幅（100%）にリセット */
  .work-images-wrap {
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* 4. 各セクションの全幅指定を解除し枠内に収める */
  .message-section, 
  .yoshioka-section,
  .info-container {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* 5. はみ出しや隙間、重なりのリセット */
	.concept-bg-img, /* ★ここを追加 */
  .message-section img, 
  .yoshioka-section img {
    width: 100% !important;
  }
  
  .message-section, 
  .yoshioka-section {
    overflow: hidden; 
  }

  .message-section, 
  .yoshioka-section,
  .history-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .concept-section,
  .message-section img,
  .yoshioka-section img,
  .history-section img {
    margin: 0 !important;
    padding: 0 !important;
  }
	
/* ==================================================
     NEWS セクション (PC用調整)
  ================================================== */
  .news-top-img {
    width: 100% !important;
    margin-left: 0 !important;
  }
  
.news-container {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 240px 240px 0 0 !important;
    /* PCの広い画面用には、少し多めに被せる */
    margin-top: -80px !important; 
  }
}

