@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html {
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
}
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
  animation-name: slideTextX100;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
  animation-name: slideTextX-100;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.scroll_downInner {
  position: relative;
  width: 100%;
  -webkit-transform: translateY(70vh);
  -ms-transform: translateY(70vh);
  transform: translateY(70vh);
}
.scroll_down5 {
  position: relative;
  width: 2px;
  height: 110px;
  background: transparent;
  -webkit-animation: scrollDown5 1.5s ease infinite;
  animation: scrollDown5 1.5s ease infinite;
  border-radius: 100%;
  margin: 0 auto;
}
.scroll_down5:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(transparent, #2CC4CB, transparent);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#2CC4CB), to(transparent));
  background: linear-gradient(transparent, #2CC4CB, transparent);
}

@-webkit-keyframes scrollDown5 {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  45% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  55% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@keyframes scrollDown5 {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  45% {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  55% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
.js-fadein {
  opacity: 0;
}

.fadein {
  -webkit-animation: fadein 1s forwards;
  animation: fadein 1s forwards;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-slideUp {
  opacity: 0;
}

.scrollin {
  -webkit-animation: fadeUpAnime 0.5s forwards;
  animation: fadeUpAnime 0.5s forwards;
  -webkit-animation-name: scrollin;
  animation-name: scrollin;
}

@-webkit-keyframes scrollin {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes scrollin {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*js-slideLeft 左から出てくる */
.js-slideLeft {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*js-slideRight 右から出てくる */
.js-slideRight {
  opacity: 0;
}

.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  -webkit-animation-name: PageAnime;
  animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-300%) skewX(-45deg);
  -ms-transform: translateX(-300%) skewX(-45deg);
  transform: translateX(-300%) skewX(-45deg);
  background-color: #2CC4CB30;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(-500%) skewX(45deg);
    transform: translateX(-500%) skewX(45deg);
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(500%) skewX(45deg);
    transform: translateX(500%) skewX(45deg);
  }
}
@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(-500%) skewX(45deg);
    transform: translateX(-500%) skewX(45deg);
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(500%) skewX(45deg);
    transform: translateX(500%) skewX(45deg);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
}

body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
  animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

#particles-js {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

#wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

a {
  color: #000;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  color: #000;
}

#loading_container {
  width: 200px;
  height: 100px;
  position: absolute;
  margin: auto;
  display: block;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2em;
  font-weight: bold;
}

.L {
  position: absolute;
  opacity: 0;
  left: 5%;
  top: 50%;
  -webkit-animation: L 2s infinite;
  animation: L 2s infinite;
}

.O {
  position: absolute;
  opacity: 0;
  left: 18%;
  top: 50%;
  -webkit-animation: O 2s infinite;
  animation: O 2s infinite;
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

.A {
  position: absolute;
  opacity: 0;
  left: 35%;
  top: 50%;
  -webkit-animation: A 2s infinite;
  animation: A 2s infinite;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}

.D {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  -webkit-animation: D 2s infinite;
  animation: D 2s infinite;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

.I {
  position: absolute;
  opacity: 0;
  left: 65%;
  top: 50%;
  -webkit-animation: I 2s infinite;
  animation: I 2s infinite;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}

.N {
  position: absolute;
  opacity: 0;
  left: 75%;
  top: 50%;
  -webkit-animation: N 2s infinite;
  animation: N 2s infinite;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}

.G {
  position: absolute;
  opacity: 0;
  left: 90%;
  top: 50%;
  -webkit-animation: G 2s infinite;
  animation: G 2s infinite;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

@-webkit-keyframes L {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes L {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes O {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes O {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes A {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes A {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes D {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes D {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes I {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes I {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes N {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes N {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes G {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes G {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
/*========= 画面遷移のためのCSS end===============*/
.button {
  background: rgba(192, 192, 192, 0.287);
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  /*丸の基点とするためrelativeを指定*/
  position: relative;
}
.button:hover {
  background: none;
  transition: 0.3s ease-out;
}
.button:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: 0.3s ease-out;
  transform: translateX(-100%);
}
.button:hover:before {
  background: #2CC4CB;
  transform: translateX(0);
}
.button:hover a {
  color: #fff;
}
.button span {
  color: #000;
  line-height: 3;
}
.button a {
  line-height: 3;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1rem;
}

.view_btn {
  width: 100%;
}
.view_btnInner {
  position: relative;
  display: inline-block;
  width: 220px;
  left: 50%;
  margin-top: 5%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.view_btn a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3;
  color: #000;
  font-size: 1.7rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.view_btn a:hover {
  color: #2CC4CB;
}
.view_btn a:hover::before {
  border: 2px solid #2CC4CB;
}
.view_btn a:hover::after {
  border: 1px solid #2CC4CB;
}
.view_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.view_btn a::after {
  content: "";
  width: 45px;
  height: 0%;
  bottom: 0;
  top: 50%;
  right: 7%;
  -webkit-transform: translate(-7%, -50%);
  -ms-transform: translate(-7%, -50%);
  transform: translate(-7%, -50%);
  border: 1px solid #000;
  z-index: 1;
  position: absolute;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

* {
  box-sizing: border-box;
}

.top_inner {
  position: relative;
  height: 100vh;
}
.top_name {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 48%;
  width: 100%;
}
.top_name h1 {
  text-align: center;
  font-family: "Lobster Two", cursive;
  letter-spacing: 10px;
  font-size: 6rem;
  color: #2CC4CB;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_name h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .top_name h1 {
    font-size: 3rem;
  }
}
.top_name h1::before {
  content: "はじめてのホームページ作りなら";
  position: absolute;
  font-size: 1rem;
  letter-spacing: 2px;
  width: 100%;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
}
.top_name h1 small {
  font-size: 0.2em;
}

.about_ttl {
  width: 100%;
  text-align: center;
  margin: 10% auto;
}
.about_ttl h3 {
  font-size: 4rem;
  color: #8FF9E4;
  font-family: "Lobster Two", cursive;
}
.about_ttl h2 {
  font-size: 2rem;
  margin-top: 2%;
}
.about_inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .about_inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .about_inner {
    width: 100%;
  }
}
.about_copy {
  margin-bottom: 10%;
}
.about_copy h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3%;
}
@media screen and (max-width: 768px) {
  .about_copy h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .about_copy h2 {
    font-size: 1.2rem;
  }
}
.about_copy p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about_copy p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .about_copy p {
    width: 75%;
    margin: 0 auto;
  }
}
.about_contaner {
  margin-bottom: 5%;
}
.about_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .about_box {
    flex-direction: column;
    align-items: center;
  }
}
.about_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../img/item1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 30%;
  padding: 6% 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .about_item {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .about_item {
    width: 80%;
    margin-bottom: 10%;
  }
}
.about_item::before {
  content: "01";
  position: absolute;
  top: -20%;
  left: 0;
  font-size: 3vw;
  font-weight: 800;
  -webkit-text-decoration: wavy overline #2CC4CB;
  text-decoration: wavy overline #2CC4CB;
  padding-top: 3%;
  color: #2CC4CB;
}
@media screen and (max-width: 768px) {
  .about_item::before {
    font-size: 1rem;
  }
}
.about_item:nth-child(2) {
  background: url(../img/about1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.about_item:nth-child(2)::before {
  content: "02";
}
.about_item:nth-child(3) {
  background: url(../img/about2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.about_item:nth-child(3)::before {
  content: "03";
}
.about_itemInner {
  background-color: #000;
  width: 100%;
  padding: 5%;
  color: #fff;
  text-align: justify;
}
.about_itemInner p {
  font-size: 1rem;
  line-height: 2;
}

.para1 {
  background-image: url(../img/para1-2.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .para1 {
    background-attachment: unset;
  }
}
.para1_inner {
  position: relative;
  margin-top: 10%;
  height: 35vh;
}
.para1 p {
  color: #fff;
  font-size: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 3% 0 5%;
}
@media screen and (max-width: 768px) {
  .para1 p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .para1 p {
    font-size: 1.3rem;
  }
}
.para1_btn {
  width: 100%;
}
.para1_btnInner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  margin-top: 0%;
  width: 180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 60%;
}
.para1_btn a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.7rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  line-height: 3;
}
.para1_btn a:hover {
  color: #2CC4CB;
}
.para1_btn a:hover::before {
  border: 2px solid #2CC4CB;
}
.para1_btn a:hover::after {
  border: 1px solid #2CC4CB;
}
.para1_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.para1_btn a::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  right: 10%;
  -webkit-transform: translate(-7%, -50%);
  -ms-transform: translate(-7%, -50%);
  transform: translate(-7%, -50%);
  height: 0%;
  bottom: 0;
  top: 50%;
  border: 1px solid #fff;
  z-index: 1;
  position: absolute;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.para2 {
  background-image: url(../img/para2.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .para2 {
    background-attachment: unset;
  }
}
.para2_inner {
  position: relative;
  margin-top: 10%;
  height: 35vh;
}
.para2 p {
  color: #fff;
  font-size: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 3% 0 5%;
}
@media screen and (max-width: 768px) {
  .para2 p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .para2 p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .para2_inner p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .para2_inner p {
    font-size: 1.1rem;
  }
}
.para2_btn {
  width: 100%;
}
.para2_btnInner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  margin-top: 0%;
  width: 180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 60%;
}
.para2_btn a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.7rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  line-height: 3;
}
.para2_btn a:hover {
  color: #2CC4CB;
}
.para2_btn a:hover::before {
  border: 2px solid #2CC4CB;
}
.para2_btn a:hover::after {
  border: 1px solid #2CC4CB;
}
.para2_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.para2_btn a::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  right: 10%;
  -webkit-transform: translate(-7%, -50%);
  -ms-transform: translate(-7%, -50%);
  transform: translate(-7%, -50%);
  height: 0%;
  bottom: 0;
  top: 50%;
  border: 1px solid #fff;
  z-index: 1;
  position: absolute;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.service_inner {
  width: 100%;
  position: relative;
}
.service_ttl {
  width: 100%;
  text-align: center;
  margin: 10% auto;
}
.service_ttl h3 {
  font-size: 4rem;
  color: #8FF9E4;
  font-family: "Lobster Two", cursive;
}
.service_ttl h2 {
  font-size: 2rem;
  margin-top: 2%;
}
.service_triangleL, .service_triangleR {
  position: absolute;
  width: 100%;
  height: 89%;
  top: 10%;
  background-color: #2CC4CB;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .service_triangleL, .service_triangleR {
    top: 0;
    height: 60%;
  }
}
.service_triangleL {
  clip-path: polygon(0 0, 65% 0, 90% 100%, 0% 100%);
}
.service_triangleR {
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 10% 100%);
}
.service_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 10%;
}
@media screen and (max-width: 768px) {
  .service_item {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .service_item:nth-of-type(3) {
    flex-direction: column;
  }
}
.service_itemImg {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service_itemImg {
    width: 100%;
    text-align: end;
  }
}
@media screen and (max-width: 768px) {
  .service_itemImg:nth-of-type(3) {
    text-align: start;
  }
}
.service_itemImg img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service_itemImg img {
    width: 80%;
  }
}
.service_itemBox {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service_itemBox {
    width: 80%;
  }
}
.service_itemBox-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
}
@media screen and (max-width: 768px) {
  .service_itemBox-txt {
    position: unset;
    transform: unset;
    width: 100%;
    margin: 15% 0;
  }
}
.service_itemBox-txtHp {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .service_itemBox-txtHp {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .service_itemBox-txtHp {
    font-size: 1.5rem;
  }
}
.service_itemBox-txt p {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.2;
}
.service_itemBox-txtLp {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .service_itemBox-txtLp {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .service_itemBox-txtLp {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .service_itemBox-txtLp {
    font-size: 1.3rem;
  }
}
.service_ecInner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10%;
}
.service_ecInner img {
  width: 100%;
}

.works_ttl {
  width: 100%;
  text-align: center;
  margin: 10% auto;
}
.works_ttl h3 {
  font-size: 4rem;
  color: #8FF9E4;
  font-family: "Lobster Two", cursive;
}
.works_ttl h2 {
  font-size: 2rem;
  margin-top: 2%;
}
.works_item {
  margin-top: 5%;
}
.works_itemName {
  width: 70%;
  background: #2CC4CB;
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  margin-bottom: 5%;
}
@media screen and (max-width: 1024px) {
  .works_itemName {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .works_itemName {
    width: 100%;
  }
}
.works_itemName p {
  font-size: 2rem;
  padding-left: 10%;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .works_itemName p {
    font-size: 1.5rem;
    padding-left: 5%;
  }
}
@media screen and (max-width: 480px) {
  .works_itemName p {
    font-size: 1.3rem;
  }
}
.works_itemName p small {
  margin-left: 2%;
  font-size: 0.5em;
}
.works_itemName p small:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.works_itemImg {
  width: 100%;
  text-align: center;
}
.works_itemImg:nth-of-type(2) {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .works_itemImg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1024px) {
  .works_itemImg img {
    width: 80%;
  }
}
.works_itemImg img:nth-last-child(1) {
  margin-top: 5%;
  width: 20%;
  max-width: 235px;
}
.works_itemImg2 {
  width: 100%;
  text-align: center;
}
.works_itemImg2 img {
  width: 100%;
}

.qa_ttl {
  width: 100%;
  text-align: center;
  margin: 10% auto;
}
.qa_ttl h3 {
  font-size: 4rem;
  color: #8FF9E4;
  font-family: "Lobster Two", cursive;
}
.qa_ttl h2 {
  font-size: 2rem;
  margin-top: 2%;
}
.qa_outline {
  position: relative;
  width: 90%;
  margin: 5% auto 0;
  border: 2px solid #8FF9E4;
}
.qa_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 98%;
  margin: 1%;
  border: 1px solid #000;
  padding: 5% 0;
}
.qa_question {
  position: relative;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2% auto;
}
.qa_iconQ {
  background-color: rgba(192, 192, 192, 0.287);
  width: 45px;
  height: 45px;
  margin-right: 5%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.qa_iconQ p {
  font-weight: bold;
  font-size: 1.2rem;
}
.qa_iconA {
  background-color: #8FF9E4;
  width: 45px;
  height: 45px;
  margin-right: 5%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.qa_iconA p {
  font-weight: bold;
  font-size: 1.2rem;
}
.qa_title {
  width: 100%;
  letter-spacing: 2px;
  font-weight: Bold;
  font-size: 1.2rem;
}
.qa_txt {
  width: 100%;
  font-size: 1rem;
  line-height: 45px;
}
.qa_answer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-items: flex-start;
  width: 90%;
  margin: 3% auto;
}

.contact_inner {
  position: relative;
  width: 100%;
}
.contact_ttl {
  width: 100%;
  text-align: center;
  margin: 10% auto;
}
.contact_ttl h3 {
  font-size: 4rem;
  color: #8FF9E4;
  font-family: "Lobster Two", cursive;
}
.contact_ttl h2 {
  font-size: 2rem;
  margin-top: 2%;
}
.contact_form {
  position: relative;
  width: 100%;
  height: 45vh;
  background: url(../img/contact.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact_txtBox {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 33vh;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.contact_txtBox h2 {
  font-size: 2rem;
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact_txtBox h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .contact_txtBox h2 {
    font-size: 1.3rem;
  }
}
.contact_txtBox p {
  line-height: 3;
  font-size: 1.2rem;
  color: #fff;
}
.contact_txtBoxInner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.contact_btn {
  width: 100%;
}
.contact_btnInner {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  margin-top: 0%;
  width: 180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 60%;
}
.contact_btn a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.7rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  line-height: 3;
}
.contact_btn a:hover {
  color: #2CC4CB;
}
.contact_btn a:hover::before {
  border: 2px solid #2CC4CB;
}
.contact_btn a:hover::after {
  border: 1px solid #2CC4CB;
}
.contact_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.contact_btn a::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  right: 10%;
  -webkit-transform: translate(-7%, -50%);
  -ms-transform: translate(-7%, -50%);
  transform: translate(-7%, -50%);
  height: 0%;
  bottom: 0;
  top: 50%;
  border: 1px solid #fff;
  z-index: 1;
  position: absolute;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.contact_btn {
  text-align: initial;
}
.contact_btnInner {
  top: 70%;
}

.pc-block {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .no-sp {
    display: none;
  }
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 99;
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_left {
  width: 20%;
}
.header_logo {
  width: 40%;
}
.header_logo:hover {
  opacity: 0.5;
}
.header_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header_logo a img {
  width: 100%;
}
.header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}
.header_hamburger {
  display: none;
  position: relative;
  background-color: rgba(143, 195, 31, 0.6);
  border-radius: 80% 0 80% 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
}
.header_hamburger span {
  display: inline-block;
  transition: all 0.6s;
  position: absolute;
}
.header_hamburger span:nth-of-type(1) {
  top: 13px;
}
.header_hamburger span:nth-of-type(2) {
  top: 19px;
  left: 11px;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #fff;
}
.header_hamburger span:nth-of-type(3) {
  top: 36px;
}
.header_hamburger span:nth-of-type(1), .header_hamburger span:nth-of-type(3) {
  height: 2px;
  background: #2CC4CB;
  width: 62%;
  left: 10px;
  opacity: 0;
}
.header_hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #fff;
  opacity: 1;
}
.header_hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.header_hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #fff;
  opacity: 1;
}
.header_nav {
  width: 100%;
}
.header_navSp {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  background: #8FC31F;
  opacity: 0.9;
  text-align: center;
  width: 100%;
  height: 100vh;
  border-radius: 0 85% 0 85%;
  transform-origin: right bottom;
  transform: scale(0.03);
  visibility: hidden;
  -webkit-transition: all 0.6s ease, visibility 0.6s ease;
  -o-transition: all 0.6s ease, visibility 0.6s ease;
  transition: all 0.6s ease, visibility 0.6s ease;
}
.header_navSp.active {
  visibility: visible;
  transform-origin: right bottom;
  transform: scale(1);
}
.header_navSpItem {
  width: 35%;
  display: inline-block;
  margin: 0 auto;
  font-size: 1vw;
  font-weight: 700;
  position: absolute;
}
.header_navSpItem:nth-child(1) {
  top: 10%;
  left: 10%;
  transform: translate(-10%, -10%);
}
.header_navSpItem:nth-child(2) {
  top: 25%;
  left: 25%;
  transform: translate(-25%, -25%);
}
.header_navSpItem:nth-child(3) {
  top: 40%;
  left: 40%;
  transform: translate(-40%, -40%);
}
.header_navSpItem:nth-child(4) {
  top: 55%;
  left: 55%;
  transform: translate(-55%, -55%);
}
.header_navSpItem:nth-child(5) {
  top: 70%;
  left: 70%;
  transform: translate(-70%, -70%);
}
.header_navSpItem:nth-child(6) {
  top: 85%;
  left: 85%;
  transform: translate(-85%, -85%);
  text-decoration: wavy underline;
  text-underline-offset: 0.3em;
}
.header_navSpItem:nth-child(6) a {
  text-decoration: overline wavy;
}
.header_navSpItem a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3;
  color: #fff;
}
.header_navSpItems {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  visibility: hidden;
  transition: visivility 0.6s ease;
}
.header_navSpItems.active {
  visibility: visible;
}
.header_navBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.header_navItem {
  width: 15%;
}
.header_navItem_hd {
  position: relative;
}
.header_navItem_hd a {
  display: block;
  line-height: 3;
  width: 100%;
  height: 100%;
}
.header_navItem_hd:after {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#2CC4CB), to(#8FF9E4));
  background: -o-linear-gradient(#2CC4CB, #8FF9E4);
  background: linear-gradient(#2CC4CB, #8FF9E4);
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.header_navItem_hd:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.header_navItem_hd a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  .header {
    position: absolute;
  }
  .header_inner {
    justify-content: space-between;
  }
  .header_right {
    width: 13%;
  }
  .header_hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
  }
  .header_hamburger span {
    display: block;
  }
  .header_nav {
    display: none;
  }
  .header_navSp {
    visibility: visible;
    height: 100vh;
  }
  .header_navSpItem {
    font-size: 3.5vw;
  }
  .header_left {
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  .header_logo {
    margin-top: 5px;
    margin-left: 10px;
  }
  .header_hamburger {
    width: 40px;
    height: 40px;
  }
  .header_hamburger span:nth-of-type(1) {
    top: 13px;
  }
  .header_hamburger span:nth-of-type(2) {
    top: 16px;
    left: 5px;
    font-size: 0.6rem;
  }
  .header_hamburger span:nth-of-type(3) {
    top: 36px;
  }
  .header_hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 15px;
    transform: translateY(0px) rotate(-45deg);
    width: 30%;
  }
  .header_hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 15px;
    transform: translateY(-12px) rotate(45deg);
    width: 30%;
  }
  .header_navSpItem {
    font-size: 5vw;
  }
  .header_logo {
    width: 70%;
  }
}
.footer_inner {
  width: 100%;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.footer_left {
  width: 20%;
}
.footer_logo {
  width: 40%;
}
.footer_logo:hover {
  opacity: 0.5;
}
.footer_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer_logo a img {
  width: 100%;
}
.footer_right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.footer_navBox {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer_navItem {
  width: 15%;
}
.footer_navItem_hd {
  display: inline-block;
  position: relative;
}
.footer_navItem_hd a {
  display: block;
  line-height: 3;
  width: 100%;
  height: 100%;
}
.footer_navItem_hd:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(#2CC4CB, #8FF9E4);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.footer_navItem_hd:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.footer_navItem_hd a:hover {
  opacity: 0.5;
}
.footer_copy {
  position: relative;
  font-size: 15px;
  top: 25%;
  color: #000;
  margin-top: 15vh;
}
.footer_copyInner {
  position: relative;
  width: 100%;
  text-align: center;
  height: 5vh;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .footer {
    display: unset;
  }
  .footer_logo {
    width: 50%;
    margin: 0 auto;
  }
  .footer_right {
    display: none;
  }
}
.a_service_top {
  width: 100%;
  height: 100vh;
}
.a_service_top_iner {
  position: relative;
  width: 100%;
  height: 100%;
}
.a_service_top_box {
  position: absolute;
  top: 30%;
  width: 90%;
  height: 35%;
  left: 0%;
  background-color: #8FF9E4;
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
  opacity: 0;
  -webkit-animation: slidein-L 1s 1.5s forwards;
  animation: slidein-L 1s 1.5s forwards;
}
@media screen and (max-width: 768px) {
  .a_service_top_box {
    width: 100%;
    height: 25%;
  }
}
.a_service_top_box_title {
  display: inline-block;
  position: absolute;
  top: 30%;
  left: 10%;
}
.a_service_top_box_title h1 {
  font-family: "Lobster Two", cursive;
  color: #fff;
  font-size: 8rem;
  width: 100%;
  line-height: 0.6;
}
@media screen and (max-width: 768px) {
  .a_service_top_box_title h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .a_service_top_box_title h1 {
    font-size: 3.5rem;
  }
}
.a_service_top_box_title span {
  font-size: 0.3em;
  font-weight: bolder;
  color: #000;
}
.a_service_top_img {
  position: absolute;
  width: 60%;
  top: 50%;
  right: 0;
  opacity: 0;
  -webkit-animation: slidein-R 0.5s 2s forwards;
  animation: slidein-R 0.5s 2s forwards;
}
@media screen and (max-width: 1024px) {
  .a_service_top_img {
    width: 80%;
    top: 55%;
  }
}
@media screen and (max-width: 768px) {
  .a_service_top_img {
    width: 90%;
    top: 50%;
  }
}
.a_service_top_img img {
  width: 100%;
}
@-webkit-keyframes slidein-R {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}
@keyframes slidein-R {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}
@-webkit-keyframes slidein-L {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}
@keyframes slidein-L {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}
.a_service_hp {
  position: relative;
  width: 100%;
  height: auto;
}
.a_service_hp_iner {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.a_service_hp_txt {
  display: inline-block;
  margin-top: 5%;
  width: 100%;
  height: auto;
  text-align: center;
}
.a_service_hp_txt p {
  font-size: large;
  line-height: 135%;
}

.hp_price_list_box {
  width: 100%;
  margin-top: 5%;
}
.hp_price_list_title {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .hp_price_list_title {
    width: 65%;
  }
}
.hp_price_list_title h3 {
  font-size: 2rem;
}
.hp_price_list_title_ander_bar {
  display: inline-block;
  width: 26%;
  border-bottom: 2px solid #2CC4CB;
}
.hp_price_list {
  width: 100%;
  height: auto;
  margin-top: 5%;
}
.hp_price_list_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .hp_price_list_wrap {
    flex-direction: column;
  }
}
.hp_price_list_contents {
  position: relative;
  width: 300px;
  border-radius: 10px;
  margin-left: 3%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
@media screen and (max-width: 1024px) {
  .hp_price_list_contents {
    width: 65%;
    margin: 0 auto 5%;
  }
}
@media screen and (max-width: 768px) {
  .hp_price_list_contents {
    width: 90%;
  }
}
.hp_price_list_contents:first-child {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .hp_price_list_contents:first-child {
    margin: 0 auto 5%;
  }
}
.hp_price_list_contents:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.hp_price_list_contents:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.hp_price_list_contents_name {
  width: 100%;
  margin-top: 10%;
  text-align: center;
}
.hp_price_list_contents_name p {
  font-weight: bolder;
  font-size: 20px;
}
.hp_price_list_contents_money {
  width: 100%;
  margin-top: 10%;
  text-align: center;
}
.hp_price_list_contents_money p {
  font-size: 10px;
}
.hp_price_list_contents_money strong {
  font-size: 2rem;
}
.hp_price_list_contents_money span {
  font-size: 10px;
}
.hp_price_list_contents_money_btn {
  width: 43%;
  margin: auto;
  margin-top: 10%;
}
.hp_price_list_contents_point {
  position: absolute;
  width: 125px;
  height: 125px;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(112% 100%, 100% 0%, 0% 0%, 0% 0%);
  clip-path: polygon(112% 100%, 100% 0%, 0% 0%, 0% 0%);
  background: #2CC4CB;
  border-radius: 10px;
}
.hp_price_list_contents_point p {
  color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 27%;
  left: 43%;
  font-size: 16px;
}

.contents_wrap {
  display: inline-block;
  width: 100%;
  margin: 10% 0;
  text-align: center;
}
.contents_wrap_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .contents_wrap_box {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .contents_wrap_box {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .contents_wrap_box {
    width: 85%;
  }
}
.contents_wrap_box_list {
  position: relative;
  text-align: start;
}
.contents_wrap_box_list img {
  position: absolute;
  width: 12%;
  top: 50%;
  left: 13%;
  -webkit-transform: translate(-80%, -50%);
  -ms-transform: translate(-80%, -50%);
  transform: translate(-80%, -50%);
}
.contents_wrap_box_list p {
  font-size: 15px;
  width: 80%;
  margin-left: 20%;
  line-height: 2;
}
.contents_wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5%;
}

.a_service_lp {
  position: relative;
  margin-top: 10%;
}
.a_service_lp_iner {
  width: 100%;
}
.a_service_lp_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .a_service_lp_box {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.a_service_lp_txt {
  width: 60%;
  margin-top: 13%;
  line-height: 135%;
}
.a_service_lp_txt p {
  font-size: large;
  line-height: 135%;
}
.a_service_lp_txt_img {
  margin-top: 15%;
}
@media screen and (max-width: 768px) {
  .a_service_lp_txt_img {
    display: none;
  }
}
.a_service_lp_txt_img img {
  width: 100%;
}

.lp_price_list_contents {
  width: 20%;
  border-radius: 10px;
  margin-left: 5%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  text-align: center;
  margin: 10% auto;
  width: 25%;
  padding-bottom: 3%;
}
@media screen and (max-width: 768px) {
  .lp_price_list_contents {
    width: 65%;
    margin: 5% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .lp_price_list_contents {
    width: 90%;
  }
}
.lp_price_list_contents_name {
  margin-top: 10%;
}
.lp_price_list_contents_name p {
  font-weight: bolder;
  font-size: 2rem;
}
.lp_price_list_contents_money {
  margin-top: 10%;
}
.lp_price_list_contents_money p {
  font-size: 1.2rem;
}
.lp_price_list_contents_money p b {
  font-size: 2em;
}
.lp_price_list_contents_money span {
  font-size: 0.5em;
}

.lp_contents_wrap {
  display: inline-block;
  width: 100%;
  margin-top: 10%;
  text-align: center;
}

.lp_contents_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.lp_contents_box_list {
  width: 60%;
  margin: 3% auto;
  position: relative;
  text-align: start;
}
.lp_contents_box_list img {
  position: absolute;
  width: 15%;
  top: 50%;
  left: 13%;
  -webkit-transform: translate(-80%, -50%);
  -ms-transform: translate(-80%, -50%);
  transform: translate(-80%, -50%);
}
.lp_contents_box_list p {
  font-size: 15px;
  width: 80%;
  margin-left: 20%;
  line-height: 2;
}

.lp_price_list {
  display: inline-block;
  width: 50%;
  margin-top: 10%;
}

.a_service_lp_title,
.a_service_hp_title {
  width: 100%;
}
.a_service_lp_title img,
.a_service_hp_title img {
  width: 100%;
}

.a_service_control {
  margin-top: 10%;
  margin-bottom: 10%;
}
.a_service_control_img {
  width: 100%;
}
.a_service_control_img img {
  width: 100%;
}
.a_service_control_iner {
  width: 100%;
  display: block;
}
.a_service_control_txt {
  width: 80%;
  margin: 0 auto;
  margin-top: 10%;
  text-align: center;
}
.a_service_control_txt p {
  font-size: 1rem;
  line-height: 135%;
}

.kp_price_list_contents {
  width: 20%;
  border-radius: 10px;
  margin-left: 5%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  text-align: center;
  margin: 10% auto 0;
  width: 45%;
  border: solid 1px #8FF9E4;
}
@media screen and (max-width: 1024px) {
  .kp_price_list_contents {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .kp_price_list_contents {
    width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .kp_price_list_contents {
    width: 90%;
  }
}
.kp_price_list_contents_name {
  margin-top: 10%;
}
.kp_price_list_contents_name h2 {
  font-size: 2rem;
}
.kp_price_list_contents_name p {
  font-weight: bolder;
  font-size: 1.2rem;
}
.kp_price_list_contents_money {
  margin-top: 10%;
}
.kp_price_list_contents_money p {
  font-size: 1.5rem;
}
.kp_price_list_contents_money p b {
  font-size: 2em;
}
.kp_price_list_contents_money span {
  font-size: 10px;
}

.kp_contents_wrap {
  display: inline-block;
  width: 100%;
  margin-top: 10%;
  text-align: center;
  padding-bottom: 5%;
}

.kp_contents_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.kp_contents_box_list {
  position: relative;
  width: 50%;
  text-align: start;
}
.kp_contents_box_list img {
  position: absolute;
  width: 10%;
  top: 50%;
  left: 15%;
  -webkit-transform: translate(-80%, -50%);
  -ms-transform: translate(-80%, -50%);
  transform: translate(-80%, -50%);
}
.kp_contents_box_list_img {
  background: url(../img/checkblue.png) no-repeat;
  width: 7%;
  background-size: cover;
  background-position: center;
  margin-left: 15%;
}
.kp_contents_box_list p {
  font-size: 1.2vw;
  line-height: 3;
  width: 80%;
  margin-left: 20%;
}
.kp_contents_box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.kp_price_list {
  display: inline-block;
  width: 50%;
  margin-top: 10%;
}

.a_contact_top {
  width: 100%;
  height: 100vh;
}
.a_contact_top_iner {
  position: relative;
  width: 100%;
  height: 100%;
}
.a_contact_top_box {
  position: absolute;
  top: 30%;
  width: 90%;
  height: 35%;
  left: 0%;
  background-color: #8FF9E4;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  opacity: 0;
  -webkit-animation: slidein-L 1s 1.5s forwards;
  animation: slidein-L 1s 1.5s forwards;
}
@media screen and (max-width: 768px) {
  .a_contact_top_box {
    width: 100%;
    height: 25%;
  }
}
.a_contact_top_box_title {
  display: inline-block;
  position: absolute;
  top: 30%;
  left: 5%;
}
.a_contact_top_box_title h1 {
  font-family: "Lobster Two", cursive;
  color: #fff;
  font-size: 8rem;
  width: 100%;
  line-height: 0.6;
}
@media screen and (max-width: 768px) {
  .a_contact_top_box_title h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .a_contact_top_box_title h1 {
    font-size: 3.5rem;
  }
}
.a_contact_top_box_title span {
  font-size: 0.3em;
  font-weight: bolder;
  color: #000;
}
.a_contact_top_img {
  position: absolute;
  width: 60%;
  top: 50%;
  right: 0;
  opacity: 0;
  -webkit-animation: slidein-R 0.5s 2s forwards;
  animation: slidein-R 0.5s 2s forwards;
}
@media screen and (max-width: 1024px) {
  .a_contact_top_img {
    width: 80%;
    top: 55%;
  }
}
@media screen and (max-width: 768px) {
  .a_contact_top_img {
    width: 90%;
    top: 50%;
  }
}
.a_contact_top_img img {
  width: 100%;
}
@-webkit-keyframes slidein-R {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}
@keyframes slidein-R {
  from {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}
@-webkit-keyframes slidein-L {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}
@keyframes slidein-L {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: 0;
    transform: 0;
  }
}

.twitter {
  width: 100%;
  margin-top: 10%;
}
.twitter_iner {
  overflow: hidden;
}
.twitter_txt {
  margin: 0 auto;
  text-align: center;
}
.twitter_txt p {
  font-size: large;
  line-height: 135%;
}
.twitter_btn {
  width: 30%;
  height: 70px;
  margin-top: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.twitter_btn a {
  font-size: large;
  line-height: 4;
}

.a_contact_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 65%;
  margin: 5% auto 10%;
}
.a_contact_form_ttl {
  width: 100%;
  height: 100%;
  font-size: large;
  position: relative;
  margin-bottom: 2%;
}
.a_contact_form_ttl ::before {
  content: "※";
  color: brown;
}
.a_contact_form_txt {
  width: 65%;
  margin: 5% auto 0;
}
.a_contact_form_txt p {
  font-size: larger;
  font-weight: 600;
}
.a_contact_form_txt ::before {
  content: "※";
  color: brown;
}
.a_contact_form_box2 {
  height: 7.5vh;
  width: 100%;
  padding-left: 5px;
  font-size: 1rem;
}
.a_contact_form_example {
  display: inline-block;
  margin-top: 2%;
}
.a_contact_box {
  margin-bottom: 10.5%;
}
.a_contact_box_selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.a_contact_boxT p {
  font-size: 1.5rem;
}
.a_contact_txtarea {
  width: 100%;
  height: 30vh;
  font-size: 1rem;
  padding: 5px;
  margin-right: 13%;
}

.privacy {
  margin-top: 10%;
}
.privacy_ttl {
  display: inline-block;
  margin-bottom: 3%;
}
.privacy_ttl p {
  font-size: large;
}
.privacy_txt {
  border: 1px solid #000;
  height: auto;
  padding: 5%;
}
.privacy_txt p {
  letter-spacing: 1px;
  line-height: 30px;
}
.privacy_chk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5%;
}
.privacy_chk_list :after {
  content: "※";
  color: brown;
}
.privacy_chk p {
  font-size: large;
}
.privacy_chk_txt {
  margin-top: 3%;
}
.privacy_chk_txt p {
  font-size: 1rem;
}

.b_contact {
  margin: 5% auto;
  width: 50%;
  height: 70px;
  line-height: 5;
  border: none;
}
.b_contact:hover {
  color: #fff;
}

.hisu {
  width: 60%;
  text-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}
.hisu ::before {
  content: "※";
  color: brown;
}

div.wrap {
  width: 100%;
  margin: 0 auto;
  vertical-align: middle;
}

div.wrap div {
  position: relative;
  margin: 50px 0;
}

label {
  position: absolute;
  top: 0;
  margin: 10px;
  padding: 0 10px;
  -webkit-transition: top 0.2s ease-in-out, font-size 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, font-size 0.2s ease-in-out;
  font-size: 1.5rem;
}

.activeC {
  top: 60px;
  font-size: 20px;
}

input[type=text] {
  width: 100%;
  padding: 20px;
  border: 1px solid #000;
  font-size: 20px;
}

input[type=text]:focus {
  outline: none;
}

input[type=email] {
  width: 100%;
  padding: 20px;
  border: 1px solid #000;
  font-size: 20px;
}

input[type=email]:focus {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .a_contact_top_box_title h1 {
    font-size: 6.5rem;
  }

  .privacy_chk_txt p {
    font-size: 0.8rem;
  }

  .a_contact_box_selection {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .a_contact_top_box_title h1 {
    font-size: 6rem;
  }

  .a_contact_top_img {
    width: 90%;
  }

  .a_contact_form {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .a_contact_top_box_title h1 {
    font-size: 3.5rem;
  }

  .twitter_txt {
    margin-left: 15%;
    width: 70%;
  }

  .twitter_txt p {
    font-size: 15px;
  }

  .twitter_btn {
    width: 40%;
  }

  .twitter_btn a {
    font-size: 1.2rem;
  }

  .a_contact_form {
    width: 90%;
  }

  .privacy_chk p {
    font-size: 12px;
  }

  .a_contact_box_selection {
    flex-direction: column;
    line-height: 2;
  }

  .l, .h, .o {
    display: inline-block;
  }

  .b_contact {
    width: 50%;
    height: 50px;
    line-height: 3;
  }
}
.works {
  margin-bottom: 10%;
}
.works_list {
  width: 90%;
  margin: 0 auto;
  margin-top: 10%;
}
@media screen and (max-width: 1024px) {
  .works_list {
    margin-top: 10%;
  }
}
@media screen and (max-width: 480px) {
  .works_list {
    width: 90%;
    margin: 0 auto;
    margin-top: 10%;
  }
}
.works_list tr {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0.2%;
}
@media screen and (max-width: 1024px) {
  .works_list tr {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .works_list tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
.works_list tr:last-child {
  width: 100%;
  margin-left: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .works_list tr:last-child {
    width: 100%;
    margin-left: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: start;
  }
}
.works_list table {
  width: 100%;
}
.works_list tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .works_list tbody {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.works_list td:nth-of-type(1) {
  width: 30%;
  background-color: #8FF9E4;
  line-height: 4;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .works_list td:nth-of-type(1) {
    width: 100%;
  }
}
.works_list td:nth-of-type(2) {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.works_list td:nth-of-type(2):hover a {
  opacity: 0.6;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .works_list td:nth-of-type(2) {
    justify-content: start;
    padding-left: 3%;
  }
}
@media screen and (max-width: 480px) {
  .works_list td:nth-of-type(2) {
    padding-left: 0;
    width: 100%;
    text-align: center;
    padding: 5%;
    justify-content: center;
  }
}

.works_list tr .works_listLast1 {
  width: 15%;
}
@media screen and (max-width: 1024px) {
  .works_list tr .works_listLast1 {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .works_list tr .works_listLast1 {
    width: 100%;
  }
}
.works_list tr .works_listLast2 {
  width: 85%;
  padding: 2%;
  text-align: justify;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .works_list tr .works_listLast2 {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .works_list tr .works_listLast2 {
    width: 90%;
    margin: 0 auto;
  }
}

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