/* =========================
   Reset
========================= */
* {
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: sans-serif;
  background: #ffffff;
  color: #111;
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 1;
}

.sp-br {
  display: none;
}

@media (max-width: 767px) {
  .sp-br {
    display: inline;
  }
}

[id]{
  scroll-margin-top: 50px;
}

.section--white{
  background: #fff !important;
}

.section--gray{
  background: #f3f3f3 !important;
}

/*
.header {
  position: relative;
  overflow: hidden;
}
*/

/* 動画本体 */
/*
.header__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}
*/

/* ロゴ帯 */
.header__logo {
  position: relative;
  display: inline-block;
}

/*
.header__logo::before {
  content: "";
  position: absolute;
  inset: -10px -16px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  z-index: -1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
*/


/* ロゴを前面に */
/*
.header .inner {
  position: relative;
  z-index: 2;
}
*/

.pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100;
}

/* 表示状態 */
.pageTop.is-show {
  opacity: 1;
  visibility: visible;
}

/* ホバー */
.pageTop:hover {
  transform: translateY(-4px);
}

/* =========================
   Layout
========================= */
.inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

/*
.header {
  background: #ddd;
  padding: 20px 0 200px;
}
*/

.footer {
  background: #e5e5e5;
  padding: 20px 0;
}

/* =========================
   Common
========================= */
.section {
  padding: 60px 0;
}

.section--gray {
  background: #e7e7e7;
}

.section__subtitle {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-small {
  font-size: 15px;
  line-height: 1.8;
}
.text-small2 {
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
   Header
========================= */

/* 動画が出来たら復活
.header {
  position: relative;
  height: 75vh;
  min-height: 695px;
  background: #ccc;
}

.header__logo img {
  width: 180px;
}

.header .inner {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  padding: 0 48px;
}
*/


/*
.topWrap{
	position: relative;
	overflow: hidden;
	background-color: #f3f3f3;
	background-image: url("../img/visual.webp");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: min(62vw, 1080px) auto;
}
*/

/*
.header{
    height: 75vh;
    min-height: 695px;
	padding: 24px 0 0;
}
*/

.header__logo img {
  width: 180px;
}

.topWrap{
	position: relative;
	background-color: #f3f3f3;
	background-image: url("../img/visual.webp");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 1100px auto;
}



/* ベールは一旦なし */
.topWrap::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(243,243,243,0.90) 0%,
    rgba(243,243,243,0.78) 34%,
    rgba(243,243,243,0.28) 58%,
    rgba(243,243,243,0.04) 78%,
    rgba(243,243,243,0) 100%
  );
}

/* 上物は透明にする */
/*
.header,
main,
.catch,
.section{
	background: transparent;
}
*/

/* グレーセクションだけは薄く */
.section--gray{
	background: rgba(243,243,243,0.78) !important;
}


.topCatchVertical{
	position: absolute;
	top: 4.5%;
	left: 39%;
	transform: translate(-50%, -50%);
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 40px;
	letter-spacing: 0.1em;
	font-weight: 600;
	color: #000;
	z-index: 2;
	pointer-events: none;
}

.headerNav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.headerNav a{
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* 下線（最初は見えない） */
.headerNav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* ホバー */
.headerNav a:hover{
  color: #555; /* 少し抜く（上品） */
  transform: translateY(-2px);
}

.headerNav a:hover::after{
  transform: scaleX(1);
}

/* =========================
   Catch
========================= */
.catch {
  position: relative;
  padding: 88px 0 140px;
  background: transparent;
  overflow: hidden;
  z-index: 2;
}

/*
.catch::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -70px;
  height: 240px;
  background: rgba(255,255,255,0.88);
  transform: rotate(-4deg);
  z-index: 2;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}
*/

.catch > * {
  position: relative;
  z-index: 3;
}

.catch__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.catch__headIcon img {
  width: 24px;
  height: auto;
  display: block;
}

.catch__headText {
  margin: 0;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
}

.catch__sublead {
  margin: 0 0 56px;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 800;
}

/* -------------------------
   黒帯全体
------------------------- */
.catch__copy {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 150px;
  margin-bottom: 70px;
  position: relative;
}

/* 黒帯共通 */
.catch__band {
  background: #000;
  box-sizing: border-box;
  padding: 20px 34px;
  transform-origin: left center;
    box-shadow:
    0 30px 60px rgba(0,0,0,0.28),
    0 8px 18px rgba(0,0,0,0.18),
    0 -2px 6px rgba(0,0,0,0.08);
}

.catch__band p {
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  font-size: clamp(48px, 5.5vw, 80px);
}

@media (max-width: 1024px) {
  .catch__band p {
    font-size: clamp(40px, 6vw, 64px);
  }
}
@media (max-width: 768px) {
  .catch__band p {
    font-size: clamp(24px, 7vw, 36px);
    white-space: normal;
  }
}

/* 配置 */
.catch__band--1 {
  width: 90vw;
  margin-left: 0vw;
  transform: rotate(-6deg);
  position: relative;
  z-index: 4;
}

.catch__band--2 {
  width: 90vw;
  margin-left: 4vw;
  margin-top: -11px;
  transform: rotate(-6deg);
  position: relative;
  z-index: 3;
}

.catch__band--3 {
  width: 90vw;
  margin-left: 7vw;
  margin-top: -20px;
  transform: rotate(0deg);
  position: relative;
  z-index: 2;
}

.catch__band--4 {
  width: 90vw;
  margin-left: 10vw;
  margin-top: 0;
  transform: rotate(0deg);
  position: relative;
  z-index: 1;
}

.catch__band {
  background: #000;
  box-sizing: border-box;
  padding: 20px 34px;
  transform-origin: left center;
  overflow: hidden;
}

.bandInner {
  opacity: 0;
  transform: scale(0.96);
  filter: blur(4px);
  transition: 
    transform 0.9s ease,
    opacity 0.9s ease,
    filter 0.9s ease;
  will-change: transform, opacity;
}

/* 左から */
.bandInner--left {
  transform: translateX(-120px) scale(0.96);
}

/* 右から */
.bandInner--right {
  transform: translateX(120px) scale(0.96);
}

/* 表示 */
.bandInner.is-show {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.band-delay-1 { transition-delay: 0s; }
.band-delay-2 { transition-delay: 0.35s; }
.band-delay-3 { transition-delay: 0.75s; }
.band-delay-4 { transition-delay: 1.1s; }

.text-delay-1 { transition-delay: 0s; }
.text-delay-2 { transition-delay: 0.25s; }
.text-delay-3 { transition-delay: 0.5s; }
.text-delay-4 { transition-delay: 0.75s; }

.catch__message p {
  margin: 0 0 12px;
  font-size: 66px;
  line-height: 1.65;
  font-weight: 800;
}

.catch__note p {
  margin: 60px 0 12px;
  font-size: 24px;
  line-height: 1.8;
}




/* =========================
   Diagram
========================= */
.diagram {
  text-align: center;
  margin-top: 60px;
}

/* =========================
   Works
========================= */
/*
.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
 
}
*/

.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 130px; /* 左右の間隔は調整 */
  row-gap: 90px;     /* 上下の間隔は調整 */
  max-width: 1080px; /* 全体幅は適宜 */
  margin: 0 auto;
  padding-bottom: 5.5em;
  padding-top: 3.5em;
}

.works__item {
  width: 100%;
}

/* 画像サイズを揃える */
.works__item figure {
  margin: 0;
}

.works__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* 下段だけ右へずらす */
.works__item:nth-child(3),
.works__item:nth-child(4) {
  transform: translateX(70px); /* 50〜100pxくらいで調整 */
}

.works__item--photo figure {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.works__item--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.works__item--4 figcaption {
  margin-top: 12px;
}

.works__item--4 figcaption a {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 13px;
  line-height: 1.5;
  color: #666;
  text-decoration: none;

  margin-bottom: 4px;
}

.works__item--4 figcaption a:last-child {
  margin-bottom: 0;
}

.works__item--4 figcaption a:hover {
  color: #333;
}

.works__item--4 figcaption a .iconPdf {
  width: 14px !important;
  height: 14px !important;
  max-width: none !important;
  flex-shrink: 0;
  display: block !important;
}



/* =========================
   Tree
========================= */
.tree__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tree__caption{
  font-size: 0.8em;
  line-height: 21px;
}

.tree_txt p{
  padding-bottom: 50px;
}


/* =========================
   CompanyReason
========================= */
.companyReason {
  position: relative;
  overflow: visible;
  min-height: 800px; /* ← これ追加 */
}

.companyReason::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -25px;
  width: 700px;
  height: 1170px;
  background: url("../img/ira_tree.png") no-repeat left top;
  background-size: contain;
  opacity: 1;
  z-index: 0;
}


.companyReason > *{
  position: relative;
  z-index: 1;
}

/* =========================
   Company
========================= */
.companyTable {
  width: 100%;
  border-collapse: collapse;
}

.companyTable th,
.companyTable td {
  border-top: 1px solid #999;
  padding: 10px;
  text-align: left;
}

.qrs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.qrs img {
  width: 80px;
}

.companyTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.companyTable th,
.companyTable td {
  padding: 22px 18px;
  border-top: 1px solid #bfbfbf;
  vertical-align: top;
  text-align: left;
}

.companyTable th {
  width: 180px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.companyTable td {
  color: #111;
  line-height: 1.8;
}

.companyAddress__text {
  margin: 0;
  line-height: 1.8;
}

.companyAddress__map {
  margin: 14px 0 18px;
}

.mapBtn {
  display: inline-block;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity .25s ease;
}

.mapBtn:hover {
  opacity: .8;
  transform: translateY(-2px);
}

.companyAddress__note {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
}

.accessQrList {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.accessQrItem {
  width: 145px;
  padding: 12px 10px 14px;
  background: #000;
  border-radius: 14px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.accessQrItem:hover {
  transform: translateY(-5px);
}

.accessQrItem__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.accessQrItem img {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  object-fit: contain;
}

.snsList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.snsItem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
}

.snsItem img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
}

.snsItem span {
  line-height: 1.6;
}

.delay-1 { transition-delay: 0s; }
.delay-2 { transition-delay: 0.08s; }
.delay-3 { transition-delay: 0.16s; }
.delay-4 { transition-delay: 0.24s; }
.delay-5 { transition-delay: 0.32s; }
.delay-6 { transition-delay: 0.4s; }
.delay-7 { transition-delay: 0.48s; }
.delay-8 { transition-delay: 0.56s; }
.delay-9 { transition-delay: 0.64s; }
.delay-10 { transition-delay: 0.72s; }


.fadeUpTable {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadeUpTable.is-show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 767px) {
  .companyTable,
  .companyTable tbody,
  .companyTable tr,
  .companyTable th,
  .companyTable td {
    display: block;
    width: 100%;
  }

  .companyTable tr {
    border-top: 1px solid #bfbfbf;
  }

  .companyTable th,
  .companyTable td {
    border-top: none;
    padding: 14px 0;
  }

  .companyTable th {
    width: auto;
    padding-bottom: 4px;
  }

  .accessQrList {
    gap: 10px;
  }

  .accessQrItem {
    width: calc(50% - 5px);
  }

  .snsList {
    display: block;
  }

  .snsItem {
    margin-bottom: 12px;
  }
}
/* =========================
   footer
========================= */
.footer {
  background: #e9e9e9;
  padding: 40px 20px 30px;
  z-index: 1;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 上段：ロゴ＋SNS */
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* ロゴ */
.footer__logo img {
  max-width: 280px;
  height: auto;
}

/* SNS */
.footer__sns img {
  max-width: 320px;
  height: auto;
  transition: transform 0.3s;
}
.footer__sns img:hover {
  transform: scale(1.05);
}

/* コピー */
.footer__copy {
  text-align: center;
  font-size: 13px;
  color: #333;
}
@media (max-width: 767px) {

  .footer__top {
    flex-direction: column;
    gap: 20px;
  }

  .footer__logo img {
    max-width: 220px;
  }

  .footer__sns img {
    max-width: 260px;
  }
}

/* =========================
   etc
========================= */

.fadeUp {
  opacity: 0;
  transform: translateY(60px) scale(0.94);
  filter: blur(6px);
  transition: 
    opacity 1.0s ease,
    transform 1.0s ease,
    filter 1.0s ease;
}

.fadeUp.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* =========================
   飾り線
========================= */
.scrollLineWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.scrollLine {
  display: block;
  width: 100%;
  height: 100%;
}

.scrollLine__path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scrollLine__path--base {
  stroke: rgba(0, 0, 0, 0.04); /* ←かなり薄く */
  stroke-width: 36;           /* ←太く */
  filter: blur(2px);
}

.scrollLine__path--accent {
  stroke: rgba(0, 0, 0, 0.08); /* ←少しだけ見える */
  stroke-width: 10;
}

/* =========================
   円
========================= */
.bgBlur {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bgBlur__circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  will-change: transform;
}

/* 確認用：まずは見える状態にする */
.bgBlur__circle--1 {
  width: 420px;
  height: 420px;
  left: -80px;
  top: 120px;
  background: rgba(255, 0, 0, 0.18);
  filter: blur(80px);
}

.bgBlur__circle--2 {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 520px;
  background: rgba(0, 0, 255, 0.14);
  filter: blur(100px);
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}


/* =========================
   Responsive add
========================= */
@media (max-width: 1180px) {

  /* 下段だけ右へずらす */
 .works__item:nth-child(3),
 .works__item:nth-child(4) {
   transform: translateX(20px); 
 }

}


/* tablet */
@media (max-width: 1024px) {
  .header {
    min-height: 420px;
    height: 56vh;
  }

  /*
  .header .inner {
    top: 28px;
    left: 28px;
  }
  */

  .catch {
    padding: 72px 0 64px;
  }

  .catch__sublead {
    margin-bottom: 40px;
    font-size: 26px;
  }

  .catch__copy {
    margin-top: 90px;
    margin-bottom: 50px;
  }

  .catch__band {
    padding: 18px 24px;
  }

  .catch__band--1,
  .catch__band--2,
  .catch__band--3,
  .catch__band--4 {
    width: 94vw;
  }

  .catch__message p {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.5;
  }

  .catch__note p {
    margin-top: 36px;
    font-size: 18px;
    line-height: 1.9;
  }

  .works {
    column-gap: 40px;
    row-gap: 48px;
    padding-top: 2.5em;
    padding-bottom: 3em;
  }

  .works__item:nth-child(3),
  .works__item:nth-child(4) {
    transform: translateX(20px);
  }

  .tree__grid {
    gap: 28px;
  }

  .companyReason {
    min-height: auto;
  }

  .companyReason::before {
    width: 420px;
    height: 760px;
    top: -40px;
    left: -90px;
    opacity: 0.35;
  }

  .accessQrList {
    gap: 12px;
  }

  .accessQrItem {
    width: calc(50% - 6px);
  }
}


/* smartphone */
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .inner {
    width: 100%;
    margin: 0;
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  /* header */
  .header {
    height: 50vh;
    min-height: 340px;
  }
  
  /*
  .header .inner {
    left: 0;
    right: 0;
    top: 24px;
    width: 100%;
    margin: 0;
    padding: 0 16px;
    padding-left: 28px;
  }
  */

  .header__logo img {
    width: 130px;
  }

  /* common */
  .text-small {
    font-size: 1em;
    line-height: 1.9;
  }
  .text-small2 {
    font-size: 1em;
    line-height: 1.9;
  }
  .catch {
    padding: 52px 0 48px;
  }

  .catch__head {
    margin-bottom: 16px;
  }

  .catch__headText {
    font-size: 13px;
    line-height: 1.4;
  }

  .catch__sublead {
    margin-bottom: 28px;
    font-size: 22px;
    line-height: 1.6;
  }

  /* 黒帯 */
  .catch__copy {
    margin-top: 20px;
    margin-bottom: 36px;
    width: 100%;
    margin-left: 0;
  }

  .catch__band {
    padding: 14px 16px;
  }

  .catch__band p {
    line-height: 1.35;
  }

  .catch__band--1,
  .catch__band--2,
  .catch__band--3,
  .catch__band--4 {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .catch__band--2,
  .catch__band--3,
  .catch__band--4 {
    margin-top: 10px;
  }

  .bandInner,
  .bandInner--left,
  .bandInner--right {
    transform: translateY(20px);
  }

  .bandInner.is-show {
    transform: translateY(0);
  }

  .band-delay-1 { transition-delay: 0s; }
  .band-delay-2 { transition-delay: 0.18s; }
  .band-delay-3 { transition-delay: 0.36s; }
  .band-delay-4 { transition-delay: 0.54s; }


  .catch__band {
    padding-inline: 10px;
  }

  .bandInner {
    width: 100%;
  }

  /* catch text */
  .catch__message p {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.55;
  }

  .catch__note p {
    margin: 24px 0 0;
    font-size: 1.3em;
    line-height: 2;
  }

  .catch__note br,
  .text-small br,
  .tree__caption br,
  .companyAddress__note br {
    display: none;
  }

  .diagram {
    margin-top: 30px;
  }

  /* works */
  .works {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 1.8em;
    padding-bottom: 1.5em;
  }

  .works__item:nth-child(3),
  .works__item:nth-child(4) {
    transform: none;
  }

  .works__item p,
  .works__item figcaption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }

  .works__item--4 figcaption a {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .works__item--4 figcaption a .iconPdf {
    width: 16px !important;
    height: 16px !important;
  }

  /* tree */
  .tree__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tree_txt p {
    padding-bottom: 24px;
  }

  .tree__caption {
    font-size: 13px;
    line-height: 1.9;
  }

  .companyReason::before {
    width: 260px;
    height: 460px;
    top: -20px;
    left: -110px;
    opacity: 0.18;
  }

  /* company */
  .companyTable th,
  .companyTable td {
    padding: 12px 0;
  }

  .companyTable th {
    font-size: 1.1em;
  }

  .companyTable td {
    font-size: 1em;
    line-height: 1.9;
  }

  .companyAddress__map {
    margin: 12px 0 14px;
  }

  .mapBtn {
    width: 100%;
    max-width: 220px;
    text-align: center;
    padding: 12px 16px;
  }

  .companyAddress__note {
    font-size: 13px;
    line-height: 1.8;
  }

  .accessQrList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .accessQrItem {
    width: 100%;
  }

  .accessQrItem__title {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .accessQrItem img {
    width: 78px;
    height: 78px;
  }

  /* footer */
  .footer {
    padding: 28px 16px 24px;
  }

  .footer__top {
    gap: 14px;
    margin-bottom: 14px;
  }

  .footer__logo img {
    /*max-width: 180px;*/
    max-width: 90%;
  }

  .footer__sns img {
    /*max-width: 200px;*/
    max-width: 100%;
    padding: 20px 0;
  }

  .footer__copy {
    font-size: 12px;
    line-height: 1.8;
  }
}


/* small smartphone */
@media (max-width: 480px) {
  .inner {
    padding: 0 15px;
  }

  .catch__sublead {
    font-size: 1.05em;
  }

  .catch__band {
    padding-inline: 10px;
  }

  .bandInner {
    width: 100%;
  }

  .catch__band p {
    font-size: clamp(14px, 5.3vw, 26px);
    white-space: nowrap;
    letter-spacing: -0.02em;
    margin: 0;
    text-align:center;
  }

  .catch__message p {
    font-size: 21px;
    text-align: center;
  }

  .catch__note p {
    font-size: 1.3em;
  }

  .accessQrList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .accessQrItem {
    width: 100%;
  }
}

/*
.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
*/

/*
.header__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 40px;
	background: rgba(255,255,255,0.75);
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
*/

/*header 置き換え用*/
/* =========================
   Header / Hero
========================= */
/*
.topWrap{
  position: relative;
  background-color: #f3f3f3;
  background-image: url("../img/visual.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 1100px auto;
  overflow: hidden;
}

.topWrap::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(243,243,243,0.90) 0%,
    rgba(243,243,243,0.78) 34%,
    rgba(243,243,243,0.28) 58%,
    rgba(243,243,243,0.04) 78%,
    rgba(243,243,243,0) 100%
  );
}
*/


/* header帯 */
.header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent !important;
  padding: 0;
  height: auto;
  min-height: 0;
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 40px;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.header__logo{
  margin: 0;
  flex: 0 0 auto;
}

.header__logo img{
  width: 180px;
  height: auto;
  display: block;
}

/* メニュー */
.header__nav{
  flex: 0 0 auto;
}

.header__nav ul{
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav a{
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
}

.header__nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #111;
  transition: width .3s ease;
}

.header__nav a:hover::after{
  width: 100%;
}

/* FV中央の縦ロゴ画像
.topCatchVertical{
  position: absolute;
  top: 52%;
  left: 39%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  margin: 0;
}
 */
 
.topCatchVertical img{
  display: block;
  width: auto;
  height: min(62vh, 620px);
}

/* headerが上に重なる分、catchを下げる */
/*
.catch{
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
*/

/* 上物は前面 */
header,
main,
footer{
  position: relative;
  z-index: 2;
}
/* =========================
   Header / Hero
========================= */
.topWrap{
  position: relative;
  background-color: #f3f3f3;
  background-image: url("../img/visual.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 1100px auto;
  overflow: hidden;
}

.topWrap::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(243,243,243,0.90) 0%,
    rgba(243,243,243,0.78) 34%,
    rgba(243,243,243,0.28) 58%,
    rgba(243,243,243,0.04) 78%,
    rgba(243,243,243,0) 100%
  );
}

/* header帯 */
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent !important;
  padding: 0;
  height: auto;
  min-height: 0;
  pointer-events: none;
}

.header__inner{
 position: relative;
  top: 18px; /* ← 少し下げる */
  width: calc(100% - 80px); /* ← 左右に余白をつける */
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 14px; /* ← 浮いてる感じ */
  pointer-events: auto;
}

.header__logo{
  margin: 0;
  flex: 0 0 auto;
}

.header__logo img{
  width: 180px;
  height: auto;
  display: block;
}

/* メニュー */
.header__nav{
  flex: 0 0 auto;
}

.header__nav ul{
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav a{
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
}

.header__nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #111;
  transition: width .3s ease;
}

.header__nav a:hover::after{
  width: 100%;
}

/* FV中央の縦ロゴ画像 */
.topCatchVertical{
  position: absolute;
  top: 52%;
  left: 39%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  margin: 0;
}

.topCatchVertical img{
  display: block;
  width: auto;
  height: min(62vh, 620px);
}

/* headerが上に重なる分、catchを下げる */
.catch{
  position: relative;
  z-index: 2;
  padding-top: 150px;
}

/* 上物は前面 */
header,
main,
footer{
  position: relative;
  z-index: 2;
}
.hero{
  position: relative;
  height: clamp(680px, 92vh, 980px);
  min-height: 695px;
  z-index: 2;
}
.hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.topCatchVertical{
  position: absolute;
  top: 60%;
  left: 39%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  margin: 0;
}

.topCatchVertical img{
  display: block;
  width: auto;
  height: min(74vh, 620px);
}

@media (max-width: 767px){
  .hero{
    height: auto;
    min-height: 100svh;
    padding-top: 96px; /* 固定ヘッダー分 */
    overflow: hidden;
  }
 .hero::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .topCatchVertical{
    z-index: 3;
  }
  .topCatchVertical{
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 12px;
  }

  .topCatchVertical img{
    width: min(92vw, 430px);
    height: auto;
    max-height: none;
    filter: brightness(1.08) contrast(0.92);
  }
}


/* =========================
   navi
========================= */

/* ハンバーガーボタン */
.navToggle{
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.navToggle span{
  position: absolute;
  left: 9px;
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}

.navToggle span:nth-child(1){ top: 13px; }
.navToggle span:nth-child(2){ top: 20px; }
.navToggle span:nth-child(3){ top: 27px; }

.navToggle.is-open span:nth-child(1){
  top: 20px;
  transform: rotate(45deg);
}

.navToggle.is-open span:nth-child(2){
  opacity: 0;
}

.navToggle.is-open span:nth-child(3){
  top: 20px;
  transform: rotate(-45deg);
}


@media (max-width: 767px){
  .header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .header__inner{
    position: relative;
    top: 10px;
    width: calc(100% - 20px);
    margin: 0 auto;
    padding: 10px 12px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  /* ロゴ */
  .header__logo,
  .logo{
    flex: 1 1 auto;
    min-width: 0;
  }

  .header__logo img,
  .logo img{
    display: block;
    max-width: 125px;
    width: 100%;
    height: auto;
  }

  /* ボタンを出す */
  .navToggle{
    display: block;
  }

  /* PCメニューは普段消す */
  .headerNav{
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    padding: 8px 0;
  }

  /* 開いた時だけ出す */
  .headerNav.is-open{
    display: flex !important;
  }

  .headerNav a{
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    white-space: normal;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .headerNav a:last-child{
    border-bottom: none;
  }
}
@media (max-width: 767px){
  .catch{
    background: #f3f3f3;
  }

  .catch::after{
    display: none;
  }
}

/* =========================
   FIX : Header / Hero / Catch 整理
========================= */

/* 背景のベース */
.topWrap{
	position: relative;
	background-color: #f3f3f3;
	background-image: url("../img/visual.webp");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 1100px auto;
	animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom{
  from{
    background-size: 1180px auto;
  }
  to{
    background-size: 1100px auto;
  }
}

/* PCのベールは残す */
.topWrap::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(243,243,243,0.90) 0%,
    rgba(243,243,243,0.78) 34%,
    rgba(243,243,243,0.28) 58%,
    rgba(243,243,243,0.04) 78%,
    rgba(243,243,243,0) 100%
  );
}

/* header は fixed を採用 */
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent !important;
  padding: 0;
  height: auto;
  min-height: 0;
  pointer-events: none;
}

.header__inner{
  position: relative;
  top: 18px;
  width: calc(100% - 80px);
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 14px;
  pointer-events: auto;
}

.header__logo{
  margin: 0;
  flex: 0 0 auto;
}

.header__logo img{
  width: 10rem;
  /*width: 180px;*/
  height: auto;
  display: block;
}

.header__nav{
  flex: 0 0 auto;
}

.header__nav ul{
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav a{
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
}

.header__nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #111;
  transition: width .3s ease;
}

.header__nav a:hover::after{
  width: 100%;
}

/* hero中央画像 */
.topCatchVertical{
  position: absolute;
  top: 52%;
  left: 39%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  margin: 0;
}

.topCatchVertical img{
  display: block;
  width: auto;
  height: min(62vh, 620px);
}

/* catch */
.catch{
  position: relative;
  z-index: 2;
  padding: 150px 0 140px;
  background: transparent;
  overflow: visible;
}

/* 斜め白帯を完全に消す */
.catch::after{
  content: none !important;
  display: none !important;
}

/* 上物は前面 */
header,
main,
footer{
  position: relative;
  z-index: 2;
}

/* スマホ */
@media (max-width: 767px){
  .topWrap{
    background-color: #f3f3f3;
    background-position: center top;
    background-size: cover;
  }

  /* スマホでは斜め感を消して素直に */
  .topWrap::before{
    display: none;
  }

  .header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .header__inner{
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 12px;
    border-radius: 12px;
  }

  .header__logo img{
    width: 130px;
  }

  .catch{
    padding: 52px 0 48px;
    background: #fff;
  }
}
/* ===== 修正 ===== */

/* topWrap は hero 背景用 */
.topWrap{
  position: relative;
  background-color: #f3f3f3;
  background-image: url("../img/visual.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 1100px auto;
  overflow: hidden;
}

/* ベールは残す */
.topWrap::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(243,243,243,0.90) 0%,
    rgba(243,243,243,0.78) 34%,
    rgba(243,243,243,0.28) 58%,
    rgba(243,243,243,0.04) 78%,
    rgba(243,243,243,0) 100%
  );
}

/* 透明指定をやめる */
/*
main,
.catch,
.section{
  background: initial;
}
*/

/* 交互背景を戻す */
.section--gray{
  background: #e7e7e7;
}

/* 斜めは消す */
.catch::after{
  display: none !important;
}

/* ===== バナー ===== */

.bannerSection {
  margin-top: 60px;
  text-align: center;
}

.bannerSection__lead {
  margin-bottom: 24px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  padding: 0 20px;
}

.bannerWrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bannerItem {
  display: block;
  width: 250px;
}

.bannerItem img {
  display: block;
  width: 100%;
  height: auto;
}


@media (max-width: 767px){
  .bannerWrap {
    gap: 12px;
    padding: 0 16px;
  }

  .bannerItem {
    width: 100%;
  }

  .banner--empty {
    display: none !important;
  }
}



@media screen and (max-width: 768px) {
  .hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
  }

  /* 全体にかける斜めの白 */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /*
    background: linear-gradient(
      35deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.82) 18%,
      rgba(255,255,255,0.52) 38%,
      rgba(255,255,255,0.18) 58%,
      rgba(255,255,255,0.00) 100%
    );
    */
    filter: blur(3px);
  }

  .topCatchVertical {
    position: absolute;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0;
    line-height: 0;
  }

  /* 画像の背後だけ、やわらかく白を足す */
  .topCatchVertical::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 280px;
    height: 560px;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(
      ellipse at center,
      rgba(255,255,255,0.75) 0%,
      rgba(255,255,255,0.45) 42%,
      rgba(255,255,255,0.18) 68%,
      rgba(255,255,255,0.00) 82%
    );
  }

  .topCatchVertical img {
    display: block;
    width: 80%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
	/* キャッチ裏だけ残す */
	.topCatchVertical::before {
	  content: "";
	  position: absolute;
	  left: 50%;
	  top: 55%;
	  width: 530px;
	  height: 750px;
	  transform: translate(-50%, -50%);
	  z-index: -1;
	  pointer-events: none;
	  background: radial-gradient(
	    ellipse at center,
	    rgba(255,255,255,0.85) 0%,
	    rgba(255,255,255,0.65) 20%,
	    rgba(255,255,255,0.30) 45%,
	    rgba(255,255,255,0.10) 70%
	    rgba(255,255,255,0.00) 85%
	  );
	}
}
/* =========================
   tablet以下もハンバーガー
========================= */
@media (max-width: 1180px) {

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .header__inner {
    position: relative;
    top: 10px;
    width: calc(100% - 24px);
    margin: 0 auto;
    padding: 12px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .header__logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header__logo img {
    display: block;
    width: 130px;
    height: auto;
  }

  /* ハンバーガー表示 */
  .navToggle {
    display: block;
    flex: 0 0 auto;
  }

  /* メニューは閉じておく */
  .headerNav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    overflow: hidden;
  }

  .headerNav.is-open {
    display: flex;
  }

  .headerNav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .headerNav a:last-child {
    border-bottom: none;
  }

  .headerNav a::after {
    display: none;
  }
  
}


@media (max-width: 1024px) and (orientation: portrait) {
  .catch__copy {
    width: 100%;
    margin-left: 0;
    margin-top: 28px;
    margin-bottom: 40px;
  }

  .catch__band {
    padding: 14px 16px;
  }

  .catch__band--1,
  .catch__band--2,
  .catch__band--3,
  .catch__band--4 {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .catch__band--2,
  .catch__band--3,
  .catch__band--4 {
    margin-top: 10px;
  }

  .bandInner,
  .bandInner--left,
  .bandInner--right {
    transform: translateY(20px);
  }

  .bandInner.is-show {
    transform: translateY(0);
  }

  .catch__band p {
    font-size: clamp(21px, 4.8vw, 40px);
    line-height: 1.3;
    white-space: normal;
    letter-spacing: -0.01em;
  }
  .banner--empty {
    display: none;
  }
}
@media (max-width: 767px) {
  .topWrap {
    background-position: 70% top;
  }
}
.topCatchVertical img{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.topCatchVertical.is-show img{
  opacity: 1;
  transform: translateY(0);
}