@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

.pc_content {
  display: block !important;
}
.sp_content {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
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: 40px;
}
.margin_b60 {
  margin-bottom: 60px;
}
.margin_b80 {
  margin-bottom: 80px;
}
.margin_b120 {
  margin-bottom: 120px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: 77px;
  margin: 0 auto;
  z-index: 3;
  /*  background-color: #fff; */
}
header .header_inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 67px;
  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: 18%;
  left: 2%;
  width: 260px;
}
header .entry_menu {
  position: absolute;
  top: 0;
  right: 67px;
  display: flex;
  list-style: none;
  width: 290px;
  height: 100%;
}
header .entry_menu li {
  width: 50%;
  height: 100%;
  text-align: center;
}
header .entry_menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 17px 0 0 0;
  line-height: 1.3em;
  font-size: 13px;
  font-weight: 600;
}

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;
  transform: translateY(-100%); /*ナビを上に隠す*/
  transition: all 0.6s; /*アニメーションの時間を指定*/
}
nav.NavMenu ul {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 170px 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: 1000px;
  text-align: left;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1em;
}
nav.NavMenu .midashi span {
  font-size: 14px;
  line-height: 1.1em;
}
.Toggle {
  display: block;
  position: absolute; /* bodyに対しての絶対位置指定 */
  right: 0;
  top: 0;
  width: 67px;
  height: 67px;
  cursor: pointer;
  z-index: 3;
  background-color: #000;
  transition: all 0.2s; /*アニメーションの時間を指定*/
}
.Toggle p {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 11px;
}
.Toggle span {
  display: block;
  position: absolute;
  width: 33px;
  border-bottom: solid 2px #fff;
  -webkit-transition: 0.35s ease-in-out; /*変化の速度を指定*/
  -moz-transition: 0.35s ease-in-out; /*変化の速度を指定*/
  transition: 0.35s ease-in-out; /*変化の速度を指定*/
  left: 18px;
}
.Toggle span:nth-child(1) {
  top: 18px;
}
.Toggle span:nth-child(2) {
  top: 28px;
}
.Toggle span:nth-child(3) {
  top: 38px;
}
.Toggle.active {
  display: block;
  position: absolute; /* bodyに対しての絶対位置指定 */
  right: 10px;
  top: 30px;
  width: 70px;
  height: 70px;
  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: 35px;
  left: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-color: #fff;
  width: 50px;
}
/* 2番目透過 */
.Toggle.active span:nth-child(2) {
  opacity: 0;
  border-color: #0c743f;
}
/* 3番目のspanを45度に */
.Toggle.active span:nth-child(3) {
  top: 35px;
  left: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: #fff;
  width: 50px;
}

/*Menu アコーディオン*/
.NavMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.NavMenu li {
  position: relative;
}
.submenu {
  display: none;
  padding-left: 14.8%;
}
.submenu_table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 22px;
  margin-top: -12px;
}
.submenu_table td {
  width: 25%;
  font-size: 14px;
  line-height: 2.8em;
}
.NavMenu ul li.top_link {
  height: 85px;
}
.NavMenu ul li.top_link a {
  display: block;
  height: 100%;
  width: 100%;
  font-size: 25px;
  line-height: 85px;
  font-weight: 400;
}
.NavMenu ul li.top_link a span.en {
  font-size: 12px;
  margin-left: 21px;
}
.top_link .icon {
  position: absolute;
  right: 0;
  top: 40%;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.top_link .icon::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 12px;
  width: 14px;
  height: 14px;
  background-image: url(../img/menu_arw.png);
  background-size: cover;
}
.accordion-toggle {
  position: relative;
  align-items: center;
  text-decoration: none;
  padding: 0;
  height: 85px;
  font-size: 25px;
  line-height: 85px;
  font-weight: 400;
}
.accordion-toggle span.en {
  font-size: 12px;
  margin-left: 21px;
}
.has-submenu .icon {
  position: absolute;
  right: 0;
  top: 40%;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.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: 2px;
  transform: translateY(-50%);
}
.has-submenu .icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  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;
  /*  background-attachment: fixed; */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/*仕事を知る*/
.bussiness_section {
  background-color: #fff;
  min-height: 800px !important;
}
.bussiness_section .content_inner {
  position: relative;
  width: 100%;
  height: 800px !important;
  max-width: 1000px;
  border-left: 24px solid #54c3f1;
  margin: 0 auto;
}
.bussiness_section .content_inner h2 {
  position: absolute;
  top: 20px;
  left: 30px;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-align: left;
}
.bussiness_section .content_inner h2 span {
  display: block;
  font-size: 34px;
}
.bussiness_section .content_inner p.copy.sub {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.36em;
  letter-spacing: 0;
  white-space: nowrap;
  color: #00afec;
}
.bussiness_section .top_content {
  position: absolute;
  bottom: 200px;
  left: 3%;
  text-align: left;
}
.bussiness_section .bussiness_right {
  position: absolute;
  top: 5%;
  right: 0;
  width: 61%;
}

.bussiness_section .bussiness_btn {
  width: 100%;
  margin-bottom: 15px;
}
.bussiness_section .detail_index_wrap {
  background-color: #e6e6e6;
  padding: 2% 5% 4%;
  text-align: left;
}
.bussiness_section .detail_index_wrap p.midashi {
  color: #231815;
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 8px -20px;
}
.bussiness_section .detail_index {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bussiness_section .detail_index li {
  width: 49%;
  margin-bottom: 10px;
}
.bussiness_section .detail_index li img {
  width: 100%;
}
.kotei.js-fixed {
  position: fixed;
  top: 0; /* headerの高さに合わせて調整 */
  left: 0;
  width: 100%;
  z-index: 0;
  background-color: #fff;
}

/*会社を知る*/
.corp_section {
  background-color: #fff;
  height: 430px !important;
  z-index: 2;
}
.corp_section .content_inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  border-left: 24px solid #54c3f1;
  margin: 0 auto;
  background-color: #fff;
}
.corp_section .content_inner h2 {
  position: absolute;
  top: 20px;
  left: 30px;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-align: left;
}
.corp_section .content_inner h2 span {
  display: block;
  font-size: 34px;
}
.corp_section .content_inner p.copy.sub {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.36em;
  letter-spacing: 0;
  white-space: nowrap;
  color: #00afec;
}
.corp_section .top_content {
  position: absolute;
  bottom: 2%;
  left: 3%;
  text-align: left;
}
.corp_section .corp_right {
  position: absolute;
  top: 5%;
  right: 0;
  width: 61%;
}
.corp_section .bussiness_btn {
  width: 100%;
  margin-bottom: 15px;
}
.corp_section .detail_index_wrap {
  background-color: #e6e6e6;
  border: 1px solid #ccc;
  padding: 5% 5% 4%;
  text-align: left;
  margin-top: 20px;
}
.corp_section .detail_index {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.corp_section .detail_index li {
  width: 49%;
  margin-bottom: 10px;
}
.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: 49.4%;
  height: 48.3%;
  background-color: #fff;
  opacity: 0;
}
.corp_section .top_corp_link a.company_link02 {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 49.5%;
  height: 48.3%;
  background-color: #fff;
  opacity: 0;
}
.corp_section .top_corp_link a.company_link03 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24.2%;
  height: 48.5%;
  background-color: #fff;
  opacity: 0;
}
.corp_section .top_corp_link a.company_link04 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 25.2%;
  width: 24.2%;
  height: 48.5%;
  background-color: #fff;
  opacity: 0;
}
.corp_section .top_corp_link a.company_link05 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50.5%;
  width: 24.2%;
  height: 48.5%;
  background-color: #fff;
  opacity: 0;
}
.corp_section .top_corp_link a.company_link06 {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24.2%;
  height: 48.5%;
  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;
}
section.photo_bg .copy {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-align: right;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6em;
  padding-top: 120px;
}

.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: 1000px !important;
  margin: 0 auto;
}
.main .content_inner h2 {
  position: absolute;
  top: 115px;
  left: 30px;
  font-weight: 300;
  font-size: 18px;
}
.main .content_inner p.copy {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.46em;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: left;
}
.main .top_content {
  position: absolute;
  top: 28%;
  left: 3%;
}
.main .about_btn {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 60%;
}
.main .content_inner p.copy.sub {
  position: absolute;
  bottom: 20px;
  left: 40%;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.46em;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: left;
}

/*募集要項*/
#recruit_detail {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto;
  background-color: #fff;
  border-top: 1px solid #ddd;
  margin: 0 auto;
  z-index: 2;
}
#recruit_detail .content_inner {
  max-width: 920px;
  width: 100%;
  margin: 15px auto 20px;
}
#recruit_detail .content_inner h2 {
  font-weight: 400;
  font-size: 15px;
  color: #000;
  text-align: left;
}
#recruit_detail .content_inner h2 span {
  display: block;
  font-size: 34px;
}
#recruit_detail .recruit_detail_btn {
  display: flex;
  justify-content: space-between;
}
#recruit_detail .recruit_detail_btn a {
  display: block;
  width: 50%;
  height: 100px;
  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: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}
#recruit_detail .recruit_detail_btn a:last-child {
  background-color: #b60005;
  line-height: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

/*フッター*/
footer {
  position: relative;
  width: 100%;
  height: 410px;
  background-color: #000;
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 2;
}
footer #bottom_logo {
  width: 350px;
  margin: 40px auto 25px;
}
footer .footer_bottom {
  position: relative;
  border-top: 1px solid #fff;
  width: 900px;
  height: 185px;
  margin: 0 auto;
  padding-top: 14px;
}
footer .footer_bottom .footer_corp_name {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 18px;
}
footer .footer_bottom a.footer_site_link {
  display: block;
  position: absolute;
  top: 19px;
  right: 0;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
footer .footer_bottom .footer_left {
  position: absolute;
  top: 65px;
  left: 0;
  width: 450px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  font-size: 11px;
  line-height: 1.46em;
  text-align: left;
}
footer .footer_bottom .copyright {
  position: absolute;
  bottom: 45px;
  right: 0;
  font-size: 11px;
}

/*文字アニメ*/
.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: 17px; /* スクロールバー分のズレ補正（必要に応じて） */
}
#modal1.modal {
  background: rgba(35, 24, 21, 1);
}
.modal-inner {
  position: relative;
  max-width: 800px;
  width: 95%;
  margin: 0 auto;
  overflow: visible;
  margin-top: -70px;
  margin-bottom: 90px;
}
.close {
  position: sticky;
  top: 40px;
  right: 0;
  height: 70px;
  width: 70px;
  cursor: pointer;
  margin-left: calc(100% - 110px);
  z-index: 2;
}
.close img {
  width: 70px;
  height: 70px;
}
.close img:hover {
  opacity: 0.75;
}

#modal1 .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 50px;
  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: 500px;
  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: 24px solid #54c3f1;
  height: 80%;
  padding-left: 40px;
}
.modal-content .about_inner h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 23px;
}
.modal-content .about_inner .txt01 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7em;
}
.modal-content .about_inner .company_name {
  font-size: 43px;
  font-weight: 400;
  line-height: 1.4em;
  position: absolute;
  bottom: 10%;
  left: 40px;
}
.modal-content .about_inner .company_name span {
  font-size: 55px;
  font-weight: 700;
}

.top_about_content {
  position: relative;
  background-image: url(../img/mordal_bg.jpg);
  background-size: cover;
  background-position: top center;
}
.top_about_content .top_about_inner {
  padding: 2% 5% 7% 27%;
}
.top_about_content .txt02 {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1em;
  margin-bottom: 2em;
}
.top_about_content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: #7ecef4;
}

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

.lower_main {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 77px auto 30px;
  padding: 0;
  overflow: hidden;
  color: #fff;
}
.lower_main .en_title {
  position: absolute;
  top: 4%;
  left: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 960px;
  font-weight: 600;
  font-size: 22px;
  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: 24px solid #54c3f1;
  padding: 0 0 0 50px;
}
.lower_main .lower_midashi {
  font-size: 70px;
  font-weight: 400;
  line-height: 3.3em;
  color: #fff;
}
.lower_main .head_txt {
  position: absolute;
  bottom: 10%;
  left: 50px;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.7em;
  color: #fff;
}

/*ビジネスの流れ*/
.lower_flow_content {
  width: 860px;
  margin: 0 auto -2%;
  position: relative;
  padding: 0;
  text-align: left;
  color: #231815;
}
.lower_flow_content .txt01 {
  font-size: 18px;
  margin: 17px 0;
}

.lower_flow_content .txt02 {
  font-size: 18px;
  line-height: 1.8em;
}
.lower_flow_content .chart_midashi {
  font-size: 18px;
  line-height: 1.8em;
  width: 100%;
  height: 45px;
  background-color: #54c3f1;
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 45px;
  padding: 0 20px;
}
.lower_flow_content .chart {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 60px;
}
.lower_flow_content .chart li:first-child {
  width: 35%;
}
.lower_flow_content .chart li:last-child {
  width: 62%;
}
.lower_flow_content .chart li img {
  width: 100%;
}
.lower_flow_content .chart li .flow_komidashi {
  background-color: #040000;
  color: #fff;
  text-align: center;
  height: 40px;
  line-height: 38px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.lower_flow_content .chart li .flow_txt01 {
  font-size: 18px;
  line-height: 1.8em;
  font-weight: 400;
  margin-bottom: 12px;
}
.lower_flow_content .chart li img.flow_arw {
  width: 6%;
  margin: 0 47% 25px;
}
#biz_menu {
  display: flex;
  width: 100%;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
#biz_menu img {
  width: 100%;
}
#biz_menu .biz_menu-inner {
  width: 70%;
  margin-bottom: 30px;
  font-size: 16px;
}
#biz_menu .biz_menu-inner.description {
  width: 70%;
  margin-bottom: 30px;
}
#biz_menu h2 {
  width: 30%;
  font-size: 18px;
  font-weight: 600;
}
#biz_menu .biz_menu_index {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #e6e6e6;
  padding: 3% 3% 2%;
}
#biz_menu .biz_menu_index li {
  width: 49%;
  margin-bottom: 2%;
}
#entry_wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 10px;
  border-top: 1px solid #ddd;
  padding: 25px 0;
  font-size: 18px;
}
#entry_wrap a {
  display: block;
  background-color: #b60005;
  height: 110px;
  line-height: 105px;
  padding: 0 5%;
  margin: 1% 0 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
}
#entry_wrap a:hover {
  opacity: 0.75;
}
#interview {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid #ddd;
  padding: 25px 0;
  font-size: 18px;
}
#interview div {
  display: block;
  background-color: #9fa0a0;
  height: 80px;
  line-height: 78px;
  padding: 0 5%;
  margin: 1% 0 1% 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
}
#interview div:hover {
  opacity: 0.75;
}

/*biz modal*/
#biz_modal1 .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 50px;
  width: 100%;
  max-height: 100vh; /* ← 高さ制限を設定 */
  overflow-y: auto; /* ← 縦スクロールを許可 */
  text-align: left;
  color: #fff;
  box-sizing: border-box;
}
#biz_modal1.modal {
  background: rgba(35, 24, 21, 1);
}
#biz_modal1 .biz_modal_main {
  background-color: #efefef;
  margin-bottom: 2%;
}
#biz_modal1 .biz_modal_top {
  position: relative;
  width: 100%;
}
#biz_modal1 .modal-inner {
  background-color: #efefef;
}
#biz_modal1 .biz_modal_top .bg {
  width: 100%;
}
#biz_modal1 .biz_modal_top .midal_midashi01 {
  position: absolute;
  top: 3%;
  left: 3%;
  font-size: 18px;
  color: #231815;
  font-weight: 400;
}
#biz_modal1 .biz_modal_top .midal_midashi02 {
  position: absolute;
  bottom: 27%;
  left: 10%;
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
#biz_modal1 .biz_modal_top .midal_midashi03 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  font-size: 48px;
  color: #fff;
  font-weight: 400;
}

#biz_modal1 .biz_modal_top .midal_midashi2_02 {
  position: absolute;
  bottom: 175px;
  left: 8%;
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
#biz_modal1 .biz_modal_top .midal_midashi2_03 {
  position: absolute;
  bottom: 45px;
  left: 8%;
  font-size: 48px;
  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: 13px;
  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: 1px;
  border-top: 1px solid #ddd;
}

/*業務詳細説明　営業詳細*/
.biz_lower_main {
  position: relative;
  width: 100%;
  height: 660px;
  max-width: 1000px;
  margin: 45px auto 50px;
  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: 8%;
  left: 3%;
  color: #231815;
  font-size: 18px;
  font-weight: 400;
}
.biz_lower_main .biz_title01 {
  position: absolute;
  bottom: 118px;
  left: 7%;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  line-height: 1.8em;
}
.biz_lower_main .biz_title02 {
  position: absolute;
  bottom: 76px;
  left: 7%;
  font-size: 70px;
  font-weight: 400;
}
.biz_lower_main .biz_header_copy {
  position: absolute;
  top: 12%;
  right: 4%;
  font-size: 30px;
  font-weight: 600;
  text-align: right;
  color: #898989;
  line-height: 1.5em;
}
.biz_detail {
  margin-bottom: 50px;
}
.biz_detail .ditail_midashi {
  width: 100%;
  text-align: left;
  background-color: #231815;
  height: 60px;
  line-height: 58px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 0 35px;
}
.biz_detail .biz_detail_table {
  width: 100%;
  margin: 20px 0 30px;
}
.biz_detail .biz_detail_table th {
  width: 30%;
  vertical-align: top;
}
.biz_detail h4 {
  color: #0076b0;
  font-size: 18px;
  line-height: 2em;
}
.biz_detail ul {
  font-size: 14px;
}
.biz_detail ul li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2.3em;
}
.biz_detail p {
  font-size: 14px;
  line-height: 2.3em;
}
.biz_detail .yoko_table {
  font-size: 14px;
  line-height: 2.3em;
}
.biz_detail .yoko_table th {
  padding-right: 30px;
  width: 18%;
  font-weight: 400;
  line-height: 2.3em;
  white-space: nowrap;
}
.biz_detail .yoko_table td {
  font-weight: 400;
  line-height: 2.3em;
  white-space: nowrap;
}
#flow_chart {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
#flow_chart img {
  width: 100%;
}

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

.biz_lower_main {
  position: relative;
  width: 100%;
  height: 660px;
  max-width: 1000px;
  margin: 45px auto 50px;
  padding: 0;
  overflow: hidden;
  color: #fff;
}
.biz_lower_main .biz_title2_01 {
  position: absolute;
  bottom: 20%;
  right: 12%;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  line-height: 1.8em;
}
.biz_lower_main .biz_title2_02 {
  position: absolute;
  bottom: 13%;
  right: 12%;
  font-size: 70px;
  font-weight: 400;
}
.biz_lower_main .biz_header_copy2 {
  position: absolute;
  top: 18%;
  left: 3%;
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  line-height: 1.5em;
}

/*下層　前川試験機とは*/
.lower_about_main {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 0 auto 4px;
}
.about_header {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.lower_about_main h2 {
  position: absolute;
  left: 30px;
  top: 92px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.lower_about_main .v_line_blue {
  position: absolute;
  left: 0;
  bottom: 0;
  border-left: 27px solid #54c3f1;
  width: 90%;
  min-height: 470px;
  padding: 0 0 1% 5%;
  color: #fff;
}
.lower_about_main .v_line_blue .head_midashi {
  font-size: 46px;
  font-weight: 400;
  line-height: 1em;
  margin: 0;
  letter-spacing: 0;
}
.lower_about_main .v_line_blue .head_copy {
  font-size: 20px;
  font-weight: 400;
  line-height: 2.1em;
  margin: 20px 0 5%;
  letter-spacing: 0;
}
.lower_about_main .v_line_blue .head_corpname {
  position: absolute;
  left: 6%;
  bottom: 60px;
  font-size: 57px;
  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: 70px;
  font-weight: 600;
}
.lower_about_content {
  position: relative;
  height: auto;
  width: 100%;
  max-width: 1000px;
  margin: 5px auto 0;
  display: block;
  color: #fff;
}
.lower_about_content .about_bg02,
.lower_about_content .about_bg03,
.lower_about_content .about_bg04 {
  display: block;
  width: 100%;
  height: 680px;
  margin: 0 auto;
}
.lower_about_content .about_bg02 img,
.lower_about_content .about_bg03 img,
.lower_about_content .about_bg04 img {
  width: 100%;
  height: 100%;
  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: absolute;
  top: 30px;
  right: 3%;
  width: 75%;
  text-align: left;
}

.lower_content_inner h3.komidashi01 {
  padding: 0 5%;
  color: #7ecef4;
  font-size: 22px;
  line-height: 2.5em;
  font-weight: 600;
}
.lower_content_inner h3.komidashi02 {
  padding: 0 5%;
  color: #7ecef4;
  font-size: 22px;
  line-height: 2.5em;
  font-weight: 600;
}
.lower_content_inner h3.komidashi03 {
  padding: 0 5%;
  color: #7ecef4;
  font-size: 22px;
  line-height: 2.5em;
  font-weight: 600;
}
.lower_content_inner P {
  padding: 0 5%;
  line-height: 2.2em;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 2em;
}
.lower_about_features {
  max-width: 1000px;
  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: 24px;
  font-weight: 700;
  height: 60px;
  line-height: 58px;
  color: #fff;
  margin: 15px 0 14px;
  padding: 0 30px;
}
.lower_about_features .features_copy {
  font-size: 18px;
  font-weight: 400;
  color: #231815;
  line-height: 1.7em;
  margin-bottom: 18px;
}
.lower_about_features .features_inner {
  width: 70%;
  margin-left: 30%;
}

.lower_about_features .bg_black {
  font-size: 22px;
  font-weight: 700;
  color: #9fd9f6;
  line-height: 1.7em;
  background-color: #231815;
  height: 50px;
  line-height: 48px;
  padding: 0 40px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.lower_about_features .list {
  font-size: 18px;
  font-weight: 400;
  line-height: 2.2em;
  margin-bottom: 19px;
}
#bottom_menu {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.2% 0;
  border-top: 1px solid #ddd;
}
#bottom_menu .bottom_menu-inner {
  display: flex;
}
#bottom_menu .bottom_menu-inner h2 {
  width: 30%;
  max-width: calc(1000px - 10%);
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}
#bottom_menu .company_link {
  background-color: #efefef;
  position: relative;
  width: 70%;
  margin: 0 auto;
  padding: 25px;
  border: 1px solid #ddd;
}
#bottom_menu .company_link img {
  width: 100%;
}
#bottom_menu .company_link a.company_link01 {
  display: block;
  position: absolute;
  top: 25px;
  left: 25px;
  width: 45.5%;
  height: 41.7%;
  background-color: #fff;
  opacity: 0;
}
#bottom_menu .company_link a.company_link02 {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45.5%;
  height: 41.7%;
  background-color: #fff;
  opacity: 0;
}
#bottom_menu .company_link a.company_link03 {
  display: block;
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 22.2%;
  height: 42%;
  background-color: #fff;
  opacity: 0;
}
#bottom_menu .company_link a.company_link04 {
  display: block;
  position: absolute;
  bottom: 25px;
  left: 27.2%;
  width: 22.2%;
  height: 42%;
  background-color: #fff;
  opacity: 0;
}
#bottom_menu .company_link a.company_link05 {
  display: block;
  position: absolute;
  bottom: 25px;
  left: 50.6%;
  width: 22.2%;
  height: 42%;
  background-color: #fff;
  opacity: 0;
}
#bottom_menu .company_link a.company_link06 {
  display: block;
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 22.2%;
  height: 42%;
  background-color: #fff;
  opacity: 0;
}

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

/*会社概要*/

.lower_company_main {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 75px auto 0;
}
.lower_company_main .rinen_photo {
  width: 100%;
}
.lower_company_main h2 {
  position: absolute;
  top: 5%;
  left: 4%;
  font-size: 18px;
  font-weight: 400;
}
.lower_company_main .sub {
  position: absolute;
  top: 16%;
  left: 6%;
  font-size: 46px;
  font-weight: 400;
  color: #fff;
}
.lower_company_content {
  max-width: 1000px;
  width: 90%;
  margin: 38px auto 2%;
  position: relative;
  padding: 0 5%;
  text-align: left;
  color: #231815;
}
.lower_company_content .features_komidashi {
  font-size: 33px;
  font-weight: 700;
  color: #0076b0;
  line-height: 2em;
  margin-bottom: 14px;
}
.lower_company_content .features_copy {
  font-size: 21px;
  font-weight: 700;
  color: #231815;
  line-height: 1.7em;
  margin-bottom: 18px;
}
.lower_company_content .midashi_black {
  clear: both;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #231815;
  height: 50px;
  line-height: 48px;
  padding: 0 30px;
  margin-bottom: 24px;
}
.lower_company_content .midashi_black.md {
  margin-top: 60px;
}
.lower_company_content .midashi_black span {
  color: #b5b5b6;
  font-size: 14px;
}
.lower_company_content .txt {
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9em;
  margin-bottom: 37px;
}

.lower_company_content .daihyo_photo {
  width: 23%;
  margin: 12px 50px 20px 0;
}
.lower_company_content .company-table {
  position: relative;
  width: 100%;
  font-size: 17px;
  margin-bottom: 20px;
}
.lower_company_content .company-table th {
  font-weight: 400;
  width: 180px;
  vertical-align: top;
}
.lower_company_content .company-table td {
  width: calc(100% - 180px);
}
.lower_company_content .company-table td a {
  text-decoration: none;
  color: #231815;
}
.lower_company_content .company_outline_photo {
  width: 100%;
  margin-bottom: 30px;
}
.lower_company_content .company_history_photo {
  width: 100%;
  margin-bottom: 20px;
}

.lower_company_content .company-history-table {
  position: relative;
  width: 100%;
  font-size: 17px;
  margin-bottom: 30px;
}
.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: 28px;
}
.lower_company_content .komidashi {
  color: #0076b0;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 19px;
}
.lower_company_content .more_btn {
  position: relative;
  top: -20px;
  float: right;
  width: 28px;
}
.lower_company_content .googlemap {
  width: 100%;
  height: 400px;
  margin-bottom: 12px;
}
.lower_company_content .trafic {
  width: 70%;
  margin: 0 0 0 30%;
}
#company_modal .modal-inner {
  padding-top: 70px;
}
#company_modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 50px;
  width: 100%;
  max-height: 100vh; /* ← 高さ制限を設定 */
  overflow-y: auto; /* ← 縦スクロールを許可 */
  text-align: left;
  color: #555;
  box-sizing: border-box;
}
#company_modal2 .modal-inner {
  padding-top: 70px;
}
#company_modal2 .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 50px;
  width: 100%;
  max-height: 100vh; /* ← 高さ制限を設定 */
  overflow-y: auto; /* ← 縦スクロールを許可 */
  text-align: left;
  color: #555;
  box-sizing: border-box;
}
#company_modal2 .company-history-table {
  border-collapse: collapse;
}
#company_modal2 .company-history-table th,
#company_modal2 .company-history-table td {
  padding: 0 20px;
}
#company_modal2 .company-history-table .border {
  border-right: 1px solid #555;
  padding-right: 10px;
}

/*前川の製品&サービス 一覧*/
.lower_main.product {
  margin-bottom: 5px;
}
.lower_main.product .en_title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.lower_main.product h2 {
  position: absolute;
  bottom: 90px;
  left: 6%;
  font-size: 33px;
  font-weight: 400;
}
.lower_main.product .sub {
  position: absolute;
  bottom: 40px;
  left: 6%;
  font-size: 46px;
  font-weight: 400;
}

.lower_product_content {
  width: 920px;
  margin: 38px auto 2%;
  position: relative;
  padding: 0;
  text-align: left;
  color: #231815;
}
.lower_product_content h3 {
  width: 100%;
  height: 65px;
  background-color: #231815;
  color: #fff;
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  line-height: 63px;
  padding: 0 30px;
}
.lower_product_content h4 {
  width: 100%;
  height: 55px;
  background-color: #898989;
  color: #fff;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 53px;
  border-radius: 30px;
  padding: 0 43px;
}
.lower_product_content .txt01 {
  font-size: 18px;
  margin: 6px 0 17px;
}
.lower_product_content .txt02 {
  font-size: 18px;
  margin: 6px 0 17px;
}
.product_box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 2% 0 1.3%;
}
.product_box.bottom {
  margin: 2% 0 3%;
}
.product_box.service {
  margin: 2% 0 3%;
}
.product_box li {
  position: relative;
  width: 19%;
  aspect-ratio: 75 / 100;
  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: 19%;
  aspect-ratio: 75 / 120;
  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: 0;
}
.product_box li .thum {
  width: 100%;
}
.product_box li .product_name {
  color: #231815;
  font-size: 14px;
  font-weight: 600;
  font-feature-settings: "palt";
  white-space: nowrap;
  margin-bottom: 0;
}
.product_box li .product_name.chotai8 {
  transform: scaleX(0.8);
  transform-origin: left;
}
.product_box li .product_name.chotai7 {
  transform: scaleX(0.7);
  transform-origin: left;
}
.product_box li .product_txt {
  color: #231815;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3em;
  font-feature-settings: "palt";
}
.product_box li .more_btn {
  position: absolute;
  right: 15px;
  bottom: 4%;
  width: 13.5%;
}

/*前川の製品&サービス 詳細*/
.product_detail_title {
  width: 100%;
  max-width: 1000px;
  height: 75px;
  background-color: #898989;
  margin: 0 auto;
}
.product_detail_title h3 {
  max-width: 1000px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 28px;
  line-height: 75px;
  font-weight: 600;
  padding: 0 5%;
  white-space: nowrap;
  overflow: hidden;
}
.product_detail_title h3 span {
  position: relative;
  top: -3px;
  left: 40px;
  font-size: 20px;
  color: #dcdddd;
  font-weight: 400;
}
.lower_product_detail_content {
  max-width: 1000px;
  width: 90%;
  margin: 19px auto 2%;
  position: relative;
  padding: 0 5%;
  text-align: left;
  color: #231815;
}
.lower_product_detail_content h4 {
  font-size: 22px;
  line-height: 1.9em;
  font-weight: 600;
  margin-bottom: 0.5%;
}
.lower_product_detail_content .txt01 {
  font-size: 18px;
  line-height: 1.9em;
  font-weight: 400;
}
.product_detail_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2.5% 0 1.3%;
}
.product_detail_box li {
  position: relative;
  width: 48.3%;
  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: 57px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.08em;
  font-weight: 700;
  line-height: 1.5em;
  white-space: nowrap;
  padding-top: 5px;
  padding-left: 35px;

  margin-bottom: 22px;
}
.product_detail_box li .product_name span {
  display: block;
  color: #e83820;
  font-size: 23px;
}
.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: 12px;
  font-weight: 400;
  line-height: 1.5em;
  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: 12px;
  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: 68px;
  line-height: 66px;
  text-align: center;
  background-color: #898989;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 34px;
}
.lower_product_detail_content .product_back_btn:hover {
  opacity: 0.75;
}
.spec_spacer {
  height: 20px;
  width: 100%;
}
.spec_border {
  height: 1px;
  width: 100%;
  background-color: #ddd;
  margin-bottom: 20px;
}

/*試験機の動き インデックス*/
.lower_product_content .movie_txt01 {
  margin: 30px 0 0 30%;
  width: 70%;
  line-height: 1.2em;
}
.lower_product_content .movie_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px 0 35px 30%;
  width: 70%;
}

.lower_product_content .movie_box li {
  list-style: none;
  width: 32.5%;
  margin-right: 1.25%;
  margin-bottom: 30px;
}
.lower_product_content .movie_box li:nth-of-type(3n) {
  margin-right: 0;
}
.lower_product_content .movie_box li img {
  width: 100%;
  margin-bottom: 6px;
}
.lower_product_content .movie_box li a {
  color: #595757;
  text-decoration: none;
  line-height: 1.4em;
  font-size: 14px;
}
.lower_product_content h4.movie {
  width: 100%;
  height: 55px;
  background-color: #231815;
  color: #fff;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 53px;
  border-radius: 0;
  padding: 0 30px;
}
/*試験機の動き　詳細*/
#movie_detail_box {
  width: 100%;
  text-align: center;
  margin: 35px 0 35px;
}
#movie_detail_box iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
#movie_detail_box .movie_index_back {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
#movie_detail_box .movie_index_back a {
  color: #231815;
  text-decoration: none;
  font-size: 14px;
}

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

.lower_product_content.act {
  max-width: 1000px;
  width: 90%;
  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;
}
.lower_product_content.act .txt02 {
  width: 70%;
  margin: 18px 0 2% 30%;
  position: relative;
  padding: 0;
  text-align: left;
  color: #231815;
  font-size: 17px;
}
.lower_product_content.act img {
  width: 100%;
}
.lower_product_content.act img.activity01 {
  margin-bottom: 10px;
}
.lower_product_content.act img.activity02 {
  margin-bottom: 45px;
}
.lower_product_content.act img.activity03 {
  margin-bottom: 45px;
}

/*数字で見る前川試験機*/
.number_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.number_content {
  display: flex;
}
.number_content img {
  width: 70%;
}
.number_content .txt01 {
  width: 30%;
}

/*募集要項*/
.lower_main h2.description_midashi {
  position: absolute;
  left: 80px;
  bottom: 50px;
  font-size: 50px;
  font-weight: 400;
  color: #231815;
  line-height: 1.2em;
}
.lower_main h2.description_midashi span {
  position: relative;
  left: -15px;
  bottom: -10px;
  font-size: 30px;
}
.lower_flow_content .description_table {
  border-collapse: collapse;
  margin: 20px 0 30px;
  width: 100%;
}
.lower_flow_content .description_komidashi {
  background-color: #000;
  color: #fff;
  font-size: 22px;
  padding: 0 30px;
  height: 50px;
  line-height: 48px;
  font-weight: 600;
}
.lower_flow_content .description_table th {
  vertical-align: top;
  width: 150px;
  white-space: nowrap;
  font-weight: 400;
  line-height: 2.1em;
  text-align: left;
}

.lower_flow_content .description_table td {
  vertical-align: top;
  width: calc(100% - 150px);
  white-space: nowrap;
  font-size: 18px;
  line-height: 2.1em;
}
.lower_flow_content .description_table2 {
  border-collapse: collapse;
  margin: 20px 0 30px;
}
.lower_flow_content .description_table2 th {
  vertical-align: top;
  width: 150px;
  white-space: nowrap;
  font-size: 20px;
  line-height: 2.4em;
  text-align: left;
}
.lower_flow_content .description_table2 thead th {
  color: #0076b0;
  font-size: 22px;
}
.lower_flow_content .description_table2 td {
  vertical-align: top;
  width: calc(100% - 150px);
  white-space: nowrap;
  font-size: 20px;
  font-weight: 600;
  line-height: 2.4em;
}
.lower_flow_content .description_table2 thead th {
  color: #0076b0;
  font-size: 22px;
}

.lower_flow_content .description_table3 {
  border-collapse: collapse;
  margin: 10px 0 50px;
}
.lower_flow_content .description_table3 th {
  vertical-align: top;
  width: 100%;
  white-space: nowrap;
  font-size: 20px;
  line-height: 2.4em;
  text-align: left;
}
.lower_flow_content .description_table3 td {
  vertical-align: top;
  width: 100%;
  white-space: nowrap;
  font-size: 20px;
  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: 22px;
}

.lower_flow_content .entry_wrap {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.lower_flow_content .entry_wrap p {
  font-size: 16px;
}
.lower_flow_content a.entry_btn {
  display: block;
  width: 100%;
  height: 100px;
  line-height: 98px;
  background-color: #e60012;
  border-radius: 0;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 3px 0 18px 0;
  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: 100px;
  line-height: 98px;
  background-color: #f39800;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 3px 0 60px 0;
  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: 100px;
  line-height: 98px;
  background-color: #b60005;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 50px 0;
  text-decoration: none;
}
.lower_flow_content a.entry_btn2:hover {
  opacity: 0.75;
}

.lower_flow_content .nenshu {
  width: 100%;
  margin-top: 40px;
}

/*エントリー*/
.entry_txt01 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5em;
  margin: 10px 0 17px;
}
.entry_txt02 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5em;
  margin: 10px 0 17px;
  color: #e8380d;
}
.form_box {
  border: 1px solid #ddd;
  padding: 20px 37px 30px;
  font-size: 16px;
  line-height: 2em;
}
.form_box h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 2em;
  color: #0076b0;
  margin-bottom: 10px;
}
.form_box .txt02 {
  font-size: 16px;
  font-weight: 400;
  color: #231815;
  margin-bottom: 10px;
}
.form_box .note01 {
  font-size: 16px;
  font-weight: 400;
  color: #e8380d;
  margin-bottom: 10px;
}
.form_box .note02 {
  font-size: 16px;
  font-weight: 400;
  color: #e8380d;
  margin-bottom: 15px;
}
.form_box .note03 {
  font-size: 16px;
  font-weight: 400;
  color: #b60005;
  margin-bottom: 15px;
}
.entry_table {
  width: 95%;
}
.entry_table th,
.entry_table td {
  padding: 6px 0;
}
.entry_table th {
  font-weight: 400;
  vertical-align: top;
  width: 25%;
}
.entry_table th span {
  color: #e8380d;
}
.entry_table input[type="text"] {
  background-color: #efefef;
  border: 1px solid #bbb;
  width: 100%;
  padding: 0 1em;
}
.entry_table .day {
  white-space: nowrap;
}
.entry_table .small {
  font-size: 14px;
}
.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: 380px;
  height: 54px;
  line-height: 52px;
  border-radius: 30px;
  background-color: #e83820;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  margin: 20px auto 0;
}
.entry_btn:hover {
  opacity: 0.75;
  cursor: pointer;
}
.entry_table .entry_btn2 {
  display: block;
  width: 380px;
  height: 54px;
  line-height: 52px;
  border-radius: 30px;
  background-color: #b60005;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  margin: 20px auto 0;
}
.entry_table .entry_btn2:hover {
  opacity: 0.75;
  cursor: pointer;
}
#privacypolicy {
  margin: 3% 0 50px;
  font-size: 16px;
  line-height: 2em;
}
#privacypolicy h3 {
  padding: 0 25px;
  height: 60px;
  line-height: 58px;
  background-color: #dcdddd;
  font-size: 20px;
  margin: 30px 0 15px;
}
#privacypolicy h4 {
  font-size: 18px;
  color: #0076b0;
}
