@import url("import/attachment.css");

html,
body {
  overflow-x: hidden;
}

body {
  line-height: 1.75;
}

/* PCの時にのみhoverアニメーションが実行されるように制御 */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: ease-in-out 0.3s;
  }
}

/********** Template CSS **********/
:root {
  --primary: #db2531;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #012685;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.topbar-right {
  position: relative;
  background: var(--primary);
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: var(--primary);
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  height: 75px;
  display: flex;
  align-items: center;
  background: var(--primary);
  padding-left: 40px;
}

.navbar .navbar-brand::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 100%;
  top: 0;
  right: -25px;
  transform: skewX(-30deg);
  background-color: var(--primary);
}

.navbar .navbar-nav {
  width: 85%;
  justify-content: flex-end;
  gap: 1.5%;
}

.navbar .navbar-nav .nav-link {
  padding: 20px 0;
  color: #5f656f;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 3.5rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/bg_subpage_header.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
  transition: 0.3s;
}

.page-header .breadcrumb-item a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/*** Facts ***/
.facts {
  position: relative;
  margin: 6rem 0;
  background: var(--dark);
}

.facts .border {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/*** Features ***/
.btn-play {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

@media (max-width: 992px) {
  .btn-play {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Service ***/
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
  position: absolute;
  padding: 12px;
  width: 130px;
  height: 130px;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .service-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.service-item .service-title,
.service-item .service-text {
  position: absolute;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-title {
  top: -100%;
}

.service-item .service-text {
  position: absolute;
  overflow: hidden;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  text-align: center;
  background: rgba(2, 36, 91, 0.7);
  transition: 0.5s;
}

.service-item:hover .service-text {
  top: 0;
}

.service-item .service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  top: -100%;
  left: 0;
  transform: skewY(-12deg);
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  top: -55px;
}

.service-item .btn {
  position: absolute;
  width: 100%;
  max-width: 230px;
  padding: 1rem 3rem;
  padding-left: 3.8rem;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: #ffffff;
  border: 2px solid #012685;
  z-index: 2;
}

.service-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
  border: 2px solid var(--primary);
}

/*** Project ***/
.project-carousel {
  position: relative;
  background: var(--dark);
}

.project-item {
  position: relative;
  display: block;
}

.project-item img {
  transition: 0.5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
  margin-top: -60px;
}

.project-item .project-title {
  position: absolute;
  padding: 0 15px;
  width: 100%;
  height: 80px;
  bottom: -110px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  transition: 0.5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
  bottom: -60px;
}

.project-item .project-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  top: -9px;
  left: 0;
  transform: skewY(-5deg);
  background: var(--dark);
  transition: 0.5s;
}

.project-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.project-carousel:hover .owl-nav {
  opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

/*** Team ***/
.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  display: flex;
  align-items: center;
  background: #efc204;
  transition: 0.5s;
}

.team-item:hover .team-social {
  left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Footer ***/
.footer {
  color: #b0b9ae;
}

.bnr_group {
  background: #f5f5f5;
}

.footer .btn.btn-link {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.fNav_lists li::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
  border-bottom: 1px dashed #fff;
}

.copyright {
  color: #b0b9ae;
  font-size: 0.9em;
}

/*** wombadd ***/

#logo {
  width: 375px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    position: relative;
    height: 50px;
    padding-left: 40px;
    padding-right: 32px;
  }

  #logo {
    width: 160px;
  }

  .navbar-toggler {
    position: absolute;
    right: 15px;
  }

  .navbar .navbar-brand::after {
    width: 50px;
  }

  .text-start {
    padding: 0 0 0 35px;
  }
}

/* img hover */
.rollover {
  position: relative;
}

.rollover .hover {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}

.rollover a:hover .hover {
  opacity: 1;
}

.movie_hover {
  max-width: 380px;
}

.margin-center img {
  margin-right: auto;
  margin-left: auto;
}

/* detail btn */
.detail_btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 230px;
  padding: 1rem 3rem;
  padding-left: 3.8rem;
  background-color: #012685;
  color: #fff;
  transition: 0.3s;
}

.detail_btn:hover {
  color: #fff;
  background-color: #db2531;
}

.detail_btn::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

.header_tel_hour {
  font-size: 0.7em;
}

.navbar_sp {
  display: none;
}

@media (max-width: 1129px) {
  .navbar_sp {
    display: block;
  }

  .navbar_sp_tel_hour {
    font-size: 0.8em;
  }
}

.bnr_group_wrapper {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

@media (max-width: 768px) {
  .bnr_group_wrapper {
    flex-direction: column;
  }
}

button {
  border: none;
}

/* recruit header */
.recruit_header {
  background: url(../img/img_recruit_main.jpg) center center no-repeat;
  /* background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/img_recruit_main.jpg) center center no-repeat; */
  background-size: cover;
  padding-top: 56.25%;
  /* padding-bottom: 15rem; */
}

.recruit_overview_icon {
  width: 90px;
  height: 90px;
}

@media (max-width: 768px) {
  .recruit_intro {
    margin-top: 30px !important;
  }
}

/* about > strengths */
.strengths_box {
  border: 3px solid rgba(2, 36, 91, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 40px 30px 20px;
}

.strengths_box:not(:last-of-type) {
  margin-bottom: 20px;
}

.strengths_img_wrap {
  max-width: 470px;
  margin-right: 1%;
}

.strengths_img {
  max-width: 470px;
}

.strengths_img img {
  max-width: 100%;
}

.strengths_title {
  font-size: 1.3rem;
}

.strengths_text {
  text-align: justify;
}

@media (max-width: 991px) {
  .strengths_img_wrap {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .strengths_title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .strengths_box {
    justify-content: center;
    padding: 20px 35px;
  }
}

/* equipment */
.equipment_intro_img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.equipment_items {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.equipment_items div {
  padding: 1em;
  border: 3px solid rgba(2, 36, 91, 0.2);
}

.equipment_items img {
  max-width: 100%;
}

.equipment_table {
  width: 100%;
}

.equipment_table_title {
  border-bottom: 1px solid #f5f5f5;
}

.equipment_table_title th,
.equipment_table_body th,
.equipment_table_body td {
  padding: 15px 20px;
}

.equipment_table_body th {
  width: 24%;
}

.equipment_table_body td:nth-of-type(1) {
  width: 30%;
}

.equipment_table_body td:nth-of-type(2) {
  width: 34%;
}

.equipment_table_body td:nth-of-type(3) {
  width: 12%;
  text-align: center;
}

.equipment_table_body:nth-of-type(2n) {
  background: #f5f5f5;
}

.equipment_table_body:last-of-type {
  border-bottom: 1px solid #f5f5f5;
}

@media (max-width: 768px) {
  .equipment_items {
    flex-wrap: wrap;
  }

  .equipment_table_title th,
  .equipment_table_body th,
  .equipment_table_body td {
    padding: 5px 20px;
  }

  .equipment_table_title {
    display: none;
  }

  .equipment_table_body th {
    display: block;
    width: 100%;
    text-align: center;
  }

  .equipment_table_body_empty {
    display: none !important;
  }

  .equipment_table_body_title {
    border-bottom: 1px solid rgba(2, 36, 91, 0.2);
  }

  .equipment_table_body td:nth-of-type(1),
  .equipment_table_body td:nth-of-type(2),
  .equipment_table_body td:nth-of-type(3) {
    display: block;
    width: 100%;
    text-align: right;
    position: relative;
  }

  .equipment_table_body td::before {
    content: attr(date_title);
    display: block;
    float: left;
  }
}

/* recruit */
.message_container {
  background: #f5f5f5;
}


.message_sign {
  text-align: right;
}

.visualNav_img_wrap {
  margin-top: 0 !important;
}

.visualNav_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  text-align: center;
}

.visualNav_img img {
  max-width: 100%;
}

.visualNav_container {
  background: #f5f5f5;
}

.visualNav_wrap_reverse {
  margin-top: 20px;
}

.visualNav_title {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.visualNav_title h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}

.visualNav_title h2::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #db2531;
}

.visualNav_title p {
  font-size: 16px;
  margin-bottom: 0;
  margin-left: 10px;
}

.visualNav_img_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .visualNav_img_group {
    flex-wrap: wrap;
  }

  .visualNav_wrap div:nth-of-type(1) {
    order: 1;
  }

  .visualNav_wrap div:nth-of-type(2) {
    order: 3;
  }

  .visualNav_wrap div:nth-of-type(3) {
    order: 2;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .visualNav_wrap div:nth-of-type(4) {
    order: 4;
  }

  .visualNav_wrap_reverse div:nth-of-type(1) {
    order: 1;
  }

  .visualNav_wrap_reverse div:nth-of-type(2) {
    order: 2;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .visualNav_wrap_reverse div:nth-of-type(3) {
    order: 3;
  }

  .visualNav_wrap_reverse div:nth-of-type(4) {
    order: 4;
  }

  .visualNav_wrap img,
  .visualNav_wrap_reverse img {
    width: 70% !important;
    margin: 0 auto;
  }

}

.positions_type_wrap:not(:last-of-type) {
  margin-bottom: 20px;
}

.positions_type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9em 1.5em;
  color: #fff !important;
  background: #012685;
  transition: 0.4s;
}

.positions_type:link,
.positions_type:visited {
  color: inherit;
}

.positions_type h2 {
  font-size: 1.5rem;
  color: inherit;
  margin: 0;
}

.positions_type p {
  margin: 0;
}

.positions_type p::after {
  content: ">";
  display: inline-block;
  margin-left: 0.3em;
}

.positions_type:hover {
  color: #fff;
  background: #db2531;
}

@media (max-width: 768px) {
  .visualNav_title {
    flex-direction: column;
    padding: 1rem 2rem;
    align-items: flex-start;
  }

  .positions_type {
    flex-direction: column;
    justify-content: center;
    gap: 0.5em;
  }
}

/* company */
#product {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

#overview,
#gallery {
  margin-bottom: 5rem;
}

.greeting {
  background: #f5f5f5;
}

.greeting_sign {
  text-align: right;
}

.product_img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.overview_lists {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid rgba(2, 36, 91, 0.2);
  margin-bottom: 0;
}

.overview_lists:first-of-type {
  border-top: 1px solid rgba(2, 36, 91, 0.2);
}

.overview_lists dt {
  width: 20%;
  color: #012685;
}

.overview_lists dd {
  width: 80%;
  margin-bottom: 0;
}

.overview_list_circle::before {
  content: "●";
  display: inline-block;
  margin-right: 0.2rem;
}

.text_indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 768px) {

  #product {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  #overview,
  #gallery {
    margin-bottom: 3rem;
  }

  .overview_lists {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .overview_lists dt,
  .overview_lists dd {
    width: 100%;
  }
}

/* recruit > job */
.job_intro_wrap {
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.job_people {
  background: #f5f5f5;
}

.job_entry_btn {
  max-width: 300px;
}

.job_entry_btn::after {
  content: none;
}

@media (max-width: 768px) {
  .job_intro_wrap {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .job_intro_wrap p {
    text-align: justify;
  }
}

/* .container_middle {
  max-width: 600px;
} */

.text_justify {
  text-align: justify;
}


/* form */

/* iOSでのデフォルトスタイルをリセット */
input {
  font-size: 16px;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

select::-ms-expand {
  display: none;
}



.form_wrap {
  width: 100%;
}

.form_attention {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.form_body {
  display: flex;
  align-items: center;
  gap: 2%;
  padding: 1em 2em;
  border-bottom: 1px solid rgba(2, 36, 91, 0.2);
}

.form_body:first-of-type {
  border-top: 1px solid rgba(2, 36, 91, 0.2);
}

.form_title {
  margin-bottom: 0;
  flex-grow: 1;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.required::after {
  content: attr(date-required);
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  background: #012685;
  color: #fff;
  padding: 0.1rem 0.6rem;
  border-radius: 30px;
}

.required_center {
  position: relative;
  top: -2px;
  left: 0;
  margin-right: 0.2rem;
}

.form_inputField {
  width: 68%;
}

.form_inputField_radio {
  display: flex;
  align-items: center;
  gap: 8%;
}

.form_inputField input[type=text] {
  width: 50%;
  max-width: 320px;
}

.form_inputField_lg input[type=text],
.form_inputField_lg textarea {
  width: 100%;
  max-width: 100%;
}

.form_submit_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.form_submit_group input[type=checkbox] {
  margin-right: 0.5em;
}

@media (max-width: 768px) {

  .form_body {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }

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

  .form_inputField {
    width: 100%;
  }

  .form_inputField input[type=text] {
    width: 60%;
    max-width: 320px;
  }

  .form_inputField_lg input[type=text],
  .form_inputField_lg textarea {
    width: 100%;
    max-width: 100%;
  }

  .form_inputField_radio {
    flex-direction: column;
    align-items: flex-start;
    gap: 8%;
  }
}


.section_title {
  font-size: 2rem;
}


.service_text_inner {
  margin: 0 auto;
  font-size: calc(1.3rem + .6vw);
  font-weight: 500;
}


.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}



.color_bk {
  color: #333333;
}


@media (max-width: 768px) {
  .tours_inner p {
    margin-bottom: 0;
  }

  .p-5 {
    padding: 1.75rem !important;
  }

  .py-5 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}