@charset "UTF-8";
/*コンテナ最大幅*/
/*コンテナ基本幅*/
/* firstview高さ */
/*ヘッダー高さ*/
:root {
  --transition-duration: 0.3s;
  --transition-duration-slow: 1s;
  --transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: ease-in-out;
  --transition-delay: 0.5s;
  --color-white: #fff;
  --color-offwhite: #F3F3F3;
  --color-offwhite2: #F5F5F5;
  --color-skin: #F9E9D6;
  --color-black: #000;
  --color-brown-black: #140C03;
  --color-brown-black2: #150D04;
  --color-brown-black3: #160E05;
  --color-pale-black: #1E2022;
  --color-thin-black: #333;
  --color-thin-grey: #bbbcbc;
  --color-thinner-grey: #d0d0ce;
  --color-thinner2-grey: #ccc;
  --color-thinnest-grey: #ddd;
  --color-grey: #a7a8aa;
  --color-thin-dark-grey: #999;
  --color-another-grey: #4A4A4A;
  --color-dark-grey: #63666a;
  --color-darker-grey: #53565a;
  --color-black-grey: #333333;
  --color-orange: #ed8b00;
  --color-main-green: #86bc25;
  --color-thin-green: #86bc25;
  --color-green: #26890d;
  --color-dark-green: #009a44;
  --color-darkest-green: #046C38;
  --color-peacock-green: #007680;
  --color-most-thin-blue: #DDEFE8;
  --color-blue: #007cb0;
  --color-thin-blue: #009fe3;
  --color-dark-blue: #0076A8;
  --color-red: #D90B0B;
  --color-thin-error: #ffe0e2;
  --color-dark-error: #804246;
  /* font */
  --var-font-sans-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", "Helvetica Neue", arial, meiryo, sans-serif;
  --var-font-english: "Open Sans", sans-serif;
  /* 文字太さ */
  --font-thickness-thin: 100;
  --font-thickness-light: 200;
  --font-thickness-regular: 400;
  --font-thickness-medium: 500;
  --font-thickness-bold: bold;
  --font-thickness-black: 900;
}

/* フォント */
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/opensans/OpenSans-VariableFont_wdth,wght.ttf");
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Light.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/notosansjp/NotoSansJP-Regular.ttf");
  font-weight: 300;
}
/*フェードイン*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 余白 */
.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-11 {
  margin-top: 11px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-13 {
  margin-top: 13px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-17 {
  margin-top: 17px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-19 {
  margin-top: 19px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-21 {
  margin-top: 21px;
}

.mt-22 {
  margin-top: 22px;
}

.mt-23 {
  margin-top: 23px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-26 {
  margin-top: 26px;
}

.mt-27 {
  margin-top: 27px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-29 {
  margin-top: 29px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-31 {
  margin-top: 31px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-33 {
  margin-top: 33px;
}

.mt-34 {
  margin-top: 34px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-37 {
  margin-top: 37px;
}

.mt-38 {
  margin-top: 38px;
}

.mt-39 {
  margin-top: 39px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-41 {
  margin-top: 41px;
}

.mt-42 {
  margin-top: 42px;
}

.mt-43 {
  margin-top: 43px;
}

.mt-44 {
  margin-top: 44px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-46 {
  margin-top: 46px;
}

.mt-47 {
  margin-top: 47px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-49 {
  margin-top: 49px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-51 {
  margin-top: 51px;
}

.mt-52 {
  margin-top: 52px;
}

.mt-53 {
  margin-top: 53px;
}

.mt-54 {
  margin-top: 54px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-56 {
  margin-top: 56px;
}

.mt-57 {
  margin-top: 57px;
}

.mt-58 {
  margin-top: 58px;
}

.mt-59 {
  margin-top: 59px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-61 {
  margin-top: 61px;
}

.mt-62 {
  margin-top: 62px;
}

.mt-63 {
  margin-top: 63px;
}

.mt-64 {
  margin-top: 64px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-66 {
  margin-top: 66px;
}

.mt-67 {
  margin-top: 67px;
}

.mt-68 {
  margin-top: 68px;
}

.mt-69 {
  margin-top: 69px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-71 {
  margin-top: 71px;
}

.mt-72 {
  margin-top: 72px;
}

.mt-73 {
  margin-top: 73px;
}

.mt-74 {
  margin-top: 74px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-76 {
  margin-top: 76px;
}

.mt-77 {
  margin-top: 77px;
}

.mt-78 {
  margin-top: 78px;
}

.mt-79 {
  margin-top: 79px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-81 {
  margin-top: 81px;
}

.mt-82 {
  margin-top: 82px;
}

.mt-83 {
  margin-top: 83px;
}

.mt-84 {
  margin-top: 84px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-86 {
  margin-top: 86px;
}

.mt-87 {
  margin-top: 87px;
}

.mt-88 {
  margin-top: 88px;
}

.mt-89 {
  margin-top: 89px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-91 {
  margin-top: 91px;
}

.mt-92 {
  margin-top: 92px;
}

.mt-93 {
  margin-top: 93px;
}

.mt-94 {
  margin-top: 94px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-96 {
  margin-top: 96px;
}

.mt-97 {
  margin-top: 97px;
}

.mt-98 {
  margin-top: 98px;
}

.mt-99 {
  margin-top: 99px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-1 {
  margin-left: 1px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-11 {
  margin-left: 11px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-13 {
  margin-left: 13px;
}

.ml-14 {
  margin-left: 14px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-17 {
  margin-left: 17px;
}

.ml-18 {
  margin-left: 18px;
}

.ml-19 {
  margin-left: 19px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-21 {
  margin-left: 21px;
}

.ml-22 {
  margin-left: 22px;
}

.ml-23 {
  margin-left: 23px;
}

.ml-24 {
  margin-left: 24px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-26 {
  margin-left: 26px;
}

.ml-27 {
  margin-left: 27px;
}

.ml-28 {
  margin-left: 28px;
}

.ml-29 {
  margin-left: 29px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-31 {
  margin-left: 31px;
}

.ml-32 {
  margin-left: 32px;
}

.ml-33 {
  margin-left: 33px;
}

.ml-34 {
  margin-left: 34px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-36 {
  margin-left: 36px;
}

.ml-37 {
  margin-left: 37px;
}

.ml-38 {
  margin-left: 38px;
}

.ml-39 {
  margin-left: 39px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-41 {
  margin-left: 41px;
}

.ml-42 {
  margin-left: 42px;
}

.ml-43 {
  margin-left: 43px;
}

.ml-44 {
  margin-left: 44px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-46 {
  margin-left: 46px;
}

.ml-47 {
  margin-left: 47px;
}

.ml-48 {
  margin-left: 48px;
}

.ml-49 {
  margin-left: 49px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-51 {
  margin-left: 51px;
}

.ml-52 {
  margin-left: 52px;
}

.ml-53 {
  margin-left: 53px;
}

.ml-54 {
  margin-left: 54px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-56 {
  margin-left: 56px;
}

.ml-57 {
  margin-left: 57px;
}

.ml-58 {
  margin-left: 58px;
}

.ml-59 {
  margin-left: 59px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-61 {
  margin-left: 61px;
}

.ml-62 {
  margin-left: 62px;
}

.ml-63 {
  margin-left: 63px;
}

.ml-64 {
  margin-left: 64px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-66 {
  margin-left: 66px;
}

.ml-67 {
  margin-left: 67px;
}

.ml-68 {
  margin-left: 68px;
}

.ml-69 {
  margin-left: 69px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-71 {
  margin-left: 71px;
}

.ml-72 {
  margin-left: 72px;
}

.ml-73 {
  margin-left: 73px;
}

.ml-74 {
  margin-left: 74px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-76 {
  margin-left: 76px;
}

.ml-77 {
  margin-left: 77px;
}

.ml-78 {
  margin-left: 78px;
}

.ml-79 {
  margin-left: 79px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-81 {
  margin-left: 81px;
}

.ml-82 {
  margin-left: 82px;
}

.ml-83 {
  margin-left: 83px;
}

.ml-84 {
  margin-left: 84px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-86 {
  margin-left: 86px;
}

.ml-87 {
  margin-left: 87px;
}

.ml-88 {
  margin-left: 88px;
}

.ml-89 {
  margin-left: 89px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-91 {
  margin-left: 91px;
}

.ml-92 {
  margin-left: 92px;
}

.ml-93 {
  margin-left: 93px;
}

.ml-94 {
  margin-left: 94px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-96 {
  margin-left: 96px;
}

.ml-97 {
  margin-left: 97px;
}

.ml-98 {
  margin-left: 98px;
}

.ml-99 {
  margin-left: 99px;
}

.ml-100 {
  margin-left: 100px;
}

.text-red {
  color: red;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.flexible {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexible.center {
  justify-content: center;
}
.flexible.end {
  justify-content: end;
}

.child-span-block span {
  display: block;
}
@media screen and (max-width: 767px) {
  .child-span-block._sp-inline span {
    display: inline;
  }
}

.text-center {
  text-align: center;
}

.weight-reg {
  font-weight: var(--font-thickness-regular);
}

.weight-med {
  font-weight: var(--font-thickness-medium);
}

.weight-bold {
  font-weight: var(--font-thickness-bold);
}

.width-auto {
  width: auto;
}

.width-40-important {
  width: 40% !important;
}

.cursor-pointer {
  cursor: pointer;
}

.disp-none {
  display: none;
}

.disp-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

/*リリース時期調整で一時的に非表示にする場合*/
.timing-adjustment {
  display: none !important;
}

/*リリース時期調整でComingSoon表示にする場合*/
.timing-adjustment-coming-soon {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.timing-adjustment-coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background: rgba(0, 0, 0, 0.7);
}
.timing-adjustment-coming-soon::after {
  content: "ComingSoon";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #DDDDDD;
  font-size: 20px;
  font-weight: var(--font-thickness-medium);
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .timing-adjustment-coming-soon::after {
    font-size: 16px;
  }
}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}
.loading__logo {
  position: relative;
  top: -40px;
}
.loading__bar {
  width: 220px;
  height: 2px;
  margin: 0;
  background: #009A44;
  position: absolute;
  animation: loadingLine 1.2s ease-in-out;
  animation-iteration-count: infinite;
  z-index: 2;
}
.loading hr {
  width: 100%;
  height: 2px;
  margin: 0;
  background: #ddd;
  position: absolute;
  border: none;
}
.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loader-1 {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  border-radius: 50%;
  border: dashed 1px;
  border-color: rgba(0, 0, 0, 0.062745098) #000000 #000000;
  position: relative;
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: none;
}
.loader-1.active {
  display: inline-block;
}

@keyframes loadingLine {
  0% {
    left: -40%;
  }
  50% {
    left: 20%;
    width: 80%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.swiper-container {
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
  overflow: initial;
  display: flex;
  align-items: center;
  overflow: visible;
}
.swiper-container._hidden {
  overflow: hidden;
}
.swiper-container .slider-left {
  width: 100%;
  margin: 0 auto;
  padding-left: 5.2%;
  padding-right: 5.2%;
}
@media print, screen and (min-width: 1330px) {
  .swiper-container .slider-left {
    max-width: 1242px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .swiper-container .slider-left {
    padding: 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .swiper-container .slider-left {
    padding: 0 60px;
  }
}
@media screen and (max-width: 400px) {
  .swiper-container .slider-left {
    padding: 0 20px;
  }
}
.swiper-container .slider-right {
  padding: 0 130px;
  position: relative;
  left: -27%;
}
@media screen and (max-width: 800px) {
  .swiper-container .slider-right {
    padding: 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .swiper-container .slider-right {
    padding: 0 60px;
  }
}
@media screen and (max-width: 400px) {
  .swiper-container .slider-right {
    padding: 0 20px;
  }
}

.arrow-container .swiper-button-prev,
.arrow-container .swiper-button-next {
  height: 60px;
  width: 60px;
}
@media screen and (max-width: 800px) {
  .arrow-container .swiper-button-prev,
  .arrow-container .swiper-button-next {
    height: 50px;
    width: 50px;
  }
}
.arrow-container .arrow-wrap {
  width: 100%;
  margin: 0 auto;
  padding-left: 5.2%;
  padding-right: 5.2%;
  padding-left: 5.2%;
  padding-right: 5.2%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media print, screen and (min-width: 1650px) {
  .arrow-container .arrow-wrap {
    max-width: 1560px;
    padding-left: 0;
    padding-right: 0;
  }
}
.arrow-container .arrow-wrap._narrow {
  max-width: none;
  padding: 0 8.3870967742%;
}
@media screen and (max-width: 800px) {
  .arrow-container .arrow-wrap {
    max-width: inherit;
  }
}
.arrow-container .arrow-wrap .swiper-button-prev::after {
  background-image: url("/img/common/prev_icon_g.svg");
}
.arrow-container .arrow-wrap .swiper-button-next::after {
  background-image: url("/img/common/next_icon_g.svg");
}
.arrow-container .arrow-wrap .swiper-button-prev::after,
.arrow-container .arrow-wrap .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 60px;
  margin: auto;
  width: 60px;
}
@media screen and (max-width: 800px) {
  .arrow-container .arrow-wrap .swiper-button-prev::after,
  .arrow-container .arrow-wrap .swiper-button-next::after {
    height: 50px;
    width: 50px;
  }
}
.arrow-container .arrow-wrap .swiper-button-next {
  margin-right: 50px;
}
@media screen and (max-width: 800px) {
  .arrow-container .arrow-wrap .swiper-button-next {
    margin-right: 40px;
  }
}
@media screen and (max-width: 600px) {
  .arrow-container .arrow-wrap .swiper-button-next {
    margin-right: 3px;
  }
}
@media screen and (max-width: 800px) {
  .arrow-container .arrow-wrap .swiper-button-prev {
    margin-left: 40px;
  }
}
@media screen and (max-width: 600px) {
  .arrow-container .arrow-wrap .swiper-button-prev {
    margin-left: 3px;
  }
}

.card-swiper {
  margin-top: 1.9375rem;
  overflow: visible;
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .card-swiper {
    margin-top: 1.3125rem;
  }
}
.card-swiper .swiper-slide {
  position: relative;
}

.card-anker {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  width: 360px;
  height: 485px;
  position: relative;
  transition: 0.3s;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .card-anker {
    width: 260px;
    height: 380px;
  }
}
.card-anker.style-1 {
  width: 425px;
  height: 466px;
  box-shadow: inherit;
  border-radius: inherit;
}
.card-anker.style-1.desc-none {
  height: 410px;
}
.card-anker.style-1:hover {
  box-shadow: inherit;
}
.card-anker.style-1 .show-img {
  border-radius: 10px;
}
.card-anker.style-1 .card-wrapper {
  padding: 33.5px 0 0;
}
.card-anker.style-1 .card-date span.date {
  font-size: 14px;
  color: var(--color-darkest-green);
  color: #046C38;
}
.card-anker.style-1 .card-date span.tag {
  width: 30px;
  display: inline-block;
  text-align: center;
  font-size: 10px;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 2px;
  line-height: 12px;
}
.card-anker.style-2 {
  width: 427px;
  height: auto;
  box-shadow: inherit;
  border-radius: inherit;
  background: inherit;
}
.card-anker.style-2 .transparentlink {
  text-decoration: none;
}
.card-anker.style-2:hover {
  box-shadow: inherit;
}
.card-anker.style-2 .show-img {
  border-radius: 15px;
  height: 16.4375rem;
}
.card-anker.style-2 .card-wrapper {
  padding: 33.5px 0 0;
}
.card-anker.style-2 .card-date {
  min-height: inherit;
}
.card-anker.style-2 .card-date span.date {
  font-size: 0.875rem;
  color: var(--color-darkest-green);
}
.card-anker.style-2 .card-title {
  margin-top: 24px;
  font-size: 1.25rem;
  font-weight: var(--font-thickness-medium);
}
.card-anker:hover {
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1607843137);
}
.card-anker .show-img {
  width: 100%;
  height: 15.9375rem;
  overflow: hidden;
  border-bottom: 1px #eee solid;
}
@media screen and (max-width: 800px) {
  .card-anker .show-img {
    height: 10.8125rem;
  }
}
.card-anker .show-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-anker .card-wrapper {
  padding: 10px 11px;
}
@media print, screen and (min-width: 980px) {
  .card-anker .card-wrapper {
    padding: 20px 13px;
  }
}
.card-anker .card-wrapper.padding-pattern-1 {
  padding: 11px 12px 7px;
}
@media print, screen and (min-width: 980px) {
  .card-anker .card-wrapper.padding-pattern-1 {
    padding: 10px 13px 15px;
  }
}
.card-anker .card-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  overflow: hidden;
  line-height: 1.375rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.card-anker .card-title.max-line-2 {
  -webkit-line-clamp: 2;
  min-height: 44px;
}
.card-anker .card-title.max-line-4 {
  -webkit-line-clamp: 4;
  min-height: 44px;
}
@media screen and (max-width: 800px) {
  .card-anker .card-title {
    font-size: 16px;
    min-height: 53px;
  }
}
.card-anker .card-text {
  font-size: 14px;
  color: #555555;
  height: 84px;
  margin-top: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.card-anker .card-topics {
  width: 100%;
  height: auto;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
@media print, screen and (min-width: 980px) {
  .card-anker .card-topics {
    margin-top: 1.25rem;
  }
}
.card-anker .card-topics .topics_pill {
  display: inline-block;
  border-radius: 0.8125rem;
  border: 0.0625rem solid #a7a7a7;
  color: #6c6c6c;
  padding: 0.125rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .card-anker .card-topics .topics_pill {
    font-size: 0.75rem;
    padding: 0 0.9375rem;
  }
}
.card-anker .card-date {
  color: var(--color-dark-green);
  min-height: 44px;
}
@media print, screen and (min-width: 768px) {
  .card-anker .card-date {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
@media screen and (max-width: 800px) {
  .card-anker .card-date {
    font-size: 0.75rem;
    line-height: 1.375rem;
    max-height: 1.375rem;
    min-height: inherit;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}
.card-anker .card-date span {
  color: var(--color-black);
}
.card-anker .favbutton {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 0.1875rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .card-anker .favbutton {
    top: 0.9375rem;
    right: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .card-anker .favbutton {
    top: 0.75rem;
    right: 0.75rem;
  }
}
.card-anker .favbutton._add::after {
  content: "お気に入り一覧に追加";
}
.card-anker .favbutton._remove::after {
  content: "お気に入り一覧から削除";
}
.card-anker .card-fixed-element-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 57px;
  border-top: 1px solid var(--color-offwhite);
  padding: 0.35rem 0.8125rem 0.9rem;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .card-anker .card-fixed-element-container {
    padding: 0.3125rem 0.78125rem 0.8rem;
  }
}
.card-anker .card-fixed-element-container dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.card-anker .card-fixed-element-container dl dt {
  line-height: 1.5rem;
}
.card-anker .card-fixed-element-container dl dd {
  flex: 1;
  line-height: 1.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .card-anker .card-fixed-element-container dl dd {
    line-height: 1.5rem;
  }
}
.card-anker .card-fixed-element-container dl dd a {
  color: var(--color-blue);
  text-decoration: underline;
  font-weight: bold;
}

.top_event_schedule.pc {
  display: flex;
  height: 360px;
}
.top_event_schedule.pc .top_event_schedule_left {
  min-width: 269px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-pale-black);
  color: var(--color-white);
  padding: 24px 20px 39px;
  z-index: 2;
}
.top_event_schedule.pc .top_event_schedule_right {
  flex: 1;
  background: var(--color-offwhite2);
  height: 100%;
  padding: 22px 42px 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.top_event_schedule.pc .top_event_schedule_right.swiper-container.custom-swiper {
  overflow: hidden;
  margin-bottom: 0;
}
.top_event_schedule.pc .top_event_schedule_right.swiper-container.custom-swiper .swiper-wrapper {
  position: relative;
  box-sizing: border-box;
}
.top_event_schedule.pc .top_event_schedule_right.swiper-container.custom-swiper .swiper-wrapper .swiper-slide + .swiper-slide {
  margin-left: 40px;
}
.top_event_schedule.pc .top_event_schedule_right.swiper-container.custom-swiper .arrow-wrap .swiper-button-prev {
  margin-left: 50px;
  transition: opacity 0.3s ease;
}
.top_event_schedule.pc .top_event_schedule_right.swiper-container.custom-swiper .arrow-wrap .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.top_event_schedule.pc .top_event_schedule_right.swiper-container.custom-swiper .arrow-wrap .swiper-button-next {
  margin-right: 50px;
  transition: opacity 0.3s ease;
}
.top_event_schedule.pc .top_event_schedule_right.swiper-container.custom-swiper .arrow-wrap .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.top_event_schedule.pc .top_event_schedule_current_month {
  font-size: 51px;
  line-height: 1;
  font-weight: var(--font-thickness-bold);
}
.top_event_schedule.pc .top_event_schedule_current_month span {
  display: block;
}
.top_event_schedule.pc .top_event_schedule_note {
  margin-top: 20px;
}
.top_event_schedule.pc .top_event_schedule_link {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 11px 21px;
  margin-top: auto;
  border-radius: 8px;
  border: 2px solid var(--color-white);
  font-size: 18px;
  font-weight: var(--font-thickness-bold);
  line-height: 1;
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  transition: color var(--transition-duration) var(--ease-out), background-color var(--transition-duration) var(--ease-out);
}
@media (any-hover: hover) {
  .top_event_schedule.pc .top_event_schedule_link:hover {
    color: var(--color-white);
    text-decoration: none;
    background-color: #046C38;
    border: solid 2px #046C38;
  }
}
.top_event_schedule.pc .top_event_schedule_link span {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.top_event_schedule.pc .top_event_schedule_day {
  width: 185px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top_event_schedule.pc .top_event_schedule_day .day_of_week {
  font-weight: var(--font-thickness-bold);
  line-height: 1.4;
  padding-bottom: 14px;
  border-bottom: 2px solid #707070;
}
.top_event_schedule.pc .top_event_schedule_day_detail {
  padding: 13px 14px 18px 15px;
}
.top_event_schedule.pc .top_event_schedule_day_detail_number {
  font-size: 34px;
  line-height: 1.44;
  font-weight: var(--font-thickness-medium);
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  height: 178px;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable::-webkit-scrollbar {
  width: 6px;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable::-webkit-scrollbar-thumb {
  background: #707070;
  border-radius: 3px;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable::-webkit-scrollbar-track {
  background: transparent;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable + .timetable {
  margin-top: 16px;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable a {
  display: inline-block;
  text-decoration: underline;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable_title {
  font-weight: var(--font-thickness-bold);
  line-height: 18px;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable_desc {
  word-break: break-all;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable_desc_time {
  display: inline-block;
  margin-right: 15px;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable_desc_place {
  display: inline-block;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable_desc_place_tag {
  display: inline-block;
  font-size: 0.6875rem;
  border: 1px solid var(--color-pale-black);
  border-radius: 4px;
  text-align: center;
  min-width: 57px;
}
.top_event_schedule.pc .top_event_schedule_day_detail_timetable .timetable_note {
  font-size: 0.6875rem;
}
.top_event_schedule.pc .top_event_schedule_day.inactive {
  color: var(--color-dark-grey);
  background: #E1E1E0;
}
.top_event_schedule.pc .top_event_schedule_day.inactive .day_of_week {
  background: var(--color-offwhite2);
}
.top_event_schedule.pc .top_event_schedule_day.today {
  color: var(--color-green);
  background: #EBF4DC;
}
.top_event_schedule.pc .top_event_schedule_day.today .day_of_week {
  background: var(--color-offwhite2);
  border-color: #25890D;
}
.top_event_schedule.pc .top_event_schedule_day.today .timetable {
  color: var(--color-black);
}

.top_event_schedule.sp {
  position: relative;
}
.top_event_schedule.sp .top_event_schedule_head {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  background: var(--color-pale-black);
  color: var(--color-white);
  padding: 10px 16px;
}
.top_event_schedule.sp .top_event_schedule_sp-scroll {
  width: 105px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  cursor: pointer;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.top_event_schedule.sp .top_event_schedule_sp-scroll.disabled {
  opacity: 0;
}
.top_event_schedule.sp .top_event_schedule_contents {
  background: var(--color-offwhite2);
  height: 405px;
  padding: 19.7px 16px 19.7px 23px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.top_event_schedule.sp .top_event_schedule_contents::-webkit-scrollbar {
  width: 2px;
}
.top_event_schedule.sp .top_event_schedule_contents::-webkit-scrollbar-thumb {
  background: var(--color-dark-green);
  border-radius: 5px;
}
.top_event_schedule.sp .top_event_schedule_contents::-webkit-scrollbar-track {
  background: transparent;
}
.top_event_schedule.sp .top_event_schedule_current_month {
  font-size: 22px;
  line-height: 40px;
  font-weight: var(--font-thickness-bold);
}
.top_event_schedule.sp .top_event_schedule_note {
  font-size: 12px;
  margin-bottom: -12px;
}
.top_event_schedule.sp .top_event_schedule_link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 12px;
  margin-top: auto;
  border-radius: 6px;
  border: 1px solid var(--color-white);
  font-size: 14px;
  font-weight: var(--font-thickness-bold);
  line-height: 1;
  position: relative;
  text-decoration: none;
  color: var(--color-white);
  transition: color var(--transition-duration) var(--ease-out), background-color var(--transition-duration) var(--ease-out);
}
@media (any-hover: hover) {
  .top_event_schedule.sp .top_event_schedule_link:hover {
    color: var(--color-white);
    text-decoration: none;
    background-color: #046C38;
    border: solid 2px #046C38;
  }
}
.top_event_schedule.sp .top_event_schedule_link span {
  margin-right: 8px;
}
.top_event_schedule.sp .top_event_schedule_day {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  min-height: 82px;
}
.top_event_schedule.sp .top_event_schedule_day + .top_event_schedule_day {
  margin-top: 15px;
}
.top_event_schedule.sp .top_event_schedule_day_left {
  width: 55px;
  border-right: 2px solid #707070;
}
.top_event_schedule.sp .top_event_schedule_day_left .day_of_week {
  font-size: 16px;
  font-weight: var(--font-thickness-bold);
  line-height: 18px;
  margin-top: 15px;
}
.top_event_schedule.sp .top_event_schedule_day_right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
}
.top_event_schedule.sp .top_event_schedule_day_right_number {
  font-size: 30px;
  line-height: 30px;
  font-weight: var(--font-thickness-medium);
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
  font-size: 13px;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable + .timetable {
  margin-top: 16px;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable a {
  text-decoration: underline;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable_title {
  font-weight: var(--font-thickness-bold);
  line-height: 18px;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable_desc {
  word-break: break-all;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable_desc_time {
  display: inline-block;
  margin-right: 5px;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable_desc_place {
  display: inline-block;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable_desc_place_tag {
  display: inline-block;
  font-size: 0.6875rem;
  border: 1px solid var(--color-pale-black);
  border-radius: 4px;
  text-align: center;
  min-width: 57px;
}
.top_event_schedule.sp .top_event_schedule_day_right_timetable .timetable_note {
  font-size: 0.6875rem;
}
.top_event_schedule.sp .top_event_schedule_day.inactive .top_event_schedule_day_left {
  color: var(--color-dark-grey);
}
.top_event_schedule.sp .top_event_schedule_day.inactive .top_event_schedule_day_right {
  color: var(--color-dark-grey);
  background: #E1E1E0;
}
.top_event_schedule.sp .top_event_schedule_day.today .top_event_schedule_day_left {
  color: var(--color-green);
  border-color: #25890D;
}
.top_event_schedule.sp .top_event_schedule_day.today .top_event_schedule_day_right {
  color: var(--color-green);
  background: #EBF4DC;
}

a {
  text-decoration: none;
  color: inherit;
}
a.btn-link {
  min-width: 180px;
  border: 2px solid var(--color-pale-black);
  border-radius: 8px;
  padding: 11px;
  text-align: center;
}

section .section_title {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-weight: var(--font-thickness-bold);
  position: relative;
}
section .section_title_border {
  display: block;
  width: 150px;
  margin: 26px auto 0;
  height: 3px;
  background: var(--color-main-green);
  position: relative;
}
section .section_title_border::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--color-darkest-green);
}
section .section_title span {
  display: block;
}
section .section_title_main {
  font-size: 54px;
}
section .section_contents {
  margin-top: 97px;
}

.firstview {
  position: relative;
  height: 694px;
  max-height: 694px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.firstview .content-wrap {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.25%;
  padding-right: 1.25%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
}
.firstview .content-wrap .firstview_concept_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  line-height: 53px;
  font-weight: var(--font-thickness-regular);
  color: var(--color-white);
}
@media screen and (max-width: 1280px) {
  .firstview .content-wrap .firstview_concept_title {
    font-size: 30px;
  }
}
.firstview .content-wrap .firstview_company_name {
  font-family: "Open Sans", sans-serif;
  font-size: 136px;
  line-height: 158px;
  font-weight: var(--font-thickness-bold);
  color: var(--color-white);
  margin-bottom: -27px;
}
@media screen and (max-width: 1280px) {
  .firstview .content-wrap .firstview_company_name {
    font-size: 100px;
    margin-bottom: -39px;
  }
}
.firstview .scroll_down {
  width: auto;
  padding-right: 1.25%;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  display: inline-block;
}
.firstview .scroll_down svg {
  fill: transparent;
  stroke: var(--color-white);
  display: inline-block;
  margin-left: auto;
}
.firstview .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.firstview .video-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: 3px 3px;
  background-position: 0 0, 3px 3px;
}
.firstview .video-wrapper video {
  position: absolute;
  width: 100%;
  min-width: 1024px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.firstview-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
}
.firstview-text {
  color: #fff;
  line-height: 1.8em;
  font-weight: normal;
}

.top_3dmap {
  margin-top: 100px;
}
.top_3dmap a {
  display: block;
  max-width: 832px;
  margin: 0 auto;
  backface-visibility: hidden;
}

.top_topics {
  max-width: 1365px;
  margin: 107px auto 0;
  position: relative;
}
@media screen and (max-width: 1365px) {
  .top_topics {
    max-width: inherit;
    padding-left: 1.25%;
    padding-right: 1.25%;
  }
}
.top_topics_link {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1.5;
  transition: color var(--transition-duration) var(--ease-out), background-color var(--transition-duration) var(--ease-out);
}
@media (any-hover: hover) {
  .top_topics_link:hover {
    color: var(--color-white);
    text-decoration: none;
    background-color: #046C38;
    border: solid 2px #046C38;
  }
}

.top_space_wrap {
  padding-top: 97px;
  padding-bottom: 162px;
  margin: 100px auto 0;
  background: #E4E5D6;
  position: relative;
}
.top_space_wrap::before {
  content: "";
  background-image: url("/img/home/bg_texture_pattern_1.svg");
  background-size: cover;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.top_space {
  max-width: 1365px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 1365px) {
  .top_space {
    max-width: inherit;
    padding-left: 1.25%;
    padding-right: 1.25%;
  }
}
.top_space_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.top_space_contents_box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: calc((100% - 4px) / 3);
}
.top_space_contents_box_img {
  height: 645px;
  width: 100%;
  position: relative;
}
.top_space_contents_box_img::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.top_space_contents_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .top_space_contents_box_img {
    height: 500px;
  }
}
.top_space_contents_box_content {
  padding: 37px 39px;
  height: 490px;
  background: var(--color-white);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .top_space_contents_box_content {
    height: 445px;
  }
}
.top_space_contents_box_content_title {
  font-size: 54px;
  font-weight: var(--font-thickness-bold);
  line-height: 1.4;
}
@media screen and (max-width: 1280px) {
  .top_space_contents_box_content_title {
    font-size: 35px;
  }
}
.top_space_contents_box_content_desc {
  margin-top: 28px;
}
.top_space_contents_box_content_buttons {
  width: 100%;
  margin-top: auto;
}
.top_space_contents_box_content_buttons a {
  padding: 15.5px 26.9px;
  line-height: 1;
  border-radius: 8px;
  font-size: 18px;
  font-weight: var(--font-thickness-bold);
  display: flex;
  align-items: center;
  border: 2px solid var(--color-black);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .top_space_contents_box_content_buttons a {
    font-size: 14px;
  }
}
.top_space_contents_box_content_buttons a span.arrow {
  display: inline-block;
  margin-left: auto;
  position: relative;
  width: 25px;
  height: 13px;
  transition: transform 0.3s ease;
}
.top_space_contents_box_content_buttons a span.arrow svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  stroke: currentColor;
  fill: transparent;
}
.top_space_contents_box_content_buttons a.type_black {
  background: var(--color-black);
  color: var(--color-white);
}
.top_space_contents_box_content_buttons a.type_white {
  background: var(--color-white);
  color: var(--color-black);
}
.top_space_contents_box_content_buttons a + a {
  margin-top: 13px;
}
.top_space_contents_box_content_buttons a:hover {
  background: #046C38;
  border-color: #046C38;
  color: var(--color-white);
}
.top_space_contents_box_content_buttons a:hover span.arrow {
  transform: translateX(5px);
}

.top_split_links {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(2, auto);
}
.top_split_links_area {
  padding: 65px 69px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.top_split_links_area::before {
  content: "";
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top_split_links_area.concept::before {
  background-image: url("/img/home/top_banner_bg_concept.png");
}
.top_split_links_area.serviceplan::before {
  background-image: url("/img/home/top_banner_bg_serviceplan.png");
}
.top_split_links_area.access::before {
  background-image: url("/img/home/top_banner_bg_access.png");
}
.top_split_links_area.contact::before {
  background-image: url("/img/home/top_banner_bg_contact.png");
}
.top_split_links_area_right a {
  width: 268px;
  display: block;
  text-align: center;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: var(--font-thickness-bold);
  padding: 15.5px;
  border: 1px solid var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
  transition: all 0.5s ease;
  transition: color var(--transition-duration) var(--ease-out), background-color var(--transition-duration) var(--ease-out);
}
@media (any-hover: hover) {
  .top_split_links_area_right a:hover {
    color: var(--color-white);
    text-decoration: none;
    background-color: #046C38;
    border: solid 1px #046C38;
  }
}
@media screen and (max-width: 1280px) {
  .top_split_links_area_right a {
    width: 190px;
  }
}
.top_split_links_area_title {
  font-size: 54px;
  font-weight: var(--font-thickness-bold);
}
@media screen and (max-width: 1680px) {
  .top_split_links_area_title {
    font-size: 42px;
  }
}
.top_split_links_area_subtitle {
  margin-top: 10px;
  font-weight: var(--font-thickness-bold);
}
.top_split_links_area_border {
  display: block;
  width: 150px;
  margin: 26px auto 0 0;
  height: 3px;
  background: var(--color-main-green);
  position: relative;
}
.top_split_links_area_border::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--color-darkest-green);
}
.top_split_links_area.split_type_white .top_split_links_area_right a {
  border: 1px solid var(--color-white);
  background: transparent;
  color: var(--color-white);
}
.top_split_links_area.split_type_white .top_split_links_area_right a:hover {
  border: 1px solid var(--color-black);
  background: var(--color-black);
}
.top_split_links_area.split_type_white .top_split_links_area_title {
  color: var(--color-white);
}
.top_split_links_area.split_type_white .top_split_links_area_subtitle {
  color: var(--color-white);
}

.global_menu {
  background: var(--color-black-grey);
  height: 101px;
}
@media screen and (max-width: 768px) {
  .global_menu {
    height: 56px;
  }
}
.global_menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 1365px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .global_menu ul {
    max-width: inherit;
    overflow-x: scroll;
    display: grid;
    grid-template-columns: repeat(6, 190px);
    justify-content: inherit;
  }
}
@media screen and (max-width: 768px) {
  .global_menu ul {
    grid-template-columns: repeat(6, 92px);
  }
}
@media screen and (width: 768px) {
  .global_menu ul {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .global_menu ul {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    grid-template-columns: inherit;
  }
}
.global_menu ul li {
  color: var(--color-white);
  height: 100%;
  transition: background 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .global_menu ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .global_menu ul li {
    font-size: 11px;
    height: 56px;
  }
}
@media screen and (max-width: 767px) {
  .global_menu ul li {
    min-width: 92px;
  }
}
@media screen and (max-width: 390px) {
  .global_menu ul li {
    min-width: 82px;
  }
}
@media screen and (max-width: 390px) {
  .global_menu ul li._oversize {
    min-width: 92px;
  }
}
.global_menu ul li:hover {
  background: var(--color-green);
}
.global_menu ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 23px;
  color: var(--color-white);
  text-decoration: none;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .global_menu ul li a {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .global_menu ul li a {
    padding: 9px 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 1280px) {
  .global_menu ul li a span.icon._mr-20 {
    margin-right: 3px;
  }
}
@media screen and (max-width: 1024px) {
  .global_menu ul li a span.icon._mr-20 {
    margin-right: 9px;
  }
}
@media screen and (max-width: 768px) {
  .global_menu ul li a span.icon._mr-20 {
    margin-right: inherit;
  }
}

/*# sourceMappingURL=style-pc.css.map*/