@charset "utf-8";
p {
  color: black;
}
header {
  gap: 30px;
  margin-top: 30px;
}
header p {
  font-size: min(38px, 4vw);
  line-height: 1;
  text-align: center;
}
.header-span {
  font-size: min(20px, 2vw);
  color: #a85824;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  padding-left: 0.5%;
}
header img {
  width: 171px;
}
@media screen and (max-width: 640px) {
  header {
    width: 90%;
    margin: 10px auto 0;
    height: auto;
    display: grid;
    grid-template-columns: 25.5% 1fr;
    gap: 0;
    column-gap: 5px;
    row-gap: 3px;
  }
  header p {
    font-size: 4.6vw;
    white-space: nowrap;
  }
  header img {
    width: 100%;
  }
  .header-span {
    grid-column: 1/3;
    font-size: 14px;
    line-height: 1.5;
  }
}

/****************************** kv ******************************/
.enterprise-kv {
  width: 90%;
  max-width: 1286px;
  position: relative;
  margin: 30px auto;
  aspect-ratio: 1286/567;
  overflow: hidden;
  border-radius: 20px;
  z-index: -1;
}
.enterprise-kv_swiper {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.enterprise-kv_swiper-left,
.enterprise-kv_swiper-right {
  position: relative;
  overflow: hidden;
}
.enterprise-kv_swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.enterprise-kv_swiper-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.enterprise-kv_swiper-slide picture,
.enterprise-kv_swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.enterprise-kv_swiper-slide img {
  object-fit: cover;
}
/* å·¦ï¼šã‚†ã£ãã‚Šä¸Šã¸ */
.enterprise-kv_swiper-left .enterprise-kv_swiper-slide.is-active img {
  animation: kvMoveUp 6s linear forwards;
}
/* å³ï¼šã‚†ã£ãã‚Šä¸‹ã¸ */
.enterprise-kv_swiper-right .enterprise-kv_swiper-slide.is-active img {
  animation: kvMoveDown 6s linear forwards;
}
@keyframes kvMoveUp {
  from {
    transform: scale(1.08) translateY(20px);
  }
  to {
    transform: scale(1.08) translateY(-20px);
  }
}
@keyframes kvMoveDown {
  from {
    transform: scale(1.08) translateY(-20px);
  }
  to {
    transform: scale(1.08) translateY(20px);
  }
}
.enterprise-kv_textbox {
  width: 590px;
  /* height: 260px; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 10px 0 25px;
}
.enterprise-kv_ttl {
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05rem;
  font-size: 30px;
  font-weight: 700;
  color: #009245;
  text-align: center;
}
.enterprise-kv_label {
  font-size: 16px;
  color: #f5d84f;
  font-weight: 400;
  font-family: "DIN-2014", sans-serif;
  background-color: #009245;
  padding: 2px 12px 0;
  line-height: 1.3;
  position: relative;
  margin-bottom: 8px;
  display: inline-block;
}
.enterprise-kv_label::before,
.enterprise-kv_label::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: #009245;
}

.enterprise-kv_label::before {
  left: -7px;
  clip-path: polygon(0 0, 88% 50%, 0% 100%, 100% 100%, 100% 0);
}

.enterprise-kv_label::after {
  right: -7px;
  clip-path: polygon(100% 0, 12% 50%, 100% 100%, 0 100%, 0 0);
}
.enterprise-kv_lead {
  color: #42210b;
  font-size: 19px;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .enterprise-kv {
    aspect-ratio: auto;
    height: 128vw;
    margin: 20px auto;
  }
  .enterprise-kv_swiper {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  /* å·¦ */
  @keyframes kvMoveUp {
    from {
      transform: scale(1.08) translateX(20px);
    }
    to {
      transform: scale(1.08) translateX(-20px);
    }
  }
  /* å³ */
  @keyframes kvMoveDown {
    from {
      transform: scale(1.08) translateX(-20px);
    }
    to {
      transform: scale(1.08) translateX(20px);
    }
  }
  .enterprise-kv_textbox {
    width: 77.1%;
    height: auto;
    padding: 20px;
  }
  .enterprise-kv_ttl {
    font-size: 19px;
    line-height: 1.4;
  }
  .enterprise-kv_label {
    font-size: 10px;
    padding: 2px 17px 2px;
    margin-top: 8px;
  }
  .enterprise-kv_lead {
    font-size: 13px;
    margin: 0 3%;
    text-align: left;
    font-feature-settings: "palt" 1;
    letter-spacing: 0.04em;
  }
}

/*************************** ã§ãã‚‹ã“ã¨ ***************************/
/*green_ã¤ã„ã¦ã‚‹ã‚‚ã®ã¯ç”£å®˜å­¦å…±é€š*/
.green {
  overflow: visible;
  position: relative;
  top: -50px;
}
.features_bg {
  position: absolute;
  width: 100%;
  height: 90%;
  max-height: 940px;
  top: -20px;
  background-image: url("../imgs/enterprise/f-bg-pc.png");
  z-index: -1;
  background-repeat: repeat-x;
  background-position: center 0;
  background-size: 1920px auto;
}
.green_ttl {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.green_ttl img {
  width: 60px;
}
.green_ttl h2 {
  position: relative;
  font-size: 36px;
  color: white;
  margin-bottom: 55px;
  font-weight: 700;
}
.green_ttl h2 span {
  font-size: 28px;
}
.green_ttl h2::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 4px;
  background-color: #fbc600;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}
.features_container {
  width: min(1000px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  white-space: nowrap;
}
.features_box {
  max-width: 326px;
  width: 100%;
  aspect-ratio: 326/290;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 10px;
  background-color: white;
  border-radius: 50px 0 50px 0;
}
.features_box img {
  width: 30.6%;
  max-width: 100px;
  display: block;
}
.features_box-ttl {
  font-size: min(20px, 2vw);
  font-weight: 500;
}
.features_box-text {
  font-size: min(16px, 1.8vw);
  line-height: 1.6;
}
.features_bottom {
  position: relative;
  padding: 25px;
  grid-column: 1/4;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000/290;
  border-radius: 30px 0 30px 0;
  background-color: white;
  border: #fcd133 4px solid;
  display: flex;
  gap: 30px;
  transition: all 0.3s ease-in-out;
}
.features_bottom:hover {
  background-color: #fff2c2;
  border: white 4px solid;
}
.features_bottom-left {
  margin-right: 20px;
  width: 43.5%;
}
.features_bottom-middle {
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.features_bottom-middle h3 {
  font-feature-settings: "palt" 1;
  color: #006934;
  font-size: min(20px, 3vw);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.features_bottom-middle-p {
  font-feature-settings: "palt" 1;
  font-size: min(16px, 1.6vw);
}
.features_bottom-right {
  width: 15%;
  max-width: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: min(20px, 1vw);
  position: relative;
  z-index: 2;
}
.features_bottom-btn {
  display: block;
  width: 100%;
  font-size: min(20px, 2vw);
  color: #006934;
  font-weight: 600;
  border-radius: 999px;
  background-color: #fbc600;
  display: flex;
  padding-left: 10%;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
.features_bottom-btn::after {
  content: " »";
  font-size: 32px;
  position: relative;
  font-weight: 400;
  top: 9px;
  right: 15px;
}
.features_bottom-flag {
  position: absolute;
  top: -4px;
  right: 5%;
  padding: 8px 0.8vw 24px;
  background: #c1272d;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}

@media screen and (min-width: 640px) {
  .features_bottom-btn {
    aspect-ratio: 1;
    outline: 1px solid #fff;
    outline-offset: -5px;
  }
}

@media screen and (max-width: 640px) {
  .green {
    top: -20px;
  }
  .features_bg {
    height: 100%;
    background-image: url("../imgs/enterprise/f-bg-sp.png");
    background-size: 390px auto;
  }
  .green_ttl {
    gap: 10px;
  }
  .green_ttl img {
    width: 38px;
  }
  .green_ttl h2 {
    font-size: 24px;
  }
  .green_ttl h2 span {
    font-size: 18px;
  }
  .green_ttl h2::after {
    width: 60px;
    height: 3px;
    bottom: -20px;
  }
  .features_container {
    width: min(390px, 90%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    white-space: normal;
  }
  .features_box {
    min-height: 178px;
    gap: 0;
    justify-content: flex-start;
    padding-top: 20px;
    border-radius: 20px 0 20px 0;
  }
  .features_box img {
    width: 60px;
  }
  .features_box-ttl {
    font-size: 14px;
    margin-top: 5px;
  }
  .features_box-text {
    font-size: 11px;
    width: 90%;
    text-align: left;
    line-height: 1.5;
  }
  .features_bottom {
    border-radius: 20px 0 20px 0;
    grid-column: 1/3;
    padding: 13px;
    aspect-ratio: auto;
    border: #fcd133 2px solid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    row-gap: 15px;
  }
  .features_bottom-left {
    width: 100%;
    padding-right: 5.7%;
  }
  .features_bottom-middle {
    width: 100%;
    padding-left: 5.7%;
    gap: 15px;
  }
  .features_bottom-middle h3 {
    font-size: 16px;
  }
  .features_bottom-middle-p {
    font-size: 11px;
    margin-right: -5%;
    letter-spacing: 0.03em;
  }
  .features_bottom-right {
    width: 87.35%;
    max-width: 140px;
    margin-left: 15%;
    padding-bottom: 0;
    justify-content: center;
  }
  .features_bottom-btn {
    border-radius: 40px;
    padding: 2px 0 2px;
    font-size: 12px;
  }
  .features_bottom-btn::after {
    font-size: 20px;
    top: -2px;
    right: -5px;
  }
  .features_bottom-flag {
    top: -3px;
    right: auto;
    left: 5%;
    font-size: 10px;
    padding: 6px 1.5% 15px;
  }
}
/**************************** ãƒ¡ãƒªãƒƒãƒˆ ****************************/
.benefits {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 100px;
}
.benefits_bg {
  position: absolute;
  width: 100%;
  top: -100px;
  z-index: -1;
}
.benefit_cloud {
  position: absolute;
  z-index: -1;
}
.benefit_cloud1 {
  width: 20%;
  left: 16%;
  top: 0;
}
.benefit_cloud2 {
  width: 25.4%;
  left: 13.4%;
  bottom: 0;
}
.benefit_cloud3 {
  width: 32.3%;
  right: 40px;
  bottom: 140px;
}
.benefits_container {
  margin: 0 auto;
  width: 90%;
  max-width: 935px;
}
.benefits_ttl {
  color: #006837;
  font-size: min(30px, 2.5vw);
  font-weight: 600;
  font-feature-settings: "palt" 1;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 70px;
}
.benefits_ttl span {
  position: relative;
  display: inline-block;
}
.benefits_ttl span::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 5px;
  width: 101%;
  height: 14px;
  background: #f5d84f;
  border-radius: 999px;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .benefits {
    padding-bottom: 90px;
    margin-bottom: 0px;
  }
  .benefits_bg1 {
    top: -25px;
    opacity: 0.7;
  }
  .benefits_bg2 {
    bottom: 0;
    top: auto;
  }
  .benefit_cloud1,
  .benefit_cloud2,
  .benefit_cloud3 {
    opacity: 0.15;
    width: 51.8%;
  }
  .benefit_cloud1 {
    left: -10%;
    top: 15px;
  }
  .benefit_cloud2 {
    bottom: -25px;
    left: -11.1%;
  }
  .benefit_cloud3 {
    bottom: 270px;
    left: auto;
    right: -12%;
  }
  .benefits_ttl {
    font-size: 18px;
    padding-top: 20px;
    margin-bottom: 25px;
  }
  .benefits_ttl span::after {
    height: 8px;
    left: -3px;
    border-radius: 3px;
  }
}
/************************* ç”£å®˜å­¦å…±åŒç ”ç©¶ *************************/
.research_bg {
  position: absolute;
  width: 100%;
  height: 1335px;
  top: -35px;
  background-image: url("../imgs/enterprise/r-bg-pc.png");
  z-index: -1;
  background-repeat: repeat-x;
  background-position: center 0;
  background-size: 1920px auto;
}
.research_content {
  width: min(1000px, 90%);
  margin: 10px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.research_box {
  position: relative;
  background: #fff;
  border-radius: 60px 0 60px 0;
  overflow: visible;
}

.research_box::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("../imgs/enterprise/r-d-bg-pc.png") no-repeat center / cover;
  border-radius: 60px 0 60px 0;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: -1;
}

.research_side-label {
  position: absolute;
  left: 0;
  top: 55px;
  width: 60px;
  height: 140px;
  background: #fbc600;
  border-radius: 0 12px 12px 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.research_side-label span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.research_box-head {
  height: 100px;
  padding: 0 60px 0 110px;
  border-radius: 60px 0 0 0;
  background: url("../imgs/enterprise/r-d-ttl-pc.png") no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.research_box-head h3 {
  color: #fff;
  font-size: min(30px, 2.5vw);
  font-weight: 500;
}

.research_logo {
  width: 169px;
  position: relative;
  top: 3px;
}
.research_logo-white {
  width: 154px;
}
.research_box-body {
  padding: 40px 55px 60px 110px;
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 5%;
}

.research_profile-image {
  border-radius: 12px;
}

.research_profile-text {
  margin-top: 15px;
}

.research_profile-text p {
  font-size: 14px;
  line-height: 1.5;
}
.research_profile-name {
  margin-top: 6px;
}
.research_profile-name span {
  margin-right: 5px;
  font-size: 18px;
  font-weight: 500;
}

.research_main-ttl {
  color: #172a55;
  font-size: min(20px, 1.5vw);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 18px;
}

.research_main-text {
  font-size: 14px;
  font-feature-settings: "palt" 1;
  margin-bottom: 24px;
}

.research_images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.research_images-small {
  position: relative;
}
.research_images-small img {
  width: 60.71%;
  position: absolute;
}
.research_images-small img:first-child {
  top: 0;
  left: 0;
  z-index: 2;
}

.research_images-small img:last-child {
  right: 0;
  bottom: 0;
  z-index: 3;
}

.research_demo {
  padding: 40px 5.5% 60px 11%;
  display: grid;
  grid-template-columns: 260px auto;
  align-items: center;
  column-gap: 40px;
  font-feature-settings: "palt" 1;
}

.research_demo-text p {
  font-size: 14px;
  line-height: 2;
}

.research_demo-data {
  background: #f2f2eb;
  padding: 25px 0 25px 25px;
  display: flex;
}

.research_demo-data-left {
  width: fit-content;
  padding-right: 20px;
}
.research_demo-data-left p {
  font-size: min(15px, 1vw);
  font-weight: 400;
  line-height: 2;
  white-space: nowrap;
}

.research_demo-data-right-ttl {
  display: inline-block;
  background: #172a55;
  color: #fff;
  line-height: 1.4;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 5px;
}

.research_demo-data-right p {
  color: #c1272d;
  font-size: min(28px, 2.5vw);
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 3px solid #c1272d;
  display: inline-block;
}
.research_demo-data-right p span {
  font-size: min(36px, 3vw);
}
@media screen and (min-width: 640px) {
  .research_side-label span {
    writing-mode: vertical-rl;
  }
  .research_main-ttl {
    letter-spacing: 0.05em;
    width: 85%;
  }

  .research_main-text {
    letter-spacing: 0.03em;
    line-height: 2;
  }
  .research_demo-data {
    justify-content: space-around;
    align-items: center;
  }
}
@media screen and (max-width: 640px) {
  .research_bg {
    background-image: url("../imgs/enterprise/r-bg-sp.png");
    height: 108%;
    background-size: 390px auto;
  }
  .research_content {
    width: min(370px, 90%);
    gap: 30px;
  }
  .research_box {
    border-radius: 30px 0 30px 0;
  }
  .research_box::after {
    background: url("../imgs/enterprise/r-d-bg-sp.png") no-repeat center / cover;
    top: 8px;
    left: 8px;
    border-radius: 30px 0 30px 0;
  }
  .research .green_ttl h2 {
    margin-bottom: 35px;
  }
  .research_side-label {
    left: auto;
    right: 0;
    top: 0;
    width: 120px;
    height: 30px;
    border-radius: 0 0 0 12px;
  }
  .research_side-label span {
    font-size: 16px;
    padding-bottom: 2px;
    letter-spacing: 0.05em;
  }
  .research_box-head {
    height: 83px;
    border-radius: 20px 0 0 0;
    background: url("../imgs/enterprise/r-d-ttl-sp.png") no-repeat center/cover;
    padding: 0 4% 0 5%;
  }
  .research_box-head h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  .research_logo {
    width: 104px;
    top: 20px;
  }
  .research_logo-white {
    width: 100px;
    right: 7px;
    top: 15px;
  }
  .research_box-body {
    padding: 30px 16px 30px 20px;
    grid-template-columns: auto;
  }
  .research_profile {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 5vw;
  }

  .research_profile-text {
    margin-top: 30px;
  }
  .research_main {
    margin-top: 20px;
  }
  .research_main-ttl {
    font-size: 14px;
    line-height: 1.6;
  }
  .research_main-text {
    font-size: 12px;
  }
  .research_images {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .research_demo {
    padding: 20px 16px 30px 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 20px;
  }
  .research_demo-text p {
    font-size: 12px;
  }
  .research_demo-data {
    padding: 10px 20px;
    flex-direction: column;
    gap: 15px;
  }
  .research_demo-data-left p {
    font-size: 14px;
    line-height: 1.8;
  }
  .research_demo-data-right {
    padding-left: 5px;
  }
  .research_demo-data-right-ttl {
    line-height: 1;
    padding: 1px 4px 3px;
  }

  .research_demo-data-right p {
    font-size: 20px;
  }
  .research_demo-data-right p span {
    font-size: 32px;
  }
}
/************************** è¿‘æ—¥ç™ºè¡¨äºˆå®š **************************/
.comingsoon_box {
  width: clamp(700px, 90%, 1000px);
  /* height: 272px; */
  margin: 180px auto 80px;
  background-color: #f5d84f;
  border-radius: 20px;
  border: 3px #009245 solid;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  padding: 80px 0 30px;
}
.comingsoon_ttl {
  font-size: 30px;
  font-weight: 700;
  color: white;
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.comingsoon_ttl span {
  padding: 3.5px 16px 8.5px;
  border-radius: 6px;
  background-color: #009245;
  line-height: 1.3;
}
.comingsoon_box p {
  text-align: center;
  margin-bottom: 20px;
}
.comingsoon_text-top {
  color: #c1272d;
  font-size: 25px;
  font-weight: 600;
}
.comingsoon_text {
  font-size: 18px;
}

@media screen and (max-width: 640px) {
  .comingsoon_box {
    width: 90%;
    height: auto;
    margin: 80px auto 62px;
    border: 2px #009245 solid;
    padding: 80px 0 30px;
  }
  .comingsoon_ttl {
    font-size: 22px;
    top: -10px;
  }
  .comingsoon_ttl span {
    margin-left: -5px;
    padding: 6px 10px 8px;
    border-radius: 4px;
  }
  .comingsoon_text-top {
    width: 90%;
    margin: 0 auto 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
  }
  .comingsoon_text {
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
  }
}
