@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600&display=swap");
body {
  background: #fff;
  font-family: "Lexend Deca", "Hiragino Sans", sans-serif, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  height: 100vh;
  overflow-x: hidden;
  color: #000;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.en {
  font-family: "Lexend Deca", sans-serif;
  letter-spacing: -0.1rem;
}

img {
  vertical-align: top;
}

li {
  list-style: none;
}

#site-header {
  position: fixed;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.header--hidden {
  transform: translateY(-100%);
}

html.no-scroll,
body.no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.btn {
  display: inline-block;
  padding: 16px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}
.btn.border_green {
  border: 1px solid #37744f;
  color: #37744f;
}
.btn.border_white {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn.green {
  background-color: #37744f;
  color: #fff;
}
.btn.black {
  background-color: #000;
  color: #fff;
}
.btn.white {
  background-color: #ffffff;
  color: #000;
}
.btn.white-green {
  background-color: #ffffff;
  color: #37744f;
}

.heading_title {
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: -0.4rem;
}

.top-section-header {
  margin-bottom: 8rem;
}
.top-section-header .top-section-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.top-section-header .top-section-problem {
  max-width: 100%;
  text-align: right;
  margin-left: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
  font-weight: bold;
}
.top-section-header .top-section-problem .top-section-challenge {
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 1rem 0;
}

.scroll {
  position: absolute;
  right: 2%;
  top: 8%;
  writing-mode: vertical-rl;
  z-index: 99;
  color: #37744f;
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #37744f;
  bottom: -100px;
  content: "";
  height: 85px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.more-cta {
  width: 100%;
  margin: 4rem auto;
}
.more-cta .more-link {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: solid 2px #000;
  padding-bottom: 1rem;
}
.more-cta .more-link .arrow {
  font-size: 16px;
}
.more-cta .more-link:hover {
  opacity: 0.7;
}

.more-cta.layout-right {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.more-cta.layout-center {
  margin: 6rem auto;
  text-align: center;
}

a {
  text-decoration: none;
  color: #000;
}

sup {
  font-size: 1.5rem;
  line-height: 0.5rem;
  position: absolute;
}

* {
  min-height: 0;
  min-width: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.ft_w {
  font-weight: bold !important;
}

.globalBtn:hover {
  background-color: #fff;
  color: #000;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.zoom-target {
  transition: transform 0.4s ease;
  transform: scale(1);
}

.zoom-target.zoomed {
  transform: scale(1.05);
}

.kv-video.zoom-target.zoomed {
  border-radius: 2rem !important;
}

.mask-wrap {
  overflow: hidden;
  display: inline-block;
  width: 100%;
  text-align: left;
}

.mask-text {
  display: inline-block;
  transform: translateY(100%);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .zoom-target {
    transition: transform 0.4s ease;
    transform: scale(1);
  }
  .zoom-target.zoomed {
    transform: scale(1);
  }
  .kv-video.zoom-target.zoomed {
    border-radius: 1.5rem !important;
  }
  .scroll {
    top: 3%;
    font-size: 0.6rem;
  }
  .heading_title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.1rem;
  }
  .more-cta .more-link {
    font-size: 1rem;
  }
  .top-section-header {
    margin-bottom: 4rem;
  }
  .top-section-header .top-section-title {
    font-size: 1rem;
    font-weight: 700;
  }
  .top-section-header .top-section-problem {
    max-width: 100%;
    text-align: left;
    margin-left: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-weight: bold;
  }
  .top-section-header .top-section-problem .top-section-challenge {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin: 1rem 0;
  }
}
.site-header {
  padding: 20px 0px;
  background-color: #fff;
  width: 100%;
}
.site-header_inner {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header_inner .left-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.site-header_inner .left-group .logo img {
  height: 32px;
  width: auto;
}
.site-header_inner .left-group .main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header_inner .left-group .main-nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
}
.site-header_inner .left-group .main-nav ul li a:hover {
  opacity: 0.7;
}
.site-header_inner .header-buttons {
  display: flex;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .site-header {
    padding: 0.8rem 0px;
  }
  .site-header_inner {
    width: 93%;
  }
  .site-header_inner .left-group .logo img {
    height: 24px;
  }
  .site-header_inner .left-group .main-nav {
    display: none;
  }
  .site-header_inner .header-buttons {
    align-items: center;
  }
  .site-header_inner .header-buttons .btn {
    padding: 0.5rem;
  }
  .site-header_inner .header-buttons .career,
  .site-header_inner .header-buttons .contact {
    display: none;
  }
  .site-header .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .site-header .hamburger span {
    width: 25px;
    height: 2px;
    background-color: #333;
    display: block;
  }
  .site-header .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .site-header .sp-nav.is-active {
    transform: translateX(0);
  }
  .site-header .sp-nav .nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
  }
  .site-header .sp-nav .nav-menu {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    text-align: center;
  }
  .site-header .sp-nav .nav-menu li {
    margin: 1.5rem 0;
  }
  .site-header .sp-nav .nav-menu li a {
    font-size: 1.25rem;
    text-decoration: none;
    color: #111;
    font-weight: 600;
  }
  .site-header .sp-nav .sp-buttons {
    width: 80%;
    margin-top: 2rem;
  }
  .site-header .sp-nav .sp-buttons .btn {
    display: block;
    margin-bottom: 1rem;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  padding-top: 6%;
}
.container .kv {
  position: relative;
  background: #fff;
  width: 93%;
  margin: 0 auto;
  padding: 8% 0 5%;
}
.container .kv .kv-content {
  position: relative;
  margin: 0 auto;
  text-align: left;
}
.container .kv .kv-content .kv-title {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 5.5rem;
  min-height: 210px;
  max-height: 269px;
  color: #000;
  letter-spacing: -0.2rem;
  background: linear-gradient(90deg, #252525 0%, #37744f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container .kv .kv-content .kv-title .x {
  margin: 0 8px;
}
.container .kv .kv-video {
  margin-top: 5rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.container .kv .kv-video video,
.container .kv .kv-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.container .vision {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding: 6rem 0;
  position: relative;
}
.container .vision .heading_title {
  text-align: left;
  margin-bottom: 60px;
}
.container .vision .vision-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8rem;
}
.container .vision .vision-core .scroll {
  right: 50%;
  top: 10%;
}
.container .vision .vision-core .vision-copy {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2rem;
  margin-bottom: 4rem;
  background: linear-gradient(90deg, #252525 0%, #37744f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container .vision .vision-core .vision-main-image {
  width: 50%;
  border-radius: 24px;
  overflow: hidden;
}
.container .vision .vision-core .vision-main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.container .vision .vision-image {
  width: 15%;
  border-radius: 16px;
  overflow: hidden;
}
.container .vision .vision-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.container .vision .left {
  position: absolute;
  left: 0;
  bottom: -10%;
}
.container .vision .right {
  position: absolute;
  right: 0;
  top: 5%;
}
.container .vision .vision-text {
  padding-left: 20%;
}
.container .vision .vision-text .vision-subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 2.5rem;
  text-align: left;
}
.container .vision .vision-text .vision-description {
  font-size: 1.2rem;
  font-weight: 700;
  width: 60%;
  margin-right: 0;
  margin-left: auto;
  line-height: 2.5rem;
  color: #333;
  text-align: left;
}
.container .business {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 5%;
}
.container .business .business-header {
  margin-bottom: 8rem;
}
.container .business .business-header .business-problem {
  max-width: 80%;
  text-align: left;
  margin-left: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
  font-weight: bold;
  text-align: right;
}
.container .business .business-header .business-problem .business-label {
  font-size: 1.5rem;
}
.container .business .business-header .business-problem .business-challenge {
  font-size: 3rem;
  margin: 1rem 0;
  line-height: 3.5rem;
}
.container .business .business-header .business-problem .business-description {
  font-size: 1rem;
  line-height: 1.5rem;
}
.container .business .business-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  color: #37744f;
}
.container .business .business-cards .business-card {
  background: #f9f9f9;
  border-radius: 2rem;
  padding: 24px;
  text-align: left;
}
.container .business .business-cards .business-card .business-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.container .business .business-cards .business-card .business-number {
  font-size: 2rem;
  font-weight: 600;
}
.container .business .business-cards .business-card .business-heading {
  font-size: 14px;
  font-weight: 600;
}
.container .business .business-cards .business-card .icon {
  max-height: 100px;
  margin: 4rem auto;
}
.container .business .business-cards .business-card .icon img {
  width: 80px;
  height: auto;
  min-height: 100px;
  margin-bottom: 16px;
  display: block;
  margin: 0 auto;
}
.container .business .business-cards .business-card .business-subtitle {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.container .business .business-cards .business-card .business-text {
  font-size: 13px;
  line-height: 1.9;
}
.container .products {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 5%;
}
.container .products .product {
  text-align: center;
}
.container .products .product .product-items {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.container .products .product .product-item {
  width: 48%;
}
.container .products .product .product-item .product-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: left;
}
.container .products .product .product-item .product-title sup {
  font-size: 1rem;
  vertical-align: super;
}
.container .products .product .product-item .product-image {
  overflow: hidden;
  border-radius: 2rem;
}
.container .products .product .product-item .product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.container .teams {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 5%;
}
.container .teams .team {
  text-align: center;
}
.container .teams .team .team-items {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.container .teams .team .team-item {
  width: 48%;
}
.container .teams .team .team-item .team-image {
  overflow: hidden;
  border-radius: 2rem;
}
.container .teams .team .team-item .team-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.container .news {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 5%;
}
.container .news .post-cards__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.container .news .post-cards .post-card {
  text-align: left;
}
.container .news .post-cards .post-card__image {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
}
.container .news .post-cards .post-card__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.container .news .post-cards .post-card__meta {
  margin-top: 1rem;
}
.container .news .post-cards .post-card__meta .post-card__date {
  font-size: 0.875rem;
  font-weight: 600;
  color: #999;
  margin-bottom: 0.5rem;
  display: block;
}
.container .news .post-cards .post-card__meta .post-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 2rem;
  height: 80px;
}
.container .news .post-cards .post-card__meta .post-card__disc {
  display: none;
}
.container .news .post-cards .post-card__meta .post-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid #000;
  padding-bottom: 0.25rem;
}
.container .news .post-cards .post-card__meta .post-card__link:hover {
  opacity: 0.7;
}
.container .news .post-cards .post-card__meta .post-card__link .arrow {
  font-size: 1rem;
}
.container .company {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 5%;
}
.container .company .items {
  width: 100%;
}
.container .company .items .image {
  overflow: hidden;
  border-radius: 2rem;
}
.container .company .items .image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.container .heritage-section {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10rem;
}
.container .heritage-section__heading {
  margin-bottom: 3rem;
}
.container .heritage-section__heading h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 3.5rem;
}
.container .heritage-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.container .heritage-section__image {
  flex: 1 1 50%;
  border-radius: 1.5rem;
}
.container .heritage-section__image video,
.container .heritage-section__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 1.5rem;
}
.container .heritage-section__text {
  flex: 1 1 45%;
  font-size: 1.2rem;
  line-height: 2.5rem;
  color: #000;
  font-weight: 500;
}
.container .heritage-section__text p {
  margin-bottom: 1.25rem;
}
.container .heritage-section__text p strong {
  font-weight: 500;
}
.container .contact-banner {
  background-color: #37744f;
  color: #fff;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 4rem 0;
  margin-bottom: 6rem;
}
.container .contact-banner__inner {
  max-width: 100%;
  margin: 0 auto;
}
.container .contact-banner h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.container .contact-banner p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.single .container .posts {
  width: 70%;
  margin: 4% auto 8%;
  padding: 0% 0%;
  font-size: 1.2rem;
}
.single .container .posts .meta {
  display: flex;
}
.single .container .posts .meta ul {
  display: flex;
}
.single .container .posts .meta ul li {
  list-style: none;
  margin-right: 0.5rem;
}
.single .container .posts .meta ul li a {
  text-decoration: none;
}
.single .container .posts .meta .date {
  color: #8d8d8d;
}
.single .container .posts h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin: 2rem 0;
}
.single .container .posts h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin: 2rem 0;
}
.single .container .posts h4 {
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-weight: 700;
  margin: 2rem 0;
}
.single .container .posts .icatch-image {
  width: 100%;
  margin: 3rem 0;
}
.single .container .posts .icatch-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.single .container .posts .wp-block-image {
  width: 100%;
  margin: 3rem 0;
}
.single .container .posts .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.single .container .posts p {
  font-size: 1.2rem;
  line-height: 2rem;
  margin: 1rem 0;
}
.single .container .posts a {
  color: #37744f;
  text-decoration: underline;
}
.single .container .posts ul.wp-block-list {
  padding-left: 1.5rem;
  list-style-type: disc;
  list-style-position: outside;
}
.single .container .posts ul.wp-block-list li {
  list-style: disc;
  list-style-position: inside;
  line-height: 2rem;
  font-size: 1.2rem;
}
.single .container .posts .more-cta a {
  color: #000;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .single .container {
    padding-top: 30%;
  }
  .single .container .posts {
    width: 90%;
    margin: 4% auto 8%;
    padding: 0% 0%;
    font-size: 1.2rem;
  }
  .single .container .posts .meta {
    display: flex;
  }
  .single .container .posts .meta ul {
    display: flex;
  }
  .single .container .posts .meta ul li {
    list-style: none;
    margin-right: 0.5rem;
  }
  .single .container .posts .meta ul li a {
    text-decoration: none;
  }
  .single .container .posts .meta .date {
    color: #8d8d8d;
  }
  .single .container .posts h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin: 2rem 0;
  }
  .single .container .posts h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin: 2rem 0;
  }
  .single .container .posts h4 {
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 700;
    margin: 2rem 0;
  }
  .single .container .posts .icatch-image {
    width: 100%;
    margin: 3rem 0;
  }
  .single .container .posts .icatch-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
  }
  .single .container .posts .wp-block-image {
    width: 100%;
    margin: 3rem 0;
  }
  .single .container .posts .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
  }
  .single .container .posts p {
    font-size: 1.2rem;
    line-height: 2rem;
    margin: 1rem 0;
  }
  .single .container .posts a {
    color: #37744f;
    text-decoration: underline;
  }
  .single .container .posts ul.wp-block-list {
    padding-left: 1.5rem;
    list-style-type: disc;
    list-style-position: outside;
  }
  .single .container .posts ul.wp-block-list li {
    list-style: disc;
    list-style-position: inside;
    line-height: 2rem;
    font-size: 1.2rem;
  }
  .single .container .posts .more-cta a {
    color: #000;
    text-decoration: none;
  }
}
.category-all .container,
.category-media .container,
.category-press .container {
  padding-top: 10%;
}
.category-all .container .news,
.category-media .container .news,
.category-press .container .news {
  padding: 0;
  width: 93%;
}
.category-all .container .news .news-container,
.category-media .container .news .news-container,
.category-press .container .news .news-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 0;
}
.category-all .container .news .news-container .cat-nav,
.category-media .container .news .news-container .cat-nav,
.category-press .container .news .news-container .cat-nav {
  width: 15%;
}
.category-all .container .news .news-container .cat-nav .list,
.category-media .container .news .news-container .cat-nav .list,
.category-press .container .news .news-container .cat-nav .list {
  padding: 2rem 0;
  border-bottom: solid 1px #eee;
}
.category-all .container .news .news-container .category-posts,
.category-media .container .news .news-container .category-posts,
.category-press .container .news .news-container .category-posts {
  width: 80%;
}
.category-all .container .news .news-container .category-posts .post-cards__inner,
.category-media .container .news .news-container .category-posts .post-cards__inner,
.category-press .container .news .news-container .category-posts .post-cards__inner {
  display: block;
}
.category-all .container .news .news-container .category-posts .post-cards__inner .post-card,
.category-media .container .news .news-container .category-posts .post-cards__inner .post-card,
.category-press .container .news .news-container .category-posts .post-cards__inner .post-card {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: solid 1px #000;
  position: relative;
}
.category-all .container .news .news-container .category-posts .post-cards__inner .post-card a,
.category-media .container .news .news-container .category-posts .post-cards__inner .post-card a,
.category-press .container .news .news-container .category-posts .post-cards__inner .post-card a {
  width: 30%;
  height: fit-content;
}
.category-all .container .news .news-container .category-posts .post-cards__inner .post-card__meta,
.category-media .container .news .news-container .category-posts .post-cards__inner .post-card__meta,
.category-press .container .news .news-container .category-posts .post-cards__inner .post-card__meta {
  width: 60%;
}
.category-all .container .news .news-container .category-posts .post-cards__inner .post-card__meta .post-card__title,
.category-media .container .news .news-container .category-posts .post-cards__inner .post-card__meta .post-card__title,
.category-press .container .news .news-container .category-posts .post-cards__inner .post-card__meta .post-card__title {
  height: auto;
}
.category-all .container .news .news-container .category-posts .post-cards__inner .post-card__disc,
.category-media .container .news .news-container .category-posts .post-cards__inner .post-card__disc,
.category-press .container .news .news-container .category-posts .post-cards__inner .post-card__disc {
  display: block;
  line-height: 1.5rem;
}
.category-all .container .news .news-container .category-posts .post-cards__inner .post-card__link,
.category-media .container .news .news-container .category-posts .post-cards__inner .post-card__link,
.category-press .container .news .news-container .category-posts .post-cards__inner .post-card__link {
  position: absolute;
  right: 0;
  top: 3rem;
  width: auto !important;
  border: none;
}
.category-all .container .news .news-container .pagination,
.category-media .container .news .news-container .pagination,
.category-press .container .news .news-container .pagination {
  padding: 1rem 0;
  text-align: center;
}
.category-all .container .news .news-container .pagination .page-numbers,
.category-media .container .news .news-container .pagination .page-numbers,
.category-press .container .news .news-container .pagination .page-numbers {
  display: inline-block;
  padding: 16px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  background-color: #000;
  color: #fff;
}
.category-all .container .news .news-container .pagination .page-numbers.current,
.category-media .container .news .news-container .pagination .page-numbers.current,
.category-press .container .news .news-container .pagination .page-numbers.current {
  background-color: #ccc;
  color: #fff;
}
.category-all .container .news .news-container .pagination .next.page-numbers,
.category-media .container .news .news-container .pagination .next.page-numbers,
.category-press .container .news .news-container .pagination .next.page-numbers {
  background-color: #37744f;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .category-all .container,
  .category-media .container,
  .category-press .container {
    padding-top: 30%;
  }
  .category-all .container .news,
  .category-media .container .news,
  .category-press .container .news {
    padding: 0;
    width: 90%;
  }
  .category-all .container .news .news-container,
  .category-media .container .news .news-container,
  .category-press .container .news .news-container {
    flex-flow: column;
    padding: 2rem 0 4rem;
  }
  .category-all .container .news .news-container .cat-nav,
  .category-media .container .news .news-container .cat-nav,
  .category-press .container .news .news-container .cat-nav {
    width: 100%;
  }
  .category-all .container .news .news-container .cat-nav nav,
  .category-media .container .news .news-container .cat-nav nav,
  .category-press .container .news .news-container .cat-nav nav {
    display: flex;
    justify-content: flex-start;
    border-bottom: solid 1px #eee;
  }
  .category-all .container .news .news-container .cat-nav .list,
  .category-media .container .news .news-container .cat-nav .list,
  .category-press .container .news .news-container .cat-nav .list {
    width: 20%;
    padding: 2rem 0;
    border-bottom: solid 2px #000;
  }
  .category-all .container .news .news-container .category-posts,
  .category-media .container .news .news-container .category-posts,
  .category-press .container .news .news-container .category-posts {
    width: 100%;
  }
  .category-all .container .news .news-container .category-posts .post-cards__inner,
  .category-media .container .news .news-container .category-posts .post-cards__inner,
  .category-press .container .news .news-container .category-posts .post-cards__inner {
    display: block;
  }
  .category-all .container .news .news-container .category-posts .post-cards__inner .post-card,
  .category-media .container .news .news-container .category-posts .post-cards__inner .post-card,
  .category-press .container .news .news-container .category-posts .post-cards__inner .post-card {
    flex-flow: column;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: solid 1px #000;
    position: relative;
  }
  .category-all .container .news .news-container .category-posts .post-cards__inner .post-card a,
  .category-media .container .news .news-container .category-posts .post-cards__inner .post-card a,
  .category-press .container .news .news-container .category-posts .post-cards__inner .post-card a {
    width: 100%;
    height: fit-content;
  }
  .category-all .container .news .news-container .category-posts .post-cards__inner .post-card__meta,
  .category-media .container .news .news-container .category-posts .post-cards__inner .post-card__meta,
  .category-press .container .news .news-container .category-posts .post-cards__inner .post-card__meta {
    width: 100%;
  }
  .category-all .container .news .news-container .category-posts .post-cards__inner .post-card__meta .post-card__title,
  .category-media .container .news .news-container .category-posts .post-cards__inner .post-card__meta .post-card__title,
  .category-press .container .news .news-container .category-posts .post-cards__inner .post-card__meta .post-card__title {
    height: auto;
  }
  .category-all .container .news .news-container .category-posts .post-cards__inner .post-card__disc,
  .category-media .container .news .news-container .category-posts .post-cards__inner .post-card__disc,
  .category-press .container .news .news-container .category-posts .post-cards__inner .post-card__disc {
    display: block;
    line-height: 1.5rem;
  }
  .category-all .container .news .news-container .category-posts .post-cards__inner .post-card__link,
  .category-media .container .news .news-container .category-posts .post-cards__inner .post-card__link,
  .category-press .container .news .news-container .category-posts .post-cards__inner .post-card__link {
    position: absolute;
    right: 0;
    top: 18rem;
    width: auto !important;
    border: none;
  }
  .category-all .container .news .news-container .pagination,
  .category-media .container .news .news-container .pagination,
  .category-press .container .news .news-container .pagination {
    padding: 1rem 0;
    text-align: center;
  }
  .category-all .container .news .news-container .pagination .page-numbers,
  .category-media .container .news .news-container .pagination .page-numbers,
  .category-press .container .news .news-container .pagination .page-numbers {
    display: inline-block;
    padding: 16px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    background-color: #000;
    color: #fff;
  }
  .category-all .container .news .news-container .pagination .page-numbers.current,
  .category-media .container .news .news-container .pagination .page-numbers.current,
  .category-press .container .news .news-container .pagination .page-numbers.current {
    background-color: #ccc;
    color: #fff;
  }
  .category-all .container .news .news-container .pagination .next.page-numbers,
  .category-media .container .news .news-container .pagination .next.page-numbers,
  .category-press .container .news .news-container .pagination .next.page-numbers {
    background-color: #37744f;
    color: #fff;
  }
}
.page-template .container {
  padding-top: 10%;
}
.page-template .container .section-header {
  margin-bottom: 2rem;
}
.page-template .container .section-header .section-problem {
  max-width: 100%;
  text-align: right;
  margin-left: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}
.page-template .container .section-header .section-problem .section-challenge {
  font-size: 1.8rem;
  line-height: 2.3rem;
  margin: 1rem 0;
}
.page-template .container .section-header .section-problem .attention {
  color: #c40000;
}
.page-template .container .section-header .section-problem2 {
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
  font-weight: 700;
}
.page-template .container .section-header .section-problem2 .section-challenge {
  font-size: 3rem;
  line-height: 3.5rem;
  margin: 1rem 0 3rem;
  font-weight: 700;
}
.page-template .container .section-header .section-problem2 p {
  font-size: 1.2rem;
  text-align: right;
  line-height: 1.7rem;
}
.page-template .container .section-header .ttl {
  font-size: 1.5rem;
  font-weight: 700;
}
.page-template .container .section-text {
  width: 90%;
  margin: 0 auto;
  padding: 6rem 0;
}
.page-template .container .section-text .section-subtitle {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
.page-template .container .section-text .section-description {
  font-size: 1.2rem;
  line-height: 2rem;
  margin-left: auto;
  margin-right: left;
  width: 50%;
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-template .container .value {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  border-top: solid 1px #000;
  padding: 6rem 0;
  margin-top: 3rem;
}
.page-template .container .value .value-label {
  width: 20%;
}
.page-template .container .value .value-label h2 {
  font-size: 2rem;
  font-weight: 500;
}
.page-template .container .value .value-items {
  width: 70%;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.page-template .container .value .value-items .value-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 4rem;
}
.page-template .container .value .value-items .value-item .value-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}
.page-template .container .value .value-items .value-item .value-header h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.page-template .container .value .value-items .value-item .value-header .value-tag {
  font-size: 1rem;
  font-weight: 700;
}
.page-template .container .value .value-items .value-item p {
  font-size: 1rem;
  line-height: 1.5;
}

.page-template-default .container .pages {
  width: 70%;
  margin: 4rem auto;
}
.page-template-default .container .pages h2 {
  font-size: 3rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin: 2rem 0;
}
.page-template-default .container .pages h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin: 2rem 0;
}
.page-template-default .container .pages h4 {
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-weight: 700;
  margin: 2rem 0;
}
.page-template-default .container .pages p {
  font-size: 1.2rem;
  line-height: 2rem;
  margin: 1rem 0;
}
.page-template-default .container .pages a {
  color: #37744f;
  text-decoration: underline;
}
.page-template-default .container .pages ul.wp-block-list {
  padding-left: 1.5rem;
  list-style-type: disc;
  list-style-position: outside;
}
.page-template-default .container .pages ul.wp-block-list li {
  list-style-type: disc;
  list-style-position: outside;
  line-height: 2rem;
  font-size: 1.2rem;
}

.page-template-page_vision .container .vision {
  padding: 0 0 4rem;
}

.page-template-page_business .container .kv {
  position: relative;
  width: 93%;
  margin: 0 auto;
  padding: 0% 0;
}
.page-template-page_business .container .kv .kv-content {
  position: relative;
  margin: 0 auto;
  text-align: left;
}
.page-template-page_business .container .kv .kv-video {
  margin-top: 5rem;
  border-radius: 24px;
  overflow: hidden;
  max-height: 600px;
}
.page-template-page_business .container .kv .kv-video video,
.page-template-page_business .container .kv .kv-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.page-template-page_business .container .health-issue {
  width: 90%;
  margin: 0 auto;
}
.page-template-page_business .container .health-issue__top {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin: 8rem 0 4rem;
}
.page-template-page_business .container .health-issue__top .health-issue__title-area {
  width: 48%;
}
.page-template-page_business .container .health-issue__top .health-issue__title-area .subtitle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-template-page_business .container .health-issue__top .health-issue__title-area .title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 3.5rem;
}
.page-template-page_business .container .health-issue__top .health-issue__title-area .lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}
.page-template-page_business .container .health-issue__top .health-issue__image-area {
  width: 48%;
}
.page-template-page_business .container .health-issue__top .health-issue__image-area img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  object-fit: cover;
}
.page-template-page_business .container .health-issue__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.page-template-page_business .container .health-issue__bottom .text-block {
  width: 48%;
  font-size: 1rem;
  line-height: 2rem;
}
.page-template-page_business .container .health-issue__bottom .text-block p {
  margin-bottom: 2rem;
}
.page-template-page_business .container .health-issue__bottom .text-block p strong {
  font-weight: 700;
}
.page-template-page_business .container .platform-heading {
  width: 90%;
  text-align: left;
  margin: 0 auto;
  padding: 6rem 0;
}
.page-template-page_business .container .platform-heading__main {
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.page-template-page_business .container .platform-heading__sub {
  font-size: 1.5rem;
  font-weight: 500;
}
.page-template-page_business .container .biz-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin: 0 auto 6rem;
}
.page-template-page_business .container .biz-section .biz-nav {
  position: sticky;
  top: 7rem;
  flex: 0 0 180px;
  width: 20%;
}
.page-template-page_business .container .biz-section .biz-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page_business .container .biz-section .biz-nav ol li {
  margin-bottom: 2rem;
  border-bottom: solid 1px #000;
  padding: 0 0 2rem;
}
.page-template-page_business .container .biz-section .biz-nav ol li a {
  text-decoration: none;
  font-size: 1rem;
  display: block;
}
.page-template-page_business .container .biz-section .biz-nav ol li a span {
  display: block;
  font-weight: 600;
  margin-top: 0.25rem;
}
.page-template-page_business .container .biz-section .biz-nav ol li a em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.page-template-page_business .container .biz-section .biz-contents {
  width: 80%;
}
.page-template-page_business .container .biz-section .biz-contents .content-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-template-page_business .container .biz-section .biz-contents .content-head .ttl h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.page-template-page_business .container .biz-section .biz-contents .content-head .ttl h3 {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.page-template-page_business .container .biz-section .biz-contents .content-head .num {
  font-size: 2rem;
  font-weight: 500;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content {
  padding-bottom: 6rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .content-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 2rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .left {
  width: 45%;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .right {
  width: 45%;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .right img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .research-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .research-grid .research-item {
  flex: 1 1 45%;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .research-grid .research-item img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .research-grid .research-item h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.page-template-page_business .container .biz-section .biz-contents .biz-content .research-grid .research-item p {
  font-size: 1rem;
  line-height: 2rem;
}

.page-template-page_product .container .kv {
  position: relative;
  width: 93%;
  margin: 0 auto;
  padding: 0% 0;
}
.page-template-page_product .container .kv .kv-content {
  position: relative;
  margin: 0 auto;
  text-align: left;
}
.page-template-page_product .container .kv .kv-video {
  margin-top: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  max-height: 600px;
}
.page-template-page_product .container .kv .kv-video video,
.page-template-page_product .container .kv .kv-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.page-template-page_product .container .kv .product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}
.page-template-page_product .container .kv .product-title h2 {
  font-size: 2.5rem;
  font-weight: 500;
}
.page-template-page_product .container .kv .product-title p {
  text-align: right;
  font-weight: 700;
  font-size: 1.5rem;
}
.page-template-page_product .container .kv.kaiko {
  border-top: solid 1px #000;
}
.page-template-page_product .container .kv.kaiko .product-title {
  margin-top: 8rem;
}
.page-template-page_product .container .morsilk-feature {
  width: 90%;
  margin: 0 auto;
}
.page-template-page_product .container .morsilk-feature h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
.page-template-page_product .container .morsilk-feature__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 0 10rem;
}
.page-template-page_product .container .morsilk-feature__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem 2rem;
  width: 60%;
}
.page-template-page_product .container .morsilk-feature__items::after {
  content: "";
  display: block;
  width: 30%;
}
.page-template-page_product .container .morsilk-feature .feature-item {
  text-align: center;
  width: 30%;
}
.page-template-page_product .container .morsilk-feature .feature-item img {
  width: 50%;
  height: auto;
  margin-bottom: 1rem;
}
.page-template-page_product .container .morsilk-feature .feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.page-template-page_product .container .morsilk-feature .feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.page-template-page_product .container .morsilk-feature .uses {
  text-align: left;
  width: 30%;
}
.page-template-page_product .container .morsilk-feature .uses h3 {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.page-template-page_product .container .morsilk-feature .uses ul {
  list-style: disc;
  text-align: left;
}
.page-template-page_product .container .morsilk-feature .uses ul li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
}
.page-template-page_product .container .products {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 0;
}
.page-template-page_product .container .products .products-header {
  margin-bottom: 8rem;
}
.page-template-page_product .container .products .products-header .business-title {
  font-size: 2.5rem;
  font-weight: 700;
}
.page-template-page_product .container .products .products-header .products-problem {
  max-width: 100%;
  text-align: left;
  margin-left: auto;
  margin-top: 0rem;
  margin-bottom: 6rem;
  font-weight: 700;
}
.page-template-page_product .container .products .products-header .products-problem .products-challenge {
  font-size: 2rem;
  margin: 1rem 0;
}
.page-template-page_product .container .products .product {
  background-color: #fff;
  text-align: center;
}
.page-template-page_product .container .products .product .product-items {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.page-template-page_product .container .products .product .product-item {
  width: 48%;
}
.page-template-page_product .container .products .product .product-item .product-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: left;
}
.page-template-page_product .container .products .product .product-item .product-title sup {
  font-size: 1rem;
  vertical-align: super;
}
.page-template-page_product .container .products .product .product-item p {
  text-align: left;
  line-height: 1.5rem;
}
.page-template-page_product .container .products .product .product-item .product-image {
  border-radius: 1.25rem;
  overflow: hidden;
  border-radius: 4rem;
  margin-bottom: 2rem;
}
.page-template-page_product .container .products .product .product-item .product-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-template-page_product .container .products .product .product-item.product-item-small {
  width: 40%;
  margin-top: 12rem;
}
.page-template-page_product .container .cta-section {
  width: 90%;
  margin: 0 auto;
  padding: 0rem 0 6rem;
}
.page-template-page_product .container .cta-section__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.page-template-page_product .container .cta-section__left {
  width: 40%;
}
.page-template-page_product .container .cta-section__left h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 4rem;
}
.page-template-page_product .container .cta-section__right {
  width: 50%;
  font-size: 0.875rem;
  line-height: 2;
}
.page-template-page_product .container .cta-section__right p {
  margin-bottom: 1rem;
}
.page-template-page_product .container .cta-section__buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.page-template-page_product .container .faq-section {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 8rem;
}
.page-template-page_product .container .faq-section__header {
  margin-bottom: 2rem;
}
.page-template-page_product .container .faq-section__header p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.page-template-page_product .container .faq-section .faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page_product .container .faq-section .faq-list li {
  border-top: 1px solid #ddd;
  padding: 2rem 0;
}
.page-template-page_product .container .faq-section .faq-list li:last-child {
  border-bottom: 1px solid #ddd;
}
.page-template-page_product .container .faq-section .faq-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.page-template-page_product .container .faq-section .faq-item .faq-question {
  width: 48%;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.page-template-page_product .container .faq-section .faq-item .faq-answer {
  width: 48%;
  font-size: 1rem;
  line-height: 1.5rem;
}

.page-template-page_team .teams {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0;
}
.page-template-page_team .teams .team .team-items {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.page-template-page_team .teams .team .team-photo {
  width: 48%;
}
.page-template-page_team .teams .team .team-photo .team-image {
  overflow: hidden;
  border-radius: 2rem;
}
.page-template-page_team .teams .team .team-photo .team-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-template-page_team .teams .team .member-profile__content {
  width: 48%;
  text-align: left;
}
.page-template-page_team .teams .team .member-profile__content .member-profile__name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  vertical-align: middle;
}
.page-template-page_team .teams .team .member-profile__content .member-profile__name small {
  font-size: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.page-template-page_team .teams .team .member-profile__content .member-profile__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-template-page_team .teams .team .member-profile__content .member-profile__title.message {
  height: 80px;
}
.page-template-page_team .teams .team .member-profile__content p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-template-page_team .teams .team.ceo p.disc {
  font-size: 1.2rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.page-template-page_team .teams .team.staff {
  margin-top: 10rem;
}
.page-template-page_team .teams .team.staff .team-items {
  flex-wrap: wrap;
}
.page-template-page_team .teams .team.staff .team-items .team-staff {
  width: 48%;
}
.page-template-page_team .teams .team.staff .team-items .team-staff .team-image {
  overflow: hidden;
  border-radius: 2rem;
}
.page-template-page_team .teams .team.staff .team-items .team-staff .team-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-template-page_team .teams .team.staff .team-items .team-staff .member-profile__content {
  width: 100%;
  text-align: left;
  margin-top: 4rem;
}
.page-template-page_team .teams .team.staff .team-items .team-staff .member-profile__content .member-profile__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  vertical-align: middle;
}
.page-template-page_team .teams .team.staff .team-items .team-staff .member-profile__content .member-profile__name small {
  font-size: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.page-template-page_team .teams .team.staff .team-items .team-staff .member-profile__content .member-profile__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-template-page_team .teams .team.staff .team-items .team-staff .member-profile__content p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-template-page_team .teams .advisor-section {
  margin-bottom: 6rem;
}
.page-template-page_team .teams .advisor-section .advisor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin: 2rem 0;
}
.page-template-page_team .teams .advisor-section .advisor-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 45%;
}
.page-template-page_team .teams .advisor-section .advisor-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.page-template-page_team .teams .advisor-section .advisor-content .advisor-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-template-page_team .teams .advisor-section .advisor-content .advisor-name small {
  font-size: 0.875rem;
  color: #333;
  margin-left: 0.5rem;
}
.page-template-page_team .teams .advisor-section .advisor-content p {
  font-size: 0.875rem;
  line-height: 1.6;
}
.page-template-page_team .section-header.logos {
  width: 90%;
  margin: 0 auto;
}
.page-template-page_team .logo-slider {
  overflow: hidden;
  width: 100%;
  background: #fff;
  margin: 6rem 0 10rem;
}
.page-template-page_team .logo-slider .logo-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
}
.page-template-page_team .logo-slider .logo-item {
  flex: 0 0 auto;
}
.page-template-page_team .logo-slider .logo-item img {
  height: 100px;
  width: auto;
  display: block;
}

.page-template-page_company .companys {
  width: 93%;
  margin: 0 auto;
  padding: 0% 0 10%;
}
.page-template-page_company .companys .kv {
  position: relative;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 0% 0 4rem;
}
.page-template-page_company .companys .kv .kv-content {
  position: relative;
  margin: 0 auto;
  text-align: left;
}
.page-template-page_company .companys .kv .kv-video {
  margin-top: 5rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.page-template-page_company .companys .kv .kv-video video,
.page-template-page_company .companys .kv .kv-video img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.page-template-page_company .companys .company-info {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}
.page-template-page_company .companys .company-info dl {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
}
.page-template-page_company .companys .company-info .row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}
.page-template-page_company .companys .company-info .row:last-child {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.page-template-page_company .companys .company-info .row dt {
  width: 150px;
  font-weight: 500;
  font-size: 1rem;
}
.page-template-page_company .companys .company-info .row dd {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5rem;
}
.page-template-page_company .companys .company-info .row .address div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.page-template-page_company .companys .company-info .row .address div .left {
  font-weight: 500;
  line-height: 1rem;
  width: 150px;
}
.page-template-page_company .companys .company-info .row .address div .right {
  text-decoration: underline;
}

.page-template-page_career .careers {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 10%;
}
.page-template-page_career .careers .kv {
  position: relative;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 0% 0 0%;
}
.page-template-page_career .careers .kv .kv-content {
  position: relative;
  margin: 0 auto;
  text-align: left;
}
.page-template-page_career .careers .kv .kv-video {
  margin-top: 5rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.page-template-page_career .careers .kv .kv-video video,
.page-template-page_career .careers .kv .kv-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.page-template-page_career .careers .section-text {
  width: 100%;
}
.page-template-page_career .careers .value {
  width: 100%;
  border-top: none;
  margin-top: 0;
  padding: 0 0 5rem;
}
.page-template-page_career .careers .value .value-items {
  width: 50%;
}
.page-template-page_career .careers .value .value-items .value-item {
  padding-bottom: 0rem;
}
.page-template-page_career .careers .value .value-items .value-item .value-header {
  margin-bottom: 0rem;
}
.page-template-page_career .careers .value .value-items .value-item .value-header h3 {
  font-size: 1.5rem;
}
.page-template-page_career .careers .value .value-items .value-item p {
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 2rem;
}
.page-template-page_career .careers .value .value-items .value-item.end {
  border: none;
}
.page-template-page_career .careers .who-we-are {
  border-top: solid 1px #000;
  padding-top: 10rem;
}
.page-template-page_career .careers .who-we-are__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 5rem 0;
}
.page-template-page_career .careers .who-we-are .ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-template-page_career .careers .who-we-are .ttl p {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 500;
}
.page-template-page_career .careers .who-we-are__left {
  width: 50%;
}
.page-template-page_career .careers .who-we-are__left .who-we-are__heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.page-template-page_career .careers .who-we-are__left .who-we-are__icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.page-template-page_career .careers .who-we-are__left .who-we-are__icons .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-template-page_career .careers .who-we-are__left .who-we-are__icons .icon-item img {
  width: 120px;
  height: 120px;
}
.page-template-page_career .careers .who-we-are__left .who-we-are__icons .icon-item p {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.page-template-page_career .careers .who-we-are__left .who-we-are__icons .icon-x {
  font-size: 2rem;
  font-weight: 500;
}
.page-template-page_career .careers .who-we-are__right {
  width: 50%;
}
.page-template-page_career .careers .who-we-are__right .who-we-are__label {
  font-size: 0.75rem;
  text-align: right;
  margin-bottom: 1rem;
}
.page-template-page_career .careers .who-we-are__right p {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.page-template-page_career .careers .recruit {
  background-color: #336f4d;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  color: #fff;
}
.page-template-page_career .careers .recruit__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.page-template-page_career .careers .recruit__label {
  flex: 1 1 30%;
}
.page-template-page_career .careers .recruit__label h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-template-page_career .careers .recruit__label p {
  font-size: 0.75rem;
}
.page-template-page_career .careers .recruit__list {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-template-page_career .careers .recruit__list .recruit__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #336f4d;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
}
.page-template-page_career .careers .recruit__list .recruit__item a:hover {
  background: #f5f5f5;
}
.page-template-page_career .careers .recruit__list .recruit__item a .recruit__icon {
  font-size: 1rem;
}

.page-template-page_contact .contacts {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 10%;
}
.page-template-page_contact .contacts .contact_form {
  width: 70%;
  margin: 0 auto;
}

.page-template-page_thanks .thanks {
  width: 90%;
  margin: 0 auto;
  padding: 0% 0 10%;
  text-align: center;
}
.page-template-page_thanks .thanks .title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.page-template-page_thanks .thanks p {
  line-height: 1.5rem;
}

.error404 .container {
  padding: 200px 0;
}
.error404 .container__inner {
  text-align: center;
}
.error404 .container__inner .back a {
  text-decoration: underline;
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 10rem 0 10rem;
  font-size: 0.875rem;
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto 3rem;
  width: 90%;
}
.site-footer .footer-top .footer-logo-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.site-footer .footer-top .footer-logo-nav .footer-logo img {
  width: 150px;
  height: auto;
}
.site-footer .footer-top .footer-logo-nav .footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-top .footer-logo-nav .footer-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}
.site-footer .footer-top .footer-logo-nav .footer-nav ul li a:hover {
  opacity: 0.7;
}
.site-footer .footer-top .footer-buttons {
  display: flex;
  gap: 1rem;
}
.site-footer .footer-top .footer-buttons .btn-outline {
  padding: 0.5rem 1.5rem;
  border: 1px solid #fff;
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
}
.site-footer .footer-top .footer-buttons .btn-outline:hover {
  background-color: #fff;
  color: #000;
}
.site-footer .footer-top .footer-buttons .btn-filled {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  font-size: 0.875rem;
  text-decoration: none;
}
.site-footer .footer-top .footer-buttons .btn-filled:hover {
  opacity: 0.8;
}
.site-footer .footer-address {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  width: 90%;
  margin: 0 auto;
  font-weight: 100;
}
.site-footer .footer-address div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.site-footer .footer-address div .left {
  font-weight: 500;
  line-height: 1rem;
  width: 150px;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  width: 90%;
  margin: 4rem auto;
}
.site-footer .footer-bottom a {
  color: #ccc;
  text-decoration: none;
}
.site-footer .footer-bottom a:hover {
  text-decoration: underline;
}
.site-footer .footer-bottom span {
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .site-footer {
    padding: 5rem 0 5rem;
  }
  .site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
    margin: 0 auto 4rem;
    width: 90%;
  }
  .site-footer .footer-top .footer-logo-nav {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 3rem;
  }
  .site-footer .footer-top .footer-logo-nav .footer-logo img {
    width: 150px;
    height: auto;
  }
  .site-footer .footer-top .footer-logo-nav .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .site-footer .footer-top .footer-logo-nav .footer-nav ul li {
    width: 45%;
  }
  .site-footer .footer-top .footer-logo-nav .footer-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
  }
  .site-footer .footer-top .footer-logo-nav .footer-nav ul li a:hover {
    opacity: 0.7;
  }
  .site-footer .footer-address div {
    flex-flow: column;
  }
  .site-footer .footer-address div .left {
    line-height: 1rem;
    width: 100%;
    display: block;
  }
  .site-footer .footer-address div .right {
    width: 100%;
    display: block;
  }
}
.form {
  /*--hover--*/
}
.form .form__inner dl {
  padding: 20px 0;
}
.form .form__inner dl dt {
  width: 100%;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin-bottom: 1rem;
}
.form .form__inner dl dt.required {
  position: relative;
}
.form .form__inner dl dt.required span {
  margin-left: 10px;
  color: red;
}
.form .form__inner dl dt.option {
  position: relative;
}
.form .form__inner dl dt.option span {
  padding: 5px;
  background: #ccc;
  border-radius: 6px;
  font-size: 0.6rem;
  color: #fff;
  vertical-align: middle;
  position: absolute;
  right: 0px;
}
.form .form__inner dl dd {
  width: 100%;
}
.form .form-text {
  height: 3em;
  width: 96%;
  padding: 0 2%;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.1rem;
  background-color: #fff;
}
.form .form-text:focus {
  outline: 1;
  box-shadow: none;
}
.form .form-textarea {
  height: 8em;
  width: 96%;
  padding: 2% 2%;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1rem;
}
.form select {
  height: 3em;
  width: 100%;
  padding: 0 2% 0 2%;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.1rem;
  position: relative;
}
.form select::-ms-expand {
  display: none;
}
.form .select-wrap {
  position: relative;
  width: 100%;
}
.form .form-text::placeholder,
.form .form-textarea::placeholder {
  color: #ccc;
}
.form .select-wrap:after {
  content: "";
  position: absolute;
  top: 38%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
.form input:read-only,
.form textarea:read-only {
  background-color: #eee;
  box-shadow: none;
}
.form input:read-only:focus,
.form textarea:read-only:focus {
  outline: 0;
  box-shadow: none;
}
.form input[type=submit] {
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  display: block;
  padding: 2rem 0px;
  text-align: center;
  background-color: #37744f;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
  margin: 30px auto 0;
  -webkit-appearance: none;
  border-radius: 0.5rem;
}
.form input[type=submit]:hover {
  color: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.form input[type=submit][disabled] {
  background: #dcdcdc;
  cursor: not-allowed; /* 禁止カーソル */
}
.form input[type=file] {
  background: none;
}
.form .privacy {
  text-align: center;
  padding: 1rem 0;
}
.form .privacy .check {
  color: #000;
  accent-color: #37744f;
}
.form .privacy .check input[type=checkbox] {
  transform: scale(2);
  margin: 0 12px 0 0;
  background: #37744f;
}
.form .privacy .check a {
  color: #37744f;
  text-decoration: underline;
}
.form .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: 0.6rem;
}

.wpcf7 form.failed .wpcf7-response-output {
  text-align: center;
  border: none;
  background: #f7e1e1;
  padding: 10px 0;
  border-radius: 6px;
  margin: 30px 0 0;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  border: none;
  background: #e1ebf7;
  padding: 10px 0;
  border-radius: 6px;
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .form .form__inner dl {
    display: block;
  }
  .form .form__inner dl dt {
    width: 100%;
  }
  .form .form__inner dl dd {
    width: 100%;
  }
  .form .form__inner .form-text {
    width: 96%;
    margin-top: 15px;
    background-color: #eee;
    padding: 0 2%;
  }
  .form .form__inner .form-textarea {
    width: 96%;
    background-color: #eee;
    padding: 2%;
    margin-top: 15px;
  }
  .form .form__inner .privacy .check span {
    font-size: 0.7rem;
  }
  .form .form__inner .privacy .check a {
    color: #000;
    text-decoration: underline;
  }
}