.parallax_content {
  position: relative;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.content_wrap {
  box-sizing: border-box;
  width: 1140px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 750px) and (max-width: 1140px) {
  .content_wrap {
    width: 100%;
  }
}

/* BG */
.parallax_content.img_bg_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/assets/img/bg_over_pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
/* .parallax_content.img_bg_02 {
  background-image: url("/assets/img/bg_2_pc.webp");
} */
.parallax_content.img_bg_03 {
  background-image: url("/assets/img/bg_3_pc.webp");
}
@media screen and (max-width: 750px) {
  .parallax_box {
    overflow: hidden;
  }
  .content_wrap {
    width: 100%;
    height: 100%;
    padding: 50px 0;
  }
  .parallax_content.img_bg_01::before {
    background-image: url("/assets/img/bg_over_sp.webp");
    background-size: cover;
    height: 100%;
  }
  .parallax_content.img_bg_02 {
    background-image: none;
  }
  .parallax_content.img_bg_03 {
    background: url("/assets/img/motul_teaserlp-bg-750.webp");
    background-repeat: repeat-y;
  }
}

/* アニメーション */
.animation {
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease-in-out;
  transform: translateY(20px);
}
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.animation:nth-child(1) {
  transition-delay: 0.1s;
}
.animation:nth-child(2) {
  transition-delay: 0.2s;
}
.animation:nth-child(3) {
  transition-delay: 0.3s;
}

/* fadein */
.fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s ease-in-out;
}
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* フラッシュ効果 */
.flash-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 3s ease;
}
.flash-active {
  opacity: 1;
  transition: none;
}

/* テキスト */
body {
  font-family: "Noto Sans JP", sans-serif;
}
.font_sans {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.font_arial {
  font-family: Arial, Helvetica, sans-serif;
}
.text_regular {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.text_semi_bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.text_extra_bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}
.text_black {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}
.text_left {
  text-align: left;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.img_center {
  margin: 0 auto;
}
.content_text {
  color: #221815;
  font-size: 31px;
  line-height: 1.5;
}
.content_text2 {
  color: #221815;
  font-size: 24px;
  line-height: 1.5;
}
.content_text3 {
  color: #221815;
  font-size: 54px;
  line-height: 1.5;
}
.title_text {
  color: #fff;
  font-size: 54px;
  line-height: 1.4;
}
.title_text2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.6;
}
.text_white {
  color: #fff;
}
.text_bold {
  font-weight: bold;
}
.text_line {
  text-decoration: underline;
  text-decoration-color: #c80e47;
  text-decoration-thickness: 8px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
}
.text_shadow {
  text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.7);
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media screen and (max-width: 750px) {
  .content_text {
    font-size: 5.6vw;
    line-height: 1.5;
  }
  .content_text2 {
    font-size: 5vw;
    line-height: 1.5;
  }
  .content_text3 {
    font-size: 7.5vw;
    line-height: 1.5;
  }
  .title_text {
    font-size: 9vw;
    line-height: 1.4;
  }
  .title_text2 {
    font-size: 6vw;
    line-height: 1.6;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* col */
.col_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.col_2 {
  display: flex;
}
.col_2_row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}
.col_2_center {
  align-items: center;
}
@media screen and (max-width: 750px) {
  .col_center {
    position: relative;
    left: 0;
    flex-wrap: wrap;
    transform: translate(0, 0);
    z-index: 2;
  }
  .col_2_row {
    height: 100%;
    flex-direction: unset;
  }
}

/* link */
.parallax_box a {
  text-decoration: none;
}
.parallax_box a:hover {
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.4s;
}
.btn_arrow {
  position: relative;
}
.btn_arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  right: calc(7% - 5px);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(45deg);
}
.icon_blank {
  position: relative;
}
.icon_blank::before {
  position: absolute;
  content: "";
  background: url("/assets/img/icon_blank.webp");
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  transform: translate(50%, -50%);
  margin: -5px -15px 0 0;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: transparent; /* 背景なし */
}

#headLogo {
  display: block;
}

#headLogo img {
  width: calc(300 / 1920 * 100vw); /* 1920px時に幅300pxに設定 */
  max-width: 300px; /* 最大幅を300pxに制限 */
  height: auto; /* アスペクト比を維持して高さを調整 */
  object-fit: contain; /* 画像の比率を保ちながら収める */
}

@media screen and (max-width: 750px) {
  header {
    background-color: #fff; /* スマホ時は白背景 */
    padding: 0; /* パディングを削除して高さを調整 */
    height: 60px; /* 高さを60pxに設定 */
  }
  #headLogo img {
    width: calc(125 / 750 * 100vw); /* 750px時に幅125pxに設定 */
    max-width: 125px; /* 最大幅を125pxに制限 */
    height: auto; /* 高さはアスペクト比で自動調整 */
  }
}

.spacer {
  height: 100vh; /* ヘッダー表示前にスクロール用のスペースを確保 */
}

/* Global Styles for .kv_area */
.kv_area.parallax_content {
  height: 100vh; /* ビューポートの高さを固定 */
  position: fixed; /* 全体を固定 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10; /* 他の要素より前面に配置 */
  overflow: hidden;
  pointer-events: none; /* 必要に応じて操作を無効化 */
}
.kv_area .kv_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* 背景として配置 */
}
.kv_area .kv_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.kv_area .kv_scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.kv_scroll img {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.kv_scroll img:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}
.kv_area .kv_img_col {
  width: 240px;
}
.kv_area .kv_title_col {
  width: 790px;
  margin-left: 30px;
}
.kv_area .no__kv-img .kv_img_col {
  display: none;
}
.kv_area.inactive {
  position: relative; /* 通常のスクロール状態に戻す */
  z-index: 0;
  pointer-events: auto; /* 操作を有効化 */
}

/* Responsive Styles */
@media screen and (max-width: 750px) {
  .kv_area.parallax_content {
    height: 100vh;
  }

  .kv_area .col_center {
    transform: translate(0%, -50%);
    max-width: 550px;
    margin: 0 auto;
  }

  .kv_area .kv_video {
    max-height: 100%;
  }

  .kv_area .kv_video video {
    height: 100%;
  }

  .kv_area .kv_img_col {
    width: 70%;
    padding: 0 5%;
    margin: calc(40 / 750 * 100vw) auto 0;
    order: 2;
  }

  .kv_area .kv_title_col {
    width: 100%;
    padding: 0 5%;
    margin: auto;
    order: 1;
  }

  .kv_area .logo_img {
    max-width: 174px;
    width: calc(220 / 750 * 100vw);
    margin-bottom: 0;
  }

  .kv_area .kv_title {
    margin: 10px 0 0;
  }

  .kv_area .kv_text {
    margin: 20px 0 0;
    text-align: center;
  }
}

@media screen and (min-width: 750px) and (max-width: 1140px) {
  .kv_area .col_2 {
    width: 100%;
    padding: 0 5%;
  }

  .kv_area .kv_img_col {
    width: calc(240 / 1140 * 100vw);
  }

  .kv_area .kv_title_col {
    width: calc(790 / 1140 * 100vw);
    margin-left: 30px;
  }

  .kv_area .no__kv-img .kv_title_col {
    margin: auto;
  }

  .kv_area .logo_img {
    max-width: 240px;
    width: calc(375 / 1920 * 100vw);
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1141px) {
  .kv_area .no__kv-img .kv_title_col {
    margin-left: 0;
  }
}

/* Flexbox Layout for Titles */
.kv_title_col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kv_area .logo_img {
  max-width: 240px;
  width: calc(375 / 1920 * 100vw);
  margin-bottom: 25px;
}

.kv_area .kv_title {
  margin: 20px 0 0;
}

.kv_area .kv_text {
  margin: 20px 0 0;
}

/* main_content */
.main_content {
  position: relative;
}
.main_content_video {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: -2;
}
.main_content_video video {
  background-color: #fff;
  opacity: 0.2;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}
.main_content .content_wrap {
  padding: 0;
}
.main_content .main_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 25%;
  left: 0;
  width: 500px;
  height: 540px;
  margin: 20% 0;
  z-index: 2;
}
.main_content .no__main-item-img.main_item {
  top: 35%;
  height: 480px;
}
/* .main_content .no__main-item-img .main_item_img {
  display: none;
} */
.main_content .main_item .logo_img {
  max-width: 147px;
  width: calc(250 / 1920 * 100vw);
  margin-bottom: 20px;
}
.main_content .main_item_img {
  width: 280px;
  margin: 40px auto 0;
}
.main_content .main_blc {
  position: relative;
  right: 0;
  width: 570px;
  margin: 0 0 0 auto;
  padding: 0;
  z-index: 3;
}
.main_content .main_blc::before {
  content: "";
  position: absolute;
  background: url("/assets/img/motul_teaserlp-bg-750.webp");
  background-repeat: repeat-y;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
}
.main_content .main_sub_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 570px;
  height: 493px;
  margin-bottom: 80px;
  padding-bottom: 20px;
}
.main_content .main_sub_title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url("/assets/img/ttl.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 570px;
  height: 493px;
  z-index: -1;
}
.main_content .main_sub_title2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 570px;
  height: 300px;
  margin-bottom: 80px;
}
.main_content .main_sub_title2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url("/assets/img/ttl_2.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 570px;
  height: 300px;
  z-index: -1;
}
.main_content .main_sub_title3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 540px;
  height: 132px;
  margin: 0 auto 20px;
}
.main_content .main_sub_title3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url("/assets/img/ttl_3.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 540px;
  height: 132px;
  z-index: -1;
}
.main_content .movie,.main_content .movie2 {
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.5));
  margin: 50px 15px 80px;
}
.main_content .movie:hover,.main_content .movie2:hover {
  cursor: pointer;
}

/* movie2 ホバー時のアニメーション */
.main_content .movie2 {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.main_content .movie2:hover {
  transform: scale(1.01) translateY(-1px); /* 拡大＋浮く */
  opacity: 0.9; /* 透明度 */
}

.main_content .movie2:active {
  transform: scale(0.98); /* クリック時、縮小 */
  opacity: 0.9;
}

.visitor-movie {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.visitor-movie:hover {
  transform: scale(1.01) translateY(-1px); /* 拡大＋浮く */
  opacity: 0.9; /* 透明度 */
}

.visitor-movie:active {
  transform: scale(0.98); /* クリック時、縮小 */
  opacity: 0.9;
}

.main_content .content_bg1 {
  position: relative;
  height: 2251px;
  padding: 40px 15px;
}
.main_content .content_bg1::before {
  content: "";
  position: absolute;
  background: url("/assets/img/content_bg1.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.5));
  z-index: -3;
}
.main_content .content_bg2 {
  position: relative;
  padding: 50px 0;
}
.main_content .content_bg2::before {
  content: "";
  position: absolute;
  background: #00488c;
  top: 150px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}
.main_content .content_bg2::after {
  content: "";
  position: absolute;
  background: url("/assets/img/tokusei_item_text_bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  top: 14%;
  left: 50%;
  width: 218px;
  height: 2252px;
  transform: translate(-50%, 0);
  z-index: -2;
}
.main_content .content_bg3 {
  position: relative;
  overflow: hidden;
  padding: 0 0 50px 0;
}
.main_content .content_bg3::before {
  content: "";
  position: absolute;
  background: #221815;
  top: 150px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.main_content .tokusei_item {
  padding: 0 15px;
  margin-bottom: 80px;
}
.tokusei_item_text {
  position: relative;
  width: 540px;
  height: 219px;
  padding: 20px 20px 34px;
}
.tokusei_item_text::before {
  position: absolute;
  content: "";
  background: url("/assets/img/tokusei_item_bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main_content .experience_title {
  padding: 0 50px;
  margin: 0 auto;
}
.main_content .experience_title_img {
  display: block;
  width: 25%;
  margin: 0 20px 0 0;
}
.main_content .experience_title_text {
  display: block;
  font-size: 37px;
  line-height: 1.7;
  width: 75%;
}
.main_content .experience_text {
  font-size: 32px;
  line-height: 1.5;
  padding: 15px 20px 50px;
}
.main_content .mb_1 {
  margin-top: 100px;
}
.main_content .mb_2 {
  margin-top: 600px;
}
.main_content .mb_3 {
  margin-top: 160px;
}
.main_content .mb_4 {
  margin: 50px auto;
}
.main_content .mb_5 {
  margin-bottom: 50px;
}
.main_content .p_side {
  padding: 0 15px;
}

@media screen and (min-width: 750px) and (max-width: 1140px) {
  .main_content .col_2 {
    width: 100%;
    padding: 0 2%;
  }
  .main_content .main_item {
    height: 100%;
  }
  .main_content .main_blc {
    margin-left: 3%;
  }
  .main_content .main_item .logo_img {
    max-width: 130px;
    width: calc(230 / 1920 * 100vw);
    margin-bottom: 20px;
  }
  .main_content .main_item_img {
    width: calc(450 / 1920 * 100vw);
    margin: 30px auto 0;
  }
  .content_text3 {
    font-size: 4vw;
  }
}

@media screen and (max-width: 750px) {
  .main_content .content_wrap {
    margin-top: 0;
  }
  .main_content_video {
    display: none;
  }
  .main_content .main_item {
    display: none;
  }
  .main_content .main_blc {
    width: 100%;
  }
  .main_content .main_sub_title {
    width: calc(750 / 750 * 100vw);
    height: calc(694 / 750 * 100vw);
    margin-bottom: calc(80 / 750 * 100vw);
    padding-bottom: 20px;
  }
  .main_content .main_sub_title::before {
    background: url("/assets/img/ttl_sp.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
  }
  .main_content .main_sub_title2 {
    width: 100%;
    height: calc(433 / 750 * 100vw);
    margin-bottom: 80px;
  }
  .main_content .main_sub_title2::before {
    width: calc(750 / 750 * 100vw);
    height: calc(433 / 750 * 100vw);
  }
  .main_content .main_sub_title3 {
    position: relative;
    text-align: center;
    width: 100%;
    height: calc(270 / 750 * 100vw);
    margin: 0 auto calc(40 / 750 * 100vw);
  }
  .main_content .main_sub_title3::before {
    content: "";
    display: block;
    background: url("/assets/img/ttl_3_sp.webp") no-repeat center center;
    background-size: contain;
    width: calc(700 / 750 * 100vw);
    height: calc(273 / 750 * 100vw);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .tokusei_item_text {
    width: 100%;
    height: 219px;
    padding: 20px 20px 34px;
  }
  .main_content .movie,.main_content .movie2 {
    margin: 50px 5% 80px;
  }
  .main_content .content_bg1 {
    position: relative;
    height: calc(2943 / 750 * 100vw);
    padding: 40px 5%;
  }
  .main_content .content_bg1::before {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: 0;
    width: calc(750 / 750 * 100vw);
    height: calc(2943 / 750 * 100vw);
    filter: drop-shadow(2px 4px 5px rgba(0, 0, 0, 0.5));
  }
  .main_content .content_bg2 {
    position: relative;
    padding: 50px 0 0;
    min-height: 100vh; /* 背景を途切れさせない */
    display: flex; /* 高さを確保 */
    flex-direction: column;
    justify-content: space-between;
  }
  .main_content .content_bg2::before {
    content: "";
    position: absolute;
    background: #00488c;
    top: 150px;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .main_content .content_bg2::after {
    background: url("/assets/img/tokusei_item_text_bg_sp.webp");
    background-repeat: no-repeat;
    background-size: contain;
    width: calc(340 / 750 * 100vw);
    height: 100%;
  }
  .main_content .tokusei_item {
    max-width: 600px;
    padding: 0 5%;
    margin: 0 auto calc(160 / 750 * 100vw);
  }
  .tokusei_item_img img {
    width: 100%;
  }
  .tokusei_item_text {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px 20px 34px;
  }
  .tokusei_item_text::before {
    position: absolute;
    content: "";
    background: url("/assets/img/tokusei_item_bg_sp.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .main_content .content_bg3 {
    position: relative;
    overflow: hidden;
  }
  .main_content .experience_title {
    padding: 0 5%;
  }
  .main_content .experience_title_img {
    margin: 0 20px 0 0;
  }
  .main_content .experience_title_text {
    font-size: min(7vw, 37px);
    line-height: 1.7;
  }
  .main_content .experience_text {
    font-size: min(5.5vw, 32px);
    line-height: 1.5;
    padding: 15px 3% 50px;
  }
  .main_content .mb_1 {
    margin-top: calc(100 / 750 * 100vw);
  }
  .main_content .mb_2 {
    margin-top: calc(850 / 750 * 100vw);
  }
  .main_content .mb_3 {
    margin-top: calc(250 / 750 * 100vw);
  }
  .main_content .mb_4 {
    margin: 50px auto;
  }
  .main_content .mb_5 {
    margin-bottom: 50px;
  }
  .main_content .p_side {
    padding: 0 5%;
  }
}

/* Product Section */
.product .content_wrap {
  box-sizing: border-box;
  height: 1520px;
  padding: 100px 0;
}
.product .logo_img {
  max-width: 174px;
  width: calc(370 / 1920 * 100vw);
  margin-left: 100px;
  margin-bottom: 20px;
}
.product .product_img {
  width: 280px;
  max-width: 720px;
  padding: 15px 0 25px;
}
.product .is__dummy .product_img {
  width: 100%;
  max-width: 720px;
  padding: 0;
}
.product .content_text3 {
  margin: 0 0 20px 0;
}
.product .product_link_text {
  position: relative;
  color: #221815;
  font-size: 24px;
  line-height: 1.5;
  width: 600px;
  margin: 20px auto 30px;
}
.product_link_text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: max-content; /* 文字の長さに応じる */
  margin: 0 auto; /* 中央揃え */
  padding: 0 40px; /* 左右の余白 */
}

.product_link_text::before,
.product_link_text::after {
  content: "";
  position: absolute;
  background: #00205b;
  height: 1px;
  width: 120px; /* 線の長さを調整 */
}

.product_link_text::before {
  left: 0;
  transform: translateX(-50%);
}

.product_link_text::after {
  right: 0;
  transform: translateX(50%);
}
.product_link_btn {
  background: #2185d0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.2;
  text-decoration: none;
  width: 730px;
  height: 75px;
  margin: 0 auto;
}
.product_link_btn + .product_link_text {
  margin-top: 50px;
}
.product_list {
  width: 100%;
  max-width: 720px;
  margin: 30px auto 50px;
}
.product_list .title {
  background: #00205b;
  font-size: 24px;
  padding: 3px 10px;
}
.product_list .detail {
  background: #fff;
  font-size: 24px;
  padding: 3px 10px;
}

@media screen and (min-width: 750px) and (max-width: 1140px) {
  .product_link_text::before,
  .product_link_text::after {
    width: 20%;
  }
  .product_link_text::before {
    left: -22%;
    transform: translate(-50%, -50%);
  }
  .product_link_text::after {
    right: -22%;
    transform: translate(50%, -50%);
  }
  .product .logo_img {
    width: calc(200 / 750 * 100vw);
  }
}

@media screen and (max-width: 750px) {
  .product .content_wrap {
    height: 100%;
    padding: 50px 5%;
  }
  .product .logo_img {
    width: calc(200 / 750 * 100vw);
    margin-left: 0;
    margin-bottom: 0;
  }
  .product .product_img {
    width: calc(400 / 750 * 100vw);
    padding: 25px 0 20px;
  }
  .product .img_title {
    width: calc(600 / 750 * 100vw);
    margin: 10px auto 0;
  }
  .product .content_text3 {
    margin: 10px auto 0;
  }
  .product .product_link_text {
    font-size: 4.5vw;
    line-height: 1.5;
    width: calc(460 / 750 * 100vw);
    margin: 10px auto;
    white-space: normal; /* 文字を折り返す */
    word-break: break-word; /* 単語途中でも改行可能に */
  }
  .product_link_text {
    padding: 0;
  }
  .product_link_text::before,
  .product_link_text::after {
    width: 80px;
  }
  .product_link_text::before {
    transform: translateX(-110%);
  }
  .product_link_text::after {
    transform: translateX(110%);
  }
  .product_link_btn {
    font-size: 4.5vw;
    width: 100%;
    height: calc(140 / 750 * 100vw);
    margin-top: 10px;
  }
  .product_link_btn span {
    display: inline-block;
    vertical-align: middle;
  }
  .product_link_btn + .product_link_text {
    margin-top: 50px;
  }
  .product .icon_blank::before {
    content: none;
  }
  .product_list {
    width: 100%;
    margin: 30px auto 50px;
  }
  .product_list .title {
    padding: 3px 10px;
  }
  .product_list .detail {
    padding: 3px 10px;
  }
}

/* footer */
.footer {
  background: #221815;
}
.footer .content_wrap {
  padding: 25px 0;
}
.footer .col_2 {
  justify-content: space-between;
}
.footer .icon_sns {
  justify-content: space-between;
}
.footer .icon_sns a {
  display: block;
  margin-right: 40px;
}

@media screen and (max-width: 750px) {
  .footer .content_wrap {
    padding: 20px 0;
  }
  .footer .col_2 {
    flex-wrap: wrap;
  }
  .footer .text_copyright {
    order: 2;
    width: calc(600 / 750 * 100vw);
    margin: 15px auto 0;
  }
  .footer .icon_sns {
    order: 1;
    justify-content: center;
    width: 100%;
  }
  .footer .icon_sns a {
    margin-right: 5%;
  }
  .footer .icon_sns a:last-of-type {
    margin-right: 0;
  }
}

/* ======================== */
/* モーダル全体のスタイル */
/* ======================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* モーダルを開いたとき */
.modal.is-open {
  display: flex;
}

/* モーダルウィンドウ */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  overflow-y: auto;
}

/* モーダルを閉じるボタン */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.movie2-modal.modal-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.movie2-modal .modal-video-wrap {
  position: relative;
  background: #000;
  padding: 7px;
  border-radius: 7px;
  max-width: 810px;
}

.movie2-modal .modal-video-player {
  width: 100%;
  height: auto;
}

.movie2-modal .modal-video-close {
	position: absolute;
	top: -38px;
	right: -38px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
	text-indent: -9999px;
	overflow: hidden;
  opacity: 1;
	z-index: 999;
}
.modal-video-close::before,
.modal-video-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 2px;
	background: white;
	transform-origin: center;
}
.modal-video-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal-video-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-video-close:hover {
	background: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 750px) {
  .movie2-modal .modal-video-close {
    right: 0;
  }
}

/* ======================== */
/* 表のデザイン修正 */
/* ======================== */
.vehicle-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  font-size: 16px;
}

/* 表のセル */
.vehicle-table th,
.vehicle-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

/* ヘッダー */
.vehicle-table th {
  background-color: #00205b;
  color: white;
  font-weight: bold;
}

/* ホバー時の色変更 */
.vehicle-table tr:hover {
  background-color: #f2f2f2;
}

/* ======================== */
/* 一覧を見るリンクの修正 */
/* ======================== */
.vehicle-modal-link {
  color: #00205b;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 3px 0;
}
.parallax_box a.vehicle-modal-link {
  text-decoration: underline;
}
.vehicle-modal-link:hover {
  color: #003399;
  text-decoration: none;
}
.parallax_box a.vehicle-modal-link:hover {
  text-decoration: none;
}
.arrow {
  font-weight: bold;
  color: #00205b;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.vehicle-modal-link:hover .arrow {
  color: #003399;
}

/* ======================== */
/* レスポンシブ対応 */
/* ======================== */
@media screen and (max-width: 750px) {
  .modal-content {
    width: 95%;
  }

  .vehicle-table th,
  .vehicle-table td {
    padding: 8px;
    font-size: 14px;
  }
}
