@charset "UTF-8";
/****************************************************

Break Point Settings

****************************************************/
/* Visivility depends on the device */
.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

/****************************************************

format

****************************************************/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: clamp(14px, 4.375vw, 18px);
  line-height: 1.8;
}

body {
  margin: 0 auto;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-size: clamp(24px, 7.5vw, 36px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 500px;
    width: calc(100% - 40px);
  }
}

a {
  transition: ease 0.3s;
  opacity: 1;
}

a:hover {
  opacity: 0.5;
}

/* destyle.cssで消えたチェックボックスを復旧する */
input[type="checkbox"] {
  -webkit-appearance: checkbox;
  /* Safari / Chrome 用 */
  appearance: checkbox;
  margin-right: 0.5em;
  width: auto;
  height: auto;
}

.fuwa {
  opacity: 0;
  transform: translateY(20px);
  transition: ease-in-out 0.7s;
}

.fuwa.d1 {
  transition-delay: 0.5s;
}

.fuwa.d2 {
  transition-delay: 1.0s;
}

.fuwa.active {
  opacity: 1;
  transform: translateY(0);
}

/****************************************************

基本設計

****************************************************/
:root {
  --main-color: #8CB55C;
  --sub-color: #AEDD77;
  --text-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
}

.header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  font-size: clamp(10px, 1.26vw, 16px);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .header {
    height: 50px;
    align-content: center;
  }
}

.header .h-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .h-inner .logo-main {
  font-size: 1.4em;
  font-weight: 900;
  color: var(--main-color);
  letter-spacing: 0.05em;
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .header .h-inner .logo-main {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 768px) {
  .header .h-inner .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 4em 2em;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 16px;
    text-align: center;
    z-index: 10;
    transform: translateX(101%);
    transition: ease 0.5s;
  }
  .header .h-inner .nav.active {
    transform: translateX(0);
  }
}

.header .h-inner .nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2em;
}

@media screen and (max-width: 768px) {
  .header .h-inner .nav ul {
    display: block;
    width: 100%;
    max-width: 400px;
  }
}

.header .h-inner .nav ul a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  .header .h-inner .nav ul a {
    display: block;
    width: 100%;
    padding: 1em 0;
    border-bottom: 1px solid var(--main-color);
  }
}

.header .h-inner .nav ul .nav-contact a {
  position: relative;
  font-size: 1em;
  background: var(--main-color);
  color: #fff;
  padding: 1.2em 0 1.3em 2em;
  width: 11em;
  display: block;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .header .h-inner .nav ul .nav-contact a {
    width: 100%;
  }
}

.header .h-inner .nav ul .nav-contact a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% - 2.75em);
  width: 1.5em;
  height: auto;
  aspect-ratio: 3/2;
  transform: translate(-50%, -50%);
  background: url(../img/icon-mail.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .header .h-inner .menu-open {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    z-index: 11;
    display: block;
  }
  .header .h-inner .menu-open span {
    position: relative;
    width: 60%;
    height: 3px;
    background: #fff;
    display: block;
    margin: 0 auto 0;
  }
  .header .h-inner .menu-open span::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: block;
  }
  .header .h-inner .menu-open span::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: block;
  }
}

.fv {
  position: relative;
  width: 100%;
  padding-bottom: min(7.5vw, 160px);
  margin-top: 5em;
}

@media screen and (max-width: 768px) {
  .fv {
    padding-bottom: 12.5vw;
  }
}

.fv_h1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: transparent;
  transform: translateY(-500%);
}

.fv_slider {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: -1;
  opacity: 0;
}

.fv_slider.slick-initialized {
  opacity: 1;
}

.fv_slider .slick-list {
  margin: 0;
}

.fv_slider .slick-slide {
  height: 18.75vw;
  max-height: 400px;
  margin: 0 0.75vw;
  border-radius: 1vw;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .fv_slider .slick-slide {
    height: 26vw;
    border-radius: 3vw;
  }
}

.fv_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv_slider video {
  width: 140%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  transform: translate(-15%, -15%);
}

.fv_wrap {
  width: 96%;
  max-width: 1920px;
  display: flex;
  justify-content: center;
  font-size: min(2vw, 20px);
  margin: -2.5em auto 0;
}

@media screen and (max-width: 768px) {
  .fv_wrap {
    flex-wrap: wrap;
    font-size: min(3.75vw, 20px);
    margin: -1.5em auto 0;
  }
}

.fv_wrap .main_img {
  width: 57%;
}

@media screen and (max-width: 768px) {
  .fv_wrap .main_img {
    width: 80%;
  }
}

.fv_wrap .textbox {
  width: 43%;
  padding: 0 0 0 1em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .fv_wrap .textbox {
    width: 100%;
    padding: 0;
  }
}

.fv_wrap .textbox img {
  width: 80%;
  margin-top: 6em;
}

@media screen and (max-width: 768px) {
  .fv_wrap .textbox img {
    width: 70%;
    margin-top: 0;
  }
}

.fv_wrap .textbox .cross_text {
  text-align: center;
  margin: 1em 0 3em;
  color: var(--main-color);
  font-weight: 500;
  letter-spacing: 0.2em;
}

.fv_wrap .textbox .cross_text span {
  position: relative;
  display: inline-block;
  width: 3.4em;
  height: 3.4em;
  transform: translateY(36%);
  margin: 0 1em;
}

.fv_wrap .textbox .cross_text span::before, .fv_wrap .textbox .cross_text span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--text-color);
  transform: translateX(-50%) rotate(45deg) scale(1.3);
}

.fv_wrap .textbox .cross_text span::after {
  transform: translateX(-50%) rotate(135deg) scale(1.3);
}

.fv_wrap .textbox h2 {
  font-size: 1.4em;
  white-space: nowrap;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 0;
  margin-left: -5em;
}

@media screen and (max-width: 768px) {
  .fv_wrap .textbox h2 {
    margin: 0 auto;
    font-size: 1.2em;
  }
}

.sec {
  position: relative;
  width: 100%;
  padding: min(7.5vw, 160px) 0;
  font-size: clamp(10px, 1.26vw, 16px);
}

@media screen and (max-width: 768px) {
  .sec {
    padding: 12.5vw 0;
    font-size: min(4.375vw, 16px);
  }
}

.sec .ch {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-bottom: min(4.7vw, 100px);
}

.sec .ch.fs {
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .sec .ch {
    flex-wrap: wrap;
  }
}

.sec .ch .sec_title {
  width: 25em;
}

@media screen and (max-width: 768px) {
  .sec .ch .sec_title {
    width: 100%;
  }
}

.sec .ch .sec_title h2 {
  font-weight: 900;
  font-size: 7.5em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sec .ch .sec_title h2 {
    font-size: 4em;
  }
}

.sec .ch .sec_title p {
  font-size: 1.75em;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.6em;
}

@media screen and (max-width: 768px) {
  .sec .ch .sec_title p {
    font-size: 1.2em;
    margin-top: 0.5em;
  }
}

.sec .ch .sec_explain {
  width: 40em;
}

@media screen and (max-width: 768px) {
  .sec .ch .sec_explain {
    width: 100%;
  }
}

.sec .ch .sec_explain p {
  text-align: justify;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec .ch .sec_explain p {
    margin-top: 1em;
  }
}

.sec .ch .sec_explain .strong {
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .sec .ch .sec_explain .strong {
    font-size: 1.4em;
    margin-top: 1em;
    margin-bottom: 0;
  }
}

.about {
  background: var(--main-color);
  border-radius: 0;
  transition: linear 0.3s;
}

.about.active {
  border-radius: 12.5vw 12.5vw 0 0;
}

@media screen and (max-width: 768px) {
  .about.active {
    border-radius: 12.5vw 12.5vw 0 0;
  }
}

.about .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .about .flex {
    flex-wrap: wrap;
  }
}

.about .flex .flex-wrap {
  width: 47.5%;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap {
    width: 100%;
  }
}

.about .flex .flex-wrap .movie-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1em;
}

.about .flex .flex-wrap .movie-wrap video {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.about .flex .flex-wrap .movie-wrap video.scale {
  transform: scale(1.2);
}

.about .flex .flex-wrap .movie_text {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 1em auto 2em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .movie_text {
    font-size: 1em;
  }
}

.about .flex .flex-wrap .wrap {
  position: relative;
  width: 72%;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

.about .flex .flex-wrap .wrap .boxtext {
  position: relative;
  background: #fff;
  color: var(--main-color);
  padding: 0.8em 0;
  margin-top: 1em;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext {
    margin-top: 0.5em;
    font-size: 0.8em;
  }
}

.about .flex .flex-wrap .wrap .boxtext::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 95%;
  width: 2px;
  height: 3.5em;
  background: #fff;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext::before {
    height: 2.5em;
  }
}

.about .flex .flex-wrap .wrap .boxtext.b2 {
  margin-top: 8em;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext.b2 {
    margin-top: 6em;
  }
}

.about .flex .flex-wrap .wrap .boxtext.b2::before {
  height: 8.5em;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext.b2::before {
    height: 6.5em;
  }
}

.about .flex .flex-wrap .wrap .boxtext.noborder {
  width: 54%;
  margin: 1.5em auto 0;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext.noborder {
    margin-top: 0.5em;
  }
}

.about .flex .flex-wrap .wrap .boxtext.noborder::before {
  content: none;
}

.about .flex .flex-wrap .wrap .text-wrap {
  position: absolute;
  left: 52%;
  text-align: left;
  margin-top: 2em;
  display: flex;
  align-items: center;
  width: 12em;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .text-wrap {
    margin-top: 1em;
    font-size: 0.8em;
  }
}

.about .flex .flex-wrap .wrap .text-wrap .strong {
  font-size: 1.5em;
  font-weight: 900;
  margin-right: 0.5em;
}

.about .flex .flex-wrap .wrap .flex2 {
  display: flex;
  justify-content: space-between;
}

.about .flex .flex-wrap .wrap .flex2 .flex-wrap2 {
  position: relative;
  width: 47.5%;
}

.about .flex .flex-wrap .wrap .flex2 .flex-wrap2 .boxtext {
  margin-top: 3em;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .flex2 .flex-wrap2 .boxtext {
    margin-top: 2em;
  }
}

.about .flex .flex-wrap .wrap .flex2 .flex-wrap2 .text-wrap2 {
  position: absolute;
  top: 9.5em;
  left: 102%;
  width: 7em;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .flex2 .flex-wrap2 .text-wrap2 {
    margin-top: -2em;
    font-size: 0.8em;
  }
}

.about .flex .flex-wrap .wrap .flex2 .flex-wrap2 .text-wrap2 .strong {
  font-size: 1.5em;
  font-weight: 900;
  margin-left: 0;
  margin-bottom: 0.3em;
}

.about .flex .flex-wrap .wrap .flex2 .flex-wrap2 .text-wrap2 p {
  margin-left: 1.8em;
}

.about .flex .flex-wrap .wrap .boxtext2 {
  position: relative;
  background: var(--main-color);
  border: solid 2px #fff;
  color: #fff;
  padding: 0.8em 0;
  margin: 4em auto 0;
  z-index: 1;
  width: 54%;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext2 {
    font-size: 0.8em;
    width: 70%;
    margin-top: 3em;
  }
}

.about .flex .flex-wrap .wrap .boxtext2::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 50%;
  height: 2em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext2::before {
    height: 1.5em;
    width: 40%;
  }
}

.about .flex .flex-wrap .wrap .boxtext2::after {
  content: '';
  position: absolute;
  left: 100%;
  top: -4.15em;
  height: 2.3em;
  width: 2px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .about .flex .flex-wrap .wrap .boxtext2::after {
    height: 1.8em;
    left: 89%;
    top: -3.15em;
  }
}

.feature {
  position: relative;
  background: var(--main-color);
  z-index: 1;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0;
  z-index: -1;
  transition: linear 0.3s;
}

.feature.active::before {
  border-radius: 12.5vw 12.5vw 0 0;
}

@media screen and (max-width: 768px) {
  .feature.active::before {
    border-radius: 12.5vw 12.5vw 0 0;
  }
}

.feature .ch .sec_title h2, .feature .ch .sec_title p {
  color: var(--text-color);
}

.feature .ch .sec_explain p {
  color: var(--text-color);
}

.feature .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3em 0;
}

@media screen and (max-width: 768px) {
  .feature .flex {
    flex-wrap: wrap;
    gap: 2em 0;
  }
}

.feature .flex .flex-wrap {
  width: 47%;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .feature .flex .flex-wrap {
    width: 100%;
    display: block;
  }
}

.feature .flex .flex-wrap .wrap1 {
  width: 23%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .feature .flex .flex-wrap .wrap1 {
    width: 100%;
    display: flex;
    gap: 0.5em;
    margin-bottom: -1.2em;
  }
}

.feature .flex .flex-wrap .wrap1 p {
  color: var(--main-color);
  white-space: nowrap;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.5em;
}

@media screen and (max-width: 768px) {
  .feature .flex .flex-wrap .wrap1 p {
    font-size: 1.2em;
    margin-top: 1.2em;
  }
}

.feature .flex .flex-wrap .wrap1 p.number {
  font-weight: 900;
  font-size: 6.25em;
  line-height: 1;
  margin-top: 0.4em;
}

@media screen and (max-width: 768px) {
  .feature .flex .flex-wrap .wrap1 p.number {
    margin-top: 0;
    font-size: 5em;
  }
}

.feature .flex .flex-wrap .wrap2 {
  width: 77%;
}

@media screen and (max-width: 768px) {
  .feature .flex .flex-wrap .wrap2 {
    width: 90%;
    margin-left: 10%;
  }
}

.feature .flex .flex-wrap .wrap2 .imgbox {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 4.5;
  background: #8CB55C;
  border-radius: 1.5em;
}

.feature .flex .flex-wrap .wrap2 .imgbox.i01 {
  background: url(../img/top_img03a.webp) no-repeat center/cover;
}

.feature .flex .flex-wrap .wrap2 .imgbox.i02 {
  background: url(../img/top_img03b.webp) no-repeat center/cover;
}

.feature .flex .flex-wrap .wrap2 .imgbox.i03 {
  background: url(../img/top_img03c.webp) no-repeat center/cover;
}

.feature .flex .flex-wrap .wrap2 .imgbox.i04 {
  background: url(../img/top_img03d.webp) no-repeat center/cover;
}

.feature .flex .flex-wrap .wrap2 p {
  color: var(--text-color);
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
  margin-top: 0.6em;
}

.spec {
  background: var(--main-color);
  border-radius: 0;
  transition: linear 0.3s;
}

@media screen and (max-width: 768px) {
  .spec .ch {
    padding-bottom: 0;
  }
}

.spec.active {
  border-radius: 12.5vw 12.5vw 0 0;
}

@media screen and (max-width: 768px) {
  .spec.active {
    border-radius: 12.5vw 12.5vw 0 0;
  }
}

.spec h3 {
  font-size: 1.75em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.8em;
}

@media screen and (max-width: 768px) {
  .spec h3 {
    font-size: 1.3em;
    margin-top: 2em;
    margin-bottom: 1em;
  }
}

.spec .flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4em;
}

@media screen and (max-width: 768px) {
  .spec .flex {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

.spec .flex .flex-wrap {
  width: 47.5%;
}

@media screen and (max-width: 768px) {
  .spec .flex .flex-wrap {
    width: 100%;
  }
}

.spec .flex .flex-wrap .flex2 {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1em;
  padding: 0.5em 2em;
}

@media screen and (max-width: 768px) {
  .spec .flex .flex-wrap .flex2 {
    flex-wrap: wrap;
    padding: 1.5em;
  }
}

.spec .flex .flex-wrap .flex2 p {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  width: 8em;
}

.spec .flex .flex-wrap .flex2 p span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .spec .flex .flex-wrap .flex2 p {
    font-size: min(4.375vw, 24px);
    order: 2;
    width: 100%;
  }
}

.spec .flex .flex-wrap .flex2 p .span.pc {
  display: inline-block;
}

.spec .flex .flex-wrap .flex2 .img-wrap {
  width: calc(100% - 15em);
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .spec .flex .flex-wrap .flex2 .img-wrap {
    order: 1;
    width: 90%;
    height: auto;
    aspect-ratio: auto;
    margin: 0 auto;
  }
}

.spec .flex .flex-wrap .flex2 .img-wrap img {
  width: 100%;
  height: auto;
}

.spec .wrap {
  width: 100%;
  background: #fff;
  border-radius: 1em;
  padding: 2em;
}

@media screen and (max-width: 768px) {
  .spec .wrap {
    margin-top: 0.3em;
    width: 100vw;
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    padding: 6vw 0;
  }
  .spec .wrap .table-wrap-sp {
    overflow-x: scroll;
    width: 100%;
  }
  .spec .wrap p.sp {
    font-size: 0.8em;
    margin-left: 5%;
    margin-bottom: 0.3em;
  }
}

.spec .wrap h4 {
  font-size: 1.5em;
  margin-bottom: 0.7em;
}

.spec .wrap table {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .spec .wrap table {
    width: 42em;
    margin: 0 5%;
  }
}

.spec .wrap table th, .spec .wrap table td {
  width: 25%;
  text-align: center;
  font-weight: 700;
  border: solid 1px #777;
  padding: 0.3em 0;
}

.spec .wrap table th {
  background: rgba(51, 51, 51, 0.1);
}

.spec .wrap table th.bg {
  background: rgba(174, 221, 119, 0.1);
}

.flow {
  position: relative;
  width: 100%;
  background: var(--main-color);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .flow {
    font-size: min(4.375vw, 24px);
  }
}

.flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0;
  z-index: -1;
  transition: linear 0.3s;
}

.flow.active::before {
  border-radius: 12.5vw 12.5vw 0 0;
}

@media screen and (max-width: 768px) {
  .flow.active::before {
    border-radius: 12.5vw 12.5vw 0 0;
  }
}

.flow .ch .sec_title h2, .flow .ch .sec_title p {
  color: var(--text-color);
}

.flow .ch .sec_explain p {
  color: var(--text-color);
}

.flow .wrap {
  position: relative;
  background: rgba(174, 221, 119, 0.2);
  width: 100%;
  height: auto;
  aspect-ratio: 20 / 13;
  border-radius: 1em;
  padding: 2em;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .flow .wrap {
    width: 100vw;
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    padding: 1em;
    padding: 5%;
    aspect-ratio: 1 / 2.95;
  }
}

.flow .wrap .imgarea {
  position: relative;
  width: 100%;
  height: 100%;
}

.flow .wrap .imgarea .imgbox {
  position: relative;
  width: 18%;
  height: auto;
  aspect-ratio: 202/159;
  background: #ccc;
}

.flow .wrap .imgarea .imgbox::after {
  content: '食 材';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  font-weight: 600;
  color: #fff;
  background: #551411;
  font-size: 1em;
  line-height: 1;
  padding: 0.4em 0.5em 0.5em;
  z-index: 2;
  white-space: nowrap;
}

.flow .wrap .imgarea .imgbox.i07 {
  position: absolute;
  bottom: 0;
  left: 32%;
  margin-bottom: 1em;
  opacity: 0;
  transform: translateY(10%);
  transition: 0.3s 3.0s;
  z-index: 1;
}

.flow .wrap .imgarea .imgbox.i07::after {
  content: '有機堆肥';
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .imgbox.i07 {
    width: 40%;
    bottom: auto;
    top: 200vw;
    left: 40%;
  }
}

.flow .wrap .imgarea .imgbox.i07 .imgbox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../img/top_img05i.webp) no-repeat center/cover;
}

.flow .wrap .imgarea .imgbox.i07 .arrow::before {
  content: '';
  position: absolute;
  right: 99%;
  top: 45%;
  height: 1.0em;
  width: 65%;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: right;
  transform: scale(0, 1);
  transition: 0.3s 3.4s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .imgbox.i07 .arrow::before {
    transform-origin: top;
    transform: scale(1, 0);
    height: 27vw;
    width: 3.5vw;
    left: 17.5vw;
  }
}

.flow .wrap .imgarea .imgbox.i07 .arrow::after {
  content: '';
  position: absolute;
  right: 162%;
  top: 39%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(180deg);
  z-index: -1;
  opacity: 0;
  transition: 0.1s 3.6s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .imgbox.i07 .arrow::after {
    width: 7.5vw;
    height: 7.5vw;
    left: 15.5vw;
    top: 37vw;
    transform: rotate(90deg);
  }
}

.flow .wrap .imgarea .img-block01 {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 36%;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block01 {
    width: 100%;
  }
}

.flow .wrap .imgarea .img-block01 .imgbox {
  width: 50%;
}

.flow .wrap .imgarea .img-block01 .imgbox.i01 {
  background: url(../img/top_img05c.webp) no-repeat center/cover;
}

.flow .wrap .imgarea .img-block01 .imgbox.i01::after {
  content: '食 材';
}

.flow .wrap .imgarea .img-block01 .imgbox.i02 {
  background: url(../img/top_img05d.webp) no-repeat center/cover;
}

.flow .wrap .imgarea .img-block01 .imgbox.i02::after {
  content: '調 理';
}

.flow .wrap .imgarea .img-block01::before {
  content: '';
  position: absolute;
  left: 99%;
  top: 25%;
  height: 1.0em;
  width: 15%;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: left;
  transform: scale(0, 1);
  transition: ease 0.3s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block01::before {
    transform-origin: center top;
    transform: scale(1, 0);
    height: 36vw;
    width: 3.5vw;
    left: 43vw;
  }
}

.flow .wrap .imgarea .img-block01::after {
  content: '';
  position: absolute;
  left: 111%;
  top: 19%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  z-index: -1;
  opacity: 0;
  transition: ease 0.1s 0.2s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block01::after {
    transform-origin: center top;
    width: 7.5vw;
    height: 7.5vw;
    left: 44.5vw;
    top: 46vw;
    transform: rotate(90deg);
  }
}

.flow .wrap .imgarea .img-block02 {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  width: 36%;
  margin-bottom: 1em;
  opacity: 0;
  transform: translateY(10%);
  transition: 0.3s 2.2s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block02 {
    width: 80%;
    left: 20%;
    bottom: auto;
    top: 155vw;
  }
}

.flow .wrap .imgarea .img-block02 .imgbox {
  width: 50%;
}

.flow .wrap .imgarea .img-block02 .imgbox.i03 {
  background: url(../img/top_img05e.webp) no-repeat center/cover;
}

.flow .wrap .imgarea .img-block02 .imgbox.i03::after {
  content: '堆肥製造センター';
  white-space: nowrap;
  position: absolute;
  left: 100%;
  bottom: 0;
  transform: translate(-50%, 50%);
  font-weight: 600;
  color: #fff;
  background: #551411;
  font-size: 1em;
  line-height: 1;
  padding: 0.4em 0.5em 0.5em;
  z-index: 2;
}

.flow .wrap .imgarea .img-block02 .imgbox.i04 {
  background: url(../img/top_img05f.webp) no-repeat center/cover;
}

.flow .wrap .imgarea .img-block02 .imgbox.i04::after {
  content: none;
}

.flow .wrap .imgarea .img-block02::before {
  content: '';
  position: absolute;
  right: 99%;
  top: 45%;
  height: 1.0em;
  width: 34%;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: right;
  transform: scale(0, 1);
  transition: 0.3s 2.6s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block02::before {
    transform-origin: top;
    transform: scale(1, 0);
    height: 27vw;
    width: 3.5vw;
    left: 36.5vw;
  }
}

.flow .wrap .imgarea .img-block02::after {
  content: '';
  position: absolute;
  right: 131%;
  top: 39%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(180deg);
  z-index: -1;
  opacity: 0;
  transition: 0.1s 2.8s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block02::after {
    width: 7.5vw;
    height: 7.5vw;
    left: 34.5vw;
    top: 37vw;
    transform: rotate(90deg);
  }
}

.flow .wrap .imgarea .img-block03 {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 18%;
  margin-bottom: 1em;
  opacity: 0;
  transform: translateY(10%);
  transition: 0.3s 3.6s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block03 {
    width: 100%;
    left: 0;
    top: 245vw;
    bottom: auto;
    display: flex;
    justify-content: space-between;
  }
}

.flow .wrap .imgarea .img-block03 .imgbox {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block03 .imgbox {
    width: 50%;
  }
}

.flow .wrap .imgarea .img-block03 .imgbox.i05 {
  background: url(../img/top_img05g.webp) no-repeat center/cover;
}

.flow .wrap .imgarea .img-block03 .imgbox.i05::after {
  content: none;
}

.flow .wrap .imgarea .img-block03 .imgbox.i06 {
  background: url(../img/top_img05h.webp) no-repeat center/cover;
}

.flow .wrap .imgarea .img-block03 .imgbox.i06::after {
  content: '農家へ還元';
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block03 .imgbox.i06::after {
    left: 0;
    transform: translate(-50%, 50%);
  }
}

.flow .wrap .imgarea .img-block03::before {
  content: '';
  position: absolute;
  right: 45%;
  bottom: 99%;
  height: 58%;
  width: 1.0em;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: bottom;
  transform: scale(1, 0);
  transition: 0.3s 4.0s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block03::before {
    right: auto;
    left: 5%;
    height: 202vw;
    width: 3.5vw;
  }
}

.flow .wrap .imgarea .img-block03::after {
  content: '';
  position: absolute;
  right: 40.5%;
  bottom: 152%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(-90deg);
  z-index: -1;
  opacity: 0;
  transition: 0.1s 4.2s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img-block03::after {
    right: auto;
    left: 2.9vw;
    bottom: 237vw;
    width: 7.5vw;
    height: 7.5vw;
  }
}

.flow .wrap .imgarea .img01 {
  position: absolute;
  top: 23%;
  left: 30%;
  width: 42%;
  display: block;
  opacity: 0;
  transform: translateY(10%);
  transition: linear 0.3s 1.2s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img01 {
    width: 50%;
    left: 20%;
    top: 85vw;
  }
}

.flow .wrap .imgarea .img01 img {
  width: 100%;
  height: auto;
}

.flow .wrap .imgarea .img01::after {
  content: '生ゴミ処理機';
  position: absolute;
  left: 56%;
  bottom: 5%;
  font-weight: 600;
  color: #fff;
  background: #551411;
  font-size: 1em;
  line-height: 1;
  padding: 0.4em 0.5em 0.5em;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img01::after {
    white-space: nowrap;
    left: 0;
    bottom: 10%;
  }
}

.flow .wrap .imgarea .img01 .arrow::before {
  content: '';
  position: absolute;
  right: 9%;
  top: 60%;
  height: 36%;
  width: 1.0em;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: top;
  transform: scale(1, 0);
  transition: 0.3s 1.6s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img01 .arrow::before {
    height: 43vw;
    width: 3.5vw;
    right: 4.5vw;
  }
}

.flow .wrap .imgarea .img01 .arrow::after {
  content: '';
  position: absolute;
  right: 7%;
  top: 92%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0;
  transition: 0.1s 1.8s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img01 .arrow::after {
    width: 7.5vw;
    height: 7.5vw;
    right: 2.5vw;
    top: 63vw;
  }
}

.flow .wrap .imgarea .img02 {
  position: absolute;
  top: -9%;
  right: -3%;
  width: 29%;
  display: block;
  opacity: 0;
  transform: translateY(10%);
  transition: linear 0.3s 1.2s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img02 {
    width: 45%;
    left: 60%;
    top: 95vw;
    right: auto;
  }
}

.flow .wrap .imgarea .img02 img {
  width: 100%;
  height: auto;
}

.flow .wrap .imgarea .img02::after {
  content: 'コンテナ式バイオ公衆トイレ';
  position: absolute;
  right: 10%;
  bottom: 5%;
  font-weight: 600;
  color: #fff;
  background: #551411;
  font-size: 1em;
  line-height: 1;
  padding: 0.4em 0.5em 0.5em;
  white-space: nowrap;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img02::after {
    white-space: wrap;
    width: 6em;
    padding: 0.5em 0.55em 0.5em 0.45em;
    bottom: 0;
  }
}

.flow .wrap .imgarea .img02 .arrow::before {
  content: '';
  position: absolute;
  right: 15%;
  top: 85%;
  height: 119%;
  width: 1.0em;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: top;
  transform: scale(1, 0);
  transition: 0.3s 1.6s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img02 .arrow::before {
    content: none;
  }
}

.flow .wrap .imgarea .img02 .arrow::after {
  content: '';
  position: absolute;
  right: 12%;
  top: 200%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0;
  transition: 0.1s 1.8s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img02 .arrow::after {
    content: none;
  }
}

.flow .wrap .imgarea .img03 {
  position: absolute;
  top: 33%;
  right: 7%;
  width: 16%;
  display: block;
  opacity: 0;
  transform: translateY(10%);
  transition: linear 0.3s 1.2s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img03 {
    width: 20%;
    left: 40%;
    right: auto;
    top: 115vw;
  }
}

.flow .wrap .imgarea .img03 img {
  width: 100%;
  height: auto;
}

.flow .wrap .imgarea .img03::after {
  content: 'バイオトイレ';
  position: absolute;
  left: 38%;
  bottom: -5%;
  font-weight: 600;
  color: #fff;
  background: #551411;
  font-size: 1em;
  line-height: 1;
  padding: 0.4em 0.5em 0.5em;
  white-space: nowrap;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img03::after {
    left: -3em;
  }
}

.flow .wrap .imgarea .img03 .arrow::before {
  content: '';
  position: absolute;
  right: 74%;
  top: 60%;
  height: 48%;
  width: 1.0em;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: top;
  transform: scale(1, 0);
  transition: 0.3s 1.6s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img03 .arrow::before {
    content: none;
  }
}

.flow .wrap .imgarea .img03 .arrow::after {
  content: '';
  position: absolute;
  right: 69%;
  top: 103%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0;
  transition: 0.1s 1.8s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .img03 .arrow::after {
    content: none;
  }
}

.flow .wrap .imgarea .flow-text01 {
  position: absolute;
  top: 0%;
  left: 43%;
  width: 25%;
  opacity: 0;
  transition: linear 0.3s 0.4s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .flow-text01 {
    width: 60%;
    left: 20%;
    top: 50vw;
  }
}

.flow .wrap .imgarea .flow-text01 img {
  width: 100%;
  height: auto;
  border-radius: 0.5em;
}

.flow .wrap .imgarea .flow-text01 .arrow1::before {
  content: '';
  position: absolute;
  right: 47%;
  top: 95%;
  height: 50%;
  width: 1.0em;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: top;
  transform: scale(1, 0);
  transition: linear 0.3s 0.8s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .flow-text01 .arrow1::before {
    height: 10vw;
    width: 3.5vw;
    right: 27vw;
  }
}

.flow .wrap .imgarea .flow-text01 .arrow1::after {
  content: '';
  position: absolute;
  right: 43.4%;
  top: 127%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(90deg);
  z-index: -1;
  opacity: 0;
  transition: linear 0.1s 1s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .flow-text01 .arrow1::after {
    width: 7.5vw;
    height: 7.5vw;
    right: 25vw;
    top: 27vw;
  }
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .flow-text01 .arrow2 {
    display: none;
  }
}

.flow .wrap .imgarea .flow-text01 .arrow2::before {
  content: '';
  position: absolute;
  left: 99%;
  top: 46%;
  height: 1.0em;
  width: 22%;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: left;
  transform: scale(0, 1);
  transition: linear 0.3s 0.8s;
}

.flow .wrap .imgarea .flow-text01 .arrow2::after {
  content: '';
  position: absolute;
  left: 117%;
  top: 36%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  z-index: -1;
  opacity: 0;
  transition: linear 0.1s 1s;
}

@media screen and (max-width: 768px) {
  .flow .wrap .imgarea .flow-text01 .arrow3 {
    display: none;
  }
}

.flow .wrap .imgarea .flow-text01 .arrow3::before {
  content: '';
  position: absolute;
  right: 15%;
  top: 87%;
  height: 215%;
  width: 1.0em;
  background: var(--sub-color);
  z-index: -1;
  transform-origin: left top;
  transform: rotate(-45deg) scale(1, 0);
  transition: linear 0.3s 0.8s;
}

.flow .wrap .imgarea .flow-text01 .arrow3::after {
  content: '';
  position: absolute;
  right: -49%;
  top: 227%;
  height: 2.2em;
  width: 2.2em;
  background: url(../img/icon-arrow02.webp) no-repeat center/contain;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0;
  transition: linear 0.1s 1s;
}

.flow .wrap .imgarea .mihon {
  position: absolute;
  width: 103%;
  transform: translateY(-8%);
}

.flow .wrap.active .imgarea .img-block01::before {
  transform: scale(1, 1);
}

.flow .wrap.active .imgarea .img-block01::after {
  opacity: 1;
}

.flow .wrap.active .flow-text01 {
  opacity: 1;
}

.flow .wrap.active .flow-text01 .arrow1::before {
  transform: scale(1, 1);
}

.flow .wrap.active .flow-text01 .arrow1::after {
  opacity: 1;
}

.flow .wrap.active .flow-text01 .arrow2::before {
  transform: scale(1, 1);
}

.flow .wrap.active .flow-text01 .arrow2::after {
  opacity: 1;
}

.flow .wrap.active .flow-text01 .arrow3::before {
  transform: rotate(-45deg) scale(1, 1);
}

.flow .wrap.active .flow-text01 .arrow3::after {
  opacity: 1;
}

.flow .wrap.active .img01 {
  opacity: 1;
  transform: translateY(0);
}

.flow .wrap.active .img01 .arrow::before {
  transform: scale(1, 1);
}

.flow .wrap.active .img01 .arrow::after {
  opacity: 1;
}

.flow .wrap.active .img02 {
  opacity: 1;
  transform: translateY(0);
}

.flow .wrap.active .img02 .arrow::before {
  transform: scale(1, 1);
}

.flow .wrap.active .img02 .arrow::after {
  opacity: 1;
}

.flow .wrap.active .img03 {
  opacity: 1;
  transform: translateY(0);
}

.flow .wrap.active .img03 .arrow::before {
  transform: scale(1, 1);
}

.flow .wrap.active .img03 .arrow::after {
  opacity: 1;
}

.flow .wrap.active .img-block02 {
  opacity: 1;
  transform: translateY(0);
}

.flow .wrap.active .img-block02::before {
  transform: scale(1, 1);
}

.flow .wrap.active .img-block02::after {
  opacity: 1;
}

.flow .wrap.active .imgbox.i07 {
  opacity: 1;
  transform: translateY(0);
}

.flow .wrap.active .imgbox.i07 .arrow::before {
  transform: scale(1, 1);
}

.flow .wrap.active .imgbox.i07 .arrow::after {
  opacity: 1;
}

.flow .wrap.active .img-block03 {
  opacity: 1;
  transform: translateY(0);
}

.flow .wrap.active .img-block03::before {
  transform: scale(1, 1);
}

.flow .wrap.active .img-block03::after {
  opacity: 1;
}

.flow .a-wrap {
  text-align: right;
  margin-top: 1.5em;
}

@media screen and (max-width: 768px) {
  .flow .a-wrap {
    text-align: center;
  }
}

.flow .a-wrap a {
  position: relative;
  font-weight: 500;
  padding-right: 4em;
  padding-bottom: 0.3em;
  line-height: 1;
}

.flow .a-wrap a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text-color);
}

.flow .a-wrap a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.5em;
  height: 1px;
  background: var(--text-color);
  transform-origin: right bottom;
  transform: rotate(35deg);
}

.cases {
  background: #ededed;
  border-radius: 0;
  transition: linear 0.3s;
}

.cases.active {
  border-radius: 12.5vw 12.5vw 0 0;
}

@media screen and (max-width: 768px) {
  .cases.active {
    border-radius: 12.5vw 12.5vw 0 0;
  }
}

@media screen and (max-width: 768px) {
  .cases .ch {
    padding-bottom: 0;
  }
}

.cases .ch .sec_title h2, .cases .ch .sec_title p {
  color: var(--text-color);
}

.cases .ch .sec_explain p {
  color: var(--text-color);
}

.cases .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .cases .flex {
    flex-wrap: wrap;
    margin-top: 0;
  }
}

.cases .flex .wrap {
  width: 31%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cases .flex .wrap {
    width: 100%;
    margin-top: 5vw;
  }
}

.cases .flex .wrap .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.5em;
  height: 6.5em;
  background: var(--main-color);
  text-align: center;
  border-radius: 50%;
  transform: translate(-15%, -5%);
}

@media screen and (max-width: 768px) {
  .cases .flex .wrap .circle {
    width: 6em;
    height: 6em;
  }
}

.cases .flex .wrap .circle .case {
  font-weight: 700;
  line-height: 1;
  padding-top: 0.7em;
  font-size: 1.2em;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .cases .flex .wrap .circle .case {
    font-size: 1em;
  }
}

.cases .flex .wrap .circle .number {
  font-size: 3.7em;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-top: -0.1em;
}

@media screen and (max-width: 768px) {
  .cases .flex .wrap .circle .number {
    font-size: 3.3em;
  }
}

.cases .flex .wrap p {
  margin-top: 1em;
}

.cases .flex .wrap .name {
  font-size: 1.1em;
  font-weight: 600;
  margin-left: 5.5em;
  line-height: 1.5;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .cases .flex .wrap .name {
    font-size: 1em;
  }
}

.cases .flex .wrap .imgbox {
  width: 100%;
  height: auto;
  aspect-ratio: 37 / 28;
  border-radius: 1em;
  background: #ccc;
  margin-top: 0.5em;
}

.cases .flex .wrap .imgbox.i01 {
  background: url(../img/top_img08a.webp) no-repeat center/cover;
}

.cases .flex .wrap .imgbox.i02 {
  background: url(../img/top_img08b.webp) no-repeat center/cover;
}

.cases .flex .wrap .imgbox.i03 {
  background: url(../img/top_img08c.webp) no-repeat center/cover;
}

.cases .flex2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3em;
}

@media screen and (max-width: 768px) {
  .cases .flex2 {
    display: block;
  }
}

.cases .flex2 img {
  width: 40%;
  border-radius: 1em;
}

@media screen and (max-width: 768px) {
  .cases .flex2 img {
    width: 100%;
  }
}

.cases .flex2 .flex2-wrap {
  width: 57%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap {
    width: 100%;
  }
}

.cases .flex2 .flex2-wrap h3 {
  display: inline-block;
  font-size: clamp(16px, 2.6vw, 28px);
  line-height: 1;
  color: #fff;
  background: #F08300;
  padding: 0.3em 0.7em 0.4em;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap h3 {
    font-size: min(5vw, 28px);
    margin-top: 1em;
    margin-bottom: 0.3em;
  }
}

.cases .flex2 .flex2-wrap table {
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap table tbody {
    display: block;
    font-size: min(4.5vw, 24px);
  }
}

.cases .flex2 .flex2-wrap table td {
  min-width: 4em;
  font-weight: 600;
  padding: 0 0.3em 0.1em 0.3em;
  color: #333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap table td {
    width: 100%;
    display: block;
  }
  .cases .flex2 .flex2-wrap table td:first-of-type {
    border-bottom: 0;
    padding-top: 0.5em;
  }
}

.cases .flex2 .flex2-wrap table td span {
  color: #F08300;
  font-size: 1.7em;
}

.cases .flex2 .flex2-wrap table td span.min {
  font-size: 0.5em;
}

.cases .flex2 .flex2-wrap table td.arrow {
  position: relative;
  width: 3em;
}

.cases .flex2 .flex2-wrap table td.arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3em;
  height: auto;
  aspect-ratio: 56 / 99;
  background: url(../img/icon-arrow03.webp) no-repeat center/contain;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: ease 0.5s;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap table td.arrow::before {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap table td:nth-of-type(2) {
    display: inline-block;
    width: 3em;
    min-width: 3em;
    padding-bottom: 0.6em;
  }
  .cases .flex2 .flex2-wrap table td:nth-of-type(2) img.sp {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}

.cases .flex2 .flex2-wrap table td:nth-of-type(3) {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap table td:nth-of-type(3) {
    width: calc(100% - 3em);
    display: inline-block;
    line-height: 1;
    padding-bottom: 1em;
  }
}

.cases .flex2 .flex2-wrap table td:nth-of-type(3)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ededed;
  transform: translateX(0);
  transition: ease 0.5s 0.5s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(1) td:nth-of-type(3)::before {
  transition-delay: 0.5s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(2) td:nth-of-type(3)::before {
  transition-delay: 0.8s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(3) td:nth-of-type(3)::before {
  transition-delay: 1.1s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(4) td:nth-of-type(3)::before {
  transition-delay: 1.4s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(5) td:nth-of-type(3)::before {
  transition-delay: 1.7s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(6) td:nth-of-type(3)::before {
  transition-delay: 2.0s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(7) td:nth-of-type(3)::before {
  transition-delay: 2.3s;
}

.cases .flex2 .flex2-wrap table tr:nth-of-type(8) td:nth-of-type(3)::before {
  transition-delay: 2.6s;
}

@media screen and (max-width: 768px) {
  .cases .flex2 .flex2-wrap table tr {
    display: block;
    width: 100%;
  }
}

.cases .flex2.active .flex2-wrap table td.arrow::before {
  transform: translate(0, -50%);
  opacity: 1;
}

.cases .flex2.active .flex2-wrap table td:nth-of-type(3)::before {
  transform: translateX(100%);
}

.close {
  font-size: clamp(10px, 1.26vw, 16px);
  background: url(../img/top_img07.webp) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .close {
    font-size: min(4.68vw, 24px);
  }
}

.close .inner {
  width: 96%;
}

@media screen and (max-width: 768px) {
  .close .inner {
    width: 90%;
  }
}

.close .strong {
  font-size: 1.75em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 0.3em rgba(46, 71, 58, 0.9);
}

@media screen and (max-width: 768px) {
  .close .strong {
    font-size: 1em;
    text-align: left;
  }
}

.close .strong2 {
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: #fff;
  text-shadow: 0 0 0.3em rgba(46, 71, 58, 0.9);
}

@media screen and (max-width: 768px) {
  .close .strong2 {
    font-size: 1.6em;
    line-height: 1.5;
  }
}

.close p {
  color: #fff;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 0 0.3em rgba(46, 71, 58, 0.9);
}

.close .number {
  position: relative;
  font-size: 6.75em;
  font-weight: 900;
  line-height: 1;
  margin-top: 0.2em;
  margin: 0 0 0 auto;
  text-align: right;
  width: 3.15em;
  text-shadow: 0 0 0.3em rgba(46, 71, 58, 0.9);
}

@media screen and (max-width: 768px) {
  .close .number {
    font-size: 5em;
    line-height: 0.8;
    padding-bottom: 0.05em;
  }
}

.close .number .boxtext {
  position: absolute;
  bottom: 3.3em;
  left: 0;
  font-size: 0.15em;
  font-weight: 500;
  line-height: 1;
  padding: 0.2em 0.3em 0.3em;
  border: solid 1px #fff;
  text-shadow: 0 0 0.3em rgba(46, 71, 58, 0.9);
}

.close .number span {
  font-size: 0.37em;
}

.close .flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: stretch;
  margin-top: 1.5em;
}

@media screen and (max-width: 768px) {
  .close .flex {
    flex-wrap: wrap;
  }
}

.close .flex .flex-left {
  border: solid 0.25em #fff;
  padding: 1.5em;
  width: 33%;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-left {
    width: 100%;
    padding: 1em;
  }
}

.close .flex .flex-left .flex2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75em;
  margin-bottom: 1.77em;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-left .flex2 {
    margin: 1em 0;
  }
}

.close .flex .flex-left .flex2 img {
  width: calc(100% - 14em);
  max-width: 120px;
}

.close .flex .flex-right {
  border: solid 0.25em #fff;
  padding: 1.5em;
  width: calc(67% - 2em);
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right {
    width: 100%;
    padding: 1em;
    margin-top: 1em;
  }
}

.close .flex .flex-right .flex2 {
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex2 {
    align-items: center;
  }
}

.close .flex .flex-right .flex2 img {
  position: absolute;
  top: 0;
  right: 0;
  width: 23%;
  transform: translateY(-35%);
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex2 img {
    position: absolute;
    top: auto;
    right: 0;
    width: 33%;
    transform: unset;
  }
}

.close .flex .flex-right .flex3 {
  margin-top: 1.75em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 {
    flex-wrap: wrap;
    margin-top: 1em;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap01 {
  width: 42%;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap01 {
    width: 100%;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap01 .number {
  width: 2.7em;
}

.close .flex .flex-right .flex3 .flex2-wrap02 {
  width: calc(58% - 1.5em);
  background: #fff;
  border-radius: 1em;
  padding: 0.5em 1em;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap02 {
    width: 100%;
    margin-top: 1em;
    padding: 1em;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap02 p {
  color: var(--text-color);
  text-shadow: none;
}

.close .flex .flex-right .flex3 .flex2-wrap02 .flex3 {
  display: flex;
  margin-top: 0;
  align-items: flex-end;
  justify-content: flex-start;
}

.close .flex .flex-right .flex3 .flex2-wrap02 .flex3 img {
  width: 40%;
  margin-right: 1em;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap02 .flex3 img {
    width: 45%;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap02 .flex3 p {
  line-height: 1;
  font-size: 1.25em;
  text-shadow: none;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap02 .flex3 p {
    font-size: 1em;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap02 .number {
  color: #F08300;
  width: 3.25em;
  margin-top: -0.1em;
  text-shadow: none;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap02 .number {
    width: 3.3em;
    font-size: 4.5em;
    margin: 0.2em 0;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap02 .number .boxtext {
  color: var(--text-color);
  border: solid 1px var(--text-color);
  text-shadow: none;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap02 .number .boxtext {
    bottom: 3em;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap02 .ml {
  font-size: 1.25em;
  margin-left: 7em;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap02 .ml {
    font-size: 1em;
    margin-left: 5em;
  }
}

.close .flex .flex-right .flex3 .flex2-wrap02 .min {
  font-size: clamp(10px, 1vw, 12px);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .close .flex .flex-right .flex3 .flex2-wrap02 .min {
    text-align: left;
  }
}

.contact-wrap {
  width: 100%;
  text-align: center;
  padding: min(7.5vw, 160px) 0;
  font-size: clamp(14px, 2vw, 24px);
}

@media screen and (max-width: 768px) {
  .contact-wrap {
    padding: 12vw 0;
  }
}

.contact-wrap a {
  position: relative;
  background: var(--main-color);
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding: 1.3em 0 1.4em 2em;
  width: 20em;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .contact-wrap a {
    font-size: min(3.75vw, 24px);
  }
}

.contact-wrap a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% - 4.8em);
  width: auto;
  height: 1.3em;
  aspect-ratio: 3/2;
  transform: translate(-50%, -50%);
  background: url(../img/icon-mail.webp) no-repeat center/contain;
}

.footer {
  padding: min(3.75vw, 80px) 0 0.5em;
  width: 100%;
  background: var(--main-color);
  color: #fff;
  font-size: clamp(14px, 1.82vw, 16px);
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 12.5vw 0 0.5em;
    font-size: min(4.375vw, 16px);
  }
}

.footer .corp-name {
  font-size: 1.5em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .footer .corp-name {
    font-size: 0.95em;
  }
}

.footer p {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .footer p {
    font-size: 0.95em;
    line-height: 1.5;
    width: 100%;
  }
}

.footer .corp {
  text-align: center;
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .footer .corp {
    font-size: 10px;
    white-space: nowrap;
  }
}

.footer .flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer .flex {
    flex-wrap: wrap;
  }
}

.footer .flex ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .footer .flex ul {
    margin-top: 1em;
  }
}

.footer .flex ul li a {
  position: relative;
  font-weight: 500;
  list-style: disc;
  padding-left: 1em;
}

@media screen and (max-width: 768px) {
  .footer .flex ul li a {
    font-size: 0.95em;
    white-space: nowrap;
  }
}

.footer .flex ul li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.3em;
  width: 0.2em;
  height: 0.2em;
  background: #fff;
  border-radius: 50%;
}

.footer .flex ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.toilet .fv {
  font-size: clamp(10px, 1.26vw, 16px);
  margin-top: 4.3em;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .toilet .fv {
    margin-top: 50px;
  }
}

.toilet .fv .fv-ch {
  width: 100%;
  font-size: clamp(24px, 22vw, 60px);
  text-align: center;
  background: url(../img/toilet-img01.webp) no-repeat center/cover;
  padding: 1.2em 0 1.3em;
}

.toilet .fv .fv-ch h1 {
  font-size: 1em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .toilet .fv .fv-ch h1 {
    font-size: min(7.5vw, 60px);
  }
}

.toilet .fv .fv-ch h1 span {
  display: block;
  font-size: 0.5em;
  margin-top: 0.3em;
}

.toilet .fv .fv_wrap {
  margin: 0 auto;
  padding: 6em 0;
}

@media screen and (max-width: 768px) {
  .toilet .fv .fv_wrap {
    padding: 0 0 12.5vw;
  }
}

.toilet .fv .fv_wrap .main-img-wrap {
  width: 38%;
  max-width: 540px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .toilet .fv .fv_wrap .main-img-wrap {
    width: 66%;
    height: auto;
    aspect-ratio: 116 / 167;
    margin: -3em auto 1em;
  }
}

.toilet .fv .fv_wrap .main-img-wrap img {
  position: absolute;
  bottom: -3em;
  left: 0;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .toilet .fv .fv_wrap .main-img-wrap img {
    position: static;
  }
}

.toilet .fv .fv_wrap .textbox {
  text-align: center;
}

.toilet .fv .fv_wrap .textbox h2 {
  font-size: 1.2em;
  color: #8CB55C;
  margin-left: auto;
}

.toilet .fv .fv_wrap .textbox h2 span {
  display: block;
  font-size: 3.3em;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  margin-top: -0.2em;
}

@media screen and (max-width: 768px) {
  .toilet .fv .fv_wrap .textbox h2 span {
    line-height: 1;
    margin-top: 0.1em;
  }
}

.toilet .fv .fv_wrap .textbox h3 {
  font-size: 1.4em;
  white-space: nowrap;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .toilet .fv .fv_wrap .textbox h3 {
    white-space: wrap;
    width: 90%;
    margin: 0 auto;
  }
}

.toilet .fv .fv_wrap .textbox .cross_text {
  padding-left: 1.3em;
}

@media screen and (max-width: 768px) {
  .toilet .fv .fv_wrap .textbox .cross_text {
    margin: 1em 0 2.6em;
  }
}

.toilet .about .flex .flex-wrap .imgbox01 {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 573 / 322;
  background: url(../img/toilet-img03.webp) no-repeat center/cover;
  border-radius: 1em;
}

.toilet .about .flex .flex-wrap .imgbox01::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: auto;
  aspect-ratio: 421 / 578;
  background: url(../img/toilet-img04.webp) no-repeat center/contain;
  transform: translate(-30%, 25%);
}

.toilet .about .flex .flex-wrap p {
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  color: #fff;
  line-height: 1;
  margin: 0.9em auto;
}

.toilet .about .flex .flex-wrap .flex2 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  margin-top: 4em;
}

.toilet .about .flex .flex-wrap .flex2 .arrow {
  width: 3.5%;
  margin-bottom: 2.5em;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap {
  width: 42%;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .imgbox02 {
  width: 100%;
  height: auto;
  aspect-ratio: 213 / 116;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .imgbox02.i01 {
  background: url(../img/toilet-img05a.webp) no-repeat center/cover;
  border-radius: 1em 1em 0 0;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .imgbox02.i02 {
  background: url(../img/toilet-img05b.webp) no-repeat center/cover;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .imgbox02.i03 {
  background: url(../img/toilet-img05c.webp) no-repeat center/cover;
  border-radius: 0 0 1em 1em;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .imgbox02.i04 {
  background: url(../img/toilet-img06a.webp) no-repeat center/cover;
  border-radius: 1em 1em 0 0;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .imgbox02.i05 {
  background: url(../img/toilet-img06b.webp) no-repeat center/cover;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .imgbox02.i06 {
  background: url(../img/toilet-img06c.webp) no-repeat center/cover;
  border-radius: 0 0 1em 1em;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .no-line {
  width: 100%;
  box-sizing: border-box;
  border: solid 0.6em transparent;
  border-radius: 1.6em;
}

.toilet .about .flex .flex-wrap .flex2 .flex2-wrap .white-line {
  width: 100%;
  box-sizing: border-box;
  border: solid 0.6em #fff;
  border-radius: 1.6em;
}

.toilet .about .flex .flex-wrap .textbox {
  width: 100%;
  background: #fff;
  padding: 1.5em;
  margin-bottom: 1.5em;
}

.toilet .about .flex .flex-wrap .textbox h4 {
  color: #8CB55C;
  font-size: 1.75em;
  text-align: left;
  margin: 0.2em 0 0 0;
  padding-left: 2.5em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .toilet .about .flex .flex-wrap .textbox h4 {
    font-size: 1.3em;
  }
}

.toilet .about .flex .flex-wrap .textbox h4.no1::before {
  content: '01';
}

.toilet .about .flex .flex-wrap .textbox h4.no2::before {
  content: '02';
}

.toilet .about .flex .flex-wrap .textbox h4.no3::before {
  content: '03';
}

.toilet .about .flex .flex-wrap .textbox h4.no4::before {
  content: '04';
}

.toilet .about .flex .flex-wrap .textbox h4::before {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 2em;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  color: #8CB55C;
}

.toilet .about .flex .flex-wrap .textbox p {
  font-size: 1em;
  line-height: 1.7;
  color: #8CB55C;
  text-align: justify;
  margin: 1em 0 0;
}

.toilet .about .flex .flex-wrap .annotation {
  font-size: 0.9em;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}

.toilet .feature {
  padding-bottom: 0;
}

.toilet .feature .flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 3em;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex {
    display: block;
  }
}

.toilet .feature .flex .flex-left {
  width: 59%;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex .flex-left {
    width: 100%;
    height: auto;
  }
}

.toilet .feature .flex .flex-left .imgbox02 {
  width: calc(100% - 5em);
  height: auto;
  aspect-ratio: 634 / 473;
  position: relative;
  display: block;
  background: url(../img/toilet-img07a.webp) no-repeat center/cover;
  margin-left: 5em;
}

.toilet .feature .flex .flex-left .imgbox02::after {
  content: '';
  position: absolute;
  left: -5em;
  bottom: -1.5em;
  width: 40%;
  height: auto;
  aspect-ratio: 260 / 347;
  background: url(../img/toilet-img07b.webp) no-repeat center/cover;
  box-shadow: 0.3em 0.3em 0.5em rgba(0, 0, 0, 0.2);
}

.toilet .feature .flex .flex-left p {
  font-weight: 600;
  margin-top: 0.3em;
}

.toilet .feature .flex .flex-right {
  width: 35%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex .flex-right {
    width: 100%;
    height: auto;
  }
}

.toilet .feature .flex .flex-right .wrap {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex .flex-right .wrap {
    position: relative;
  }
}

.toilet .feature .flex .flex-right span {
  display: block;
  position: relative;
}

.toilet .feature .flex .flex-right span::after {
  position: absolute;
  left: 1em;
  bottom: 2em;
  font-size: 1em;
  font-weight: 600;
  background: #551411;
  color: #fff;
  line-height: 1;
  padding: 0.4em 0.6em 0.5em;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex .flex-right span::after {
    bottom: 7vw;
  }
}

.toilet .feature .flex .flex-right span.img01 {
  transform: scale(1.2);
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex .flex-right span.img01 {
    transform: scale(1);
  }
}

.toilet .feature .flex .flex-right span.img01::after {
  content: 'コンテナ式バイオ公衆トイレ';
  font-size: min(4.375vw, 20px);
}

.toilet .feature .flex .flex-right span.img02 {
  margin-bottom: -4em;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex .flex-right span.img02 {
    transform: scale(1);
    font-size: min(4.375vw, 20px);
    margin-bottom: -5em;
    margin-left: 1em;
    width: 90%;
  }
}

.toilet .feature .flex .flex-right span.img02::after {
  content: 'バイオ公衆トイレ';
  font-size: min(5.25vw, 24px);
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex .flex-right span.img02::after {
    font-size: min(4.375vw, 20px);
    bottom: 10vw;
    left: -0.4em;
  }
}

.toilet .feature .flex .flex-right span img {
  width: 100%;
  height: auto;
}

.toilet .feature .flex02 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex02 {
    flex-wrap: wrap;
    gap: 5vw 0;
  }
}

.toilet .feature .flex02 .textbox {
  width: 18.5%;
  background: #fff;
  border: solid 2px #8CB55C;
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 1.2em;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex02 .textbox {
    width: 48%;
    padding: 0.8em;
    aspect-ratio: 1 / 1;
  }
}

.toilet .feature .flex02 .textbox p {
  font-size: 1.5em;
  line-height: 1.3;
  font-weight: 600;
  color: #8CB55C;
  height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex02 .textbox p {
    font-size: min(4.68vw, 28px);
    height: auto;
  }
}

.toilet .feature .flex02 .textbox p.number {
  font-size: 7.5em;
  font-weight: 800;
  line-height: 1;
  height: auto;
  margin-bottom: 0.1em;
}

@media screen and (max-width: 768px) {
  .toilet .feature .flex02 .textbox p.number {
    font-size: min(15vw, 80px);
    line-height: 0.8;
    margin-bottom: 0.4em;
    margin-top: 0.15em;
  }
}

.rotary .fv {
  padding-bottom: 0;
  font-size: clamp(10px, 1.26vw, 16px);
  margin-top: 4.3em;
}

@media screen and (max-width: 768px) {
  .rotary .fv {
    margin-top: 50px;
  }
}

.rotary .fv .fv-ch {
  width: 100%;
  font-size: clamp(24px, 22vw, 60px);
  text-align: center;
  background: url(../img/toilet-img01.webp) no-repeat center/cover;
  padding: 1.2em 0 1.3em;
}

.rotary .fv .fv-ch h1 {
  font-size: 1em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv-ch h1 {
    font-size: min(7.5vw, 60px);
  }
}

.rotary .fv .fv-ch h1 span {
  display: block;
  font-size: 0.5em;
  margin-top: 0.3em;
}

.rotary .fv .fv_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 6em;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv_wrap {
    padding: 0 0 12.5vw;
  }
}

.rotary .fv .fv_wrap .fv-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv_wrap .fv-inner {
    display: block;
  }
}

.rotary .fv .fv_wrap .fv-inner .main-imgbox {
  width: 46%;
  background: url(../img/rotary_img01.webp) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv_wrap .fv-inner .main-imgbox {
    width: 90%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 1em auto 0;
  }
}

.rotary .fv .fv_wrap .fv-inner .textbox {
  text-align: center;
  width: 54%;
  padding: 3em 0 0 0;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv_wrap .fv-inner .textbox {
    width: 100%;
  }
}

.rotary .fv .fv_wrap .fv-inner .textbox h2 {
  font-size: 1.2em;
  color: #8CB55C;
  margin-left: auto;
}

.rotary .fv .fv_wrap .fv-inner .textbox h2 span {
  display: block;
  font-size: min(5.45vw, 80px);
  margin-top: -0.2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv_wrap .fv-inner .textbox h2 span {
    line-height: 1;
    margin-top: 0.1em;
  }
}

.rotary .fv .fv_wrap .fv-inner .textbox h3 {
  font-size: 1.4em;
  white-space: nowrap;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv_wrap .fv-inner .textbox h3 {
    white-space: nowrap;
    width: 90%;
    margin: 0 auto;
  }
}

.rotary .fv .fv_wrap .fv-inner .textbox .cross_text {
  padding-left: 1.3em;
}

@media screen and (max-width: 768px) {
  .rotary .fv .fv_wrap .fv-inner .textbox .cross_text {
    margin: 1em 0 2.6em;
  }
}

.rotary .about .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex {
    display: block;
    width: 90%;
    margin: 5vw auto;
  }
}

.rotary .about .flex .flex-wrap {
  width: 27%;
  height: auto;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex .flex-wrap {
    width: 100%;
    margin-bottom: 4em;
  }
}

.rotary .about .flex .flex-wrap:nth-of-type(2) {
  z-index: 2;
}

.rotary .about .flex .flex-wrap:nth-of-type(3) {
  z-index: 1;
}

.rotary .about .flex .flex-wrap:last-of-type .back::before {
  content: none;
}

.rotary .about .flex .flex-wrap:last-of-type .back::after {
  content: none;
}

.rotary .about .flex .flex-wrap .back {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 1;
}

.rotary .about .flex .flex-wrap .back::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 35%;
  height: 2em;
  background: #000;
  z-index: -1;
  transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
  .rotary .about .flex .flex-wrap .back::before {
    top: 100%;
    left: 50%;
    width: 2em;
    height: 4em;
    transform: translate(-50%, 0);
  }
}

.rotary .about .flex .flex-wrap .back::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 130%;
  width: auto;
  height: 3.5em;
  aspect-ratio: 127 / 150;
  background: url(../img/icon-arrow04.webp) no-repeat center/contain;
  z-index: -1;
  transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
  .rotary .about .flex .flex-wrap .back::after {
    top: calc(100% + 3em);
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, 0) rotate(90deg);
  }
}

.rotary .about .flex .flex-wrap .back p {
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
  padding: 2.2em 0 0.5em;
}

.rotary .about .flex .flex-wrap .back img {
  width: 60%;
  margin: 0 auto;
  display: block;
}

.rotary .about .flex.ex .flex-wrap {
  transform: translateX(-20px);
  opacity: 0;
  transition: ease-in-out 0.7s;
}

.rotary .about .flex.ex .flex-wrap:nth-of-type(2) {
  transition-delay: 0.5s;
}

.rotary .about .flex.ex .flex-wrap:nth-of-type(3) {
  transition-delay: 1s;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex.ex .flex-wrap {
    transform: translateY(-20px);
  }
}

.rotary .about .flex.ex.active .flex-wrap {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex.ex.active .flex-wrap {
    transform: translateY(0);
  }
}

.rotary .about h3 {
  font-size: 1.75em;
  font-weight: 600;
  color: #fff;
  text-align: left;
  margin-top: 3em;
}

.rotary .about .flex2 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  font-size: 1.15em;
  margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex2 {
    display: block;
  }
}

.rotary .about .flex2::before {
  content: '';
  position: absolute;
  left: 1em;
  top: 50%;
  width: calc(100% - 2em);
  height: 2px;
  background: #fff;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex2::before {
    width: 2px;
    height: calc(100% - 2em);
    top: 1em;
    left: 50%;
  }
}

.rotary .about .flex2 .boxtext {
  background: #fff;
  color: #8CB55C;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  padding: 0.6em 1.2em 0.7em;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex2 .boxtext {
    margin-bottom: 1.5em;
  }
}

.rotary .about .flex2 .boxtext2 {
  background: #8CB55C;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  padding: 1.2em 1.2em 1.35em;
  box-sizing: border-box;
  border: solid 2px #fff;
}

.rotary .about .flex2 .abtext {
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  transform: translateY(3em);
}

@media screen and (max-width: 768px) {
  .rotary .about .flex2 .abtext {
    transform: none;
    margin-bottom: 1.5em;
    width: calc(50% - 1em);
    margin-left: calc(50% + 1em);
  }
}

.rotary .about .flex2.ex::before {
  transform-origin: left;
  transform: scale(0, 1);
  transition: linear 3s;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex2.ex::before {
    transform-origin: top center;
    transform: scale(1, 0);
  }
}

.rotary .about .flex2.ex .abtext {
  opacity: 0;
  transform: translateY(4em);
  transition: ease-in-out 0.7s;
}

@media screen and (max-width: 768px) {
  .rotary .about .flex2.ex .abtext {
    transform: translateX(1em);
  }
}

.rotary .about .flex2.ex .boxtext {
  opacity: 0;
  transform: translateY(1em);
  transition: ease-in-out 0.7s;
}

.rotary .about .flex2.ex .boxtext.d0 {
  opacity: 1;
  transform: none;
  transition: none;
}

.rotary .about .flex2.ex .boxtext.d1 {
  transition-delay: 0.5s;
}

.rotary .about .flex2.ex .boxtext.d2 {
  transition-delay: 1.0s;
}

.rotary .about .flex2.ex .boxtext.d3 {
  transition-delay: 1.5s;
}

.rotary .about .flex2.ex .boxtext2 {
  opacity: 0;
  transform: translateY(1em);
  transition: ease-in-out 0.7s 2.0s;
}

.rotary .about .flex2.ex.active::before {
  transform: scale(1, 1);
}

.rotary .about .flex2.ex.active .abtext {
  opacity: 1;
  transform: translateY(3em);
}

@media screen and (max-width: 768px) {
  .rotary .about .flex2.ex.active .abtext {
    transform: translateX(0);
  }
}

.rotary .about .flex2.ex.active .boxtext, .rotary .about .flex2.ex.active .boxtext2 {
  opacity: 1;
  transform: translateY(0);
}

.rotary .feature {
  padding-bottom: 0;
}

.rotary .feature .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  font-size: 1.5em;
  gap: 1.4em 0;
}

@media screen and (max-width: 768px) {
  .rotary .feature .flex {
    display: block;
    font-size: 1.2em;
  }
}

.rotary .feature .flex .flex-wrap {
  background: #fff;
  border: solid 2px #8CB55C;
  box-sizing: border-box;
  box-shadow: 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.2);
  padding: 0.8em 1em 1em 1em;
  width: calc(50% - 0.7em);
  display: block;
}

@media screen and (max-width: 768px) {
  .rotary .feature .flex .flex-wrap {
    width: 100%;
    margin-bottom: 1em;
    transition-delay: unset !important;
  }
}

.rotary .feature .flex .flex-wrap p {
  color: #8CB55C;
  line-height: 1.3;
  font-weight: 600;
  text-align: justify;
}

.rotary .feature .flex .flex-wrap .text-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.2em;
}

.rotary .feature .flex .flex-wrap .text-flex .number {
  font-size: 3em;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.05em;
  padding-bottom: 0.15em;
}

.rotary .feature .flex .flex-wrap .text-flex .strong {
  font-size: 1.2em;
  margin-left: 1.2em;
  line-height: 1;
}

.company .fv {
  font-size: clamp(10px, 1.26vw, 16px);
  margin-top: 4.3em;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .company .fv {
    margin-top: 50px;
  }
}

.company .fv .fv-ch {
  width: 100%;
  font-size: clamp(24px, 22vw, 60px);
  text-align: center;
  background: url(../img/toilet-img01.webp) no-repeat center/cover;
  padding: 1.2em 0 1.3em;
}

.company .fv .fv-ch h1 {
  font-size: 1em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .company .fv .fv-ch h1 {
    font-size: min(7.5vw, 60px);
  }
}

.company .fv .fv-ch h1 span {
  display: block;
  font-size: 0.5em;
  margin-top: 0.3em;
}

.company .fv .fv_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 6em;
}

@media screen and (max-width: 768px) {
  .company .fv .fv_wrap {
    padding: 0 0 12.5vw;
  }
}

.company .fv .fv_wrap .fv-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.company .fv .fv_wrap .fv-inner .textbox {
  text-align: center;
  width: 100%;
  padding: 4em 0 0 0;
}

.company .fv .fv_wrap .fv-inner .textbox h2 {
  font-size: 1.6em;
  color: #333;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.company .fv .fv_wrap .fv-inner .textbox h3 {
  font-size: 1.2em;
  white-space: nowrap;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .company .fv .fv_wrap .fv-inner .textbox h3 {
    white-space: nowrap;
    width: 90%;
    margin: 0 auto;
  }
}

.company .fv .fv_wrap .fv-inner .textbox .cross_text {
  padding-left: 1.3em;
}

@media screen and (max-width: 768px) {
  .company .fv .fv_wrap .fv-inner .textbox .cross_text {
    margin: 1em 0 2.6em;
  }
}

.company .profile {
  padding-top: 0;
}

.company .profile .inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.company .profile .inner table {
  width: 100%;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .company .profile .inner table {
    font-size: min(4.375vw, 16px);
  }
}

.company .profile .inner table th {
  line-height: 1.3;
  padding: 1em 3em 1em 1em;
  border-top: 1px solid #999;
  align-content: center;
}

@media screen and (max-width: 768px) {
  .company .profile .inner table th {
    padding: 1em 1em 1em 0;
    width: 4em;
  }
}

.company .profile .inner table td {
  line-height: 1.3;
  padding: 1em 0 1em 1em;
  border-top: 1px solid #999;
}

@media screen and (max-width: 768px) {
  .company .profile .inner table td {
    padding: 1em 0 1em 1em;
  }
}

.company .profile .inner table td .gmap {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  margin-top: 1.5em;
  display: block;
  border-radius: 1em;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .company .profile .inner table td .gmap {
    aspect-ratio: 1 / 1;
  }
}

.company .profile .inner table td .gmap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company .profile .inner table tr:last-of-type th {
  border-bottom: 1px solid #999;
}

.company .profile .inner table tr:last-of-type td {
  border-bottom: 1px solid #999;
}

.contact .fv {
  font-size: clamp(10px, 1.26vw, 16px);
  margin-top: 4.3em;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .contact .fv {
    margin-top: 50px;
  }
}

.contact .fv .fv-ch {
  width: 100%;
  font-size: clamp(24px, 22vw, 60px);
  text-align: center;
  background: url(../img/toilet-img01.webp) no-repeat center/cover;
  padding: 1.2em 0 1.3em;
}

.contact .fv .fv-ch h1 {
  font-size: 1em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .contact .fv .fv-ch h1 {
    font-size: min(7.5vw, 60px);
  }
}

.contact .fv .fv-ch h1 span {
  display: block;
  font-size: 0.5em;
  margin-top: 0.3em;
}

.contact .formwrap {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%;
  padding: min(7.5vw, 160px) 0;
  font-size: clamp(14px, 2vw, 16px);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact .formwrap {
    padding: 12.5vw 0;
    font-size: min(3.75vw, 16px);
  }
}

.contact .formwrap p {
  margin-bottom: 1em;
  line-height: 1.3;
}

.contact .formwrap table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

.contact .formwrap table td, .contact .formwrap table th {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .contact .formwrap table td, .contact .formwrap table th {
    display: block;
  }
}

.contact .formwrap table th {
  width: 25%;
  min-width: 9em;
  font-weight: 500;
  background: #efefef;
  text-align: left;
  align-content: center;
}

@media screen and (max-width: 768px) {
  .contact .formwrap table th {
    width: 100%;
    min-width: auto;
    border-bottom: 0;
    border-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .contact .formwrap table tr:first-of-type th {
    border-top: 1px solid #ccc;
  }
}

.contact .formwrap table td input, .contact .formwrap table td textarea {
  width: 100%;
  padding: 0.6em;
}

.contact .formwrap label {
  margin-top: 2em;
  display: block;
}

.contact .formwrap label a {
  text-decoration: underline;
  color: #8CB55C;
}

.contact .formwrap .btnwrap {
  width: 100%;
  text-align: center;
}

.contact .formwrap .btnwrap input {
  background: #8CB55C;
  color: #fff;
  font-weight: 600;
  font-size: 1.2em;
  padding: 0.8em;
  width: 12em;
  margin-top: 2em;
  margin-bottom: 2em;
  display: inline-block;
}

.privacy .fv {
  font-size: clamp(10px, 1.26vw, 16px);
  margin-top: 4.3em;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .privacy .fv {
    margin-top: 50px;
  }
}

.privacy .fv .fv-ch {
  width: 100%;
  font-size: clamp(24px, 22vw, 60px);
  text-align: center;
  background: url(../img/toilet-img01.webp) no-repeat center/cover;
  padding: 1.2em 0 1.3em;
}

.privacy .fv .fv-ch h1 {
  font-size: 1em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .privacy .fv .fv-ch h1 {
    font-size: min(7.5vw, 60px);
  }
}

.privacy .fv .fv-ch h1 span {
  display: block;
  font-size: 0.5em;
  margin-top: 0.3em;
}

.privacy .privacy-wrap {
  padding: min(7.5vw, 160px) 0;
  font-size: clamp(14px, 2vw, 16px);
}

@media screen and (max-width: 768px) {
  .privacy .privacy-wrap {
    padding: 12.5vw 0;
    font-size: min(3.75vw, 16px);
  }
}

.privacy .privacy-wrap .inner {
  max-width: 800px;
}

.privacy .privacy-wrap .inner p {
  text-align: justify;
  line-height: 2;
}

.privacy .privacy-wrap .inner p span {
  font-size: 1.35em;
  font-weight: 600;
  margin-bottom: 0.2em;
  display: block;
}
