@charset "UTF-8";
/* ==========================================
  Mixins
========================================== */
/* ==========================================
  Variables
========================================== */
/* ==========================================
  Animations (common)
========================================== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shutterIn {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
/* fadeUp mixin（SCSS内で使う用） */
/* fadeUp utility class（HTMLに直接付ける用） */
.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* fadeUp utility class（スクロール連動 / 要素が画面に入ったら発火） */
.js-fadeup-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.js-fadeup-scroll.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
  Base
========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

button:focus {
  outline: none;
}

/* ==========================================
  Wrapper
========================================== */
.wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

/* ==========================================
  背景固定スライダー
========================================== */
.swiper.mvSwiper {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* フォールバック */
  height: 100lvh; /* 最大サイズで固定。スクロールしても変わらない */
  z-index: 0;
}
.swiper.mvSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper.mvSwiper .sp-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ==========================================
  Header
========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.header .header-inner {
  position: relative;
  z-index: 2;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  margin: 0 auto;
}
@media print, screen and (max-width: 1399px) {
  .header .header-inner {
    padding: 12px 32px;
  }
}
@media print, screen and (max-width: 1199px) {
  .header .header-inner {
    padding: 12px 24px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-inner {
    padding: 10px 16px;
  }
}
.header .header-logo {
  display: block;
  flex-shrink: 0;
}
.header .header-logo img {
  height: 56px;
  width: auto;
  transition: height 0.3s;
}
@media print, screen and (max-width: 1399px) {
  .header .header-logo img {
    height: 48px;
  }
}
@media print, screen and (max-width: 1199px) {
  .header .header-logo img {
    height: 44px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-logo img {
    height: 38px;
  }
}
@media screen and (max-width: 575px) {
  .header .header-logo img {
    height: 30px;
  }
}
.header {
  /* PCナビゲーション */
}
.header .header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media print, screen and (max-width: 1399px) {
  .header .header-nav {
    gap: 32px;
  }
}
@media print, screen and (max-width: 1199px) {
  .header .header-nav {
    gap: 24px;
  }
}
@media screen and (max-width: 991px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav .nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media print, screen and (max-width: 1399px) {
  .header .header-nav .nav-list {
    gap: 28px;
  }
}
@media print, screen and (max-width: 1199px) {
  .header .header-nav .nav-list {
    gap: 20px;
  }
}
.header .header-nav .nav-item {
  position: relative;
}
.header .header-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 4px;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}
@media print, screen and (max-width: 1199px) {
  .header .header-nav .nav-link {
    font-size: 16px;
  }
}
.header .header-nav .nav-link {
  /* アクティブ時の青ドット */
}
.header .header-nav .nav-link::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b4d8;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.header .header-nav .nav-link.active {
  color: #186dab;
}
.header .header-nav .nav-link.active::before {
  transform: translateX(-50%) scale(1);
}
.header .header-nav .nav-link:hover {
  color: #186dab;
}
.header {
  /* 電話番号 */
}
.header .header-tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 25px);
  color: #222;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}
.header .header-tel .tel-icon {
  width: clamp(32px, 2.8vw, 40px);
  height: clamp(32px, 2.8vw, 40px);
  border-radius: 50%;
  background: linear-gradient(90deg, #186dab 0%, #00b4d8 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.4vw, 20px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25);
}
.header {
  /* ハンバーガーボタン */
}
.header .hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
}
@media screen and (max-width: 991px) {
  .header .hamburger {
    display: block;
  }
}
.header .hamburger span {
  position: absolute;
  left: 6px;
  width: 28px;
  height: 1px;
  background: #222;
  transition: top 0.4s ease, transform 0.4s ease, opacity 0.3s ease;
}
.header .hamburger span:nth-child(1) {
  top: 13px;
}
.header .hamburger span:nth-child(2) {
  top: 20px;
}
.header .hamburger span:nth-child(3) {
  top: 27px;
}
.header .hamburger.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}
.header {
  /* SPメニュー */
}
.header .sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 340px;
  height: 100dvh;
  background: #fff;
  padding: 90px 20px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
  overflow-y: auto;
}
@media screen and (max-width: 575px) {
  .header .sp-menu {
    padding: 90px 15px 40px;
  }
}
@media screen and (max-width: 445px) {
  .header .sp-menu {
    width: 100%;
    max-width: none;
  }
}
.header .sp-menu.active {
  right: 0;
}
.header .sp-menu .sp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.header .sp-menu .sp-nav-list li {
  border-bottom: 1px solid #eee;
}
.header .sp-menu .sp-nav-list li a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px 18px 18px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  /* 左：グラデーションのアクセントバー */
}
.header .sp-menu .sp-nav-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background: linear-gradient(90deg, #186dab 0%, #00b4d8 100%);
}
.header .sp-menu .sp-nav-list li a {
  /* 右：シェブロン矢印 */
}
.header .sp-menu .sp-nav-list li a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #ccc;
  border-right: 1.5px solid #ccc;
  transform: rotate(45deg);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.header .sp-menu .sp-nav-list li a:hover, .header .sp-menu .sp-nav-list li a:active {
  color: #186dab;
}
.header .sp-menu .sp-nav-list li a:hover::after, .header .sp-menu .sp-nav-list li a:active::after {
  border-color: #186dab;
  transform: rotate(45deg) translate(2px, -2px);
}
.header .sp-menu .sp-tel-wrap {
  padding: 0 4px;
}
@media screen and (max-width: 991px) {
  .header .sp-menu .sp-tel-wrap {
    display: flex;
    justify-content: center;
  }
}
.header .sp-menu .sp-tel-wrap .sp-tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #222;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .header .sp-menu .sp-tel-wrap .sp-tel {
    font-size: 25px;
  }
}
@media screen and (max-width: 445px) {
  .header .sp-menu .sp-tel-wrap .sp-tel {
    font-size: clamp(20px, 5.5vw, 25px);
    gap: 5px;
  }
}
.header .sp-menu .sp-tel-wrap .sp-tel .tel-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(90deg, #186dab 0%, #00b4d8 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25);
}
.header {
  /* SP用オーバーレイ */
}
.header .sp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 0;
}
.header .sp-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
  MV
========================================== */
.mv {
  position: relative;
  height: 100vh;
  height: 100lvh;
}
.mv .mv-catch {
  position: absolute;
  left: clamp(20px, 3.5vw, 50px);
  bottom: clamp(40px, 7vw, 100px);
  z-index: 2;
  color: #fff;
  max-width: calc(100% - 40px);
}
@media screen and (max-width: 575px) {
  .mv .mv-catch {
    left: clamp(10px, 3.5vw, 50px);
    bottom: clamp(120px, 25vw, 160px);
  }
}
.mv .catch-title {
  position: relative;
  display: table;
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 13px + 2.25vw, 56px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 8px 16px;
}
@media screen and (max-width: 575px) {
  .mv .catch-title {
    margin: 0 0 10px;
  }
}
.mv .catch-title {
  /* 帯のシャッターアニメ（PC：1つの帯） */
}
.mv .catch-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #186dab 0%, #00b4d8 100%);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
  animation: shutterIn 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
}
.mv .catch-title .catch-line {
  display: inline;
}
.mv .catch-title {
  /* PC/SP共通：文字本体（catch-text）をふわっとフェードアップ */
}
.mv .catch-title .catch-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1s forwards;
}
.mv .catch-title {
  /* 767px以下：2段組／それぞれの行に帯 */
}
@media screen and (max-width: 767px) {
  .mv .catch-title {
    display: block;
    padding: 0;
    /* タイトル全体の帯はOFF */
  }
  .mv .catch-title::before {
    display: none;
  }
  .mv .catch-title .catch-line {
    position: relative;
    display: table;
    margin: 0;
    color: #fff;
    padding: 4px 12px;
  }
  .mv .catch-title .catch-line + .catch-line {
    margin-top: 6px;
  }
  .mv .catch-title .catch-line {
    /* 各行に独立した帯 */
  }
  .mv .catch-title .catch-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #186dab 0%, #00b4d8 100%);
    transform: scaleX(0);
    transform-origin: left center;
    z-index: -1;
  }
  .mv .catch-title .catch-line {
    /* 1行目 */
  }
  .mv .catch-title .catch-line:nth-child(1)::before {
    animation: shutterIn 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
  }
  .mv .catch-title .catch-line:nth-child(1) .catch-text {
    animation-delay: 0.9s;
  }
  .mv .catch-title .catch-line {
    /* 2行目 */
  }
  .mv .catch-title .catch-line:nth-child(2)::before {
    animation: shutterIn 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
  }
  .mv .catch-title .catch-line:nth-child(2) .catch-text {
    animation-delay: 1.2s;
  }
}
.mv .catch-sub {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: clamp(14px, 11.5px + 0.65vw, 24px);
  line-height: 1.7;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.6s forwards;
}

/* ==========================================
  メインコンテンツ（白背景でスライダーを隠す）
========================================== */
.main-content {
  position: relative;
  background: #fff;
  padding: 150px 20px;
}
@media screen and (max-width: 575px) {
  .main-content {
    padding: 100px 15px;
  }
}

/* ==========================================
  セクションタイトル（COMPANY / CONTACT共通）
========================================== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title .section-title-en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 28px + 2.5vw, 80px);
  line-height: 1;
  margin: 0 0 8px;
  background: linear-gradient(90deg, #186dab 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0;
}
.section-title .section-title-jp {
  font-weight: 700;
  font-size: clamp(18px, 14px + 0.5vw, 24px);
  color: #222;
  margin: 0;
  letter-spacing: 0.1em;
}

/* ==========================================
  COMPANY
========================================== */
.company {
  margin-bottom: 150px;
}
@media screen and (max-width: 575px) {
  .company {
    margin-bottom: 100px;
  }
}
.company .company-box {
  max-width: 1440px;
  margin: 0 auto;
  background: #f4fcff;
  padding: 75px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media print, screen and (max-width: 1399px) {
  .company .company-box {
    padding: 60px;
  }
}
@media print, screen and (max-width: 1199px) {
  .company .company-box {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .company .company-box {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 575px) {
  .company .company-box {
    padding: 40px 15px;
  }
}
.company .company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .company .company-table {
    font-size: 14px;
  }
}
.company .company-table tr {
  border-bottom: 1px solid #e1e6ec;
}
.company .company-table th,
.company .company-table td {
  padding: 30px;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}
.company .company-table th {
  width: 300px;
  font-weight: 700;
  color: #222;
  border-bottom: #186dab 1px solid;
}
@media screen and (max-width: 991px) {
  .company .company-table th {
    width: 240px;
  }
}
.company .company-table .address {
  margin: 0 0 4px;
  line-height: 1.8;
}
.company .company-table .address .map-link {
  display: inline-block;
  margin-left: 8px;
  color: #186dab;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.company .company-table .address .map-link:hover {
  color: #222;
  transform: translateY(-2px);
}
.company .company-table .tel-fax {
  margin: 0;
  line-height: 1.8;
}
.company .company-table {
  /* レスポンシブ：767px以下で縦並びに */
}
@media screen and (max-width: 767px) {
  .company .company-table tr {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #e1e6ec;
  }
  .company .company-table tr:first-child {
    padding-top: 0;
  }
  .company .company-table th,
  .company .company-table td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .company .company-table th {
    margin-bottom: 8px;
    color: #186dab;
    font-size: 18px;
    letter-spacing: 0.1em;
    border-bottom: 0;
  }
}

/* ==========================================
  CONTACT
========================================== */
.contact .contact-box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background-image: linear-gradient(to right, #f1f1f1 1px, transparent 1px), linear-gradient(to bottom, #f1f1f1 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0;
}
@media print, screen and (max-width: 1199px) {
  .contact .contact-box {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact-box {
    padding: 50px 24px;
  }
}
@media screen and (max-width: 575px) {
  .contact .contact-box {
    padding: 40px 15px;
  }
}
.contact .contact-list {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 1199px) {
  .contact .contact-list {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact .contact-list {
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .contact .contact-list {
    gap: 40px;
  }
}
.contact .contact-item {
  display: grid;
  justify-items: stretch;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact .contact-label {
  display: block;
  padding: 4px 24px;
  margin: 0 0 16px;
  background: #f0f0f0;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.contact .contact-tel,
.contact .contact-fax {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 2.6vw, 40px);
  color: #222;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}
.contact .contact-tel .contact-icon,
.contact .contact-fax .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, #186dab 0%, #00b4d8 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25);
}
@media screen and (max-width: 767px) {
  .contact .contact-tel .contact-icon,
  .contact .contact-fax .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ==========================================
  Footer
========================================== */
.footer {
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  padding: 200px 20px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .footer {
    padding: 150px 15px;
  }
}
.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-logo {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer .footer-logo {
    margin-bottom: 40px;
  }
}
.footer .footer-logo img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .footer .footer-logo img {
    height: 40px;
  }
}
.footer .footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav {
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .footer .footer-nav {
    flex-direction: column;
  }
}
.footer .footer-nav a {
  position: relative;
  display: block;
  width: 160px;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .footer .footer-nav a {
    width: 120px;
    font-size: 16px;
  }
}
.footer .footer-nav a::before, .footer .footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.footer .footer-nav a {
  /* 通常時の下線（薄め） */
}
.footer .footer-nav a::before {
  background: rgba(255, 255, 255, 0.3);
}
.footer .footer-nav a {
  /* ホバー時に出てくる下線（しっかり白） */
}
.footer .footer-nav a::after {
  background: #fff;
  transform: translateX(-101%);
}
.footer .footer-nav a:hover::before {
  transform: translateX(101%);
}
.footer .footer-nav a:hover::after {
  transform: translateX(0);
}
.footer .copyright {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ==========================================
  body スクロールロック（メニュー展開時）
========================================== */
body.is-menu-open {
  overflow: hidden;
}

/* 個別印刷設定
------------------------------------------------------------------*/
@media print {
  .container,
  .container-fluid,
  .row {
    width: 100% !important;
  }
  section {
    page-break-before: avoid;
  }
  section + section.new-none:not(:root) {
    page-break-before: avoid;
  }
  .new-page {
    page-break-before: always;
  }
  header {
    position: static !important;
    box-shadow: none !important;
  }
  .wrapper {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-attachment: scroll;
  }
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    background-image: block !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: none;
  }
  /* fadeup系のアニメーションを無効化して常に表示状態に */
  .js-fadeup,
  .js-fadeup-scroll,
  .catch-text,
  .catch-sub {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  /* キャッチコピーの帯シャッターアニメも完了状態に */
  .catch-title::before,
  .catch-line::before {
    transform: scaleX(1) !important;
    animation: none !important;
  }
}/*# sourceMappingURL=style.css.map */