@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
}

body {
  background-color: #dcf1ed;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

h1, h2, h3, h5, h6 {
  font-weight: normal;
  margin: 0;
}

figure {
  margin: 0;
}

img {
  width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  header {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
}

.totop {
  font-size: 1.6em;
  transform: rotate(90deg);
  color: #86b0a8;
  position: fixed;
  bottom: 5em;
  right: 0.5em;
  text-decoration: none;
  display: none;
  align-items: center;
  line-height: 1;
  z-index: 100;
}
.totop.on {
  display: inline-flex;
}
.totop span:first-of-type {
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .totop span:first-of-type {
    display: none;
  }
}
.totop .arw {
  width: 1.5em;
  height: 1.5em;
  background-color: transparent;
  border-radius: 10em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 0.5em;
  border: 1px solid #86b0a8;
  transform: rotate(180deg);
}
.totop .arw::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.3em;
  border-bottom: 1px solid #86b0a8;
  border-right: 1px solid #86b0a8;
  transform: rotate(-45deg);
  top: 50%;
  left: 50%;
  margin-right: 0.075em;
}
@media screen and (max-width: 767px) {
  .totop .arw {
    width: 3.5em;
    height: 3.5em;
    background-color: transparent;
    border-radius: 10em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 0.5em;
    border: 1px solid #86b0a8;
  }
  .totop .arw::before {
    content: "";
    display: block;
    width: 0.7em;
    height: 0.7em;
    border-bottom: 1px solid #86b0a8;
    border-right: 1px solid #86b0a8;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-right: 0.175em;
  }
}

.gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  font-size: clamp(10px, 1.1vw, 2rem);
}
@media screen and (max-width: 767px) {
  .gnav {
    padding: 4.8em 0 1em 0;
  }
}
.gnav ul {
  list-style: none;
  padding: 0;
}
.gnav ul li {
  display: inline-flex;
  align-items: center;
}
.gnav a {
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s;
}
.gnav a:hover {
  opacity: 0.6;
}
.gnav-01 {
  display: none;
}
@media screen and (min-width: 768px) {
  .gnav-01 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}
.gnav-01 span.num {
  font-family: "Oswald", sans-serif;
  color: #86b0a8;
  font-size: 1.4em;
  margin-right: 0.3em;
}
.gnav-01 a {
  display: inline-flex;
  align-items: center;
  color: #333;
}
.gnav-01 li:not(:last-of-type)::after {
  content: "・";
  padding: 0 0.2em;
}
.gnav-02 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .gnav-02 {
    margin-left: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .gnav-02 a {
    font-size: 1.3em;
  }
}
.gnav-02-youki a {
  color: #86b0a8;
}
@media screen and (max-width: 767px) {
  .gnav-02-youki a {
    margin-right: 1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8em 1em 0.8em 1.5em;
    background-color: #fff;
    border-radius: 10em;
    color: #86b0a8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  .gnav-02-youki a .arw {
    width: 1em;
    height: 1em;
    background-color: #fff;
    border-radius: 10em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 0.5em;
    border: 1px solid #86b0a8;
  }
  .gnav-02-youki a .arw::before {
    content: "";
    display: block;
    width: 0.2em;
    height: 0.2em;
    border-bottom: 1px solid #86b0a8;
    border-right: 1px solid #86b0a8;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-right: 0.05em;
  }
}
@media screen and (min-width: 768px) {
  .gnav-02-youki a {
    margin-right: 0.5em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .gnav-02-youki a::before {
    content: "";
    margin-right: 0.3em;
    display: block;
    width: 1em;
    height: 1px;
    background: #86b0a8;
  }
  .gnav-02-youki a .arw {
    display: none;
  }
}
.gnav-02-top a {
  color: #86b0a8;
}
@media screen and (max-width: 767px) {
  .gnav-02-top a {
    margin-right: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8em 1em 0.8em 1.5em;
    background-color: #fff;
    border-radius: 10em;
    color: #86b0a8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
  .gnav-02-top a .arw {
    width: 1em;
    height: 1em;
    background-color: #fff;
    border-radius: 10em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 0.5em;
    border: 1px solid #86b0a8;
  }
  .gnav-02-top a .arw::before {
    content: "";
    display: block;
    width: 0.2em;
    height: 0.2em;
    border-bottom: 1px solid #86b0a8;
    border-right: 1px solid #86b0a8;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-right: 0.05em;
  }
}
@media screen and (min-width: 768px) {
  .gnav-02-top a {
    margin-right: 1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .gnav-02-top a::before {
    content: "";
    margin-right: 0.3em;
    display: block;
    width: 1em;
    height: 1px;
    background: #86b0a8;
  }
  .gnav-02-top a .arw {
    display: none;
  }
}
.gnav-02-contact a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 1em 0.5em 1.5em;
  background-color: #86b0a8;
  border-radius: 10em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .gnav-02-contact a {
    border-radius: 0;
    position: absolute;
    padding: 0.8em 0;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
  }
}
.gnav-02-contact a .arw {
  width: 1em;
  height: 1em;
  background-color: #fff;
  border-radius: 10em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 0.5em;
  border: 1px solid #86b0a8;
}
.gnav-02-contact a .arw::before {
  content: "";
  display: block;
  width: 0.2em;
  height: 0.2em;
  border-bottom: 1px solid #86b0a8;
  border-right: 1px solid #86b0a8;
  transform: rotate(-45deg);
  top: 50%;
  left: 50%;
  margin-right: 0.05em;
}

.nav-sp {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .nav-sp {
    display: none;
  }
}
.nav-sp ul {
  list-style: none;
  padding: 5%;
  font-size: 0.9em;
}
.nav-sp ul li {
  border-bottom: 1px solid rgba(134, 176, 168, 0.3);
  padding-bottom: 0.1em;
  margin-bottom: 1em;
  line-height: 1.1;
}
.nav-sp ul li a {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #333;
  text-decoration: none;
}
.nav-sp ul li a br {
  display: none;
}
.nav-sp ul li a .num {
  margin-bottom: 0.2em;
}
.nav-sp ul li a span.num {
  font-family: "Oswald", sans-serif;
  color: #86b0a8;
  font-size: 1.4em;
  margin-right: 0.3em;
}
.nav-sp ul li a .arw {
  margin-top: auto;
  width: 1em;
  height: 1em;
  background-color: transparent;
  border-radius: 10em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 0.5em;
  border: 1px solid #86b0a8;
  transform: rotate(90deg);
  margin-bottom: 0.3em;
  margin-left: auto;
}
.nav-sp ul li a .arw::before {
  content: "";
  display: block;
  width: 0.2em;
  height: 0.2em;
  border-bottom: 1px solid #86b0a8;
  border-right: 1px solid #86b0a8;
  transform: rotate(-45deg);
  top: 50%;
  left: 50%;
  margin-right: 0.05em;
}

#c-06 {
  position: relative;
}

.foot-contact {
  position: absolute;
  width: 88%;
  border-radius: 10em;
  left: 6%;
  top: 37%;
}
.foot-contact::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 16%;
}
@media screen and (min-width: 768px) {
  .foot-contact {
    width: 44%;
    left: 11.5%;
    top: 39%;
  }
  .foot-contact::before {
    padding-bottom: 13%;
  }
}

main {
  width: 100%;
}

.mv {
  width: 100%;
  position: relative;
  z-index: 0;
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 5%;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 95%;
  background: url(../img/mv/mv-bg_pc.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .mv::before {
    background: url(../img/mv/mv-bg_sp.jpg) no-repeat center center/cover;
  }
}
.mv .bg {
  width: 100%;
}
.mv .bg img {
  width: 100%;
}
.mv-c {
  padding: 15% 0 0;
  /*padding: 15% 0 0;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  */
}
@media screen and (max-width: 767px) {
  .mv-c {
    padding: 30% 0 0;
  }
}
.mv h1 {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv h1 {
    width: 80%;
  }
}
.mv p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5vw;
  margin: 1.5% auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv p {
    font-size: 1.4rem;
  }
}
.mv .earth {
  width: 40%;
  margin: 3% auto 0;
}
@media screen and (max-width: 767px) {
  .mv .earth {
    width: 80%;
  }
}

.lead {
  width: 100%;
  overflow-x: hidden;
}
.lead .inner {
  width: 90%;
  max-width: 1100px;
  margin: 5% auto;
  position: relative;
  z-index: 0;
}
.lead .inner::before, .lead .inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.lead .inner::before {
  top: 3%;
  left: 6%;
  width: 18%;
  aspect-ratio: 1;
  background: url(../img/leaf-01.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .lead .inner::before {
    top: 2%;
    left: -6%;
    width: 27%;
  }
}
.lead .inner::after {
  top: 15%;
  right: 11%;
  width: 15%;
  aspect-ratio: 1;
  background: url(../img/leaf-02.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .lead .inner::after {
    top: 2%;
    right: -6%;
    width: 25%;
  }
}
.lead h2 {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.3;
  margin: 0 0 0.5em;
}
@media screen and (max-width: 767px) {
  .lead h2 {
    font-size: 2.4rem;
  }
}
.lead h2 b {
  font-size: 1.5em;
  color: #86b0a8;
}
.lead p.lead-text {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 2em;
}
.lead ul {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.lead ul li {
  width: 32%;
}
.lead ul li:nth-of-type(n+4) {
  margin-top: 1%;
}
.lead ul li p {
  line-height: 1;
}

.title-set {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .title-set {
    font-size: 1.8rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.title-set .title-set-en {
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
  color: #808077;
}
.title-set .title-set-en span {
  color: #86b0a8;
}
@media screen and (max-width: 767px) {
  .title-set .title-set-en {
    text-align: center;
  }
}
.title-set .title-set-ja {
  margin-top: 0.7em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .title-set .title-set-ja {
    text-align: center;
  }
}

.d-text {
  font-size: 1.6rem;
  line-height: 1.6;
}

.contents-lead01 {
  width: 90%;
  max-width: 1100px;
  margin: 5% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents-lead01 .lead01-title {
  flex-basis: 40%;
}
@media screen and (max-width: 767px) {
  .contents-lead01 .lead01-title {
    flex-basis: 100%;
  }
}
.contents-lead01 p {
  flex-basis: 55%;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .contents-lead01 p {
    flex-basis: 100%;
    margin-top: 2.6em;
  }
}
.contents-lead02 {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  margin: 5% auto;
}
.contents-lead02 p:first-of-type {
  text-align: center;
  padding: 0.5em 2em;
  background-color: #fff;
  border-radius: 10em;
  font-size: 1.7rem;
  margin: 4em auto 4em;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .contents-lead02 p:first-of-type {
    width: 100%;
    border-radius: 0;
  }
}
.contents-lead02 p:nth-of-type(2) {
  text-align: center;
  position: relative;
  z-index: 0;
  font-size: 3rem;
  display: inline-block;
  padding: 0 1em 0.3em;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .contents-lead02 p:nth-of-type(2) {
    font-size: 2rem;
  }
}
.contents-lead02 p:nth-of-type(2)::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #82ACA4 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}
.contents-lead02 p:nth-of-type(2)::before {
  content: "?";
  font-family: "Oswald", sans-serif;
  font-size: 4.5em;
  position: absolute;
  z-index: -1;
  line-height: 1;
  top: 50%;
  left: 50%;
}
.contents #section01, .contents #section02, .contents #section03 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 0;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .contents #section01, .contents #section02, .contents #section03 {
    flex-wrap: wrap;
  }
}
.contents #section01:not(:last-of-type), .contents #section02:not(:last-of-type), .contents #section03:not(:last-of-type) {
  margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  .contents #section01:not(:last-of-type), .contents #section02:not(:last-of-type), .contents #section03:not(:last-of-type) {
    margin-bottom: 10%;
  }
}
.contents #section01 .inner, .contents #section02 .inner, .contents #section03 .inner {
  width: 60%;
  margin: 0 auto;
  padding: 7% 0;
}
@media screen and (max-width: 767px) {
  .contents #section01 .inner, .contents #section02 .inner, .contents #section03 .inner {
    width: 100%;
  }
}
.contents #section01 .contents-section-img, .contents #section02 .contents-section-img, .contents #section03 .contents-section-img {
  /*position: absolute;
  z-index: -1;
  right: 0;
  top: 0;*/
  width: 35%;
  order: 2;
}
@media screen and (max-width: 767px) {
  .contents #section01 .contents-section-img, .contents #section02 .contents-section-img, .contents #section03 .contents-section-img {
    order: -1;
    width: 100%;
  }
}
.contents #section01 .contents-section-img figure, .contents #section02 .contents-section-img figure, .contents #section03 .contents-section-img figure {
  width: 100%;
}
.contents #section01 .contents-section-img figure img, .contents #section02 .contents-section-img figure img, .contents #section03 .contents-section-img figure img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contents #section01 .contents-section-img figure img, .contents #section02 .contents-section-img figure img, .contents #section03 .contents-section-img figure img {
    aspect-ratio: 2;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .contents #section01 .contents-section-text-title, .contents #section02 .contents-section-text-title, .contents #section03 .contents-section-text-title {
    margin-top: -20%;
  }
}
.contents #section01 .contents-section-text-title h3, .contents #section02 .contents-section-text-title h3, .contents #section03 .contents-section-text-title h3 {
  font-size: 3rem;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contents #section01 .contents-section-text-title h3, .contents #section02 .contents-section-text-title h3, .contents #section03 .contents-section-text-title h3 {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    text-align: center;
    font-size: 2.6rem;
  }
  .contents #section01 .contents-section-text-title h3::after, .contents #section02 .contents-section-text-title h3::after, .contents #section03 .contents-section-text-title h3::after {
    position: absolute;
    right: 9%;
    top: 25%;
    margin-left: 0 !important;
  }
}
.contents #section01 .contents-section-text-title h3 .num, .contents #section02 .contents-section-text-title h3 .num, .contents #section03 .contents-section-text-title h3 .num {
  font-size: 2.8em;
  color: #86b0a8;
  font-family: "Oswald", sans-serif;
  margin-right: 0.45em;
}
@media screen and (max-width: 767px) {
  .contents #section01 .contents-section-text-title h3 .num, .contents #section02 .contents-section-text-title h3 .num, .contents #section03 .contents-section-text-title h3 .num {
    margin-right: 0;
  }
}
.contents #section01 .contents-section-text-title h3 .text, .contents #section02 .contents-section-text-title h3 .text, .contents #section03 .contents-section-text-title h3 .text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contents #section01 .contents-section-text-title h3 .text, .contents #section02 .contents-section-text-title h3 .text, .contents #section03 .contents-section-text-title h3 .text {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .contents #section01 .contents-section-text-wrap, .contents #section02 .contents-section-text-wrap, .contents #section03 .contents-section-text-wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.contents #section01 .contents-section-img {
  /*right: -87%;
  top: 0%;
  figure{
      clip-path: circle(37% at 60% 50%);
      width: 55%;
  }*/
}
.contents #section01 .contents-section-text-title h3::after {
  content: "";
  display: block;
  width: 2.8em;
  height: 2.8em;
  margin-left: 0.5em;
  background: url(../img/leaf-01.png) no-repeat center center/contain;
}
.contents #section01 .contents-section-text-wrap figure {
  width: 70%;
  margin: 4em auto 0;
  max-width: 500px;
}
.contents #section02 .contents-section-img {
  /*right: -87%;
  top: 0%;
  figure{
      clip-path: circle(37% at 60% 50%);
      width: 55%;
  }*/
}
.contents #section02 .contents-section-text-title h3::after {
  content: "";
  display: block;
  width: 2.8em;
  height: 2.8em;
  margin-left: 0.5em;
  background: url(../img/leaf-01.png) no-repeat center center/contain;
}
.contents #section02 .contents-section-text-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents #section02 .contents-section-text-wrap figure {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .contents #section02 .contents-section-text-wrap figure {
    width: 100%;
    padding: 5% 10%;
  }
}
.contents #section02 .contents-section-text-wrap > div {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .contents #section02 .contents-section-text-wrap > div {
    width: 100%;
  }
}
.contents #section02 .contents-section-text-wrap > div p:nth-of-type(2) {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.contents #section02 .contents-section-text-wrap > div p span::before {
  content: "■";
  color: #86b0a8;
}
.contents #section03 .contents-section-img {
  /*right: -87%;
  top: 0%;
  figure{
      clip-path: circle(37% at 60% 50%);
      width: 55%;
  }*/
}
.contents #section03 .contents-section-text-title h3::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  margin-left: 0.5em;
  background: url(../img/recycle.png) no-repeat center center/contain;
}
.contents #section03 .contents-section-text-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents #section03 .contents-section-text-wrap figure {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .contents #section03 .contents-section-text-wrap figure {
    width: 100%;
    padding: 5% 10%;
  }
}
.contents #section03 .contents-section-text-wrap > div {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .contents #section03 .contents-section-text-wrap > div {
    width: 100%;
  }
}
.contents #section03 .contents-section-text-wrap > div > div:first-of-type {
  margin-bottom: 3em;
}
.contents #section03 .contents-section-text-wrap > div > div p:nth-of-type(1) {
  margin-bottom: 0.5em;
  font-size: 2rem;
  color: #86b0a8;
}
.showroom {
  width: 100%;
  padding-top: 6%;
}
@media screen and (max-width: 767px) {
  .showroom {
    padding-top: 20%;
  }
}
.showroom .title-set {
  text-align: center;
}
.showroom > p {
  width: 80%;
  max-width: 1100px;
  text-align: center;
  margin: 2em auto 2em;
}
.showroom figure {
  width: 80%;
  max-width: 1100px;
  text-align: center;
  margin: 2em auto 2em;
}

footer p {
  padding: 10% 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer p {
    padding: 20% 0 10% 0;
  }
}
footer p a {
  width: 80%;
  max-width: 170px;
  display: inline-block;
}

.contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 10%;
}
.contact-wrap {
  width: 65%;
  background-color: #86b0a8;
  padding: 13% 3%;
}
@media screen and (min-width: 768px) {
  .contact-wrap {
    border-radius: 0 5em 5em 0;
    box-shadow: 1em 1em 5em rgba(0, 0, 0, 0.05);
    padding: 7% 5%;
  }
}
@media screen and (max-width: 767px) {
  .contact-wrap {
    width: 100%;
  }
}
.contact-wrap h3 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contact-wrap h3 {
    font-size: 1.8rem;
  }
}
.contact-wrap p {
  color: #fff;
  text-align: center;
}
.contact-wrap a {
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  margin-top: 2em;
  padding: 0.6em 0;
  border-radius: 10em;
  background-color: #fff;
  text-align: center;
  color: #86b0a8;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
  border: 1px solid #86b0a8;
}
@media screen and (max-width: 767px) {
  .contact-wrap a {
    width: 100%;
    font-size: 1.2rem;
    padding: 1em 0;
  }
}
.contact-wrap a .arw {
  transition: all 0.5s;
  width: 2em;
  height: 2em;
  background-color: #86b0a8;
  border-radius: 10em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 0.5em;
  border: 1px solid #fff;
}
.contact-wrap a .arw::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  top: 50%;
  left: 50%;
  margin-right: 0.1em;
}
.contact-wrap a:hover {
  background-color: #86b0a8;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.contact-wrap a:hover .arw {
  width: 2em;
  height: 2em;
  background-color: #fff;
  border-radius: 10em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 0.5em;
  border: 1px solid #86b0a8;
}
.contact-wrap a:hover .arw::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-bottom: 1px solid #86b0a8;
  border-right: 1px solid #86b0a8;
  transform: rotate(-45deg);
  top: 50%;
  left: 50%;
  margin-right: 0.1em;
}
.contact .plasticssmart {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 35%;
}
@media screen and (max-width: 767px) {
  .contact .plasticssmart {
    width: 100%;
    padding: 3em 0 1em;
  }
}
.contact .plasticssmart p {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1em;
}
.contact .plasticssmart figure {
  width: 100%;
  max-width: 190px;
}

.fadeInUp {
  transition: all 0.8s;
  transform: translateY(20px);
  opacity: 0;
  transition-delay: 0.5s;
}
.in_view .fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

.fadeInToRight {
  transition: all 0.8s;
  transform: translate(20px, -20px);
  opacity: 0;
}
.in_view .fadeInToRight {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInToLeft {
  transition: all 0.8s;
  transform: translate(-20px, -20px);
  opacity: 0;
}
.in_view .fadeInToLeft {
  opacity: 1;
  transform: translate(0, 0);
}

.mv-c > *:nth-child(1) {
  transition-delay: calc(500ms + (100ms * 1));
}
.mv-c > *:nth-child(2) {
  transition-delay: calc(500ms + (100ms * 2));
}
.mv-c > *:nth-child(3) {
  transition-delay: calc(500ms + (100ms * 3));
}
.mv-c > *:nth-child(4) {
  transition-delay: calc(500ms + (100ms * 4));
}
.mv-c > *:nth-child(5) {
  transition-delay: calc(500ms + (100ms * 5));
}
.mv-c > *:nth-child(6) {
  transition-delay: calc(500ms + (100ms * 6));
}
.mv-c > *:nth-child(7) {
  transition-delay: calc(500ms + (100ms * 7));
}
.mv-c > *:nth-child(8) {
  transition-delay: calc(500ms + (100ms * 8));
}
.mv-c > *:nth-child(9) {
  transition-delay: calc(500ms + (100ms * 9));
}
.mv-c > *:nth-child(10) {
  transition-delay: calc(500ms + (100ms * 10));
}
.mv-c > *:nth-child(11) {
  transition-delay: calc(500ms + (100ms * 11));
}
.mv-c > *:nth-child(12) {
  transition-delay: calc(500ms + (100ms * 12));
}
.mv-c > *:nth-child(13) {
  transition-delay: calc(500ms + (100ms * 13));
}
.mv-c > *:nth-child(14) {
  transition-delay: calc(500ms + (100ms * 14));
}
.mv-c > *:nth-child(15) {
  transition-delay: calc(500ms + (100ms * 15));
}

.nav-sp ul li:nth-child(1) {
  transition-delay: calc(500ms + (100ms * 1));
}
.nav-sp ul li:nth-child(2) {
  transition-delay: calc(500ms + (100ms * 2));
}
.nav-sp ul li:nth-child(3) {
  transition-delay: calc(500ms + (100ms * 3));
}
.nav-sp ul li:nth-child(4) {
  transition-delay: calc(500ms + (100ms * 4));
}
.nav-sp ul li:nth-child(5) {
  transition-delay: calc(500ms + (100ms * 5));
}
.nav-sp ul li:nth-child(6) {
  transition-delay: calc(500ms + (100ms * 6));
}
.nav-sp ul li:nth-child(7) {
  transition-delay: calc(500ms + (100ms * 7));
}
.nav-sp ul li:nth-child(8) {
  transition-delay: calc(500ms + (100ms * 8));
}
.nav-sp ul li:nth-child(9) {
  transition-delay: calc(500ms + (100ms * 9));
}
.nav-sp ul li:nth-child(10) {
  transition-delay: calc(500ms + (100ms * 10));
}
.nav-sp ul li:nth-child(11) {
  transition-delay: calc(500ms + (100ms * 11));
}
.nav-sp ul li:nth-child(12) {
  transition-delay: calc(500ms + (100ms * 12));
}
.nav-sp ul li:nth-child(13) {
  transition-delay: calc(500ms + (100ms * 13));
}
.nav-sp ul li:nth-child(14) {
  transition-delay: calc(500ms + (100ms * 14));
}
.nav-sp ul li:nth-child(15) {
  transition-delay: calc(500ms + (100ms * 15));
}

.lead .inner > *:nth-child(1) {
  transition-delay: calc(500ms + (100ms * 1));
}
.lead .inner > *:nth-child(2) {
  transition-delay: calc(500ms + (100ms * 2));
}
.lead .inner > *:nth-child(3) {
  transition-delay: calc(500ms + (100ms * 3));
}
.lead .inner > *:nth-child(4) {
  transition-delay: calc(500ms + (100ms * 4));
}
.lead .inner > *:nth-child(5) {
  transition-delay: calc(500ms + (100ms * 5));
}
.lead .inner > *:nth-child(6) {
  transition-delay: calc(500ms + (100ms * 6));
}
.lead .inner > *:nth-child(7) {
  transition-delay: calc(500ms + (100ms * 7));
}
.lead .inner > *:nth-child(8) {
  transition-delay: calc(500ms + (100ms * 8));
}
.lead .inner > *:nth-child(9) {
  transition-delay: calc(500ms + (100ms * 9));
}
.lead .inner > *:nth-child(10) {
  transition-delay: calc(500ms + (100ms * 10));
}
.lead .inner > *:nth-child(11) {
  transition-delay: calc(500ms + (100ms * 11));
}
.lead .inner > *:nth-child(12) {
  transition-delay: calc(500ms + (100ms * 12));
}
.lead .inner > *:nth-child(13) {
  transition-delay: calc(500ms + (100ms * 13));
}
.lead .inner > *:nth-child(14) {
  transition-delay: calc(500ms + (100ms * 14));
}
.lead .inner > *:nth-child(15) {
  transition-delay: calc(500ms + (100ms * 15));
}
.lead .inner::after {
  transition: all 0.8s;
  transform: translate(20px, -20px);
  opacity: 0;
  transition-delay: 0.7s;
}
.lead .inner::before {
  transition: all 0.8s;
  transform: translate(-20px, -20px);
  opacity: 0;
  transition-delay: 0.3s;
}
.lead.in_view .inner::after {
  opacity: 1;
  transform: translate(0, 0);
}
.lead.in_view .inner::before {
  opacity: 1;
  transform: translate(0, 0);
}

.contents-lead01 .title-set-en {
  transition-delay: 0.2s;
}
.contents-lead01 .title-set-ja {
  transition-delay: 0.3s;
}
.contents-lead01 > p {
  transition-delay: 0.7s;
}

.contents-lead02 > p:nth-of-type(2)::before {
  display: inline-block;
  transition: all 0.8s;
  transform: translate(-50%, -50%) scale(0.2) rotate(-20deg);
  opacity: 0;
  transition-delay: 0.7s;
  transform-origin: center bottom;
}
.contents-lead02.in_view > p:nth-of-type(2)::before {
  transform: translate(-50%, -50%) scale(1) rotate(0);
  opacity: 0.15;
}

#section01 .fadeInUp, #section02 .fadeInUp, #section03 .fadeInUp {
  transition-delay: 0.3s;
}

/*# sourceMappingURL=style.css.map */
