@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@charset "UTF-8";
/*----- メディアクエリ -----*/
/* 使い方
@include mq_sp{
}
*/
/*----- font -----*/
/* 使い方
font-family: $yugo;
*/
/*----- px変換 -----*/
/* 使い方
font-size: rem(16);
font-size: vw(16);
line-height: lh(16,28);
letter-spacing: ls(50);
*/
* {
  font-family: helvetica-w01-bold, helvetica-w02-bold, helvetica-lt-w10-bold, sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: helvetica-w01-bold, helvetica-w02-bold, helvetica-lt-w10-bold, sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
}

.header {
  position: sticky;
  background: #fff;
  z-index: 150;
  top: 0;
  width: 100%;
  padding: 30px 10px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 10px;
  }
}
.header .pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.header .pc .nav {
  display: flex;
  gap: 1rem;
}
.header .pc .nav a {
  color: #333;
  text-decoration: none;
  line-height: 41px;
  padding: 0 10px;
}
.header .pc .nav a.active {
  background: #004aad;
  color: #fff;
}
.header .pc .logo {
  max-width: 153px;
}
@media screen and (max-width: 767px) {
  .header .pc .logo {
    max-width: 100px;
  }
}
.header .sp {
  display: none;
}
.header .sp .logo {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .header .sp .logo {
    max-width: 100px;
  }
}
.header .sp .tgl {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .header .sp .tgl {
    top: 0.8rem;
  }
}
.header .sp .tgl .span {
  display: block;
  height: 4px;
  background: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.header .sp .tgl.open .span--1 {
  transform: rotate(45deg) translateY(12px);
}
.header .sp .tgl.open .span--2 {
  opacity: 0;
}
.header .sp .tgl.open .span--3 {
  transform: rotate(-45deg) translateY(-13px);
}
@media (max-width: 768px) {
  .header .pc {
    display: none;
  }
  .header .sp {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
}

.sp-inner {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  transition: right 0.3s ease;
  padding: 9rem 2rem;
  display: none;
}
.sp-inner .nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sp-inner .nav a {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}
.sp-inner.open {
  display: block;
  right: 0;
}

.footer {
  background: #ededed;
  padding: 126px 0 53px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 20px 90px;
  }
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .container {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.footer .container .read {
  color: #252525;
  font-family: Inter;
  font-size: 15.125px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .footer .container .read .company {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.footer .container .read .address {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer .container .read .address {
    font-size: 18px;
  }
}
.footer .container .top-btn {
  width: 37px;
  height: 36px;
}
.top {
  overflow: hidden;
}
.top .hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: url("../images/top-hero.png") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top .hero {
    padding: 120px 0;
  }
}
.top .hero .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top .hero .video-container .video {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.top .hero .video-container .video.loaded {
  opacity: 1;
}
.top .hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .hero .content {
  color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .top .hero .content {
    padding: 0 20px;
  }
}
.top .hero .content .heading {
  font-size: 41px;
  line-height: 1.1em;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .top .hero .content .heading {
    font-size: 32px;
  }
}
.top .hero .content .text {
  font-size: 17px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top .hero .content .text {
    font-size: 16px;
  }
}
.top .comment {
  padding: 60px 0;
  background: #004aad;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top .comment {
    padding: 60px 20px;
  }
}
.top .comment .container .heading {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.5px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top .comment .container .heading {
    font-size: 32px;
  }
}
.top .comment .container .read {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.6px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .top .comment .container .read {
    font-size: 16px;
  }
}
.top .comment .container .box {
  display: flex;
  justify-content: center;
  gap: 68px;
}
@media screen and (max-width: 767px) {
  .top .comment .container .box {
    flex-direction: column;
    gap: 30px;
  }
}
.top .comment .container .box .col {
  outline: 8px solid rgba(237, 237, 237, 0.7);
  background: #fff;
  padding: 43px 46px;
}
@media screen and (max-width: 767px) {
  .top .comment .container .box .col {
    padding: 30px 20px;
  }
}
.top .comment .container .box .col .title {
  color: #605e5e;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 24.2px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .top .comment .container .box .col .title {
    margin-bottom: 20px;
  }
}
.top .comment .container .box .col .text {
  color: #605e5e;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.6px;
}
@media screen and (max-width: 767px) {
  .top .comment .container .box .col .text {
    font-size: 16px;
  }
}
.top .solution {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top .solution {
    flex-direction: column-reverse;
  }
}
.top .solution .left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top .solution .left {
    width: 100%;
  }
}
.top .solution .left .inner {
  width: 395.31px;
  height: 69.8px;
  display: block;
  margin: 20% 20% 120px auto;
}
@media screen and (max-width: 767px) {
  .top .solution .left .inner {
    margin: 20% 0;
    width: 100%;
  }
}
.top .solution .left .inner .heading {
  color: #252525;
  font-family: Inter;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 37.8px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .top .solution .left .inner .heading {
    font-size: 22px;
    text-align: center;
    margin-bottom: 0;
  }
}
.top .solution .left .inner .read {
  color: #252525;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
}
@media screen and (max-width: 767px) {
  .top .solution .left .inner .read {
    display: none;
  }
}
.top .solution .right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top .solution .right {
    width: auto;
  }
  .top .solution .right .img {
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top .reason {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .top .reason {
    padding: 60px 20px;
  }
}
.top .reason .container .box {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .top .reason .container .box {
    gap: 40px;
  }
}
.top .reason .container .box .col {
  display: flex;
  gap: 87px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top .reason .container .box .col {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.top .reason .container .box .col .left {
  color: #004aad;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 140px;
}
@media screen and (max-width: 767px) {
  .top .reason .container .box .col .left {
    font-size: 32px;
    text-align: left;
    line-height: 1.5;
    font-weight: 700;
  }
}
.top .reason .container .box .col .right {
  color: #252525;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px;
}
.top .reason .container .box .col .right .title {
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .top .reason .container .box .col .right .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top .reason .container .box .col .right .read {
    font-size: 16px;
  }
}
.top .realty {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top .realty {
    flex-direction: column;
  }
}
.top .realty .left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top .realty .left {
    width: auto;
    padding-bottom: 100px;
  }
}
.top .realty .left .inner {
  width: 395.31px;
  height: 69.8px;
  display: block;
  margin: 15% 20% 120px auto;
}
@media screen and (max-width: 767px) {
  .top .realty .left .inner {
    height: auto;
    margin: 15% 20% 0 auto;
    width: 100%;
  }
}
.top .realty .left .inner .heading {
  color: #252525;
  font-family: Inter;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 37.8px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .top .realty .left .inner .heading {
    text-align: center;
    padding: 0 20px;
  }
}
.top .realty .left .inner .read {
  color: #252525;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
}
@media screen and (max-width: 767px) {
  .top .realty .left .inner .read {
    padding: 0 20px;
  }
}
.top .realty .right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top .realty .right {
    width: auto;
  }
  .top .realty .right .img {
    height: 260px;
  }
}
.top .consulting {
  background: rgba(237, 237, 237, 0.8);
  padding: 69px 0 100px;
}
@media screen and (max-width: 767px) {
  .top .consulting {
    display: none;
  }
}
.top .consulting .container {
  position: relative;
}
.top .consulting .container .img {
  max-width: 800px;
  margin-left: -113px;
}
.top .consulting .container .read {
  padding: 72px 84px 140px;
  background: #fff;
  position: absolute;
  bottom: -53px;
  right: -12%;
  max-width: 638.69px;
}
.top .consulting .container .read .heading {
  color: #252525;
  font-family: Inter;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 47px;
}
.top .consulting .container .read .text {
  color: #252525;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
}
.top .footer-text {
  background: url("../images/top4.png") no-repeat center center;
  background-size: cover;
  padding: 178px 0 154px;
}
@media screen and (max-width: 767px) {
  .top .footer-text {
    padding: 20px;
  }
}
.top .footer-text .container .inner {
  padding: 42px 0 84px;
  background: rgba(255, 255, 255, 0.64);
}
@media screen and (max-width: 767px) {
  .top .footer-text .container .inner {
    padding: 80px 20px;
  }
}
.top .footer-text .container .inner .heading {
  color: #252525;
  text-align: center;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 19px;
}
@media screen and (max-width: 767px) {
  .top .footer-text .container .inner .heading {
    margin-bottom: 40px;
  }
}
.top .footer-text .container .inner .read {
  max-width: 806.81px;
  margin: 0 auto;
  display: block;
}
.top .cta {
  background: #605e5e;
  padding: 85px 0 64px;
  color: #fff;
}
.top .cta .container .heading {
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .top .cta .container .heading {
    font-size: 36px;
    margin-bottom: 26px;
    letter-spacing: 3px;
  }
}
.top .cta .container .read {
  margin-bottom: 40px;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px; /* 140% */
  text-align: center;
}
.top .cta .container .link {
  color: #252525;
  padding: 7px 11.28px 7px 7.27px;
  display: block;
  margin: 0 auto;
  background: #fff;
  width: 138px;
  text-align: center;
  transition: 0.1s;
}
.top .cta .container .link:hover {
  opacity: 0.7;
}
.top .parallax_content {
  display: flex;
  height: 600px;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top .parallax_content {
    height: 204px;
  }
}
.top .img_bg_01 {
  background-image: url("../images/top4.png");
}
.top .slider {
  padding: 86px 0 110px;
  width: 100%;
  overflow: hidden;
}
.top .slider .slider-box .box .col {
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top .slider .slider-box .box .col {
    padding: 0 20px;
  }
}
.top .slider .slider-box .box .col .read {
  color: #605e5e;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  display: block;
  line-height: 25.2px;
  margin: 0 auto 22px;
  max-width: 490px;
}
@media screen and (max-width: 767px) {
  .top .slider .slider-box .box .col .read {
    font-size: 16px;
  }
}
.top .slider .slider-box .box .col .title {
  color: #252525;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .top .slider .slider-box .box .col .title {
    font-size: 20px;
  }
}
.top .slider .slick-dots {
  text-align: center;
  margin-top: 10px;
}
.top .slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.top .slider .slick-dots li button {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  border: none;
  font-size: 0;
  cursor: pointer;
}
.top .slider .slick-dots li.slick-active button {
  background: #004aad;
}
.top .image {
  background: url("../images/top5.png") no-repeat;
  background-size: cover;
  height: 190px;
}
.top .image--2 {
  background: url("../images/top6.png") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top .image {
    height: 90px;
  }
}
.top .video {
  height: 277px !important;
  max-height: 277px !important;
  width: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.top .cards {
  padding: 32px 0 76px;
}
.top .cards .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top .cards .box {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.top .cards .box .col {
  max-width: 150px;
}
@media screen and (max-width: 767px) {
  .top .cards .box .col {
    max-width: 80px;
  }
}

*,
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: inherit;
  letter-spacing: inherit;
  box-sizing: border-box !important;
}

img {
  border: 0;
  vertical-align: bottom;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  color: #323232;
  font-family: Yu Gothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 1px;
}

img {
  width: 100%;
  height: auto;
}

br.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  br.sp {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  br.pc {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  img.pc {
    display: none;
  }
}

img.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  img.sp {
    display: block;
  }
}

.components {
  padding-top: 43px;
}

html {
  scroll-behavior: smooth;
}

select {
  color: #666666;
  background-color: #fafafa;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html.is-changing .transition-fade {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(-100px);
}

* {
  box-sizing: border-box !important;
  padding: 0;
  margin: 0;
}

.service .hero {
  width: 100%;
  padding: 100px 0;
  background: #004aad;
}
@media screen and (max-width: 767px) {
  .service .hero {
    padding: 70px 0;
  }
}
.service .hero .container .heading {
  color: #fff;
  text-align: center;
  font-family: "MS Gothic";
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.5px;
  letter-spacing: 2.1px;
  margin-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .service .hero .container .heading {
    margin-bottom: 0;
  }
}
.service .hero .container .read {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px;
}
@media screen and (max-width: 767px) {
  .service .hero .container .read {
    display: none;
  }
}
.service .video {
  overflow: hidden;
  height: 327px;
}
@media screen and (max-width: 767px) {
  .service .video {
    height: 200px;
  }
}
.service .video .bg-video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.service .services {
  padding: 73px 0 105px;
}
.service .services .container .heading {
  color: #605e5e;
  font-size: 52.609px;
  font-style: normal;
  font-weight: 400;
  line-height: 78.4px;
  margin-bottom: 66px;
  text-align: center;
}
.service .services .container .box {
  display: flex;
  justify-content: center;
  gap: 83px;
  margin-bottom: 67px;
}
@media screen and (max-width: 767px) {
  .service .services .container .box {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.service .services .container .box .col {
  color: #252525;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service .services .container .box .col {
    padding: 0 20px;
  }
}
.service .services .container .box .col .title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 44px;
}
.service .services .container .box .col .read {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
}
.service .services .container .cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service .services .container .cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.service .services .container .cards .img {
  max-width: 127px;
}
@media screen and (max-width: 767px) {
  .service .services .container .cards .img {
    max-width: none;
    width: 22%;
  }
}
.service .image {
  width: 100%;
  height: 362px;
  background: url("../images/service2.png") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .service .image {
    height: 200px;
  }
}

* {
  box-sizing: border-box !important;
  padding: 0;
  margin: 0;
}

.overview .hero {
  padding: 100px 0;
  background: url("../images/about1.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .overview .hero {
    padding: 60px 20px 100px;
  }
}
.overview .hero .container .content {
  background: rgba(40, 38, 38, 0.5);
  border-radius: 5px;
  bottom: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  padding: 30px 0;
  max-width: 568px;
  display: block;
  margin: 0 auto;
}
.overview .hero .container .heading {
  color: #fff;
  text-align: center;
  font-size: 55px;
  font-style: normal;
  font-weight: 400;
  line-height: 60.5px;
  letter-spacing: 3.3px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .overview .hero .container .heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.overview .hero .container .read {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
}
@media screen and (max-width: 767px) {
  .overview .hero .container .read {
    font-size: 14px;
  }
}
.overview .commit {
  background: #252525;
  padding: 70px 0;
  color: #fff;
  text-align: center;
  border-bottom: 20px solid #004aad;
}
.overview .commit .container .heading {
  font-size: 32.359px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .overview .commit .container .heading {
    margin-bottom: 20px;
    font-size: 32px;
  }
}
.overview .commit .container .read {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
}
.overview .parallax_content {
  display: flex;
  height: 600px;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .overview .parallax_content {
    height: 204px;
  }
}
.overview .img_bg_01 {
  background-image: url("../images/about5.png");
}
.overview .global {
  padding: 70px 0;
  border-top: 20px solid #004aad;
}
@media screen and (max-width: 767px) {
  .overview .global {
    padding: 60px 10px;
  }
}
.overview .global .container .heading {
  color: #a0a09f;
  text-align: center;
  font-size: 31.32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 42px;
}
.overview .global .container .read {
  color: #252525;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  max-width: 710.64px;
  display: block;
  margin: 0 auto;
}
.overview .image-top {
  height: 483px;
  background: url("../images/about3.png") no-repeat center center;
  background-size: cover;
  border-bottom: 191px solid #004aad;
}
@media screen and (max-width: 767px) {
  .overview .image-top {
    display: none;
  }
}
.overview .image-bottom2 {
  height: 500px;
  background: url("../images/about4.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .overview .image-bottom2 {
    display: none;
  }
}
.overview .profile {
  padding: 56px 0 117px;
  background: #a0a09f;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .overview .profile {
    padding: 60px 10px;
  }
}
@media screen and (max-width: 767px) {
  .overview .profile .img {
    height: 300px;
  }
}
.overview .profile .read .left {
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .overview .profile .read .left {
    width: 100%;
    font-size: 32px;
    text-align: left;
    font-weight: 900;
  }
}
.overview .profile .read .right .tr {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  text-align: left;
}
.overview .profile .read .right .tr .th {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .overview .profile .read .right .tr .th {
    width: 40%;
  }
}
.overview .profile .read .right .tr .td {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .overview .profile .read .right .tr .td {
    width: 60%;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.recruit .hero {
  text-align: center;
  padding: 100px 0 70px;
}
@media screen and (max-width: 767px) {
  .recruit .hero {
    padding: 60px 20px;
  }
}
.recruit .hero .container .heading {
  color: #605e5e;
  font-size: 33.867px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}
.recruit .hero .container .description {
  color: #252525;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
}
.recruit .portrait {
  padding: 80px 0 140px;
  background: rgba(237, 237, 237, 0.8);
}
@media screen and (max-width: 767px) {
  .recruit .portrait {
    padding: 60px 20px;
  }
}
.recruit .portrait .container .heading {
  color: #252525;
  font-family: Inter;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .recruit .portrait .container .heading {
    font-size: 32px;
  }
}
.recruit .portrait .container .table .tr {
  text-align: left;
  color: #252525;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  display: block;
}
.recruit .portrait .container .table .tr:not(.recruit .portrait .container .table .tr:last-child) {
  margin-bottom: 29px;
}
@media screen and (max-width: 767px) {
  .recruit .portrait .container .table .tr:not(.recruit .portrait .container .table .tr:last-child) {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 767px) {
  .recruit .portrait .container .table .tr {
    display: flex;
    flex-direction: column;
  }
}
.recruit .portrait .container .table .tr .th {
  width: 30%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .recruit .portrait .container .table .tr .th {
    width: 100%;
    margin-bottom: 16px;
  }
}
.recruit .portrait .container .table .tr .td {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .recruit .portrait .container .table .tr .td {
    width: 100%;
  }
}
.recruit .welcome {
  background: url("../images/recruit1.png") no-repeat center center;
  background-size: cover;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .recruit .welcome {
    padding: 40px 0;
  }
}
.recruit .welcome .container .inner {
  max-width: 568px;
  display: block;
  margin: 0 auto;
  padding: 50px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .recruit .welcome .container .inner {
    padding: 40px 20px;
    max-width: 90%;
  }
}
.recruit .welcome .container .inner .heading {
  color: #605e5e;
  text-align: center;
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .recruit .welcome .container .inner .heading {
    font-size: 36px;
    font-weight: 900;
  }
}
.recruit .welcome .container .inner .description {
  color: #252525;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.6px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recruit .welcome .container .inner .description {
    font-size: 14px;
  }
}
.recruit .welcome .container .inner .text {
  color: #252525;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 25.2px;
}
@media screen and (max-width: 767px) {
  .recruit .welcome .container .inner .text {
    font-size: 16px;
  }
}
.recruit .form {
  background: #ededed;
  padding: 60px 0 100px;
}
.recruit .form .container {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .recruit .form .container {
    flex-direction: column;
  }
}
.recruit .form .left {
  width: 40%;
  background: url("../images/recruit2.png") no-repeat center center;
  background-size: cover;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .recruit .form .left {
    width: 100%;
    padding: 40px 20px;
  }
}
.recruit .form .left .heading {
  color: #fff;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 110px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit .form .left .heading {
    font-size: 32px;
  }
}
.recruit .form .left .heading:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: #fff;
  margin: auto;
  display: block;
  bottom: -50px;
}
@media screen and (max-width: 767px) {
  .recruit .form .left .heading:before {
    bottom: -30px;
  }
}
@media screen and (max-width: 767px) {
  .recruit .form .left .heading {
    margin-bottom: 60px;
  }
}
.recruit .form .left .read {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.recruit .form .right {
  background: #fff;
  width: 60%;
  padding: 41px 60px 54px;
}
@media screen and (max-width: 767px) {
  .recruit .form .right {
    width: 100%;
    padding: 40px 20px;
  }
}
.recruit .form .right .wpcf7-form {
  display: block;
  margin: 0 auto;
}
.recruit .form .right .wpcf7-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .recruit .form .right .wpcf7-form .form-row {
    flex-direction: column;
  }
}
.recruit .form .right .wpcf7-form .form-row .form-col {
  flex: 1;
}
.recruit .form .right .wpcf7-form .form-row .form-col input,
.recruit .form .right .wpcf7-form .form-row .form-col select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #333;
  background: rgba(237, 237, 237, 0.5);
}
.recruit .form .right .wpcf7-form .form-row.submit {
  width: 100%;
  display: block;
}
.recruit .form .right .wpcf7-form .form-row.submit input[type=submit] {
  background: #222;
  width: 100%;
  color: #fff;
  padding: 1rem 3rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.contact .hero {
  padding: 88px 0 63px;
}
.contact .hero .heading {
  color: #252525;
  text-align: center;
  font-family: Inter;
  font-size: 33px;
  font-style: normal;
  font-weight: 400;
  line-height: 46.2px; /* 140% */
}
.contact .form {
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contact .form {
    flex-direction: column;
  }
}
.contact .form .left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact .form .left {
    width: 100%;
  }
}
.contact .form .left .img {
  min-height: 639px;
  max-height: 639px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .contact .form .left .img {
    min-height: 200px;
  }
}
.contact .form .right {
  width: 50%;
  padding: 80px 0 100px;
  background: #ededed;
  max-height: 639px;
}
@media screen and (max-width: 767px) {
  .contact .form .right {
    width: 100%;
    padding: 40px 20px;
    max-height: 100%;
  }
}
.contact .form .right .read {
  max-width: 452px;
  display: block;
  margin: 0 auto 36px;
}
.contact .form .right .wpcf7-form {
  max-width: 452px;
  display: block;
  margin: 0 auto;
}
.contact .form .right .wpcf7-form .form-row {
  margin-bottom: 20px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact .form .right .wpcf7-form .form-row {
    flex-direction: column;
    width: 100%;
  }
}
.contact .form .right .wpcf7-form .form-row--100 {
  display: block;
  width: 100%;
}
.contact .form .right .wpcf7-form .form-row.submit input[type=submit] {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 50px;
  cursor: pointer;
  font-weight: bold;
}
.contact .form .right .wpcf7-form .form-row > .form-col {
  display: inline-block;
  width: 48%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .contact .form .right .wpcf7-form .form-row > .form-col {
    width: 100%;
  }
}
.contact .form .right .wpcf7-form .form-row > .form-col:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .contact .form .right .wpcf7-form .form-row > .form-col:last-child {
    margin-top: 20px;
  }
}
.contact .form .right .wpcf7-form .form-row > .form-col input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #666;
  background: transparent;
  padding: 0.5rem;
  font-size: 1rem;
}
.contact .form .right .wpcf7-form .form-row input[type=email],
.contact .form .right .wpcf7-form .form-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #666;
  background: transparent;
  padding: 0.5rem;
  font-size: 1rem;
}
.contact .form .right .wpcf7-form .form-row textarea {
  height: 120px;
  resize: vertical;
}
.contact .map {
  height: 500px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact .map {
    height: 300px;
  }
}
