@charset "utf-8";

/*______________________________________スマホ用CSS_______________________________________________*/
@media print, screen and (max-width: 767px) {
  /*ウィンドウ幅が最大767pxまでの場合に適用*/
  .pc_content {
    display: none !important;
  }
  .sp_content {
    display: block !important;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
  }
  body {
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2em;
    color: #231815;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  a img {
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
  }
  a img:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
  }
  img {
    vertical-align: top;
  }

  .margin_b40 {
    margin-bottom: 10.667vw;
  }
  .margin_b60 {
    margin-bottom: 16vw;
  }
  .margin_b80 {
    margin-bottom: 21.333vw;
  }
  .margin_b120 {
    margin-bottom: 32vw;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    height: 12.267vw;
    margin: 0 auto;
    z-index: 3;
    /*  background-color: #fff; */
  }
  header .header_inner {
    position: relative;
    width: 100%;
    max-width: none;
    height: 12.267vw;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85); /* 白の85%不透明 */
  }
  /* 初期状態（上に隠れている） */
  header {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }

  /* スライドイン時の状態 */
  header.slide-in {
    transform: translateY(0);
    opacity: 1;
  }
  header .logo {
    position: absolute;
    bottom: 23%;
    left: 4%;
    width: 40%;
  }
  header .entry_menu {
    position: absolute;
    top: 0;
    right: 16vw;
    display: flex;
    list-style: none;
    width: 37.333vw;
    height: 12.267vw;
  }
  header .entry_menu li {
    width: 50%;
    height: 100%;
    text-align: left;
  }
  header .entry_menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
    padding: 10px 0 0 10%;
    line-height: 1.3em;
    font-size: 2.667vw;
    font-weight: 600;
    letter-spacing: -0.1em;
  }

  header .entry_menu li:nth-child(1) {
    background-color: #e83820;
  }
  header .entry_menu li:nth-child(1):hover {
    opacity: 0.8;
  }
  header .entry_menu li:nth-child(2) {
    background-color: #b60005;
  }
  header .entry_menu li:nth-child(2):hover {
    opacity: 0.8;
  }

  /*ハンバーガーメニュー*/
  nav.NavMenu {
    position: fixed; /*表示位置を固定*/
    z-index: 2; /*重ね順を変更*/
    top: 0; /*表示位置を指定*/
    right: 0; /*表示位置を指定*/
    background: rgba(255, 255, 255, 0.95); /* 白の95%不透明 */
    color: #555; /*文字色を黒にする*/
    text-align: center; /*テキストを中央揃え*/
    width: 100%; /*全幅表示*/
    height: 100vh;
    padding: 0 5%;
    transform: translateY(-100%); /*ナビを上に隠す*/
    transition: all 0.6s; /*アニメーションの時間を指定*/
    overflow-y: auto; /* ← これを追加 */
    -webkit-overflow-scrolling: touch; /* iOS滑らかスクロール対応 */
  }
  nav.NavMenu ul {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 26.667vw 0 0;
  }
  nav.NavMenu ul li {
    font-size: 1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-top: 1px solid #231815;
    text-align: left;
  }
  nav.NavMenu ul li:last-child {
    padding-bottom: 0;
    border-bottom: 1px solid #231815;
  }
  nav.NavMenu ul li a {
    display: block; /*クリックできる領域を広げる*/
    color: #231815;
    text-decoration: none;
  }
  nav.NavMenu.active {
    transform: translateY(0%); /*ナビを表示する*/
  }
  nav.NavMenu .midashi {
    position: absolute;
    top: 2.5%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    font-size: 8vw;
    font-weight: 400;
    line-height: 1.1em;
  }
  nav.NavMenu .midashi span {
    font-size: 3.733vw;
    line-height: 1.1em;
  }
  .Toggle {
    display: block;
    position: absolute; /* bodyに対しての絶対位置指定 */
    right: 0;
    top: 0;
    width: 16vw;
    height: 12.267vw;
    cursor: pointer;
    z-index: 3;
    background-color: #000;
    transition: all 0.2s; /*アニメーションの時間を指定*/
  }
  .Toggle p {
    position: absolute;
    bottom: 1.6vw;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 2.667vw;
    line-height: 1em;
  }
  .Toggle span {
    display: block;
    position: absolute;
    width: 6.933vw;
    border-bottom: solid 1px #fff;
    -webkit-transition: 0.35s ease-in-out; /*変化の速度を指定*/
    -moz-transition: 0.35s ease-in-out; /*変化の速度を指定*/
    transition: 0.35s ease-in-out; /*変化の速度を指定*/
    left: 4.8vw;
  }
  .Toggle span:nth-child(1) {
    top: 3.2vw;
  }
  .Toggle span:nth-child(2) {
    top: 5.067vw;
  }
  .Toggle span:nth-child(3) {
    top: 6.933vw;
  }
  .Toggle.active {
    display: block;
    position: absolute; /* bodyに対しての絶対位置指定 */
    right: 3.2vw;
    top: 3.2vw;
    width: 13.333vw;
    height: 13.333vw;
    cursor: pointer;
    z-index: 3;
    background-color: #000;
    border-radius: 50%;
  }
  .Toggle.active p {
    display: none;
    transition: all 0.6s; /*アニメーションの時間を指定*/
  }
  /* 最初のspanをマイナス45度に */
  .Toggle.active span:nth-child(1) {
    top: 6.4vw;
    left: 2.667vw;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: #fff;
    width: 8vw;
  }
  /* 2番目透過 */
  .Toggle.active span:nth-child(2) {
    opacity: 0;
    border-color: #0c743f;
  }
  /* 3番目のspanを45度に */
  .Toggle.active span:nth-child(3) {
    top: 6.4vw;
    left: 2.667vw;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-color: #fff;
    width: 8vw;
  }

  /*Menu アコーディオン*/
  .NavMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .NavMenu li {
    position: relative;
  }
  .submenu {
    display: none;
    padding-left: 5%;
  }
  .submenu_table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 5.867vw;
    margin-top: -3.2vw;
  }
  .submenu_table td {
    display: block;
    width: 100%;
    font-size: 3.733vw;
    line-height: 2.8em;
  }
  .NavMenu ul li.top_link {
    height: 22.667vw;
  }
  .NavMenu ul li.top_link a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 5.333vw;
    line-height: 22.667vw;
    font-weight: 400;
  }
  .NavMenu ul li.top_link a span.en {
    font-size: 3.2vw;
    margin-left: 5.6vw;
  }
  .top_link .icon {
    position: absolute;
    right: 0;
    top: 40%;
    width: 4.267vw;
    height: 4.267vw;
    display: inline-block;
  }
  .top_link .icon::before {
    content: "";
    position: absolute;
    top: 30%;
    right: 3.2vw;
    width: 3.733vw;
    height: 3.733vw;
    background-image: url(../img/menu_arw.png);
    background-size: cover;
  }
  .accordion-toggle {
    position: relative;
    align-items: center;
    text-decoration: none;
    padding: 0;
    height: 22.667vw;
    font-size: 5.333vw;
    line-height: 22.667vw;
    font-weight: 400;
  }
  .accordion-toggle span.en {
    font-size: 3.2vw;
    margin-left: 5.6vw;
  }
  .has-submenu .icon {
    position: absolute;
    right: 0;
    top: 40%;
    width: 5.333vw;
    height: 5.333vw;
    margin-right: 3.2vw;
  }
  .has-submenu .icon::before,
  .has-submenu .icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    transition: 0.3s;
  }
  .has-submenu .icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 0.533vw;
    transform: translateY(-50%);
  }
  .has-submenu .icon::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0.533vw;
    transform: translateX(-50%);
    transition: all 0.2s;
  }
  .accordion-toggle.open .icon::after {
    transform: rotate(90deg);
    transition: all 0.2s;
  }

  #toppage section.main {
    position: relative;
    padding: 0;
    color: #fff;
    text-align: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }

  /*仕事を知る*/
  .bussiness_section {
    display: block;
    background-color: #fff;
    min-height: auto;
    height: 413.333vw;
    overflow-x: hidden;
  }
  .bussiness_section .content_inner {
    position: relative;
    width: 100%;
    height: 100% !important;
    max-width: none;
    border-left: 20px solid #54c3f1;
    margin: 0 auto;
    padding-bottom: 10%;
  }
  .bussiness_section .content_inner h2 {
    position: relative;
    top: 3.2vw;
    left: 2.667vw;
    font-weight: 400;
    font-size: 3.2vw;
    color: #000;
    text-align: left;
    line-height: 1.7em;
  }
  .bussiness_section .content_inner h2 span {
    display: block;
    font-size: 5.333vw;
  }
  .bussiness_section .content_inner p.copy.sub {
    font-size: 6.667vw;
    font-weight: 700;
    line-height: 1.36em;
    letter-spacing: 0;
    white-space: nowrap;
    color: #00afec;
  }
  .bussiness_section .top_content {
    position: absolute;
    bottom: auto;
    top: 1.6%;
    right: 3%;
    text-align: right;
  }
  .bussiness_section .bussiness_right {
    position: relative;
    top: auto;
    right: auto;
    width: 86%;
    margin-top: 36%;
    margin-left: 14%;
  }
  .bussiness_section .bussiness_btn {
    width: 100%;
    margin-bottom: 4vw;
  }
  .bussiness_section .detail_index_wrap {
    background-color: #e6e6e6;
    padding: 2% 0 4% 5%;
    text-align: left;
  }
  .bussiness_section .detail_index_wrap p.midashi {
    color: #231815;
    font-size: 4.533vw;
    font-weight: 600;
    margin: 0 0 2.133vw -2.667vw;
  }
  .bussiness_section .detail_index {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .bussiness_section .detail_index li {
    width: 100%;
    margin-bottom: 2.667vw;
  }
  .bussiness_section .detail_index li img {
    width: 100%;
  }
  .kotei.js-fixed {
    position: relative;
    top: 0; /* headerの高さに合わせて調整 */
    left: 0;
    width: 100%;
    z-index: 0;
    background-color: #fff;
  }

  /*会社を知る*/
  .corp_section {
    background-color: #fff;
    height: 210.333vw !important;
    z-index: 2;
  }
  .corp_section .content_inner {
    position: relative;
    width: 100%;
    height: 100% !important;
    max-width: none;
    border-left: 24px solid #54c3f1;
    margin: 0 auto;
    background-color: #fff;
  }
  .corp_section .content_inner h2 {
    position: relative;
    top: 3.2vw;
    left: 2.667vw;
    font-weight: 400;
    font-size: 3.2vw;
    color: #000;
    text-align: left;
    line-height: 1.7em;
  }
  .corp_section .content_inner h2 span {
    display: block;
    font-size: 5.333vw;
  }
  .corp_section .content_inner p.copy.sub {
    font-size: 6.667vw;
    font-weight: 700;
    line-height: 1.36em;
    letter-spacing: 0;
    white-space: nowrap;
    text-align: right;
    color: #00afec;
  }
  .corp_section .top_content {
    position: absolute;
    bottom: auto;
    top: 3%;
    right: 3%;
    text-align: right;
  }
  .corp_section .corp_right {
    position: relative;
    top: auto;
    right: auto;
    width: 86%;
    margin-top: 36%;
    margin-left: 14%;
  }
  .corp_section .bussiness_btn {
    width: 100%;
    margin-bottom: 4vw;
  }
  .corp_section .detail_index_wrap {
    background-color: #e6e6e6;
    border: 1px solid #ccc;
    padding: 5% 0 4% 5%;
    text-align: left;
    margin-top: 5.333vw;
  }
  .corp_section .detail_index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .corp_section .detail_index li {
    width: 49%;
    margin-bottom: 2.667vw;
  }
  .corp_section .detail_index li img {
    width: 100%;
  }
  .top_corp_link {
    position: relative;
    width: 100%;
  }
  .top_corp_link .company_photo {
    width: 100%;
  }

  .corp_section .top_corp_link a.company_link01 {
    display: block;
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 25%;
    background-color: #fff;
    opacity: 0;
  }
  .corp_section .top_corp_link a.company_link02 {
    display: block;
    position: absolute;
    top: 25%;
    right: auto;
    width: 100%;
    height: 24.7%;
    background-color: #fff;
    opacity: 0;
  }
  .corp_section .top_corp_link a.company_link03 {
    display: block;
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 0;
    width: 49%;
    height: 24.7%;
    background-color: #fff;
    opacity: 0;
  }
  .corp_section .top_corp_link a.company_link04 {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    width: 49%;
    height: 24.7%;
    background-color: #fff;
    opacity: 0;
  }
  .corp_section .top_corp_link a.company_link05 {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 49%;
    height: 24.7%;
    background-color: #fff;
    opacity: 0;
  }
  .corp_section .top_corp_link a.company_link06 {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 49%;
    height: 24.7%;
    background-color: #fff;
    opacity: 0;
  }
  .corp_section .top_corp_link a.company_link01:hover,
  .corp_section .top_corp_link a.company_link02:hover,
  .corp_section .top_corp_link a.company_link03:hover,
  .corp_section .top_corp_link a.company_link04:hover,
  .corp_section .top_corp_link a.company_link05:hover,
  .corp_section .top_corp_link a.company_link06:hover {
    opacity: 0.2;
  }

  /*photo_bg*/
  section.photo_bg {
    position: relative;
    background-image: url(../img/003.jpg);
    height: 600px !important;
    background-size: cover;
    background-position: 63% center;
  }
  section.photo_bg .copy {
    color: #fff;
    font-size: 11.733vw;
    font-weight: 700;
    text-align: right;
    max-width: none;
    margin: 0 auto;
    line-height: 1.8em;
    padding-top: 29.333vw;
    padding-right: 10.667vw;
  }

  #bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
  }

  /*ファーストビュー*/
  .main .content_inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0 auto;
  }
  .main .content_inner h2 {
    position: absolute;
    top: 16vw;
    left: 6.667vw;
    font-weight: 300;
    font-size: 3.2vw;
    color: #000;
  }
  .main .content_inner p.copy {
    font-size: 10.667vw;
    font-weight: 700;
    line-height: 1.8em;
    letter-spacing: 0;
    white-space: nowrap;
    text-align: left;
    margin-left: 6%;
  }
  .main .top_content {
    position: absolute;
    top: 25%;
    left: 3%;
  }
  .main .about_btn {
    position: absolute;
    bottom: 32vw;
    right: 0;
    width: 80%;
  }
  .main .content_inner p.copy.sub {
    position: absolute;
    bottom: 9.333vw;
    left: 13%;
    font-size: 7.467vw;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 0;
    white-space: nowrap;
    text-align: left;
  }
  /*募集要項*/
  #recruit_detail {
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    background-color: #fff;
    border-top: 1px solid #ddd;
    margin: 0 auto;
    z-index: 2;
  }
  #recruit_detail .content_inner {
    max-width: none;
    width: 100%;
    margin: 5px auto 8px;
  }
  #recruit_detail .content_inner h2 {
    font-weight: 400;
    font-size: 1.8vw;
    color: #000;
    text-align: left;
    line-height: 1.9em;
    margin-left: 5%;
  }
  #recruit_detail .content_inner h2 span {
    display: block;
    font-size: 4.267vw;
  }
  #recruit_detail .recruit_detail_btn {
    display: flex;
    justify-content: space-between;
  }
  #recruit_detail .recruit_detail_btn a {
    display: block;
    width: 50%;
    height: 17.2vw;
    text-align: center;
  }
  #recruit_detail .recruit_detail_btn a:hover {
    opacity: 0.75;
  }
  #recruit_detail .recruit_detail_btn a:first-child {
    background-color: #e60012;
    line-height: 16.967vw;
    color: #fff;
    text-decoration: none;
    height: 17.2vw;
    font-size: 3.5vw;
    font-weight: 600;
  }
  #recruit_detail .recruit_detail_btn a:last-child {
    background-color: #b60005;
    line-height: 16.967vw;
    color: #fff;
    text-decoration: none;
    font-size: 3.5vw;
    font-weight: 600;
  }

  /*フッター*/
  footer {
    position: relative;
    width: 100%;
    height: 98vw;
    background-color: #000;
    text-align: center;
    color: #fff;
    overflow: hidden;
    z-index: 2;
    padding: 0 5% 5%;
  }
  footer a {
    text-decoration: none;
    color: #fff;
  }
  footer #bottom_logo {
    width: 70vw;
    margin: 25px auto 10px;
  }
  footer .footer_bottom {
    position: relative;
    border-top: 1px solid #fff;
    width: 100%;
    height: 49.333vw;
    margin: 0 auto;
    padding: 0;
  }
  footer .footer_bottom .footer_corp_name {
    position: absolute;
    top: 1.7vw;
    left: 5%;
    font-size: 3.8vw;
  }
  footer a.footer_site_link {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    text-decoration: none;
    color: #fff;
    font-size: 3vw;
  }
  footer a.footer_site_link.pc_content {
    display: none;
  }
  footer .footer_bottom .footer_left {
    position: absolute;
    top: 14vw;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-size: 2.3vw;
    line-height: 1.46em;
    text-align: left;
  }
  footer .footer_bottom .copyright {
    position: absolute;
    bottom: 2.667vw;
    right: auto;
    left: 5%;
    font-size: 2.3vw;
  }

  /*文字アニメ*/
  .copy .char {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
  }

  .copy.animate .char {
    animation: fadeUp 0.9s ease forwards;
    animation-delay: calc(var(--char-index) * 0.1s);
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(-40%);
    }
  }

  /*モーダル*/
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 239, 239, 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .modal.white {
    background: #efefef;
  }
  .modal.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  body.modal-open {
    overflow: hidden;
    padding-right: 4.533vw; /* スクロールバー分のズレ補正（必要に応じて） */
  }
  #modal1.modal {
    background: rgba(35, 24, 21, 1);
  }
  .modal-inner {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    margin-top: -18.667vw;
    margin-bottom: 24vw;
  }
  .close {
    position: sticky;
    top: 5.333vw;
    right: 0;
    height: 13.333vw;
    width: 13.333vw;
    cursor: pointer;
    margin-left: calc(100% - 17vw);
    z-index: 2;
  }
  .close img {
    width: 13.333vw;
    height: 13.333vw;
  }
  .close img:hover {
    opacity: 0.75;
  }

  #modal1 .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    width: 100%;
    max-height: 100vh; /* ← 高さ制限を設定 */
    overflow-y: auto; /* ← 縦スクロールを許可 */
    text-align: left;
    color: #fff;
    box-sizing: border-box;
  }
  .modal-content .top_about_main {
    position: relative;
    width: 100%;
    height: 69.333vw;
    background-image: url(../img/about_bg01.jpg);
    background-size: cover;
    background-position: top center;
    border-bottom: 2px solid #fff;
  }
  .modal-content .about_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    border-left: 12px solid #54c3f1;
    height: 77%;
    padding-left: 5.333vw;
  }
  .modal-content .about_inner h2 {
    font-size: 5.333vw;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 2.667vw;
  }
  .modal-content .about_inner .txt01 {
    font-size: 2.4vw;
    font-weight: 400;
    line-height: 1.7em;
  }
  .modal-content .about_inner .company_name {
    font-size: 5.333vw;
    font-weight: 400;
    line-height: 1.4em;
    position: absolute;
    bottom: 10%;
    left: 5.333vw;
  }
  .modal-content .about_inner .company_name span {
    font-size: 6.667vw;
    font-weight: 700;
  }
  .modal-content .top_about_content {
    position: relative;
    background-image: url(../img/mordal_bg.jpg);
    background-size: contain;
    background-repeat: repeat-y;
    background-position: top center;
  }
  .modal-content .top_about_content .top_about_inner {
    padding: 2% 7% 7%;
    font-size: 3.2vw;
    line-height: 1.6em;
    margin-bottom: 0;
  }
  .modal-content .top_about_content .txt02 {
    font-size: 3.2vw;
    font-weight: 400;
    line-height: 1.7em;
    margin-bottom: 2em;
  }
  .modal-content .top_about_content h3 {
    font-size: 3.733vw;
    font-weight: 500;
    line-height: 1.7em;
    color: #7ecef4;
  }

  /*--------------------------下層ページ--------------------------------*/

  .lower_main {
    position: relative;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 46px auto 20px;
    padding: 0;
    overflow: hidden;
    color: #fff;
  }
  .lower_main .en_title {
    position: absolute;
    top: 3%;
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: none;
    font-weight: 600;
    font-size: 2.867vw;
    color: #231815;
  }
  .lower_main img.bg_photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .lower_main .head_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 77%;
    width: 100%;
    text-align: left;
    border-left: 17px solid #54c3f1;
    padding: 0 0 0 5%;
  }
  .lower_main .lower_midashi {
    font-size: 7.667vw;
    font-weight: 400;
    line-height: 5em;
    color: #fff;
  }
  .lower_main .head_txt {
    position: absolute;
    bottom: 13%;
    left: 5%;
    font-size: 3.6vw;
    font-weight: 600;
    line-height: 1.7em;
    color: #fff;
  }

  /*ビジネスの流れ*/
  .lower_flow_content {
    width: 90%;
    margin: 0 5%;
    position: relative;
    padding: 0;
    text-align: left;
    color: #231815;
  }
  .lower_flow_content .txt01 {
    font-size: 4.8vw;
    margin: 4.533vw 0;
  }

  .lower_flow_content .txt02 {
    font-size: 3.5vw;
    line-height: 1.8em;
  }
  .lower_flow_content .chart_midashi {
    line-height: 1.8em;
    width: 100%;
    height: 12vw;
    background-color: #54c3f1;
    margin-top: 5.333vw;
    color: #fff;
    font-size: 4vw;
    font-weight: 600;
    line-height: 12vw;
    padding: 0 5.333vw;
  }
  .lower_flow_content .chart {
    display: flex;
    justify-content: space-between;
    margin-top: 8vw;
    margin-bottom: 5vw;
  }
  .lower_flow_content .chart li:first-child {
    width: 38%;
  }
  .lower_flow_content .chart li:last-child {
    width: 59%;
  }
  .lower_flow_content .chart li img {
    width: 100%;
  }
  .lower_flow_content .chart li .flow_komidashi {
    background-color: #040000;
    color: #fff;
    text-align: center;
    height: 6.933vw;
    line-height: 6.667vw;
    border-radius: 5.333vw;
    font-size: 3.6vw;
    font-weight: 700;
    margin-bottom: 1vw;
  }
  .lower_flow_content .chart li .flow_txt01 {
    font-size: 2.7vw;
    line-height: 1.3em;
    font-weight: 400;
    margin-bottom: 0.5vw;
  }
  .lower_flow_content .chart li img.flow_arw {
    width: 10%;
    margin: 5px 45% 0;
  }
  #biz_menu {
    display: block;
    width: 100%;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding-top: 0;
    border-top: none;
  }
  #biz_menu img {
    width: 100%;
  }
  #biz_menu .biz_menu-inner {
    width: 100%;
    margin-bottom: 0;
    font-size: 3vw;
  }
  #biz_menu .biz_menu-inner.description {
    width: 70%;
    margin-bottom: 8vw;
  }
  #biz_menu h2 {
    width: 100%;
    padding: 1% 5% 0;
    font-size: 3.2vw;
    font-weight: 600;
    background-color: #e6e6e6;
  }
  #biz_menu .biz_menu_index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #e6e6e6;
    padding: 0 5% 5%;
  }
  #biz_menu .biz_menu_index li {
    width: 49%;
    margin-bottom: 2%;
  }
  #entry_wrap {
    width: 90%;
    max-width: none;
    margin: 0 5% 5px;
    border-top: 1px solid #ddd;
    padding: 1vw 0 2vw;
    font-size: 2.1vw;
  }
  #entry_wrap p {
    font-size: 2.7vw;
  }
  #entry_wrap a {
    display: block;
    background-color: #b60005;
    height: 14vw;
    line-height: 13.8vw;
    padding: 0 5%;
    margin: 1% 0 0 0;
    color: #fff;
    font-size: 2.7vw;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
  }
  #entry_wrap a:hover {
    opacity: 0.75;
  }
  #interview {
    width: 90%;
    max-width: none;
    margin: 0 5%;
    border-top: 1px solid #ddd;
    padding: 2vw 0;
    font-size: 4.8vw;
  }
  #interview div {
    display: block;
    background-color: #9fa0a0;
    height: 10vw;
    line-height: 9.8vw;
    padding: 0 5%;
    margin: 1% 0 1% 0;
    color: #fff;
    font-size: 3vw;
    font-weight: 600;
    cursor: pointer;
  }
  #interview div:hover {
    opacity: 0.75;
  }

  /*biz modal*/
  #biz_modal1 .modal-content {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 100vh; /* ← 高さ制限を設定 */
    overflow-y: auto; /* ← 縦スクロールを許可 */
    text-align: left;
    color: #fff;
    box-sizing: border-box;
  }
  #biz_modal1.modal {
    background: #fff;
  }
  #biz_modal1 .biz_modal_main {
    background-color: #efefef;
    margin: -50px 0 2%;
    padding: 0;
  }
  #biz_modal1 .biz_modal_top {
    position: relative;
    width: 100%;
  }
  #biz_modal1 .modal-inner {
    background-color: #efefef;
    margin: 0;
  }
  #biz_modal1 .biz_modal_top .bg {
    width: 100%;
  }
  #biz_modal1 .biz_modal_top .midal_midashi01 {
    position: absolute;
    top: 8%;
    left: 3%;
    font-size: 2.4vw;
    color: #231815;
    font-weight: 400;
  }
  #biz_modal1 .biz_modal_top .midal_midashi02 {
    position: absolute;
    bottom: 25%;
    left: 10%;
    font-size: 4vw;
    color: #fff;
    font-weight: 600;
  }
  #biz_modal1 .biz_modal_top .midal_midashi03 {
    position: absolute;
    bottom: 13%;
    left: 10%;
    font-size: 6.4vw;
    color: #fff;
    font-weight: 400;
  }

  #biz_modal1 .biz_modal_top .midal_midashi2_02 {
    position: absolute;
    bottom: 35%;
    left: 8%;
    font-size: 4vw;
    color: #fff;
    font-weight: 600;
  }
  #biz_modal1 .biz_modal_top .midal_midashi2_03 {
    position: absolute;
    bottom: 5vw;
    left: 8%;
    font-size: 6.4vw;
    color: #fff;
    font-weight: 400;
    line-height: 1.2em;
  }

  #biz_modal1 .biz_modal_staff {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 3% 5%;
  }
  #biz_modal1 .biz_modal_staff .staff_photo {
    width: 23%;
  }
  #biz_modal1 .biz_modal_staff .staff_photo img {
    width: 100%;
  }
  #biz_modal1 .biz_modal_staff .staff_txt {
    width: 72%;
    color: #231815;
    font-size: 3vw;
    line-height: 1.8em;
  }
  #biz_modal1 .biz_modal_staff .staff_txt h3 {
    color: #0076b0;
    font-weight: 400;
  }
  #biz_modal1 .staff_hr {
    width: 90%;
    margin: 0 5%;
    height: 0.267vw;
    border-top: 1px solid #ddd;
  }

  /*業務詳細説明　営業詳細*/
  .biz_lower_main {
    position: relative;
    width: 100%;
    height: auto !important;
    aspect-ratio: 8 / 5 !important;
    max-width: none;
    margin: 46px auto 15px !important;
    padding: 0;
    overflow: hidden;
    color: #fff;
  }
  .biz_lower_main .main_photo {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .biz_lower_main .biz_title {
    position: absolute;
    top: 3%;
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: none;
    font-weight: 600;
    font-size: 2.4vw;
    color: #231815;
  }
  .biz_lower_main .biz_title01 {
    position: absolute;
    bottom: 12vw;
    left: 12%;
    font-size: 4vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.8em;
  }
  .biz_lower_main .biz_title02 {
    position: absolute;
    bottom: 2.667vw;
    left: 12%;
    font-size: 6.6vw;
    font-weight: 400;
  }
  .biz_lower_main .biz_header_copy {
    position: absolute;
    top: 10%;
    right: 3%;
    font-size: 3.3vw;
    font-weight: 600;
    text-align: right;
    color: #898989;
    line-height: 1.5em;
    letter-spacing: -0.01wm;
  }
  .biz_detail {
    margin-bottom: 6vw;
  }
  .biz_detail .ditail_midashi {
    width: 100%;
    text-align: left;
    background-color: #231815;
    height: 7vw;
    line-height: 6.9vw;
    color: #fff;
    font-size: 3.4vw;
    font-weight: 700;
    padding: 0 5%;
  }
  .biz_detail .biz_detail_table {
    width: 100%;
    margin: 2vw 0 30px;
  }
  .biz_detail .biz_detail_table th {
    display: block;
    width: 100%;
    width: 23%;
    vertical-align: top;
    white-space: nowrap;
  }
  .biz_detail .biz_detail_table td {
    display: block;
    width: 100%;
  }
  .biz_detail h4 {
    color: #0076b0;
    font-size: 3vw;
    line-height: 2em;
  }
  .biz_detail ul {
    font-size: 3vw;
  }
  .biz_detail ul li {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.6em;
  }
  .biz_detail p {
    font-size: 3vw;
    line-height: 1.6em;
  }
  .biz_detail .yoko_table {
    font-size: 3vw;
    line-height: 1.6em;
  }
  .biz_detail .yoko_table th {
    display: inline-block;
    padding-right: 2vw;
    width: 20%;
    font-weight: 400;
    line-height: 1.5em;
    white-space: nowrap;
  }
  .biz_detail .yoko_table td {
    display: inline-block;
    width: 80%;
    font-weight: 400;
    line-height: 1.5em;
    white-space: normal;
    text-indent: -2em;
    padding-left: 2em;
  }
  #flow_chart {
    width: 90%;
    max-width: none;
    margin: 0 5%;
  }
  #flow_chart img {
    width: 100%;
  }

  /*業務詳細説明　機械設計技術者詳細*/

  .biz_lower_main .biz_title2_01 {
    position: absolute;
    bottom: 20%;
    right: 12%;
    font-size: 4vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.8em;
  }
  .biz_lower_main .biz_title2_02 {
    position: absolute;
    bottom: 6%;
    right: 12%;
    font-size: 8vw;
    font-weight: 400;
  }
  .biz_lower_main .biz_header_copy2 {
    position: absolute;
    top: 18%;
    left: 4%;
    font-size: 3.5vw;
    font-weight: 600;
    text-align: left;
    color: #fff;
    line-height: 1.5em;
  }

  /*下層　前川試験機とは*/
  .lower_about_main {
    position: relative;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 50px auto 4px;
  }
  .about_header {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .lower_about_main h2 {
    display: none;
  }
  .lower_about_main .v_line_blue {
    position: absolute;
    left: 0;
    bottom: 0;
    border-left: 14px solid #54c3f1;
    width: 90%;
    height: 80%;
    min-height: auto;
    padding: 0 0 1% 5%;
    color: #fff;
  }
  .lower_about_main .v_line_blue .head_midashi {
    font-size: 5.8vw;
    font-weight: 400;
    line-height: 1em;
    margin: 0;
    letter-spacing: 0;
  }
  .lower_about_main .v_line_blue .head_copy {
    font-size: 2.2vw;
    font-weight: 400;
    line-height: 1.8em;
    margin: 10px 0 5%;
    letter-spacing: 0;
  }
  .lower_about_main .v_line_blue .head_corpname {
    position: absolute;
    left: 6%;
    bottom: 5vw;
    font-size: 5.5vw;
    font-weight: 400;
    line-height: 1.5em;
    margin: 0;
    letter-spacing: 0;
  }
  .lower_about_main .v_line_blue .head_corpname span {
    display: block;
    font-size: 7vw;
    font-weight: 600;
  }
  .lower_about_content {
    position: relative;
    height: auto;
    max-width: none;
    margin: 5px auto 0;
    display: block;
    color: #fff;
    background-image: url(../img/about_bg01_sp.jpg);
    background-repeat: repeat-y;
    background-size: 100%;
  }
  .lower_about_content .about_bg02,
  .lower_about_content .about_bg03,
  .lower_about_content .about_bg04 {
    display: none;
  }

  .lower_about_content .about_bg_sp img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .lower_about_content .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }
  .lower_about_content .lower_content_inner {
    position: relative;
    top: auto;
    right: 0;
    width: 100%;
    text-align: left;
    padding: 8vw 0;
  }

  .lower_content_inner h3.komidashi01 {
    padding: 0 5%;
    color: #7ecef4;
    font-size: 3.4vw;
    line-height: 2.5em;
    font-weight: 600;
  }
  .lower_content_inner h3.komidashi02 {
    padding: 0 5%;
    color: #7ecef4;
    font-size: 3.4vw;
    line-height: 2.5em;
    font-weight: 600;
  }
  .lower_content_inner h3.komidashi03 {
    padding: 0 5%;
    color: #7ecef4;
    font-size: 3.4vw;
    line-height: 2.5em;
    font-weight: 600;
  }
  .lower_content_inner P {
    padding: 0 5%;
    line-height: 1.7em;
    font-size: 3.25vw;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 2em;
  }
  .lower_about_features {
    max-width: none;
    width: 100%;
    height: auto;
    margin: 1% auto 4%;
    position: relative;
    padding: 3px 4% 0;
    text-align: left;
  }
  .lower_about_features .features_komidashi {
    background-color: #54c3f1;
    font-size: 3.4vw;
    font-weight: 700;
    height: 8.6vw;
    line-height: 8.5vw;
    color: #fff;
    margin: 4vw 0 3.733vw;
    padding: 0 4vw;
  }
  .lower_about_features .features_copy {
    font-size: 3vw;
    font-weight: 400;
    color: #231815;
    line-height: 1.7em;
    margin-bottom: 3vw;
  }
  .lower_about_features .features_inner {
    width: 100%;
    margin-left: 0;
  }

  .lower_about_features .bg_black {
    font-size: 3.8vw;
    font-weight: 700;
    color: #9fd9f6;
    line-height: 1.7em;
    background-color: #231815;
    height: 9vw;
    line-height: 9vw;
    padding: 0 5.2vw;
    border-radius: 8vw;
    margin-bottom: 2vw;
  }
  .lower_about_features .list {
    font-size: 3vw;
    font-weight: 400;
    line-height: 2em;
    margin-bottom: 3vw;
  }
  #bottom_menu {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    border-top: none;
  }
  #bottom_menu .bottom_menu-inner {
    display: flex;
  }
  #bottom_menu .bottom_menu-inner h2 {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    font-size: 3vw;
    font-weight: 400;
    margin-bottom: 0.5vw;
  }
  #bottom_menu .company_link {
    background-color: #efefef;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 1vw 5vw 5vw;
    border: none;
  }
  #bottom_menu .company_link img {
    width: 100%;
  }
  #bottom_menu .company_link a.company_link01 {
    display: block;
    position: absolute;
    top: 9vw;
    left: 5vw;
    width: 45%;
    height: 38%;
    background-color: #fff;
    opacity: 0;
  }
  #bottom_menu .company_link a.company_link02 {
    display: block;
    position: absolute;
    top: 9vw;
    right: 5vw;
    width: 45%;
    height: 38%;
    background-color: #fff;
    opacity: 0;
  }
  #bottom_menu .company_link a.company_link03 {
    display: block;
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    width: 22.2%;
    height: 38%;
    background-color: #fff;
    opacity: 0;
  }
  #bottom_menu .company_link a.company_link04 {
    display: block;
    position: absolute;
    bottom: 5vw;
    left: 27.2%;
    width: 22.2%;
    height: 38%;
    background-color: #fff;
    opacity: 0;
  }
  #bottom_menu .company_link a.company_link05 {
    display: block;
    position: absolute;
    bottom: 5vw;
    left: 50.6%;
    width: 22.2%;
    height: 38%;
    background-color: #fff;
    opacity: 0;
  }
  #bottom_menu .company_link a.company_link06 {
    display: block;
    position: absolute;
    bottom: 5vw;
    right: 5vw;
    width: 22.2%;
    height: 38%;
    background-color: #fff;
    opacity: 0;
  }

  #bottom_menu .company_link a:hover {
    opacity: 0.3;
  }

  /*会社概要*/

  .lower_company_main {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 46px auto 0;
  }
  .lower_company_main .rinen_photo {
    width: 100%;
  }
  .lower_company_main h2 {
    position: absolute;
    top: 5%;
    left: 4%;
    font-size: 2vw;
    font-weight: 400;
  }
  .lower_company_main .sub {
    position: absolute;
    top: 16%;
    left: 6%;
    font-size: 5.267vw;
    font-weight: 400;
    color: #fff;
  }
  .lower_company_content {
    max-width: none;
    width: 100%;
    margin: 16px auto 2%;
    position: relative;
    padding: 0 5%;
    text-align: left;
    color: #231815;
  }
  .lower_company_content .features_komidashi {
    font-size: 8.8vw;
    font-weight: 700;
    color: #0076b0;
    line-height: 2em;
    margin-bottom: 3.733vw;
  }
  .lower_company_content .features_copy {
    font-size: 5.6vw;
    font-weight: 700;
    color: #231815;
    line-height: 1.7em;
    margin-bottom: 4.8vw;
  }
  .lower_company_content .midashi_black {
    clear: both;
    font-size: 3.6vw;
    font-weight: 700;
    color: #fff;
    background-color: #231815;
    height: 7vw;
    line-height: 7vw;
    padding: 0 3.5vw;
    margin-bottom: 2vw;
  }
  .lower_company_content .midashi_black.md {
    margin-top: 16vw;
  }
  .lower_company_content .midashi_black span {
    color: #b5b5b6;
    font-size: 2vw;
  }
  .lower_company_content .txt {
    display: flex;
    align-items: flex-start;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.9em;
    margin-bottom: 9.867vw;
  }

  .lower_company_content .daihyo_photo {
    width: 23%;
    margin: 1.2vw 3vw 2vw 0;
  }
  .lower_company_content .company-table {
    position: relative;
    width: 100%;
    font-size: 3vw;
    margin-bottom: 5.333vw;
  }
  .lower_company_content .company-table th {
    font-weight: 400;
    width: 25%;
    vertical-align: top;
    line-height: 1.8em;
  }
  .lower_company_content .company-table td {
    width: 75%;
    line-height: 1.8em;
  }
  .lower_company_content .company-table td a {
    text-decoration: none;
    color: #231815;
  }
  .lower_company_content .company_outline_photo {
    width: 100%;
    margin-bottom: 8vw;
  }
  .lower_company_content .company_history_photo {
    width: 100%;
    margin-bottom: 5.333vw;
  }

  .lower_company_content .company-history-table {
    position: relative;
    width: 100%;
    font-size: 2.1vw;
    line-height: 1.8em;
    margin-bottom: 2vw;
  }
  .lower_company_content .company-history-table th {
    vertical-align: top;
    line-height: 1.2em;
  }
  .lower_company_content .company-history-table td {
    vertical-align: top;
  }
  .lower_company_content .company-history-table .more_btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 7.467vw;
  }
  .lower_company_content .komidashi {
    color: #0076b0;
    font-weight: 600;
    font-size: 3vw;
    margin-bottom: 5.067vw;
  }
  .lower_company_content .more_btn {
    position: relative;
    top: -5.333vw;
    float: right;
    width: 7.467vw;
  }
  .lower_company_content .googlemap {
    width: 100%;
    height: 45vw;
    margin-bottom: 3.2vw;
  }
  .lower_company_content .trafic {
    width: 100%;
    margin: 0;
    font-size: 3vw;
    line-height: 1.8em;
  }
  #company_modal .modal-inner {
    padding-top: 10vw;
  }
  #company_modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 5%;
    width: 100%;
    max-height: 100vh; /* ← 高さ制限を設定 */
    overflow-y: auto; /* ← 縦スクロールを許可 */
    text-align: left;
    color: #555;
    box-sizing: border-box;
  }
  #company_modal2 .modal-inner {
    padding-top: 10vw;
  }
  #company_modal2 .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 5%;
    width: 100%;
    max-height: 100vh; /* ← 高さ制限を設定 */
    overflow-y: auto; /* ← 縦スクロールを許可 */
    text-align: left;
    color: #555;
    box-sizing: border-box;
  }

  /*前川の製品&サービス 一覧*/
  .lower_main.product {
    margin-bottom: 0;
    margin-top: 46px;
  }
  .lower_main.product .en_title {
    color: #fff;
    font-size: 2vw;
    font-weight: 400;
  }
  .lower_main.product h2 {
    position: absolute;
    bottom: 8vw;
    left: 6%;
    font-size: 4vw;
    font-weight: 400;
  }
  .lower_main.product .sub {
    position: absolute;
    bottom: 3vw;
    left: 6%;
    font-size: 5vw;
    font-weight: 400;
  }

  .lower_product_content {
    width: 90%;
    margin: 16px auto 2%;
    position: relative;
    padding: 0;
    text-align: left;
    color: #231815;
  }
  .lower_product_content h3 {
    width: 100%;
    height: 8vw;
    background-color: #231815;
    color: #fff;
    text-align: left;
    font-size: 3.4vw;
    font-weight: 700;
    line-height: 7.9vw;
    padding: 0 4vw;
  }
  .lower_product_content h4 {
    width: 100%;
    height: 8vw;
    background-color: #898989;
    color: #fff;
    text-align: left;
    font-size: 3vw;
    font-weight: 700;
    line-height: 7.9vw;
    border-radius: 8vw;
    padding: 0 5vw;
  }
  .lower_product_content .txt01 {
    font-size: 3vw;
    margin: 0.4vw 01.9vw;
  }
  .lower_product_content .txt02 {
    font-size: 4.8vw;
    margin: 1.6vw 0 4.533vw;
  }
  .product_box {
    width: 96%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 2% 2% 1.3%;
  }
  .product_box.bottom {
    margin: 2% 0 3%;
  }
  .product_box.service {
    margin: 2% 0 3%;
  }
  .product_box li {
    position: relative;
    width: 32%;
    aspect-ratio: 75 / 105;
    list-style: none;
    background-color: #efefef;
    padding: 1.5%;
    overflow: hidden;
    margin-right: 1.2%;
    margin-bottom: 1.2%;
  }
  .product_box.service li {
    position: relative;
    width: 32%;
    aspect-ratio: 75 / 125;
    list-style: none;
    background-color: #efefef;
    padding: 1.5%;
    overflow: hidden;
    margin-right: 1.6%;
    margin-bottom: 1.2%;
  }
  .product_box li:nth-child(5n) {
    margin-right: 1.6%;
  }
  .product_box li:nth-child(3n) {
    margin-right: 0;
  }
  .product_box li .thum {
    width: 100%;
  }
  .product_box li .product_name {
    color: #231815;
    font-size: 2.1vw;
    line-height: 1.2em;
    font-weight: 600;
    font-feature-settings: "palt";
    white-space: nowrap;
    margin-bottom: 0;
    margin-top: 1.333vw;
  }
  .product_box li .product_name.chotai8 {
    transform: scaleX(1);
    transform-origin: left;
  }
  .product_box li .product_name.chotai7 {
    transform: scaleX(1);
    transform-origin: left;
  }
  .product_box li .product_txt {
    color: #231815;
    font-size: 1.7vw;
    font-weight: 400;
    line-height: 1.3em;
    font-feature-settings: "palt";
    margin-top: 0.8vw;
  }
  .product_box li .more_btn {
    position: absolute;
    right: 2vw;
    bottom: 4%;
    width: 16.3%;
  }

  /*前川の製品&サービス 詳細*/
  .product_detail_title {
    width: 100%;
    max-width: none;
    height: 8vw;
    background-color: #898989;
    margin: 0 auto;
  }
  .product_detail_title h3 {
    max-width: none;
    width: 100%;
    height: 100%;
    margin: 3px auto 0;
    color: #fff;
    font-size: 3.5vw;
    line-height: 7.8vw;
    font-weight: 600;
    padding: 0 5%;
    white-space: nowrap;
    overflow: hidden;
  }
  .product_detail_title h3 span {
    position: relative;
    top: -0.8vw;
    left: 2vw;
    font-size: 2.2vw;
    color: #dcdddd;
    font-weight: 400;
  }
  .lower_product_detail_content {
    max-width: none;
    width: 100%;
    margin: 5px auto 2%;
    position: relative;
    padding: 0 5%;
    text-align: left;
    color: #231815;
  }
  .lower_product_detail_content h4 {
    font-size: 3vw;
    line-height: 1.9em;
    font-weight: 600;
    margin-bottom: 0.5%;
  }
  .lower_product_detail_content .txt01 {
    font-size: 3vw;
    line-height: 1.5em;
    font-weight: 400;
  }
  .product_detail_box {
    width: 100%;
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2.5% 0 1.3%;
  }
  .product_detail_box li {
    position: relative;
    width: 100%;
    list-style: none;
    overflow: hidden;
  }
  .product_detail_box li:nth-child(2n) {
    margin-right: 0;
  }
  .product_detail_box li .product_name {
    background-color: #231815;
    height: 11.5vw;
    border-radius: 8vw;
    color: #fff;
    font-size: 2.9vw;
    letter-spacing: -0.08em;
    font-weight: 700;
    line-height: 1.5em;
    white-space: nowrap;
    padding-top: 1.333vw;
    padding-left: 9.333vw;

    margin-bottom: 5.867vw;
  }
  .product_detail_box li .product_name span {
    display: block;
    color: #e83820;
    font-size: 4.3vw;
  }
  .product_detail_box li .product_name small {
    font-size: 70%;
  }
  .product_detail_box .spec_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 4.6%;
  }
  .product_detail_box .spec_wrap .spec_photo {
    width: 47%;
  }
  .product_detail_box .spec_wrap .spec_txt {
    width: 50%;
    font-size: 2.8vw;
    font-weight: 400;
    line-height: 1.4em;
    font-feature-settings: "palt";
  }
  .product_detail_box .spec_wrap .spec_photo img {
    width: 100%;
  }
  .product_detail_box .spec_wrap_hr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 4.6%;
  }
  .product_detail_box .spec_wrap_hr .spec_photo {
    width: 100%;
    margin-bottom: 4.4%;
  }
  .product_detail_box .spec_wrap_hr .spec_photo.bottom {
    width: 100%;
    margin-top: 4.4%;
  }
  .product_detail_box .spec_wrap_hr .spec_txt {
    width: 100%;
    font-size: 3.2vw;
    font-weight: 400;
    line-height: 1.5em;
    margin-bottom: 0;
    font-feature-settings: "palt";
  }
  .product_detail_box .spec_wrap_hr .spec_txt .blue {
    color: #0076b0;
    font-weight: 600;
    font-size: 125%;
    line-height: 1.6em;
  }
  .product_detail_box .spec_wrap_hr .spec_txt .blue_bk {
    display: block;
    font-weight: 600;
    line-height: 1.6em;
    padding: 3% 1% 3% 6.5%;
    background-color: #e0f0eb;
    letter-spacing: -0.05em;
  }
  .product_detail_box .spec_wrap_hr .spec_photo img {
    width: 100%;
  }
  .product_detail_box .product_photo_bottom {
    width: 100%;
  }
  .lower_product_detail_content .product_back_btn {
    display: block;
    width: 100%;
    height: 9vw;
    line-height: 8.9vw;
    text-align: center;
    background-color: #898989;
    color: #fff;
    text-decoration: none;
    border-radius: 10.667vw;
    font-size: 3vw;
    font-weight: 600;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
  .lower_product_detail_content .product_back_btn:hover {
    opacity: 0.75;
  }
  .spec_spacer {
    height: 5.333vw;
    width: 100%;
  }
  .spec_border {
    height: 0.267vw;
    width: 100%;
    background-color: #ddd;
    margin-bottom: 5.333vw;
  }

  /*試験機の動き インデックス*/
  .lower_product_content .movie_txt01 {
    margin: 2.667vw 0 0;
    width: 100%;
    line-height: 1.2em;
    font-size: 3vw;
  }
  .lower_product_content .movie_box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 5.333vw 0 9.333vw;
    width: 100%;
  }

  .lower_product_content .movie_box li {
    list-style: none;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3vw;
  }
  .lower_product_content .movie_box li:nth-of-type(2n) {
    margin-right: 0;
  }
  .lower_product_content .movie_box li:nth-of-type(3n) {
    margin-right: auto;
  }
  .lower_product_content .movie_box li img {
    width: 100%;
    margin-bottom: 1.6vw;
  }
  .lower_product_content .movie_box li a {
    color: #595757;
    text-decoration: none;
    line-height: 1.4em;
    font-size: 2.5vw;
  }
  .lower_product_content h4.movie {
    width: 100%;
    height: 8vw;
    background-color: #231815;
    color: #fff;
    text-align: left;
    font-size: 3.6vw;
    font-weight: 700;
    line-height: 7.9vw;
    border-radius: 0;
    padding: 0 4vw;
  }
  /*試験機の動き　詳細*/
  #movie_detail_box {
    width: 100%;
    text-align: center;
    margin: 9.333vw 0 9.333vw;
  }
  #movie_detail_box iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  #movie_detail_box .movie_index_back {
    margin-top: 5.333vw;
    width: 100%;
    text-align: center;
  }
  #movie_detail_box .movie_index_back a {
    color: #231815;
    text-decoration: none;
    font-size: 3.733vw;
  }

  /*前川試験期の活動*/
  .lower_main.product .act {
    position: absolute;
    bottom: 5vw;
    right: 6%;
    font-size: 6.5vw;
    font-weight: 400;
  }

  .lower_product_content.act {
    max-width: none;
    width: 100%;
    margin: 18px auto 2%;
    position: relative;
    padding: 0 5%;
    text-align: left;
    color: #231815;
  }
  .lower_product_content.act h4 {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    padding: 0 3%;
  }
  .lower_product_content.act .txt02 {
    width: 100%;
    margin: 8px 0 2%;
    position: relative;
    padding: 0;
    text-align: left;
    color: #231815;
    font-size: 3vw;
    line-height: 1.8em;
  }
  .lower_product_content.act img {
    width: 100%;
  }
  .lower_product_content.act img.activity01 {
    margin-top: 4vw;
    margin-bottom: 2.667vw;
  }
  .lower_product_content.act img.activity02 {
    margin-bottom: 5vw;
  }
  .lower_product_content.act img.activity03 {
    margin-bottom: 5vw;
  }

  /*数字で見る前川試験機*/
  .number_content {
    display: block;
    margin-bottom: 5.333vw;
  }
  .number_content img {
    width: 100%;
  }
  .number_content .txt01 {
    width: 30%;
  }

  /*募集要項*/
  .lower_main h2.description_midashi {
    position: absolute;
    left: 7%;
    bottom: 10%;
    font-size: 6vw;
    font-weight: 400;
    color: #231815;
    line-height: 1.2em;
  }
  .lower_main h2.description_midashi span {
    position: relative;
    left: -3vw;
    bottom: -1vw;
    font-size: 4.5vw;
  }
  .lower_flow_content .description_table {
    border-collapse: collapse;
    margin: 3vw 0 4vw;
    width: 100%;
  }
  .lower_flow_content .description_komidashi {
    background-color: #000;
    color: #fff;
    font-size: 3.3vw;
    padding: 0 4vw;
    height: 8vw;
    line-height: 7.9vw;
    font-weight: 600;
  }
  .lower_flow_content .description_table th {
    display: block;
    vertical-align: top;
    width: 100%;
    white-space: nowrap;
    font-weight: 600;
    line-height: 2.1em;
    text-align: left;
    font-size: 3vw;
  }

  .lower_flow_content .description_table td {
    display: block;
    vertical-align: top;
    width: 97%;
    margin-left: 3%;
    white-space: wrap;
    font-size: 4.8vw;
    line-height: 2.1em;
    text-align: left;
    font-size: 2.6vw;
  }
  .lower_flow_content .description_table2 {
    border-collapse: collapse;
    margin: 5.333vw 0 8vw;
  }
  .lower_flow_content .description_table2 th {
    vertical-align: top;
    width: 40vw;
    white-space: nowrap;
    font-size: 5.333vw;
    line-height: 2.4em;
    text-align: left;
  }
  .lower_flow_content .description_table2 thead th {
    color: #0076b0;
    font-size: 5.867vw;
  }
  .lower_flow_content .description_table2 td {
    vertical-align: top;
    width: calc(100% - 40vw);
    white-space: nowrap;
    font-size: 5.333vw;
    font-weight: 600;
    line-height: 2.4em;
  }
  .lower_flow_content .description_table2 thead th {
    color: #0076b0;
    font-size: 5.867vw;
  }

  .lower_flow_content .description_table3 {
    border-collapse: collapse;
    margin: 2.667vw 0 13.333vw;
  }
  .lower_flow_content .description_table3 th {
    vertical-align: top;
    width: 100%;
    white-space: nowrap;
    font-size: 5.333vw;
    line-height: 2.4em;
    text-align: left;
  }
  .lower_flow_content .description_table3 td {
    vertical-align: top;
    width: 100%;
    white-space: nowrap;
    font-size: 5.333vw;
    font-weight: 600;
    line-height: 2.4em;
  }
  .lower_flow_content .description_table3 td img {
    width: 100%;
  }
  .lower_flow_content .description_table3 thead th {
    color: #0076b0;
    font-size: 5.867vw;
  }

  .lower_flow_content.description #biz_menu {
    display: block;
    width: 100%;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding-top: 0;
    border-top: none;
  }
  .lower_flow_content.description #biz_menu img {
    width: 100%;
  }
  .lower_flow_content.description #biz_menu .biz_menu-inner {
    width: 100%;
    margin-bottom: 0;
    font-size: 3vw;
  }
  .lower_flow_content.description #biz_menu .biz_menu-inner.description {
    width: 70%;
    margin-bottom: 8vw;
  }
  .lower_flow_content.description #biz_menu h2 {
    width: 100%;
    padding: 1% 0 0;
    font-size: 3.2vw;
    line-height: 1.3em;
    font-weight: 600;
    background-color: #fff;
  }
  .lower_flow_content.description #biz_menu .biz_menu_index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff !important;
    padding: 0 0 5%;
  }
  .lower_flow_content.description#biz_menu .biz_menu_index li {
    width: 49%;
    margin-bottom: 2%;
  }

  .lower_flow_content.description .entry_wrap {
    border-top: none;
    padding-top: 5vw;
  }
  .lower_flow_content.description .entry_wrap p {
    font-size: 2.6vw;
    line-height: 1.3em;
  }
  p.description_hr {
    position: relative;
    right: 5%;
    width: 100%;
    height: 0.267vw;
    background-color: #ddd;
    width: 110%;
  }
  .lower_flow_content a.entry_btn {
    display: block;
    width: 100%;
    height: 12vw;
    line-height: 11.9vw;
    background-color: #e60012;
    border-radius: 0;
    text-align: left;
    color: #fff;
    font-size: 3.1vw;
    font-weight: 700;
    margin: 0.8vw 0 4.8vw 0;
    padding: 0 4vw;
    text-decoration: none;
  }
  .lower_flow_content a.entry_btn:hover {
    opacity: 0.75;
  }
  .lower_flow_content a.entry_btn_orange {
    display: block;
    width: 100%;
    height: 12vw;
    line-height: 11.9vw;
    background-color: #f39800;
    text-align: left;
    color: #fff;
    font-size: 3.1vw;
    font-weight: 700;
    margin: 0.8vw 0 5vw 0;
    padding: 0 4vw;
    text-decoration: none;
  }
  .lower_flow_content a.entry_btn_orange:hover {
    opacity: 0.75;
  }
  .lower_flow_content a.entry_btn2 {
    display: block;
    width: 100%;
    height: 12vw;
    line-height: 11.9vw;
    background-color: #b60005;
    text-align: left;
    color: #fff;
    font-size: 3.1vw;
    font-weight: 700;
    margin: 2% auto 5vw;
    padding: 0 4%;
    text-decoration: none;
  }
  .lower_flow_content input.entry_btn2 {
    display: block;
    width: 60%;
    height: 8vw;
    line-height: 7.9vw;
    background-color: #b60005;
    text-align: center;
    color: #fff;
    font-size: 3.1vw;
    font-weight: 700;
    margin: 2% auto 5vw;
    padding: 0 3%;
    text-decoration: none;
  }
  .lower_flow_content a.entry_btn2:hover {
    opacity: 0.75;
  }

  .lower_flow_content .nenshu {
    width: 100%;
    margin-top: 10.667vw;
  }

  /*エントリー*/
  .entry_txt01 {
    font-size: 3vw;
    font-weight: 600;
    line-height: 1.5em;
    margin: 2.667vw 0 3vw;
  }
  .entry_txt02 {
    font-size: 3vw;
    font-weight: 600;
    line-height: 1.5em;
    margin: 2.667vw 0 3vw;
    color: #e8380d;
  }
  .form_box {
    border: 1px solid #ddd;
    padding: 0 5%;
    font-size: 4.267vw;
    line-height: 2em;
  }
  .form_box.carier {
    padding-top: 5.333vw;
  }
  .form_box h3 {
    font-size: 3.3vw;
    font-weight: 600;
    line-height: 2em;
    color: #0076b0;
    margin-bottom: 2.667vw;
  }
  .form_box .txt02 {
    font-size: 3vw;
    font-weight: 400;
    color: #231815;
    margin-bottom: 2.667vw;
    line-height: 1.4em;
  }
  .form_box .note01 {
    font-size: 3vw;
    font-weight: 400;
    color: #e8380d;
    margin-bottom: 2.667vw;
    line-height: 1.4em;
  }
  .form_box .note02 {
    font-size: 3vw;
    font-weight: 400;
    color: #e8380d;
    margin-bottom: 4vw;
    line-height: 1.4em;
  }
  .form_box .note03 {
    font-size: 3vw;
    font-weight: 400;
    color: #b60005;
    margin-bottom: 4vw;
    line-height: 1.4em;
  }
  .entry_table {
    width: 95%;
  }
  .entry_table th,
  .entry_table td {
    display: block;
    padding: 0;
    width: 100%;
    font-size: 3vw;
  }
  .entry_table th {
    font-weight: 400;
    vertical-align: top;
    width: 100%;
    font-size: 3.6vw;
  }
  .entry_table th span {
    color: #e8380d;
  }
  .entry_table input[type="text"] {
    background-color: #efefef;
    border: 1px solid #bbb;
    width: 100%;
    padding: 0 1em;
    font-size: 3.6vw;
    margin-bottom: 1.333vw;
  }
  .entry_table .day {
    white-space: nowrap;
  }
  .entry_table .small {
    font-size: 3.733vw;
  }
  .entry_table .add {
    display: flex;
    justify-content: space-between;
  }
  .entry_table .add div {
    width: 48%;
  }
  .entry_table input[type="text"].short {
    background-color: #efefef;
    border: 1px solid #bbb;
    width: 78%;
    padding: 0 1em;
    float: right;
  }
  .entry_table input[type="text"].short2 {
    background-color: #efefef;
    border: 1px solid #bbb;
    width: 100%;
    padding: 0 1em;
  }
  .entry_table textarea {
    background-color: #efefef;
    border: 1px solid #bbb;
    width: 100%;
    padding: 0 1em;
  }
  .entry_table select {
    background-color: #efefef;
    border: 1px solid #bbb;
    width: 100%;
    padding: 0 1em;
  }
  ::placeholder {
    color: #bbb;
  }
  .entry_btn {
    display: block;
    width: 60%;
    height: 8vw;
    line-height: 7.9vw;
    border-radius: 8vw;
    background-color: #e83820;
    color: #fff;
    font-size: 3vw;
    font-weight: 600;
    margin: 20px auto 20px;
  }
  .entry_btn:hover {
    opacity: 0.75;
    cursor: pointer;
  }
  .entry_table .entry_btn2 {
    display: block;
    width: 101.333vw;
    height: 14.4vw;
    line-height: 13.867vw;
    border-radius: 8vw;
    background-color: #b60005;
    color: #fff;
    font-size: 5.067vw;
    font-weight: 600;
    margin: 20px auto 0;
  }
  .entry_table .entry_btn2:hover {
    opacity: 0.75;
    cursor: pointer;
  }
  #privacypolicy {
    margin: 3% 0 20px;
    font-size: 3vw;
    line-height: 1.8em;
  }
  #privacypolicy h3 {
    padding: 0 6.667vw;
    height: 8vw;
    line-height: 7.9vw;
    background-color: #dcdddd;
    font-size: 4vw;
    margin: 5vw 0 3vw;
  }
  #privacypolicy h4 {
    font-size: 3vw;
    color: #0076b0;
  }
}
