@charset "UTF-8";
.btn-v {
  width: 116px;
  height: 42px;
  background: #007457;
  color: #FFFFFF;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 14px;
  padding-right: 9px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn-v {
    font-size: 14px;
  }
}
.btn-v img {
  width: 24px;
  position: relative;
  right: 0;
}
.btn-v:hover {
  background: #005C45;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-v:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: -4px;
}

.btn-g-b {
  background-image: -webkit-gradient(linear, left top, right top, from(#2080e0), to(#20bbe0));
  background-image: linear-gradient(90deg, #2080e0, #20bbe0);
  color: #FFFFFF;
  width: 244px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
.btn-g-b img {
  position: absolute;
  right: 9px;
  top: calc(50% - 2.5px);
}

.btn-g-g {
  background-image: -webkit-gradient(linear, left top, right top, from(#0da398), to(#3dc7c6));
  background-image: linear-gradient(90deg, #0da398, #3dc7c6);
  color: #FFFFFF;
  width: 244px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
.btn-g-g img {
  position: absolute;
  right: 9px;
  top: calc(50% - 2.5px);
}

html {
  overflow: auto;
}

html:has(.menu-open) {
  overflow: hidden !important;
}

body * {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #333333;
}
@media screen and (max-width: 1024px) {
  body * h1, body * h2, body * h3, body * h4, body * h5 {
    text-align: center;
  }
}

body.menu-open {
  overflow: hidden !important;
}

/* アニメーションの初期状態 */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* アニメーション後の状態 */
.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 1440px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1440px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  p {
    font-size: 14px !important;
  }
}
header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  z-index: 9999;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* ヘッダー内のロゴスタイル */
}
@media screen and (max-width: 1024px) {
  header {
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: fixed;
    width: 100%;
  }
}
header .link-section {
  /* PC表示用（デフォルト） */
  /* メニュー本体はデフォルトで表示 */
}
@media screen and (max-width: 1024px) {
  header .link-section {
    background-color: #007457;
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header .link-section .header-content {
  padding-right: 130px;
}
@media screen and (max-width: 1024px) {
  header .link-section .header-content {
    width: 100%;
    background-color: rgba(31, 80, 120, 0.8) !important;
    padding: 16px 0 40px;
    overflow: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .link-section .header-content nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    position: unset;
    width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  header .link-section .header-content nav a {
    padding: 12px 0;
    border-bottom: 1px solid #FFFFFF;
    width: 100%;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .link-section .header-content nav a .en {
    color: #FFFFFF;
  }
  header .link-section .header-content nav a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #007457;
  }
  header .link-section .header-content nav a:hover .en {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #007457;
  }
}
header .link-section .hamburger-menu-toggle {
  display: none;
}
header .link-section .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .link-section {
    /* ハンバーガーメニューのスタイル */
    /* メニュー本体は初期状態で非表示 */
    /* .menu-open クラスが追加されたらメニューを表示 */
  }
  header .link-section .hamburger-menu-toggle {
    margin-top: 0px;
    margin-right: 0px;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    cursor: pointer;
  }
  header .link-section .hamburger-menu-toggle span {
    height: 3px;
    width: 24px;
    background: #FFFFFF;
    margin: 4px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 2px;
    display: block;
  }
  header .link-section .hamburger-menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-4px, 6px);
            transform: rotate(-45deg) translate(-4px, 6px);
  }
  header .link-section .hamburger-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  header .link-section .hamburger-menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-4px, -6px);
            transform: rotate(45deg) translate(-4px, -6px);
  }
  header .link-section .header-content {
    height: 0;
    max-height: 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%; /* Adjust based on header height */
    left: 0;
    /* Fix: スクロールを有効にするための設定 */
    height: calc(100vh - 54px);
    overflow: scroll; /* コンテンツがはみ出た場合にスクロールを有効にする */
    width: 100%;
    background: white; /* 背景色 */
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .link-section .header-content.menu-open {
    max-height: unset !important;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 43px;
  position: fixed;
  top: 0;
  right: 130px;
}
@media screen and (max-width: 1024px) {
  header nav {
    position: relative;
  }
}
header nav a {
  padding: 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  header nav a {
    padding: 0 1.25em;
    font-size: 14px;
  }
  header nav a .en {
    font-size: 12px;
  }
}
header nav a .en {
  font-size: 13px;
  font-family: "Arial", sans-serif;
  font-weight: normal;
}
header nav a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #333333;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
@media screen and (max-width: 1024px) {
  header nav a:after {
    display: none;
  }
}
header nav a:last-child:after {
  display: none;
}
header nav a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #007457;
}
header nav a:hover .en {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #007457;
}
header .contact-btn {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #007457;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  right: 0;
  height: 128px;
  width: 128px;
}
header .contact-btn:hover {
  background: #005C45;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1440px) {
  header .contact-btn img {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1024px) {
  header .contact-btn {
    position: unset;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    height: 64px !important;
    width: 70% !important;
    margin-top: 24px;
    padding: 0 16px;
  }
  header .contact-btn img {
    margin-right: 16px;
    margin-bottom: 0;
  }
}
header #header-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1f2937;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  white-space: nowrap;
  position: fixed;
  top: 50px;
  left: 80px;
}
@media screen and (max-width: 1024px) {
  header #header-logo-container {
    top: 16px !important;
    left: 16px !important;
  }
}
header #header-logo-container .logo-image {
  height: 31px;
}

header.is-scroll {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #FFFFFF;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-bottom: 250px;
}
@media screen and (max-width: 1024px) {
  section {
    padding-bottom: 120px;
  }
}
section .content-container {
  width: 100%;
  max-width: 1440px;
  padding: 0 16px;
}
@media screen and (max-width: 1440px) {
  section .content-container {
    width: 100%;
    max-width: 1280px;
  }
}
@media screen and (max-width: 1024px) {
  section .content-container {
    width: 100%;
    padding: 0 16px;
  }
}
section .content-container .section-title-center {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 280px;
  margin-bottom: 155px;
}
@media screen and (max-width: 1024px) {
  section .content-container .section-title-center {
    margin-top: 115px;
    margin-bottom: 105px;
  }
}
section .content-container .section-title-center h3 {
  font-size: 120px;
  font-family: "Arial", sans-serif;
  color: #007457;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  section .content-container .section-title-center h3 {
    font-size: 48px;
  }
}
section .content-container .section-title-center .read {
  margin-top: 40px;
  font-size: 32px;
  color: #4D4D4D;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  section .content-container .section-title-center .read {
    font-size: 20px;
  }
}
section .content-container .section-title-left {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  margin-top: 280px;
  margin-bottom: 155px;
}
@media screen and (max-width: 1024px) {
  section .content-container .section-title-left {
    margin-top: 115px;
    margin-bottom: 105px;
  }
}
section .content-container .section-title-left h3 {
  font-size: 120px;
  font-family: "Arial", sans-serif;
  color: #007457;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  section .content-container .section-title-left h3 {
    font-size: 48px;
    text-align: left;
  }
}
section .content-container .section-title-left .read {
  margin-top: 40px;
  font-size: 32px;
  color: #4D4D4D;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  section .content-container .section-title-left .read {
    font-size: 20px;
    margin-top: 32px;
  }
}
section .section-title-back {
  position: absolute;
  font-size: 154px;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  white-space: nowrap;
  color: #BEE6E6;
  opacity: 0.8;
  top: 0;
  left: 16px;
  line-height: 1;
  
}
@media screen and (max-width: 1440px) {
  section .section-title-back {
    font-size: 128px;
  }
}
@media screen and (max-width: 1024px) {
  section .section-title-back {
    font-size: 64px;
  }
}

footer {
  background: #007457;
  padding: 44px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 22px;
  }
}
footer .footer-container {
  width: 1440px;
}
@media screen and (max-width: 1440px) {
  footer .footer-container {
    max-width: 1280px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer-container {
    width: 100%;
  }
}
footer .footer-container .footer-logo-container {
  width: 100%;
  margin-bottom: 66px;
}
footer .footer-container .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFFFFF;
  font-weight: bold;
}
footer .footer-container .content-container .top-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .top-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer .footer-container .content-container .top-link .company-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .top-link .company-section {
    margin-bottom: 50px;
  }
}
footer .footer-container .content-container .top-link .company-section .about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .top-link .company-section .about {
    margin-right: auto;
  }
}
footer .footer-container .content-container .top-link .company-section .about .name {
  font-size: 18px;
  margin-bottom: 20px;
}
footer .footer-container .content-container .top-link .company-section .about .place {
  font-size: 14px;
  margin-bottom: 45px;
}
footer .footer-container .content-container .top-link .company-section .about .sns-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-container .content-container .top-link .company-section .about .sns-link ul li + li {
  margin-left: 12px;
}
footer .footer-container .content-container .top-link .company-section .link {
  margin-left: 170px;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  footer .footer-container .content-container .top-link .company-section .link {
    margin-left: 24px;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .top-link .company-section .link {
    margin-left: 0;
  }
}
footer .footer-container .content-container .top-link .company-section .link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer-container .content-container .top-link .company-section .link ul li {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .top-link .company-section .link ul li {
    font-size: 14px;
  }
}
footer .footer-container .content-container .top-link .company-section .link ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-container .content-container .top-link .company-section .link ul li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-container .content-container .top-link .company-section .link ul li + li {
  margin-top: 16px;
}
footer .footer-container .content-container .top-link .group-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer-container .content-container .top-link .group-section .title {
  font-size: 18px;
  margin-bottom: 30px;
}
footer .footer-container .content-container .top-link .group-section .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 24px;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .top-link .group-section .link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer-container .content-container .top-link .group-section .link ul {
  list-style: disc;
}
footer .footer-container .content-container .top-link .group-section .link ul li {
  font-size: 14px;
}
footer .footer-container .content-container .top-link .group-section .link ul li a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-container .content-container .top-link .group-section .link ul li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-container .content-container .top-link .group-section .link ul li + li {
  margin-top: 8px;
}
footer .footer-container .content-container .top-link .group-section .link .menu-r {
  margin-left: 30px;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .top-link .group-section .link .menu-r {
    margin-left: 0;
  }
}
footer .footer-container .content-container .bottom-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 195px;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .bottom-link {
    margin-top: 120px;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .bottom-link .link {
    margin-bottom: 80px;
    width: 100%;
  }
}
footer .footer-container .content-container .bottom-link .link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .bottom-link .link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer-container .content-container .bottom-link .link ul li a {
  font-size: 14px;
  text-decoration: underline;
}
footer .footer-container .content-container .bottom-link .link ul li + li {
  margin-left: 8px;
}
@media screen and (max-width: 1024px) {
  footer .footer-container .content-container .bottom-link .link ul li + li {
    margin-left: 0;
  }
}
footer .footer-container .content-container .bottom-link .copy {
  font-size: 12px !important;
  margin-top: 70px;
}

footer * {
  color: #FFFFFF;
}

.btn-v {
  width: 116px;
  height: 42px;
  background: #007457;
  color: #FFFFFF;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 14px;
  padding-right: 9px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn-v {
    font-size: 14px;
  }
}
.btn-v img {
  width: 24px;
  position: relative;
  right: 0;
}
.btn-v:hover {
  background: #005C45;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-v:hover img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: -4px;
}

.btn-g-b {
  background-image: -webkit-gradient(linear, left top, right top, from(#2080e0), to(#20bbe0));
  background-image: linear-gradient(90deg, #2080e0, #20bbe0);
  color: #FFFFFF;
  width: 244px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
.btn-g-b img {
  position: absolute;
  right: 9px;
  top: calc(50% - 2.5px);
}

.btn-g-g {
  background-image: -webkit-gradient(linear, left top, right top, from(#0da398), to(#3dc7c6));
  background-image: linear-gradient(90deg, #0da398, #3dc7c6);
  color: #FFFFFF;
  width: 244px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
.btn-g-g img {
  position: absolute;
  right: 9px;
  top: calc(50% - 2.5px);
}

html {
  overflow: hidden; /* ローディング中はスクロールを無効化 */
}

html:has(.active-top) {
  overflow: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white; /* デフォルトのヘッダーテキストを白に */
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  header .link-section {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    pointer-events: none;
  }
}
header .link-section .header-content {
  padding-right: 130px;
}
@media screen and (max-width: 1024px) {
  header .link-section .header-content {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .link-section .hamburger-menu-toggle {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    pointer-events: none;
  }
  header .link-section .hamburger-menu-toggle span {
    background: #FFFFFF;
    margin: 2px 0;
  }
  header .link-section .hamburger-menu-toggle.visible {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: all;
  }
}
header .link-section.active {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: all;
}

header.is-scroll {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #FFFFFF;
}
header.is-scroll #header-logo-container {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header.is-scroll #header-logo-container .logo-image {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(28%) saturate(1827%) hue-rotate(122deg) brightness(89%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(35%) sepia(28%) saturate(1827%) hue-rotate(122deg) brightness(89%) contrast(101%);
}
@media screen and (max-width: 1024px) {
  header.is-scroll #header-logo-container .logo-image {
    -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(28%) saturate(1827%) hue-rotate(122deg) brightness(89%) contrast(101%);
            filter: brightness(0) saturate(100%) invert(35%) sepia(28%) saturate(1827%) hue-rotate(122deg) brightness(89%) contrast(101%);
  }
}
header.is-scroll nav a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333333; /* c-changeクラスが付与されたらテキストを黒に */
}
header.is-scroll nav a .en {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333333; /* c-changeクラスが付与されたらテキストを黒に */
}
@media screen and (max-width: 1024px) {
  header.is-scroll nav a {
    color: #FFFFFF;
  }
  header.is-scroll nav a .en {
    color: #FFFFFF; /* c-changeクラスが付与されたらテキストを黒に */
  }
}

header.c-change #header-logo-container .logo-image {
  -webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(28%) saturate(1827%) hue-rotate(122deg) brightness(89%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(35%) sepia(28%) saturate(1827%) hue-rotate(122deg) brightness(89%) contrast(101%);
}
@media screen and (max-width: 1024px) {
  header.c-change #header-logo-container .logo-image {
    -webkit-filter: none;
            filter: none;
  }
}
header.c-change nav a {
  color: #333333; /* c-changeクラスが付与されたらテキストを黒に */
}
header.c-change nav a .en {
  color: #333333; /* c-changeクラスが付与されたらテキストを黒に */
}
@media screen and (max-width: 1024px) {
  header.c-change nav a {
    color: #FFFFFF;
  }
  header.c-change nav a .en {
    color: #FFFFFF; /* c-changeクラスが付与されたらテキストを黒に */
  }
}

header nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 43px;
}
header nav a {
  color: #FFFFFF;
  padding: 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  position: relative;
}
header nav a .en {
  font-size: 13px;
  font-family: "Arial", sans-serif;
  color: #FFFFFF;
}
@media screen and (max-width: 1280px) and (min-width: 1024px) {
  header nav a {
    padding: 0 1.25em;
    font-size: 14px;
  }
  header nav a .en {
    font-size: 12px;
  }
}
header nav a:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #FFFFFF;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
header nav a:last-child:after {
  display: none;
}
header nav a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #007457;
}
header nav a:hover .en {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #007457;
}

header nav.active {
  opacity: 1;
}

header .contact-btn {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #007457;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  right: 0;
  height: 128px;
  width: 128px;
}
@media screen and (max-width: 1024px) {
  header .contact-btn {
    position: relative;
  }
}
header .contact-btn img {
  margin-bottom: 8px;
}

header .contact-btn.active {
  opacity: 1;
}

/* ヘッダー内のロゴスタイル */
#header-logo-container {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

/* ローディング中のロゴスタイル */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  opacity: 1;
}

#loading-logo-container {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-transition: all 1.4s ease-in-out;
  transition: all 1.4s ease-in-out;
}

#loading-logo-container .logo-image {
  width: 870px !important;
  height: 140px !important;
}
@media screen and (max-width: 1024px) {
  #loading-logo-container .logo-image {
    width: 198px !important;
    height: 31px !important;
  }
}

#loading-overlay.fade-out {
  opacity: 0;
}

/* 最終状態のCSS */
#loading-logo-container.move-to-header {
  top: 50px;
  left: 80px;
  -webkit-transform: scale(0.2275);
          transform: scale(0.2275); /* 198px/870px ≈ 0.2275, 31px/140px ≈ 0.2214。ほぼ同じなのでscaleを使用 */
  -webkit-transform-origin: top left;
          transform-origin: top left; /* 縮小の支点を左上に設定 */
}
@media screen and (max-width: 1024px) {
  #loading-logo-container.move-to-header {
    top: 16px !important;
    left: 16px !important;
    -webkit-transform: scale(1);
            transform: scale(1); /* 198px/870px ≈ 0.2275, 31px/140px ≈ 0.2214。ほぼ同じなのでscaleを使用 */
    height: 31px;
  }
}

#loading-logo-container.hide-logo {
  opacity: 0;
}

.main-content {
  min-height: 100vh;
  position: relative;
}

.main-content-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-text-container {
  margin-top: 5%;
  margin-left: 10%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2; /* テキストを画像の上に配置 */
}
@media screen and (max-width: 1024px) {
  .main-text-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    margin-left: 0;
  }
}

.main-text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  color: white;
}

.main-text-content h1 {
  font-family: "Arial", sans-serif;
  line-height: 1;
  font-size: 146px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .main-text-content h1 {
    font-size: 48px;
  }
}

.main-text-content p {
  font-size: 32px;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .main-text-content p {
    font-size: 16px;
  }
}

.scroll-content {
  z-index: 2;
  position: absolute;
  bottom: 20px;
  right: 120px;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .scroll-content {
    right: 30px;
  }
}
.scroll-content .scroll-down {
  position: relative;
  width: 24px;
  height: 300px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .scroll-content .scroll-down {
    height: 240px;
  }
}
.scroll-content .scroll-down .scroll-text {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Arial", sans-serif;
  white-space: nowrap;
}
.scroll-content .scroll-down .arrow {
  position: absolute;
  top: 75%;
  left: 50%;
  width: 20px;
  height: 120px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: scroll 3s infinite;
          animation: scroll 3s infinite;
}
@media screen and (max-width: 1024px) {
  .scroll-content .scroll-down .arrow {
    height: 80px;
  }
}
.scroll-content .scroll-down .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.scroll-content .scroll-down .arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateY(10px);
            transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateY(10px);
            transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

.scroll-content.active {
  opacity: 1;
}

/* 背景画像のスライドショー用スタイル */
.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.bg-slide.active {
  opacity: 1;
}

.bg-slide.first {
  opacity: 1 !important;
}

.main-content-inner {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main-content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main-content-inner::after {
  height: 268px;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(26, 26, 26, 0.8)));
  background-image: linear-gradient(0deg, transparent, rgba(26, 26, 26, 0.8));
  z-index: 1;
}

#bg-top {
  background-image: url(../images/bg.svg);
  background-size: cover;
  padding-top: 105px;
}
@media screen and (max-width: 1024px) {
  #bg-top {
    padding-top: 60px;
  }
}

#news .content-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  #news .content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#news .content-container .title {
  white-space: nowrap;
  font-size: 45px;
  font-weight: bold;
  margin-top: 85px;
  margin-bottom: 158px;
}
@media screen and (max-width: 1440px) {
  #news .content-container .title {
    margin-top: 65px;
  }
}
@media screen and (max-width: 1024px) {
  #news .content-container .title {
    font-size: 28px;
    margin-top: 25px;
    margin-bottom: 0;
  }
}
#news .content-container .news {
  margin-top: 85px;
  margin-left: 125px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #news .content-container .news {
    margin-left: 0;
    margin-top: 25px;
  }
}
#news .content-container .news ul {
  width: 100%;
}
@media screen and (max-width: 1280px) and (min-width: 1024px) {
  #news .content-container .news ul {
    padding-right: 16px;
  }
}
#news .content-container .news ul li {
  padding: 32px 0;
}
#news .content-container .news ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
}
@media screen and (max-width: 1024px) {
  #news .content-container .news ul li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#news .content-container .news ul li a .data {
  width: 120px;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  #news .content-container .news ul li a .data {
    width: 100%;
  }
}
#news .content-container .news ul li a .tags {
  width: 90px;
  margin: 0 24px;
}
@media screen and (max-width: 1024px) {
  #news .content-container .news ul li a .tags {
    width: 100%;
    margin: 5px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#news .content-container .news ul li a .tags .label {
  width: 100%;
  background: #333333;
  color: #FFFFFF;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  height: 26px;
}
@media screen and (max-width: 1024px) {
  #news .content-container .news ul li a .tags .label {
    width: 90px;
    margin-right: 18px;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1025px) {
  #news .content-container .news ul li a .tags .label{
    margin-bottom: 5px;
  }
  #news .content-container .news ul li a .tags .label:last-of-type{
    margin-bottom: 0;
  }
}
#news .content-container .news ul li a .read {
  width: calc(100% - 120px - 139px);
  font-size: 20px;
  color: #007457;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  #news .content-container .news ul li a .read {
    width: 100%;
  }
}
#news .content-container .news ul li a:hover .read {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#news .content-container .news ul li a .read02 {
  width: calc(100% - 120px);
}
@media screen and (max-width: 1024px) {
  #news .content-container .news ul li a .read02 {
    width: 100%;
  }
}
#news .content-container .news ul li + li {
  border-top: 1px solid #808080;
}

#ourteam .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#ourteam .content-container .read-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 96px;
}
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  #ourteam .content-container .read-container {
    margin-right: 48px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .read-container {
    margin-right: 0;
  }
}
#ourteam .content-container .read-container .title {
  font-size: 45px;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .read-container .title {
    font-size: 28px;
  }
}
#ourteam .content-container .read-container p {
  font-size: 20px;
  white-space: nowrap;
}
#ourteam .content-container .link-container {
  width: 100%;
}
#ourteam .content-container .link-container .boxs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1280px) and (min-width: 1025px) {
  #ourteam .content-container .link-container .boxs {
    padding-right: 16px;
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .link-container .boxs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16px;
  }
}
#ourteam .content-container .link-container .boxs .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .link-container .boxs .box {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .link-container .boxs .box .img {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#ourteam .content-container .link-container .boxs .box .img img {
  width: 100%;
}
#ourteam .content-container .link-container .boxs .box .read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .link-container .boxs .box .read {
    margin-top: 16px;
  }
}
#ourteam .content-container .link-container .boxs .box .read .title {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .link-container .boxs .box .read .title {
    font-size: 16px;
  }
}
#ourteam .content-container .link-container .boxs .box .read .title .en {
  font-size: 13px;
  color: #808080;
}
@media screen and (max-width: 1024px) {
  #ourteam .content-container .link-container .boxs .box + .box {
    margin-top: 24px;
  }
}

#service .section-title-back {
  z-index: 1;
}
@media screen and (min-width: 1480px) {
  #service .section-title-back .break {
    display: none;
  }
}
#service .content-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
#service .content-container .title {
  font-size: 45px;
  font-weight: bold;
  margin-top: 85px;
  margin-bottom: 158px;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  #service .content-container .title {
    margin-top: 195px;
  }
}
@media screen and (max-width: 1024px) {
  #service .content-container .title {
    font-size: 28px;
    margin-top: 90px;
    margin-bottom: 50px;
    margin-right: auto;
  }
}
#service .content-container .swiper {
  max-width: 100%;
  width: 100%;
  padding: 4px;
}
#service .content-container .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1280px) and (min-width: 1024px) {
  #service .content-container .cards {
    padding: 0 16px;
    width: calc(100% - 32px);
  }
}
#service .content-container .cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 440px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(102, 102, 102, 0.15);
          box-shadow: 0px 4px 4px 0px rgba(102, 102, 102, 0.15);
}
#service .content-container .cards .card .img {
  height: 240px;
}
#service .content-container .cards .card .img img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  #service .content-container .cards .card {
    width: 32%;
  }
}
@media screen and (max-width: 1024px) {
  #service .content-container .cards .card {
    width: 90%;
  }
}
#service .content-container .cards .card .service-img img {
  width: 100%;
}
#service .content-container .cards .card .read {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#service .content-container .cards .card .read .logo-img {
  margin-bottom: 30px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#service .content-container .cards .card .read .logo-img img {
  height: 100%;
}
#service .content-container .cards .card .read p {
  font-size: 18px;
}
#service .content-container .cards .card .read .btn {
  margin-top: 16px;
  margin-right: 0;
  margin-left: auto;
}
#service .content-container .link {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  #service .content-container .link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#service .content-container .link a {
  font-size: 18px;
  font-weight: bold;
  color: #007457;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  border-bottom: 2px solid #007457;
  padding-bottom: 12px;
}
#service .content-container .link a::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  width: 15px;
  height: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url(../images/icon/arrow-g.svg);
}
#service .content-container .swiper-pagination {
  margin-top: 40px;
  position: unset;
  display: none;
}
@media screen and (max-width: 1024px) {
  #service .content-container .swiper-pagination {
    display: block;
  }
}
#service .content-container .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
}
#service .content-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #007457;
}

#join {
  z-index: 0;
}
#join .content-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#join .content-container .title {
  font-size: 45px;
  font-weight: bold;
  margin-top: 85px;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  #join .content-container .title {
    margin-top: 65px;
  }
}
@media screen and (max-width: 1024px) {
  #join .content-container .title {
    font-size: 28px;
    margin-top: 90px;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1280px) and (min-width: 1024px) {
  #join .content-container .about {
    padding: 0 16px;
  }
}
@media screen and (max-width: 1024px) {
  #join .content-container .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#join .content-container .read-container {
  position: relative;
  margin-top: 35px;
  max-width: 590px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #join .content-container .read-container {
    width: 100%;
  }
}
#join .content-container .read-container .read p {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.25;
}
#join .content-container .link {
  margin-top: 136px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  #join .content-container .link {
    margin-top: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#join .content-container .link a {
  font-size: 18px;
  font-weight: bold;
  color: #007457;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  border-bottom: 2px solid #007457;
  padding-bottom: 12px;
}
#join .content-container .link a::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  width: 15px;
  height: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url(../images/icon/arrow-g.svg);
}
#join .img-container {
  position: absolute;
  top: 60px;
  right: -34px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 1520px) {
  #join .img-container {
    right: 16px;
    top: 160px;
  }
}
@media screen and (max-width: 1024px) {
  #join .img-container {
    position: unset;
  }
}
#join .img-container img {
  max-width: 825px;
  width: 100%;
  height: 562px;
}
@media screen and (max-width: 1440px) {
  #join .img-container img {
    width: 80%;
    height: auto;
  }
}
@media screen and (max-width: 1280px) and (min-width: 1141px) {
  #join .img-container img {
    width: 60%;
  }
}
@media screen and (max-width: 1140px) and (min-width: 1024px) {
  #join .img-container img {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  #join .img-container img {
    width: 100%;
  }
}

#contact {
  z-index: 0;
}
#contact .content-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact .content-container .title {
  font-size: 45px;
  font-weight: bold;
  margin-top: 85px;
  margin-bottom: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  #contact .content-container .title {
    line-height: 1;
  }
}
@media screen and (max-width: 1024px) {
  #contact .content-container .title {
    font-size: 28px;
    margin-top: 35px;
    margin-right: auto;
  }
}
#contact .content-container .btn-container {
  margin: 0 auto;
  margin-top: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}