@charset "UTF-8";
/*PC+スマホ共通設定*/
/*デフォルト設定*/
body {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: lighter;
}

.right {
  text-align: right;
}

a:hover, a:active {
  color: #1d1d1d;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

a {
  outline: none;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

/*PC*/
@media screen and (min-width: 481px) {
  .sp {
    display: none !important;
  }
}
/*SP*/
@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
}
/* ==========================================================================
   オープニングロード画面
   ========================================================================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #6d6c6a;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transitionは削除。GSAPで制御します */
}

.loader__logo {
  opacity: 0; /* 初期値：透明 */
  visibility: visible;
  width: 200px;
  height: auto;
  /* transform: translateY(20px); もJSで行うので削除 */
}

.loader__logo img {
  width: 100%; /* 親の.loader__logoに合わせる */
  height: auto;
  display: block;
}

/* コンテンツの初期状態 */
#js-content {
  opacity: 0;
  visibility: hidden;
}

/* --- JSで後から付与するクラスは最小限に --- */
#js-content.is-show {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s ease; /* コンテンツがふわっと出るように */
}

/* ==========================================================================
   メイン画像（スタッキングセクション）
   ========================================================================== */
.project-container {
  position: relative;
  background-color: #0f121b;
  overflow: hidden;
}

.project-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 重なり順の指定 */
.js-stack-section:nth-child(1) {
  z-index: 40;
}

.js-stack-section:nth-child(2) {
  z-index: 30;
}

.js-stack-section:nth-child(3) {
  z-index: 20;
}

.js-stack-section:nth-child(4) {
  z-index: 10;
}

.project-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  overflow: hidden;
  will-change: transform;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 18, 27, 0.4);
  opacity: 0;
  will-change: opacity;
}

.project-copy {
  position: absolute;
  bottom: 21%;
  left: 10%;
  color: #fff;
  z-index: 5;
}
@media screen and (max-width: 480px) {
  .project-copy {
    top: 60%;
    left: 5%;
  }
}
.project-copy p {
  font-size: 25px;
}
@media screen and (max-width: 480px) {
  .project-copy p {
    font-size: 4vw;
  }
}
.project-copy p {
  margin-bottom: 20px;
}
.project-copy h3 {
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .project-copy h3 {
    font-size: 5vw;
  }
}
.project-copy h3 {
  font-weight: normal;
}

@media screen and (max-width: 480px) {
  /* PCの固定解除 */
  .project-container {
    height: auto !important;
  }
  .project-section {
    position: relative !important;
    height: 70vh; /* 縦並びの際の各セクションの高さ（お好みで） */
    display: block;
  }
  .project-img-wrapper {
    position: relative !important;
    height: 100%;
    transform: none !important;
    scale: 1 !important; /* GSAPの残りを上書き */
  }
  #main01 {
    height: 100vh;
  }
}
/* 動画専用のスタイル */
.project-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画面いっぱいに隙間なく表示 */
  display: block;
}

/* 1枚目のオーバーレイを少し濃く */
#main01 .project-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1; /* 最初から少し暗くしておく */
}

.sns_link {
  position: absolute;
  bottom: 5%;
  left: 10%;
  z-index: 5;
}
.sns_link ul {
  display: flex;
}
.sns_link ul li img {
  width: 50%;
}

.logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .logo {
    width: 35%;
    top: 40%;
  }
  .logo img {
    width: 100%;
  }
}

.news {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 40%;
}
@media screen and (max-width: 480px) {
  .news {
    width: 90%;
    bottom: 10%;
  }
}
.news a {
  color: #fff;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .news a {
    font-size: 2vw;
  }
}
.news h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 23px;
}
@media screen and (max-width: 480px) {
  .news h4 {
    font-size: 4vw;
    margin-bottom: 15px;
  }
}
.news .more a {
  font-size: 12px;
}

.news-box a > div {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 0.5px solid;
}
.news-box a > div .news-date {
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  .news-box a > div .news-date {
    margin-right: 10px;
  }
  .news-box a > div .news-date p {
    font-size: 3vw;
  }
}
.news-box a > div h5 {
  font-weight: 100;
}
@media screen and (max-width: 480px) {
  .news-box a > div h5 {
    font-size: 3.5vw;
  }
}

/*Moreボタン*/
/* ==========================================================================
   READ MORE専用：テキストのキラッとする動き ＋ 矢印の色変化（スピード調整版）
   ========================================================================== */
.more-link .more_btn p {
  margin-bottom: 0 !important;
  background: linear-gradient(120deg, #1d1d1d 40%, rgba(29, 29, 29, 0.4) 50%, #1d1d1d 60%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 最初から「黒い矢印」で表示され、ホバーで黒が走る設定 */
.more-arrow {
  position: relative;
  width: 100%;
  height: 20px;
  margin-top: 15px;
  overflow: visible !important;
}

.more-arrow-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 150px; /* 150pxの長さで固定 */
  height: 1px;
  background-color: rgba(29, 29, 29, 0.2);
}
.more-arrow-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1d1d1d !important; /* くッキリした黒 */
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.more-arrow-line::after {
  content: "";
  position: absolute;
  right: 16px;
  top: -16px;
  width: 45px;
  height: 24px;
  border-right: 1px solid rgba(29, 29, 29, 0.2); /* 通常時は薄い黒 */
  transform: rotate(-45deg);
  transform-origin: right top;
  transition: border-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

/* ==========================================================================
   READ MORE マウスオーバー時のインタラクション
   ========================================================================== */
.more-link:hover {
  opacity: 1 !important;
  filter: none !important;
}
.more-link:hover .more_btn p {
  background-position: -200% 0%;
}
.more-link:hover .more-arrow-line::before {
  transform-origin: left;
  transform: scaleX(1);
}
.more-link:hover .more-arrow-line::after {
  border-color: #1d1d1d !important; /* ハネもくっきり黒に変色 */
}

/* ==========================================================================
   READ MORE 左向き矢印
   ========================================================================== */
.more-arrow-left {
  position: relative;
  width: 150px;
  height: 20px;
  margin-top: 15px;
  overflow: visible !important;
}

.more-arrow-line-left {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: rgba(29, 29, 29, 0.2);
}
.more-arrow-line-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1d1d1d;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.more-arrow-line-left::after {
  content: "";
  position: absolute;
  left: 16px;
  top: -16px;
  width: 45px;
  height: 24px;
  border-left: 1px solid rgba(29, 29, 29, 0.2);
  transform: rotate(45deg);
  transform-origin: left top;
  transition: border-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.more-link:hover .more-arrow-line-left::before {
  transform-origin: left;
  transform: scaleX(1);
}
.more-link:hover .more-arrow-line-left::after {
  border-color: #1d1d1d !important;
}

.more-link-left .more_btn p {
  padding-right: 10px;
  text-align: right;
}

/*2枚目以降のリンク部分*/
/* ==========================================================================
   【共通】テキストのキラッとする動き ＋ 矢印の色変化アニメーション
   ========================================================================== */
.works-link,
.anim-flash-link {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s;
}
.works-link:hover,
.anim-flash-link:hover {
  opacity: 1 !important;
  filter: none !important;
}

.works-title,
.works-sub,
.anim-flash-target {
  background: linear-gradient(120deg, #ffffff 40%, rgba(255, 255, 255, 0.6) 50%, #ffffff 60%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ─── 💡 [修正・確定版] 矢印の形状バグを修正し、位置を下に下げたコンテナ ─── */
.flash-arrow-container {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px; /* 💡【位置調整】以前の「0px」から「-15px」に下げ、文字との間に美しい余白を作りました */
  height: 20px;
  overflow: visible !important; /* 絶対に矢印のハネを消さない設定 */
}

.flash-arrow-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 410px; /* 410px固定 */
}
@media screen and (max-width: 480px) {
  .flash-arrow-line {
    width: 130%;
  }
}
.flash-arrow-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}
.flash-arrow-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff !important; /* ホバー時に走る100%の白い色 */
  transform-origin: right;
  transform: scaleX(0); /* 通常時は右側に縮めて隠す */
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.flash-arrow-line::after {
  content: "";
  position: absolute;
  right: 15px;
  top: -16px;
  width: 45px;
  height: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.25); /* 通常時は薄い白 */
  transform: rotate(-45deg);
  transform-origin: right top;
  transition: border-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

#main04 .flash-arrow-line {
  width: 600px;
}
@media screen and (max-width: 480px) {
  #main04 .flash-arrow-line {
    width: 120%;
  }
}

/* --- 各セクション固有のレイアウト位置微調整 --- */
.works-container {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 10%;
}

.works-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.works-title {
  font-size: 54px;
  font-weight: 100;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .works-title {
    font-size: 6vw;
  }
}

.works-sub {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: lighter;
  letter-spacing: 0.05em;
  margin: 15px 0 0 0;
  padding-bottom: 25px; /* 💡 矢印を下に下げた分、要素自体の高さを広げて領域を安全に確保 */
}
@media screen and (max-width: 480px) {
  .works-sub {
    font-size: 3vw;
  }
}

/* ==========================================================================
   お知らせ（NEWS）専用：下線が左から右へスーッと「白く」染まるアニメーション
   ========================================================================== */
.news-box a {
  position: relative !important;
  display: block !important;
  text-decoration: none !important;
}
.news-box a > div {
  border-bottom: none !important;
  padding-bottom: 20px !important; /* 線との間に美しい余白を確保 */
  margin-bottom: 20px !important;
  position: relative !important;
}
.news-box a > div::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important; /* 横幅いっぱいに広げる */
  height: 1px !important;
  background-color: rgba(255, 255, 255, 0.25) !important; /* 通常時の薄い白 */
  z-index: 1 !important;
}
.news-box a > div::before {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background-color: #ffffff !important; /* くっきりした白 */
  transform-origin: right !important;
  transform: scaleX(0) !important;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
  z-index: 2 !important;
}
.news-box a:hover > div::before {
  transform-origin: left !important;
  transform: scaleX(1) !important;
}

/* ==========================================================================
   マウスオーバー時のインタラクション（一括制御）
   ========================================================================== */
.works-link:hover .works-title,
.works-link:hover .works-sub,
.works-link:hover .anim-flash-target,
.anim-flash-link:hover .works-title,
.anim-flash-link:hover .works-sub,
.anim-flash-link:hover .anim-flash-target {
  background-position: -200% 0%;
}
.works-link:hover .flash-arrow-line::before,
.anim-flash-link:hover .flash-arrow-line::before {
  transform-origin: left;
  transform: scaleX(1);
}
.works-link:hover .flash-arrow-line::after,
.anim-flash-link:hover .flash-arrow-line::after {
  border-color: #ffffff !important; /* 先端のハネをくっきり白に変色 */
}

/* ==========================================================================
   ヘッダー（2枚目から出現）
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 10005; /* セクション(10~40)より上に */
  transition: all 0.5s ease;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .site-header {
    margin-top: 20px;
  }
}
.site-header {
  /* 初期状態：隠してクリックも無効化 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
}

/* 表示状態：JSで .is-show が付与されたとき */
.site-header.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* クリックを有効化 */
  transform: translateY(0);
}

.header-inner {
  width: 80%;
}
@media screen and (max-width: 480px) {
  .header-inner {
    width: 92% !important;
  }
}
.header-inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.header-inner .h-logo {
  width: 178px;
  height: auto;
}
.header-inner .h-logo img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .header-inner .h-logo {
    display: none;
  }
}
.header-inner a {
  color: #fff;
  font-size: 15px;
}
.header-inner .h-logo_black {
  display: none;
  width: 178px;
  height: auto;
}
.header-inner .h-logo_black img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .header-inner .h-logo_black {
    width: 45%;
  }
}

.h-nav {
  margin-left: auto; /* 左側に自動で余白を作って右に寄せる */
  margin-right: 67px; /* ハンバーガーメニューとの距離を調整 */
}
.h-nav ul {
  display: flex;
  list-style: none;
}
.h-nav ul li {
  margin-right: 70px;
}
.h-nav ul li:last-child {
  margin-right: 0;
}
.h-nav ul li a:hover, .h-nav ul li a:active {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha( opacity=100 )";
}
@media screen and (max-width: 480px) {
  .h-nav ul {
    display: none;
  }
}

/*
body:not(.home){
  ul{
    li{
      color: #000;
      .jp{
        color: #000;
      }
      a{
        color: #000;
      }
      a:hover{
        color: #000;
      }
    }
  }
}
*/
.site-header.is-black .header-inner {
  color: #1d1d1d;
}
.site-header.is-black .header-inner a {
  color: #1d1d1d;
}
.site-header.is-black .h-logo_black {
  display: block;
}
@media screen and (max-width: 480px) {
  .site-header.is-black .h-logo_black {
    display: none;
  }
}
.site-header.is-black .h-logo {
  display: none;
}

.site-header:not(.home) {
  opacity: 1 !important;
  visibility: inherit !important;
  pointer-events: auto !important;
}

/* --- 日本語切り替え：完全上書き版 --- */
.nav-link {
  position: relative !important;
  display: block !important;
  overflow: hidden !important; /* 絶対に枠外を隠す */
  text-decoration: none;
  height: 1.7em;
  line-height: 1.5em;
  text-align: center;
  min-width: 110px;
  padding-top: 0.7em;
}

/* 英語と日本語の共通設定 */
.en, .jp {
  display: block;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  font-weight: normal;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* 英語：初期位置 0 */
.en {
  transform: translateY(0);
}

/* 日本語：初期位置を「枠の外」に完全に配置 */
.jp {
  position: absolute !important;
  top: 0.7em; /* 英語と同じ開始位置にする */
  left: 0;
  width: 100%;
  color: #fff;
  /* 100%分（1行分）下に下げて隠す */
  transform: translateY(100%);
}

/* --- マウスホバー時の動き --- */
/* 英語を1行分上にスライドして消す */
.nav-link:hover .en {
  transform: translateY(-145%);
}

/* 下にいた日本語を0の位置にスライドして出す */
.nav-link:hover .jp {
  transform: translateY(0);
}

/* ドットの設定（点） */
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.4s;
  opacity: 0;
}

.nav-link:hover::before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* --- 色の変数を手動指定（$w, $b2 が効かない場合の保険） --- */
.site-header.is-black .nav-link,
.site-header.is-black .nav-link .jp,
.site-header.menu-is-open .nav-link,
.site-header.menu-is-open .nav-link .jp {
  color: #1d1d1d !important;
}

.site-header.is-black .nav-link::before,
.site-header.menu-is-open .nav-link::before {
  background-color: #1d1d1d !important;
}

/*ハンバーガーメニュー*/
/* --- ヘッダー内のボタンレイアウト --- */
.menu-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10010 !important;
  pointer-events: auto;
  padding: 10px;
}

/* MENU / CLOSE テキストの制御 */
.menu-trigger__text,
.menu-trigger__text-close {
  display: block;
  color: #1d1d1d;
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: bold;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-trigger__text-close {
  position: absolute;
  left: 10px;
  opacity: 0;
  transform: translateX(10px);
}

/* 1pxの繊細なライン */
.menu-trigger__lines {
  position: relative;
  width: 28px;
  height: 14px;
}

.menu-trigger__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

/* 3本の位置固定 */
.menu-trigger__lines span:nth-child(1) {
  top: 0;
}

.menu-trigger__lines span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-trigger__lines span:nth-child(3) {
  bottom: 0;
}

/* --- アクティブ時（×印への変形） --- */
/* 1本目：斜めに回転して中央へ */
.menu-trigger.is-active .menu-trigger__lines span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* 2本目：透明にして消す */
.menu-trigger.is-active .menu-trigger__lines span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px); /* 左にスライドしながら消える演出 */
}

/* 3本目：逆方向に回転して中央へ */
.menu-trigger.is-active .menu-trigger__lines span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* 黒モード（is-black）時の色替えも忘れずに */
.site-header.is-black .menu-trigger__lines span {
  background-color: #1d1d1d;
}

/* --- メニューが開いている時（.menu-is-open）の配色 --- */
/* ヘッダー全体の文字色を黒に */
.site-header.menu-is-open .header-inner {
  color: #1d1d1d !important;
}

/* リンク（aタグ）の色も黒に */
.site-header.menu-is-open .header-inner a {
  color: #1d1d1d !important;
}

/* CLOSEテキストの色を黒に */
.site-header.menu-is-open .menu-trigger__text,
.site-header.menu-is-open .menu-trigger__text-close {
  color: #1d1d1d !important;
}

/* ハンバーガーメニューの「三本線」を黒に */
.site-header.menu-is-open .menu-trigger__lines span {
  background-color: #1d1d1d !important;
}

/* 黒いロゴ画像がある場合、表示を切り替える */
.site-header.menu-is-open .h-logo {
  display: none !important;
}

.site-header.menu-is-open .h-logo_black {
  display: block !important;
}

/* --- フルスクリーンメニュー本体 --- */
.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 初期は隠す */
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.1);
}
.full-menu .wrap {
  position: relative;
}

.full-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.menu-list {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 100px 0;
}

/* --- フルスクリーンメニュー本体（一閃・安全方向スライド版） --- */
.menu-item {
  margin: 35px 0 !important;
  position: relative !important;
  overflow: hidden !important; /* GSAPの下から湧き上がるアニメーション用 */
}
.menu-item a.menu-link-item {
  display: table !important;
  margin: 0 auto !important;
  font-size: 21px !important; /* 文字サイズを21pxに完全固定 */
  letter-spacing: 0.05em !important;
  transform: translateY(100%); /* GSAPの位置を維持 */
  color: #1d1d1d !important;
  background: transparent !important;
  opacity: 1 !important;
}
.menu-item a.menu-link-item .menu-text-inner {
  display: block !important;
  position: relative !important;
  color: #1d1d1d !important;
  -webkit-text-fill-color: #1d1d1d !important;
  background: transparent !important;
}
.menu-item a.menu-link-item .menu-text-inner::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;
  pointer-events: none !important;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 70%) !important;
  background-size: 200% 100% !important;
  background-repeat: no-repeat !important;
  background-position: 150% 0% !important;
  transition: background-position 0.8s ease-out !important;
}
.menu-item a.menu-link-item:hover {
  opacity: 1 !important;
}
.menu-item a.menu-link-item:hover .menu-text-inner {
  color: #1d1d1d !important;
  -webkit-text-fill-color: #1d1d1d !important;
}
.menu-item a.menu-link-item:hover .menu-text-inner::after {
  background-position: -150% 0% !important;
}
.menu-item .line-container,
.menu-item .line-active {
  display: none !important;
}

.last-menu {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.last-menu a {
  font-size: 12px;
  margin: 0 10px;
}
.sns_menu {
  display: flex;
}
@media screen and (max-width: 480px) {
  .sns_menu li {
    width: 8%;
  }
}
.sns_menu li img {
  width: 50%;
}

/* ==========================================================================
   スクロールインジケーター
   ========================================================================== */
.scroll-indicator {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 1px;
  height: 40vh;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 9999; /* ヘッダー(10000)より下に */
  opacity: 0;
  transition: opacity 0.5s ease;
}

.scroll-indicator.is-active {
  opacity: 1;
}

.scroll-indicator-bar {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform-origin: top;
  transform: scaleY(0);
}

@media screen and (max-width: 480px) {
  .js-project-indicator {
    display: block !important;
    right: 10px; /* 位置調整 */
  }
}
/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #000000;
  color: #7b7b7b;
  padding: 100px 0 30px 0;
  margin-top: -5px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 100px 0 85px 0;
  }
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .footer_inner {
    display: block;
  }
}

.footer_logo {
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .footer_logo {
    text-align: center;
    margin-bottom: 35px;
  }
}

.footer_address p {
  margin-bottom: 10px;
}

.name {
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .name {
    font-size: 3.5vw;
  }
}

.add {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .add {
    font-size: 3vw;
  }
}

.tel {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .tel {
    font-size: 4.5vw;
  }
}

.footer_left {
  width: 30%;
}
@media screen and (max-width: 480px) {
  .footer_left {
    width: 100%;
    margin-bottom: 60px;
  }
}

.footer_right {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .footer_right {
    width: 100%;
  }
}

.footer_nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .footer_nav {
    flex-wrap: wrap;
  }
}
.footer_nav a {
  color: #fff;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .footer_nav ul {
    width: 45%;
  }
}
.footer_nav ul li {
  margin-bottom: 40px;
}

/*フッターナビゲーション用*/
/* ==========================================================================
   FOOTER NAV専用：元のレイアウトを維持 ＋ 下線なし ＋ テキストのキラッとする動き
   ========================================================================== */
.footer_nav a {
  display: inline-block !important;
  text-decoration: none !important; /* 💡 下線を絶対に消去 */
  opacity: 1 !important;
  filter: none !important;
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 70%, rgba(255, 255, 255, 0.4) 85%, #ffffff 100%) !important;
  background-size: 200% 100% !important;
  background-position: 0% 0% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  transition: background-position 0.9s cubic-bezier(0.19, 1, 0.22, 1) !important;
}
.footer_nav a:hover, .footer_nav a:focus, .footer_nav a:active {
  text-decoration: none !important;
  outline: none !important;
}
.footer_nav a:hover {
  background-position: -200% 0% !important;
}

.copy {
  display: flex;
  justify-content: space-between;
}
.copy ul {
  display: flex;
}
.copy ul li {
  margin-right: 20px;
}

.footer_copyright {
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .footer_copyright {
    font-size: 2vw;
  }
}

/* ==========================================================================
   コンテンツ部分
   ========================================================================== */
.wrap {
  width: 80%;
  margin: auto;
}

.container {
  margin: 150px 0 0;
}
.container p {
  line-height: 2;
}
.container img {
  width: 100%;
}

/*タイトル*/
.ttl01 {
  font-size: 30px;
  font-weight: 100;
}
@media screen and (max-width: 480px) {
  .ttl01 {
    font-size: 6vw;
  }
}

/*TOPページ*/
#top01 {
  margin-bottom: 150px;
}
#top01 .wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  #top01 .wrap {
    display: block;
  }
}
#top01 h3 {
  margin-bottom: 110px;
  font-size: 30px;
}
#top01 p {
  margin-bottom: 45px;
}

.img_box {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .img_box {
    width: 100%;
  }
}

.text_box {
  width: 40%;
  margin-top: 150px;
}
@media screen and (max-width: 480px) {
  .text_box {
    width: 100%;
  }
}

#bnr > div {
  position: relative;
}
#bnr .bnr-link {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: 999;
  color: #fff;
  font-size: 30px;
  display: inline-block;
  margin-right: 10%;
}
@media screen and (max-width: 480px) {
  #bnr .bnr-link {
    font-size: 4.5vw;
  }
}

/*バナーボタン（FLOW用）*/
/* ==========================================================================
   FLOW専用：テキストのキラッとする動き ＋ 矢印の色変化（黒背景・白文字用）
   ========================================================================== */
.bnr-link {
  display: inline-block;
  text-decoration: none;
}
.bnr-link .bnr_btn p {
  margin-bottom: 0 !important;
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 70%, rgba(255, 255, 255, 0.4) 85%, #ffffff 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 最初から「白い矢印」で表示され、ホバーで白が走る設定 */
.bnr-arrow {
  position: relative;
  width: 100%;
  height: 20px;
  margin-top: 15px; /* テキストとの余白調整 */
  overflow: visible !important;
}

.bnr-arrow-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 170px; /* 170pxの長さで固定 */
}
@media screen and (max-width: 480px) {
  .bnr-arrow-line {
    width: 180%;
  }
}
.bnr-arrow-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}
.bnr-arrow-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff !important; /* くっきりした白（$w） */
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.bnr-arrow-line::after {
  content: "";
  position: absolute;
  right: 16px;
  top: -16px;
  width: 45px;
  height: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.25); /* 通常時は薄い白 */
  transform: rotate(-45deg);
  transform-origin: right top;
  transition: border-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.company .bnr-arrow-line {
  width: 230px;
}
@media screen and (max-width: 480px) {
  .company .bnr-arrow-line {
    width: 150%;
  }
}

/* ==========================================================================
   FLOW マウスオーバー時のインタラクション（白に変色）
   ========================================================================== */
.bnr-link:hover {
  opacity: 1 !important;
  filter: none !important;
}
.bnr-link:hover .bnr_btn p {
  background-position: -200% 0%;
}
.bnr-link:hover .bnr-arrow-line::before {
  transform-origin: left;
  transform: scaleX(1);
}
.bnr-link:hover .bnr-arrow-line::after {
  border-color: #ffffff !important; /* ハネもくっきり白に変色 */
}

#bnr {
  display: flex;
}

/*MAP*/
#map iframe {
  filter: grayscale(100%) invert(5%) contrast(1.1);
  /* invertやcontrastはお好みで調整してください */
}

/* ==========================================================================
main
========================================================================== */
.main-title {
  width: 100%;
  height: 52px;
  max-width: 1400px;
  margin: 0 auto 140px auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .main-title {
    margin: 0 auto 70px auto;
  }
}
.main-title .en {
  opacity: 0.1;
  color: #1d1d1d;
  font-size: 50px;
  line-height: 1;
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", serif;
}
@media screen and (max-width: 480px) {
  .main-title .en {
    font-size: 36px;
  }
}
.main-title .jp {
  color: #1d1d1d;
  font-size: 21px;
  font-weight: normal;
  z-index: 4;
  position: absolute;
  bottom: 24px;
  left: 0;
  top: auto;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", serif;
}

.main-title-wrap {
  padding-top: 280px;
}
@media screen and (max-width: 480px) {
  .main-title-wrap {
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.main-wrap {
  width: 100%;
  height: 100vh;
  margin-bottom: 190px;
  position: relative;
  overflow: hidden;
}
.main-wrap .main-img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.main-wrap .main-title {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  position: absolute;
  left: 9%;
  bottom: 80px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .main-wrap .main-title {
    left: 4%;
  }
}
.main-wrap .main-title .en {
  opacity: 0.3;
  font-size: 90px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .main-wrap .main-title .en {
    font-size: 36px;
  }
}
.main-wrap .main-title .jp {
  color: #fff;
}

/* ==========================================================================
中ページ全体
========================================================================== */
html {
  scroll-behavior: smooth;
}

#js-content:not(.home) {
  opacity: 1 !important;
  visibility: inherit !important;
}

.container-curtain-wrap .main-wrap {
  position: sticky;
  top: 0;
}
.container-curtain-wrap .container-curtain-under {
  padding-top: 190px;
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .container-curtain-wrap .container-curtain-under {
    padding-top: 100px;
  }
}

.container-page {
  margin-top: 0;
  margin-bottom: 200px;
  font-size: 15px;
  line-height: 2;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", serif;
}
@media screen and (max-width: 480px) {
  .container-page {
    margin-bottom: 100px;
  }
}
.container-page p {
  margin-bottom: 2rem;
}
.container-page img {
  width: auto;
  max-width: 100%;
}

.container-1400 {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container-1400 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container-1200 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-1100 {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container-1100 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-1060 {
  max-width: 1060px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container-1060 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-1110 {
  max-width: 1110px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container-1110 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-1000 {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container-1000 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-900 {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .container-900 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt200 {
  padding-top: 200px !important;
}

.pt300 {
  padding-top: 300px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pb300 {
  padding-bottom: 300px !important;
}

@media screen and (max-width: 480px) {
  .sp-mb10 {
    margin-bottom: 10px !important;
  }
  .sp-mb20 {
    margin-bottom: 20px !important;
  }
  .sp-mb30 {
    margin-bottom: 30px !important;
  }
  .sp-mb40 {
    margin-bottom: 40px !important;
  }
  .sp-mb50 {
    margin-bottom: 50px !important;
  }
  .sp-mb60 {
    margin-bottom: 60px !important;
  }
  .sp-mb70 {
    margin-bottom: 70px !important;
  }
  .sp-mb100 {
    margin-bottom: 100px !important;
  }
  .sp-pt50 {
    padding-top: 50px !important;
  }
  .sp-pt100 {
    padding-top: 100px !important;
  }
  .sp-pt150 {
    padding-top: 150px !important;
  }
  .sp-pb50 {
    padding-bottom: 50px !important;
  }
  .sp-pb100 {
    padding-bottom: 100px !important;
  }
}
.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.font-weight-normal {
  font-weight: normal;
}

.font-weight-demibold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: bold;
}

.font-size-13 {
  font-size: 13px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-17 {
  font-size: 17px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-25 {
  font-size: 25px !important;
}
@media screen and (max-width: 480px) {
  .font-size-25 {
    font-size: 20px !important;
  }
}

.font-size-28 {
  font-size: 28px !important;
}
@media screen and (max-width: 480px) {
  .font-size-28 {
    font-size: 22px !important;
  }
}

.font-size-30 {
  font-size: 30px !important;
}
@media screen and (max-width: 480px) {
  .font-size-30 {
    font-size: 22px !important;
  }
}

.text-underline {
  text-decoration: underline;
}

.text-under-border {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #dfdad5;
}

.ttl-normal {
  margin-bottom: 40px;
  font-weight: normal;
  font-size: 25px;
}
@media screen and (max-width: 480px) {
  .ttl-normal {
    font-size: 22px;
  }
}

.ttl-border {
  width: 100%;
  height: 1px;
  margin-bottom: 25px;
  background-color: #d8d8d8;
}
.ttl-border:before {
  content: "";
  width: 55px;
  height: 1px;
  display: block;
  background-color: #080809;
}

.d-none {
  display: none;
}

@media screen and (min-width: 481px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .sp-none {
    display: none !important;
  }
}
/* ==========================================================================
footer追加
========================================================================== */
@media screen and (min-width: 481px) {
  .footer-bnr {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .footer-bnr {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: 1s;
    visibility: hidden;
  }
  .footer-bnr.active {
    opacity: 1;
    visibility: visible;
  }
  .footer-bnr .inner {
    width: 33.3333333333%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .footer-bnr .inner:last-child {
    border: 0;
  }
}
/* ==========================================================================
concept
========================================================================== */
.concept01 {
  max-width: 1110px;
  margin: 0 auto 180px auto;
}
.concept01 .ttl {
  font-size: 25px;
}
.concept01 .txt {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.concept01 .txt .inner {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .concept01 {
    margin: 0 auto 90px auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .concept01 .ttl {
    margin-bottom: 50px;
  }
  .concept01 .mb50 {
    margin-bottom: 30px !important;
  }
}

.box-normal {
  max-width: 1400px;
  margin: 0 auto 120px auto;
}
@media screen and (max-width: 480px) {
  .box-normal .img {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 481px) {
  .box-normal {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .box-normal .img {
    width: 47%;
    text-align: center;
    margin-bottom: 30px;
  }
  .box-normal .txt {
    width: 50%;
  }
}

.concept-box {
  max-width: 1290px;
  margin: 0 auto;
}
@media screen and (min-width: 481px) {
  .concept-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .concept-box .img {
    width: 44.4%;
  }
  .concept-box .txt {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .concept-box .img {
    width: 100% !important;
    margin-bottom: 30px;
  }
}

.concept-box-ttl {
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.concept-box-ttl .no {
  font-size: 50px;
  display: block;
}
@media screen and (max-width: 480px) {
  .concept-box-ttl {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .concept-box-ttl .no {
    font-size: 34px;
  }
}

.concept-box-right {
  margin: 0 auto 120px auto;
  padding-left: calc(100% - 1290px);
}
@media screen and (max-width: 480px) {
  .concept-box-right {
    margin: 0 auto 60px auto;
  }
}
.concept-box-right .img {
  order: 2;
}
.concept-box-right .txt {
  order: 1;
}

.concept-box-left {
  margin: 0 auto 120px auto;
  padding-right: calc(100% - 1290px);
}
@media screen and (max-width: 480px) {
  .concept-box-left {
    margin: 0 auto 60px auto;
  }
}
.concept-box-left .img {
  order: 1;
}
.concept-box-left .txt {
  order: 2;
}

.concept-bg {
  padding: 150px 0 280px 0;
  background-color: #f8f8f5;
}
@media screen and (max-width: 480px) {
  .concept-bg {
    padding: 80px 15px;
  }
}

/* ==========================================================================
company
========================================================================== */
.table01 {
  width: 100%;
  margin: 0 auto;
}
.table01 th,
.table01 td {
  padding: 30px 0;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  border-bottom: 1px solid #d8d8d8;
}
.table01 th p:last-child,
.table01 td p:last-child {
  margin-bottom: 0;
}
.table01 th {
  padding-left: 10px;
  padding-right: 0;
  border-bottom: 1px solid #080809;
}
@media screen and (min-width: 481px) {
  .table01 th {
    width: 18%;
  }
}
@media screen and (max-width: 480px) {
  .table01 th {
    padding-right: 10px;
  }
}
@media screen and (min-width: 481px) {
  .table01 td {
    padding-left: 50px;
  }
}

.google-map-wrap iframe {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* ==========================================================================
works
========================================================================== */
.works-single-read-wrap {
  padding: 90px 0;
  margin: 0 auto 100px auto;
  background-color: #f9f9f9;
}
.works-single-read-wrap .works-single-read-ttl {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}
.works-single-read-wrap .works-single-read-ttl .no {
  width: 2em;
  padding: 0 0 15px 0;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2;
  border-bottom: 1px solid #080809;
}
@media screen and (max-width: 480px) {
  .works-single-read-wrap .works-single-read-ttl .no {
    font-size: 26px;
  }
}
.works-single-read-wrap .works-single-read-ttl .ttl {
  width: calc(100% - 2em);
  margin: 0;
  padding: 0 0 15px 0;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 480px) {
  .works-single-read-wrap .works-single-read-ttl .ttl {
    font-size: 26px;
  }
}

@media screen and (max-width: 480px) {
  .works-single-read .img {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 481px) {
  .works-single-read {
    display: flex;
    justify-content: space-between;
  }
  .works-single-read .txt {
    width: 42%;
    order: 1;
  }
  .works-single-read .img {
    width: 54%;
    order: 2;
  }
}

.works-single-slider {
  overflow: hidden;
  margin: 0 auto 200px auto;
}
@media screen and (max-width: 480px) {
  .works-single-slider {
    margin: 0 auto 100px auto;
  }
}

@media screen and (max-width: 480px) {
  .swiper-works .swiper-wrapper {
    display: block;
    position: inherit;
  }
  .swiper-works .swiper-button-next,
  .swiper-works .swiper-button-prev {
    display: none;
  }
  .swiper-works .swiper-slide {
    width: auto;
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 481px) {
  .swiper-works .swiper-slide {
    width: 1000px;
    height: 568px;
    text-align: center;
    background-color: #f9f9f9;
  }
  .swiper-works .swiper-slide img {
    max-height: 568px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .swiper-works .swiper-button-next,
  .swiper-works .swiper-button-prev {
    width: 78px;
    height: 78px;
    text-indent: -9999px;
  }
  .swiper-works .swiper-button-prev:after,
  .swiper-works .swiper-button-next:after {
    display: none;
  }
  .swiper-works .swiper-button-prev {
    left: calc((100% - 1200px) / 2);
    background: url(../img/slider_prev.png) no-repeat 0 0;
  }
  .swiper-works .swiper-button-next {
    right: calc((100% - 1200px) / 2);
    background: url(../img/slider_next.png) no-repeat 0 0;
  }
}

.bt-back,
#load-more {
  width: 160px;
  margin: 0 auto;
  padding: 0 0 15px 0;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid #1d1d1d;
  position: relative;
}
.bt-back::after,
#load-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #ccc;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.bt-back:hover::after,
#load-more:hover::after {
  transform: scaleX(1);
}

.works-tag-list {
  margin-bottom: 50px;
  color: #b5b3b8;
}
.works-tag-list a {
  color: #b5b3b8;
  text-decoration: none;
}
.works-tag-list a.current {
  color: #1d1d1d;
}

.works-list {
  width: 100%;
  margin: 0 auto;
}
.works-list .works-list-item {
  width: 100%;
  max-width: 565px;
  margin-bottom: 80px;
}
.works-list .works-list-item .img {
  overflow: hidden;
}
.works-list .works-list-item img {
  width: 565px;
  aspect-ratio: 565/378;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.works-list .works-list-item .img a:hover img {
  transform: scale(1.05);
  opacity: 1 !important;
}
.works-list .works-list-item .img a:hover {
  opacity: 1 !important;
}
.works-list .works-list-item .ttl {
  padding: 20px 24px 0 24px;
}
@media screen and (max-width: 480px) {
  .works-list {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
}
@media screen and (min-width: 481px) {
  .works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 5px;
    justify-content: flex-start;
    align-items: flex-start;
    place-content: center;
    place-items: flex-start;
  }
  .works-list .works-list-item {
    max-width: 100%;
    margin-bottom: 80px;
    display: grid;
    /* 子グリッドを指定 */
    grid-template-rows: subgrid;
    /* 合計1行 */
    grid-row: span 2;
    align-items: center;
  }
}
@media screen and (min-width: 481px) and (max-width: 1100px) {
  .works-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1624px) {
  .works-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
contact
========================================================================== */
@media screen and (min-width: 992px) {
  .contact-contents-wrap {
    margin-left: 250px;
  }
}

.confirm_area {
  margin-bottom: 50px;
  display: none;
}
.confirm_area .contact-table th {
  font-weight: bold;
}

/*
.formComplete{
	padding: 30px;
	color: #137600;
	font-size: 18px;
	border: 3px solid #137600;
	p:last-child{
		margin-bottom: 0;
	}
}
*/
.contact-table table {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  text-align: left;
}

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

.contact-table .req {
  color: #f52875;
  font-size: 12px;
}

.contact-table th,
.contact-table td {
  font-weight: normal;
  display: block;
}

.contact-table th {
  padding-bottom: 5px;
}

.contact-table td {
  padding-bottom: 30px;
}

.contact-table p {
  margin-bottom: 0;
}

.contact-table input[type=text],
.contact-table input[type=email],
.contact-table input[type=file],
.contact-table input[type=date],
.contact-table textarea,
.contact-table select {
  max-width: 850px;
  padding: 15px 25px;
  color: #333;
  font-size: 17px;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", serif;
  border: 1px solid #ededed;
  border-radius: 6px;
  background-color: #f6f6f6;
}

::-moz-placeholder {
  color: #9a9a9a;
}

::placeholder {
  color: #9a9a9a;
}

.contact-table textarea {
  width: 100%;
}

.contact-table input#your-zip {
  width: 10em;
}

.contact-table input#your-address,
.contact-table input#your-address-room {
  width: 100%;
}

.contact-table .wpcf7-list-item {
  display: block;
  margin: 0;
}

.form-bt-wrap {
  width: 100%;
  text-align: center;
  margin: 50px auto 0 auto;
}
.form-bt-wrap .wpcf7-spinner {
  display: none;
}

/* ボタン全体 */
.form-bt {
  position: relative;
  overflow: hidden;
  background: #1d1d1d;
}

/* 白いレイヤー */
.form-bt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
  z-index: 1;
}

/* submitボタン */
.form-bt input[type=submit],
.form-bt input[type=button] {
  width: 100%;
  height: 86px;
  display: block;
  padding: 10px;
  margin: 0 auto;
  background: transparent;
  border: 1px solid #000;
  border-radius: 0;
  color: #fff;
  font-size: 17px;
  font-family: "游明朝体", "Yu Mincho", "Noto Serif JP", serif;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

/* hover */
.form-bt:hover::before {
  transform: scaleX(1);
}

.form-bt:hover input[type=submit],
.form-bt:hover input[type=button] {
  color: #000;
}

.form-bt p {
  margin-bottom: 0;
}

/* エラー文言・完了画面 */
.wpcf7-response-output-custom {
  max-width: 1000px;
  margin: 0 auto 100px auto !important;
  text-align: center !important;
  padding: 80px !important;
  color: #137600 !important;
  font-size: 18px !important;
  border: 1px solid #137600 !important;
  border-radius: 6px;
  background-color: #fff;
}

.wpcf7-response-output {
  display: none;
  max-width: 1000px;
  margin: 0 auto 100px auto !important;
  text-align: center !important;
  padding: 80px !important;
  color: #137600 !important;
  font-size: 18px !important;
  border: 1px solid #137600 !important;
  border-radius: 6px;
  background-color: #fff;
}

.wpcf7-response-output p:last-child {
  margin-bottom: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #FF0000 !important;
  border-color: #FF0000 !important;
}

.wpcf7-not-valid-tip {
  font-weight: 500 !important;
  color: #FF0000 !important;
}

/* 完了画面の表示位置ずれ対策 */
.wpcf7 {
  min-height: 200px;
}

.wpcf7-submit {
  padding: 50px 0;
}

/* エラー文言オリジナル */
.error-message {
  display: block;
  padding: 0 0 5px 0;
  font-weight: 500 !important;
  color: #FF0000 !important;
  /*以下、ボタンをアニメーション化したので調整*/
  background-color: #fff;
  position: relative;
  z-index: 99;
}

.single-event .error-message,
.page-concept-house .error-message {
  background-color: #f6f6f6;
}

/* 2列レイアウト */
.contact-table .d-flex {
  display: flex;
  justify-content: space-between;
}
.contact-table .d-flex .inner {
  width: 48%;
  margin: 0;
}
.contact-table .d-flex.contact-td-01 {
  max-width: 690px;
}
.contact-table .d-flex.contact-td-01 .inner input {
  max-width: 294px;
}

@media screen and (max-width: 480px) {
  .contact-table th {
    padding: 15px 0 0 0;
  }
  .contact-table td {
    padding: 5px 0 15px 0;
  }
  /* スマホで横幅が広がる対策 */
  .contact-table input[type=text],
  .contact-table input[type=email],
  .contact-table input[type=file],
  .contact-table textarea,
  .contact-table select {
    width: 80% !important;
    max-width: 80% !important;
  }
  .contact-table input#your-family-name,
  .contact-table input#your-first-name,
  .contact-table input#your-family-furigana,
  .contact-table input#your-first-furigana {
    width: 64% !important;
    max-width: 64% !important;
  }
}
@media screen and (min-width: 481px) {
  .form-bt-layout {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .form-bt-send {
    width: 45%;
    order: 2;
  }
  .form-bt-back {
    width: 45%;
    order: 1;
  }
}
.contact-privacy {
  width: 100%;
  height: 340px;
  margin-bottom: 35px;
  overflow-y: scroll;
  border: 1px solid #d8d8d8;
  background-color: #fff;
}
.contact-privacy p {
  margin-bottom: 30px;
}

.contact-privacy-inner {
  padding: 40px 30px 20px 30px;
}

/* ==========================================================================
event
========================================================================== */
.event-single-box {
  margin-bottom: 120px;
}
@media screen and (min-width: 481px) {
  .event-single-box {
    display: flex;
    justify-content: space-between;
  }
}
.event-single-box .ttl {
  margin: 0;
  padding: 0 0 15px 0;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.2;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 480px) {
  .event-single-box .ttl {
    font-size: 22px;
  }
}
.event-single-box .concept-ttl01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .event-single-box .mb100 {
    margin-bottom: 50px !important;
  }
}
.event-single-box .table01 {
  margin-bottom: 50px;
}
.event-single-box .table01 th,
.event-single-box .table01 td {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media screen and (min-width: 481px) {
  .event-single-left {
    width: 50.5%;
  }
  .event-single-left-inner {
    position: sticky;
    top: 0;
  }
  .event-single-right {
    width: 43.5%;
  }
}
.event-single-img {
  margin-bottom: 40px;
}

.event-status {
  width: 160px;
  padding: 3px 5px 3px 0;
  display: inline-block;
  color: #fff;
  background-color: #adadad;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.event-status.reserv {
  background-color: #2497b3;
}
.event-status.always {
  background-color: #c16a40;
}
@media screen and (max-width: 480px) {
  .event-status {
    font-size: 16px;
  }
}

.event-single-form-bg {
  padding: 140px 0 200px 0;
  background-color: #f6f6f6;
}
@media screen and (max-width: 480px) {
  .event-single-form-bg {
    padding: 100px 0 100px 0;
  }
}
.event-single-form-bg .contact-table input[type=text],
.event-single-form-bg .contact-table input[type=email],
.event-single-form-bg .contact-table input[type=file],
.event-single-form-bg .contact-table input[type=date],
.event-single-form-bg .contact-table textarea,
.event-single-form-bg .contact-table select {
  background-color: #fff;
}
.event-single-form-bg ::-moz-placeholder {
  color: #9a9a9a;
}
.event-single-form-bg ::placeholder {
  color: #9a9a9a;
}

@media screen and (max-width: 480px) {
  .container-1000.event-list-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.event-list {
  margin-bottom: 80px;
}

.event-list-item:first-child {
  border-top: 1px solid #eeebe9;
}

.event-list-item {
  border-bottom: 1px solid #eeebe9;
}
.event-list-item a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 50px 0;
}
@media screen and (max-width: 480px) {
  .event-list-item a {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
  }
}
.event-list-item .img {
  width: 32%;
  max-height: 420px;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .event-list-item .img {
    width: 70%;
    margin: 0 0 20px auto;
  }
}
.event-list-item .img img {
  max-width: 100%;
  max-height: 420px;
  transition: 0.7s;
}
.event-list-item .txt-wrap {
  width: 58%;
  padding: 0 20px 0 0;
  margin: 0 0 0 auto;
  height: 200px;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .event-list-item .txt-wrap {
    width: 100%;
  }
}
.event-list-item .ttl {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .event-list-item .ttl {
    font-size: 16px;
    font-weight: normal;
  }
}
@media screen and (max-width: 480px) {
  .event-list-item .arrow {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .event-list-item a:after {
    content: "";
    position: absolute;
    inset: 0;
    background: #f6f6f6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
  }
  .event-list-item .arrow {
    width: 35px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6f6f6;
    position: relative;
    z-index: 10;
  }
  .event-list-item .arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
  }
  .event-list-item .arrow span {
    position: absolute;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    z-index: 10;
  }
  .event-list-item a:hover {
    opacity: 1;
  }
  .event-list-item a:hover .img img {
    transform: scale(1.1);
  }
  .event-list-item a:hover .arrow span {
    color: #fff;
  }
  .event-list-item a:hover .arrow::before {
    transform: scaleX(1);
  }
  .event-list-item a:hover:after {
    transform: scaleX(1);
  }
}

.wp-pagenavi {
  text-align: center;
  margin: 0 auto;
}
.wp-pagenavi span.pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  color: #adadad;
  border: none !important;
  font-weight: normal !important;
}
.wp-pagenavi span.current {
  color: #000000 !important;
}

/* ==========================================================================
info
========================================================================== */
.event-category-nav-line {
  width: 90px;
  padding-top: 20px;
  border-top: 1px dashed #d8d8d8;
}

@media screen and (max-width: 480px) {
  .event-category-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.event-category-nav a {
  color: #b5b3b8;
}
.event-category-nav a.current {
  color: #000;
}

@media screen and (max-width: 480px) {
  .container-1000.news-list-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.news-list {
  margin-bottom: 90px;
}

.news-list-item:first-child {
  border-top: 1px solid #eeebe9;
}

.news-list-item {
  border-bottom: 1px solid #eeebe9;
}
.news-list-item a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 25px 0;
  position: relative;
}
@media screen and (max-width: 480px) {
  .news-list-item a {
    width: auto;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-list-item .day {
  width: 94px;
  z-index: 10;
}
.news-list-item .cate {
  width: 76px;
  padding-top: 6px;
  z-index: 10;
}
.news-list-item .ttl {
  width: calc(100% - 94px - 76px);
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .news-list-item .ttl {
    width: 100%;
    padding-top: 10px;
  }
}
@media screen and (min-width: 481px) {
  .news-list-item a:after {
    content: "";
    position: absolute;
    inset: 0;
    background: #f6f6f6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
  }
  .news-list-item a:hover:after {
    transform: scaleX(1);
  }
}

.icn-cate {
  width: 56px;
  border: 1px solid #b5b3b9;
  text-align: center;
  color: #b5b3b9;
  padding: 2px 2px;
  display: block;
  font-size: 11px;
  line-height: 1.4;
}

div.fancybox-bg {
  background-color: rgba(102, 102, 102, 0.7) !important;
}

.post-nav {
  margin-top: 100px;
  padding-top: 100px;
  display: flex;
  justify-content: space-between;
}
.post-nav .prev,
.post-nav .next {
  width: auto;
}
.post-nav .prev .more_btn,
.post-nav .next .more_btn {
  width: 160px;
}
@media screen and (max-width: 480px) {
  .post-nav {
    border-top: 1px solid #d8d8d8;
  }
}
@media screen and (min-width: 481px) {
  .post-nav.border {
    border-top: 1px solid #d8d8d8;
  }
}

.news-day-wrap {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.news-day-wrap .day {
  width: 94px;
}
.news-day-wrap .cate {
  width: calc(100% - 94px);
}
.news-day-wrap .icn-cate {
  padding: 0 2px;
}

/* ==========================================================================
concenpt house
========================================================================== */
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.concepthouse-box01-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 200px;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .concepthouse-box01-wrap {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .concepthouse-box01-wrap .concepthouse-box01-bg {
    width: 100%;
  }
}
@media screen and (min-width: 481px) {
  .concepthouse-box01-wrap .concepthouse-box01-bg {
    width: calc(100% - ((100% - 1500px) / 2 + 120px));
  }
}
.concepthouse-box01-wrap .concepthouse-box01-bg {
  height: 100%;
  position: absolute;
  background-color: #f6f6f6;
}
.concepthouse-box01-wrap .concepthouse-box01-layout {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .concepthouse-box01-wrap .concepthouse-box01-layout {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
.concepthouse-box01-wrap .concepthouse-box01-layout.pt140 {
  padding-top: 140px;
}
@media screen and (max-width: 480px) {
  .concepthouse-box01-wrap .concepthouse-box01-layout.pt140 {
    padding-top: 70px;
  }
}

.concept-box01-table-wrap {
  max-width: 1000px;
  margin: -50px auto 100px auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 481px) {
  .concept-box01-table-wrap {
    margin: -150px auto 180px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .concept-box01-table-wrap .concept-box01-table-left {
    width: 478px;
  }
  .concept-box01-table-wrap .concept-box01-table-right {
    width: 440px;
  }
}
@media screen and (max-width: 480px) {
  .concept-box01-table-wrap .concept-box01-table-left {
    max-width: 250px;
    margin: 0 auto;
  }
}
.concept-box01-table-wrap .table01 th {
  width: 30%;
}

.concept-box01-txt {
  font-size: 30px;
}
@media screen and (max-width: 480px) {
  .concept-box01-txt {
    font-size: 22px;
  }
}

@media screen and (min-width: 481px) {
  .page-concept-house .concept-box .img {
    width: 48.2%;
  }
  .page-concept-house .concept-box .txt {
    width: 47%;
  }
}

/* ==========================================================================
flow
========================================================================== */
.swiper-flow-thumbnail {
  margin-bottom: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .swiper-flow-thumbnail {
    margin-bottom: 70px;
  }
}
.swiper-flow-thumbnail .swiper-wrapper {
  max-width: 700px;
  flex-wrap: wrap;
  justify-content: center;
}
.swiper-flow-thumbnail .swiper-slide {
  width: auto;
  margin-bottom: 10px;
  padding: 20px 5px 20px 5px;
  cursor: pointer;
  color: #b2b2b2;
}
@media screen and (max-width: 480px) {
  .swiper-flow-thumbnail .swiper-slide {
    padding: 10px 5px 10px 5px;
  }
}
.swiper-flow-thumbnail .swiper-slide span {
  display: none;
}
.swiper-flow-thumbnail .swiper-slide:hover {
  color: #1d1d1d;
  border-bottom: 1px solid #1d1d1d;
}
.swiper-flow-thumbnail .swiper-slide-thumb-active {
  border-bottom: 1px solid #1d1d1d;
  color: #1d1d1d;
}
.swiper-flow-thumbnail .swiper-slide-thumb-active span {
  display: inline;
}
@media screen and (min-width: 481px) {
  .swiper-flow-thumbnail .line {
    width: 100%;
  }
}

.flow-thumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.swiper-flow-main {
  margin-bottom: 120px;
}
@media screen and (min-width: 481px) {
  .swiper-flow-main .swiper-slide {
    width: 444px;
    height: 454px;
  }
  .swiper-flow-main .swiper-slide-main14 {
    width: 600px;
  }
  .swiper-flow-main .swiper-slide-main16 {
    width: 600px;
  }
}

.flow-slider-main {
  height: 340px;
  padding: 56px 50px;
  border: 1px solid #c0c0c0;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-content: start;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .flow-slider-main {
    padding: 56px 25px;
  }
}
.flow-slider-main .no {
  width: 100%;
  margin-bottom: 40px;
  font-size: 25px;
  line-height: 1.2;
}
.flow-slider-main .ttl {
  width: 100%;
  margin-bottom: 40px;
  font-size: 17px;
}
.flow-slider-main .txt {
  width: 100%;
}
.flow-slider-main .bt-wrap {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

.flow-slider-main02 {
  background: url(../img/flow_no02.png) no-repeat right 50px bottom 58px;
}

.flow-slider-main04 {
  background: url(../img/flow_no04.png) no-repeat right 50px bottom 40px;
}

.flow-slider-main05 {
  background: url(../img/flow_no05.png) no-repeat right 28px bottom 26px;
}

.flow-slider-main07 {
  background: url(../img/flow_no07.png) no-repeat right 30px bottom 38px;
}

.flow-slider-main08 {
  background: url(../img/flow_no08.png) no-repeat right 40px bottom 50px;
}

.flow-slider-main09 {
  background: url(../img/flow_no09.png) no-repeat right 50px bottom 58px;
}

.flow-slider-main10 {
  background: url(../img/flow_no10.png) no-repeat right 40px bottom 30px;
}

.flow-slider-main11 {
  background: url(../img/flow_no11.png) no-repeat right 40px bottom 40px;
}

.flow-slider-main12 {
  background: url(../img/flow_no12.png) no-repeat right 50px bottom 50px;
}

.flow-slider-main14 {
  background: url(../img/flow_no14.png) no-repeat right 30px bottom 40px;
}
@media screen and (max-width: 480px) {
  .flow-slider-main14 {
    background-position: right 5px bottom 5px;
    background-size: 65% auto;
  }
}

.flow-slider-main15 {
  background: url(../img/flow_no15.png) no-repeat right 45px bottom 60px;
}
@media screen and (max-width: 480px) {
  .flow-slider-main15 {
    background-position: right 35px bottom 30px;
  }
}

.flow-slider-main16 {
  background: url(../img/flow_no16.png) no-repeat right 40px bottom 40px;
}
@media screen and (max-width: 480px) {
  .flow-slider-main16 {
    background-position: right 20px bottom 20px;
  }
}

@media screen and (min-width: 481px) {
  .flow-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .flow-box .img {
    width: 40.6%;
  }
  .flow-box .txt {
    width: 50%;
  }
}
/* ==========================================================================
POINT
========================================================================== */
/* ios以外のときのみカーテンスクロール */
.ios-not .container-curtain-img {
  position: sticky;
  top: 0;
}

.bg-white {
  background-color: #fff;
}

.point-read {
  margin-bottom: 200px;
}
@media screen and (max-width: 480px) {
  .point-read {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 481px) {
  .point-read {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .point-read .ttl {
    width: 100%;
  }
  .point-read .txt {
    width: 58%;
    margin: 0 0 0 auto;
  }
}
.point-read .inner {
  margin-bottom: 80px;
}

.point-read-nav {
  color: #b5b3b8;
}
.point-read-nav a {
  color: #b5b3b8;
}
.point-read-nav a:hover {
  color: #1d1d1d;
  opacity: 1;
}

.point-level {
  padding-bottom: 280px;
}
@media screen and (min-width: 481px) {
  .point-level {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .point-level .inner {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .point-level {
    padding-bottom: 140px;
  }
  .point-level .inner {
    margin: 0 auto 20px auto;
  }
}

.point-ua {
  max-width: 1060px;
  margin-bottom: 100px;
}
@media screen and (min-width: 481px) {
  .point-ua {
    display: flex;
    justify-content: space-between;
  }
}
.point-ua .inner {
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .point-ua .inner {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 481px) {
  .point-ua .inner {
    width: 47.5%;
  }
}
.point-ua .inner02 {
  padding: 45px 50px;
}

.point-c {
  padding: 70px;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .point-c {
    padding: 30px;
  }
}
@media screen and (min-width: 481px) {
  .point-c {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .point-c .img {
    width: 44.5%;
  }
  .point-c .txt {
    width: 44%;
  }
}
.point-c .ttl {
  margin-bottom: 60px;
}
.point-c .ttl span {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #c0c0c0;
}

.point-ttl01 {
  margin-bottom: 20px;
  padding: 0 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  background-color: #b5b5b5;
}

.point-border-box {
  max-width: 1056px;
  margin: 0 auto;
  border: 1px solid #c0c0c0;
}
.point-border-box .point-border-box-inner {
  padding: 60px 54px;
}
@media screen and (max-width: 480px) {
  .point-border-box .point-border-box-inner {
    padding: 50px 30px;
  }
}
.point-border-box .point-border-box-flex {
  margin: 0 auto;
}
@media screen and (min-width: 481px) {
  .point-border-box .point-border-box-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .point-border-box .point-border-box-flex .img {
    width: 335px;
  }
  .point-border-box .point-border-box-flex .txt {
    width: calc(100% - 335px);
  }
}
@media screen and (max-width: 480px) {
  .point-border-box .point-border-box-flex .img {
    margin: 0 auto 30px auto;
    text-align: center;
  }
}
@media screen and (min-width: 481px) {
  .point-border-box .point-border-box-flex02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 481px) {
  .point-border-box .point-border-box-flex02 .inner {
    width: 43%;
  }
}
@media screen and (max-width: 480px) {
  .point-border-box .point-border-box-flex02 .inner {
    margin: 0 auto 15px auto;
  }
}
.point-border-box .point-border-box-flex02 .inner {
  max-width: 410px;
  padding: 15px 20px;
  color: #fff;
  background-color: #2497b2;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}

.clr-lightblue {
  color: #2497b3;
}

.indent-1 {
  margin-left: 1em;
  text-indent: -1em;
}

.indent-2 {
  margin-left: 2em;
  text-indent: -2em;
}

.indent-3 {
  margin-left: 3em;
  text-indent: -3em;
}/*# sourceMappingURL=style.css.map */