@charset "UTF-8";
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif !important;
}

h2 {
  font-size: 36px;
}

p {
  font-size: 16px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  p {
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  p {
    font-size: 12.5px;
  }
}

.headline {
  font-family: "Josefin Sans", sans-serif !important;
  font-weight: 500;
  font-style: normal;
  font-size: 48px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .headline {
    font-size: 36px;
  }
}
@media screen and (max-width: 599px) {
  .headline {
    font-size: 24px;
  }
}

.btn {
  margin-top: 40px;
}
.btn a button {
  padding: 15px 40px;
  letter-spacing: 1.2px;
  border: none;
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 599px) {
  .btn a button {
    padding: 12px 30px;
  }
}
.btn a button:hover {
  background-color: #00263e;
  color: #fff;
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.header.change-color {
  background-color: #d1b76e;
  transition: 0.3s;
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .wide {
    width: 700px;
  }
}
@media screen and (max-width: 599px) {
  .wide {
    width: 350px;
  }
}

#contents_topMain {
  width: 100%;
  height: 425px;
  position: relative;
}
@media screen and (max-width: 599px) {
  #contents_topMain {
    height: 195px;
  }
}
#contents_topMain::after {
  position: absolute;
  content: "";
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 38, 62, 0.5);
}
#contents_topMain h2 {
  padding-top: 210px;
  padding-left: 80px;
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contents_topMain h2 {
    font-size: 56px;
    letter-spacing: 15px;
  }
}
@media screen and (max-width: 599px) {
  #contents_topMain h2 {
    padding-top: 100px;
    padding-left: 20px;
    font-size: 24px;
    letter-spacing: 5px;
  }
}
#contents_topMain p {
  padding-left: 80px;
  color: #fff;
  font-size: 24px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  #contents_topMain p {
    padding-left: 20px;
    font-size: 12.5px;
  }
}

.breadCrumbs {
  margin-left: 40px;
  margin-top: 20px;
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .breadCrumbs {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .breadCrumbs {
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.breadCrumbs p {
  font-size: 11.5px;
}
@media screen and (max-width: 599px) {
  .breadCrumbs p {
    font-size: 9px;
  }
}
.breadCrumbs p a {
  color: #A6A6A6;
}
.breadCrumbs p span {
  margin: 0 20px;
}
@media screen and (max-width: 599px) {
  .breadCrumbs p span {
    margin: 0 10px;
  }
}

.page-contents_title {
  width: 100%;
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .page-contents_title {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .page-contents_title {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
.page-contents_title h2 {
  text-align: center;
  position: relative;
  font-size: 36px;
  letter-spacing: 10px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .page-contents_title h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  .page-contents_title h2 {
    font-size: 18px;
    letter-spacing: 5px;
  }
}

.navigation {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .navigation {
    margin-bottom: 40px;
  }
}

header {
  z-index: 9999;
}
header #header_pc {
  position: fixed;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  padding-right: 0;
  width: 100%;
  height: 80px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  header #header_pc {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  height: 100%;
}
header #header_pc .header_logo img {
  height: 100%;
}
header #header_pc .header_menu ul {
  display: flex;
  justify-content: end;
  align-items: center;
  list-style: none;
}
header #header_pc .header_menu ul li {
  margin: 0 40px;
}
header #header_pc .header_menu ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
}
header #header_pc .header_menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
header #header_pc .header_menu ul li a:hover::after {
  transform: scale(1, 1);
}
header #header_pc .header_menu ul li a button {
  height: 80px;
  width: 200px;
  border: none;
  background-color: #00263e;
  color: #fff;
  transition: all 0.5s;
}
header #header_pc .header_menu ul li a button:hover {
  background-color: #fff;
  color: #00263e;
}
header #header_pc .header_menu ul li:last-child {
  margin-right: 0;
}
header #header_pc .header_menu ul li:last-child a::after {
  width: 0;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 1441px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 20px;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  transform: scale(1.1);
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 15px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#top_main {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 85%;
  height: 800px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 240px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_main {
    height: 600px;
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 599px) {
  #top_main {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#top_main .main_image {
  text-align: center;
}
@media screen and (min-width: 1441px) {
  #top_main .main_image {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_main .main_image {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_main .main_image {
    display: none;
  }
}
#top_main .main_image img {
  width: 80px;
}
#top_main .main_image p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

#top_news {
  width: 40%;
  padding: 60px;
  position: absolute;
  bottom: -20%;
  left: 40px;
  background-color: #F5F5F5;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_news {
    width: 60%;
    bottom: 40%;
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  #top_news {
    position: static;
    width: 100%;
    left: 20px;
    bottom: 20%;
    padding: 20px;
    margin-bottom: 20px;
  }
}
#top_news .sec_news {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #top_news .sec_news {
    margin-bottom: 20px;
  }
}
#top_news ul {
  list-style: none;
}
#top_news ul a {
  text-decoration: none;
  color: #333;
}
#top_news ul a li {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}
#top_news ul a li .outline .date {
  color: #070707;
}
@media screen and (max-width: 599px) {
  #top_news ul a li .outline .date {
    font-size: 9px;
  }
}
@media screen and (max-width: 599px) {
  #top_news ul a li .outline .title {
    font-size: 12.5px;
  }
}
#top_news ul .btn {
  text-align: end;
}

#catchphrase {
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #catchphrase {
    width: 95%;
  }
}
@media screen and (max-width: 599px) {
  #catchphrase {
    width: 95%;
  }
}
#catchphrase h2 {
  padding: 2vw;
  background-color: #00263e;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #catchphrase h2 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 599px) {
  #catchphrase h2 {
    font-size: 3.5vw;
    line-height: 7vw;
  }
}

#top_service {
  width: 100%;
  background-color: #00263e;
  height: 490px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_service {
    height: 350px;
  }
}
@media screen and (max-width: 599px) {
  #top_service {
    display: block;
    height: 350px;
  }
}
#top_service #title {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #top_service #title {
    width: 100%;
    padding-top: 40px;
    margin-bottom: 20px;
  }
}
#top_service #title .headline {
  font-size: 64px;
  color: #fff;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_service #title .headline {
    font-size: 36px;
  }
}
@media screen and (max-width: 599px) {
  #top_service #title .headline {
    font-size: 24px;
  }
}
#top_service #title .subtitle {
  color: #fff;
  font-size: 24px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_service #title .subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #top_service #title .subtitle {
    font-size: 12.5px;
  }
}
#top_service .top_service_contents {
  width: 40%;
}
@media screen and (max-width: 599px) {
  #top_service .top_service_contents {
    width: 95%;
    margin: auto;
  }
}
#top_service .top_service_contents #headline {
  margin-bottom: 20px;
}
#top_service .top_service_contents #headline .title {
  color: #fff;
  font-size: 24px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_service .top_service_contents #headline .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #top_service .top_service_contents #headline .title {
    font-size: 14px;
  }
}
#top_service .top_service_contents #headline .subtitle {
  color: #fff;
  font-size: 24px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_service .top_service_contents #headline .subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #top_service .top_service_contents #headline .subtitle {
    font-size: 14px;
  }
}
#top_service .top_service_contents .text p {
  color: #fff;
}
@media screen and (max-width: 599px) {
  #top_service .top_service_contents .btn {
    text-align: center;
  }
}
#top_service .top_service_contents .btn button {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  color: #fff;
}
#top_service .top_service_contents .btn button:hover {
  background-color: #fff;
  color: #333;
}

#image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 120px;
  height: 25vw;
}
@media screen and (max-width: 599px) {
  #image {
    margin-bottom: 40px;
  }
}
#image img {
  width: 33.3333333333%;
  height: 100%;
}

#top_works {
  background-color: rgba(0, 38, 62, 0.2);
  padding: 80px;
  margin-bottom: 120px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_works {
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  #top_works {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
}
#top_works .sec_works {
  text-align: center;
  margin-bottom: 40px;
}
#top_works ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #top_works ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
#top_works ul li {
  margin: 0 20px;
  width: 30%;
  background-color: #fff;
  padding: 30px;
}
@media screen and (max-width: 599px) {
  #top_works ul li {
    width: 100%;
    margin: auto;
    margin: 0 10px;
    margin-bottom: 40px;
    padding: 15px;
  }
}
#top_works ul li a {
  text-decoration: none;
  color: #333;
}
#top_works ul li a .thumb {
  width: 300px;
  margin: auto;
  height: 180px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_works ul li a .thumb {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 599px) {
  #top_works ul li a .thumb {
    margin-bottom: 10px;
    width: 250px;
    height: 180px;
  }
}
#top_works ul li a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_works ul li a .thumb img {
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  #top_works ul li a .thumb img {
    height: 100%;
  }
}
#top_works ul li a .outline {
  width: 90%;
  margin: auto;
}
#top_works ul li a .outline .title {
  font-size: 18px;
  font-weight: 700;
  color: #00263e;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #top_works ul li a .outline .title {
    font-size: 15px;
  }
}
#top_works ul li a .outline .descn {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #top_works ul li a .outline .descn {
    font-size: 12.5px;
  }
}
#top_works .btn {
  text-align: end;
}

#top_company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 540px;
  margin-bottom: 120px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_company {
    height: 350px;
  }
}
@media screen and (max-width: 599px) {
  #top_company {
    height: 200px;
    margin-bottom: 40px;
  }
}
#top_company .top_company_image {
  width: 46%;
  height: 100%;
}
#top_company .top_company_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_company .top_company_contents {
  width: 54%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background-color: #00263e;
}
#top_company .top_company_contents .sec_company {
  text-align: center;
}
#top_company .top_company_contents .sec_company .headline {
  color: #fff;
}
#top_company .top_company_contents .sec_company .subtitle {
  color: #fff;
}
#top_company .top_company_contents .btn button {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  border: 1px solid #fff;
}
#top_company .top_company_contents .btn button:hover {
  background-color: #fff;
  color: #333;
}

#top_recruit {
  background-size: cover;
  background-position: center;
  height: 464px;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_recruit {
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  #top_recruit {
    height: 200px;
    margin-bottom: 40px;
  }
}
#top_recruit .top_recruit_bg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
#top_recruit .top_recruit_bg .top_recruit_contents {
  background-color: #fff;
  width: 70%;
  height: 300px;
  padding: 40px 80px;
  text-align: center;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top_recruit .top_recruit_bg .top_recruit_contents {
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  #top_recruit .top_recruit_bg .top_recruit_contents {
    width: 80%;
    margin: auto;
    height: 160px;
    padding: 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  #top_recruit .top_recruit_bg .top_recruit_contents .btn {
    margin-top: 20px;
  }
}
#top_recruit .top_recruit_bg .top_recruit_contents .btn button {
  border: 1px solid #333;
}
#top_recruit .top_recruit_bg .top_recruit_contents .btn button:hover {
  border: none;
}

#service #contents_topMain {
  background-position: center;
  background-size: cover;
}
#service .service_bg01 {
  margin-bottom: 80px;
  height: 350px;
}
@media screen and (max-width: 599px) {
  #service .service_bg01 {
    height: 150px;
  }
}
#service .service_bg01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 599px) {
  #service .service_bg01 img {
    height: 100%;
  }
}
#service .service_title {
  border-bottom: 2px solid #00263e;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #service .service_title {
    margin-bottom: 20px;
  }
}
#service .service_title h2 {
  color: #00263e;
}
@media screen and (max-width: 599px) {
  #service .service_title h2 {
    font-size: 24px;
  }
}
#service .service_title h2 span {
  font-size: 64px;
  padding-left: 40px;
}
@media screen and (max-width: 599px) {
  #service .service_title h2 span {
    font-size: 36px;
  }
}
#service .service_text {
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  #service .service_text {
    margin-bottom: 40px;
  }
}
#service .service_detail {
  margin-bottom: 40px;
}
#service .service_detail .title {
  color: #00263e;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  #service .service_detail .title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  #service .service_detail .title h3 {
    font-size: 18px;
  }
}
#service .service_bg02 {
  margin-top: 80px;
  margin-bottom: 80px;
  height: 350px;
}
@media screen and (max-width: 599px) {
  #service .service_bg02 {
    height: 150px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#service .service_bg02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .product {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  #service .product {
    flex-wrap: wrap;
  }
}
#service .product .detail {
  width: 25%;
  margin: 10px;
}
@media screen and (max-width: 599px) {
  #service .product .detail {
    width: 40%;
  }
}
#service .product .detail img {
  width: 100%;
}
#service .product .detail p {
  text-align: center;
}

#company #contents_topMain {
  background-position: center;
  background-size: cover;
  position: relative;
}
#company .company_contents {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  #company .company_contents {
    margin-bottom: 20px;
  }
}
#company .company_contents table {
  width: 60%;
  margin: auto;
  border-spacing: 10px 40px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #company .company_contents table {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  #company .company_contents table {
    width: 90%;
    border-spacing: 10px 20px;
  }
}
#company .company_contents table tr {
  position: relative;
  height: 50px;
}
@media screen and (max-width: 599px) {
  #company .company_contents table tr {
    height: 30px;
  }
}
#company .company_contents table tr::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #00263e;
  bottom: -20px;
  left: 0;
}
@media screen and (max-width: 599px) {
  #company .company_contents table tr::after {
    bottom: -10px;
  }
}
#company .company_contents table tr .td_left {
  width: 200px;
}
@media screen and (max-width: 599px) {
  #company .company_contents table tr .td_left {
    width: 100px;
    font-size: 11.5px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  #company .company_contents table tr .td_right {
    font-size: 11.5px;
  }
}
#company .company_image {
  margin-bottom: 120px;
  height: 250px;
}
@media screen and (max-width: 599px) {
  #company .company_image {
    margin-bottom: 40px;
  }
}
#company .company_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#news #contents_topMain {
  background-position: center;
  background-size: cover;
  position: relative;
}
#news .news {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 599px) {
  #news .news {
    width: 80%;
  }
}
#news .news ul {
  list-style: none;
}
#news .news ul li {
  margin-bottom: 40px;
}
#news .news ul li .outline .date {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  #news .news ul li .outline .date {
    font-size: 12.5px;
  }
}
#news .news ul li .outline .title {
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  #news .news ul li .outline .title {
    font-size: 15px;
  }
}

#news #contents_topMain {
  background-position: center;
  background-size: cover;
  position: relative;
}
#news .news {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 599px) {
  #news .news {
    width: 80%;
  }
}
#news .news ul {
  list-style: none;
}
#news .news ul a {
  text-decoration: none;
  color: #333;
}
#news .news ul a li {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #news .news ul a li .outline .date {
    font-size: 12.5px;
  }
}
#news .news ul a li .outline .title {
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 599px) {
  #news .news ul a li .outline .title {
    font-size: 15px;
  }
}

#works #contents_topMain {
  background-position: center;
  background-size: cover;
  position: relative;
}
#works .works_contents ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #works .works_contents ul {
    display: block;
    margin-bottom: 120px;
  }
}
#works .works_contents ul li {
  width: 20%;
  margin: 0 40px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #works .works_contents ul li {
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  #works .works_contents ul li {
    width: 80%;
    margin-bottom: 40px;
  }
}
#works .works_contents ul li .thumb {
  width: 100%;
  height: 180px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #works .works_contents ul li .thumb {
    margin-bottom: 5px;
  }
}
#works .works_contents ul li .thumb img {
  width: 100%;
  height: 100%;
}
#works .works_contents ul li .outline .date {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #works .works_contents ul li .outline .date {
    margin-bottom: 5px;
  }
}
#works .works_contents ul li .outline .title {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  #works .works_contents ul li .outline .title {
    margin-bottom: 10px;
  }
}

#recruit #contents_topMain {
  background-position: center;
  background-size: cover;
  position: relative;
}
#recruit .recruit_contents {
  width: 1100px;
  margin: auto;
  margin-bottom: 120px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #recruit .recruit_contents {
    width: 700px;
  }
}
@media screen and (max-width: 599px) {
  #recruit .recruit_contents {
    width: 350px;
    margin-bottom: 40px;
  }
}
#recruit .recruit_contents table {
  border-collapse: separate;
}
#recruit .recruit_contents table tr .td_left {
  width: 300px;
  background-color: #F4F4F4;
  padding: 20px 0;
  padding-left: 10px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #recruit .recruit_contents table tr .td_left {
    width: 250px;
  }
}
@media screen and (max-width: 599px) {
  #recruit .recruit_contents table tr .td_left {
    width: 100px;
    font-size: 12.5px;
  }
}
#recruit .recruit_contents table tr .td_right {
  width: 800px;
  padding: 20px 0;
  padding-left: 10px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #recruit .recruit_contents table tr .td_right {
    width: 450px;
  }
}
@media screen and (max-width: 599px) {
  #recruit .recruit_contents table tr .td_right {
    width: 250px;
    font-size: 12.5px;
  }
}
#recruit .recruit_image {
  margin-bottom: 120px;
  height: 350px;
}
@media screen and (max-width: 599px) {
  #recruit .recruit_image {
    height: 150px;
    margin-bottom: 40px;
  }
}
#recruit .recruit_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact #contents_topMain {
  background-position: center;
  background-size: cover;
  position: relative;
}
#contact .contact_form {
  width: 70%;
  margin: auto;
  padding: 40px;
  color: #333;
  margin-top: 40px;
  padding-bottom: 120px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contact .contact_form {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  #contact .contact_form {
    width: 90%;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 0px;
  }
}
#contact .contact_form form {
  width: 100%;
}
#contact .contact_form form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #00263e;
}
@media screen and (max-width: 599px) {
  #contact .contact_form form table tr {
    display: flex;
    flex-flow: column;
  }
}
#contact .contact_form form table tr th {
  padding: 40px 0;
  width: 35%;
  text-align: end;
  padding-right: 80px;
  border-bottom: 1px solid #00263e;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contact .contact_form form table tr th {
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  #contact .contact_form form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
    font-size: 12.5px;
  }
}
#contact .contact_form form table tr th span {
  padding: 10px;
  background-color: red;
  color: #fff;
  margin-left: 20px;
}
@media screen and (max-width: 599px) {
  #contact .contact_form form table tr th span {
    padding: 5px;
    font-size: 10px;
  }
}
#contact .contact_form form table tr td {
  padding: 40px 0;
  width: 65%;
  border-bottom: 1px solid #00263e;
  padding-right: 40px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contact .contact_form form table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 599px) {
  #contact .contact_form form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
#contact .contact_form form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contact .contact_form form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  #contact .contact_form form table tr td input {
    width: 100%;
  }
}
#contact .contact_form form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contact .contact_form form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  #contact .contact_form form table tr td textarea {
    width: 100%;
  }
}
#contact .contact_form form table tr:nth-child(4) th span {
  background-color: blue;
}
#contact .contact_form form table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contact .contact_form form table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 599px) {
  #contact .contact_form form table tr:nth-child(4) td input {
    width: 29% !important;
  }
}
#contact .contact_form form .agree {
  text-align: center;
  margin-bottom: 40px;
}
#contact .contact_form form .submit {
  text-align: center;
}
#contact .contact_form form .submit input {
  padding: 20px 180px;
  font-size: 18px;
  border: none;
  background-color: #00263e;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 599px) {
  #contact .contact_form form .submit input {
    padding: 10px 90px;
  }
}
#contact .contact_form form .submit input:hover {
  opacity: 0.8;
}
#contact .contact_form form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 599px) {
  #contact .contact_form form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact .contact_form form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 599px) {
  #contact .contact_form form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact #mw_wp_form_mw-wp-form-197 {
  text-align: center;
}
@media screen and (max-width: 599px) {
  #contact #mw_wp_form_mw-wp-form-197 {
    font-size: 12.5px;
  }
}

.policy_contents {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .policy_contents {
    width: 90%;
  }
}
.policy_contents h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .policy_contents h2 {
    font-size: 15px;
  }
}
.policy_contents p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .policy_contents p {
    font-size: 10px;
  }
}

footer #top_contact {
  background-size: cover;
  background-position: center;
  height: 464px;
  padding: 80px;
  position: relative;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #top_contact {
    padding: 40px;
    height: 350px;
  }
}
@media screen and (max-width: 599px) {
  footer #top_contact {
    height: 300px;
    padding: 40px;
  }
}
footer #top_contact .top_contact_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
footer #top_contact .top_contact_bg .sec_contact {
  padding-top: 80px;
  padding-left: 120px;
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #top_contact .top_contact_bg .sec_contact {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .sec_contact {
    padding-top: 40px;
    padding-left: 40px;
    margin-bottom: 40px;
  }
}
footer #top_contact .top_contact_bg .sec_contact .headline {
  color: #fff;
}
footer #top_contact .top_contact_bg .sec_contact .subtitle {
  color: #fff;
}
footer #top_contact .top_contact_bg .top_contact_contents {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #top_contact .top_contact_bg .top_contact_contents {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents {
    display: block;
    width: 95%;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .tel {
  width: 35%;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #top_contact .top_contact_bg .top_contact_contents .tel {
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .tel {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .tel .number {
  margin-bottom: 20px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .tel .number {
    margin-bottom: 10px;
    text-align: center;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .tel .number span {
  font-size: 24px;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .tel .number span {
    font-size: 15px;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .tel .number span a {
  text-decoration: none;
  color: #fff;
}
footer #top_contact .top_contact_bg .top_contact_contents .tel .time {
  color: #fff;
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .tel .time {
    text-align: center;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .tel .time button {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  margin-right: 20px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .tel .time button {
    padding: 3px;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .line {
  background-color: #fff;
  width: 1px;
  height: 120px;
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .line {
    display: none;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .btn {
  width: 35%;
  margin-top: 0;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #top_contact .top_contact_bg .top_contact_contents .btn {
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .btn {
    width: 100%;
    text-align: center;
  }
}
footer #top_contact .top_contact_bg .top_contact_contents .btn button {
  padding: 30px 80px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #top_contact .top_contact_bg .top_contact_contents .btn button {
    padding: 20px 60px;
  }
}
@media screen and (max-width: 599px) {
  footer #top_contact .top_contact_bg .top_contact_contents .btn button {
    padding: 15px 30px;
  }
}
footer #footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #00263e;
  padding: 80px 120px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #footer {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 599px) {
  footer #footer {
    padding: 20px 30px;
    display: block;
  }
}
footer #footer .company_contents {
  width: 40%;
}
@media screen and (max-width: 599px) {
  footer #footer .company_contents {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer #footer .company_contents .footer_logo {
  margin-bottom: 20px;
  width: 20%;
}
@media screen and (max-width: 599px) {
  footer #footer .company_contents .footer_logo {
    width: 80px;
  }
}
footer #footer .company_contents .footer_logo img {
  width: 100%;
}
footer #footer .company_contents .company_text .name {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
footer #footer .company_contents .company_text .zip {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  footer #footer .company_contents .company_text .zip {
    font-size: 12.5px;
  }
}
footer #footer .company_contents .company_text .address {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  footer #footer .company_contents .company_text .address {
    font-size: 12.5px;
  }
}
footer #footer .company_contents .company_text .tel {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  footer #footer .company_contents .company_text .tel {
    font-size: 12.5px;
  }
}
footer #footer .footer_menu {
  width: 30%;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  footer #footer .footer_menu {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  footer #footer .footer_menu {
    width: 70%;
    margin: auto;
  }
}
footer #footer .footer_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
}
footer #footer .footer_menu ul li {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  footer #footer .footer_menu ul li {
    margin-bottom: 20px;
  }
}
footer #footer .footer_menu ul li a {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 599px) {
  footer #footer .footer_menu ul li a {
    font-size: 12.5px;
  }
}
footer .copy_right {
  font-size: 9px;
  text-align: center;
  color: #fff;
  background-color: #00263e;
  padding-bottom: 10px;
}/*# sourceMappingURL=style.css.map */