@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap");
html {
  font-size: 62.5%;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  background-color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
}

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

a {
  text-decoration: none;
}

.uppercase {
  text-transform: uppercase;
}

.number {
  font-family: "游明朝", serif;
}

.spacer {
  width: 100%;
}

.br::before {
  content: "\a";
  white-space: pre;
}

#splash {
  position: fixed;
  z-index: 3000;
  width: 100%;
  height: 100%;
  background-color: #3e413c;
  text-align: center;
  color: #fff;
}
#splash #splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3000;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}
#splash #splash_text svg {
  height: 0.2rem;
}

header {
  position: fixed;
  z-index: 2000;
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
  height: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  header {
    padding-left: 9.5rem;
    padding-right: 9.5rem;
    height: 9rem;
  }
}
header .company-name {
  font-size: 1.8rem;
  font-weight: 400;
  color: #3e413c;
}
@media (min-width: 769px) {
  header .company-name {
    font-size: 2rem;
  }
}
header .nav-button {
  z-index: 9999;
  position: relative;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
}
@media (min-width: 769px) {
  header .nav-button {
    display: none;
  }
}
header .nav-button span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 1.4rem;
  height: 0.3rem;
  border-radius: 0.2rem;
  background-color: #3e413c;
  width: 45%;
}
header .nav-button span:nth-of-type(1) {
  top: 1.5rem;
}
header .nav-button span:nth-of-type(2) {
  top: 2.3rem;
}
header .nav-button span:nth-of-type(3) {
  top: 3.1rem;
}
header .sp-nav {
  position: absolute;
  top: 6rem;
  left: 0;
  display: none;
  z-index: 1000;
  width: 100%;
  padding-top: 3rem;
  padding-left: 3rem;
  font-size: 2.4rem;
  font-weight: 300;
  text-align: left;
  box-sizing: border-box;
}
header .sp-nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
}
header .sp-nav-list li {
  margin-bottom: 4rem;
}
header .sp-nav-list li a {
  color: #3e413c;
}
header .pc-nav {
  display: none;
}
@media (min-width: 769px) {
  header .pc-nav {
    display: block;
    font-size: 1.6rem;
  }
}
header .pc-nav-list {
  display: none;
}
@media (min-width: 769px) {
  header .pc-nav-list {
    display: flex;
    flex-direction: row;
    list-style: none;
  }
  header .pc-nav-list li {
    margin-left: 1rem;
  }
  header .pc-nav-list li a {
    color: #3e413c;
    position: relative;
    overflow: hidden;
    display: block;
    padding: 1rem 11rem 1rem 0;
  }
  header .pc-nav-list li span {
    position: absolute;
    left: 50%;
    top: 0;
    transition: all 0.5s;
    transform: translate(-50%, 0);
    display: block;
    opacity: 1;
    white-space: nowrap;
  }
  header .pc-nav-list li span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  header .pc-nav-list li :hover span:nth-child(1) {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  header .pc-nav-list li :hover span:nth-child(2) {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  header .pc-nav-list li:first-of-type {
    margin-left: 0;
  }
}
header .nav-button.active span:nth-of-type(1),
header .nav-button.active span:nth-of-type(3) {
  top: 2.3rem;
}
header .sp-nav.panelactive {
  display: block;
}
header .sp-nav.panelactive .sp-nav-list {
  opacity: 1;
}
header .sp-nav.panelactive .sp-nav-list li {
  animation-name: spNavAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes spNavAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header .circle-bg {
  position: fixed;
  z-index: 3;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  right: -5rem;
  top: -5rem;
  transition: all 0.6s;
}
header .circle-bg.circleactive {
  transform: scale(50);
}

section {
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section {
    padding: 0 6.9546120059%;
  }
}
section .section-title {
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
}
@media (min-width: 769px) {
  section .section-title {
    font-size: 6rem;
  }
}
section .section-sub-title {
  margin-left: 4rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #727471;
}
@media (min-width: 769px) {
  section .section-sub-title {
    font-size: 3rem;
  }
}

section.mainvisual {
  padding: 0;
  width: 100%;
}
section.mainvisual .frame {
  height: 100vh;
}
section.mainvisual .frame img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0;
     object-position: 0;
  height: 100%;
  width: 100%;
}
section.mainvisual .img {
  background-image: url("../img/mainvisual_pc.png");
  background-position: left center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}
section.mainvisual .catch {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 700;
  margin-left: 3rem;
  color: #e8ffe9;
}
@media (min-width: 769px) {
  section.mainvisual .catch {
    font-size: 6rem;
  }
}
section.mainvisual .catch-background {
  position: absolute;
  z-index: 1000;
  top: calc(50% - 6rem);
  height: 9.3rem;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #6ca290, rgba(108, 162, 144, 0));
}
@media (min-width: 769px) {
  section.mainvisual .catch-background {
    height: 17rem;
  }
}
section.mainvisual .scrolldown {
  position: absolute;
  left: 95%;
  bottom: 0;
  height: 5rem;
}
section.mainvisual .scrolldown span {
  position: absolute;
  left: 95%;
  top: -1rem;
  transform: translate(-50%, 0);
  color: #727471;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}
section.mainvisual .scrolldown ::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.1rem;
  height: 3rem;
  background: #727471;
  animation: PathMove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes PathMove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 3rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 5rem;
    opacity: 0;
  }
}

section.philosophy {
  width: 30rem;
  margin: 7rem auto 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.philosophy {
    position: relative;
    margin: 6rem auto 0 auto;
    width: 100%;
  }
}
@media (min-width: 769px) {
  section.philosophy .section-title {
    position: absolute;
    top: 11rem;
    right: 0;
    z-index: 200;
    transform: translate(-25%, -25%);
    -webkit-transform: translate(-25%, -25%);
    -ms-transform: translate(-25%, -25%);
    text-align: center;
  }
}
section.philosophy .text {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  section.philosophy .text {
    box-sizing: border-box;
    font-size: 2rem;
  }
}
@media (min-width: 769px) {
  section.philosophy .text-background {
    position: absolute;
    z-index: 100;
    top: 13rem;
    left: 70rem;
    width: 57rem;
    height: 40rem;
    padding: 12.5rem 6rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
}
section.philosophy .fadeIn {
  display: block;
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.feature {
  width: 30rem;
  margin: 10rem auto 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.feature {
    margin: 25rem auto 0 auto;
    width: 100%;
  }
}
section.feature .fadeIn {
  display: block;
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 769px) {
  section.feature .flow {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
}
section.feature .flow .box {
  opacity: 0;
}
section.feature .text {
  margin-top: 5rem;
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  section.feature .text {
    margin-top: 8rem;
    font-size: 2rem;
    margin-bottom: 6rem;
  }
}
section.feature .angle {
  display: block;
  z-index: 100;
  margin: auto;
  width: 9rem;
  height: 3.5rem;
}
@media (min-width: 769px) {
  section.feature .angle {
    display: none;
  }
}

section.service {
  width: 30rem;
  margin: 10rem auto 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.service {
    position: relative;
    margin: 25rem auto 0 auto;
    width: 100%;
  }
}
section.service .fadeIn {
  display: block;
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.service .service-list {
  margin-top: 5rem;
}
@media (min-width: 769px) {
  section.service .service-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 769px) {
  section.service .service-list a {
    margin-bottom: 3rem;
    width: 41.8740849195%;
    box-sizing: border-box;
    text-align: center;
  }
}
@media (min-width: 769px) {
  section.service .service-list a:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 769px) {
  section.service .service-list a:last-child {
    display: block;
    margin-bottom: 0;
  }
}
section.service .service-list picture {
  opacity: 1;
  transition: 0.3s ease-in-out;
}
section.service .service-list picture:hover {
  opacity: 0.5;
}

section.casestudy {
  margin: 10rem auto 0 auto;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.casestudy {
    margin: 25rem auto 0 auto;
    padding: 0 9.5rem;
    width: 100%;
  }
}
section.casestudy .fadeIn {
  display: block;
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.casestudy .section-title {
  width: 30rem;
  padding-left: 3rem;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.casestudy .section-title {
    width: 100%;
  }
}
section.casestudy .section-sub-title {
  width: 30rem;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.casestudy .section-sub-title {
    width: 100%;
  }
}
section.casestudy .contents {
  margin: 12rem auto 0 auto;
  width: 36rem;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.casestudy .contents {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
section.casestudy .contents .item {
  position: relative;
  display: none;
  margin-bottom: 2.5rem;
  background-color: #eceeeb;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.casestudy .contents .item {
    width: 37rem;
    height: 47.2rem;
    margin-right: 3rem;
    margin-bottom: 0;
  }
}
section.casestudy .contents .item :last-child {
  margin-bottom: 4.5rem;
}
section.casestudy .contents .item picture {
  display: block;
  width: 100%;
  height: 20rem;
}
section.casestudy .contents .item .textarea {
  width: 30rem;
  height: 20rem;
  padding: 4rem;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.casestudy .contents .item .textarea {
    width: 100%;
  }
}
section.casestudy .contents .item .client-name {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
@media (min-width: 769px) {
  section.casestudy .contents .item .client-name {
    margin-bottom: 3rem;
  }
}
section.casestudy .contents .item .text {
  margin: 0;
  width: 30rem;
}
section.casestudy .contents .item .detail-btn {
  position: absolute;
  bottom: 2rem;
  right: 4.5rem;
  margin: 0 0 0 auto;
  display: block;
  width: 100%;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  text-align: center;
}
@media (min-width: 769px) {
  section.casestudy .contents .item .detail-btn {
    bottom: 4rem;
    right: 10rem;
  }
}
section.casestudy .contents .item .detail-btn span {
  position: relative;
}
section.casestudy .contents .item .detail-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 0.1rem;
  background-color: #3e413c;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
section.casestudy .contents .item .detail-btn-text {
  position: relative;
  display: block;
  width: 10rem;
  color: #3e413c;
  margin: auto 0 0 auto;
}
section.casestudy .contents .item .detail-btn-text:before {
  position: absolute;
  top: 50%;
  left: 10rem;
  display: block;
  width: 1.6rem;
  height: 0.1rem;
  color: inherit;
  border-top: solid 0.5px;
  content: "";
}
@media (min-width: 769px) {
  section.casestudy .contents .item .detail-btn-text:before {
    width: 4rem;
    left: 12rem;
  }
}
section.casestudy .contents .item .detail-btn-text:after {
  position: absolute;
  top: calc(50% - 0.1rem);
  left: 11rem;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  color: inherit;
  border-right: solid 0.5px;
  content: "";
  transform: rotate(-45deg) translateY(-50%);
}
@media (min-width: 769px) {
  section.casestudy .contents .item .detail-btn-text:after {
    width: 1.3rem;
    height: 1.3rem;
    left: 15rem;
  }
}
section.casestudy .contents .item .detail-btn:hover span:hover::after {
  transform: scale(1, 1);
}
section.casestudy #item1 {
  display: block;
}
@media (min-width: 769px) {
  section.casestudy #item1 {
    margin-bottom: 4rem;
  }
}
section.casestudy #item2 {
  display: block;
}
section.casestudy #item3 {
  display: block;
}
section.casestudy #item4 {
  display: block;
}
@media (min-width: 769px) {
  section.casestudy #item5 {
    display: block;
  }
  section.casestudy #item6 {
    display: block;
  }
}
section.casestudy .foward-btn {
  position: relative;
  display: block;
  margin: auto;
  overflow: hidden;
  width: 19.6rem;
  height: 5.3rem;
  text-align: center;
  color: #3e413c;
  border: solid 1px;
  box-sizing: border-box;
  transition: ease 0.2s;
}
section.casestudy .foward-btn p {
  position: relative;
  z-index: 3;
  color: #3e413c;
}
@media (min-width: 769px) {
  section.casestudy .foward-btn {
    margin-top: 8rem;
    width: 25rem;
    height: 6rem;
    font-size: 2rem;
    line-height: 1;
  }
}
section.casestudy .foward-btn:hover p {
  color: #eceeeb;
}
section.casestudy .bgskew::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  background-color: #3e413c;
  width: 140%;
  height: 100%;
  transform: skewX(-25deg);
}
section.casestudy .bgskew:hover::before {
  animation: skewAnime 0.5s forwards;
}
@keyframes skewAnime {
  100% {
    left: -30%;
  }
}

section.contact {
  position: relative;
  margin: 10rem auto 0 auto;
  padding: 0;
  width: 36rem;
}
@media (min-width: 769px) {
  section.contact {
    margin: 20rem auto 0 auto;
    width: 100%;
  }
}
section.contact .img-sp {
  display: block;
  background-image: url("../img/contact_img_sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 26rem;
}
@media (min-width: 769px) {
  section.contact .img-sp {
    display: none;
  }
}
section.contact .img-pc {
  display: none;
}
@media (min-width: 769px) {
  section.contact .img-pc {
    display: block;
    background-image: url("../img/contact_img_pc.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 32rem;
  }
}
section.contact .fadeIn {
  display: block;
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.contact .contents {
  position: absolute;
  z-index: 100;
  top: 3rem;
  left: 3rem;
  width: 30rem;
  color: #fff;
  font-size: 1.8rem;
}
@media (min-width: 769px) {
  section.contact .contents {
    width: 100%;
    left: 0;
  }
}
section.contact .contents .text {
  font-weight: 400;
}
@media (min-width: 769px) {
  section.contact .contents .text {
    font-size: 3rem;
    text-align: center;
  }
}
section.contact .contents .contact-btn {
  position: relative;
  display: block;
  overflow: hidden;
  width: 30rem;
  height: 7rem;
  background-color: #33b85d;
  margin: 4rem auto 2rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  transition: ease 0.2s;
}
@media (min-width: 769px) {
  section.contact .contents .contact-btn {
    margin: 4rem auto 3rem;
    width: 37rem;
    height: 7.5rem;
  }
}
section.contact .contents .contact-btn p {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  margin: 0;
  line-height: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media (min-width: 769px) {
  section.contact .contents .contact-btn p {
    font-size: 3rem;
  }
}
section.contact .contents .contact-btn:hover {
  color: #33b85d;
}
section.contact .contents .bgskew::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  background-color: #e8ffe9;
  width: 140%;
  height: 100%;
  transform: skewX(-25deg);
}
section.contact .contents .bgskew:hover::before {
  animation: skewAnime 0.5s forwards;
}
@keyframes skewAnime {
  100% {
    left: -30%;
  }
}
section.contact .contents .tel-no {
  text-align: center;
  font-weight: 400;
}
@media (min-width: 769px) {
  section.contact .contents .tel-no {
    font-size: 2.4rem;
  }
}

section.about {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 36rem;
}
@media (min-width: 769px) {
  section.about {
    margin: 25rem auto;
    width: 100%;
    height: 58rem;
  }
  section.about .fadeIn {
    display: block;
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(10rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (min-width: 769px) {
  section.about picture {
    position: absolute;
    left: 50rem;
  }
}
section.about .contents {
  position: absolute;
  z-index: 100;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3rem;
  background-color: #fff;
  opacity: 0.7;
  box-sizing: border-box;
  transition: ease 0.2s;
}
@media (min-width: 769px) {
  section.about .contents {
    left: 9.5rem;
    top: 12.6rem;
    width: calc(50% - 11rem);
    height: 40rem;
    opacity: 1;
  }
}
section.about .contents .text-jp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  color: #3e413c;
}
@media (min-width: 769px) {
  section.about .contents .text-jp {
    font-size: 4.4rem;
  }
}
section.about .contents .text-en {
  position: relative;
  top: 100%;
  left: 100%;
  transform: translate(-90%, -20%);
  width: 18rem;
  font-size: 1.8rem;
  font-weight: 300;
  color: #3e413c;
}
@media (min-width: 769px) {
  section.about .contents .text-en {
    left: 80%;
    transform: translate(-50%, -50%);
    width: 30rem;
    font-size: 2.4rem;
  }
}
section.about .contents .text-en:before {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  display: block;
  width: 1.6rem;
  height: 0.1rem;
  color: inherit;
  border-top: solid 1px;
  content: "";
}
@media (min-width: 769px) {
  section.about .contents .text-en:before {
    right: 4rem;
    width: 4rem;
  }
}
section.about .contents .text-en:after {
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 0;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  color: inherit;
  border-right: solid 1px;
  content: "";
  transform: rotate(-45deg) translateY(-50%);
}
@media (min-width: 769px) {
  section.about .contents .text-en:after {
    top: calc(50% - 0.2rem);
    right: 3.8rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}
section.about .contents:hover .text-jp {
  color: #fff;
}
section.about .contents:hover .text-en {
  color: #fff;
}
section.about .bgskew::before {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  background-color: #3e413c;
  width: 150%;
  height: 100%;
  transform: skewX(-25deg);
}
section.about .bgskew:hover::before {
  animation: skewAnime 0.5s forwards;
}
@keyframes skewAnime {
  100% {
    left: -30%;
  }
}

section.news {
  width: 30rem;
  margin: 10rem auto 0 auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news {
    margin: 25rem auto;
    width: 100%;
  }
}
section.news .fadeIn {
  display: block;
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.news .news-list {
  margin-top: 5rem;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list {
    margin: 10rem auto 6rem auto;
    width: 66.6666666667%;
  }
}
section.news .news-list .item {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list .item {
    align-items: center;
  }
}
section.news .news-list .item .category {
  position: relative;
  width: 8rem;
  height: 2rem;
  border: 1px solid #3e413c;
  font-size: 1rem;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list .item .category {
    width: 12rem;
    height: 4rem;
  }
}
section.news .news-list .item .category p {
  width: 100%;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0;
  text-align: center;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list .item .category p {
    font-size: 1.4rem;
  }
}
section.news .news-list .item .date {
  margin-left: 2rem;
  font-size: 1rem;
  color: #727471;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list .item .date {
    margin-left: 3rem;
    width: 8rem;
    font-size: 1.4rem;
    text-align: center;
  }
}
section.news .news-list .item .text {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list .item .text {
    margin: 0 0 0 6rem;
    width: calc(100% - 30rem);
  }
}
section.news .news-list hr {
  margin-bottom: 2rem;
  border-top: 1px dotted #3e413c;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
section.news .news-list-btn {
  position: relative;
  display: block;
  overflow: hidden;
  width: 20rem;
  height: 4rem;
  margin: 3rem auto 0 auto;
  text-align: center;
  border: 1px solid #3e413c;
  box-sizing: border-box;
  transition: ease 0.2s;
}
@media (min-width: 769px) {
  section.news .news-list-btn {
    width: 25rem;
    height: 6rem;
  }
}
section.news .news-list-btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  margin: 0;
  color: #3e413c;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  section.news .news-list-btn p {
    width: 100%;
    font-size: 2rem;
  }
}
section.news .news-list-btn:hover p {
  color: #eceeeb;
}
section.news .bgskew::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  background-color: #3e413c;
  width: 140%;
  height: 100%;
  transform: skewX(-25deg);
}
section.news .bgskew:hover::before {
  animation: skewAnime 0.5s forwards;
}
@keyframes skewAnime {
  100% {
    left: -30%;
  }
}

footer {
  margin-top: 26rem;
  width: 100%;
  padding: 6rem 3rem 2rem 3rem;
  background-color: #52a56d;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  footer {
    padding: 5rem 9.5rem 3rem 9.5rem;
  }
}
@media (min-width: 769px) {
  footer .nav-list {
    display: flex;
    flex-direction: row;
  }
}
footer .nav-list .service {
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  footer .nav-list .service {
    width: 33.3333333333%;
  }
}
footer .nav-list .service .nav-title {
  display: block;
  margin-bottom: 3rem;
  font-weight: 400;
  color: #3e413c;
}
@media (min-width: 769px) {
  footer .nav-list .service .nav-title {
    margin-bottom: 2.5rem;
  }
}
footer .nav-list .service .nav-sub-title {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #3e413c;
}
@media (min-width: 769px) {
  footer .nav-list .service .nav-sub-title {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
}
footer .nav-list .service a:hover {
  color: #eceeeb;
}
footer .nav-list .other {
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  footer .nav-list .other {
    margin-left: 3rem;
    width: 33.3333333333%;
  }
}
footer .nav-list .other .nav-title {
  display: block;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #3e413c;
}
@media (min-width: 769px) {
  footer .nav-list .other .nav-title {
    margin-bottom: 3rem;
  }
}
footer .nav-list .other a:hover {
  color: #eceeeb;
}
@media (min-width: 769px) {
  footer .nav-list .extra {
    margin-left: 3rem;
    width: 33.3333333333%;
  }
}
footer .nav-list .extra a {
  display: block;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 400;
  color: #3e413c;
}
@media (min-width: 769px) {
  footer .nav-list .extra a {
    margin-bottom: 3rem;
    font-size: 1.2rem;
  }
}
footer .nav-list .extra a:last-of-type {
  margin-bottom: 0;
}
footer .nav-list .extra a:hover {
  color: #eceeeb;
}
footer .line {
  display: none;
}
@media (min-width: 769px) {
  footer .line {
    display: block;
    border-top: 1px solid #3e413c;
  }
}
@media (min-width: 769px) {
  footer .company-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .company-info {
  margin-top: 6rem;
}
@media (min-width: 769px) {
  footer .company-info {
    margin-top: 0;
    margin-bottom: 5rem;
  }
}
footer .company-info .company-name {
  margin-bottom: 2rem;
  font-weight: 400;
}
@media (min-width: 769px) {
  footer .company-info .company-name {
    font-size: 1.6rem;
  }
}
footer .company-info .post {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 769px) {
  footer .company-info .post {
    font-size: 1.2rem;
    font-weight: 300;
  }
}
footer .company-info .address {
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 769px) {
  footer .company-info .address {
    font-size: 1.2rem;
    font-weight: 300;
  }
}
footer .sns {
  display: flex;
  flex-direction: row;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  footer .sns {
    margin-top: 0;
    margin-bottom: 0;
  }
}
footer .sns a {
  display: block;
  margin-right: 1rem;
  font-size: 2.5rem;
  line-height: 1;
  color: #3e413c;
}
@media (min-width: 769px) {
  footer .sns a {
    margin-right: 1.5rem;
    font-size: 3rem;
  }
}
@media (min-width: 769px) {
  footer .sns a:last-child {
    margin-right: 0;
  }
}
footer .sns a:hover {
  color: #eceeeb;
}
footer small {
  display: block;
  margin: auto;
  font-size: 1rem;
  text-align: center;
}

#page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  width: 8rem;
  height: 8rem;
  border-radius: 2rem;
  background-color: white;
  opacity: 0;
  transform: translateY(10rem);
}
#page-top :hover {
  color: #fff;
  background-color: #727471;
  transition: all 0.6s;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 8rem;
  height: 8rem;
  border-radius: 2rem;
  color: #33b85d;
  font-size: 6rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
#page-top a span {
  text-transform: uppercase;
  font-size: 1.4rem;
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10rem);
  }
}
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgappearTrigger {
  opacity: 0;
}

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #52a56d;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgLRextendTrigger {
  opacity: 0;
}/*# sourceMappingURL=style.css.map */