.common-section .inner {
  max-width: 1200px;
  margin: 0 auto
}

#header {
  background: none;
  border: none;
  background-color: none;
  backdrop-filter: none;
  box-shadow: none;
}
#header-top {
   background: none;
  border: none;
  background-color: none;
  backdrop-filter: none;
  box-shadow: none;
}
.navi li a {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;

  /* グラデーションの設定（境目をボカしたもの） */
  background-image: linear-gradient(to right,
      #fff 30%,
      rgba(194, 255, 230, 0.8) 50%,
      rgb(206, 244, 255) 70%,
      #fff 100%
      /* 最後にもう一度「白」を足すのがコツです */
    );

  background-size: 400% 100%;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 1.3s ease;
  filter: drop-shadow(0 0 4px rgba(43, 60, 78, 0.26)) drop-shadow(0 0 8px rgba(38, 64, 71, 0.397));
}

/* ホバーした時の動き */
.navi li a:hover {
  /* ホバー時：右へスライドして色を出す */
  background-position: 100% center;

  /* 行く時の速度を速くしたい場合はここで上書きも可能 */
  transition: background-position 1.3s ease;
}

.navi li a:after {
  background-color: #fff
}

.navi li.inquiry a {
  text-shadow: none;

}

.navi.addfix2 li a {
  /* color: #333; */
  background-image: linear-gradient(to right,
      #0c3756 30%,
      rgba(105, 211, 167, 0.8) 50%,
      rgb(115, 186, 206) 70%,
      #0c3756 100%
      /* 最後にもう一度「白」を足すのがコツです */
    );
  filter: none;
  text-shadow: none
}

.navi.addfix2 li.inquiry a {
  /* background-image: unset !important; */
  background: linear-gradient(118.24deg, #0c3756 32.53%, #2e81a8 128.26%);

}

.navi.addfix2 li a:after {
  background-color: #fff
}

/* 全画面白 */
#opening {
  position: fixed;
  inset: 0;
  background: #ffffffc7;
  backdrop-filter: blur(20px);
  z-index: 9999;

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

  transition: opacity 0.8s ease, visibility 0.8s;
}

.opening-logo {
  overflow: hidden;
}

.opening-logo img {
  max-width: 400px;
  width: 100%;
  opacity: 0;
  transform: translateY(60px);
  animation: logoFlow 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* ロゴの流れ */
@keyframes logoFlow {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
    /* 中央で止まる */
  }

  70% {
    opacity: 1;
    transform: translateY(0);
    /* 少し止める */
  }

  100% {
    opacity: 0;
    transform: translateY(-100px);
    /* 上に消える */
  }
}

/* 背景を後から消す */
#opening.hide {
  opacity: 0;
  visibility: hidden;
}

#mainv {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-size: cover;
  display: table;
}


#mainv:before {
  position: absolute;
  content: "";
  display: block;
  background: url('../../img/dot2.png?1511769506') repeat 0 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

#mainv:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0.6;
  background: linear-gradient(to top,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 60%);

}

#mainv .text-box {
  
  position: relative;
  z-index: 4;
  text-align: center;
  display: table-cell;
  vertical-align: middle;

  opacity: 0;
  transform: translateY(20px);

  animation: fadeUp 1s ease forwards;
  animation-delay: 4s; /* ←ここが3秒後 */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#mainv .text-box img {
  max-width: 700px;
  width: 90%
}

#mainv .mainvsub-scroll {
  position: absolute;
  top: 80%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 80px;
  height: 100px;
  text-align: center;
  z-index: 1111;
  color: #fff;
  text-decoration: none;
}

/* テキスト */
#mainv .scroll-text {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

/* ドット */
#mainv .dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

#mainv .dots span {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.3;
  transform: scale(0.6);
  animation: ripple 1.6s infinite;
}

/* 上から順に波紋 */
#mainv .dots span:nth-child(1) {
  animation-delay: 0s;
}

#mainv .dots span:nth-child(2) {
  animation-delay: 0.2s;
}

#mainv .dots span:nth-child(3) {
  animation-delay: 0.4s;
}

#mainv .dots span:nth-child(4) {
  animation-delay: 0.6s;
}

/* 波紋 */
@keyframes ripple {
  0% {
    opacity: 0.2;
    transform: scale(0.6);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }

  100% {
    opacity: 0.2;
    transform: scale(0.6);
  }
}

.line-wrap {
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

#line {
  width: 100%;
  height: auto;
}

/* 線のスタイル */
.line-path {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 10;
  stroke-linecap: round;

  stroke-dasharray: 1;
  stroke-dashoffset: 1;

  transition: stroke-dashoffset 2s ease;
}

/* 発火 */
.line-wrap.active .line-path {
  stroke-dashoffset: 0;
}

/* #information span {
position: absolute;
mix-blend-mode: soft-light;
color: rgb(253, 253, 196);
} */
 
#information {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  /* min-height: 100vh; */
  /* max-height: 1500px; */
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 20px 20px 0 0;
  padding: 74px 20px 90px;
  background-color: rgba(0, 20, 40, 0.4);
  backdrop-filter: blur(10px);
}

#information .title_span {
  position: absolute;
  right: 0;
  top: 70px;
  opacity: 0.2;
  color: #d6d6d6;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  mix-blend-mode: screen;
  writing-mode: vertical-rl;
}

#information h2 {
  color: #fff;
}

#information h2 span {
  color: #fff;
  background: unset;
  -webkit-text-fill-color: unset;
}

.top_inner {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  width: 100%;
  background-color: rgb(24 166 255 / 50%);
  border-radius: 20px 20px 0 0;
}

/* .top_inner::after {
  opacity: 0.2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2c43c5;
} */
#information .video_bg {
  filter: grayscale(1);
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  z-index: -1
}

#information .information-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  background-color: #fdfdfd4b;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 12px rgba(84, 144, 172, 0.1);
  background-color: rgba(253, 253, 253, 0.7);
  /* 少し不透明度を上げると視認性が向上します */
  backdrop-filter: blur(15px);
  /* 他のスタイルは維持 */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 35px;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#information .information-list {
  width: 49%;
  width: calc(100% / 2.1)
}

#information .information-list dd li {
  margin-bottom: 11px;
  border-bottom: 1px solid #bdbdbd;
  position: relative;
}
.information-list dd ul li:nth-child(n+5) {
  display: none;
}
#information .information-list dd a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 9px;
  text-decoration: none;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s
}

#information .information-list dd a:after {
  content: '';
  position: absolute;
  bottom: -1px;
  /* liのborder-bottomとちょうど重なる位置 */
  left: 0;
  width: 0;
  /* 最初は長さゼロ */
  height: 1px;
  /* 線の太さ */
  background-color: #fff;
  /* 白い線 */
  z-index: 1;
  transform: none;
  /* 既存のscale(0.5)を打ち消し */
  transition: width 0.4s ease;
  /* 伸びるアニメーション */
}

#information .information-list dd a:hover:after {
  width: 100%;
}

/* 既存の不要なスタイルを上書き（もし残っていれば） */
#information .information-list dd a:before {
  display: none;
}

#information .information-list dd a {
  padding: 9px;
  display: block;
  /* inline-blockよりblockの方が線の制御がしやすいです */
}

#information .information-list dd a:hover .date,
#information .information-list dd a:hover .report-title {
  text-decoration: none
}

#information .information-list .link-box {
  position: relative;
  display: block;
  color: #333;
  line-height: 1.7
}

#information .information-list .link-box .tag-type {
  width: 90px;
  font-size: 1.2rem;
  margin: 0 10px 0 0;
  display: inline-block;
  background: #fff;
  border-radius: 1000px;
  /* color: #fff; */
  box-shadow: 0 4px 12px rgba(84, 144, 172, 0.1);

  text-align: center;
}

#information .information-list .link-box .tag-type.color1 {
  color: #1e3b50;
}

#information .information-list .link-box .tag-type.color2 {
  color: #ffbc00
}

#information .information-list .link-box .tag-type.color3 {
  color: #1bc7a8
}

#information .information-list .link-box .tag-type.color4 {
  color: #ef717d
}

#information .information-list .link-box .date {
  margin-right: 10px;
}

#information .information-list .link-box .report-title {
  display: inline-block
}

#information .information-list .information-list-heading {
  font-weight: bold;
  overflow: hidden;
  font-size: 1.8rem;
  margin-bottom: 15px
}

#information .information-list .information-list-heading .viewmore-link {
  float: right;
  display: inline-block;
  font-weight: normal;
  border-left: 1px solid #e70d1e;
  font-size: 1.4rem;
  padding-left: 10px;
  line-height: 1.1;
  position: relative;
  padding-right: 25px;
  color: #333;
  margin-top: 7px
}

#information .information-list .information-list-heading .viewmore-link:before,
#information .information-list .information-list-heading .viewmore-link:after {
  position: absolute;
  display: block;
  content: ""
}

#information .information-list .information-list-heading .viewmore-link:before {
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e70d1e
}

#information .information-list .information-list-heading .viewmore-link:after {
  right: 6px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

#business {
  position: relative;
  overflow: hidden;
  z-index: 3;
  /* information(z-index:2)より上にする */
  background-color: #f6f6f6;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.13);
  padding: 100px 20px 115px;
  border-radius: 40px 40px 0 0;
  margin-top: -30px !important;

}

#business .title_span {
  position: absolute;
  right: 0;
  top: 100px;
  opacity: 0.7;
  color: #d6d6d6;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  writing-mode: vertical-rl;
}

/* 2本目の線 */
.line-wrap02 {
  position: absolute;
  top: 50%;
  left: unset;
  bottom: unset;
  right: -100px;
  transform: translateY(-50%);
  width: 100vw;
  height: 100vh;
  max-width: 2000px;
  max-height: 1000px;
  pointer-events: none;
  z-index: 0;
  /* 背景にしたい場合 */
}

#line02 {
  width: 100%;
  height: auto;
}

.line-path02 {
  fill: none;
  stroke: url(#lineGrad02);
  stroke-width: 10;
  stroke-linecap: round;

  stroke-dasharray: 1;
  stroke-dashoffset: 1;

  animation: drawLine02 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;

  animation-play-state: paused;
  /* ← ここ重要 */
}

.line-wrap02.show .line-path02 {
  animation-play-state: running;
}

@keyframes drawLine02 {
  to {
    stroke-dashoffset: 0;
  }
}

#business h2 {
  margin-bottom: 30px;
}

#business .business-box {
  display: -ms-grid;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  overflow: hidden;
  padding-top: 80px;
  background: #fbfbfb;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(84, 144, 172, 0.1);
  background-color: rgb(253 253 253 / 44%);
  backdrop-filter: blur(15px);

}

/* --- Business Panel 構造完全書き換え --- */

#business .business-box .pannel_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

#business .business-box .panel {
  position: relative;
  /* 子要素の基準点 */
  z-index: 0;
  /* width: 32%; */
  width: 40%;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 24px rgba(32, 66, 90, 0.25);
  transition: all 0.3s ease-in-out;
}


/* 1. 画像：一番奥 (z-index: 1) */
#business .business-box .panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
  z-index: 1;
  /* 最背面 */
}

/* 2. 疑似要素（青グラデ）：画像の上に重ねる (z-index: 2) */
#business .business-box .panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 青いグラデーション */
  background: linear-gradient(115deg, hwb(213 4% 82%), hwb(207 22% 42%));
  opacity: 0.7;
  z-index: 3;
  /* 画像(1)より上で、リンク(3)より下 */
  pointer-events: none;
  /* マウスイベントを透過させてリンクに届かせる */
}

/* ボタンのベース（白丸） */
/* --- Business Button (白丸) の基本設定 --- */
#business .business-box .panel .business_btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 6;
  /* 文字と同じ階層に */
  transition: all 0.3s ease;
  pointer-events: none;
  /* 親のaタグのクリックを邪魔しない */
}

/* 矢印（疑似要素）の初期状態 */
#business .business-box .panel .business_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-image: url(../../img/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

/* --- ここが重要！リンク(a)をホバーした時に矢印(::after)を動かす --- */
#business .business-box .panel a:hover~.business_btn::after,
#business .business-box .panel a:hover .business_btn::after {
  animation: arrowMoveBtn 0.8s ease-in-out forwards;
}

/* 矢印のアニメーション */
@keyframes arrowMoveBtn {
  0% {
    left: 50%;
    opacity: 1;
  }

  40% {
    left: 80%;
    opacity: 0;
  }

  50% {
    left: 20%;
    opacity: 0;
  }

  100% {
    left: 50%;
    opacity: 1;
  }
}

/* リンクをホバーした時に白丸自体も少し浮かせる場合 */
#business .business-box .panel a:hover~.business_btn {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* ホバー時に丸自体を少し浮かせる演出（任意） */
.business_btn:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#business .business-box .panel:hover {
  transform: translateY(3px);
}

#business .business-box .panel .panel_en {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  z-index: 6;
  pointer-events: none;
}

#business .business-box .panel h4 {
  overflow: hidden;
  line-height: 1.1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  font-size: 2rem;
  color: #fff;
  pointer-events: none;
  z-index: 6;
}

/* 3. リンク：一番手前 (z-index: 3) */
#business .business-box .panel a {
  display: block;
  position: absolute;
  /* 親要素全体を覆う */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  /* 疑似要素(2)よりも手前 */
  transition: all .3s ease;
  text-decoration: none;
}

/* ホバー時の挙動：aタグが一番手前なので確実に反応します */
#business .business-box .panel a:hover {
  scale: 1.03;
}

/* --- 角丸とレスポンシブの調整 --- */
/* 
#business .business-box .panel:first-of-type {
  border-radius: 20px 20px 0 0;
}

#business .business-box .panel:last-of-type {
  border-radius: 0 0 20px 20px;
} */

@media screen and (max-width: 890px) {
  #business .business-box .panel img.pc-none {
    display: block;
  }

  #business .business-box .panel img.sp-none {
    display: none;
  }
}

#business .business-box .panel img.pc-none {
  display: none
}

/*
#business .business-box-s {
  padding: 35px 0 380px;
  margin-left: -28px;
}

#business .business-box-s .panel {
  float: left;
  margin-left: 28px;
}

#business .business-box-s .panel a{
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  position: relative;
  bottom: 0;
  padding-top: 10px;
  margin-top: -10px
}
*/
#business .business-box-s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  padding-top: 35px;
}

#business .business-box-s .panel {
  width: 30%;
}

#business .business-box-s .panel a {
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  position: relative;
  bottom: 0;
}

#business .business-box-s .panel a img {
  width: 100%;
}

#business .business-box-s .panel a:hover {
  /* bottom: 10px; */
}

#other-page {
  z-index: 4;
  padding: 20px;
  position: relative;
  background-color:rgb(8 128 188 / 40%);
  backdrop-filter: blur(10px);
}

#other-page .video_bg {
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  filter: grayscale(1);
  object-fit: cover;
  z-index: -1
}

#other-page .inner {
  position: relative;
  /* top: -80px; */
  max-width: 900px;
  gap: 9px;
  justify-content: center;
  display: flex;
  text-align: center
}

#other-page ._heading-var3 .en {
  font-size: 3.2rem
}

#other-page .page-list {
  display: inline-block;
  width: 30%;
  padding: 45px 0;
  color: #4b4b4b;
  text-align: center;
  border: 4px solid #fff;
  -moz-box-shadow: 0px 0px 15px 1px rgba(51, 51, 51, 0.7);
  -webkit-box-shadow: 0px 0px 15px 1px rgba(51, 51, 51, 0.7);
  box-shadow: 0px 0px 15px 1px rgba(51, 51, 51, 0.7);
  border-radius: 4px;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s;
  background-color: rgba(253, 253, 253, 0.7);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

#other-page .page-list dt {
  transition: all .3s ease-in-out;
  position: relative
}

#other-page .page-list dt span {
  text-align: center;
  margin: 0 auto;
}

/* #other-page .page-list dt:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 1px;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  background-color: #141414;
} */

#other-page .page-list:first-child {
  margin-left: 0
}

#other-page .page-list .icon {
  margin-top: 5px;
  text-align: center;
  min-height: 67px;
  width: 100%;
  position: relative
}

#other-page .page-list .icon img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 37px;
  height: 37px;
  bottom: 0;
  margin: auto
}

#other-page .page-list:hover {
  text-decoration: none;
  transform: translateY(3px);
}

#other-page .page-list:hover dt {
  color: #1569a8
}

@media screen and (max-width: 1120px) {
  #business .business-box .panel {
    width: 48%;
  }


}

@media screen and (max-width: 890px) {
  .common-section .inner {
    width: auto;
    margin: 0 auto
  }

  #mainv {
    min-width: auto;
    padding-top: 0
  }

  #mainv .mainv-text1 {
    font-size: 3.6rem;
    padding: 0 15px;
    margin-bottom: 15px
  }

  #mainv .mainv-text1:before {
    width: 88%;
    left: 0;
    margin: 0 20px;
    box-sizing: border-box
  }

  #mainv .mainv-text2 {
    font-size: 2rem;
    padding: 0 15px
  }

  #mainv .mainvsub-scroll {
    top: 73%;
  }

  .navi .addfix2 li a {
    color: #fff
  }

  #service .sub-text {
    padding: 0 15px 0 15px
  }

  #service .service-list-box {
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px
  }

  #service .service-list {
    float: none;
    width: auto;
    padding-bottom: 30px;
    margin-bottom: 16px;
    margin-left: 0
  }

  #service .service-list dt {
    margin-bottom: 10px
  }

  #service .service-list dd img {
    width: 240px
  }

  #information {
    margin: 0;
    padding-top: 60px;
    padding-bottom: 35px
  }

  #information .information-box {
    margin-top: 10px;
    max-width: 600px;
    gap: 15px;
    padding: 30px 20px;
  }

  #information .inner {
   
  }

  #information .information-list {
    width: 100%;
  }

  #information .information-list .information-list-heading {
    margin-bottom: 5px;
  }

  #information .information-list dd li {
    margin-bottom: 5px;
  }

  #information .information-list .link-box {
    font-size: 1.2rem
  }

  #information .information-list .link-box .date {
    font-size: 1rem;
  }

  #information .information-list .link-box .tag-type {
    font-size: 1.2rem;
    margin: 0 10px 0 0
  }

  #information .information-list .link-box:before,
  #information .information-list .link-box:after {
    right: 15px
  }

  #business {
    margin: 0;
    padding: 20px;
  }

  #business .business-box {
    padding: 40px 20px;
  }

  #business .business-box .panel {
    float: none
  }

  #business .business-box .panel img {
    width: 100%
  }

  #business .business-box .panel img.pc-none {
    display: block
  }

  #business .business-box .panel img.sp-none {
    display: none
  }

  #business .business-box-s {
    padding: 30px 15px;
  }

  #business .business-box-s .panel {
    width: 30%;
  }

  #business .business-box-s .panel a img {
    width: 100%;
  }

  #other-page {}

  #other-page ._heading-var3 .en {
    font-size: 1.6rem
  }

  #other-page .inner {
    display: table;
    width: 100%;
    box-sizing: border-box;
    border-spacing: 8px
  }

  #other-page .page-list {
    display: table-cell;
    height: 95px;
    padding: 20px 0;
    width: auto
  }

  #other-page .page-list .icon img {
    height: 37px
  }
}

@media screen and (max-width: 840px) {
  #business .business-box .panel {
    width: 100%;
    max-width: 550px;
  }


}

@media screen and (max-width: 768px) {
  #business .business-box {
    display: block
  }

  #business .business-box-s {
    padding: 15px;
    margin-left: -15px;
  }

  #business .business-box-s .panel {
    margin-left: 15px;
  }
}

#special {
  padding-bottom: 90px;
}

#special .special__bnr-link {
  display: flex;
  transition: all .3s ease;
  position: relative;
  width: 790px;
  height: 395px;
  bottom: 0;
  box-shadow: 0px 0px 15px 1px rgb(51 51 51 / 70%);
  margin: 0 auto 20px;
}

#special .special__bnr-link:hover {
  bottom: 10px;
}

.special__inner {
  text-align: center;
}

.special__txt {
  width: 790px;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #special .special__bnr-link {
    width: auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  #special .special__bnr-img {
    max-width: 100%;
    height: auto;
  }

  .special__inner {
    padding: 0 15px;
  }

  .special__txt {
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  #other-page .inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  #other-page .page-list {
    height: auto;
    margin: 0;
  }
  
.opening-logo img {
  max-width: 340px;
}

.line-wrap {
  left: -30px;
  bottom: unset;
  top: 50%;
  transform: translateY(-50%);
}
.line-wrap02 {
  left: unset;
  right: -10px;
  width: 120vw;
}
  #mainv .text-box img {}

  #business .business-box .panel {
    height: 150px;
  }

  #business .business-box .panel h4 {
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
    left: 13px;
  }

  #business .business-box .panel .business_btn {
    width: 35px;
    height: 35px;
    right: 10px;
    bottom: 10px;
  }

  #business .business-box .panel .panel_en {
    font-size: 1rem;
    top: 10px;
    right: 10px;
  }
}