@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;1,600&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #222222;
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

i {
  display: inline-block;
}

img {
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  padding: 60px 0;
  margin: 0 auto;
}
.container_short {
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 60px 0;
  }
}

.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-wrap: wrap;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

.wide_flex_box {
  width: 90%;
  max-width: 1560px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 20px;
}
.wide_flex_box img {
  width: 60%;
  max-width: 920px;
}
.wide_flex_box.right {
  margin: 0 0 0 auto;
}
.wide_flex_box.left {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  .wide_flex_box {
    width: 100%;
  }
  .wide_flex_box img {
    width: 100%;
  }
}

#pan {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto 0;
}
#pan li {
  font-size: 1.4rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
#pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
}
#pan li:last-child::before {
  display: none;
}
#pan a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #pan {
    margin-left: 20px;
  }
}

.btn {
  width: 290px;
  border: 1px solid;
  padding: 20px 0;
  border-radius: 30px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
.btn_trans {
  border-color: #3A5199;
  color: #3A5199;
}
.btn_trans:hover {
  background-color: #3A5199;
  color: #ffffff;
}
.btn_black {
  border-color: #222222;
  background-color: #222222;
  color: #ffffff;
}
.btn_black:hover {
  background-color: #ffffff;
  color: #222222;
}
.btn_box {
  text-align: center;
}
.head_text {
  margin-bottom: 30px;
  font-size: 3.6rem;
}
.head_text span {
  display: block;
  color: #3A5199;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
}
.head_text_white {
  color: #ffffff;
}
.head_text_white span {
  color: #ffffff;
}
.head_text_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .head_text {
    font-size: 2.6rem;
  }
}

.tel_num img {
  margin-right: 5px;
  display: inline-block;
}
.tel_num p {
  display: inline-block;
  color: #3A5199;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.tel_num span {
  display: block;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 500;
}
.tel_num:hover {
  opacity: 0.7;
}
.tel_num_text {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
  }
  .tel_num_text {
    text-decoration: none;
  }
}

.scroll_top {
  position: fixed;
  bottom: 15px;
  right: 30px;
  color: #3A5199;
  font-size: 5rem;
}
.scroll_top:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.targetFadeIn, .targetSlideInR, .targetSlideInL {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.sldeInL {
  animation-name: slideInAnimeL;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.sldeInR {
  animation-name: slideInAnimeR;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInAnimeL {
  from {
    opacity: 0;
    transform: translateX(1500px);
  }
  to {
    opacity: 1;
    transform: translateX(auto);
  }
}
@keyframes slideInAnimeR {
  from {
    opacity: 0;
    transform: translateX(-1500px);
  }
  to {
    opacity: 1;
    transform: translateX(auto);
  }
}
.fadeUpLoad {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  padding: 15px 30px;
  background-color: #F0F0F0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header_logo {
  width: 280px;
}
.header_logo:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
}
.header nav {
  flex: 1;
  padding-right: 210px;
}
.header nav ul {
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  font-weight: 500;
}
.header nav a:hover {
  color: #3A5199;
}
.header_link_contact {
  width: 180px;
  padding: 30px 0;
  background-color: #3A5199;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.header_link_contact i {
  display: block;
  margin: 0 auto 5px;
  font-size: 2rem;
}
@media screen and (max-width: 1439px) {
  .header {
    padding: 15px;
  }
  .header_logo img {
    width: 200px;
  }
  .header nav, .header_link_contact {
    display: none;
  }
}

.burger_btn,
.close_btn {
  display: none;
  aspect-ratio: 1/1;
  height: 100%;
  padding: 20px 0;
  text-align: center;
  background-color: #3A5199;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger_btn:hover,
.close_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1439px) {
  .burger_btn,
  .close_btn {
    display: block;
  }
}

.overlay {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 70px 20px 100px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.overlay ul {
  gap: 20px;
  font-weight: 500;
}
.overlay .header_link_contact {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-size: 2.6rem;
  font-weight: 700;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  font-size: 1.8rem;
}
.overlay .header_link_contact:hover {
  opacity: 0.7;
}
.overlay .header_link_contact i {
  display: inline-block;
  margin-right: 5px;
}
.overlay .close_btn {
  height: 62px;
}

.contact_area {
  background-image: url(../img/cta_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact_area ul {
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.contact_area li {
  width: 50%;
  max-width: 590px;
  height: 160px;
}
.contact_area a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: #ffffff;
  text-align: center;
}
.contact_area a:hover {
  opacity: 0.7;
}
.contact_area a p {
  margin-bottom: 10px;
  color: #3A5199;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
}
.contact_area a span {
  text-align: center;
  font-weight: 600;
}
.contact_area a span span {
  display: inline-block;
  border-radius: 20px;
  padding: 2px 15px;
  margin-right: 10px;
  background-color: #3A5199;
  color: #ffffff;
  font-size: 1.6rem;
}
.contact_area a.tel_num span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .contact_area li {
    width: 100%;
    max-width: 520px;
    height: auto;
  }
  .contact_area a {
    padding: 20px;
  }
  .contact_area a p {
    margin-bottom: 5px;
    font-size: 3.2rem;
  }
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  font-weight: 500;
}
.footer:before {
  content: "";
  width: 40%;
  height: 100%;
  background-color: #222222;
  position: absolute;
  top: 0;
  left: 0;
}
.footer:after {
  content: "";
  width: 60%;
  height: 100%;
  background-image: linear-gradient(90deg, #dadada, #ffffff 50%, #dadada);
  position: absolute;
  top: 0;
  right: 0;
}
.footer .container {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px 30px;
}
.footer ul.flex_box {
  gap: 20px;
}
.footer_area_left {
  color: #ffffff;
}
.footer_area_left p {
  margin-top: 30px;
}
.footer_area_right {
  width: 55%;
}
.footer_menu_top {
  margin-bottom: 100px;
  gap: 70px;
}
.footer_menu_top a {
  position: relative;
  padding-left: 15px;
}
.footer_menu_top a:before {
  content: "_";
  position: absolute;
  bottom: 5px;
  left: 0;
}
.footer_menu_sub {
  padding-left: 40px;
  font-weight: 400;
}
.footer_menu_sub a {
  padding-left: 0;
}
.footer_menu_sub a:before {
  display: none;
}
.footer_menu_btm {
  align-items: flex-end;
  font-size: 1.4rem;
}
@media screen and (max-width: 899px) {
  .footer:before {
    content: "";
    width: 100%;
    height: 25%;
  }
  .footer:after {
    content: "";
    width: 100%;
    height: 75%;
    top: auto;
    bottom: 0;
  }
  .footer_area_left img {
    width: 250px;
  }
  .footer_area_left p {
    margin-top: 20px;
  }
  .footer_area_right {
    width: 100%;
  }
  .footer ul.flex_box {
    gap: 10px;
  }
  .footer_menu_top {
    margin-bottom: 50px;
    gap: 10px;
  }
  .footer_menu_sub {
    padding-left: 20px;
  }
  .footer_menu_btm {
    align-items: flex-start;
  }
}

.first_view {
  width: 100%;
  height: 90vh;
  max-height: 810px;
  background-image: url(../img/fv_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.first_view_text {
  color: #ffffff;
  position: absolute;
  bottom: 60px;
  left: 8%;
}
.first_view_text_main {
  margin-bottom: 10px;
  font-size: 6.4rem;
  line-height: 1.5;
  font-weight: 900;
}
.first_view_text_sub {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .first_view {
    max-height: 550px;
  }
  .first_view_text {
    width: 95%;
    bottom: 30px;
    left: 3%;
  }
  .first_view_text_main {
    font-size: 3rem;
  }
  .first_view_text_sub {
    font-size: 1.8rem;
  }
}
.first_view.page_title {
  height: auto;
  max-height: none;
  padding: 60px 0;
  overflow: hidden;
}
.first_view.page_title.about {
  background-image: url(../img/about_fv_bg.webp);
}
.first_view.page_title.company {
  background-image: url(../img/company_fv_bg.webp);
}
.first_view.page_title.contact {
  background-image: url(../img/contact_fv_bg.webp);
}
.first_view.page_title.facility {
  background-image: url(../img/facility_fv_bg.webp);
}
.first_view.page_title.privacy {
  background-image: url(../img/privacy_fv_bg.webp);
}
.first_view.page_title.service {
  background-image: url(../img/service_fv_bg.webp);
}
.first_view.page_title.sitemap {
  background-image: url(../img/sitemap_fv_bg.webp);
}
.first_view.page_title .first_view_text {
  position: inherit;
  bottom: auto;
}
.first_view.page_title .first_view_text_main {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .first_view.page_title {
    padding: 30px 0;
  }
  .first_view.page_title .first_view_text_main {
    font-size: 2.5rem;
  }
  .first_view.page_title .first_view_text_sub {
    font-size: 1.6rem;
  }
}

.top_about {
  padding-top: 60px;
  background-image: url(../img/top_about_bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_about .container {
  justify-content: space-between;
  gap: 30px;
}
.top_about .head_text {
  width: 50%;
  margin-bottom: 0;
}
.top_about .text_area {
  flex: 1;
}
.top_about .text_area p {
  font-weight: 500;
  line-height: 2;
}
.top_about .text_area .btn {
  margin-top: 30px;
}
.top_about_slider {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_about .head_text {
    width: 100%;
    font-size: 2.2rem;
  }
  .top_about_slider {
    display: none;
  }
}
.top_service {
  padding-bottom: 120px;
}
.top_service_area {
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.top_service_category {
  gap: 60px;
}
.top_service_category .text_area {
  flex: 1;
  max-width: 560px;
}
.top_service_category h3 {
  margin-bottom: 10px;
  font-size: 3.2rem;
}
.top_service_category p {
  margin-bottom: 40px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_service_area {
    align-items: flex-start;
  }
  .top_service_category .text_area {
    padding: 0 20px;
  }
  .top_service_category h3 {
    font-size: 2.2rem;
  }
}
.top_facility {
  background-image: linear-gradient(90deg, #dadada, #ffffff 50%, #dadada);
}
.top_facility .flex_box {
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px 20px;
}
.top_facility .text_area {
  flex: 1;
}
.top_facility_parallax {
  width: 100%;
  height: 300px;
  background-image: url(../img/top_facility_parallax.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .top_facility .flex_box {
    align-items: flex-start;
  }
  .top_facility_parallax {
    height: 200px;
    background-attachment: scroll;
  }
}
.top_company {
  padding: 60px 0 120px;
}
.top_company .container {
  justify-content: space-between;
  align-items: center;
  gap: 30px 20px;
}
.top_company .head_text {
  margin-bottom: 0;
}
.top_company_menu ul {
  width: 420px;
}
.top_company_menu ul li:not(:last-child) {
  border-bottom: 1px solid #DADADA;
}
.top_company_menu ul a {
  display: block;
  width: 100%;
  padding: 20px 70px;
  position: relative;
}
.top_company_menu ul a i {
  color: #3A5199;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.top_company_menu ul a:hover {
  color: #3A5199;
}
.top_company_menu ul a:hover i {
  right: 25px;
}
@media screen and (max-width: 767px) {
  .top_company {
    padding: 30px 0 60px;
  }
  .top_company_menu ul {
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
  }
  .top_company_menu ul a {
    padding: 15px 30px;
  }
  .top_company_menu ul a i {
    right: 40px;
  }
  .top_company_menu ul a:hover {
    color: #3A5199;
  }
  .top_company_menu ul a:hover i {
    right: 25px;
  }
}

.about_top {
  padding: 120px 0 60px;
}
.about_top .wide_flex_box img {
  max-width: 920px;
}
.about_top .text_area {
  max-width: 570px;
}
@media screen and (max-width: 767px) {
  .about_top {
    padding: 60px 0 30px;
  }
  .about_top .head_text {
    font-size: 2.2rem;
  }
  .about_top .text_area {
    max-width: 100%;
    padding: 0 20px;
  }
}
.about_feature ul {
  gap: 80px;
}
.about_feature li {
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.about_feature li:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.about_feature li .text_area {
  flex: 1;
}
.about_feature li img {
  width: 40%;
  max-width: 580px;
}
.about_feature li span:not(.about_feature_help),
.about_feature li span:not(.service_steel_help) {
  color: #3A5199;
  font-family: "Montserrat", sans-serif;
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 1.2;
}
.about_feature li h3 {
  margin-bottom: 30px;
  font-size: 3.2rem;
}
.about_feature li p {
  line-height: 2;
}
.about_feature_help {
  display: block;
  margin-top: 5px;
  color: #3A5199;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .about_feature ul {
    gap: 60px;
  }
  .about_feature li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .about_feature li img {
    width: 100%;
    max-width: 350px;
  }
  .about_feature li span:not(.about_feature_help) {
    font-size: 3rem;
  }
  .about_feature li h3 {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}
.about_feature.service li h3 {
  color: #3A5199;
}
@media screen and (max-width: 767px) {
  .about_feature.service li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
}

.service_steel div.flex_box {
  border-radius: 10px;
  padding: 50px 60px;
  background-color: #3A5199;
  color: #ffffff;
  gap: 30px 40px;
  align-items: flex-start;
}
.service_steel ul {
  flex: 1;
  padding-left: 20px;
  font-size: 2rem;
  font-weight: 700;
  list-style: disc;
  list-style-position: outside;
  gap: 15px;
}
.service_steel .no_image,
.service_steel img {
  width: 50%;
  max-width: 520px;
  aspect-ratio: 4/3;
  background-color: #D9D9D9;
}
.service_steel .zam {
  padding-left: 10px;
  margin-top: 20px;
  font-weight: 400;
  font-size: 1.6rem;
}
.service_steel_zam {
  width: 100%;
  max-width: 1080px;
  border-radius: 10px;
  margin: 30px auto 0;
  padding: 30px 40px;
  background-color: #F5F5F5;
  color: #3A5199;
}
.service_steel_zam p:nth-of-type(2) {
  margin-bottom: 20px;
}
.service_steel_zam p:nth-of-type(2n + 2) {
  font-size: 1.6rem;
  font-weight: 400;
}
.service_steel .service_steel_help {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .service_steel div.flex_box {
    padding: 40px 30px;
    align-items: center;
  }
  .service_steel ul {
    width: 100%;
    padding-left: 30px;
    font-size: 1.8rem;
    gap: 10px;
  }
  .service_steel .no_image,
  .service_steel img {
    width: 100%;
    max-width: 350px;
  }
  .service_steel_zam {
    padding: 30px;
  }
}
.service_steel_category {
  width: 100%;
  max-width: 1080px;
  border-radius: 10px;
  padding: 45px 60px;
  margin: 0 auto;
  background-color: #F5F5F5;
  font-weight: 500;
}
.service_steel_category ul {
  margin-bottom: 50px;
  justify-content: space-around;
  gap: 20px;
  font-size: 2rem;
  flex-direction: row;
}
.service_steel_category span {
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .service_steel_category {
    padding: 30px 20px;
  }
  .service_steel_category ul {
    margin-bottom: 20px;
    justify-content: center;
    font-size: 1.8rem;
  }
  .service_steel_category span {
    font-size: 1.3rem;
  }
}
.service_case {
  background-color: #3A5199;
  padding: 30px 0;
  overflow-x: hidden;
}
.service_case_slider .slick-slide {
  width: 420px !important;
  border-radius: 10px;
  padding: 40px 40px 50px;
  margin: 0 30px;
  background-color: #ffffff;
  box-shadow: 10px 10px 20px #2e4076;
}
.service_case_slider h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
}
.service_case_slider img,
.service_case_slider .no_image {
  width: 100%;
  aspect-ratio: 2/1;
  background-color: #D9D9D9;
}
@media screen and (max-width: 767px) {
  .service_case_slider .slick-slide {
    width: 310px !important;
    min-height: 270px !important;
    padding: 30px 20px;
  }
  .service_case_slider .slick-slide h3 {
    font-size: 1.8rem;
  }
}

.facility_content .container {
  padding: 120px 0;
}
.facility_content_top {
  margin-bottom: 60px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
.facility_content_top img {
  width: 50%;
  max-width: 580px;
}
.facility_content_top .text_area {
  flex: 1;
  max-width: 560px;
}
.facility_content_top_text {
  margin-bottom: 20px;
  color: #3A5199;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.facility_content_list {
  justify-content: flex-start;
  gap: 60px 30px;
}
.facility_content_list li {
  width: 380px;
}
.facility_content_list .no_image,
.facility_content_list img {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  background-color: #D9D9D9;
}
.facility_content_list dl {
  gap: 20px;
  align-items: center;
  font-weight: 500;
  flex-direction: row;
}
.facility_content_list dt {
  width: 85px;
  border-radius: 4px;
  padding: 1px;
  text-align: center;
  background-color: #3A5199;
  color: #ffffff;
}
.facility_content_list dd {
  width: calc(100% - 85px - 20px);
}
@media screen and (max-width: 767px) {
  .facility_content .container {
    padding: 60px 0;
  }
  .facility_content_top {
    align-items: center;
  }
  .facility_content_top img {
    width: 100%;
    max-width: 350px;
  }
  .facility_content_top_text {
    font-size: 2.2rem;
  }
  .facility_content_list {
    align-items: center;
  }
  .facility_content_list li {
    max-width: 320px;
  }
}

.company_message .flex_box {
  align-items: flex-start;
  gap: 30px 60px;
}
.company_message .text_area {
  flex: 1;
}
.company_message .text_area p {
  line-height: 2;
}
.company_message img,
.company_message .no_image {
  width: 40%;
  max-width: 345px;
  aspect-ratio: 1/1;
  background-color: #D9D9D9;
  position: relative;
}
.company_message img p,
.company_message .no_image p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.company_message_sign {
  margin-top: 20px;
  text-align: right;
}
.company_message_sign span {
  display: inline-block;
  margin-left: 20px;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company_message .flex_box {
    align-items: center;
  }
  .company_message img {
    width: 100%;
  }
  .company_message_sign span {
    font-size: 2.4rem;
  }
}
.company_policy {
  background-image: linear-gradient(90deg, #dadada, #ffffff 50%, #dadada);
}
.company_policy .container {
  padding: 50px 0;
}
.company_policy p {
  margin-bottom: 80px;
  color: #3A5199;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
.company_policy ul {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  gap: 30px;
  color: #3A5199;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .company_policy .container {
    padding: 35px 0;
  }
  .company_policy p {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
  .company_policy ul {
    font-size: 1.8rem;
  }
}
.company_outline dt,
.company_outline dd {
  padding: 30px 45px;
  border-bottom: 1px solid;
}
.company_outline dt:nth-of-type(1),
.company_outline dd:nth-of-type(1) {
  border-top: 1px solid;
}
.company_outline dt {
  width: 30%;
  border-color: #3A5199;
  font-weight: 500;
}
.company_outline dt:nth-of-type(1) {
  border-color: #3A5199;
}
.company_outline dd {
  width: 70%;
  border-color: #D3D3D3;
}
.company_outline dd:nth-of-type(1) {
  border-color: #D3D3D3;
}
@media screen and (max-width: 767px) {
  .company_outline dl {
    border-top: 1px solid #D3D3D3;
  }
  .company_outline dt,
  .company_outline dd {
    width: 100%;
  }
  .company_outline dt:nth-of-type(1),
  .company_outline dd:nth-of-type(1) {
    border-top: none;
  }
  .company_outline dt {
    padding: 10px 10px 5px;
    border-bottom: none;
  }
  .company_outline dd {
    padding: 0px 10px 10px;
  }
}
.company_history {
  background-color: #3A5199;
  color: #ffffff;
}
.company_history .container {
  padding: 50px 0;
}
.company_history ul {
  gap: 60px;
  position: relative;
}
.company_history ul:before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  left: 135px;
  top: 0;
}
.company_history li {
  align-items: flex-start;
  gap: 0 10%;
}
.company_history li span {
  width: 75px;
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .company_history .container {
    padding: 35px 0;
  }
  .company_history ul {
    gap: 40px;
  }
  .company_history ul:before {
    left: 20px;
  }
  .company_history li {
    position: relative;
  }
  .company_history li span {
    display: inline-block;
    padding: 10px 0;
    font-size: 2.4rem;
    background-color: #3A5199;
  }
  .company_history li p {
    padding-left: 35px;
  }
}
.company_access .g_map_area {
  width: 100%;
  max-width: 850px;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.company_access .g_map_area iframe {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.company_access_help_text {
  display: block;
  margin-top: 20px;
  font-size: 1.4rem;
}

.contact_message {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 50px;
}
.contact_message .must {
  margin: 0 10px 0 0;
}
.contact_box {
  padding: 0 70px 70px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .contact_message {
    margin: 0 auto 35px;
  }
  .contact_box {
    padding: 0 0 40px;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #3A5199;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: left;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #D3D3D3;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: 1px solid #D3D3D3;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #D3D3D3;
  padding: 3px 10px;
  background-color: #ffffff;
}
form textarea {
  font-size: 16px;
  border: 1px solid #D3D3D3;
  padding: 3px 10px;
  width: 100%;
  background-color: #ffffff;
  color: #000;
}
form input, form select {
  vertical-align: middle;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .btn {
  transition: 0.3s ease;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #F5F5F5;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #F5F5F5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.must {
  display: inline-block;
  background-color: #3A5199;
  font-size: 12px;
  line-height: 1.5em;
  color: #F5F5F5;
  margin: 0 0 0 10px;
  border-radius: 4px;
  padding: 2px 10px;
}

.privacy p {
  margin-bottom: 30px;
}
.privacy dt {
  border-top: 1px solid #DADADA;
  padding-top: 30px;
  margin-bottom: 15px;
  color: #3A5199;
  font-size: 2rem;
  line-height: 1.5;
}
.privacy dd {
  padding-bottom: 30px;
}
.privacy ol {
  margin-top: 10px;
  list-style-type: decimal;
  list-style-position: inside;
}
@media screen and (max-width: 767px) {
  .privacy dt {
    font-size: 1.8rem;
  }
}

.sitemap .container {
  justify-content: center;
  align-items: flex-start;
  gap: 0 80px;
}
.sitemap ul {
  width: 48%;
  max-width: 500px;
  border-bottom: 1px solid #DADADA;
  font-weight: 500;
}
.sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid #DADADA;
  padding: 20px 10px;
  position: relative;
}
.sitemap a i {
  color: #3A5199;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
.sitemap a:hover {
  color: #3A5199;
}
.sitemap a:hover i {
  right: 40px;
}
@media screen and (max-width: 767px) {
  .sitemap .container {
    align-items: center;
  }
  .sitemap ul {
    width: 100%;
  }
  .sitemap ul:nth-of-type(1) {
    border-bottom: none;
  }
  .sitemap a {
    padding: 15px 5px;
  }
  .sitemap a i {
    top: 17px;
    right: 30px;
  }
  .sitemap a:hover i {
    right: 20px;
  }
}

.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */