@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

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

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 1.4;
}
@media (min-width: 651px) and (max-width:990px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 991px) and (max-width:1300px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  body {
    font-size: 14px;
  }
}

a {
  transition: all 0.6s;
}
a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
}

.inner {
  padding: 0 100px;
  max-width: 1480px;
  margin: 0 auto;
}
@media (min-width: 991px) and (max-width:1300px) {
  .inner {
    padding: 0 40px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 650px) {
  .inner {
    padding: 0 20px;
  }
}

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

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

.section-h2 {
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
.section-h2 h2 {
  font-size: 70px;
  color: #830000;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 651px) and (max-width:990px) {
  .section-h2 h2 {
    font-size: 55px;
  }
}
@media screen and (max-width: 650px) {
  .section-h2 h2 {
    font-size: 45px;
  }
}
.section-h2 span {
  font-size: 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .section-h2 span {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .section-h2 span {
    font-size: 14px;
  }
}

.white-h2 {
  color: #ffffff;
}
.white-h2 h2 {
  color: #ffffff;
}

.btn {
  width: 300px;
  height: 70px;
  border: 1px solid #830000;
  background-color: transparent;
  margin: 0 auto;
}
@media screen and (max-width: 650px) {
  .btn {
    width: 250px;
    height: 65px;
  }
}
.btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #830000;
  font-size: 20px;
  font-weight: 700;
  padding: 17px 20px 10px 20px;
  position: relative;
}
@media screen and (max-width: 650px) {
  .btn a {
    font-size: 16px;
  }
}
.btn a img {
  width: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  z-index: 40;
}
@media screen and (max-width: 650px) {
  .header {
    height: 80px;
  }
}

.header-inner {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}

.header-logo {
  width: 200px;
  margin-left: 20px;
}
@media (min-width: 991px) and (max-width:1300px) {
  .header-logo {
    width: 180px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .header-logo {
    width: 160px;
  }
}
@media screen and (max-width: 650px) {
  .header-logo {
    width: 150px;
  }
}

.header-nav {
  display: flex;
  margin-left: auto;
}
@media (min-width: 651px) and (max-width:990px) {
  .header-nav {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .header-nav {
    display: none;
  }
}
.header-nav li {
  padding-right: 25px;
}
@media (min-width: 991px) and (max-width:1300px) {
  .header-nav li {
    padding-right: 20px;
  }
}
.header-nav li a {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.1rem;
}
@media (min-width: 991px) and (max-width:1300px) {
  .header-nav li a {
    font-size: 15px;
  }
}
.header-nav li.menu-item-has-children {
  position: relative;
}
.header-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #830000;
  padding: 20px 10px 10px 30px;
  display: none;
  z-index: 100;
}
.header-nav li.menu-item-has-children .sub-menu li {
  padding-bottom: 20px;
}
.header-nav li.menu-item-has-children .sub-menu li a {
  font-size: 16px;
  color: #ffffff;
  white-space: nowrap;
}
.header-nav li.menu-item-has-children .sub-menu li a:hover {
  opacity: 0.6;
}
.header-nav li.menu-item-has-children:hover .sub-menu {
  display: block;
}

.contact-btn {
  width: 200px;
  height: 100%;
  background-color: #830000;
}
@media (min-width: 991px) and (max-width:1300px) {
  .contact-btn {
    width: 150px !important;
  }
}
@media screen and (max-width: 650px) {
  .contact-btn {
    display: none;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-btn {
    display: none;
  }
}
.contact-btn a {
  display: inline-block;
  padding-top: 12px;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.15rem;
  font-weight: 400;
}
.contact-btn a img {
  width: 30px;
  display: block;
  margin: 10px auto;
}
@media (min-width: 991px) and (max-width:1300px) {
  .contact-btn a {
    font-size: 14px;
  }
}

.drawer-icon {
  position: fixed;
  top: 22px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (min-width: 651px) and (max-width:990px) {
  .drawer-icon {
    display: block;
  }
}
@media screen and (max-width: 650px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background: #ffffff;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
  background: #ffffff;
}

.drawer-icon-bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 26px;
  height: 4px;
  border-radius: 3px;
  background-color: #ffffff;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
.drawer-icon-bar1.is-active,
.drawer-icon-bar2.is-active,
.drawer-icon-bar3.is-active {
  background: #ffffff;
  z-index: 299;
}

.drawer-icon-bar1 {
  top: 0px;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  background-color: #830000;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  padding-top: 100px;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-item {
  padding-bottom: 40px;
}
.drawer-content-item a {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.5s;
}
.drawer-content-item a:hover {
  opacity: 0.7;
}

.contact {
  background: url(../img/contact-bg.jpg);
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 651px) and (max-width:990px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 650px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.contact-text {
  color: #ffffff;
  text-align: center;
  line-height: 2;
  padding-top: 100px;
  position: relative;
}
@media screen and (max-width: 650px) {
  .contact-text {
    padding-top: 70px;
  }
}
.contact-text::before {
  position: absolute;
  content: "";
  border-left: 2px dashed #ffffff;
  top: 20px;
  height: 70px;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 650px) {
  .contact-text::before {
    height: 40px;
  }
}

.contact-wrap {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-wrap {
    gap: 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 650px) {
  .contact-wrap {
    display: block;
    margin-top: 40px;
  }
}

.contact-item {
  width: 100%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 0px 24px 19px rgba(238, 238, 238, 0.45);
}
@media screen and (max-width: 650px) {
  .contact-item {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}

.contact-label {
  color: #ffffff;
  font-size: 20px;
  padding: 10px 0;
  margin-top: 30px;
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-label {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .contact-label {
    font-size: 16px;
    margin-top: 0;
  }
}

.contact-content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 40px 0;
}

.contact-item--1 {
  background-color: rgba(238, 238, 238, 0.7);
}
.contact-item--1 .contact-label {
  background-color: #830000;
}
.contact-item--1 .contact-item-title {
  color: #830000;
  font-size: 34px;
  letter-spacing: 0.2rem;
  font-weight: 700;
  margin-left: 15px;
  margin-right: 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-item--1 .contact-item-title {
    font-size: 22px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 650px) {
  .contact-item--1 .contact-item-title {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    letter-spacing: 0.01rem;
  }
}

@media screen and (max-width: 650px) {
  .contact-icon {
    width: 30px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-icon {
    width: 30px;
  }
}

@media screen and (max-width: 650px) {
  .contact-arrow {
    width: 30px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-arrow {
    width: 30px;
  }
}

.contact-item--2 {
  background-color: rgba(238, 238, 238, 0.9);
}
.contact-item--2 .contact-label {
  background-color: #434343;
}
.contact-item--2 .contact-item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 54px;
  color: #434343;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-left: 15px;
  margin-right: 20px;
  letter-spacing: 0.01rem;
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-item--2 .contact-item-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 650px) {
  .contact-item--2 .contact-item-title {
    font-size: 30px;
    letter-spacing: 0.01rem;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.access {
  width: 100%;
  position: relative;
  padding-top: 30%;
}
@media screen and (max-width: 650px) {
  .access {
    padding-top: 50%;
  }
}
.access iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.footer-nav-bar {
  height: 100px;
  border-bottom: 2px solid #830000;
}
@media screen and (max-width: 650px) {
  .footer-nav-bar {
    height: 70px;
  }
}

.footer-inner {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .footer-inner {
    height: 70px;
  }
}

.footer-logo {
  width: 200px;
  margin-left: 20px;
}
@media (min-width: 991px) and (max-width:1300px) {
  .footer-logo {
    width: 220px;
    margin-left: 10px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .footer-logo {
    width: 200px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 650px) {
  .footer-logo {
    width: 170px;
    margin: 0 auto;
  }
}

.footer-nav {
  display: flex;
  margin-left: auto;
}
@media (min-width: 651px) and (max-width:990px) {
  .footer-nav {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav li {
  padding-right: 35px;
}
@media (min-width: 991px) and (max-width:1300px) {
  .footer-nav li {
    padding-right: 15px;
  }
}
.footer-nav li a {
  font-size: 18px;
  color: #000000;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media (min-width: 991px) and (max-width:1300px) {
  .footer-nav li a {
    font-size: 15px;
  }
}
.footer-nav li.menu-item-has-children {
  position: relative;
}
.footer-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #830000;
  padding: 20px 10px;
  display: none;
  min-width: 250px;
  z-index: 100;
}
.footer-nav li.menu-item-has-children .sub-menu li {
  padding-bottom: 20px;
}
.footer-nav li.menu-item-has-children .sub-menu li a {
  font-size: 16px;
  color: #ffffff;
}
.footer-nav li.menu-item-has-children .sub-menu li a:hover {
  opacity: 0.6;
}
.footer-nav li.menu-item-has-children:hover .sub-menu {
  display: block;
}

.contact-btn {
  width: 200px;
  height: 100%;
  background-color: #830000;
}
@media screen and (max-width: 650px) {
  .contact-btn {
    display: none;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-btn {
    display: none;
  }
}
.contact-btn a {
  display: inline-block;
  padding-top: 12px;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.15rem;
  font-weight: 400;
}
.contact-btn a img {
  width: 30px;
  display: block;
  margin: 10px auto;
}
@media (min-width: 991px) and (max-width:1300px) {
  .contact-btn a {
    font-size: 14px;
  }
}

.footer-company-content-wrap {
  width: 60%;
  padding: 60px;
}
@media screen and (max-width: 650px) {
  .footer-company-content-wrap {
    width: 100%;
    padding: 20px;
  }
}

.footer-company-wrap {
  display: flex;
}
@media screen and (max-width: 650px) {
  .footer-company-wrap {
    display: block;
  }
}

.footer-company {
  width: 40%;
}
@media screen and (max-width: 650px) {
  .footer-company {
    width: 100%;
  }
}
.footer-company img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-company-content {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 650px) {
  .footer-company-content {
    gap: 10px;
  }
}

.footer-company-name {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 5px;
}

.footer-company-address {
  line-height: 2;
}

.map-nav {
  padding-top: 40px;
}
@media screen and (max-width: 650px) {
  .map-nav {
    padding-top: 20px;
  }
}
.map-nav a {
  color: #830000;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.map-nav a img {
  width: 18px;
  vertical-align: middle;
  margin-left: 10px;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 650px) {
  .footer-sns {
    margin-top: 20px;
  }
}

.footer-sns-icon {
  width: 33px;
}

.footer-footer {
  text-align: center;
  background-color: #830000;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 0;
}
@media screen and (max-width: 650px) {
  .footer-footer {
    font-size: 12px;
  }
}

.hero {
  background: url(../img/hero.jpg) no-repeat center center/cover;
  padding: 200px 0 280px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 651px) and (max-width:990px) {
  .hero {
    padding: 160px 0 200px 0;
  }
}
@media (min-width: 991px) and (max-width:1300px) {
  .hero {
    padding: 170px 0 250px 0;
  }
}
@media screen and (max-width: 650px) {
  .hero {
    padding: 120px 20px 140px 20px;
  }
}

.hero-en-title {
  font-size: 40px;
  color: #830000;
}
@media (min-width: 651px) and (max-width:990px) {
  .hero-en-title {
    font-size: 30px;
  }
}
@media (min-width: 991px) and (max-width:1300px) {
  .hero-en-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 650px) {
  .hero-en-title {
    font-size: 20px;
  }
}

.hero-content {
  text-align: center;
}
.hero-content h1 {
  font-size: 64px;
  color: #ffffff;
  font-weight: 700;
  padding: 40px 0;
}
@media (min-width: 651px) and (max-width:990px) {
  .hero-content h1 {
    font-size: 42px;
  }
}
@media (min-width: 991px) and (max-width:1300px) {
  .hero-content h1 {
    font-size: 58px;
    padding: 30px 0;
  }
}
@media screen and (max-width: 650px) {
  .hero-content h1 {
    font-size: 35px;
    padding: 20px 0;
  }
}
.hero-content p {
  color: #ffffff;
  line-height: 2;
}

.hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #830000;
  padding-bottom: 10px;
}
@media (min-width: 651px) and (max-width:990px) {
  .hero-info {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 650px) {
  .hero-info {
    padding-bottom: 0;
  }
}

.hero-info-title {
  font-family: "Montserrat", sans-serif;
  color: #830000;
  font-size: 40px;
  margin-top: -40px;
  font-weight: 600;
}
@media screen and (max-width: 650px) {
  .hero-info-title {
    font-size: 24px;
    margin-top: -25px;
  }
}

.hero-info-wrap {
  display: flex;
  align-items: center;
  padding: 10px 0 20px 0;
  justify-content: space-between;
  line-height: 1;
}
.hero-info-wrap img {
  width: 30px;
}
@media (min-width: 651px) and (max-width:990px) {
  .hero-info-wrap img {
    width: 20px;
  }
}
@media screen and (max-width: 650px) {
  .hero-info-wrap img {
    width: 15px;
  }
}

.info-content {
  margin-right: auto;
  margin-left: 100px;
}
@media (min-width: 651px) and (max-width:990px) {
  .info-content {
    margin-left: 40px;
  }
}
@media screen and (max-width: 650px) {
  .info-content {
    margin-left: 20px;
  }
}
.info-content time {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}
@media screen and (max-width: 650px) {
  .info-content time {
    font-size: 12px;
  }
}
.info-content .info-title {
  color: #ffffff;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 650px) {
  .info-item {
    gap: 10px;
    display: block;
  }
}

.info-category {
  padding: 5px 10px;
  border: 1px solid #ffffff;
  color: #ffffff;
}
@media screen and (max-width: 650px) {
  .info-category {
    font-size: 12px;
    padding: 2px 5px;
    margin-left: 10px;
  }
}

.info-top-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 650px) {
  .info-top-wrap {
    margin-bottom: 5px;
  }
}

.about {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #eeeeee;
}
@media (min-width: 651px) and (max-width:990px) {
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 650px) {
  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.about-content {
  padding-top: 60px;
}
@media screen and (max-width: 650px) {
  .about-content {
    padding-top: 30px;
  }
}
.about-content p {
  line-height: 2.5;
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 650px) {
  .about-content p {
    line-height: 2;
    padding-bottom: 30px;
  }
}

.business {
  height: 540px;
  padding-top: 120px;
  background: url(../img/business-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 650px) {
  .business {
    padding-top: 60px;
    height: auto;
    padding-bottom: 60px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .business {
    padding-top: 80px;
  }
}

.business-wrap {
  margin-bottom: -100px;
  display: flex;
  gap: 40px;
  padding-top: 60px;
}
@media (min-width: 651px) and (max-width:990px) {
  .business-wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 650px) {
  .business-wrap {
    display: block;
    padding-top: 40px;
    margin-bottom: 0;
  }
}

.business-item {
  border-radius: 20px;
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 650px) {
  .business-item {
    height: 300px;
    margin-bottom: 20px;
  }
}

.business-item--1 {
  background: url(../img/companies.png) no-repeat center center/cover;
}

.business-item--2 {
  background: url(../img/individual.png) no-repeat center center/cover;
}

.business-item-en {
  font-family: "Montserrat", sans-serif;
  color: #830000;
  font-size: 36px;
  margin-top: -54px;
  margin-bottom: 15px;
  font-weight: 700;
}
@media (min-width: 651px) and (max-width:990px) {
  .business-item-en {
    margin-top: -58px;
  }
}
@media (min-width: 991px) and (max-width:1300px) {
  .business-item-en {
    margin-top: -58px;
  }
}
@media screen and (max-width: 650px) {
  .business-item-en {
    font-size: 24px;
    margin-top: -33px;
  }
}

.business-label {
  background-color: #830000;
  position: absolute;
  padding-left: 20px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  border-radius: 0 0 20px 20px;
  bottom: 0;
}
@media (min-width: 991px) and (max-width:1300px) {
  .business-label {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .business-label {
    height: 75px;
    width: 100%;
  }
}
.business-label h3 {
  color: #ffffff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 651px) and (max-width:990px) {
  .business-label h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 650px) {
  .business-label h3 {
    font-size: 22px;
  }
}
.business-label h3 img {
  display: block;
  width: 30px;
  margin-right: 20px;
}

.works {
  padding-top: 250px;
  padding-bottom: 120px;
  background: url(../img/works-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 650px) {
  .works {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .works {
    padding-top: 200px;
    padding-bottom: 80px;
  }
}

.works-wrap {
  display: flex;
  gap: 30px;
  margin-top: 80px;
  margin-bottom: 60px;
}
@media (min-width: 651px) and (max-width:990px) {
  .works-wrap {
    gap: 15px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 650px) {
  .works-wrap {
    margin-top: 40px;
    margin-bottom: 30px;
    display: block;
  }
}

.works-btn {
  background-color: #ffffff;
}

.works-item {
  width: 100%;
}
@media screen and (max-width: 650px) {
  .works-item {
    margin-bottom: 30px;
    display: block;
  }
}
.works-item h3 {
  font-size: 21px;
  font-weight: 700;
  padding-top: 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .works-item h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .works-item h3 {
    font-size: 16px;
    padding-top: 10px;
  }
}

.works-item-img {
  position: relative;
}

.works-item-category {
  position: absolute;
  padding: 10px 30px 10px 20px;
  background-color: #830000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1rem;
  top: 20px;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
@media (min-width: 651px) and (max-width:990px) {
  .works-item-category {
    padding: 7px 20px 7px 10px;
    font-size: 14px;
    top: 10px;
  }
}

.works-tag-wrap {
  display: flex;
  color: #830000;
  padding-top: 20px;
  font-weight: 700;
  gap: 20px;
}
@media screen and (max-width: 650px) {
  .works-tag-wrap {
    padding-top: 5px;
  }
}

.blogs {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #eeeeee;
}
@media screen and (max-width: 650px) {
  .blogs {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 80px;
  margin-bottom: 60px;
}
@media (min-width: 651px) and (max-width:990px) {
  .blog-wrap {
    gap: 20px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 650px) {
  .blog-wrap {
    margin-top: 40px;
    margin-bottom: 30px;
    display: block;
  }
}

.blog-item {
  width: calc(50% - 20px);
  display: flex;
  background-color: #ffffff;
  padding: 20px;
  gap: 20px;
  border-radius: 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .blog-item {
    display: block;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 650px) {
  .blog-item {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    display: block;
  }
}

.blog-item-img {
  position: relative;
  width: 45%;
}
@media (min-width: 651px) and (max-width:990px) {
  .blog-item-img {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .blog-item-img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.blog-item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.blog-item-category {
  position: absolute;
  padding: 5px 30px 5px 20px;
  font-size: 16px;
  background-color: #830000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1rem;
  top: 20px;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
@media (min-width: 651px) and (max-width:990px) {
  .blog-item-category {
    padding: 7px 20px 7px 10px;
    font-size: 14px;
    top: 10px;
  }
}

.blog-item-content {
  width: 55%;
}
@media (min-width: 651px) and (max-width:990px) {
  .blog-item-content {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .blog-item-content {
    width: 100%;
  }
}
.blog-item-content time {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.blog-item-content h3 {
  font-weight: 700;
  padding-top: 5px;
  font-size: 18px;
}
@media screen and (max-width: 650px) {
  .blog-item-content h3 {
    padding-top: 0;
  }
}

.blog-tag-wrap {
  display: flex;
  color: #830000;
  padding-top: 20px;
  font-weight: 700;
  gap: 20px;
}
@media screen and (max-width: 650px) {
  .blog-tag-wrap {
    padding-top: 10px;
  }
}

.recruit {
  background-color: #eeeeee;
  padding-bottom: 120px;
}
@media (min-width: 651px) and (max-width:990px) {
  .recruit {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 650px) {
  .recruit {
    padding-bottom: 60px;
  }
}

.recruit-wrap {
  position: relative;
  width: 85%;
  padding-top: 80px;
  padding-bottom: 60px;
  padding-right: 60px;
  padding-left: 150px;
  border-radius: 30px;
  background: url(../img/recruit.png) no-repeat center center/cover;
}
@media (min-width: 651px) and (max-width:990px) {
  .recruit-wrap {
    width: 90%;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 991px) and (max-width:1300px) {
  .recruit-wrap {
    width: 90%;
  }
}
@media screen and (max-width: 650px) {
  .recruit-wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.recruit-wrap h2 {
  font-size: 34px;
  color: #ffffff;
  letter-spacing: 0.2rem;
  padding-bottom: 150px;
}
@media (min-width: 651px) and (max-width:990px) {
  .recruit-wrap h2 {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 650px) {
  .recruit-wrap h2 {
    padding-bottom: 100px;
  }
}

.recruit-en {
  font-size: 150px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  color: #ffffff;
  opacity: 0.4;
  line-height: 0.7;
  top: 0;
}
@media (min-width: 651px) and (max-width:990px) {
  .recruit-en {
    font-size: 120px;
  }
}
@media screen and (max-width: 650px) {
  .recruit-en {
    font-size: 70px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.recruit-catch-copy {
  position: absolute;
  right: -120px;
  top: 40px;
}
@media (min-width: 651px) and (max-width:990px) {
  .recruit-catch-copy {
    width: 85%;
    right: -100px;
  }
}
@media (min-width: 991px) and (max-width:1300px) {
  .recruit-catch-copy {
    width: 80%;
  }
}
@media screen and (max-width: 650px) {
  .recruit-catch-copy {
    width: 100%;
    left: 0;
    top: 90px;
  }
}

.recruit-bottom-wrap {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 650px) {
  .recruit-bottom-wrap {
    display: block;
  }
}
.recruit-bottom-wrap p {
  line-height: 2;
  color: #ffffff;
  font-size: 18px;
  width: 60%;
}
@media screen and (max-width: 650px) {
  .recruit-bottom-wrap p {
    width: 100%;
    padding-bottom: 40px;
  }
}

.recruit-btn a {
  color: #830000;
  background-color: #ffffff;
}
.recruit-btn a img {
  vertical-align: middle;
}/*# sourceMappingURL=main.css.map */