@charset "UTF-8";
/* 初期設定
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  min-width: 375px;
}

/* モーダル等開いた時に後ろが動いてしまうのを防ぐ設定 */
html.is-hidden {
  overflow: hidden;
}

body {
  color: #666666;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 4.8vw;
    line-height: 2;
  }
}

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

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
}

:where(table) {
  border-collapse: collapse;
  width: 100%;
}

:where(.wrapper) {
  background-color: #fff;
  margin: 0 auto;
}

/* レスポンシブ消去
-------------------------------------------------- */
.pcB {
  display: none;
}
@media screen and (min-width: 769px) {
  .pcB {
    display: block;
  }
}

.spB {
  display: block;
}
@media screen and (min-width: 769px) {
  .spB {
    display: none;
  }
}

.pcI {
  display: none;
}
@media screen and (min-width: 769px) {
  .pcI {
    display: inline;
  }
}

.spI {
  display: inline;
}
@media screen and (min-width: 769px) {
  .spI {
    display: none;
  }
}

/* ページごとの設定
================================================== */
@media screen and (min-width: 1920px) {
  .bp {
    display: none;
  }
}
/* 共通
-------------------------------------------------- */
.wrapper::before {
  content: "";
  display: block;
  background: linear-gradient(#fff 0%, #00a8a9 100%);
  opacity: 0.3;
  width: 100dvw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.main__inner {
  background-image: url("/expo/2025/planetkeepers/assets/img/bg_main_bottom_pc.png");
  background-position: bottom -4.6875vw left;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 26.04167vw;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .main__inner {
    background-image: url("/expo/2025/planetkeepers/assets/img/bg_main_bottom_sp.png");
    background-position: bottom left;
    padding-bottom: 40.53334vw;
  }
}

/* header
-------------------------------------------------- */
.header {
  background-color: #fff;
  border-top: 0.26042vw solid #009DA6;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    border-top: 2.13334vw solid #009DA6;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.88542vw 3.28125vw 0.9375vw 0;
  margin: 0 auto;
  width: 83.33334vw;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 5.86667vw 4vw 7.46667vw 5.33334vw;
    width: auto;
  }
}

.header__logoWrap {
  display: flex;
  align-items: center;
  gap: 0 2.29167vw;
}
@media screen and (max-width: 768px) {
  .header__logoWrap {
    gap: 0 4.26667vw;
  }
}

.header__logo {
  position: relative;
  width: 9.84375vw;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 32.46134vw;
  }
}
.header__logo::after {
  content: "";
  border-right: 0.05209vw solid #C7C7C7;
  height: 2.08334vw;
  position: absolute;
  right: -1.14583vw;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__logo::after {
    border-right: 0.26667vw solid #C7C7C7;
    height: 7.46667vw;
    right: -2.13333vw;
  }
}
.header__logo a {
  display: block;
}

.header__pageName {
  color: #000;
  font-size: 0.78125vw;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .header__pageName {
    font-size: 3.2vw;
    font-weight: 600;
    line-height: 1.5;
  }
}

/* 言語切り替えボタン */
@media screen and (max-width: 768px) {
  .header__langList {
    display: none;
  }
}
.header__langList ul {
  font-size: 1.6rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
}
.header__langList ul::before {
  content: "/";
  order: 2;
  font-size: 0.78125vw;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0.36459vw;
}
@media screen and (max-width: 768px) {
  .header__langList ul::before {
    font-size: 4vw;
    margin: 0 1.86667vw;
  }
}
.header__langList a {
  color: #000;
  font-size: 0.78125vw;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .header__langList a {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .header__langList a:hover {
    color: #009DA6;
  }
}
.header__langList .en {
  order: 3;
}
.header__langList .jp {
  order: 1;
}
.header__langList .jp a {
  color: #BEBEBE;
}

/* クボタグループリンク */
.header__groupName {
  width: 6.51042vw;
}
@media screen and (max-width: 768px) {
  .header__groupName {
    display: none;
  }
}
.header__groupName a {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .header__groupName:hover {
    opacity: 0.5;
  }
}

/* footer
-------------------------------------------------- */
.footer {
  background-color: #fff;
  border-top: 0.05209vw solid #999;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 1.6rem;
    line-height: 1.5;
    border-top: 0.26667vw solid #999;
  }
}

.footer__inner {
  padding: 1.61459vw 3.85417vw 1.66667vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    margin: 0 auto;
    padding: 5.86667vw 0 6.66667vw;
    width: 92vw;
  }
}

.footer__top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .footer__top {
    position: relative;
    transform: initial;
    top: initial;
    left: initial;
  }
}

.footer__langList {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__langList {
    display: block;
  }
}
.footer__langList ul {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.footer__langList ul::before {
  content: "/";
  order: 2;
  font-size: 0.78125vw;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0.36459vw;
}
@media screen and (max-width: 768px) {
  .footer__langList ul::before {
    font-size: 4vw;
    margin: 0 1.86667vw;
  }
}
.footer__langList a {
  color: #000;
  font-size: 0.78125vw;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .footer__langList a {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__langList a:hover {
    color: #009DA6;
  }
}
.footer__langList .en {
  order: 3;
}
.footer__langList .jp {
  order: 1;
}
.footer__langList .jp a {
  color: #BEBEBE;
}

@media screen and (max-width: 768px) {
  .footer__nav {
    margin-top: 6.93334vw;
  }
}
.footer__nav a {
  color: #00A8A9;
  font-size: 0.72917vw;
  font-weight: 500;
  line-height: 1.4286;
}
@media screen and (max-width: 768px) {
  .footer__nav a {
    font-size: 3.73334vw;
    line-height: 1.4286;
  }
}
.footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.5625vw;
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    flex-direction: column;
    gap: 2.13334vw 0;
  }
}

.footer__bottom {
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin: 2.4vw auto 0;
  }
}

.footer__logo {
  margin-left: auto;
  width: 7.96875vw;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 37.86667vw;
    margin: 0 auto;
  }
}

.footer__copyright {
  color: #999999;
  font-size: 0.72917vw;
  font-weight: 500;
  line-height: 1.75;
  text-align: right;
  margin-top: 0.3125vw;
  width: 8.22917vw;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 2.66667vw;
    line-height: 1.5;
    margin-top: 5.33334vw;
    width: auto;
  }
}

/* セクション、コンテンツ共通
-------------------------------------------------- */
.inner {
  margin: 0 auto;
  width: 70.10417vw;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 92vw;
  }
}

/* about
-------------------------------------------------- */
.about {
  background-image: url("/expo/2025/planetkeepers/assets/img/img_about_01_pc.png"), url("/expo/2025/planetkeepers/assets/img/img_about_02_pc.png"), url("/expo/2025/planetkeepers/assets/img/img_about_03_pc.png"), url("/expo/2025/planetkeepers/assets/img/img_about_04_pc.png");
  background-position: top 1.45834vw left 8.33334vw, top 2.8125vw right 8.33334vw, bottom 8.07292vw left 12.5vw, bottom right 8.85417vw;
  background-repeat: no-repeat;
  background-size: 18.45417vw 10.4599vw, 15.99375vw 9.06563vw, 14.39271vw 8.15834vw, 18.45417vw 10.4599vw;
}
@media screen and (max-width: 768px) {
  .about {
    background-image: url("/expo/2025/planetkeepers/assets/img/img_about_01_sp.png"), url("/expo/2025/planetkeepers/assets/img/img_about_02_sp.png"), url("/expo/2025/planetkeepers/assets/img/img_about_03_sp.png");
    background-position: top 8vw left 4vw, bottom 43.46667vw right 4vw, bottom left 4vw;
    background-size: 41.65067vw 23.608vw, 47.432vw 26.88534vw, 68.456vw 38.80267vw;
  }
}

.about__inner {
  margin: 0 auto;
  padding: 3.90625vw 0 5.98959vw;
  width: 83.33334vw;
}
@media screen and (max-width: 768px) {
  .about__inner {
    padding: 38.13334vw 0 77.06667vw;
    width: 92vw;
  }
}

.about__secTtl {
  color: #008486;
  font-size: 1.82292vw;
  font-weight: 700;
  line-height: 1.4572;
  text-align: center;
  margin-bottom: 1.04167vw;
}
@media screen and (max-width: 768px) {
  .about__secTtl {
    font-size: 6.4vw;
    line-height: 2;
    margin: 0 3.46667vw 4.8vw auto;
    width: fit-content;
  }
}

.about__txt {
  font-weight: 500;
  line-height: 2.1667;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__txt {
    line-height: 2;
  }
}
.about__txt + .about__txt {
  margin-top: 2.70834vw;
}
@media screen and (max-width: 768px) {
  .about__txt + .about__txt {
    margin-top: 9.6vw;
  }
}

/* choice
-------------------------------------------------- */
.choice {
  margin-top: 4.84375vw;
}
@media screen and (max-width: 768px) {
  .choice {
    margin-top: 20.26667vw;
  }
}

.choice__inner {
  background-color: #E8FAFA;
  padding: 4.16667vw 6.40625vw 5.36459vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .choice__inner {
    padding: 14.93334vw 4vw 17.86667vw;
  }
}

/* タイトル */
.choice__secTtl {
  width: 20.625vw;
  position: absolute;
  top: -3.02083vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .choice__secTtl {
    width: 61.86667vw;
    top: -8.53333vw;
  }
}

/* テキスト */
.choice__txt {
  text-align: center;
}

.choice__txt--02 {
  margin-top: 2.29167vw;
}
@media screen and (max-width: 768px) {
  .choice__txt--02 {
    margin-top: 12.8vw;
  }
}
.choice__txt--02 .ws_nowrap {
  white-space: nowrap;
}

/* 画像 */
.choice__img--01 {
  margin: 2.13542vw auto 0;
  width: 44.16667vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .choice__img--01 {
    margin: 10.13334vw auto 0;
    width: 83.28267vw;
  }
}
.choice__img--01::before {
  content: "";
  background-image: url("/expo/2025/planetkeepers/assets/img/img_choice_03_pc.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12.89011vw;
  width: 16.11251vw;
  position: absolute;
  bottom: -4.01041vw;
  left: -9.63541vw;
}
@media screen and (max-width: 768px) {
  .choice__img--01::before {
    background-image: url("/expo/2025/planetkeepers/assets/img/img_choice_03_sp.png");
    height: 36.8vw;
    width: 26.66667vw;
    bottom: -13.86666vw;
    left: 0;
  }
}

.choice__img--02 {
  margin: 2.5vw auto 0;
  width: 55.07605vw;
}
@media screen and (max-width: 768px) {
  .choice__img--02 {
    margin: 5.86667vw auto 0;
    width: 83.73334vw;
  }
}

/* agriTech
-------------------------------------------------- */
.agriTech {
  margin-top: 5.625vw;
}
@media screen and (max-width: 768px) {
  .agriTech {
    margin-top: 13.33334vw;
  }
}

.agriTech__inner {
  background-color: #FAF0E6;
  margin: 0 auto;
  padding: 4.79167vw 6.40625vw 5.20834vw;
  width: 70.10417vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .agriTech__inner {
    padding: 10.66667vw 4vw;
    width: 92vw;
  }
}
.agriTech__inner::before, .agriTech__inner::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 11.04167vw;
  width: 22.91667vw;
}
@media screen and (max-width: 768px) {
  .agriTech__inner::before, .agriTech__inner::after {
    height: 21.33334vw;
    width: 44.27734vw;
  }
}
.agriTech__inner::before {
  background-image: url("/expo/2025/planetkeepers/assets/img/icon_brackets_01.png");
  top: -0.41666vw;
  right: -0.41666vw;
}
@media screen and (max-width: 768px) {
  .agriTech__inner::before {
    top: 0;
    right: 0;
  }
}
.agriTech__inner::after {
  background-image: url("/expo/2025/planetkeepers/assets/img/icon_brackets_02.png");
  bottom: -0.41666vw;
  left: -0.72916vw;
}
@media screen and (max-width: 768px) {
  .agriTech__inner::after {
    bottom: 0;
    left: -0.53333vw;
  }
}

.agriTech__secTtl {
  margin: 0 auto 1.77084vw;
  width: 29.79167vw;
}
@media screen and (max-width: 768px) {
  .agriTech__secTtl {
    margin: 0 auto 4.53334vw;
    width: 81.06667vw;
  }
}

.agriTech__lead {
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .agriTech__lead {
    line-height: 1.7778;
  }
}

.agriTech__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.60417vw 1.30209vw;
  margin: 3.54167vw auto 0;
  width: 57.29167vw;
}
@media screen and (max-width: 768px) {
  .agriTech__list {
    flex-direction: column;
    gap: 5.33334vw 0;
    margin: 9.6vw auto 0;
    width: auto;
  }
}
@media screen and (min-width: 769px) {
  .agriTech__list > li {
    min-height: 23.80209vw;
    width: 18.22917vw;
  }
}
.agriTech__list .ttl {
  background-color: #008486;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 1.45834vw;
  font-weight: 700;
  line-height: 1.4286;
  text-align: center;
  height: 4.16667vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .agriTech__list .ttl {
    font-size: 4.8vw;
    line-height: 1.1112;
    height: auto;
    padding: 1.6vw 1em 2.13334vw;
  }
}
.agriTech__list .ttl > span {
  font-size: 0.83334vw;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .agriTech__list .ttl > span {
    font-size: 3.73334vw;
    line-height: 1.4286;
  }
}
@media screen and (max-width: 768px) {
  .agriTech__list .ttl:has(> span) {
    padding: 2.13334vw 1em;
  }
}
@media screen and (min-width: 769px) {
  .agriTech__list li:nth-child(3) .ttl,
  .agriTech__list li:nth-child(8) .ttl {
    font-size: 1.30209vw;
    line-height: 1.3601;
  }
}
.agriTech__list .txtWrap {
  background-color: #fff;
  border: 0.15625vw solid #008486;
  padding: 1.04167vw 1.35417vw;
  height: calc(100% - 4.16667vw);
  margin-top: -0.15625vw;
}
@media screen and (max-width: 768px) {
  .agriTech__list .txtWrap {
    display: flex;
    align-items: center;
    gap: 0 2.66667vw;
    border: 0.8vw solid #008486;
    padding: 3.2vw 1.86667vw;
    height: calc(100% - 9.06667vw);
    margin-top: -0.8vw;
  }
}
.agriTech__list .img img {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .agriTech__list .img img {
    width: 13.02084vw;
  }
}
@media screen and (max-width: 768px) {
  .agriTech__list .img img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28.00001vw;
  }
}
.agriTech__list .txt {
  color: #333333;
  font-size: 0.9375vw;
  line-height: 1.875;
  margin-top: 1.04167vw;
}
@media screen and (max-width: 768px) {
  .agriTech__list .txt {
    font-size: 3.73334vw;
    line-height: 1.7143;
    margin: 0;
    width: 48vw;
  }
}

/* task
-------------------------------------------------- */
.task {
  margin-top: 10.72917vw;
}
@media screen and (max-width: 768px) {
  .task {
    margin-top: 13.33334vw;
  }
}

.task__wrap--top {
  background-image: url("/expo/2025/planetkeepers/assets/img/bg_task_01_pc.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.70834vw 6.40625vw 1.66667vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .task__wrap--top {
    background-image: url("/expo/2025/planetkeepers/assets/img/bg_task_01_sp.png");
    padding: 9.6vw 4vw 6.93334vw;
  }
}

.task__secTtl {
  color: #fff;
  font-size: 1.5625vw;
  font-weight: 700;
  line-height: 1.4667;
  text-align: center;
  margin-bottom: 0.625vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .task__secTtl {
    font-size: 5.86667vw;
    line-height: 1.4546;
    margin: 0 auto 5.6vw;
  }
}

.task__lead {
  color: #fff;
  font-size: 1.04167vw;
  line-height: 1.75;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .task__lead {
    font-size: 4.8vw;
    line-height: 2;
  }
}

.task__txt {
  text-align: center;
  margin: 2.60417vw auto 0;
}
@media screen and (max-width: 768px) {
  .task__txt {
    margin: 6.66667vw auto 0;
  }
}
.task__txt > span {
  color: #008486;
  font-weight: 500;
}

.img--02 {
  margin: 3.54167vw auto 0;
  width: 49.94636vw;
}
@media screen and (max-width: 768px) {
  .img--02 {
    margin: 8.26667vw auto 0;
    width: auto;
  }
}

/* unresolved
-------------------------------------------------- */
.unresolved {
  margin-top: 9.11459vw;
}
@media screen and (max-width: 768px) {
  .unresolved {
    margin-top: 24.53334vw;
  }
}

.unresolved__inner {
  background-color: #E8FAFA;
  margin: 0 auto;
  padding: 4.375vw 1.19792vw 2.08334vw;
  width: 57.29167vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .unresolved__inner {
    padding: 18.93334vw 4vw 4.8vw;
    width: 92vw;
  }
}

.unresolved__secTtl {
  width: 30.9375vw;
  position: absolute;
  top: -2.29166vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .unresolved__secTtl {
    width: 72.8vw;
    top: -13.86666vw;
  }
}

.unresolved__img {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .unresolved__img {
    width: 82.66667vw;
  }
}

.unresolved__txt {
  text-align: center;
  margin-top: 1.92709vw;
}
@media screen and (max-width: 768px) {
  .unresolved__txt {
    margin-top: 6.66667vw;
  }
}

/* fellow
-------------------------------------------------- */
.fellow {
  margin-top: 4.16667vw;
}
@media screen and (max-width: 768px) {
  .fellow {
    margin-top: 13.33334vw;
  }
}

.fellow__secTtl {
  margin: 0 auto 1.92709vw;
  width: 30.9375vw;
}
@media screen and (max-width: 768px) {
  .fellow__secTtl {
    margin: 0 auto 6.66667vw;
    width: auto;
  }
}

.fellow__txt {
  text-align: center;
}
.fellow__txt > span {
  color: #008486;
  font-weight: 500;
}
.fellow__txt + .fellow__txt {
  margin-top: 2.1875vw;
}
@media screen and (max-width: 768px) {
  .fellow__txt + .fellow__txt {
    margin-top: 9.6vw;
  }
}

.fellow__img {
  margin: 3.38542vw auto 0;
  width: 57.13542vw;
}
@media screen and (max-width: 768px) {
  .fellow__img {
    margin: 6.66667vw auto 0;
    width: auto;
  }
}

/* action
-------------------------------------------------- */
.action {
  margin-top: 4.16667vw;
}
@media screen and (max-width: 768px) {
  .action {
    margin-top: 13.33334vw;
  }
}

.action__secTtl {
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 768px) {
  .action__secTtl {
    margin: 0 -4vw 12vw;
  }
}

.action__ttl {
  color: #008486;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .action__ttl {
    font-size: 4.8vw;
    line-height: 2;
  }
}

.action__txt {
  text-align: center;
}
