@charset "UTF-8";

/* 共通
=======================================================*/

/*バッジを調整*/
.grecaptcha-badge {
  display: none;
}
.br_sp {
  display: none;
}

.on {
  animation: under-fadeIn 1.5s ease-in-out forwards;
}

@media screen and (max-width: 480px) {
  .br_sp {
    display: block;
  }
  .br_pc {
    display: none;
  }
}
/* ローディングアニメーション（ローダー）
=======================================================*/
.loading-content {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: var(--color_2);
  transition: all ease-in-out 1s;
  z-index: 10000;
}
.loading-content.js-loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-content .loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color_1);
  font-size: 30px;
  letter-spacing: 0.05em;
  -webkit-animation: tracking-in-expand 0.6s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
  animation: tracking-in-expand 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 480px) {
  .loading-content .loading-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 380px) {
  .loading-content .loading-text {
    font-size: 16px;
  }
}

/* fv
=======================================================*/

#fv {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 800px;
  overflow: hidden;
}
#fv #fv_bgimg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 92vh;
  min-height: 800px;
  z-index: -1;
  background: url(../img/fv_bg.jpg) no-repeat top center;
  background-size: cover;
  transform-origin: center;
  opacity: 0;
}

#fv #fv_bgimg.on {
  animation: fade 1.4s ease-in 3.2s forwards;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    filter: blur(25px);
  }
  100% {
    opacity: 100%;
    filter: blur(0);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    filter: blur(25px);
  }
  100% {
    opacity: 100%;
    filter: blur(0);
  }
}

#fv .site_copy {
  position: relative;
  top: 80px;
  left: 10%;
  max-width: 800px;
}
#fv .site_copy .fv_title {
  position: relative;
  width: fit-content;
  height: 100%;
  margin-top: 50px;
  font-size: 120px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  overflow: hidden;
}

#fv .site_copy .fv_title span.small {
  font-size: 80px;
}

#fv .site_copy .fv_title > span.c {
  background-color: var(--color_2);
  opacity: 0;
}

#fv .site_copy .fv_title.on span.c {
  animation: curtain-fade 0.01s 2.2s forwards;
}
@-webkit-keyframes curtain-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes curtain-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#fv .site_copy .fv_title::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-101%);
  background: var(--color_5);
}

#fv .site_copy .fv_title.on::before {
  animation: curtain 1.6s 1.5s forwards;
}
@-webkit-keyframes curtain {
  0% {
    transform: translateX(-100%);
  }
  45%,
  55% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}
@keyframes curtain {
  0% {
    transform: translateX(-100%);
  }
  45%,
  55% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(105%);
  }
}

#fv .site_copy .en {
  position: absolute;
  bottom: -56px;
  right: 0;
  font-size: 54px;
  font-weight: bold;
  font-family: "Nothing You Could Do", cursive;
  letter-spacing: 0.2em;
  transform: rotate(-5deg);
  opacity: 0;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    var(--color_5),
    #ff6b6b 50%,
    transparent 50%,
    transparent
  );
  background-position: 100% 0;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
}

#fv .site_copy .en.on {
  animation: enAnime 0.7s ease-in 5.2s forwards;
}
@keyframes enAnime {
  0% {
    background-position: 100% 0;
  }
  100% {
    opacity: 1;
    background-position: 0 0;
  }
}

#fv h1 {
  position: absolute;
  bottom: 5%;
  left: 10%;
  font-size: 26px;
  opacity: 0;
}

#fv h1.on {
  animation: under-fadeIn 1.4s ease-in 6.5s forwards;
}

@media screen and (max-width: 1024px) {
  #fv {
    min-height: 600px;
  }

  #fv #fv_bgimg {
    min-height: 600px;
  }

  #fv .site_copy .fv_title {
    margin-top: 30px;
    font-size: 100px;
  }

  #fv .site_copy .fv_title span.small {
    font-size: 70px;
  }

  #fv h1 {
    line-height: 1.4em;
  }
}

@media screen and (max-width: 896px) {
  #fv {
    min-height: 450px;
  }

  #fv #fv_bgimg {
    min-height: 450px;
  }

  #fv .site_copy {
    top: 50px;
    left: 10%;
    max-width: 600px;
  }

  #fv .site_copy .fv_title {
    margin-top: 30px;
    font-size: 80px;
  }

  #fv .site_copy .fv_title span.small {
    font-size: 50px;
  }
  #fv .site_copy .en {
    bottom: -68px;
  }
}

@media screen and (max-width: 680px) {
  #fv .site_copy {
    max-width: 550px;
  }
}
@media screen and (max-width: 600px) {
  #fv .site_copy {
    max-width: 500px;
  }
  #fv .site_copy .en {
    bottom: -75px;
  }
}
@media screen and (max-width: 480px) {
  #fv {
    height: 70vh;
  }

  #fv .site_copy {
    max-width: 340px;
  }

  #fv .site_copy .fv_title {
    font-size: 50px;
  }

  #fv .site_copy .fv_title span.small {
    font-size: 36px;
  }

  #fv .site_copy .en {
    bottom: -55px;
    font-size: 36px;
    letter-spacing: 0.1em;
  }

  #fv h1 {
    font-size: 18px;
    line-height: 1.6em;
  }
}

@media screen and (max-width: 390px) {
  #fv .site_copy {
    max-width: 300px;
  }
}
@media screen and (max-width: 340px) {
  #fv .site_copy {
    max-width: 280px;
  }
}
#main {
  background-color: var(--color_2);
}

/* INFOMATION
=======================================================*/
#info {
  padding: 100px 0;
  opacity: 0;
}

#info .h2_box {
  display: block;
  margin: 0 auto;
}
#info .h2_box h2 {
  font-size: 24px;
}
#info .blog_wrap {
  width: 50%;
  max-width: 1080px;
  margin: 0 auto;
}
#info .blog_wrap article {
  line-height: 2.4;
}
#info .blog_wrap article .news_cat {
  display: inline-block;
  width: 90px;
  margin: 0 2em;
  font-size: 11px;
  text-align: center;
  line-height: 1.4;
  border-left: solid 3px var(--color_4);
  border-bottom: solid 1px var(--color_4);
}
#info .blog_wrap article .cat_about-work {
  border-left: solid 3px var(--color_5);
  border-bottom: solid 1px var(--color_5);
}
#info .blog_wrap article .news_date {
}
#info .blog_wrap article .news_title {
  margin-left: 40px;
}

#info .blog_wrap .view_more {
  text-align: right;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  #info .blog_wrap {
    width: 70%;
  }
}

@media screen and (max-width: 896px) {
  #info .blog_wrap {
    width: 86%;
  }
  #info .blog_wrap article {
    line-height: 1.6;
    margin-top: 30px;
  }
  #info .blog_wrap article:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  #info .blog_wrap {
    width: 75%;
  }
  #info .blog_wrap article .news_title {
    margin-left: 20px;
    line-height: 4;
  }
  #info .blog_wrap .view_more a {
    width: 120px;
    padding-right: 0;
  }
}
@media screen and (max-width: 360px) {
  #info .blog_wrap {
    width: 75%;
  }
}
/* banner
=======================================================*/
#banner .img_box {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto 20%;
}
#banner .img_box p {
  text-align: center;
  color: #eb5694;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 3%;
}
#banner .img_box p br {
  display: none;
}
#banner .img_box a {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  filter: drop-shadow(#cccccc80 1px 2px 13px);
}
#banner .img_box a:hover {
  transform: scale(0.99);
  transition: 0.5s;
  filter: drop-shadow(1px 2px 3px #cccccc80);
}
#banner .img_box a img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  #banner .img_box {
    width: 70%;
  }
}
@media screen and (max-width: 896px) {
  #banner .img_box {
    width: 94%;
  }
}
@media screen and (max-width: 480px) {
  #banner .img_box p br {
    display: block;
  }
}

/* mission 使命
=======================================================*/
#mission {
  position: relative;
}
#mission:first-child {
  text-align: left;
}
#mission .h2_box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 50px 0;
}
#mission .h2_box h2 {
  margin-top: 50px;
}
#mission .h2_box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 10px;
  background-color: var(--color_1);
}
.h2_box p span {
  opacity: 0;
  display: inline-block;
}
.h2_box p span.on {
  animation: up-anim 1.5s ease-out forwards;
}
.h2_box p span:nth-child(1) {
  animation-delay: 0s;
}
.h2_box p span:nth-child(2) {
  animation-delay: 0.35s;
}
.h2_box p span:nth-child(3) {
  animation-delay: 0.65s;
}
.h2_box p span:nth-child(4) {
  animation-delay: 0.2s;
}
.h2_box p span:nth-child(5) {
  animation-delay: 0.6s;
}
.h2_box p span:nth-child(6) {
  animation-delay: 0.4s;
}
.h2_box p span:nth-child(7) {
  animation-delay: 0.7s;
}
.h2_box p span:nth-child(8) {
  animation-delay: 0.2s;
}
.h2_box p span:nth-child(9) {
  animation-delay: 0.6s;
}
.h2_box p span:nth-child(10) {
  animation-delay: 0.4s;
}
.h2_box p span:nth-child(11) {
  animation-delay: 0.7s;
}

.loop_text {
  position: absolute;
  right: 0;
  top: -80px;
  height: auto;
  transform: rotate(90deg);
  color: #eaeaea80;
  font-size: 80px;
  font-weight: 900;
  text-align: left;
  line-height: 0.8;
  white-space: nowrap;
  animation: text-loop 100s linear infinite;
}
@-webkit-keyframes text-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.loop_text:last-of-type {
  animation: text-loop2 100s linear infinite;
}
@-webkit-keyframes text-loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes text-loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

#mission > p {
  font-size: 24px;
  text-align: right;
  letter-spacing: 0.3em;
  line-height: 2.4;
  opacity: 0;
}
#mission > p:nth-child(2).on {
  animation-delay: 0.5s;
}
#mission > p:nth-child(3).on {
  animation-delay: 1s;
}

#mission .view_more {
  opacity: 0;
}
#mission .view_more.on {
  animation: under-fadeIn 1.5s ease-in-out 1s forwards;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 896px) {
}

@media screen and (max-width: 480px) {
  #mission > p {
    font-size: 18px;
    text-align: left;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 360px) {
  /*#mission > p {
        font-size: 14px;
    }*/
}

/* OUR SERVICE
=======================================================*/
#our_service {
  position: relative;
  margin: 100px auto;
  background-color: var(--color_5);
  transform: translateY(180px);
  transition: 4s;
}
#our_service.on {
  animation: slidein2 5s ease forwards;
}
@-webkit-keyframes slidein2 {
  0% {
    transform: translateY(180px);
  }
  40% {
    transform: translateY(-10px);
  }
  86% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slidein2 {
  0% {
    transform: translateY(180px);
  }
  40% {
    transform: translateY(-10px);
  }
  86% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

#our_service .wave_box {
  position: relative;
  top: -30px;
  width: 120%;
  height: 160px;
  margin: 0 auto 0 -10%;
  background: url(../img/sp_bg_wave3.png) repeat-x;
  background-position: 0 0;
  -webkit-animation: loop 50s linear infinite;
  animation: loop 50s linear infinite;
}
#our_service .wave_box::before {
  content: "";
  width: 120%;
  height: 180px;
  margin-left: -10%;
  position: absolute;
  top: -12%;
  background: url(../img/sp_bg_wave3.png) repeat-x;
  background-position: 0 0;
  -webkit-animation: loop 20s linear infinite;
  animation: loop 20s linear infinite;
  opacity: 0.2;
}
#our_service .wave_box::after {
  content: "";
  width: 120%;
  height: 180px;
  margin-left: -10%;
  position: absolute;
  top: -18%;
  background: url(../img/sp_bg_wave3.png) repeat-x;
  background-position: 0 0;
  -webkit-animation: loop 10s ease-in-out infinite;
  animation: loop 10s ease-in-out infinite;
  opacity: 0.2;
}

#our_service .h2_box {
  color: var(--color_2);
}

#our_service .content_item {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  margin: 100px auto;
  padding: 0 13%;
}
#our_service .content_item:last-child {
  padding-bottom: 100px;
}

#our_service .content_item .img_box {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
}
#our_service .content_item .img_box.on {
  animation: scale-up 1s ease-in-out forwards;
}
@-webkit-keyframes scale-up {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale-up {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#our_service .content_item .img_box > img {
  width: 100%;
  height: auto;
}

#our_service .content_item .text_box {
  width: 450px;
  height: 300px;
  margin: 0 auto;
  padding: auto 0;
  opacity: 0;
}
#our_service .content_item .text_box.on {
  animation: under-fadeIn 0.8s ease-in-out 0.6s forwards;
}

#our_service .content_item .text_box h3 {
  position: relative;
  margin-top: 50px;
  font-size: 36px;
  line-height: 1;
  color: var(--color_2);
}
#our_service .content_item .text_box h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -25%;
  width: 100px;
  height: 1.5px;
  background-color: var(--color_2);
}

#our_service .content_item .text_box span {
  display: block;
  font-size: 12px;
  margin-bottom: 30px;
  color: var(--color_3);
}

#our_service .content_item .text_box > p {
  font-size: 20px;
  color: var(--color_2);
}

#our_service .content_item:nth-child(odd) {
  flex-direction: row-reverse;
}

#our_service .content_item:nth-child(odd) h3,
#our_service .content_item:nth-child(odd) span,
#our_service .content_item:nth-child(odd) p {
  text-align: right;
}
#our_service .content_item:nth-child(odd) span {
  margin-right: 0;
  margin-left: auto;
}
#our_service .content_item:nth-child(odd) .text_box h3::before {
  left: 103%;
}

@media screen and (max-width: 1024px) {
  #our_service .wave_box {
    height: 130px;
  }

  #our_service .content_item {
    padding: 0 8%;
  }

  #our_service .content_item .img_box {
    width: 250px;
    height: 250px;
  }
  #our_service .content_item .text_box {
    width: 380px;
    height: 250px;
  }
  #our_service .content_item .text_box h3 {
    margin-top: 20px;
  }
  #our_service .content_item .text_box h3::before {
    left: -28%;
    width: 90px;
  }
  #our_service .content_item .text_box span {
    margin-bottom: 20px;
  }
  #our_service .content_item .text_box > p {
    line-height: 1.6;
  }
}

@media screen and (max-width: 896px) {
  #our_service .wave_box {
    height: 50px;
  }

  #our_service .content_item {
    padding: 0;
  }

  #our_service .content_item .img_box {
    width: 200px;
    height: 200px;
  }

  #our_service .content_item .text_box {
    width: 350px;
    height: 200px;
  }

  #our_service .content_item .text_box h3 {
    font-size: 30px;
    margin-top: 0;
  }

  #our_service .content_item .text_box span {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  #our_service .content_item {
    display: block;
    margin: 50px auto;
  }
  #our_service .content_item .img_box {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
  #our_service .content_item .text_box {
    width: 90%;
    height: auto;
  }
  #our_service .content_item .text_box h3 {
    font-size: 24px;
    margin-top: 15px;
    text-align: center;
  }
  #our_service .content_item .text_box h3::before {
    display: none;
  }
  #our_service .content_item .text_box span {
    text-align: center;
    margin-bottom: 20px;
  }
  #our_service .content_item .text_box > p {
    font-size: 18px;
    text-align: left;
    color: var(--color_2);
  }
}

/*泡用*/
/*#our_service .content_container{
    padding-bottom: 50px;
}*/
#our_service .content_container .bubble {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 15px;
  height: 15px;
  background-color: rgb(115, 158, 222);
  border-radius: 50%;
  animation: bubble 10s ease-in infinite;
  z-index: -10;
}

#our_service .content_container .bubble2 {
  width: 6px;
  height: 6px;
  left: 15%;
  animation: bubble 9s ease-in infinite;
}

#our_service .content_container .bubble3 {
  width: 12px;
  height: 12px;
  left: 10%;
  animation: bubble2 14s ease-in 0.2s infinite;
}

#our_service .content_container .bubble4 {
  width: 11px;
  height: 11px;
  left: 85%;
  animation-duration: 14s;
  animation-delay: 2s;
}

#our_service .content_container .bubble5 {
  width: 10px;
  height: 10px;
  left: 8%;
  animation-duration: 10s;
  animation-delay: 4s;
}

#our_service .content_container .bubble6 {
  width: 6px;
  height: 6px;
  left: 83%;
  animation-duration: 14s;
}

#our_service .content_container .bubble7 {
  width: 8px;
  height: 8px;
  left: 70%;
  animation-duration: 10s;
}
@-webkit-keyframes bubble {
  0% {
    bottom: 0;
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  80% {
    opacity: 0.9;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    bottom: 90%;
    transform: translateX(15px);
  }
}
@keyframes bubble {
  0% {
    bottom: 0;
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  80% {
    opacity: 0.9;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    bottom: 90%;
    transform: translateX(15px);
  }
}
@-webkit-keyframes bubble2 {
  0% {
    bottom: 0;
    transform: translateX(100px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    opacity: 0.9;
  }
  100% {
    bottom: 85%;
    opacity: 0;
  }
}
@keyframes bubble2 {
  0% {
    bottom: 0;
    transform: translateX(100px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    opacity: 0.9;
  }
  100% {
    bottom: 85%;
    opacity: 0;
  }
}
/*泡用end*/

/*下のループ・サービス部分*/
#our_service .loop_box {
  position: relative;
  width: 100vw;
  height: 100px;
  margin-top: 100px;
  background-color: var(--color_5);
}

#our_service .content_container .loop_box .loop_text {
  position: absolute;
  right: 0;
  top: 20%;
  height: 100%;
  color: #5e98ee;
  mix-blend-mode: screen;
  font-size: 80px;
  font-weight: 900;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
  animation: text-loop 100s linear infinite;
}
@-webkit-keyframes text-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

#our_service .content_container .loop_box .loop_text:last-of-type {
  animation: text-loop2 100s linear infinite;
}
@-webkit-keyframes text-loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes text-loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@media screen and (max-width: 480px) {
  #our_service .loop_box {
    height: 100px;
    margin-top: 30px;
  }
}
/*下ループここまで*/
/*サービスリンクバナー*/
.service_link {
  width: 100%;
  background-color: var(--color_2);
  border-radius: 30px;
  filter: drop-shadow(0 5px 13px #114eaa);
  transition: 0.5s;
}
.service_link:hover {
  transform: scale(0.99);
  transition: 0.5s;
  filter: drop-shadow(0 5px 3px #114eaa);
}

.service_link a {
  width: 100%;
  height: 100%;
  padding: 5% 10%;
}

.service_link a p:first-child {
  position: relative;
  bottom: 0;
  width: auto;
  line-height: 2.4em;
  margin: 0 auto 20px 0;
  color: var(--color_1);
  overflow: hidden;
}
.service_link a p:first-child span:first-child {
  margin: 0 20px;
  opacity: 0;
}
.ver_1,
.ver_2,
.ver_3 {
  position: absolute;
  top: 0;
  left: 103px;
  font-size: 36px;
  font-weight: bold;
  color: var(--color_5);
  opacity: 0;
  transform: translateY(100%);
  animation: wordChange 9s infinite;
}
@keyframes wordChange {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  6%,
  27% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
  }
}
.ver_2 {
  animation-delay: 3.3s;
}
.ver_3 {
  animation-delay: 6.6s;
}

.service_link a .img_box {
  display: flex;
  width: 70%;
  margin: 0 auto;
}
.service_link a .img_box .img_box_item {
  width: calc(100% / 3);
}
.service_link a > p {
  width: fit-content;
  margin: 20px 0 0 auto;
  padding: 0 20px;
  font-size: 24px;
  font-weight: bold;
  background-color: var(--color_3);
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 896px) {
  .service_link a {
    padding: 2% 5%;
  }
  .service_link a p:first-child {
    line-height: 2em;
  }
}

@media screen and (max-width: 480px) {
  .service_link a p:first-child {
    font-size: 24px;
    letter-spacing: normal;
  }
  .ver_1,
  .ver_2,
  .ver_3 {
    left: 103px;
    font-size: 30px;
  }

  .service_link a .img_box {
    width: 100%;
  }

  .service_link a > p {
    font-size: 20px;
  }
}

/* PRODUCTION
=======================================================*/
#production {
  position: relative;
  display: flex;
  background-color: var(--color_2);
  height: 500px;
  padding-bottom: 100px;
}

#production .h2_box {
  position: absolute;
  top: 0;
  left: calc(50% - 250px);
  width: 500px;
  margin-top: 30px;
  z-index: 10;
  color: var(--color_2);
}

#production .content_container {
  position: relative;
  width: 50%;
  height: 100%;
  transition: 0.5s;
}

#production .content_container:hover a {
  filter: none;
  transition: 0.5s;
  border: solid 5px var(--color_1);
}

#production .content_container .pro1 {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/pro1_img.jpg) no-repeat;
  background-size: cover;
  background-position: right 40% top 30%;
  filter: brightness(0.3);
  border: solid 15px var(--color_1);
  transition: 0.5s;
}

#production .content_container .pro2 {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/pro2_img.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  border: solid 15px var(--color_1);
  transition: 0.5s;
}

#production .content_container .pro_text_box {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 10%);
  width: fit-content;
  height: 40px;
  padding: 0 10px;
  color: var(--color_2);
  font-size: 20px;
  background-color: #000;
}
#production .content_container .pro_text_box p {
  line-height: 40px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 896px) {
}

@media screen and (max-width: 480px) {
  #production {
    flex-direction: column;
    margin-top: 180px;
  }

  #production .h2_box {
    top: -140px;
    color: var(--color_1);
  }

  #production .content_container {
    width: 100%;
  }

  #production .content_container .pro_text_box {
    left: 5px;
  }
}
