@charset "UTF-8";


/* 共通 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  color: #231815;
}

body.is-loading {
  overflow: hidden;
}

/* ==========================================
   【低速4G完全対応】ローディング・カクつき防止CSS（完全版）
========================================== */

/* 1. ローディング中は、背後のメインビジュアルを完全に隠蔽してカクつきを防止 */
body.is-loading .sec_01,
body.is-loading .sec_01 .swiper-slide,
body.is-loading .sec_01 img,
body.is-loading .slider_wrap {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* 2. ローディング画面の固定 */
#loading {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.4s ease;
  /* 0.8s → 0.4s に短縮 */
}

/* ロゴのアニメーション（0.5秒後からフワッと出る） */
.loading_logo {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  animation: loadingLogo 1.2s ease forwards;
  animation-delay: .5s;
}

.loading_logo img {
  width: min(450px, 74vw);
}

.loading-draw {
  will-change: stroke-dashoffset;
  opacity: 0;
  /* JSが制御を始めるまで完全に隠す */
}

@keyframes loadingLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. SVGの位置固定 */
.loading-line-svg {
  position: absolute;
  bottom: 10%;
  width: 100%;
  height: auto;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 4. 長さ指定をCSSから排除し、JSに任せる */
.loading-draw {
  will-change: stroke-dashoffset;
  opacity: 0;
  /* JSが制御を始めるまで隠す */
  stroke-dasharray: 1600 !important;
}

/* 5. ローディング画面全体のフェードアウト設定 */
#loading.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* =============================================
   フェードイン共通アニメーション
   .js-fade クラスを付けた要素が
   スクロールで画面に入ったときにふわっと出現する
   ============================================= */
.js-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* スライド */
/* 1. マウス・タッチ操作を物理的に遮断 */
.sec_01 .swiper,
.sec_01 .swiper-wrapper,
.sec_01 .swiper-slide {
  width: 100%;
  height: 100vh;
  /* クリックもドラッグも全てスルーさせる */
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  touch-action: none !important;
}

.sec_01 .swiper {
  overflow: hidden;
  background: #fff;
  position: relative;
}

.swiper-slide {
  background-color: #fff;
  box-sizing: content-box;
  /* 背景色を明示する */
}

.img_wrap img,
.img_wrap_02 img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  /* ブラウザ標準の画像ドラッグを禁止 */
  -webkit-user-drag: none !important;
  user-drag: none !important;
  verflow: hidden !important;
}

.swiper-slide .bg-container>.img_wrap img,
.swiper-slide .bg-container>.img_wrap_02 img {
  position: absolute;
  width: 180vw;
  height: auto;
  left: 50%;
  top: 42%;

  /* translateとscaleを1行で記述 */
  transform: translate(-50%, -50%) scale(1);

  /* 3秒間で拡大する設定 */
  transition: transform 5s linear;
  will-change: transform;
}

/* スライドがアクティブになった時 */
.swiper-slide-active .bg-container>.img_wrap img,
.swiper-slide-active .bg-container>.img_wrap_02 img {
  transform: translate(-50%, -50%) scale(0.96);
}

.swiper-slide_02 .bg-container>.img_wrap img,
.swiper-slide_02 .bg-container>.img_wrap_02 img {
  position: absolute;
}

.line-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 100% !important;
  overflow: hidden;
  display: block;
}

.draw-line {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
}

/* フェードの重なりを自然にする */
.sec_01 .swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.sec_01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
  z-index: 2;
  /* アクティブなスライドを一番上に */
}

.sec_01 .swiper-fade .swiper-slide-prev {
  z-index: 1;
  /* 一つ前のスライドをそのすぐ下に残す */
}

/* Swiper自体の背景を画像の色（または黒）に馴染ませる */
.sec_01 .swiper {
  background: #000;
  /* ここが白だと、透過した瞬間に白く光ります */
}


/* 夢テキスト */
.dream_text_wrap {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 80%;
  max-width: 850px;
}

.dream_text_wrap .img_wrap {
  width: 4.3%;
}

.dream_text_wrap .img_wrap_01 {
  margin-right: -2%;
}

.dream_text_wrap .img_wrap_02 {
  left: initial;
  margin-left: -2%;
  position: relative;
}

.dream_text_wrap .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dream_text_wrap .img_wrap_02 img {
  transform: scaleX(-1);
}

.dream_text_wrap svg {
  margin: 20px;
  vertical-align: middle;
  border-radius: 3px;
}

.dream_text {
  text-align: center;
  width: 94%;
  border-radius: 3px;
}

.dream_text_wrap img {
  width: 100%;
  padding: 1% 7%;
  border-radius: 3px;
}

.dream_text_wrap img.text_img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 7%;
}

.dream_text_wrap img.text_img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 7%;
}

.dream_text_wrap .dream_text.yellow {
  background-color: #ffbe15c7;
}

.dream_text_wrap .dream_text.green {
  background-color: #0ca66bbb;
}

.dream_text_wrap .dream_text.pink {
  background-color: #ef7faac9;
}

.dream_text_wrap .dream_text.orange {
  background-color: #ff9130de;
}

.dream_text_wrap .dream_text.blue {
  background-color: #15a1d8d8;
}

.dream_text_wrap .dream_text.ceremo_green {
  background-color: #00aaa5de;
}


.dream_text_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dream_sub_text {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: min(27px, 4.7vw);
  margin: 0 0 0.2vw 15px;
  color: #fff;
  margin: 0 0 10px 15px;
  text-shadow: 0px 0px 5px #00000045;
  letter-spacing: 0.8px;
}





/* 1. テキスト画像のみをターゲットにする（カッコ画像には影響なし） */
.dream_text_box .dream_text img {
  /* 最初は隠す */
  clip-path: inset(0 100% 0 0);
  transition: none;

  display: block;
  width: 100%;
  height: auto;
}

/* 2. is-animating が付与されたら、その img だけワイプする */
.dream_text_box.is-animating .dream_text img {
  animation: revealText 1.5s ease-out forwards;
}

@keyframes revealText {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}


/* ヘッダー */
/* ボタンのスタイル */
.hamburger {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100px;
  border: solid 1px #0069b4;
  z-index: 999;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 60%;
  height: 1px;
  background-color: #0069b4;
  transition: all 0.4s;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.hamburger span:nth-child(1) {
  top: 28%;
}

.hamburger span:nth-child(2) {
  top: 46%;
}

.hamburger span:nth-child(3) {
  top: 66%;
}

/* ボタンがアクティブな時（三本線が×になる） */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
  /* top: 71%; */
}

/* メニュー本体のスタイル */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #00ae9f;
  z-index: 998;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  flex-direction: column;
  max-height: 100vh;
  overflow-y: auto;
  padding-top: 8%;
}

.navigation .box_wrap {
  display: flex;
  width: 90%;
  justify-content: center;
  border-bottom: solid 1px #fff;
  margin: 0 auto;
}

.navigation .box_wrap .box_01 {
  width: 30%;
  max-width: 317px;
}

.box_02.nav_box {
  width: 50%;
  margin-left: 10%;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}

.box_02.nav_box .nav_list {
  width: 45%;
  margin-right: 10%;
  margin-bottom: 7%;
}

.box_02.nav_box .nav_list:nth-of-type(2n) {
  margin-right: 0;
}

.hamburger_logo_wrap a {
  width: 100%;
  height: 100%;
  display: block;
  margin-bottom: 9%;
}

.hamburger_logo_wrap a img {
  width: 100%;
}

.copy {
  font-size: min(2.7vw, 2.7vw, 33px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 12%;
}

.copy .font_size_s {
  font-size: 62%;
  letter-spacing: 1px;
}

.navigation .entry_btn .text {
  color: #0092b2;
}

.navigation .entry_btn {
  width: 100%;
  background-color: #fff;
  position: relative;
}

.navigation .box_01 .entry_btn {
  padding: 15px 40px;
  height: auto;
}

.navigation .box_01 .entry_btn .text {
  font-size: 28px;
}

.box_02.nav_box .midasi_03 {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px #fff;
}

.sub_menu_list,
.box_02.nav_box .midasi_04 {
  margin-bottom: 18px;
  font-weight: 500;
}

.arrow {
  color: #fff;
  width: 12px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navigation .arrow {
  color: #0092b2;
}

.nav_list:nth-of-type(4) .sub_menu_list:nth-of-type(2) {
  margin-bottom: 26px;
}

/* メニューがアクティブな時（ふわっと表示） */
.navigation.is-active {
  opacity: 1;
  visibility: visible;
}

.navigation__list {
  list-style: none;
  text-align: center;
}

.navigation__list li {
  margin: 20px 0;
}

.navigation__list a {
  text-decoration: none;
  color: #333;
  font-size: 24px;
  font-weight: bold;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.09) 58%, rgba(0, 0, 0, 0.25) 100%);
  /* overflow: hidden; */
  overflow: visible;
  box-sizing: border-box;
}

.header_logo_wrap a {
  display: block;
}

.header_btn_wrap {
  display: flex;
}

.header_logo_wrap {
  transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
  width: 39vw;
  max-width: 500px;
}

.header_logo_wrap img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 下スクロール時 */
.header.is-hide .header_logo_wrap {
  transform: translateY(-120%);
  opacity: 0;
}

.entry_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 150px;
  height: 50px;
  background: #006fbe;
  border: 1px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.4s ease, border 0.4s ease;
}

.entry_btn:hover {
  background-color: #fff;
  border: 1px solid #006fbe;
}

.entry_btn:hover .arrow {
  color: #006fbe;
}

.entry_btn .text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  transition: color 0.4s ease;
}

.entry_btn:hover .text {
  color: #006fbe;
}

.navigation .entry_btn .text {
  transition: color 0.4s ease;
}

.navigation .entry_btn:hover .text {
  color: #fff;
}

.navigation .entry_btn:hover {
  background-color: transparent;
  border: 1px solid #fff;
}

.navigation .entry_btn:hover .arrow {
  color: #fff;
}


.entry__btnwrap {
  margin-right: 10px;
}

.corporate_btn {
  margin: 2% auto 0;
  width: 90%;
  text-align: right;
}

.corporate_btn .entry_btn {
  background-color: transparent;
  height: auto;
  width: auto;
  padding: 13px 30px 13px 20px;
}

.corporate_btn .entry_btn .text {
  color: #fff;
  font-size: 11px;
}

.corporate_btn .arrow {
  color: #fff;
  transform: rotate(-45deg) translateY(-50%);
  width: 8px;
  top: 41%;
}

.nav-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  height: 300vh;
}

.navigation .corporate_btn {
  padding-bottom: 5%;
  margin: 2% auto 0;
}

/* 代表メッセージ */
.sec_01 {
  position: absolute;
  inset: 0;
}

.sec_02 {
  position: relative;
  z-index: 2;
  height: 400vh;
  margin-bottom: 13%;
}

.sec_02_sticky {
  position: sticky;
  top: 0;
  height: 120svh;
}


/* 白背景 */

.sec_02_overlay {
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.01);

  -webkit-backdrop-filter: blur(0.1px);
  backdrop-filter: blur(0.1px);

  transform: translateZ(0);
  will-change: backdrop-filter;

  z-index: 1;
  height: 103vh;
}


/* コンテンツ */
.sec {
  margin-bottom: 10%;
  position: relative;
}

.overflow {
  overflow: hidden;
}

.sec .inner {
  width: 92%;
  margin: 0 auto;
}

.sec_02 .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* --- 親要素の指定（既存） --- */
.sec_02 .wrap {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

/* --- 【追加】子要素の初期状態を個別に設定 --- */
.sec_02 .midasi_02,
.sec_02 .text,
.message_btn {
  opacity: 0;
  transform: translateY(30px);
  /* それぞれ個別に少し下げておく */
  transition: opacity .8s ease, transform .8s ease;
}

.message_btn {
  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.6s ease 0.7s,
    transform 0.6s ease 0.7s,
    background-color 0.4s ease,
    color 0.4s ease;
}

.message_btn:hover .arrow {
  transition: color 0.4s ease;
}

.message_btn:hover {
  background-color: #0092B2;
  color: #fff;
}

.message_btn:hover .arrow {
  color: #fff;
}

/* --- 【追加】親に動きがついた時、子要素を時間差で元の位置に戻す --- */

/* 1. 見出し（最速：親が動いてから0.1秒後） */
.sec_02 .wrap[style*="opacity: 1"] .midasi_02 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* 2. 本文（2番目：親が動いてから0.4秒後） */
.sec_02 .wrap[style*="opacity: 1"] .text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* 3. ボタン（最後：親が動いてから0.7秒後） */
.sec_02 .wrap[style*="opacity: 1"] .message_btn {
  opacity: 1;
  transform: translateY(0);
}

.message_btn {
  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.6s ease 0.7s,
    transform 0.6s ease 0.7s,
    background-color 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}

.sec_02 .inner .wrap {
  text-align: center;
  color: #0092B2;
  width: 100%;
}

.sec_02 .midasi_02 {
  font-size: clamp(25px, 5.7vw, 50px);
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1.6;
  margin-bottom: 5%;
}

.sec_02 .text {
  font-size: clamp(17px, 2.3vw, 21px);
  font-weight: 600;
  line-height: 1.9;
}

.sec_02 .arrow {
  color: #0092B2;
}

.message_btn {
  border: solid 2px #0092B2;
  padding: 6px 45px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 6%;
  position: relative;
}

.message_btn .text {
  font-size: 23px;
  position: relative;
  right: 6px;
}

/* 線アニメーション */
.message_line {
  width: 100%;
  overflow: visible;
}

/* サイトを開いた一瞬だけ代表メッセージの線が見えてしまうのを防ぐ */
.draw-message-line {
  stroke-dasharray: 2500;
  /* 十分に長い値をダミーで入れておく */
  stroke-dashoffset: 2500;
  /* 最初から完全に隠しておく */
}

.message_line_wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  height: 120vh;
}

.message_line_wrap svg {
  width: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.message_line_wrap svg.green,
.message_line_wrap svg.pink {
  inset: initial;
  bottom: 26vh;
}

.sec_02 .deco_img_wrap img {
  border-radius: 10px;
  position: absolute;
}

.sec_02 .deco_img_wrap .deco_01 {
  bottom: 10vh;
  left: 2vw;
  width: 14vw;
}

.sec_02 .deco_img_wrap .deco_02 {
  width: 12%;
  bottom: -19vh;
  left: 17vw;
}

.sec_02 .deco_img_wrap .deco_03 {
  right: 2vw;
  width: 12vw;
  bottom: 2vw;
  top: auto;
}

.sec_02 .deco_img_wrap .deco_04 {
  position: absolute;
  width: 11vw;
  right: 22vw;
  bottom: -22vh;
}

.sec02-line-svg {
  opacity: 1;
  position: absolute;
  top: 0;
}

/* グループ企業 */
.common.midasi_02 {
  font-size: 17px;
  color: #0092B2;
  font-weight: 600;
  margin-bottom: 6%;
}

.common.midasi_02.center {
  text-align: center;
}

.common.midasi_02 .font_size_l {
  display: block;
  font-size: 411%;
  line-height: 1.05;
}

.common.midasi_02 span {
  display: block;
  margin-top: 3%;
}

.group_wrap {
  background-color: #fff;
  border-radius: 25px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.group_list {
  width: 33%;
  padding: 5% 3%;
  border-right: solid 1px #D3D1D0;
  border-bottom: solid 1px #D3D1D0;
  text-align: center;
  position: relative;
}

.group_list::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  position: absolute;
  right: -5px;
  bottom: -5px;
  z-index: 1;
}

.group_list:nth-of-type(3n) {
  border-right: none;
}

.group_list:nth-child(n+4) {
  border-bottom: none;
}

.group_list .title {
  margin: 0 auto 8%;
}

.group_list_01 .title {
  width: 35%;
}

.group_list_04 .title,
.group_list_05 .title,
.group_list_06 .title {
  width: 65%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.group_list .text {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
}

.group_list .title.bold {
  font-size: clamp(15px, 2.1vw, 20px);
  font-weight: 600;
}

.group_list img {
  width: 100%;
  object-fit: scale-down;
}

/* 社員紹介 */
/* スライダー本体 */
.swiper_about_ceremo {
  width: 100%;
  overflow: visible !important;
  padding-top: 50px !important;
  padding-bottom: 10px !important;
}

/* スライドの基本設定 */
.swiper_about_ceremo .swiper-slide {
  height: 400px;
  background: #a3a3a3;
  transition: all 0.4s ease;
  transform: scale(0.9) !important;
  /* 非アクティブを少し小さくしておく */
  opacity: 1;
  position: relative;
  border-radius: 12px;
  border: 2px solid transparent;
  /* 線を引くための隙間（透明）を作っておく */
  background-clip: padding-box;
  /* 背景色が線の領域にはみ出さないようにする */
  height: 31vw;
  transition: background-size 0.4s ease;
}

.swiper_about_ceremo .swiper-slide::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: 12px;
}

.swiper_about_ceremo .swiper-slide.yellow::before {
  content: "";
  background: linear-gradient(to right, #FFAF64, #FFD024);
}

.swiper_about_ceremo .swiper-slide.green::before {
  content: "";
  background: linear-gradient(to right, #0CA66A, #49C2A7);
}

.swiper_about_ceremo .swiper-slide.pink::before {
  content: "";
  background: linear-gradient(to right, #FF6E80, #FF95AA);
}

.swiper_about_ceremo .swiper-slide.blue::before {
  content: "";
  background: linear-gradient(to right, #15A1D9, #74D9C2);
}

.swiper_about_ceremo .swiper-slide.orange::before {
  content: "";
  background: linear-gradient(to right, #FF9330, #FFBD80);
}

.swiper_about_ceremo .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  right: -10px;
  display: block;
  z-index: 0;
  mix-blend-mode: multiply;
}

.swiper_about_ceremo .swiper-slide.yellow::after {
  background-color: #FFF0B5;
}

.swiper_about_ceremo .swiper-slide.green::after {
  background-color: #D3F0E4;
}

.swiper_about_ceremo .swiper-slide.pink::after {
  background-color: #FAE3EC;
}

.swiper_about_ceremo .swiper-slide.blue::after {
  background-color: #C7E9F7;
}

.swiper_about_ceremo .swiper-slide.orange::after {
  background-color: #FFEAD6;
}

.swiper_about_ceremo .swiper-slide .inner {
  background-color: #Fff;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /* display: block; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.swiper_about_ceremo .swiper-slide .inner::before {
  content: "";
  width: 100%;
  display: block;
  height: 43vw;
  z-index: 1;
  position: absolute;
  top: 0;
  height: -webkit-fill-available;
  transition: background-size 0.4s ease;
  border-radius: 10px;
}

.swiper_about_ceremo .name_box {
  margin-top: auto;
  display: flex;
  padding: 0 6% 6% 10%;
  align-items: end;
  line-height: 1.1;
}



.swiper_about_ceremo .swiper-slide.yellow .inner::before {
  content: "";
  background: url(https://ceremohall.jp/recruit/wp-content/themes/ceremo_recruit/img/top_about_ceremo_01.webp) no-repeat;
  background-size: 100%;
  background-position: top center;
}

.swiper_about_ceremo .swiper-slide.green .inner::before {
  content: "";
  background: url(https://ceremohall.jp/recruit/wp-content/themes/ceremo_recruit/img/top_about_ceremo_02.webp) no-repeat;
  background-size: 100%;
  background-position: top center;
}

.swiper_about_ceremo .swiper-slide.pink .inner::before {
  content: "";
  background: url(https://ceremohall.jp/recruit/wp-content/themes/ceremo_recruit/img/top_about_ceremo_03.webp) no-repeat;
  background-size: 100%;
  background-position: top center;
}

.swiper_about_ceremo .swiper-slide.blue .inner::before {
  content: "";
  background: url(https://ceremohall.jp/recruit/wp-content/themes/ceremo_recruit/img/top_about_ceremo_04.webp) no-repeat;
  background-size: 100%;
  background-position: top center;
}

.swiper_about_ceremo .swiper-slide.orange .inner::before {
  content: "";
  background: url(https://ceremohall.jp/recruit/wp-content/themes/ceremo_recruit/img/top_about_ceremo_05.webp) no-repeat;
  background-size: 100%;
  background-position: top center;
}



/* 一番左（Active）だけ大きく */
.swiper_about_ceremo .swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1;
  position: relative;
}

/* ドットを赤枠に合わせる */
.swiper_about_ceremo .swiper-pagination {
  text-align: left;
  position: static;
  margin-left: 16px;
}

.swiper_about_ceremo_wrap {
  width: calc(100% - 12%);
  margin-left: 12%;
  overflow: hidden;
}

.swiper_about_ceremo .swiper-button-prev {
  margin-right: 18px;
}

.line_arrow_btn svg {
  transform: translate(-50%, -50%);
  width: 10px;
  position: absolute;
  width: 10px;
  top: 50%;
  left: 50%;
  color: #0097B7;
}

.line_arrow_btn {
  border: solid 1px #0097B7;
  border-radius: 100px;
  width: 38px;
  height: 38px;
  position: relative;
}

.line_arrow_btn.white {
  border: solid 1px #fff;
}

.line_arrow_btn.white svg {
  color: #fff;
}

.yellow .line_arrow_btn {
  border: solid 1px #FFD024;
  background-color: #FFD024;
}

.green .line_arrow_btn {
  border: solid 1px #0CA96A;
  background-color: #0CA96A;
}

.pink .line_arrow_btn {
  border: solid 1px #E578A3;
  background-color: #E578A3;
}

.blue .line_arrow_btn {
  border: solid 1px #15A5DD;
  background-color: #15A5DD;
}

.orange .line_arrow_btn {
  border: solid 1px #FF9730;
  background-color: #FF9730;
}

.yellow .line_arrow_btn svg, .green .line_arrow_btn svg, .pink .line_arrow_btn svg, .blue .line_arrow_btn svg, .orange .line_arrow_btn svg {
  color: #fff;
  transition: color 0.4s ease;
}

.swiper_about_ceremo .line_arrow_btn {
  position: relative;
  width: 38px;
  height: 38px;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}


.swiper_about_ceremo .swiper-button-prev svg {
  transform: translate(-50%, -50%) rotate(180deg);
}

.swiper_about_ceremo .swiper-button-prev svg, .swiper_about_ceremo .swiper-button-next svg {
  width: 10px;
}

.swiper_about_ceremo .swiper-button_wrap {
  display: flex;
  align-items: center;
  height: 28px;
  margin-top: 27px;
}

.swiper_about_ceremo .swiper-pagination-bullet {
  background-color: #A1D9E4;
  opacity: 1;
}

.swiper_about_ceremo .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0097B7;
}

.company_name {
  font-size: clamp(12px, 0.8vw, 13px);
  background-color: #fff;
  font-weight: 600;
  padding: 9px 10px 7px 10px;
  border-radius: 10px 10px 10px 0px;
  z-index: 4;
  position: absolute;
  display: inline-block;
  letter-spacing: 0.5px;
  top: 0;
}


.midasi_03.name_wrap {
  color: #FF9730;
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  width: calc(98% - 38px);
  margin-right: 2%;
}

.yellow .company_name, .orange .company_name, .yellow .midasi_03.name_wrap, .orange .midasi_03.name_wrap {
  color: #FF9730;
}

.green .company_name, .green .midasi_03.name_wrap {
  color: #0CA96A;
}

.pink .company_name, .pink .midasi_03.name_wrap {
  color: #E578A3;
}

.blue .company_name, .blue .midasi_03.name_wrap {
  color: #15A5DD;
}

.midasi_03.name_wrap .font_size_m,
.midasi_03.name_wrap .font_size_l {
  display: inline-block;
  background-color: #fff;
  z-index: 1;
  position: relative;
}

.midasi_03.name_wrap .font_size_m {
  font-size: 65%;
  padding: 3%;
  margin-bottom: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

}

.midasi_03.name_wrap .font_size_l {
  padding: 3% 4%;
  line-height: 1;
}

.swiper_about_ceremo .swiper-slide .line_arrow_btn {
  z-index: 1;
  position: relative;
}

.sec_04 .box {
  position: relative;
}

.sec_04 .swiper-button_wrap .line_arrow_btn:hover {
  background-color: #0097B7;
  border: solid 1px #0097B7;
}

.sec_04 .swiper-button_wrap .line_arrow_btn {
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.sec_04 .swiper-button_wrap .line_arrow_btn:hover .arrow {
  color: #fff;
}

.sec_04 .swiper-button_wrap .line_arrow_btn .arrow {
  transition: color 0.4s ease;
}

.line-svg.js-draw-scroll.bg {
  z-index: -1;
  opacity: 0.2;
}

.line-svg.js-draw-scroll.bg.pink {
  top: 4%;
}

.line-svg.js-draw-scroll.bg.blue {
  inset: auto;
  bottom: 5%;
}

.sec_03 {
  overflow: hidden;
}

.sec_03 .line-svg.js-draw-scroll.bg {
  top: 23%;
}

.sec_06 .line-svg.js-draw-scroll.bg {
  top: 26%;
}

.navigation .line-svg.js-draw-scroll.bg {
  width: 32vw;
  inset: auto;
  bottom: 0;
  left: 0;
  opacity: 1;
  max-width: 490px;
}

.swiper_about_ceremo .swiper-slide:hover .inner::before {
  background-size: 107%;
}

.swiper_about_ceremo .swiper-slide:hover .line_arrow_btn {
  background-color: #fff;
  border: solid 1px #fff;
}

.swiper_about_ceremo .swiper-slide.yellow:hover .line_arrow_btn svg {
  color: #FFD024;
}

.swiper_about_ceremo .swiper-slide.green:hover .line_arrow_btn svg {
  color: #0CA96A;
}

.swiper_about_ceremo .swiper-slide.pink:hover .line_arrow_btn svg {
  color: #E578A3;
}

.swiper_about_ceremo .swiper-slide.blue:hover .line_arrow_btn svg {
  color: #15A5DD;
}

.swiper_about_ceremo .swiper-slide.orange:hover .line_arrow_btn svg {
  color: #FF9730;
}

/* TEAM CEREMO: CSS変数でカラー制御（動的出力用） */
.sec_04 .swiper_about_ceremo .swiper-slide::before {
  background: linear-gradient(to right, var(--staff-grad-start), var(--staff-grad-end));
}
.sec_04 .swiper_about_ceremo .swiper-slide::after {
  background-color: var(--staff-sub);
}
.sec_04 .swiper_about_ceremo .swiper-slide .inner::before {
  background-image: var(--staff-photo);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}
.sec_04 .swiper_about_ceremo .swiper-slide:hover .inner::before {
  background-size: 107%;
}
.sec_04 .swiper_about_ceremo .swiper-slide .company_name,
.sec_04 .swiper_about_ceremo .swiper-slide .midasi_03.name_wrap {
  color: var(--staff-main);
}
.sec_04 .swiper_about_ceremo .swiper-slide .line_arrow_btn {
  border-color: var(--staff-main);
  background-color: var(--staff-main);
}
.sec_04 .swiper_about_ceremo .swiper-slide .line_arrow_btn svg {
  color: #fff;
}
.sec_04 .swiper_about_ceremo .swiper-slide:hover .line_arrow_btn {
  background-color: #fff;
  border-color: #fff;
}
.sec_04 .swiper_about_ceremo .swiper-slide:hover .line_arrow_btn svg {
  color: var(--staff-main);
}

/* スペシャルコンテンツ */
.sec_05 .inner {
  background: linear-gradient(317deg, rgba(69, 196, 185, 1) 0%, rgba(102, 206, 197, 1) 100%);
  border-radius: 25px;
}

.sec_05 .inner .wrap {
  width: 80%;
  margin: 0 auto;
}

.sec_05 .inner .wrap, .sec_07 .inner .wrap {
  padding: 6% 0 11%;
}

.sec_05 .midasi_02 {
  color: #fff;
}

.sec_05 .box {
  position: relative;
}

.sec_05 .box_02 {
  margin-top: 10%;
}

.sec_05 .box .special_link {
  display: block;
  width: 100%;
  height: 45vw;
  border-radius: 10px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  max-height: 700px;
}

.sec_05 .box .special_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #A1E1DB;
  margin: 8px 8px 0;
  position: absolute;
  z-index: 0;
  border-radius: 10px;
  z-index: -1;
  transform: translateZ(-1px);
}

.sec_05 .box .special_link::after {
  content: "";
  display: block;
  width: 100%;
  height: 25%;
  background-image: linear-gradient(0deg, #00000042, transparent);
  position: absolute;
  bottom: 0;
  z-index: -1;
  border-radius: 0 0 10px 10px;
}

.sec_05 .box_01 .special_link {
  background: url(../img/special_img_01.webp?0526) no-repeat;
  background-size: 105%;
  background-position: center;
}

.sec_05 .box_02 .special_link {
  background: url(../img/special_img_02.webp?0525) no-repeat;
  background-size: 105%;
  background-position: top 33% center;
}

.sec_05 .sub_midasi {
  background-color: #0097B7;
  display: inline-block;
  padding: 7px 15px 9px;
  font-size: clamp(14px, 2vw, 25px);
  font-weight: 600;
  color: #fff;
  margin-top: 3%;
}

.sec_05 .midasi_wrap {
  color: #0097B7;
  margin-top: auto;
  padding: 0 16% 0 4%;
  margin-bottom: 3.7%;
}

.sec_05 .midasi_03 {
  display: inline-block;
  background-color: #fff;
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 600;
  padding: 5px 10px 2px;
  margin-bottom: 10px;
}

.sec_05 .text {
  background-color: #fff;
  display: inline;
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 500;
  padding: 4px 10px 4px;
  line-height: 1.9;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.sec_05 .line_arrow_btn.white {
  position: absolute;
  right: 3%;
  bottom: 5%;
  background-color: #ffffff2b;
  width: 70px;
  height: 70px;
}

.sec_05 .line_arrow_btn.white svg {
  width: 16px;
}

.sec_05 .line_arrow_btn.white, .sec_05 .box .special_link {
  transition: background-color 0.4s ease, border-color 0.4s ease, background-size 0.4s ease;
}

.sec_05 .box:hover .special_link .line_arrow_btn.white {
  background-color: #0097B7;
  border: solid 1px #0097B7;
}

.sec_05 .box:hover .special_link {
  background-size: 112%;
}

/* セレモを知る */
.about_list {
  width: 48.7%;
  border-radius: 10px;
  position: relative;
  margin-bottom: 2.5%;
}

.about_list:nth-of-type(odd) {
  margin-right: 2.5%;
}

.about_list.yellow {
  background: url(../img/about_img_01.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.about_list.blue {
  background: url(../img/about_img_02.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.about_list.green {
  background: url(../img/about_img_03.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.about_list.pink {
  background: url(../img/about_img_04.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.about_list .sub_midasi {
  padding: 3px 6px 2px;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 600;
  color: #fff;
  margin-top: 3%;
  z-index: 1;
  letter-spacing: 1px;
}

.about_list.yellow .sub_midasi {
  background-color: #FFD424;
}

.about_list.blue .sub_midasi {
  background-color: #15A5DD;
}

.about_list.green .sub_midasi {
  background-color: #0CA96A;
}

.about_list.pink .sub_midasi {
  background-color: #E578A3;
}

.about_list .about_link {
  height: 19vw;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.about_list .midasi_wrap {
  padding: 0 12% 5% 6%;
  margin-top: auto;
  color: #fff;
  z-index: 1;
  width: 100%;
}

.about_list .about_link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #0000007a, transparent);
  position: absolute;
  bottom: 0;
  z-index: 0;
  border-radius: 0 0 10px 10px;
  right: 0;
}

.about_list .midasi_03 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
}

.about_list .text {
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 500;
  margin-top: 8px;
}

.about_list .line_arrow_btn {
  z-index: 1;
  position: absolute;
  right: 5%;
  bottom: 10%;
}

.about_wrap {
  display: flex;
  flex-wrap: wrap;
}

.about_wrap, .sec_07 .wrap {
  margin: 0 auto;
  width: 95%;
}

/* 募集要項 */
.sec_07 {
  background-color: #3FB5E3;
  margin-bottom: 0;
  z-index: 0;
  position: relative;
  overflow: hidden;
}

.bosyu_wrap {
  display: flex;
  flex-wrap: wrap;
}

.bosyu_wrap .bosyu_list {
  width: 48.7%;
  margin-bottom: 2.5%;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  height: 17vw;

}

.bosyu_wrap .sub_title {
  color: #15a5dd;
  background:
    linear-gradient(#15a5dd, #15a5dd) no-repeat 0 0;
  background-size: 0% 100%;
  transition:
    background-size 0.4s ease,
    color 0.4s ease;
  padding: 1px 1px 0px;
}

.bosyu_wrap .bosyu_list:hover .sub_title {
  color: #fff;
  background-size: 100% 100%;
}

.bosyu_wrap .bosyu_list:hover .line_arrow_btn {
  border: solid 1px #15A5DD;
  background-color: #fff;
}

.bosyu_wrap .bosyu_list:hover .line_arrow_btn .arrow {
  color: #15A5DD;
}

.bosyu_wrap .bosyu_list a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7%;
}

.bosyu_wrap .bosyu_list_01 {
  margin-right: 2.5%;
}

.bosyu_wrap .bosyu_list_03 {
  width: 100%;
  margin-bottom: 0;
  height: 16vw;
}

.bosyu_wrap .bosyu_list_03 a {
  align-items: center;
}

.sec_07 .common.midasi_02 {
  color: #fff;
}

.sec_07 .sub_title {
  color: #15A5DD;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 3%;
  position: absolute;
  top: 15%;
}

.sec_07 .midasi_03 {
  color: #231815;
  font-weight: 600;
  font-size: clamp(23px, 2.6vw, 37px);
}

.sec_07 .line_arrow_btn {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
  height: 53px;
}

.sec_07 .line_arrow_btn .arrow {
  width: 14px;
}

.bosyu_wrap .bosyu_list::before {
  content: "";
  display: block;
  background-color: #1C8FD1;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 8px;
  right: -8px;
  border-radius: 10px;
}

.sec_07 .bg {
  background: url(../img/footer-bg.webp) no-repeat center 30%;
  background-size: 190%;
  pointer-events: none;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
  bottom: 0;
  background-position: center bottom -24vw;
}

.sec_07 .wrap {
  padding: 7% 0 11%;
}

.sec_07 .copy {
  margin-bottom: 0;
  font-size: clamp(40px, 9vw, 88px);
}

.sec_07 .font_size_s {
  font-size: 38%;
  display: block;
  margin-top: 23px;
}

.sec_07 .box {
  position: relative;
  margin-top: 6%;
}

.sec_07 .line-svg {
  z-index: -1;
  top: -26%;
}

.footer-slider-wrapper {
  overflow: hidden;
  width: 100%;
  z-index: 1;
  position: relative;
}

.footer-slider-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 25s linear infinite;
  will-change: transform;
}

.footer-slider {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sub_menu_list a {
  display: flex;
  line-height: 1.4;
}

.font_01, .font_02 {
  display: inline-block;
}

.font_01 {
  margin-right: 2px;
}

/* スライド全体の共通設定 */
.footer-slide {
  flex-shrink: 0;
  padding: 0 20px;
  /* 写真同士の隙間 */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 1枚目（左端）のサイズ：1つ目・2つ目のul両方に一発で効きます */
.footer-slider .footer-slide:nth-child(1) {
  width: 260px;
}

/* 2枚目のサイズ */
.footer-slider .footer-slide:nth-child(2) {
  width: 180px;
}

/* 3枚目（中央・大きめ）のサイズ */
.footer-slider .footer-slide:nth-child(3) {
  width: 320px;
}

/* 4枚目のサイズ */
.footer-slider .footer-slide:nth-child(4) {
  width: 220px;
}

/* 5枚目のサイズ */
.footer-slider .footer-slide:nth-child(5) {
  width: 200px;
}

/* スライドの画像（写真自体の装飾） */
.footer-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* 角丸 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

/* フッター */
.footer .inner {
  padding: 20px;
  width: 95%;
  margin: 0 auto;
}

.footer_logo_box {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 2%;
}

.footer_logo_wrap {
  margin: 0 3% 0 0;
}

.footer_logo_wrap img {
  width: 100%;
}

footer .corporate_btn {
  text-align: left;
  width: auto;
  margin: 0;
}

.footer .entry_btn {
  background-color: transparent;
  border: solid 1px #231815;
  padding: 9px 30px 9px 20px;
}

.footer .entry_btn .arrow {
  color: #231815;
}

.footer .corporate_btn .text,
.footer .corporate_btn .arrow,
.footer .box_02.nav_box {
  color: #231815;
}

.footer .box_02.nav_box .midasi_03 {
  border-bottom: solid 1px #231815;
  font-size: 18px;
}

.footer .box_02.nav_box {
  margin: 4% 0 0;
  width: 100%;
}

.footer .box_02.nav_box .nav_list {
  width: 22.5%;
  margin-right: 3.5%;
}

.footer .box_02.nav_box .nav_list:nth-of-type(2n) {
  margin-right: 3%;
}

.footer .box_02.nav_box .nav_list:last-of-type {
  margin-right: 0;
}

.footer .sub_menu {
  font-size: 14px;
}

.box_02.nav_box .midasi_04 {
  font-size: 16px;
}

.copyright {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.tb, .dream_text_wrap img.tb {
  display: none;
}

.tb_none, .dream_text_wrap img.tb_none {
  display: block;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: calc(100% - 110px) !important;
}

.line_arrow_btn, .arrow {
  transition: all 0.4s ease;
}

.about_list:hover .line_arrow_btn {
  border: solid 1px #fff;
}

.about_list:hover .line_arrow_btn {
  background: #fff;
}

.about_list.yellow:hover .line_arrow_btn .arrow {
  color: #FFD424;
}

.about_list.blue:hover .line_arrow_btn .arrow {
  color: #15A5DD;
}

.about_list.green:hover .line_arrow_btn .arrow {
  color: #0CA96A;
}

.about_list.pink:hover .line_arrow_btn .arrow {
  color: #E578A3;
}

.about_list {
  overflow: hidden;
}

.about_list.yellow,
.about_list.blue,
.about_list.green,
.about_list.pink {
  background-size: 100%;
  transition: background-size 0.5s ease;
}

.about_list:hover.yellow,
.about_list:hover.blue,
.about_list:hover.green,
.about_list:hover.pink {
  background-size: 107%;
}


@media (max-width:1500px) {
  .sec_05 .box .special_link {
    max-width: 1000px;
    max-height: 600px;
  }

  .swiper-slide .bg-container>.img_wrap img,
  .swiper-slide .bg-container>.img_wrap_02 img {
    width: 300vw;
    max-width: 2500px;
  }
}

@media (max-width:1400px) {
  /* .swiper-slide .bg-container>.img_wrap img,
  .swiper-slide .bg-container>.img_wrap_02 img {
    width: 220vw;   
  } */
   .swiper-slide .bg-container>.img_wrap img,
  .swiper-slide .bg-container>.img_wrap_02 img {
   width: 350vw;
   max-width: 3000px;
  }
  
}

@media (max-width:768px) {
  .sec_02_sticky {
    height: 110svh;
  }

  .message_line_wrap {
    height: 110vh;
  }

  .swiper-slide_01 .img_wrap img, .swiper-slide_01 .img_wrap_02 img {
    object-position: 43% 0;
  }

  .entry_btn {
    width: 101px;
    height: 37px;
  }

  .entry_btn .text {
    font-size: 14px;
    margin-left: -6px;
  }

  .hamburger {
    width: 40px;
    height: 40px;
  }

  .header_logo_wrap a {
    width: 47vw;
  }

  .header {
    padding: 16px;
  }

  .common.midasi_02 .font_size_l {
    font-size: 215%;
    line-height: 1.2;
  }

  .common.midasi_02 .font_size_l .midasi_s {
    display: block;
    margin-top: 8px;
  }

  .group_list {
    width: 50%;
  }

  .group_list_01 .title, .group_list .title.bold {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .group_list .title.bold {
    font-size: clamp(16px, 3.6vw, 18px);
  }

  .group_list_01 .title {
    width: 55%;
  }

  .group_list .text {
    letter-spacing: 0.5px;
  }

  .group_list_04 .title, .group_list_05 .title, .group_list_06 .title {
    width: 100%;
    height: 50px;
  }

  .group_list {
    padding: 7% 2%;
  }

  .group_list:nth-of-type(3n) {
    border-right: solid 1px #D3D1D0;
  }

  .group_list:nth-of-type(2n) {
    border-right: none;
  }

  .group_list:nth-child(n+4) {
    border-bottom: solid 1px #D3D1D0;
  }

  .group_list:nth-child(n+5) {
    border-bottom: none;
  }

  .swiper_about_ceremo .swiper-slide {
    height: 80vw;
    max-height: 500px;
  }

  .sec_05 .sub_midasi {
    padding: 6px 7px 3px;
  }

  .sec_05 .text {
    padding: 2px 4px 1px;
    line-height: 1.7;
  }

  .sec_05 .text, .about_list .text {
    letter-spacing: 1.5px;
  }

  .sec_05 .box .special_link {
    height: 90vw;
  }

  .sec_05 .line_arrow_btn.white, .sec_07 .line_arrow_btn {
    width: 35px;
    height: 35px;
  }

  .sec_05 .line_arrow_btn.white svg, .sec_07 .line_arrow_btn .arrow {
    width: 10px;
  }

  .sec_05 .midasi_03 {
    padding: 3px 7px 0px;
    margin-bottom: 7px;
  }

  .sec_05 .midasi_wrap {
    padding: 0 20% 0 5%;
  }

  .about_list {
    width: 100%;
    margin-bottom: 5%;
  }

  .about_list:nth-of-type(odd) {
    margin-right: 0;
  }

  .about_list .about_link {
    height: 55vw;

  }

  .sec_02 .midasi_02 {
    letter-spacing: 2.2px;
    margin-bottom: 8%;

  }

  .bosyu_wrap .bosyu_list {
    height: 37vw;
    width: 100%;
    margin-bottom: 6%;
  }

  .bosyu_wrap .bosyu_list_02 .midasi_03, .bosyu_wrap .bosyu_list_03 .midasi_03 {
    margin-top: 6px;
  }

  .sec_07 .sub_title {
    font-size: 12px;
  }

  .bosyu_wrap .bosyu_list a {
    padding: 7% 18% 7% 7%;
  }

  .tb, .dream_text_wrap img.tb {
    display: block;
  }

  .tb_none, .dream_text_wrap img.tb_none {
    display: none;
  }

  .bosyu_wrap .bosyu_list_01 {
    margin-right: 0;
  }

  */ .sec_07 .font_size_s {
    margin-top: 15px;
  }

  .footer .box_02.nav_box .nav_list {
    width: 46.5%;
    margin-right: 7%;
  }

  .footer .box_02.nav_box .nav_list:nth-of-type(2n) {
    margin-right: 0;
  }

  .swiper-slide .sec02-line-svg {
    opacity: 1;
    width: 150%;
    top: 0;
    right: -35%;
  }

  .swiper-slide_01 .sec02-line-svg, .swiper-slide_02 .sec02-line-svg {
    top: 12%;
  }

  .swiper-slide .bg-container>.img_wrap img, .swiper-slide .bg-container>.img_wrap_02 img {
    width: 420vw;
    top: 42%;
  }

  .message_btn {
    margin-top: 9%;
  }

  .sec_02 .deco_img_wrap .deco_01 {
    bottom: auto;
    left: 2vw;
    width: 25vw;
    top: -19vh;
  }

  .sec_02 .deco_img_wrap .deco_02 {
    width: 23vw;
    bottom: -13vh;
    left: 0vw;
  }

  .sec_02 .deco_img_wrap .deco_03 {
    right: -1vw;
    width: 18vw;
    bottom: auto;
    top: -12vh;
  }

  .sec_02 .deco_img_wrap .deco_04 {
    position: absolute;
    width: 23vw;
    right: 6vw;
    bottom: -21vh;
  }

  .message_line_wrap svg.yellow {
    width: 119%;
    left: -13%;
    top: 1%;
  }

  .message_line_wrap svg.blue {
    width: 156%;
    inset: auto;
    top: 3%;
  }

  .message_line_wrap svg.pink {
    width: 153%;
    inset: auto;
    right: 2%;
    bottom: 14%;
  }

  .message_line_wrap svg.green {
    width: 130%;
    right: -20%;
  }

  .message_line_wrap svg.green, .message_line_wrap svg.pink {
    bottom: 11%;
  }

  .sec .inner {
    width: 90%;
    margin: 0 auto;
  }

  .sec {
    margin-bottom: 15%;
  }

  .common.midasi_02 {
    font-size: clamp(17px, 4vw, 25px);
  }

  .common.midasi_02 .midasi_s {
    display: block;
    margin-top: 8px;
  }

  .swiper_about_ceremo {
    padding-top: 15px !important;
  }

  .arrow {
    width: 9px;
  }

  .sec_05 .inner .wrap, .sec_07 .inner .wrap {
    padding: 12% 0 17%;
  }

  .common.midasi_02.center {
    margin-bottom: 12%;
  }

  .midasi_03.name_wrap {
    font-size: 18px;
  }

  .bosyu_wrap .bosyu_list_03 a {
    align-items: flex-start;
  }

  .company_name {
    font-size: 10px;
  }

  .sec_05 .inner .wrap {
    width: 82%;
  }

  .sec_07 {
    margin-bottom: 0;
  }

  .footer .entry_btn {
    padding: 8px 25px 8px 17px;
  }

  footer .corporate_btn {
    margin-left: 0;
    margin-top: 19px;
  }

  .footer .box_02.nav_box {
    margin: 14% 0 5%;
  }

  .footer .box_02.nav_box .midasi_03 {
    font-size: 14px;
  }

  .footer .sub_menu, .box_02.nav_box .midasi_04 {
    font-size: 12px;
  }

  .sub_menu_list {
    margin-bottom: 14px;
  }

  .footer_logo_box {
    flex-wrap: wrap;
  }

  .corporate_btn .arrow {
    width: 7px;
  }

  .footer .inner {
    padding: 9% 16px 10px;
  }

  .corporate_btn .entry_btn .text {
    font-size: 10px;
  }

  .sec_07 .bg {
    background-position: center bottom -42vw;
    background-size: 380%;
  }

  .sec_05 .box_02 {
    margin-top: 16%;
  }

  .swiper_about_ceremo .swiper-slide::after {
    top: 7px;
    right: -7px;
  }

  .sec_02 {
    height: 200vh;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
  }

  .navigation {
    padding-top: 19%;
  }

  .navigation .box_wrap {
    flex-direction: column-reverse;
    width: 87%;
    margin-bottom: 5%;
  }

  .navigation .box_wrap .box_01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 3%;
    max-width: none;
  }

  .navigation .box_02.nav_box {
    margin: 0 auto;
    width: 100%;
  }

  .navigation .box_02.nav_box .midasi_03 {
    font-size: 18px;
  }

  .navigation .sub_menu_list a, .box_02.nav_box .midasi_04 {
    font-size: 16px;
  }

  .box_02.nav_box .nav_list {
    margin-bottom: 10%;
  }

  .hamburger_logo_wrap {
    order: 3;
  }

  .navigation .copy {
    order: 2;
    margin-top: 10%;
    font-size: min(8.5vw, 8.5vw, 33px);
    margin-bottom: 8%;
  }

  .navigation .entry__btnwrap {
    order: 1;
    margin-right: 0;
  }

  .navigation .line-svg.js-draw-scroll.bg {
    width: 51vw;
    bottom: -3%;
  }



  .hamburger_logo_wrap a {
    margin-bottom: 18%;
  }

  .navigation .arrow {
    width: 12px;
  }

  .navigation .box_01 .entry_btn .text {
    font-size: 25px;
  }

  .navigation .box_02.nav_box .nav_list {
    width: 100%;
    margin-right: 0%;
  }

  .navigation .box_02.nav_box .nav_list:nth-of-type(2n) {
    margin-right: 0;
  }

  .navigation .corporate_btn .entry_btn {
    padding: 8px 25px 8px 17px;
  }

  .navigation .corporate_btn .arrow {
    width: 7px;
    top: 45%;
  }

  .navigation .corporate_btn {
    padding-bottom: 6%;
    margin: 4% auto 0;
  }

  .message_btn .text {
    font-size: 16px;
  }

  .dream_text_wrap .img_wrap {
    width: 9.9%;
  }

  .dream_text_wrap .img_wrap_01 {
    margin-right: -5%;
  }

  .dream_text_wrap .img_wrap_02 {
    margin-left: -5%;
  }

  .dream_text_wrap img {
    padding: 1% 10%;
  }

  .dream_text_wrap {
    width: 80%;
    top: 56%;
  }

  .about_list.yellow, .about_list.blue, .about_list.green, .about_list.pink {
    background-size: 120%;
  }

  .about_list:hover.yellow, .about_list:hover.blue, .about_list:hover.green, .about_list:hover.pink {
    background-size: 127%;
  }

  .sec_03 .line-svg, .sec_04 .line-svg, .sec_05 .line-svg, .sec_06 .line-svg, .sec_07 .line-svg {
    max-width: none !important;
    width: 130%;
  }

  .sec_05 .line-svg {
    width: 170%;
  }

  .sec_04 .line-svg {
    top: 27%;
  }

  .sec_07 .line-svg {
    top: -11%;
  }

  .sec_06 .line-svg {
    top: 14%;
    width: 153%;
  }

  .sec_05 .box_01 .special_link {
    background-size: 124vw;
    background-position: top 68% center;
  }

  .sec_05 .box_02 .special_link {
    background-size: 107vw;
    background-position: top 40% center;
  }

  .sec_05 .box_01:hover .special_link {
    background-size: 124vw;
  }

  .sec_05 .box_02:hover .special_link {
    background-size: 107vw;
  }

  .loading-line-svg {
    width: 100%;
    top: 45.5%;
  }

  .loading_logo {
    top: -7%;
  }

  #loading .green-line {
    stroke-width: 35px;
    transform: translateY(-5px);
  }

  #loading .blue-line {
    stroke-width: 18px;
    transform: translateY(22px);
  }

  .footer_logo_wrap {
    margin-top: 19px;
  }

  .footer_logo_box {
    margin-top: 0;
  }

  /* 1. メニューが開いた時、bodyのガタつきを完全封殺 */
  body.is-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    margin-right: 0 !important;
    /* Swiper等が追加する余白を消す */
  }

  /* 2. ヘッダーを絶対位置で固定し、左右16pxを強制する */
  body.is-open .header {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* 3. ×ボタンの余白を強制確保 */
  .hamburger {
    margin-right: 0 !important;
  }

  .group_list:nth-of-type(2n)::after {
    display: none;
  }
}

@media (max-width:480px) {
  .swiper-slide .bg-container>.img_wrap img, .swiper-slide .bg-container>.img_wrap_02 img {
    top: 79vw;
  }

  .dream_text_wrap {
    top: 100vw;
  }

  .footer_logo_wrap {
    margin-top: 0;
  }

  .footer_logo_box {
    margin-top: 2%;
  }

}