@charset "UTF-8";
/* レスポンシブ */
/* ---------common--------- */
body.new_company {
  margin: 0;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.4;
  font-size: 14px;
}
@media (max-width: 768px) {
  body.new_company {
    font-size: 14px;
  }
}
body.new_company.open {
  overflow: hidden;
}

.new_company ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.new_company img {
  vertical-align: bottom;
  width: 100%;
}
.new_company a {
  transition: 0.3s;
  text-decoration: none;
  color: #101010;
  cursor: pointer;
}
.new_company a:hover {
  opacity: 0.7;
}

/* flex */
.common_row {
  display: flex;
  flex-wrap: wrap;
}

.common_between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.common_reverse {
  flex-direction: row-reverse;
}

/* inner */
.common_inner {
  width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .common_inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.common_ttlarea {
  margin-bottom: 30px;
  position: relative;
}
.common_ttlarea::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 150%;
  height: 0.5px;
  background-color: #101010;
}
.common_ttlarea .common_subttl {
  font-size: 12px;
  position: relative;
  padding-left: 20px;
  margin: 0;
  line-height: 1.4;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .common_ttlarea .common_subttl {
    font-size: 12px;
    padding-left: 13.5px;
  }
}
.common_ttlarea .common_subttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 13px;
  height: 13px;
  background-color: #0272bc;
}
@media (max-width: 768px) {
  .common_ttlarea .common_subttl::before {
    width: 10px;
    height: 10px;
  }
}
.common_ttlarea .common_ttl {
  font-family: "Geologica", serif;
  font-size: 42px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .common_ttlarea .common_ttl {
    font-size: 36px;
  }
}

.common_read {
  line-height: 1.18;
  margin-bottom: 70px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .common_read {
    margin-bottom: 30px;
  }
}

.common_btn_wrap {
  text-align: center;
}

.common_btn_row {
  padding-right: 130px;
  position: relative;
}
@media (max-width: 768px) {
  .common_btn_row {
    padding-right: 100px;
  }
}
.common_btn_row::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .common_btn_row::before {
    width: 70px;
    height: 70px;
  }
}
.common_btn_row::after {
  content: "";
  background: url(img/new/arrow_right_black.png) center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translate(-50%, -50%);
  width: 27px;
  height: 21px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .common_btn_row::after {
    width: 20px;
    height: 16px;
  }
}
.common_btn_row:hover::before {
  border: 1px solid #0272BC;
}
.common_btn_row:hover::after {
  background: url(img/new/arrow_right_blue.png) center/cover no-repeat;
}
.common_btn_row.common_btn_white {
  color: #fff;
}
.common_btn_row.common_btn_white::before {
  border: 1px solid #fff;
}
.common_btn_row.common_btn_white::after {
  background: url(img/new/arrow_right_white.png) center/cover no-repeat;
}
.common_btn_row.common_btn_white:hover::before {
  border: 1px solid #0272BC;
  background-color: #fff;
}
.common_btn_row.common_btn_white:hover::after {
  background: url(img/new/arrow_right_blue.png) center/cover no-repeat;
}

.common_cta {
  background: linear-gradient(180deg, #514F4F 0%, #101010 100%);
  padding: 94px 0 112px;
}
@media (max-width: 768px) {
  .common_cta {
    padding: 50px 0;
  }
}
.common_cta .common_cta_item {
  width: 27%;
  max-width: 396px;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #fff;
}
@media (max-width: 768px) {
  .common_cta .common_cta_item {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 48px;
    margin-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .common_cta .common_cta_item:last-child {
    margin-bottom: 0;
  }
}
.common_cta .common_cta_item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.common_cta .common_cta_item .common_ttlarea {
  margin-bottom: 33px;
}
@media (max-width: 768px) {
  .common_cta .common_cta_item .common_ttlarea {
    margin-bottom: 18px;
  }
}
.common_cta .common_cta_item .common_ttlarea::after {
  content: none;
}
.common_cta .common_cta_item .common_ttlarea .common_subttl {
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .common_cta .common_cta_item .common_ttlarea .common_subttl {
    margin-bottom: 0;
  }
}
.common_cta .common_cta_item .common_ttlarea .common_ttl {
  font-size: 68px;
  color: #fff;
}
@media (max-width: 1240px) {
  .common_cta .common_cta_item .common_ttlarea .common_ttl {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .common_cta .common_cta_item .common_ttlarea .common_ttl {
    font-size: 36px;
  }
}
.common_cta .common_cta_item .common_cta_btn {
  font-size: 14px;
  display: block;
  padding-right: 80px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .common_cta .common_cta_item .common_cta_btn {
    padding-right: 90px;
  }
}
.common_cta .common_cta_item .common_cta_btn::before {
  width: 70px;
  height: 70px;
}
.common_cta .common_cta_item .common_cta_btn::after {
  width: 20px;
  height: 16px;
  right: 5%;
}

#body_wrap {
  margin-top: 120px;
}
@media (max-width: 768px) {
  #body_wrap {
    margin-top: 72px;
  }
}
#body_wrap .common_cta .common_cta_item {
  width: 31%;
}
@media (max-width: 768px) {
  #body_wrap .common_cta .common_cta_item {
    width: 100%;
  }
}

#top_title_area {
  margin-top: 100px;
}

.leftin {
  opacity: 0;
  transform: translateX(-10%);
}

.leftin.active {
  animation: 0.8s forwards leftin;
}

.leftin2 {
  opacity: 0;
  transform: translateX(-10%);
}

.leftin2.active {
  animation: 0.8s forwards 0.2s leftin;
}

.leftin3 {
  opacity: 0;
  transform: translateX(-10%);
}

.leftin3.active {
  animation: 0.8s forwards 0.4s leftin;
}

.leftin4 {
  opacity: 0;
  transform: translateX(-10%);
}

.leftin4.active {
  animation: 0.8s forwards 0.6s leftin;
}

.rightin {
  opacity: 0;
  transform: translateX(10%);
}

.rightin.active {
  animation: 0.8s forwards rightin;
}

.rightin2 {
  opacity: 0;
  transform: translateX(10%);
}

.rightin2.active {
  animation: 0.8s forwards 0.2s rightin;
}

.rightin3 {
  opacity: 0;
  transform: translateX(10%);
}

.rightin3.active {
  animation: 0.8s forwards 0.4s rightin;
}

.rightin4 {
  opacity: 0;
  transform: translateX(10%);
}

.rightin4.active {
  animation: 0.8s forwards 0.6s rightin;
}

.bottomin1 {
  opacity: 0;
  transform: translateY(5%);
}

.bottomin1.active {
  animation: 0.8s forwards bottomin;
}

.bottomin2 {
  opacity: 0;
  transform: translateY(5%);
}

.bottomin2.active {
  animation: 0.8s forwards 0.2s bottomin;
}

.bottomin3 {
  opacity: 0;
  transform: translateY(5%);
}

.bottomin3.active {
  animation: 0.8s forwards 0.4s bottomin;
}

.bottomin4 {
  opacity: 0;
  transform: translateY(5%);
}

.bottomin4.active {
  animation: 0.8s forwards 0.6s bottomin;
}

@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page_common {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .page_common {
    margin-top: 68px;
  }
}
.page_common .common_ttlarea {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .page_common .common_ttlarea {
    margin-bottom: 30px;
  }
}

/* header new */
header {
  padding: 32px 0;
  position: fixed;
  background-color: #fff;
  width: 100%;
  top: 0;
  z-index: 1000;
}
@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
}
header a {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.4;
  font-size: 14px;
}
header .common_inner {
  width: 91%;
}
header .header_row {
  flex-wrap: nowrap;
}
header .header_link {
  width: 74%;
  max-width: 916px;
}
header .header_logo {
  width: 15%;
  max-width: 140px;
  margin: 0;
  line-height: 0;
  z-index: 1000;
}
@media (max-width: 768px) {
  header .header_logo {
    width: 100px;
  }
}
header .header_nav_pc {
  width: 80%;
  max-width: 716px;
}
@media (max-width: 768px) {
  header .header_nav_pc {
    display: none;
  }
}
header .header_nav_pc li {
  margin-right: 50px;
}
@media (max-width: 1240px) {
  header .header_nav_pc li {
    margin-right: 30px;
  }
}
header .header_nav_pc li:last-child {
  margin-right: 0;
}
header .header_nav_pc li a {
  color: #101010;
  transition: 0.3s;
}
@media (max-width: 1240px) {
  header .header_nav_pc li a {
    font-size: 14px;
  }
}
header .header_nav_pc li a:hover {
  color: #0272BC;
  opacity: 1;
}
header .header_contact {
  color: #fff;
  font-weight: bold;
  width: 196px;
  padding: 14px 0;
  padding-left: 20px;
  border-radius: 40px;
  border: 1px solid #0272BC;
  position: relative;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: #0272BC;
  border: 1px solid #0272BC;
  transition: 0.3s;
}
@media (max-width: 768px) {
  header .header_contact {
    display: none;
  }
}
header .header_contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 10;
  transition: 0.3s;
}
header .header_contact::after {
  content: "";
  background: url(img/new/arrow_right_white.png) center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  width: 16.5px;
  height: 13.5px;
  z-index: 20;
  transition: 0.3s;
}
header .header_contact:hover {
  background-color: #fff;
  color: #0272BC;
  transform: translateY(4px);
  box-shadow: none;
  opacity: 1;
}
header .header_contact:hover::before {
  border: 1px solid #0272BC;
}
header .header_contact:hover::after {
  background: url(img/new/arrow_right_blue.png) center/cover no-repeat;
}
header .menu_btn {
  display: none;
}
@media (max-width: 768px) {
  header .menu_btn {
    display: block;
    width: 20px;
    height: 14px;
    position: relative;
    z-index: 4000;
    text-align: center;
    position: relative;
  }
  header .menu_btn span {
    background-color: #101010;
    display: inline-block;
    height: 1px;
    width: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  header .menu_btn span:nth-child(2) {
    top: 7px;
  }
  header .menu_btn span:nth-child(3) {
    top: 14px;
  }
}
header .header_nav_sp {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 90px 0 0;
  overflow: scroll;
  padding-bottom: 40px;
  padding-top: 80px;
  padding-left: 30px;
}
header .header_nav_sp li {
  border-bottom: 0.5px solid #101010;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
header .header_nav_sp li a {
  font-size: 14px;
  position: relative;
  padding-left: 13.5px;
  color: #101010;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}
header .header_nav_sp li a::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #0272BC
  position: absolute;
  left: 0;
  top: 6px;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}

.open .header_nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

.mega_menu_hover {
  position: relative;
}

.mega_menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
}
@media (max-width: 768px) {
  .mega_menu {
    display: none;
  }
}
.mega_menu .mega_menu_box {
  padding: 30px;
  padding-bottom: 10px;
  border: 1px solid #0272BC;
  background-color: #fff;
  width: 800px;
}
@media (max-width: 1240px) {
  .mega_menu .mega_menu_box {
    padding: 20px;
    width: 540px;
  }
}
.mega_menu .mega_menu_item {
  width: 33%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.mega_menu .mega_menu_item img {
  margin-right: 20px;
  display: block;
  width: 30px;
}
@media (max-width: 1240px) {
  .mega_menu .mega_menu_item img {
    width: 24px;
    margin-right: 10px;
  }
}
.mega_menu .mega_menu_item .mega_menu_text {
  font-size: 14px;
  margin: 0;
}
@media (max-width: 1240px) {
  .mega_menu .mega_menu_item .mega_menu_text {
    font-size: 12px;
  }
}

/* header new end */
/* footer new */
footer {
  padding-top: 100px;
  background-color: #101010;
  color: #fff;
}
@media (max-width: 768px) {
  footer {
    padding-top: 50px;
  }
}
footer a {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.4;
  font-size: 14px;
}
footer .footer_row a {
  color: #fff;
  transition: 0.3s;
}
footer .footer_row a:hover {
  color: #0272BC;
  opacity: 1;
}
footer .common_inner {
  width: 1140px;
}
@media (max-width: 1240px) {
  footer .common_inner {
    width: 90%;
  }
}
footer .footer_logo {
  max-width: 150px;
  width: 13%;
}
@media (max-width: 768px) {
  footer .footer_logo {
    width: 120px;
  }
}
footer .footer_navs {
  max-width: 836px;
  width: 73%;
}
@media (max-width: 768px) {
  footer .footer_navs {
    width: 100%;
  }
}
footer .footer_navs .footer_nav:nth-child(1) {
  width: 32%;
}
@media (max-width: 768px) {
  footer .footer_navs .footer_nav:nth-child(1) {
    width: 100%;
    margin-bottom: 40px;
  }
}
footer .footer_navs .footer_nav:nth-child(1) .footer_nav_text {
  margin-bottom: 10px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  footer .footer_navs .footer_nav:nth-child(1) .footer_nav_list {
    padding-left: 30px;
  }
}
footer .footer_navs .footer_nav:nth-child(1) .footer_nav_list li {
  margin-bottom: 5px;
  line-height: 1.4;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 14px;
}
footer .footer_navs .footer_nav:nth-child(1) .footer_nav_list li:last-child {
  margin-bottom: 0;
}
footer .footer_navs .footer_nav:nth-child(1) .footer_nav_list li a {
  font-weight: 400;
}
@media (max-width: 768px) {
  footer .footer_navs .footer_nav:nth-child(1) .footer_nav_list li a {
    font-size: 11px;
  }
}
footer .footer_navs .footer_nav:nth-child(2) {
  width: 51%;
}
@media (max-width: 768px) {
  footer .footer_navs .footer_nav:nth-child(2) {
    width: 100%;
  }
}
footer .footer_navs .footer_nav .common_row .footer_nav_text {
  width: 50%;
}
footer .footer_navs .footer_nav .footer_nav_text {
  font-size: 14px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer_navs .footer_nav .footer_nav_text {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
footer .footer_navs .footer_nav .footer_nav_list li a {
  font-size: 12px;
}
footer .copyright {
  text-align: center;
  margin-top: 100px;
  padding: 10px 0;
}
@media (max-width: 768px) {
  footer .copyright {
    margin-top: 50px;
  }
}
footer .copyright p {
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 768px) {
  footer .copyright p {
    font-size: 10px;
  }
}

/* footer new end */
.top_mv {
  background-color: #f5f5f5;
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .top_mv {
    margin-top: 58px;
    overflow: hidden;
  }
}
.top_mv .top_mv_textarea {
  position: absolute;
  right: 200px;
  top: 32%;
}
@media (max-width: 768px) {
  .top_mv .top_mv_textarea {
    right: auto;
    left: 10px;
    top: 22%;
    width: 100%;
  }
}
.top_mv .top_mv_ttl {
  font-size: 48px;
  line-height: 1.5;
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .top_mv .top_mv_ttl {
    font-size: 32px;
  }
}
.top_mv .top_mv_text {
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 768px) {
  .top_mv .top_mv_text {
    font-size: 14px;
  }
}

.top_service {
  background-color: #f5f5f5;
  padding-bottom: 65px;
}
@media (max-width: 768px) {
  .top_service {
    padding-top: 67px;
    padding-bottom: 50px;
  }
}
.top_service .top_service_cont::after {
  content: "";
  width: 31%;
}
@media (max-width: 768px) {
  .top_service .top_service_cont::after {
    content: none;
  }
}
.top_service .top_service_item {
  background-color: #fff;
  width: 31%;
  max-width: 370px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 23px 20px;
  display: flex;
  align-items: center;
  padding-right: 0;
  margin-bottom: 35px;
}
@media (max-width: 1240px) {
  .top_service .top_service_item {
    width: 30%;
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  .top_service .top_service_item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .top_service .top_service_item:last-child {
    margin-bottom: 0;
  }
}
.top_service .top_service_item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.top_service .top_service_item:hover .top_service_text {
  opacity: 0.5;
}
.top_service .top_service_item:hover .top_service_icon {
  opacity: 0.5;
}
.top_service .service_item_row {
  flex-wrap: nowrap;
}
.top_service .top_service_icon {
  width: 45px;
  margin-right: 16px;
  transition: 0.3s;
}
@media (max-width: 1240px) {
  .top_service .top_service_icon {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .top_service .top_service_icon {
    margin-right: 16px;
  }
}
.top_service .top_service_text {
  flex-grow: 1;
  font-size: 18px;
  transition: 0.3s;
  margin: 0;
}
@media (max-width: 1240px) {
  .top_service .top_service_text {
    font-size: 16px;
  }
}

.top_reason {
  background: url(img/new/reason_bg_pc.jpg) center/cover no-repeat;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .top_reason {
    padding-bottom: 73px;
    background: url(img/new/reason_bg_sp.jpg) center/cover no-repeat;
  }
}
.top_reason .common_ttlarea::after {
  background-color: #F5F5F5;
}
.top_reason .common_ttlarea .common_subttl,
.top_reason .common_ttlarea .common_ttl {
  color: #fff;
  line-height: 1.4;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}
.top_reason .top_reason_textarea {
  width: 50%;
}
@media (max-width: 768px) {
  .top_reason .top_reason_textarea {
    width: 100%;
    margin-bottom: 50px;
  }
}
.top_reason .top_reason_row {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top_reason .top_reason_row {
    justify-content: center;
    margin-top: 30px;
  }
}
.top_reason .top_reason_text {
  color: #fff;
  margin: 0;
}
.top_reason .top_reason_btn {
  margin-right: 60px;
}
@media (max-width: 1240px) {
  .top_reason .top_reason_btn {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .top_work {
    padding: 67px 0;
  }
}
.top_work .top_work_row {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .top_work .top_work_row {
    margin-bottom: 30px;
  }
}
.top_work .top_work_item {
  width: 30%;
  max-width: 370px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top_work .top_work_item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .top_work .top_work_item:last-child {
    margin-bottom: 0;
  }
}
.top_work .top_work_item img, .top_work .top_work_item .work_item_text {
  transition: 0.3s;
}
.top_work .top_work_item:hover img, .top_work .top_work_item:hover .work_item_text {
  opacity: 0.7;
}
.top_work .top_work_item img {
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 768px) {
  .top_work .top_work_logos {
    justify-content: space-between;
  }
}
.top_work .top_work_logos .work_logo_item {
  margin-right: 60px;
  width: 16%;
  margin-bottom: 60px;
}
@media (max-width: 1240px) {
  .top_work .top_work_logos .work_logo_item {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .top_work .top_work_logos .work_logo_item {
    width: 29%;
    margin-right: 0;
    margin-bottom: 22px;
  }
}
.top_work .top_work_logos .work_logo_item img {
  max-width: 200px;
}
@media (max-width: 768px) {
  .top_work .top_work_logos .work_logo_item img {
    max-width: 100px;
  }
}
.top_work .top_work_logos .work_logo_item:nth-child(5), .top_work .top_work_logos .work_logo_item:nth-child(10) {
  margin-right: 0;
}
.top_work .work_btn_wrap {
  text-align: center;
  margin-top: 30px;
}

.top_blog {
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .top_blog {
    padding-bottom: 73px;
  }
}
.top_blog .top_blog_row {
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  .top_blog .top_blog_row {
    margin-bottom: 53px;
  }
}
.top_blog .top_blog_item {
  width: 30%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .top_blog .top_blog_item {
    margin-bottom: 30px;
    width: 100%;
  }
  .top_blog .top_blog_item:last-child {
    margin-bottom: 0;
  }
}
.top_blog .top_blog_item .top_blog_img {
  margin-bottom: 10px;
}
.top_blog .top_blog_item .top_blog_date {
  font-size: 12px;
  margin-bottom: 10px;
}
.top_blog .top_blog_item .top_blog_ttl {
  font-size: 16px;
  margin-bottom: 10px;
  transition: 0.3s;
  font-weight: 500;
}
@media (max-width: 768px) {
  .top_blog .top_blog_item .top_blog_ttl {
    font-size: 14px;
  }
}
.top_blog .top_blog_item:hover .top_blog_ttl {
  color: #0272BC;
}
.top_blog .top_blog_item .top_blog_cate {
  color: #0272BC;
}

.top_news {
  background-color: #f5f5f5;
}
.top_news .common_ttlarea {
  margin-bottom: 5px;
}
.top_news .top_news_item {
  border-bottom: 0.5px solid #101010;
  padding: 30px 0 20px;
  padding-left: 15px;
  display: block;
}
.top_news .top_news_item:hover {
  background-color: #fff;
  opacity: 1;
}
.top_news .top_news_date {
  font-size: 12px;
  margin: 0;
  margin-bottom: 20px;
}
.top_news .top_news_ttl {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.top_recruit {
  background: url(img/new/recruit_bg_pc.jpg) center/cover no-repeat;
}
@media (max-width: 768px) {
  .top_recruit {
    background: url(img/new/recruit_bg_sp.jpg) center/cover no-repeat;
  }
}

.page_reason_chosen .common_ttlarea {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .page_reason_chosen .common_ttlarea {
    margin-bottom: 30px;
  }
}
.page_reason_chosen .reason_chosen_text {
  width: 50%;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .page_reason_chosen .reason_chosen_text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page_reason_chosen .reason_chosen_point .reason_chosen_item {
  border-bottom: 0.5px solid #101010;
  padding-bottom: 30px;
  margin-bottom: 50px;
  padding-right: 100px;
}
@media (max-width: 1240px) {
  .page_reason_chosen .reason_chosen_point .reason_chosen_item {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .page_reason_chosen .reason_chosen_point .reason_chosen_item {
    padding-bottom: 15px;
  }
}
.page_reason_chosen .reason_chosen_point .reason_chosen_item:last-child {
  margin-bottom: 0;
}
.page_reason_chosen .chosen_item_name {
  font-size: 24px;
  margin: 0;
}
@media (max-width: 768px) {
  .page_reason_chosen .chosen_item_name {
    font-size: 14px;
  }
}
.page_reason_chosen .reason_chosen_point {
  width: 50%;
}
@media (max-width: 768px) {
  .page_reason_chosen .reason_chosen_point {
    width: 100%;
  }
}
.page_reason_chosen .chosen_item_text {
  font-weight: bold;
  font-size: 32px;
  color: #0272BC;
  margin: 0;
}
@media (max-width: 768px) {
  .page_reason_chosen .chosen_item_text {
    font-size: 20px;
  }
}
.page_reason_chosen .chosen_item_text .text_large {
  font-size: 72px;
  font-family: "Gabarito", serif;
}
@media (max-width: 768px) {
  .page_reason_chosen .chosen_item_text .text_large {
    font-size: 40px;
  }
}

.page_reason_why .reason_why_box {
  background: url(img/new/reason_why.jpg) center/cover no-repeat;
  padding: 70px 120px 188px;
  color: #fff;
}
@media (max-width: 768px) {
  .page_reason_why .reason_why_box {
    padding: 0;
    background: none;
  }
}
.page_reason_why .reason_why_ttl {
  font-size: 28px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page_reason_why .reason_why_ttl {
    padding: 1px;
    padding-top: 155px;
    background: url(img/new/reason_why.jpg) center/cover no-repeat;
    font-size: 24px;
  }
}
.page_reason_why .reason_why_text {
  font-size: 16px;
}
@media (max-width: 768px) {
  .page_reason_why .reason_why_text {
    font-size: 15px;
    color: #101010;
    font-weight: 400;
  }
}

.page_reason_strong .reason_strong_row {
  align-items: center;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_row {
    flex-direction: column-reverse;
    margin-bottom: 45px;
  }
  .page_reason_strong .reason_strong_row:last-child {
    margin-bottom: 0;
  }
}
.page_reason_strong .reason_strong_row:last-child {
  margin-bottom: 0;
}
.page_reason_strong .reason_strong_point {
  width: 64%;
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_point {
    width: 100%;
  }
}
.page_reason_strong .reason_strong_point .common_row {
  align-items: center;
}
.page_reason_strong .reason_strong_point .reason_strong_number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geologica", serif;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_point .reason_strong_number {
    width: 70px;
    margin-top: 15px;
    height: 70px;
    margin-top: 0;
    margin-right: 15px;
  }
}
.page_reason_strong .reason_strong_point .reason_strong_number p {
  font-size: 24px;
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_point .reason_strong_number p {
    font-size: 16px;
  }
}
.page_reason_strong .reason_strong_point h3 {
  font-size: 26px;
  margin: 0;
  width: calc(100% - 120px);
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_point h3 {
    font-size: 18px;
    width: calc(100% - 85px);
  }
}
.page_reason_strong .reason_strong_point .reason_strong_textarea {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_point .reason_strong_textarea {
    margin-top: 15px;
  }
}
.page_reason_strong .reason_strong_point .reason_strong_textarea .reason_strong_text {
  font-weight: 400;
  padding-left: 120px;
  margin: 0;
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_point .reason_strong_textarea .reason_strong_text {
    padding-left: 0;
  }
}
.page_reason_strong .reason_strong_img {
  width: 30%;
}
@media (max-width: 768px) {
  .page_reason_strong .reason_strong_img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.page_reason_mission .reason_mission_ttl {
  font-size: 28px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page_reason_mission .reason_mission_ttl {
    font-size: 24px;
  }
}
.page_reason_mission .reason_mission_text {
  font-weight: 400;
}

.page_about_company .common_ttlarea {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .page_about_company .common_ttlarea {
    margin-bottom: 30px;
  }
}
.page_about_company .about_company_table {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page_about_company .about_company_table {
    width: 100%;
  }
}
.page_about_company .about_company_row {
  border-bottom: 0.5px solid #101010;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.page_about_company .about_company_row:last-child {
  margin-bottom: 0;
}
.page_about_company .about_company_row p {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 768px) {
  .page_about_company .about_company_row p {
    font-size: 16px;
  }
}
.page_about_company .about_company_row .about_company_left {
  width: 29%;
}
@media (max-width: 768px) {
  .page_about_company .about_company_row .about_company_left {
    width: 30%;
  }
}
.page_about_company .about_company_row .about_company_left p {
  font-weight: 500;
}
.page_about_company .about_company_row .about_company_right {
  width: 61%;
}
@media (max-width: 768px) {
  .page_about_company .about_company_row .about_company_right {
    width: 70%;
  }
}
.page_about_company .about_company_row .about_company_right p {
  font-weight: 400;
}

.page_about_message .about_message_img {
  width: 31%;
}
@media (max-width: 768px) {
  .page_about_message .about_message_img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page_about_message .about_message_textarea {
  width: 62%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page_about_message .about_message_textarea {
    width: 100%;
    display: block;
  }
}
.page_about_message .about_message_textarea p {
  margin: 0;
}
.page_about_message .about_message_textarea .about_message_text {
  font-weight: 400;
}
@media (max-width: 768px) {
  .page_about_message .about_message_textarea .about_message_text {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
.page_about_message .about_message_textarea .about_message_company {
  font-size: 12px;
}
.page_about_message .about_message_textarea .about_message_name {
  font-size: 14px;
}/*# sourceMappingURL=new.css.map */