@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@900&display=swap');

:root {
  --main-color: #64cece;
  --sub-color: #94d1b3;
  --point-color: #f7f999;
  --title-color: #51abbf;
}

html {
  scroll-behavior: smooth;
}

[class^="content"] {
  font-family: serif, "Sawarabi Mincho";
  height: 100vh;
}

body {
  overflow-x: hidden;
}

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
}

header h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  background: var(--title-color);
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  align-items: center;
  position: fixed;
  top: calc(50% - 6em - 30px);
  right: 0;
  color: #fff;
  z-index: 10000;
  background: var(--title-color);
  border-radius: 1em;
  padding: 1em 0;
}

.nav li::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-right: 0.5em;
  margin-left: 0.1em;
  background: transparent;
  border: solid 1px;
  border-radius: 50%;
}

.nav li {
  display: flex;
  align-items: center;
  font-family: sans-serif;
  padding: 0.5em;
  transition: all 0.5s ease 0.5s;
  cursor: pointer;
  background: var(--title-color);
  border-radius: 1em 0 0 1em;
  font-size: 0.8em;
}

.scroller {
  display: inline-block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #777;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercace;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.scroller::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #777;
  -webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.scroller:hover {
  color: var(--title-color);
}

.dis_pos {
  transition: all 0.2s ease 0s;
}

.nav li.dis_pos::before {
  background: var(--title-color);
  -webkit-animation: bounce 0.5s ease 0s infinite alternate;
  animation: bounce 0.5s ease 0s infinite alternate;
}

@-webkit-keyframes bounce {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

/* main {
  height: 700%;
  height: calc((100% - 40px) * 7 + 80px);
} */

main > div {
  position: relative;
}

main section {
  position: relative;
  top: 30px;
  overflow: hidden;
  height: calc(100vh - 30px);
  /* height: 14.285%;
  height: calc((100% - 80px) / 7); */
}

main section > div {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.content01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  transition: all 0.5s ease 0s;
  position: fixed;
  top: 30px;
  width: 100%;
  height: calc(100% - 30px);
}

.content02 {
  position: relative;
  bottom: 0;
  display: block;
  background: #60b4c6;
  background: linear-gradient(#60b4c690, transparent);
}

.content02.bgfix {
  background: var(--main-color);
  transition: background 0.5s ease 0s;
}

.content03 {
  background: var(--sub-color);
  background: linear-gradient(#4ab77c90, transparent);
  /* background: url(../images/03.jpg) top center no-repeat;
  background-size: cover; */
}

.content03.bgfix {
  background: var(--sub-color);
  transition: background 0.5s ease 0s;
  opacity: 1;
}

/* .content04 {
  color: #fff;
  background: url(../images/rameibg.jpg);
} */

.content04 {
  color: #222;
  background: var(--point-color);
  background: linear-gradient(#f3f57990, transparent);
  /* background: url(../images/04.jpg) top center no-repeat;
  background-size: cover; */
}

.content04.bgfix {
  background: var(--point-color);
  transition: background 0.5s ease 0s;
  opacity: 1;
}

.content05 {
  color: #222;
  background: #c5dc7a;
  background: linear-gradient(#c5dc7a95, transparent);
  /* background: url(../images/04.jpg) top center no-repeat;
  background-size: cover; */
}

.content05.bgfix {
  background: #c5dc7a;
  transition: background 0.5s ease 0s;
  opacity: 1;
}

.content06 {
  color: #222;
  background: #dc7a7a;
  background: linear-gradient(#dc7a7a90, transparent);
  /* background: url(../images/04.jpg) top center no-repeat;
  background-size: cover; */
}

.content06.bgfix {
  background: #dc7a7a;
  transition: background 0.5s ease 0s;
  opacity: 1;
}

.content07 {
  color: #222;
  background: #b8e2e9;
  background: linear-gradient(#b8e2e995, transparent);
  /* background: url(../images/04.jpg) top center no-repeat;
  background-size: cover; */
}

.content07.bgfix {
  /* position: relative; */
  background: #b8e2e9;
  transition: background 0.5s ease 0s;
  opacity: 1;
}


/* [class^="content"] {
  height: calc(100% - 40px);
} */

[class^="content"] h2 {
  font-weight: normal;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  opacity: 0;
}

.bgfix h2 {
  opacity: 1;
}

.bgfix {
  position: fixed;
  top: 30px;
  width: 100%;
  height: calc(100% - 30px);
}


.content01 {
  overflow: hidden;
}

.rogo_ani {
  width: 100%;
  -webkit-animation: firstview 3s ease 0s 1 normal forwards running;
  animation: firstview 3s ease 0s 1 normal forwards running;
  /*animation-name: firstview;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;*/
  text-align: center;
  /* min-width: 385px; */
}

@-webkit-keyframes firstview {
  0% {
    transform: translateY(100%);
    width: 90%;
  }

  40% {
    transform: translateY(35%);
    width: 60%;
  }

  50% {
    transform: translateY(35%);
    width: 80%;
  }

  100% {
    transform: translateY(0);
    width: 20%;
  }
}

@keyframes firstview {
  0% {
    transform: translateY(100%);
    width: 90%;
  }

  40% {
    transform: translateY(35%);
    width: 60%;
  }

  50% {
    transform: translateY(35%);
    width: 80%;
  }

  100% {
    transform: translateY(0);
    width: 20%;
  }
}

.pagelink {
  /* font-family: "M plus 1p"; */
  position: fixed;
  height: 100%;
  top: 30px;
  right: 0;
  display: flex;
  justify-content: right;
  align-items: center;
  flex-wrap: wrap;
}

.pagelink a {
  display: flex;
  height: 12vw;
  /* min-height: 8em; */
  max-height: 14em;
  min-height: 6em;
  width: 12vw;
  /* min-width: 8em; */
  max-width: 14em;
  min-width: 6em;
  justify-content: center;
  align-items: center;
  position: absolute;
  -webkit-animation: fadeIn 0.5s ease 1 normal backwards, upDown 0.5s ease-in alternate infinite backwards;
  animation: fadeIn 0.5s ease 1 normal backwards, upDown 0.5s ease-in alternate infinite backwards;
  color: #fff;
  border-radius: 50%;
}

.pagelink a span {
  display: flex;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 100%;
  }
}

@-webkit-keyframes upDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(8px);
  }
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(8px);
  }
}

.pagelink a:nth-child(1) {
  top: calc(20% - 6vw - 30px);
  left: calc(33% - 6vw);
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.pagelink a:nth-child(1) span {
  background: var(--main-color);
  background: radial-gradient(#319ab1, #64d0cf40);
}

.pagelink a:nth-child(2) {
  top: calc(50% - 6vw - 30px);
  left: calc(25% - 6vw);
  -webkit-animation-delay: 2.25s;
  animation-delay: 2.25s;
}

.pagelink a:nth-child(2) span {
  background: var(--sub-color);
  background: radial-gradient(#1aa57e, #b8dd7e30);
}

.pagelink a:nth-child(3) {
  top: calc(80% - 6vw - 30px);
  left: calc(33% - 6vw);
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.pagelink a:nth-child(3) span {
  background: var(--point-color);
  background: radial-gradient(#e4e800, #feffbe90);
}

.pagelink a:nth-child(4) {
  top: calc(20% - 6vw - 30px);
  left: calc(66% - 6vw);
  -webkit-animation-delay: 2.75s;
  animation-delay: 2.75s;
}

.pagelink a:nth-child(4) span {
  background: #2d95ae;
  background: radial-gradient(#bad954, #dfe97f30);
}

.pagelink a:nth-child(5) {
  top: calc(50% - 6vw - 30px);
  left: calc(75% - 6vw);
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.pagelink a:nth-child(5) span {
  background: #2d95ae;
  background: radial-gradient(#bf2a2a, #ffc7c730);
}

.pagelink a:nth-child(6) {
  top: calc(80% - 6vw - 30px);
  left: calc(66% - 6vw);
  -webkit-animation-delay: 3.25s;
  animation-delay: 3.25s;
}

.pagelink a:nth-child(6) span {
  background: #2d95ae;
  background: radial-gradient(#20bdba, transparent);
}

.pagelink a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #effbff;
  z-index: 99;
}

.pagelink a:hover::before {
  -webkit-animation: beat 0.14s ease 0s infinite alternate;
  animation: beat 0.14s ease 0s infinite alternate;
}

@-webkit-keyframes beat {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.slogan_bg {
  width: 105%;
  height: 100%;
  background: url(../images/02.jpg) top center no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s ease-out 0s;
}

.large_text {
  font-family: "M plus 1p";
  width: 100%;
  position: absolute;
  text-align: center;
  font-size: 10vw;
  color: #fff;
  top: calc(50% - 0.5em);
  line-height: 0.5em;
  transition: all 0.5s ease 0s;
}

.small_text {
  font-size: 0.3em;
}

.content02.bgfix > div, .content05.bgfix > div {
  opacity: 1;
}

div.large_text {
  opacity: 1;
  transition: all 0.5s ease 0s;
}

.bgfix div.large_text {
  opacity: 0;
}

.slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 18%;
  left: 10%;
}

.slogan::before, .slogan::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: top 0.22s ease 0.8s, left 0.22s ease 0.4s;
}

.bgfix .slogan::before {
  top: -10px;
  left: 10px;
}

.bgfix .slogan::after {
  top: 10px;
  left: -10px;
}

.slogan h3 {
  font-family: "Hannari", serif, "Sawarabi Mincho";
  font-weight: 400;
  font-size: 2.6vw;
  line-height: 1.6em;
  color: #002a88;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}

.bgfix .slogan h3 {
  opacity: 1;
  transition: opacity 0.5s ease 1.2s;
}

.slogan h3 span {
  display: inline-block;
  text-indent: 2em;
}

.slogan_sub {
  width: 50%;
  margin: 0 auto;
  position: absolute;
  bottom: 18%;
  right: 10%;
  text-align: center;
  opacity: 0;
  -webkit-filter: blur(20px);
  filter: blur(20px);
  transition: all 0.5s ease 0s;
}

.bgfix .slogan_sub {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition: all 2s ease 1.5s;
}

.item_list {
  position: absolute;
  bottom: -3%;
  display: flex;
  justify-content: space-around;
  width: 66%;
  margin: 0 auto;
  list-style: none;
  opacity: 0;
  transition: opacity 0.5s ease 0s, bottom 0.5s ease 0s;
  z-index: 9998;
}

.bgfix .item_list {
  opacity: 1;
  bottom: 3%;
}

.item_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 20%;
  min-width: 100px;
  margin: 5px;
  padding: 3px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  border: solid 3px transparent;
  border-radius: 50%;
}

.item_list li:hover {
  border: solid 3px #fff;
}

.item_list li img {
  width: 100%;
}

.item_list .active_item, .item_list .active_item:hover {
  border: solid 3px var(--title-color);
  border-radius: 10px;
  transition: all 0.5s ease 0s;
}

.item_discri_list {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-animation: discriArea 0.6s ease 0s 1 normal forwards running;
  animation: discriArea 0.6s ease 0s 1 normal forwards running;
}

@-webkit-keyframes discriArea {
  0% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes discriArea {
  0% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.item_discri {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.discri_close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 2%;
  right: 1%;
  cursor: pointer;
}

.discri_close::after, .discri_close::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0.8em;
  width: 2px;
  height: 2em;
  background: var(--sub-color);
}

.discri_close::after {
  transform: rotate(45deg);
}

.discri_close::before {
  transform: rotate(-45deg);
}



.discri_hide {
  display: flex;
  -webkit-animation: discrihide 0.6s ease-in 0s 1 normal forwards running;
  animation: discrihide 0.6s ease-in 0s 1 normal forwards running;
}

@-webkit-keyframes discrihide {
  0% {
    left: 0;
    transform: scale(1);
    opacity: 1;
  }

  100% {
    left: -100%;
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes discrihide {
  0% {
    left: 0;
    transform: scale(1);
    opacity: 1;
  }

  100% {
    left: -100%;
    transform: scale(0);
    opacity: 0;
  }
}

.discri_show {
  display: flex;
  -webkit-animation: discrishow 0.6s ease-out 0s 1 normal forwards running;
  animation: discrishow 0.6s ease-out 0s 1 normal forwards running;
  /*animation-name: firstview;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;*/
}

@-webkit-keyframes discrishow {
  0% {
    left: 100%;
    transform: scale(0);
    opacity: 0;
  }

  100% {
    left: 0;
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes discrishow {
  0% {
    left: 100%;
    transform: scale(0);
    opacity: 0;
  }

  100% {
    left: 0;
    transform: scale(1);
    opacity: 1;
  }
}

.item_name {
  position: relative;
  z-index: 1;
  /* display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 120%;
  height: 61%;
  transform: translate(13%, 4%); */
  width: 100%;
}

.item_name span {
  font-size: 32px;
  /* padding: 2px 5px; */
  font-weight: normal;
  display: inline-block;
  /* text-shadow: 2px 2px 2px #fff; */
  margin-top: 5px;
  letter-spacing: 1px;
  color: var(--sub-color);
  border-bottom: 1px solid;
}

.item_text h3::before {
  display: block;
  /* margin: 1em 0 0.6em; */
  content: "ハホニコ環境衛生事業部";
  color: var(--sub-color);
}

.item_text {
  position: relative;
  z-index: 0;
  top: -5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 68%;
  max-width: 1200px;
  min-height: 40%;
  padding: 2% 3%;
  /* transform: translate(20%, -70%); */
  border-radius: 10px;
  background: #fff;
  box-shadow: 4px 4px 2px #deecf6;
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.bgfix .item_text {
  opacity: 1;
  transition: all 0.5s ease 0s;
}

.item_text > div:first-child {
  padding: 40px;
  padding-bottom: 0;
}

.item_text h4 {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 1em;
}

.item_text p {
  line-height: 1.8;
  margin-top: 1em;
  margin-right: 20%;
}

.item_text img {
  max-width: 450px;
  position: absolute;
  right: -4%;
  bottom: 30%;
  width: 33%;
  min-width: 200px;
}

.item_button {
  font-weight: bold;
  width: 100%;
  text-align: right;
}

.item_button div {
  display: inline-block;
  width: 30%;
  margin-right: 5%;
  padding: 20px 10px;
  text-align: center;
  border: solid 2px #000;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.panphlet {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* background: #fff; */
  position: absolute;
  top: -200%;
  left: 0;
  transition: all 1s ease 0s;
}

.panphlet_show {
  top: 0;
}

.at_panph_show {
  bottom: -30% !important;
}

.panphlet_wrap {
  width: 80%;
  height: 98%;
  overflow-y: scroll;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
  border: solid #fff 20px;
  /* border-radius: 20px; */
  box-shadow: #ddd 8px 8px 0;
}

.panphlet_close {
  width: 40px;
  height: 40px;
  background: var(--sub-color);
  position: absolute;
  top: 1%;
  border-radius: 50%;
  border: solid 6px #fff;
  cursor: pointer;
}

.panphlet_close::before, .panphlet_close::after {
  content: "";
  width: 2px;
  height: 60%;
  background: #fff;
  position: absolute;
  top: 18.4%;
  right: 47%;
}

.panphlet_close::before {
  transform: rotate(45deg);
}

.panphlet_close::after {
  transform: rotate(-45deg);
}

.story {
  line-height: 2;
  position: relative;
  margin: 5em auto;
  padding: 6% 6em;
  text-align: center;
  color: #222a28;
  background: #fff;
  box-shadow: 0.3em 0.3em 0 #e6eae9;
  opacity: 0;
  transition: opacity 0.5s ease 0s, top 0.5s ease 0s;
  top: 30px;
  border-radius: 6px;
}

.bgfix .story {
  top: 0;
  opacity: 1;
}

.content04 h3 {
  font-size: 1.4em;
  position: absolute;
  top: -1.1em;
  left: 50%;
  width: 18em;
  transform: translateX(-50%);
  color: #222a28;
  background: #fff;
  box-shadow: #eee 4px 4px 0;
  border-radius: 4px;
}

/* section04 */
.content05 h2 {
  z-index: 1;
}

.mission_bg {
  width: 105%;
  height: 100%;
  background: url(../images/01b.jpg) top left 40% no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s ease-out 0s;
}

.mission {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 18%;
  right: 10%;
}

.mission::before, .mission::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: top 0.22s ease 0.8s, left 0.22s ease 0.4s;
}

.bgfix .mission::before {
  top: -10px;
  left: 10px;
}

.bgfix .mission::after {
  top: 10px;
  left: -10px;
}

.mission h3 {
  font-weight: 400;
  font-size: 2.6vw;
  line-height: 1.6em;
  width: 100%;
  color: #002a88;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
  text-align: center;
}

.mission p {
  line-height: 1.8em;
  font-size: 1.1vw;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
  color: #000;
  padding: 20px;
}

.bgfix .mission h3 {
  opacity: 1;
  transition: opacity 0.5s ease 1.2s;
}

.bgfix .mission p {
  opacity: 1;
  transition: opacity 0.5s ease 1.5s;
}

.mission h3 span {
  display: inline-block;
  text-indent: 2em;
}

.mission_sub {
  width: 33%;
  margin: 0 auto;
  position: absolute;
  bottom: 16%;
  left: 10%;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.bgfix .mission_sub {
  opacity: 1;
  transition: all 2s ease 2s;
}

/* section05 */
.content06 h2 {
  z-index: 1;
}

.movie_area {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 0.5s ease 0s;
}

.bgfix .movie_area {
  opacity: 1;
}

.movie_area div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  min-width: 300px;
  height: 30vh;
  margin: 20px auto;
  background: #fff;
  border: 10px solid #ddd;
}

.movie_area video {
  width: 100%;
  height: 100%;
}

/* section06 */
.content07 h2 {
  z-index: 1;
  flex-wrap: wrap;
}

.content07 h3 {
  opacity: 0;
}

.content07.bgfix h3 {
  width: 80%;
  margin: 20px auto;
  text-align: center;
  padding: 0.5em 0;
  font-weight: normal;
  background: #57bbcb;
  color: #fff;
  opacity: 1;
}

.docs_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
  opacity: 0;
  transition: all 0s ease 0s;
  -webkit-overflow-scrolling: touch;
}

.bgfix .docs_wrap {
  opacity: 1;
  transition: all 0.5s ease 0s;
}

.docs_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.docs_area > div {
  width: 30%;
}

.docs_area img {
  width: 100%;
}

.docs_btn {
  display: flex;
  justify-content: space-around;
  margin: 20px auto;
}

.docs_btn a {
  display: inline-block;
  text-align: center;
  width: 5em;
  padding: 0.5em;
  border-radius: 1em;
  background: #fff;
}

.footer {
  position: relative;
  z-index: 1000;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; */
  width: 100%;
  background: var(--title-color);
  bottom: 40px;
  color: #fff;
  border-top: solid 1px;
}

.footer_content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 287px;
  overflow: visible;
}

.footer h3 {
  font-size: 1.1em;
  font-weight: normal;
}

.footer dl {
  margin-top: 20px;
}

.footer dt {
  font-size: 0.9em;
  margin-bottom: 0.4em;
}

.footer ul {
  width: 15%;
  justify-content: space-around;
  margin: 20px 0;
  font-size: 1em;
}

.company_info + ul {
  border-left: solid 1px;
  padding: 1em 0;
  padding-left: 20px;
}

.company_info dd br {
  display: none;
}

.footer li {
  list-style: none;
  line-height: 1.6em;
  cursor: pointer;
  color: #fff;
  background: var(--title-color);
  padding: 0.25em 1em;
  border-radius: 1em;
  transition: background 0.25s ease 0s;
  margin-left: 2em;
  margin-top: 0.3em;
}

.footer li:hover {
  color: var(--title-color);
  background: #fff;
}

.company_info {
  width: 30%;
  padding-right: 20px;
}

.copy_right {
  font-size: 0.8em;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
}
