@charset "UTF-8";
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
/* ボタンカラー */
/* フォント系 */
/*
	Noto Sans使用する場合
	'Noto Sans JP', 'Open Sans', Verdana, Roboto, 'Droid Sans'
*/
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
header#header {
  color: #fff;
}

#drawer .drawer__btn {
  color: #fff;
}

#globalnavi .dropdown li > .gnavi__sub {
  color: #000;
}

.en__title {
  margin-bottom: 40px;
  font-size: 42rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.en__title .f_sserif {
  display: block;
  margin-bottom: 20px;
  color: #00A352;
  font-size: 18rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
}
.en__title .f_sserif .icon {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.en__title .title {
  display: block;
}

#top_mainvisual {
  position: relative;
}
#top_mainvisual .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00a050; /* 緑色の背景 */
  z-index: 1;
  opacity: 1;
  transition: opacity 1s ease; /* フェードアウトのアニメーション */
  overflow: hidden;
}
#top_mainvisual .overlay.hidden {
  opacity: 0;
}
#top_mainvisual .overlay::after {
  content: url(../images/common/icon_title.svg);
  position: absolute;
  top: -10%;
  right: -10%;
  width: 80%;
}
#top_mainvisual .mv__slide {
  opacity: 0;
  transition: opacity 1s ease; /* フェードアウトのアニメーション */
}
#top_mainvisual .mv__slide.show {
  opacity: 1;
}
#top_mainvisual .mv__slide > .slide__item:not(:first-child) {
  display: none;
}
#top_mainvisual .mv__slide .slide__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_mainvisual .mv__title {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 50%;
  max-width: 90%;
  color: #fff;
  transform: translateY(-50%);
  transition-delay: 500ms;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
#top_mainvisual .mv__title .title__main {
  font-size: 55rem;
  font-weight: bold;
  line-height: 1.5;
  opacity: 0;
  filter: blur(30px);
  transition: opacity 1s ease, filter 1s ease;
}
#top_mainvisual .mv__title .title__main.move {
  opacity: 1;
  filter: blur(0);
}
#top_mainvisual .mv__title .title__sub {
  margin: 40px 0 0;
  font-size: 20rem;
  font-weight: bold;
  line-height: 2.4;
  letter-spacing: 0;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 1s ease;
  transition-delay: 500ms;
}
#top_mainvisual .mv__title .title__sub.move {
  opacity: 1;
  filter: blur(0);
}
#top_mainvisual .mv__scroll {
  position: absolute;
  right: 6%;
  bottom: 80px;
  width: 163px;
  height: 163px;
  padding-top: 62px;
  text-align: center;
  transition-delay: 1000ms;
}
#top_mainvisual .mv__scroll .icon02 {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  animation: scrollAnime 30s linear forwards;
}
#top_mainvisual .mv__news {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1000px;
  max-width: 80%;
  padding: 30px 40px;
  background: #fff;
  font-size: 14rem;
  line-height: 1.5;
  z-index: 2;
}
#top_mainvisual .mv__news a {
  position: relative;
  display: flex;
  padding-right: 50px;
  align-items: center;
  color: #000;
  text-decoration: none;
}
#top_mainvisual .mv__news a:first-child {
  margin-bottom: 20px;
}
#top_mainvisual .mv__news a:hover {
  color: #00A352;
}
#top_mainvisual .mv__news a::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -7px;
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1px solid #00A352;
  border-right: 1px solid #00A352;
  transform: rotate(45deg);
}
#top_mainvisual .mv__news .time {
  display: block;
  width: 95px;
  font-size: 14rem;
}
#top_mainvisual .mv__news .cat {
  display: block;
  width: 170px;
  padding: 2px 8px;
  background: #00A352;
  border-radius: 100vmax;
  color: #fff;
  font-size: 13rem;
  font-weight: bold;
  text-align: center;
}
#top_mainvisual .mv__news .title {
  display: block;
  width: calc(100% - 95px - 160px);
  padding-left: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes scrollAnime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#event {
  padding: 80px 0 70px;
}
#event .event__slide--arrow {
  position: absolute;
  right: 0;
  top: 40px;
  display: flex;
  width: 142px;
  justify-content: space-between;
}
#event .event__slide--arrow .slick-arrow {
  position: relative;
  width: 63px;
  height: 63px;
  border-radius: 100vmax;
  border: 1px solid #f5a500;
  color: #f5a500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
#event .event__slide--arrow .slick-arrow::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  margin-top: -4px;
  margin-right: -4px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
#event .event__slide--arrow .slick-arrow.prev::after {
  border: none;
  margin-right: -8px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
#event .event__slide--arrow .slick-arrow:hover {
  background: #f5a500;
  color: #fff;
}
#event .event__slide--arrow .slick-arrow.next {
  background: #f5a500;
  color: #fff;
}
#event .event__slide {
  margin-bottom: 0;
  padding-bottom: 45px;
  line-height: 1.5;
}
#event .event__slide .slick-dots {
  bottom: -18px;
}
#event .event__slide > .slide__item:not(:first-child) {
  display: none;
}
#event .event__slide .slide__item .item__pic a:hover {
  opacity: 0.7;
}
#event .event__slide .slide__item .item__body {
  position: relative;
  margin-top: 50px;
  padding-left: 160px;
}
#event .event__slide .slide__item .item__body a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
#event .event__slide .slide__item .item__body a:hover {
  color: #00A352;
}
#event .event__slide .slide__item .item__body .time {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  padding: 2px 5px;
  background: #00A352;
  border-radius: 100vmax;
  color: #fff;
  font-size: 16rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
#event .event__slide .slide__item .item__body .title {
  margin-bottom: 10px;
  font-size: 24rem;
  font-weight: bold;
  line-height: 1.5;
}
#event .event__slide .slide__item .item__body .text {
  margin-bottom: 0;
}
#event .event__button {
  margin-top: 45px;
  text-align: right;
}

#mission {
  padding: 160px 0 80px;
  background: url(../images/top/mission_bg01.svg) no-repeat center top;
  background-size: 92%;
}
#mission .mission__block .block__pic {
  width: 48.5%;
}
#mission .mission__block .block__pic img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#mission .mission__block .block__body {
  width: 45%;
}
#mission .mission__block .block__body .body__title {
  margin-bottom: 15px;
  font-size: 27rem;
  font-weight: bold;
  line-height: 1.5;
}
#mission .mission__block .block__body .body__button {
  margin-top: 45px;
}

#feature {
  padding: 80px 0 170px;
}
#feature .feature__block .en__title {
  width: 28%;
}
#feature .feature__block .block__body {
  width: 71%;
}
#feature .feature__block .block__body .body__title {
  margin-bottom: 10px;
  font-size: 27rem;
  font-weight: bold;
  line-height: 1.5;
}
#feature .feature__block .block__body .body__button {
  margin-top: 20px;
  text-align: right;
}
#feature .feature__pic {
  position: relative;
  height: 900px;
  background: url(../images/top/feature_bg02.png) no-repeat center, url(../images/top/feature_bg01.jpg) no-repeat center;
}
@media screen and (min-width: 1441px) {
  #feature .feature__pic {
    background-size: auto, 100%;
  }
}
#feature .feature__pic .pic__title {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -60px;
  font-size: 33rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
#feature .feature__pic .pic__title > span {
  color: #00A352;
  font-weight: bold;
}
#feature .feature__pic .pic__title img {
  display: block;
  margin: 15px auto 0;
}
#feature .feature__pic .pic__circle {
  position: absolute;
  display: block;
  width: 268px;
  height: 268px;
  padding: 10px;
  border-radius: 100vmax;
  background: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
  color: #000;
  cursor: pointer;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  transform: translate(-50%, -50%) scale(1.5);
}
#feature .feature__pic .pic__circle.move {
  transform: translate(-50%, -50%) scale(1);
}
#feature .feature__pic .pic__circle.circle01 {
  left: 50%;
  bottom: calc(50% - 30px);
}
#feature .feature__pic .pic__circle.circle02 {
  left: calc(50% - 240px);
  top: calc(50% + 150px);
}
#feature .feature__pic .pic__circle.circle03 {
  left: calc(50% + 240px);
  top: calc(50% + 150px);
}
#feature .feature__pic .pic__circle > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}
#feature .feature__pic .pic__circle .circle__title {
  color: #00A352;
  font-size: 29rem;
  font-weight: bold;
  line-height: 1.2;
}
#feature .feature__pic .pic__circle .circle__title .icon {
  display: block;
  margin: 0 auto 10px;
}
#feature .feature__pic .pic__circle .circle__text {
  margin-bottom: 0;
  font-weight: bold;
  color: #000;
}
#feature .feature__pic .pic__circle .circle__arrow {
  display: block;
  margin: 10px auto 0;
}
#feature .feature__slide {
  margin-top: 96px;
}
#feature .feature__slide > .slide__item:not(:first-child) {
  display: none;
}
#feature .feature__slide .slide__item {
  padding-right: 40px;
}
#feature .feature__slide .slide__item img {
  width: 100%;
  height: auto;
}

.remodal-overlay {
  background: rgba(255, 255, 255, 0.8);
}

.feature__modal {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 545px;
  height: 545px;
  padding: 60px 50px 0;
  background: url(../images/top/feature_bg03.svg) no-repeat center, #00A352;
  background-size: 335px;
  border-radius: 100vmax;
  color: #fff;
  text-align: left;
}
.feature__modal .feature__modal__block .block__pic {
  width: 190px;
}
.feature__modal .feature__modal__block .block__pic img {
  border-radius: 100vmax;
}
.feature__modal .feature__modal__block .block__body {
  width: calc(100% - 190px - 15px);
  line-height: 1.6;
}
.feature__modal .feature__modal__block .block__body .body__title {
  margin-bottom: 20px;
  font-size: 19rem;
  font-weight: bold;
  line-height: 1.6;
}
.feature__modal .feature__modal__block .block__body .body__title .f_sserif {
  display: block;
  margin-bottom: 10px;
  font-size: 14rem;
  letter-spacing: 0;
  font-weight: bold;
}
.feature__modal .feature__modal__block .block__body .body__text {
  margin-bottom: 0;
}
.feature__modal .feature__modal__button {
  margin-top: 40px;
  text-align: center;
}
.feature__modal .feature__modal__button .remodal-close {
  position: static;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 14rem;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.feature__modal .feature__modal__button .remodal-close::before {
  content: none;
}
.feature__modal .feature__modal__button .remodal-close .circle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  background: #f5a500;
  border-radius: 100vmax;
  vertical-align: middle;
}
.feature__modal .feature__modal__button .remodal-close .circle::before, .feature__modal .feature__modal__button .remodal-close .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 15px;
  background: #fff;
}
.feature__modal .feature__modal__button .remodal-close .circle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.feature__modal .feature__modal__button .remodal-close .circle:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#product {
  position: relative;
  padding: 130px 0 110px;
}
#product::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 65.3%;
  height: 100%;
  background: url(../images/common/bg_dots.png) center top;
}
#product > * {
  position: relative;
}
#product .product__block {
  padding-bottom: 110px;
}
#product .product__block .block__body {
  width: calc(50% - 106px);
}
#product .product__block .block__body > * {
  max-width: 310px;
}
#product .product__block .block__body p {
  font-weight: bold;
}
#product .product__block .block__slide {
  width: calc(50% + 106px);
}
#product .product__slide--pager {
  margin-top: 30px;
  color: #00A352;
  font-size: 16rem;
  line-height: 1.5;
  list-style-type: none;
}
#product .product__slide--pager li {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 6px 20px;
  background: #f3f6fa;
  border-radius: 100vmax;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}
#product .product__slide--pager li.current {
  background: #00A352;
  color: #fff;
}
#product .product__slide--pager li + li {
  margin-top: 12px;
}
#product .product__slide {
  position: relative;
  list-style-type: none;
}
#product .product__slide > .slide__item:not(:first-child) {
  display: none;
}
#product .product__slide .slide__item {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
}
#product .product__slide .slide__item:not(:first-child) {
  display: none;
}
#product .product__slide .slide__item .item__pic {
  margin-bottom: 20px;
}
#product .product__slide .slide__item .item__body .body__title {
  width: 220px;
  margin: 0;
  color: #00A352;
  font-size: 16rem;
  font-weight: bold;
  line-height: 1.8;
}
#product .product__slide .slide__item .item__body .body__title .icon {
  margin-right: 5px;
  margin-bottom: 2px;
  vertical-align: middle;
}
#product .product__slide .slide__item .item__body .body__list {
  width: calc(100% - 220px);
  list-style-type: none;
  justify-content: flex-start;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
#product .product__slide .slide__item .item__body .body__list li {
  position: relative;
  margin-right: 15px;
  padding-left: 15px;
  font-weight: bold;
}
#product .product__slide .slide__item .item__body .body__list li:last-of-type {
  margin-right: 0;
}
#product .product__slide .slide__item .item__body .body__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 3px;
  color: #00A352;
  font-size: 80%;
}
#product .product__slide .slide__item .item__body .body__button {
  width: 100%;
  margin-top: 30px;
  text-align: right;
}
#product .product__block02 {
  align-items: center;
  background: #fff;
}
#product .product__block02 .block__pic {
  width: calc(50% + 47px);
}
#product .product__block02 .block__pic img {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
#product .product__block02 .block__body {
  width: calc(50% - 47px);
  padding: 0 20px 0 65px;
  letter-spacing: 0;
}
#product .product__block02 .block__body .body__container {
  max-width: 390px;
}
#product .product__block02 .block__body .body__title {
  margin-bottom: 20px;
  font-size: 45rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
}
#product .product__block02 .block__body .body__title > span {
  color: #00A352;
  font-weight: bold;
}
#product .product__block02 .block__body .body__button {
  margin-top: 10px;
  text-align: right;
}

#sustainable {
  padding: 180px 0 150px;
}
#sustainable .en__title {
  font-size: 38rem;
  letter-spacing: 0.05em;
}
#sustainable .sustainable__block .en__title {
  width: 42%;
}
#sustainable .sustainable__block .block__body {
  width: 55%;
  padding-top: 50px;
}
#sustainable .sustainable__block .block__body .body__button {
  margin-top: 30px;
}
#sustainable .sustainable__map02 {
  position: relative;
}
#sustainable .sustainable__map02 svg {
  position: relative;
  transition: opacity 0.5s;
  z-index: 1;
}
#sustainable .sustainable__map02 svg a {
  position: relative;
  display: inline-block;
}
#sustainable .sustainable__map02 svg a:hover {
  opacity: 1;
  z-index: 10;
}
#sustainable .sustainable__map02 svg a:hover path {
  opacity: 1;
}
#sustainable .sustainable__map02 svg a.current svg {
  opacity: 1;
  z-index: 10;
}
#sustainable .sustainable__map {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}
#sustainable .sustainable__map::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 176px);
  margin: 0 -88px;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
#sustainable .sustainable__map.hover::before {
  opacity: 0.85;
}
#sustainable .sustainable__map.hover02::before {
  z-index: 5;
}
#sustainable .sustainable__map .map__bg {
  position: relative;
  width: calc(100% + 176px);
  margin: 0 -88px;
}
#sustainable .sustainable__map .map__bg img {
  transition: opacity 0.3s;
}
#sustainable .sustainable__map .map__item {
  position: absolute;
  display: inline-block;
  transition: opacity 0.3s;
  z-index: 1;
}
#sustainable .sustainable__map .map__item:hover {
  opacity: 1;
}
#sustainable .sustainable__map .map__item.current {
  opacity: 1;
  z-index: 10;
}
#sustainable .sustainable__map .map__item img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#sustainable .sustainable__map .map__item.item01 {
  top: 88px;
  left: calc(50% - 47px);
}
#sustainable .sustainable__map .map__item.item02 {
  top: 117px;
  left: calc(50% + 150px);
}
#sustainable .sustainable__map .map__item.item03 {
  top: 187px;
  left: calc(50% + 304px);
}
#sustainable .sustainable__map .map__item.item04 {
  top: 362px;
  left: calc(50% + 30px);
}
#sustainable .sustainable__map .map__item.item05 {
  top: 365px;
  left: calc(50% - 500px);
}
#sustainable .sustainable__map .map__item.item06 {
  top: 413px;
  left: calc(50% - 200px);
}

#blog {
  padding: 150px 0 210px;
  background: url(../images/common/bg_dots.png) center top;
}
#blog .slick-prev,
#blog .slick-next {
  top: auto;
  bottom: 40px;
}
#blog .slick-prev::before,
#blog .slick-next::before {
  font-family: "Font Awesome 6 Free";
  font-size: 30rem;
  color: #555;
}
#blog .slick-prev:hover::before,
#blog .slick-next:hover::before {
  color: #00A352;
}
#blog .slick-prev {
  left: 940px;
}
#blog .slick-prev::before {
  content: "\f104";
}
#blog .slick-next {
  left: 980px;
  right: auto;
}
#blog .slick-next::before {
  content: "\f105";
}
#blog .blog__slide {
  width: calc(50% + 500px);
  margin-left: auto;
  margin-bottom: 0;
  padding-bottom: 80px;
  overflow: hidden;
}
#blog .blog__slide .slick-dots {
  bottom: 0;
  max-width: 1000px;
}
#blog .blog__slide .slick-list {
  max-width: 1044px;
  overflow: visible;
}
#blog .blog__slide > .slide__item:not(:first-child) {
  display: none;
}
#blog .blog__slide .slide__item {
  padding-right: 44px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#blog .blog__slide .slide__item a {
  display: block;
  color: #000;
  text-decoration: none;
}
#blog .blog__slide .slide__item a:hover {
  color: #00A352;
}
#blog .blog__slide .slide__item .item__pic {
  margin-bottom: 20px;
}
#blog .blog__slide .slide__item .item__pic img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 304/190;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .blog__slide .slide__item .item__body .time {
  font-size: 14rem;
}
#blog .blog__slide .slide__item .item__body .title {
  margin: 5px 0 0;
  font-size: 18rem;
  font-weight: bold;
  line-height: 1.88;
  letter-spacing: 0.05em;
}
#blog .blog__button {
  position: relative;
  margin-top: 20px;
  text-align: right;
}
#blog .blog__button + .en__title {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .en__title {
    margin-bottom: 25px;
    font-size: 28rem;
    letter-spacing: 0.05em;
  }
  .en__title .f_sserif {
    margin-bottom: 10px;
    font-size: 18rem;
  }
  .en__title .f_sserif .icon {
    margin-right: 10px;
  }
  #top_mainvisual .mv__slide .slide__item img {
    aspect-ratio: 1/1;
  }
  #top_mainvisual .mv__title {
    left: 6%;
    top: 50%;
    max-width: 92%;
    transform: translateY(-50%);
  }
  #top_mainvisual .mv__title .title__main {
    font-size: 28rem;
  }
  #top_mainvisual .mv__title .title__sub {
    margin-top: 20px;
    font-size: 14rem;
    line-height: 1.8;
  }
  #top_mainvisual .mv__scroll {
    display: none;
  }
  #top_mainvisual .mv__news {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    background: url(../images/common/bg_dots.png) center top;
    font-size: 14rem;
  }
  #top_mainvisual .mv__news a {
    flex-wrap: wrap;
    padding-right: 30px;
  }
  #top_mainvisual .mv__news a:hover {
    color: #000;
  }
  #top_mainvisual .mv__news .title {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
  #event {
    padding: 50px 0 80px;
  }
  #event .event__slide--arrow {
    top: 35px;
    right: 15px;
    width: 85px;
  }
  #event .event__slide--arrow .slick-arrow {
    width: 40px;
    height: 40px;
  }
  #event .event__slide--arrow .slick-arrow:hover {
    background: none;
    color: #f5a500;
  }
  #event .event__slide--arrow .slick-arrow.next {
    background: #f5a500;
    color: #fff;
  }
  #event .event__slide {
    padding-bottom: 45px;
  }
  #event .event__slide .slick-dots {
    bottom: -18px;
  }
  #event .event__slide .slide__item .item__pic a:hover {
    opacity: 1;
  }
  #event .event__slide .slide__item .item__body {
    margin-top: 20px;
    padding-left: 0;
  }
  #event .event__slide .slide__item .item__body a:hover {
    color: #000;
  }
  #event .event__slide .slide__item .item__body .time {
    position: static;
    width: 130px;
    margin-bottom: 10px;
    font-size: 14rem;
  }
  #event .event__slide .slide__item .item__body .title {
    margin-bottom: 10px;
    font-size: 20rem;
  }
  #event .event__slide .slide__item .item__body .text {
    margin-bottom: 0;
  }
  #event .event__button {
    margin-top: 35px;
  }
  #mission {
    padding: 50px 0 50px;
    background: url(../images/top/mission_bg01.svg) no-repeat center top;
    background-size: 92%;
  }
  #mission .mission__block .block__pic {
    width: 100%;
    text-align: center;
  }
  #mission .mission__block .block__pic img {
    max-width: 80%;
  }
  #mission .mission__block .block__body {
    width: 100%;
    margin-top: 10px;
  }
  #mission .mission__block .block__body .body__title {
    margin-bottom: 15px;
    font-size: 24rem;
    letter-spacing: 0.02em;
  }
  #mission .mission__block .block__body .body__button {
    margin-top: 35px;
    text-align: right;
  }
  #feature {
    padding: 50px 0 50px;
  }
  #feature .feature__block .en__title {
    width: 100%;
  }
  #feature .feature__block .block__body {
    width: 100%;
  }
  #feature .feature__block .block__body .body__title {
    margin-bottom: 10px;
    font-size: 24rem;
  }
  #feature .feature__block .block__body .body__button {
    margin-top: 20px;
  }
  #feature .feature__pic {
    position: relative;
    height: 100vw;
    margin-top: 50px;
    background: url(../images/top/feature_bg02.png) no-repeat center, url(../images/top/feature_bg01.jpg) no-repeat center;
    background-size: 90vw, auto 100%;
  }
  #feature .feature__pic .pic__title {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    margin-top: -5vw;
    font-size: 6vw;
    letter-spacing: 0.05em;
  }
  #feature .feature__pic .pic__title img {
    margin-top: 2vw;
  }
  #feature .feature__pic .pic__circle {
    width: 44vw;
    height: 44vw;
    padding: 2vw;
    font-size: 3.25vw;
    line-height: 1.4;
    letter-spacing: 0;
    transform: translate(-50%, -50%);
  }
  #feature .feature__pic .pic__circle.circle01 {
    bottom: 38vw;
  }
  #feature .feature__pic .pic__circle.circle02 {
    left: 25vw;
    top: 87vw;
  }
  #feature .feature__pic .pic__circle.circle03 {
    left: 75vw;
    top: 87vw;
  }
  #feature .feature__pic .pic__circle .circle__title {
    margin-bottom: 2vw;
    font-size: 1.75em;
    line-height: 1.2;
  }
  #feature .feature__pic .pic__circle .circle__title .icon {
    width: 5vw;
    height: auto;
    margin-bottom: 1vw;
  }
  #feature .feature__pic .pic__circle .circle__text {
    font-size: 11rem;
  }
  #feature .feature__pic .pic__circle .circle__arrow {
    width: 5vw;
    height: auto;
    margin-top: 2vw;
  }
  #feature .feature__slide {
    margin-top: 80px;
  }
  #feature .feature__slide .slide__item {
    padding-right: 10px;
  }
  .feature__modal {
    width: 90vw;
    height: auto;
    padding: 40px 20px;
    background: url(../images/top/feature_bg03.svg) no-repeat center, #00A352;
    background-size: 250px;
    border-radius: 30px;
  }
  .feature__modal .feature__modal__block .block__pic {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .feature__modal .feature__modal__block .block__pic img {
    max-width: 60%;
    height: auto;
  }
  .feature__modal .feature__modal__block .block__body {
    width: 100%;
    margin-top: 10px;
    line-height: 1.6;
  }
  .feature__modal .feature__modal__block .block__body .body__title {
    margin-bottom: 20px;
    font-size: 19rem;
  }
  .feature__modal .feature__modal__block .block__body .body__title .f_sserif {
    margin-bottom: 5px;
  }
  .feature__modal .feature__modal__button {
    margin-top: 30px;
  }
  #product {
    padding: 50px 0 50px;
  }
  #product::before {
    width: 100%;
    height: 100%;
    background: url(../images/common/bg_dots.png) center top;
  }
  #product .product__block {
    padding-bottom: 50px;
  }
  #product .product__block .block__body {
    width: 100%;
  }
  #product .product__block .block__body > * {
    max-width: 310px;
  }
  #product .product__block .block__slide {
    width: 100%;
  }
  #product .product__slide--pager {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    margin-top: 20px;
    font-size: 15rem;
    letter-spacing: 0.02em;
  }
  #product .product__slide--pager li {
    padding: 6px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #fff;
  }
  #product .product__slide--pager li.current {
    background: #00A352;
    color: #fff;
  }
  #product .product__slide--pager li + li {
    margin-top: 0;
  }
  #product .product__slide {
    margin-top: 30px;
  }
  #product .product__slide .slide__item {
    position: absolute;
    left: 0;
    top: 0;
  }
  #product .product__slide .slide__item .item__pic {
    margin-bottom: 15px;
  }
  #product .product__slide .slide__item .item__body {
    display: block;
  }
  #product .product__slide .slide__item .item__body .body__title {
    margin-bottom: 15px;
  }
  #product .product__slide .slide__item .item__body .body__list {
    width: 100%;
  }
  #product .product__block02 {
    padding: 0 15px;
    background: none;
  }
  #product .product__block02 .block__pic {
    width: 100%;
  }
  #product .product__block02 .block__pic img {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }
  #product .product__block02 .block__body {
    width: 100%;
    padding: 30px 15px;
    background: #fff;
    letter-spacing: 0;
  }
  #product .product__block02 .block__body .body__container {
    max-width: 100%;
  }
  #product .product__block02 .block__body .body__title {
    margin-bottom: 10px;
    font-size: 32rem;
  }
  #product .product__block02 .block__body .body__button {
    margin-top: 10px;
  }
  #sustainable {
    padding: 50px 0 50px;
  }
  #sustainable .en__title {
    font-size: 30rem;
    letter-spacing: 0.05em;
  }
  #sustainable .sustainable__block .en__title {
    width: 100%;
  }
  #sustainable .sustainable__block .block__body {
    width: 100%;
    padding-top: 0;
  }
  #sustainable .sustainable__block .block__body .body__button {
    margin-top: 30px;
    text-align: right;
  }
  #sustainable .sustainable__map {
    width: 100%;
    margin: 40px 0 0 0;
  }
  #sustainable .sustainable__map::before {
    content: none;
  }
  #sustainable .sustainable__map .map__bg {
    width: 100%;
    margin: 0;
  }
  #sustainable .sustainable__map .map__bg img {
    width: 100%;
    height: auto;
  }
  #sustainable .sustainable__map .map__item {
    position: absolute;
  }
  #sustainable .sustainable__map .map__item.hover {
    opacity: 1;
  }
  #sustainable .sustainable__map .map__item.current {
    opacity: 1;
  }
  #sustainable .sustainable__map .map__item img {
    height: auto;
  }
  #sustainable .sustainable__map .map__item.item01 {
    top: 12%;
    left: 46.4%;
    width: 14.8%;
  }
  #sustainable .sustainable__map .map__item.item02 {
    top: 16.4%;
    left: 62.8%;
    width: 12.67%;
  }
  #sustainable .sustainable__map .map__item.item03 {
    top: 25.6%;
    left: 76%;
    width: 15.48%;
  }
  #sustainable .sustainable__map .map__item.item04 {
    top: 50%;
    left: 52.5%;
    width: 16.156%;
  }
  #sustainable .sustainable__map .map__item.item05 {
    top: 49%;
    left: 8%;
    width: 25%;
  }
  #sustainable .sustainable__map .map__item.item06 {
    top: 57%;
    left: 32%;
    width: 13.52%;
  }
  #blog {
    padding: 50px 0 80px;
  }
  #blog .slick-prev {
    left: auto;
    right: 50px;
  }
  #blog .slick-next {
    left: auto;
    right: 10px;
  }
  #blog .blog__slide {
    width: calc(100% - 15px);
    margin-left: auto;
    padding-bottom: 80px;
  }
  #blog .blog__slide .slick-dots {
    bottom: 0;
    width: calc(100% - 15px);
  }
  #blog .blog__slide .slick-list {
    max-width: 80%;
  }
  #blog .blog__slide > .slide__item:not(:first-child) {
    display: none;
  }
  #blog .blog__slide .slide__item {
    padding-right: 20px;
  }
  #blog .blog__slide .slide__item a:hover {
    color: #000;
  }
  #blog .blog__slide .slide__item .item__pic {
    margin-bottom: 15px;
  }
  #blog .blog__slide .slide__item .item__body .time {
    font-size: 14rem;
  }
  #blog .blog__slide .slide__item .item__body .title {
    font-size: 16rem;
    letter-spacing: 0.05em;
  }
  #blog .blog__button {
    position: relative;
    margin-top: 20px;
    text-align: right;
  }
  #blog .blog__button + .en__title {
    margin-top: 60px;
  }
}