@charset "UTF-8";
/* CSS Document */
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {

/** ==============================
 * ファーストビュー start
 * ============================== **/
#fv {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
/* 背景画像：複数枚をクロスフェード切り替え */
.fv-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
  /* 常時背景に1枚表示（白抜け防止） */
  background: url('images/img01.webp') center / cover no-repeat;
}
.fv-bg li {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeBg 15s ease-in-out infinite;
}

/* 各画像の開始時間をずらす（5秒間隔） */
.fv-bg li:nth-child(1) {
  animation-delay: 0s;
}
.fv-bg li:nth-child(2) {
  animation-delay: 5s;
}
.fv-bg li:nth-child(3) {
  animation-delay: 10s;
}

/* なめらかフェードアニメーション */
@keyframes fadeBg {
  0%   { opacity: 0; z-index: 1; }
  5%   { opacity: 1; z-index: 2; }
  30%  { opacity: 1; z-index: 2; }
  45%  { opacity: 0; z-index: 1; }
  100% { opacity: 0; z-index: 1; }
}
/* 中央コンテンツレイヤー */
.fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/* 左上ロゴ＋RECRUIT */
.fv-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fv-logo img {
  width: calc(10vw * 1.7);
  vertical-align: middle;
}
.fv-logo span {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: 'Jost', sans-serif;
}
/* キャッチコピー（中央左寄せ） */
.fv-copy {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: bold;
  text-shadow: 0.2vw 0.2vw 0.5vw rgba(17, 160, 148, 0.4);
  letter-spacing: 0.2rem;
}
/* 右上三角オブジェクト */
.fv-triangle {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: url('../images/triangle.svg') no-repeat center / cover;
  z-index: 10; /* ← ここを上げる */
}
/** ==============================
 * ファーストビュー end
 * ============================== **/
/** ==============================
 * イントロダクション start
 * ============================== **/
#intro {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
}
/* 上部全幅装飾画像 */
.intro-deco-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 0;
}
.intro-deco-top img {
  width: 100%;
  height: auto;
  display: block;
}
/* 右下装飾画像 */
.intro-deco-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34vw;
  z-index: 0;
}
.intro-deco-bottom img {
  width: 100%;
  height: auto;
  display: block;
}
/* パララックス共通 */
.intro-parallax {
  position: absolute;
  z-index: 1;
  will-change: transform;
  transition: transform 0.3s ease-out;
}
/* 左上画像 */
.intro-img-top {
  top: 7%;
  left: 3%;
  max-width: 256px;
  width: calc(10vw * 1.6);
  opacity: 0.6;
}
/* 右下画像 */
.intro-img-bottom {
  bottom: 2%;
  right: 3%;
  width: calc(10vw * 1.9);
  max-width: 256px;
  opacity: 0.6;
}
.intro-parallax img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* 中央テキスト */
.intro-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-text {
  position: relative;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  line-height: 2.2;
  color: #333;
  letter-spacing: 0.05em;
  max-height: 80%;
  text-align: start;
}
/* リードコピーを大きく */
.intro-lead {
  font-size: 1.618rem;
  font-weight: bold;
  margin-bottom: 2rem;
  padding: 0 0 0 2rem;
  letter-spacing: 0.2rem;
}
/* 右上三角オブジェ（修正反映） */
.intro-triangle {
  position: absolute;
  top: -2.7vw;
  right: -1.5vw;
  width: 2.7vw;
  height: 2.7vw;
  background: url('../images/triangle.svg') no-repeat center / contain;
  z-index: 3;
}
/** ==============================
 * イントロダクション end
 * ============================== **/
/** ==============================
 * 地元で働く5つの理由セクション start
 * ============================== **/
#reasons {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eceff0;
  border-top-left-radius: calc(80 / 1280 * 100vw); /* 左上角丸 */
  /* overflow: hidden; ← 削除済み */
}
/* パララックス画像共通 */
.reason-parallax {
  position: absolute;
  will-change: transform;
  transition: transform 0.3s ease-out;
  z-index: 1;
}
.reason-img01 {
  top: -10%;
  left: 13vw;
  max-width: 256px;
  width: calc(10vw * 1.86);
  opacity: 0.6;
}
.reason-img02 {
  top: 16%;
  left: calc(10vw * 0.7);
  max-width: 256px;
  width: calc(10vw * 1.23);
  opacity: 0.6;
}
.reason-img03 {
  bottom: 5%;
  right: 8%;
  max-width: 256px;
  width: calc(10vw * 1.57);
  opacity: 0.6;
}
.reason-parallax img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
/* セクション内中央揃えテキスト */
.reasons-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
}
/* タイトル＋グラデーション＋Jost */
.reasons-title {
  font-size: 3.5rem;
  font-weight: 500;
  text-align: left;
  background: linear-gradient(90deg, #0380c6, #04b0aa, #a8cc82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  font-family: 'Noto Serif JP', serif;
}
.reasons-title span {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 8.8rem;
  font-weight: 400;
  line-height: 1;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  transform: translateY(0.05em);
}
.reasons-text {
  text-align: left; /* ← 中身は左揃え */
}
/* 中見出し */
.reasons-sub {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2rem 0 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
}
/* 本文 */
.reasons-desc {
  font-size: 1rem;
  line-height: 2;
    font-weight: 400;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}
/** ==============================
 * 地元で働く5つの理由セクション end
 * ============================== **/
/** ==============================
 * 理由ブロック共通ラッパー start
 * ============================== **/
.reasons-wrap {
  background-color: #eceff0;
  padding-bottom: 10vw;
  border-bottom-right-radius: 10vw;
  overflow: hidden;
  position: relative;
}
/** ==============================
 * 理由ブロック共通ラッパー end
 * ============================== **/
/** ==============================
 * 理由ブロック共通 start
 * ============================== **/
.reason-block {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-grid {
  display: grid;
  grid-template-columns: 1fr 40vw;
  gap: 2vw;
  width: 100%;
  height: 100%;
}
/* 左テキストエリア */
.reason-text {
  display: flex;
  align-items: center;
  padding-left: 5vw;
}
.reason-text-inner {
  position: relative;
  padding-left: 7vw;
  font-family: 'Noto Sans JP', sans-serif;
}
/* 番号 */
.reason-number {
  position: absolute;
  top: -3rem;
  left: 0;
  font-size: 8.8rem;
  font-weight: 200;
  line-height: 100%;
  text-align: center;
  font-family: 'Jost', sans-serif;
  background: linear-gradient(60deg, #0380c6, #04b0aa, #a8cc82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* タイトル */
.reason-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 120%;
  padding: 0 0 1rem 0;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 0.8rem;
}
/* サブ見出し */
.reason-sub {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
/* 本文 */
.reason-desc {
  font-size: 1rem;
  width: 35vw;
  line-height: 2;
  text-align: justify;
    font-weight: 400;
}
/* 右画像 */
.reason-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/** ==============================
 * 理由ブロック共通 end
 * ============================== **/
/** ==============================
 * 理由ブロック 2 start
 * ============================== **/
.reason-2 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7.2;
  overflow: visible;
}
.reason-grid-2 {
  display: grid;
  grid-template-columns: 45vw 1fr; /* 左：画像（45vw）、右：テキスト */
  align-items: end;
  height: 100%;
  gap: 2vw;
}
.reason-image img {
  width: 100%;
  height: auto;
  display: block;
}
/** ==============================
 * 理由ブロック 2 end
 * ============================== **/
/** ==============================
 * 理由ブロック 3 start
 * ============================== **/
.reason-3 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: visible;
}
.reason-grid-3 {
  display: grid;
  grid-template-columns: 1fr 45vw; /* 左：テキスト／右：画像 */
  align-items: center; /* 上下中央揃え */
  height: 100%;
  gap: 2vw;
}
.reason-image img {
  width: 100%;
  height: auto;
  display: block;
}
/** ==============================
 * 理由ブロック 3 end
 * ============================== **/
/** ==============================
 * 理由ブロック 4 start
 * ============================== **/
.reason-4 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.reason-grid-4 {
  display: grid;
  grid-template-columns: 45vw 1fr; /* 左画像：45vw／右テキスト */
  align-items: center;
  height: 100%;
  gap: 2vw;
}
/** ==============================
 * 理由ブロック 4 end
 * ============================== **/
/** ==============================
 * 理由ブロック 5 start
 * ============================== **/
.reason-5 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.reason-grid-5 {
  display: grid;
  grid-template-columns: 1fr 45vw; /* 左テキスト／右画像：45vw */
  align-items: end; /* 下揃え */
  height: 100%;
  gap: 2vw;
}
/** ==============================
 * 理由ブロック 5 end
 * ============================== **/
/** ==============================
 * 大昭工業とはセクション start
 * ============================== **/
.about {
  width: 100%;
  background: #fdfdfc;
  padding: 5vw 5vw 5vw;
  text-align: center;
}
.about-image img {
  width: 90vw;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* グラデーション文字 */
.gradient-text {
  background: linear-gradient(90deg, #0380c6, #04b0aa, #a8cc82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* 「大昭工業とは」タイトル */
.about-title {
  font-size: 3.5rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  margin: 2rem 0 1.5rem;
}
/* 説明文 */
.about-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.2;
  margin-bottom: 4rem;
}
.about-desc strong {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.2;
  margin-bottom: 4rem;
}
/* ポイント3カラム */
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  margin-top: 3rem;
}
.about-point img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
/* Point ○ */
.about-point-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
/* 小見出し */
.about-point-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
/* 本文（左揃え、改行あり） */
.about-point-text {
  font-size: 1rem;
    font-weight: 400;
  line-height: 2;
  text-align: justify;
  white-space: normal;
font-feature-settings: "palt" 0;
}
/** ==============================
 * 大昭工業とはセクション end
 * ============================== **/
/** ==============================
 * Galleryセクションタイトル start
 * ============================== **/
.gallery-line {
  width: 90vw;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5); /* グレーかつ半透明 */
  margin: 0 auto 2rem; /* 中央配置＋下に余白 */
}
.gallery-heading {
  text-align: center;
  padding: 5vw 2vw;
}
.gallery-subtitle {
  font-size: 1.8rem;
  font-weight: 200;
  margin-bottom: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.gallery-title {
  font-size: 3rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.8;
}
/** ==============================
 * Galleryセクションタイトル end
 * ============================== **/
/* ==============================
 ギャラリーセクション（オフィス・商業施設） start
============================== */
.gallery-block {
  display: flex;
  gap: 0;
  align-items: flex-start;
  padding: 4vw 0;
}
.gallery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 80vw;
  gap: 0;
}
.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gallery-image-wrap {
  position: relative;
  width: 100%;
}
.gallery-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.caption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.2rem 0.3rem 5rem;

  font-family: 'Noto Sans JP', sans-serif;
}
.caption_2 {
  position: absolute;
  bottom: 0;
  left: 11.5%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.2rem 0.3rem 5rem;

  font-family: 'Noto Sans JP', sans-serif;
}
.gallery-label {
	width: 20vw;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.2rem;
	color: #666666;
	line-height: 2;
	white-space: nowrap;
	display: flex;
	align-items: center; /* ← 横方向（＝縦書きでの上下中央） */
	justify-content: flex-start; /* ← 縦方向（＝縦書きでの上揃え） */
}
/* ==============================
 ギャラリーセクション（オフィス・商業施設） end
============================== */
/** ==============================
 * 最後にセクション start
 * ============================== **/
.last-message {
  width: 100%;
  overflow: hidden;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}
/* 背景画像＋コピーエリア */
.last-main {
  position: relative;
  aspect-ratio: 16 / 19.85;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url('../images/img38.webp');
  align-items: center;
  color: #fff;
  background-size: cover;
}
.last-copy {
  padding: 14vw 0 0 10vw;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300
}
.last-copy h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2rem
}
.last-copy p {
  font-size: 1.1rem;
  line-height: 2.8125rem
}
/* 三角オブジェ */
.last-triangle {
  position: absolute;
  top: -20vw;
  right: 0;
  width: 20vw;
  z-index: 0;
}
.last-triangle img {
  width: 100%;
  height: auto;
}
/* CTAエリア */
.last-cta {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eceff0;
  height: 22vw;
  padding: 0 5vw;
  border-top-left-radius: 10vw;
}
.last-cta:hover {
  background-color: #fff;
  opacity: 1;
  transition: 0.3s ease;
    cursor: pointer;
}
.cta-left {
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-label {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#movie.triangle-icon {
  display: inline-block;
  font-size: 2rem;
  padding-right: 1rem;
  color: #11a094;
}
.cta-note {
  font-size: 1rem;
  margin-top: 0.5rem;
}
.cta-logo img {
  width: 9vw;
  height: auto;
}
/** ==============================
 * 最後にセクション end
 * ============================== **/
 
 /** ==============================
 * ブランドムービー告知セクション start
 * ============================== **/

.brand-movie {
  background-color: #6a6970;
  color: #fff;
  padding: 1.5rem 5vw;
  font-family: 'Noto Sans JP', sans-serif;
}

.movie-inner {
width: 100%;
  margin: 0 auto;
}

.movie-title {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  letter-spacing: 0.1rem;
}

.movie-link {
  color: #57c3c3;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.movie-link:hover {
  text-decoration: underline;
}

#last .triangle-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #0380c6, #04b0aa, #a8cc82);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 0.5rem; /* 微調整。ズレがあればここで */
  padding-bottom :0rem
}

.movie-lead {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.8rem;
}

/** ==============================
 * ブランドムービー告知セクション end
 * ============================== **/
 
 /** ==============================
 * フッターセクション start
 * ============================== **/

.footer {
  width: 100%;
  background: linear-gradient(to right, #0080c6, #11a094, #b2ce7c);
  text-align: center;
  padding: 1rem 0;
}

.footer-copyright {
  color: #fff;
  font-size: 0.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05rem;
}

/** ==============================
 * フッターセクション end
 * ============================== **/
/** ==============================
 * ブランドムービー モーダル表示 start
 * ============================== **/

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1280px;
  background-color: #000;
  border-radius: 8px;
  /* overflow: hidden; 削除 or コメントアウト */
  overflow: visible; /* ←追加して明示的に上書き */
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

/* 閉じるボタン */
.video-close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: #fff;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/** ==============================
 * ブランドムービー モーダル表示 end
 * ============================== **/

  .PC {

	}
  .SP {
  display: none;
  max-width: 0%;
  max-height: 0%;
  }
 }
 
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
/** ==============================
 * ファーストビュー start
 * ============================== **/
#fv {
  position: relative;
  width: 100%;
height:100vh;
  overflow: hidden;
}
/* 背景画像：複数枚をクロスフェード切り替え */
.fv-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
  /* 常時背景に1枚表示（白抜け防止） */
  background: url('images/img01.webp') center / cover no-repeat;
}
.fv-bg li {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeBg 15s ease-in-out infinite;
}

/* 各画像の開始時間をずらす（5秒間隔） */
.fv-bg li:nth-child(1) {
  animation-delay: 0s;
}
.fv-bg li:nth-child(2) {
  animation-delay: 5s;
}
.fv-bg li:nth-child(3) {
  animation-delay: 10s;
}

/* なめらかフェードアニメーション */
@keyframes fadeBg {
  0%   { opacity: 0; z-index: 1; }
  5%   { opacity: 1; z-index: 2; }
  30%  { opacity: 1; z-index: 2; }
  45%  { opacity: 0; z-index: 1; }
  100% { opacity: 0; z-index: 1; }
}
/* 中央コンテンツレイヤー */
.fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
/* 左上ロゴ＋RECRUIT */
.fv-logo {
  position: absolute;
  top: 3%;
  left: 5%;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fv-logo img {
  width: calc(40vw);
  vertical-align: middle;
}
.fv-logo span {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: 'Jost', sans-serif;
}
/* キャッチコピー（中央左寄せ） */
.fv-copy {
  position: absolute;
  left: 10%;
  top: 70%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  text-shadow: 0.2rem 0.2rem 0.5vw rgba(17, 160, 148, 0.6);
  letter-spacing: 0.2rem;
}
/* 右上三角オブジェクト */
.fv-triangle {
  position: absolute;
  top: 0;
  right: 0;
  width: 30vw;
  height: 30vw;
  background: url('../images/triangle.svg') no-repeat center / cover;
  z-index: 10; /* ← ここを上げる */
}

/** ==============================
 * ファーストビュー end
 * ============================== **/
/* ==============================
   イントロダクション SP用CSS start
============================== */
#intro {
  height: 100vh;
  padding: 0;
  position: relative;
  background: #fff;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 装飾画像 */
.intro-deco-top img,
.intro-deco-bottom img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-deco-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.intro-deco-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50vw;
  z-index: 0;
}

/* パララックス画像 */
.intro-parallax {
  position: absolute;
  z-index: 1;
  will-change: transform;
  transition: transform 0.3s ease-out;
}
.intro-img-top {
  top: 3%;
  left: 3%;
  width: 40vw;
  max-width: 180px;
  opacity: 0.6;
}
.intro-img-bottom {
  bottom: 4%;
  right: 4%;
  width: 40vw;
  max-width: 180px;
  opacity: 0.6;
}
.intro-parallax img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* テキストエリア */
.intro-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-text {
  writing-mode: horizontal-tb;
  font-size: 1rem;
  line-height: 2;
  color: #333;
  font-family: 'Noto Serif JP', serif;
  text-align: left;
}
.intro-lead {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1rem;
  padding-left: 0;
}

/* 三角オブジェ（左右反転） */
.intro-triangle {
  position: absolute;
  top: -7vw;
  left: 10vw;
  width: 8vw;
  height: 8vw;
  background: url('../images/triangle.svg') no-repeat center / contain;
  transform: scaleX(-1); /* ← 左右反転 */
  z-index: 3;
}


/* ==============================
   イントロダクション SP用CSS end
============================== */

/** ==============================
 * 地元で働く5つの理由セクション（SP） start
 * ============================== **/

#reasons {
  padding: 15vw 8vw;
  height: 75vh;
  background-color: #eceff0;
  border-top-left-radius: calc(80 / 1280 * 100vw);
  position: relative;
}

/* パララックス画像 */
.reason-parallax {
  position: absolute;
  will-change: transform;
  transition: transform 0.3s ease-out;
  z-index: 1;
}
.reason-img01 {
  top: -6%;
  left: -2%;
  width: 38vw;
  opacity: 0.6;
}
.reason-img02 {
  top: 30%;
  left: 5%;
  width: 28vw;
  opacity: 0.6;
}
.reason-img03 {
  bottom:-5%;
  right: 6%;
  width: 36vw;
  opacity: 0.6;
}
.reason-parallax img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* 中央寄せエリア */
.reasons-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* テキストブロック */
.reasons-text {
  text-align: left;
}

/* タイトル */
.reasons-title {
  font-size: 1.8rem;
  font-weight: 500;
  background: linear-gradient(90deg, #0380c6, #04b0aa, #a8cc82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
  text-align: center;
}
.reasons-title span {
  font-size: 4rem;
  font-family: 'Jost', sans-serif;
  background: inherit;
  font-weight: 200;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transform: translateY(0.05em);
  line-height: 1;
}

/* サブ見出し */
.reasons-sub {
  font-size: 1.4rem;
  margin: 2rem 0 1.2rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 本文 */
.reasons-desc {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: justify;
}

/** ==============================
 * 地元で働く5つの理由セクション（SP） end
 * ============================== **/


/** ==============================
 * 理由ブロック共通ラッパー（SP） start
 * ============================== **/
.reasons-wrap {
  background-color: #eceff0;
  padding-bottom: 12vw;
  border-bottom-right-radius: 10vw;
  overflow: hidden;
  position: relative;
}
/** ==============================
 * 理由ブロック共通ラッパー（SP） end
 * ============================== **/

/** ==============================
 * 理由ブロック共通（SP） start
 * ============================== **/
.reason-block {
  width: 100%;
  display: block;
  padding: 5vw 8vw;
  background-color: #eceff0;
}
.reason-grid {
  display: flex;
  flex-direction: column;
  gap: 0vw;
}
.reason-text {
  padding: 0;
  display: block;
}
.reason-text-inner {
  padding-left: 0;
  position: relative;
}
.reason-number {
  position: absolute;
  top: -1.2rem;
  left: 0;
  font-size: 6.5rem;
  font-weight: 200;
  font-family: 'Jost', sans-serif;
  background: linear-gradient(60deg, #0380c6, #04b0aa, #a8cc82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reason-title {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.3;
  padding-top: 4rem;
  padding-left: 4rem;
  margin-bottom: 1rem;
}
.reason-sub {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.reason-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 400;
  text-align: justify;
  width: 100%;
}
/* 右画像（SPでは下部に） */
.reason-image {
  width: 100%;
}
.reason-image img {
  width: 80%;
  padding-top:5vw;
  margin: auto;
  height: auto;
  display: block;
  object-fit: cover;
}
/** ==============================
 * 理由ブロック共通（SP） end
 * ============================== **/
/** ==============================
 * 理由ブロック 2（SP） start
 * ============================== **/
.reason-2 {
  width: 100%;
  padding: 10vw 8vw;
  background-color: #eceff0;
}
.reason-grid-2 {
  display: flex;
  flex-direction: column-reverse;
  gap: 5vw;
}
.reason-2 .reason-text {
  order: 2;
}
.reason-2 .reason-image {
  order: 1;
}
/** ==============================
 * 理由ブロック 2（SP） end
 * ============================== **/

/** ==============================
 * 理由ブロック 3（SP） start
 * ============================== **/
.reason-3 {
  width: 100%;
  padding: 10vw 8vw;
  background-color: #eceff0;
}
.reason-grid-3 {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
.reason-3 .reason-text {
  order: 1;
}
.reason-3 .reason-image {
  order: 2;
}
/** ==============================
 * 理由ブロック 3（SP） end
 * ============================== **/

/** ==============================
 * 理由ブロック 4（SP） start
 * ============================== **/
.reason-4 {
  width: 100%;
  padding: 10vw 8vw;
  background-color: #eceff0;
}
.reason-grid-4 {
  display: flex;
  flex-direction: column-reverse;
  gap: 5vw;
}
.reason-4 .reason-text {
  order: 2;
}
.reason-4 .reason-image {
  order: 1;
}
/** ==============================
 * 理由ブロック 4（SP） end
 * ============================== **/

/** ==============================
 * 理由ブロック 5（SP） start
 * ============================== **/
.reason-5 {
  width: 100%;
  padding: 10vw 8vw;
  background-color: #eceff0;
}
.reason-grid-5 {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
.reason-5 .reason-text {
  order: 1;
}
.reason-5 .reason-image {
  order: 2;
}
/** ==============================
 * 理由ブロック 5（SP） end
 * ============================== **/

/** ==============================
 * 大昭工業とはセクション start
 * ============================== **/
.about {
  width: 100%;
  background: #fff;
  padding: 0vw 0vw 8vw 0vw;
  text-align: center;
}
.about-image{

}
.about-image img {
  width: 100vw;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* グラデーション文字 */
.gradient-text {
  background: linear-gradient(90deg, #0380c6, #04b0aa, #a8cc82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* 「大昭工業とは」タイトル */
.about-title {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  margin: 2rem 0 1.5rem;
}
/* 説明文 */
.about-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 4rem;
  text-align: justify;
  padding: 0 8vw;
}
.about-desc strong {
  font-size: 1rem;
  font-weight: bold;

  margin-bottom: 4rem;
}
.about-point{
padding: 0 0 6vw 0;
}
/* ポイント3カラム */
.about-points {
  display: grid;
  grid-template-columns: 1fr; /* 1列にする */
  gap: 8vw;
  margin-top: 3rem;
  padding: 0 8vw;
}
.about-point img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
/* Point ○ */
.about-point-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
/* 小見出し */
.about-point-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
/* 本文（左揃え、改行あり） */
.about-point-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  white-space: normal;
}
/** ==============================
 * 大昭工業とはセクション end
 * ============================== **/
/** ==============================
 * Galleryセクションタイトル start
 * ============================== **/
.gallery-line {
  width: 90vw;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5); /* グレーかつ半透明 */
  margin: 0 auto 2rem; /* 中央配置＋下に余白 */
}
.gallery-heading {
  text-align: center;
  padding: 5vw 2vw;
}
.gallery-subtitle {
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.gallery-title {
  font-size: 1.75rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.8;
}
/** ==============================
 * Galleryセクションタイトル end
 * ============================== **/
/** ==============================
 * ギャラリーセクション（共通SP） start
 * ============================== **/
.gallery-block {
  display: flex;
  flex-direction: column;
  padding: 8vw 5vw;
  gap: 5vw;
  position: relative;
}

.gallery-label {
	width: 100%;
	writing-mode: horizontal-tb;
	text-align: center;
	font-size: 1.4rem;
	font-family: 'Noto Serif JP', serif;
	color: #5A6061;
	line-height: 1.8;
	order: -1; /* ← 写真群より前に表示 */
}

.gallery-images {
  display: flex;
 flex-direction: row;
  width: 100%;
  gap: 0vw;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 0vw;
}

.gallery-image-wrap {
  position: relative;
  width: 100%;
}

.gallery-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.caption {
  position: absolute;
  width:100%;
  bottom: 0;
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 0.5rem;
  padding: 0.1rem 0 0.1rem 0;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: right;
}
.caption_2 {
  position: absolute;
  width:100%;
  bottom: 1rem;
  left: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 0.5rem;
  padding: 0.1rem 0 0.1rem 0;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: right;
}
/** ==============================
 * ギャラリーセクション（共通SP） end
 * ============================== **/
/** ==============================
 * 最後にセクション（SP） start
 * ============================== **/
.last-main {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	aspect-ratio: auto;
	min-height: 120vh;
	background-repeat: no-repeat;
		  background-position: center calc(100% + 0vw); /* ← 5vwだけ下にずらす */
	background-size: 100%;
	background-image: url('../images/sp_img38.webp');
	color: #fff;
	background-color: rgba(46,84,128,1.00);
}

.last-copy {
  padding: 14vw 0 0 8vw  ;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  z-index: 1;
  color: #fff; /* 念のため指定 */
}

.last-copy h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.15rem;
  color: #fff;
}

.last-copy p {
  font-size: 1rem;
  line-height: 2rem;
  color: #fff;
}

.last-triangle {
  position: absolute;
  top: -28vw;
  right: 0;
  width: 28vw;
  z-index: 0;
}

.last-cta {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #eceff0;
  height: 36vw;
  padding: 4vw 5vw;

  text-align: center;
  z-index: 2;
}

.last-cta:hover {
  background-color: #fff;
  opacity: 1;
  transition: 0.3s ease;
  cursor: pointer;
}

.cta-left {
  color: #000; /* CTAエリアは白背景なので黒文字で維持 */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#last .cta-label {
  display: flex;
  align-items: center; /* 上下中央揃え */
  gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
}

#last .triangle-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #0380c6, #04b0aa, #a8cc82);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 0.0rem; /* 微調整。ズレがあればここで */
  padding-bottom :0.1rem
}

.cta-note {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.cta-logo img {
  width: 12vw;
  height: auto;
  margin-t
}

 
 /** ==============================
 * ブランドムービー告知セクション start
 * ============================== **/

.brand-movie {
  background-color: #6a6970;
  color: #fff;
  padding: 1.5rem 5vw;
  font-family: 'Noto Sans JP', sans-serif;
}

.movie-inner {
width: 100%;
  margin: 0 auto;
}

.movie-title {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  letter-spacing: 0.1rem;
}

.movie-link {
  color: #57c3c3;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.movie-link:hover {
  text-decoration: underline;
}

#movie .triangle-icon {
  font-size: 1rem;
  color: #57c3c3;
  padding-right:0.5rem
}

.movie-lead {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.8rem;
}

/** ==============================
 * ブランドムービー告知セクション end
 * ============================== **/
 
 /** ==============================
 * フッターセクション start
 * ============================== **/

.footer {
  width: 100%;
  background: linear-gradient(to right, #0080c6, #11a094, #b2ce7c);
  text-align: center;
  padding: 1rem 0;
}

.footer-copyright {
  color: #fff;
  font-size: 0.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05rem;
}

/** ==============================
 * フッターセクション end
 * ============================== **/
/** ==============================
 * ブランドムービー モーダル表示 start
 * ============================== **/

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1280px;
  background-color: #000;
  border-radius: 8px;
  /* overflow: hidden; 削除 or コメントアウト */
  overflow: visible; /* ←追加して明示的に上書き */
}

.video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

/* 閉じるボタン */
.video-close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: #fff;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/** ==============================
 * ブランドムービー モーダル表示 end
 * ============================== **/
  .PC {
    display: none;
    max-width: 0%;
    max-height: 0%;
  }
  .SP {}
  }
  
