@charset "UTF-8";
/* 
Google Fonts(フォント読み込み)
=================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.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);
}

body.sub {
  background-image: url(../images/bg.svg);
  background-size: 100% auto;
}

#entry {
  background-image: url(../images/entry_pc.png);
  background-size: cover;
  height: 685px;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  #entry {
    background-image: url(../images/entry_sp.png);
    height: auto;
    padding: 80px 0;
  }
}
#entry .content-container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#entry .content-container .read {
  font-size: 44px;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #entry .content-container .read {
    font-size: 28px;
  }
}
#entry .content-container .btn-container {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#entry .bg-txt {
  width: 100%;
  position: absolute;
  bottom: -5%;
  left: 0;
}

.btn-container {
  margin: 0 auto;
  width: 100%;
}
.btn-container .btn {
  background: #007457;
  color: #FFFFFF;
  width: 540px;
  max-width: 540px;
  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: 28px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .btn-container .btn {
    width: 100%;
    font-size: 16px;
  }
}
.btn-container .btn::after {
  background: #FFFFFF;
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  right: 26px;
  width: 26px;
  height: 26px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url(../images/icon/arrow-g.svg);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .btn-container .btn::after {
    right: 16px;
  }
}
.btn-container .btn:hover {
  background: #005C45;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-container .btn:hover::after {
  right: 22px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.title-diamond {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 45px;
  font-weight: bold;
}
.title-diamond img {
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .title-diamond {
    font-size: 28px;
  }
}