@charset "UTF-8";
/*文字化け防止*/
html {
  fontsize: 100%;
}

/*指定した文字サイズを正しく反映*/
/*変数*/
/*ブレイクポイント*/
/*メディアクエリ*/
html, body {
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  html, body {
    width: 100%;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 16px;
  line-height: calc(27 / 16);
  color: #444;
  background: linear-gradient(-45deg, #ff8832 0%, #ffae42 100%);
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  height: auto;
}

h1,
h2 {
  margin: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
  font-weight: 100;
}

h3 {
  font-size: 18px;
  font-weight: 400;
}

p {
  margin: 0;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
}

a {
  text-decoration: none;
  color: #444;
}

button {
  border: 0;
}

h2 {
  font-size: 32px;
  font-weight: 300;
}

h3 {
  margin: 0;
}

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

@media (max-width: 767px) {
  .br::before {
    content: "\A";
    white-space: pre;
  }
}

#bg_pattern_area_wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

#bg_pattern_area_wrapper .container_color {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: all 1s cubic-bezier(0.75, 0, 0.25, 1);
}

#bg_pattern_area_wrapper .container_color.move {
  opacity: 0;
}

#bg_pattern_area_wrapper .bg_pattern_area {
  width: 118%;
  max-width: 2448px;
  height: 118%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#bg_pattern_area_wrapper .bg_pattern_area .bg_pattern_area_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

#bg_pattern_area_wrapper .bg_pattern_area .bg_pattern_area_inner img {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#bg_pattern_area_wrapper .bg_pattern_area .bg_pattern_area_inner .height_full {
  width: auto;
  height: 100%;
}

#bg_pattern_area_wrapper .bg_pattern_area .bg_pattern_area_inner .bg_geometry {
  z-index: 3;
}

#bg_pattern_area_wrapper .bg_pattern_area .bg_pattern_area_inner .bg_grid_b {
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}

#bg_pattern_area_wrapper .bg_pattern_area .bg_pattern_area_inner .bg_grid_w {
  z-index: 1;
  opacity: 0.7;
}

#bg_pattern_area_wrapper .bg_pattern_area .bg_pattern_area_inner .bg_grid_b_on {
  opacity: 0.2;
}

.scroll_bar_area {
  position: absolute;
  top: 50%;
  right: -144px;
  z-index: 10;
  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-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 767px) {
  .scroll_bar_area {
    display: none;
  }
}

.scroll_bar_area .scroll_bar {
  width: 100px;
  height: 1px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.scroll_bar_area .bar_before div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #555;
}

.scroll_bar_area .bar_before .bar_before_on {
  -webkit-animation: bar_before infinite 2.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: bar_before infinite 2.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes bar_before {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes bar_before {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.scroll_bar_area .bar_after div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: #444;
}

.scroll_bar_area .bar_after .bar_after_on {
  -webkit-animation: bar_after infinite 2.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: bar_after infinite 2.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes bar_after {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes bar_after {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  60% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.scroll_bar_area p {
  display: inline-block;
  margin: 0 20px 0 20px;
  color: #555;
}

.bg_shape_area {
  width: 100vw;
  max-width: 1280px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
}

.bg_shape_area .bg_shape_box:first-of-type {
  height: 70%;
  aspect-ratio: 1;
  position: absolute;
  top: -10%;
  left: -10%;
}

.bg_shape_area .bg_shape_box:nth-of-type(2) {
  height: 90%;
  aspect-ratio: 1;
  position: absolute;
  bottom: -10%;
  right: -5%;
}

.bg_shape_area .bg_shape_box:nth-of-type(3) {
  height: 40%;
  aspect-ratio: 1;
  position: absolute;
  top: -25%;
  right: 5%;
}

.bg_shape_area .bg_shape_box:last-of-type {
  height: 30%;
  aspect-ratio: 1;
  position: absolute;
  bottom: -15%;
  left: 10%;
}

.bg_shape_area .bg_shape_box_inner {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
}

.bg_shape_area .bg_shape_box_inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  width: 100%;
}

.bg_shape_area .bg_shape_box_inner img:first-of-type {
  opacity: 0.2;
  -webkit-animation: bg_shape_b infinite 5s linear;
          animation: bg_shape_b infinite 5s linear;
}

@-webkit-keyframes bg_shape_b {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes bg_shape_b {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.bg_shape_area .bg_shape_box_inner img:nth-of-type(2) {
  opacity: 0.25;
  -webkit-animation: bg_shape_g infinite 5s linear;
          animation: bg_shape_g infinite 5s linear;
}

@-webkit-keyframes bg_shape_g {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes bg_shape_g {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.bg_shape_area .bg_shape_box_inner img:last-of-type {
  opacity: 0.25;
  -webkit-animation: bg_shape_w infinite 10s linear;
          animation: bg_shape_w infinite 10s linear;
}

@-webkit-keyframes bg_shape_w {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes bg_shape_w {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.section_title {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(-1%, -17%) rotateZ(8deg);
          transform: translate(-1%, -17%) rotateZ(8deg);
  z-index: 5;
  width: 542.84px;
  height: 276.65px;
  -webkit-transition: all 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: all 1s cubic-bezier(0.75, 0, 0.25, 1);
}

@media (max-width: 767px) {
  .section_title {
    display: none;
  }
}

.section_title h1 {
  color: #444;
  font-size: 112px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: none;
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-transform: translate(-50%, -50%) rotateY(0);
          transform: translate(-50%, -50%) rotateY(0);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .section_title h1 {
    font-size: 64px;
  }
}

.section_title h1:first-of-type {
  display: block;
}

.section_title .change_out {
  -webkit-animation: change_out forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: change_out forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes change_out {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(0);
            transform: translate(-50%, -50%) rotateY(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(90deg);
            transform: translate(-50%, -50%) rotateY(90deg);
  }
}

@keyframes change_out {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(0);
            transform: translate(-50%, -50%) rotateY(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(90deg);
            transform: translate(-50%, -50%) rotateY(90deg);
  }
}

.section_title .change_in {
  -webkit-animation: change_in forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: change_in forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes change_in {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(-90deg);
            transform: translate(-50%, -50%) rotateY(-90deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(0);
            transform: translate(-50%, -50%) rotateY(0);
  }
}

@keyframes change_in {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(-90deg);
            transform: translate(-50%, -50%) rotateY(-90deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(0);
            transform: translate(-50%, -50%) rotateY(0);
  }
}

.initial_block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  z-index: 30;
  background-color: #fff;
  -webkit-clip-path: inset(0% 0 0 0);
          clip-path: inset(0% 0 0 0);
  display: block;
}

.initial_block_off {
  -webkit-animation: initial_block_off forwards 0.5s cubic-bezier(0.11, 0.45, 0.58, 0.9);
          animation: initial_block_off forwards 0.5s cubic-bezier(0.11, 0.45, 0.58, 0.9);
}

@-webkit-keyframes initial_block_off {
  0% {
    display: block;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  99% {
    display: block;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    display: none;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
}

@keyframes initial_block_off {
  0% {
    display: block;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  99% {
    display: block;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
  100% {
    display: none;
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
}

.contact_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  max-width: 1280px;
  height: 100dvh;
  z-index: 20;
  display: none;
  overflow: hidden;
}

.contact_modal .c_modal_bg_wrapper {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  position: relative;
  z-index: 1;
}

.contact_modal .c_modal_bg_wrapper .c_modal_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
  width: 250%;
  height: 200%;
  z-index: 1;
  background-color: rgba(90, 90, 90, 0.7);
}

.contact_modal .c_modal_bg_wrapper .c_modal_corner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  z-index: 2;
  -webkit-transition: all 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
}

.contact_modal .c_modal_bg_wrapper .c_modal_corner1 {
  top: 110%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ff8832;
  -webkit-animation: modal_corner_show1 forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
          animation: modal_corner_show1 forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
  border: solid 1px #ff8832;
  outline: solid 8px #ff8832;
  outline-offset: 16px;
}

@media (max-width: 767px) {
  .contact_modal .c_modal_bg_wrapper .c_modal_corner1 {
    -webkit-animation: modal_corner_show1_sp forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
            animation: modal_corner_show1_sp forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
  }
  @-webkit-keyframes modal_corner_show1_sp {
    0% {
      -webkit-transform: translate(-50%, 50%);
              transform: translate(-50%, 50%);
    }
    100% {
      -webkit-transform: translate(-70%, -20%);
              transform: translate(-70%, -20%);
    }
  }
  @keyframes modal_corner_show1_sp {
    0% {
      -webkit-transform: translate(-50%, 50%);
              transform: translate(-50%, 50%);
    }
    100% {
      -webkit-transform: translate(-70%, -20%);
              transform: translate(-70%, -20%);
    }
  }
}

@-webkit-keyframes modal_corner_show1 {
  0% {
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  100% {
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
  }
}

@keyframes modal_corner_show1 {
  0% {
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
  100% {
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
  }
}

.contact_modal .c_modal_bg_wrapper .c_modal_corner2 {
  bottom: 110%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  background-color: #ffae42;
  -webkit-animation: modal_corner_show2 forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
          animation: modal_corner_show2 forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
  border: solid 1px #ffae42;
  outline: solid 8px #ffae42;
  outline-offset: 16px;
}

@media (max-width: 767px) {
  .contact_modal .c_modal_bg_wrapper .c_modal_corner2 {
    -webkit-animation: modal_corner_show2_sp forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
            animation: modal_corner_show2_sp forwards 0.5s cubic-bezier(0.08, 0.34, 0.58, 1);
  }
  @-webkit-keyframes modal_corner_show2_sp {
    0% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
    100% {
      -webkit-transform: translate(-30%, 20%);
              transform: translate(-30%, 20%);
    }
  }
  @keyframes modal_corner_show2_sp {
    0% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
    100% {
      -webkit-transform: translate(-30%, 20%);
              transform: translate(-30%, 20%);
    }
  }
}

@-webkit-keyframes modal_corner_show2 {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
  }
}

@keyframes modal_corner_show2 {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
  }
}

.contact_modal .c_modal_bg_wrapper .modal_corner_hidden1 {
  -webkit-animation: modal_corner_hidden1 forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
          animation: modal_corner_hidden1 forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
}

@media (max-width: 767px) {
  .contact_modal .c_modal_bg_wrapper .modal_corner_hidden1 {
    -webkit-animation: modal_corner_hidden1_sp forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
            animation: modal_corner_hidden1_sp forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
  }
  @-webkit-keyframes modal_corner_hidden1_sp {
    0% {
      -webkit-transform: translate(-70%, -20%);
              transform: translate(-70%, -20%);
    }
    100% {
      -webkit-transform: translate(-50%, 50%);
              transform: translate(-50%, 50%);
    }
  }
  @keyframes modal_corner_hidden1_sp {
    0% {
      -webkit-transform: translate(-70%, -20%);
              transform: translate(-70%, -20%);
    }
    100% {
      -webkit-transform: translate(-50%, 50%);
              transform: translate(-50%, 50%);
    }
  }
}

@-webkit-keyframes modal_corner_hidden1 {
  0% {
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
  }
  100% {
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}

@keyframes modal_corner_hidden1 {
  0% {
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
  }
  100% {
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}

.contact_modal .c_modal_bg_wrapper .modal_corner_hidden2 {
  -webkit-animation: modal_corner_hidden2 forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
          animation: modal_corner_hidden2 forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
}

@media (max-width: 767px) {
  .contact_modal .c_modal_bg_wrapper .modal_corner_hidden2 {
    -webkit-animation: modal_corner_hidden2_sp forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
            animation: modal_corner_hidden2_sp forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
  }
  @-webkit-keyframes modal_corner_hidden2_sp {
    0% {
      -webkit-transform: translate(-30%, 20%);
              transform: translate(-30%, 20%);
    }
    100% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
  }
  @keyframes modal_corner_hidden2_sp {
    0% {
      -webkit-transform: translate(-30%, 20%);
              transform: translate(-30%, 20%);
    }
    100% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
    }
  }
}

@-webkit-keyframes modal_corner_hidden2 {
  0% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes modal_corner_hidden2 {
  0% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.contact_modal .contact_form {
  width: 85%;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0) translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
          transform: scale(0) translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
  z-index: 3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form {
    width: 90%;
    max-width: 540px;
    height: 80%;
    overflow-y: scroll;
  }
}

.contact_modal .contact_form .contact_form_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 80px 0 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .contact_form_inner {
    padding: 0 56px 0 56px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .contact_form_inner {
    height: auto;
    padding: 40px 32px 40px 32px;
  }
}

.contact_modal .contact_form .contact_form_inner .footer_sp {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 15;
  margin-top: 100px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .contact_form_inner .footer_sp {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1120px) {
  .contact_modal .contact_form .contact_form_inner .footer_sp {
    display: none;
  }
}

@media (min-width: 1121px) {
  .contact_modal .contact_form .contact_form_inner .footer_sp {
    display: none;
  }
}

.contact_modal .contact_form .contact_form_inner .footer_sp a {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 0px 12px rgba(90, 90, 90, 0.4);
          box-shadow: 0px 0px 12px rgba(90, 90, 90, 0.4);
  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;
  padding: 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: auto;
}

.contact_modal .contact_form .contact_form_inner .footer_sp a i {
  font-size: 20px;
}

.contact_modal .contact_form .contact_form_inner .footer_sp a:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.contact_modal .contact_form .contact_form_inner .footer_sp a:nth-of-type(2) {
  margin-left: 16px;
}

.contact_modal .contact_form .contact_form_inner .footer_sp small {
  display: inline-block;
  font-weight: 300;
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

.contact_modal .contact_form svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(10);
          transform: translate(-50%, -50%) scale(10);
  mix-blend-mode: darken;
  opacity: 0.4;
  pointer-events: none;
}

.contact_modal .contact_form h2 {
  display: block;
  font-size: 64px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 100%;
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form h2 {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form h2 {
    font-size: 40px;
  }
}

.contact_modal .contact_form .form {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form {
    display: block;
  }
}

.contact_modal .contact_form .form div {
  width: 100%;
  margin-top: 32px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form div {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form div {
    margin-top: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form div p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form div p {
    font-size: 14px;
  }
}

.contact_modal .contact_form .form div label {
  width: 100%;
  display: block;
  text-align: left;
  position: relative;
}

.contact_modal .contact_form .form div label p {
  display: inline-block;
  color: #444;
  opacity: 0.9;
}

.contact_modal .contact_form .form div label p span {
  position: relative;
}

.contact_modal .contact_form .form div label p span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -3px;
  background-color: rgba(50, 50, 50, 0.6);
  -webkit-box-shadow: 0 0 5px rgba(110, 110, 110, 0.4);
          box-shadow: 0 0 5px rgba(110, 110, 110, 0.4);
}

.contact_modal .contact_form .form div label p:last-child {
  margin-left: 24px;
  font-size: 14px;
  vertical-align: text-top;
  padding: 0 8px;
  background: linear-gradient(-45deg, #ff8832 0%, #ffae42 100%);
  color: #fff;
  text-shadow: none;
  border-radius: 4px;
}

.contact_modal .contact_form .form div input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  border: 0px solid white;
  border-bottom: 1px solid rgba(50, 50, 50, 0.7);
  border-left: 1px solid rgba(50, 50, 50, 0.7);
  background-color: transparent;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  color: #444;
  font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form div input {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form div input {
    margin-top: 4px;
    font-size: 14px;
  }
}

.contact_modal .contact_form .form div input[type="text"]:focus {
  outline: none;
}

.contact_modal .contact_form .form .form_left {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-top: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form .form_left {
    width: calc(40% - 24px);
    margin-right: 24px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .form_left {
    width: 100%;
    margin-right: 0;
  }
}

.contact_modal .contact_form .form .form_left div:first-child {
  margin-top: 0px;
}

.contact_modal .contact_form .form .form_right {
  width: calc(50% - 30px);
  margin-left: 30px;
  margin-top: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form .form_right {
    width: calc(60% - 24px);
    margin-left: 24px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .form_right {
    width: 100%;
    margin-left: 0;
    margin-top: 28px;
  }
}

.contact_modal .contact_form .form .form_right div {
  width: 100%;
  margin-top: 32px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form .form_right div {
    margin-top: 24px;
  }
}

.contact_modal .contact_form .form .form_right div:first-child {
  margin-top: 0px;
}

.contact_modal .contact_form .form .form_right .form_right_top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact_modal .contact_form .form .form_right .form_right_top div {
  margin-top: 0;
}

.contact_modal .contact_form .form .form_right .form_right_top .select-wrapper {
  margin-top: 8px;
  position: relative;
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .form_right .form_right_top .select-wrapper {
    margin-top: 4px;
  }
}

.contact_modal .contact_form .form .form_right .form_right_top .select-wrapper select {
  width: 100%;
  padding: 8px;
  display: block;
  background-color: transparent;
  border: 0px solid white;
  border-bottom: 1px solid rgba(50, 50, 50, 0.7);
  border-left: 1px solid rgba(50, 50, 50, 0.7);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form .form_right .form_right_top .select-wrapper select {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .form_right .form_right_top .select-wrapper select {
    font-size: 14px;
  }
}

.contact_modal .contact_form .form .form_right .form_right_top .select-wrapper select option:first-child {
  color: #757575;
}

.contact_modal .contact_form .form .form_right .form_right_top .select-wrapper select:invalid {
  color: #757575;
}

.contact_modal .contact_form .form .form_right .form_right_top .select-wrapper select option {
  color: #444;
}

.contact_modal .contact_form .form .form_right .form_right_top .select-wrapper select:focus {
  outline: none;
}

.contact_modal .contact_form .form .form_right .form_right_top .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 2px solid #757575;
  border-bottom: 2px solid #757575;
  border-radius: 2px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 5;
}

.contact_modal .contact_form .form .form_right .sex_box {
  margin-left: 48px;
}

.contact_modal .contact_form .form .form_right .sex_box label {
  display: inline-block;
  width: auto;
  cursor: pointer;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form .form_right .sex_box label {
    font-size: 14px;
  }
}

.contact_modal .contact_form .form .form_right .sex_box label:nth-of-type(n+1) {
  margin-left: 2px;
}

.contact_modal .contact_form .form .form_right .sex_box input {
  width: auto;
}

.contact_modal .contact_form .form .form_right .sex_box input:last-of-type {
  margin-left: 20px;
}

.contact_modal .contact_form .form .form_right .sex_box .radio_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}

.contact_modal .contact_form .form .form_right .sex_box .radio_box input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #444;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 0px;
  cursor: pointer;
}

.contact_modal .contact_form .form .form_right .sex_box .radio_box input[type="radio"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: #4281de;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  visibility: hidden;
}

.contact_modal .contact_form .form .form_right .sex_box .radio_box input[type="radio"]:checked:before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.contact_modal .contact_form .form .form_right .message_box textarea {
  width: 100%;
  padding: 8px;
  display: block;
  background-color: transparent;
  border: 0px solid white;
  border-bottom: 1px solid rgba(50, 50, 50, 0.7);
  border-left: 1px solid rgba(50, 50, 50, 0.7);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: none;
  height: 241px;
  color: #6e6e6e;
  margin-top: 8px;
  position: relative;
  z-index: 2;
  font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .contact_form .form .form_right .message_box textarea {
    height: 218px;
  }
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .form_right .message_box textarea {
    margin-top: 4px;
    font-size: 14px;
  }
}

.contact_modal .contact_form .form .form_right .message_box textarea::-webkit-input-placeholder {
  color: #757575;
}

.contact_modal .contact_form .form .form_right .message_box textarea:-ms-input-placeholder {
  color: #757575;
}

.contact_modal .contact_form .form .form_right .message_box textarea::-ms-input-placeholder {
  color: #757575;
}

.contact_modal .contact_form .form .form_right .message_box textarea::placeholder {
  color: #757575;
}

.contact_modal .contact_form .form .form_right .message_box textarea:focus {
  outline: none;
}

.contact_modal .contact_form .form .form_right .message_box p {
  display: inline-block;
}

.contact_modal .contact_form .form .privacy_policy_require_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.contact_modal .contact_form .form .privacy_policy_require_box .privacy_policy_require {
  font-size: 14px;
  vertical-align: text-top;
  padding: 0 8px;
  background: linear-gradient(-45deg, #ff8832 0%, #ffae42 100%);
  color: #fff;
  text-shadow: none;
  border-radius: 4px;
  text-align: center;
  margin-top: 40px;
  display: inline-block;
}

.contact_modal .contact_form .form .privacy_policy_area {
  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;
  gap: 8px;
  margin-top: 8px;
}

.contact_modal .contact_form .form .privacy_policy_area input {
  display: inline-block;
  width: auto;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(50, 50, 50, 0.7);
  overflow: hidden;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
}

.contact_modal .contact_form .form .privacy_policy_area .pointer_none {
  pointer-events: none;
}

.contact_modal .contact_form .form .privacy_policy_area input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact_modal .contact_form .form .privacy_policy_area .check_box_on::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  z-index: 3;
  -webkit-animation: checkbox-color-on 0.4s ease forwards;
          animation: checkbox-color-on 0.4s ease forwards;
  opacity: 0;
  border-radius: 6px;
}

@-webkit-keyframes checkbox-color-on {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes checkbox-color-on {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.contact_modal .contact_form .form .privacy_policy_area .check_box_on::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 4;
  -webkit-animation: checkbox-icon-on 0.4s ease forwards;
          animation: checkbox-icon-on 0.4s ease forwards;
  opacity: 0;
}

@-webkit-keyframes checkbox-icon-on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes checkbox-icon-on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.contact_modal .contact_form .form .privacy_policy_area .check_box_off::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  z-index: 3;
  -webkit-animation: checkbox-color-off 0.4s ease forwards;
          animation: checkbox-color-off 0.4s ease forwards;
  opacity: 0;
  border-radius: 6px;
}

@-webkit-keyframes checkbox-color-off {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

@keyframes checkbox-color-off {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

.contact_modal .contact_form .form .privacy_policy_area .check_box_off::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 4;
  -webkit-animation: checkbox-icon-off 0.4s ease forwards;
          animation: checkbox-icon-off 0.4s ease forwards;
  opacity: 0;
}

@-webkit-keyframes checkbox-icon-off {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes checkbox-icon-off {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.contact_modal .contact_form .form .privacy_policy_area label {
  width: auto;
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
}

.contact_modal .contact_form .form .privacy_policy_area label p {
  color: #444;
}

.contact_modal .contact_form .form .btn_box {
  width: 40%;
  height: 46.4px;
  max-width: 280px;
  margin-top: 40px;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 3;
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .btn_box {
    width: 100%;
    margin: 0 auto;
    margin-top: 68px;
  }
}

.contact_modal .contact_form .form .btn_box .null_btn {
  width: 100%;
  height: 100%;
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  cursor: pointer;
}

.contact_modal .contact_form .form .btn_box .notice_btn {
  z-index: 4;
}

.contact_modal .contact_form .form .btn_box .branch_btn {
  z-index: 3;
}

.contact_modal .contact_form .form .btn_box .null_btn_off {
  display: none;
}

.contact_modal .contact_form .form .btn_box .back_btn {
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  margin-top: 0;
  pointer-events: none;
  background-color: #e5e5e5;
  -webkit-transition: all 0.4s cubic-bezier(0, 0.6, 0.4, 1);
  transition: all 0.4s cubic-bezier(0, 0.6, 0.4, 1);
  cursor: pointer;
  background: linear-gradient(-45deg, #cfcfcf 0%, #dedede 100%);
}

.contact_modal .contact_form .form .btn_box .back_btn p {
  display: inline-block;
  text-align: center;
  color: #444;
}

.contact_modal .contact_form .form .btn_box .back_btn_on {
  -webkit-transform: translate(-310px, -50%);
          transform: translate(-310px, -50%);
  pointer-events: auto;
  -webkit-box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.2);
          box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.2);
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .btn_box .back_btn_on {
    -webkit-transform: translate(-50%, -60px);
            transform: translate(-50%, -60px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .contact_modal .contact_form .form .btn_box .back_btn:hover {
    -webkit-transform: translate(-310px, -50%) scale(1.05);
            transform: translate(-310px, -50%) scale(1.05);
  }
}

.contact_modal .contact_form .form .btn_box button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  margin: 0 auto;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  display: block;
  -webkit-box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.35);
          box-shadow: 0px 0px 15px rgba(50, 50, 50, 0.35);
  color: #fff;
  padding: 12px 16px;
  font-size: 20px;
  -webkit-transition: all 0.4s cubic-bezier(0, 0.6, 0.4, 1);
  transition: all 0.4s cubic-bezier(0, 0.6, 0.4, 1);
  pointer-events: none;
  cursor: pointer;
}

.contact_modal .contact_form .form .btn_box button p {
  position: relative;
  z-index: 2;
}

.contact_modal .contact_form .form .btn_box button .button_arrow {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
  z-index: 2;
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.contact_modal .contact_form .form .btn_box .submit_btn_on {
  -webkit-transform: translate(30px, -50%) scale(1);
          transform: translate(30px, -50%) scale(1);
  pointer-events: auto;
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .btn_box .submit_btn_on {
    -webkit-transform: translate(-50%, 4px) scale(1);
            transform: translate(-50%, 4px) scale(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .contact_modal .contact_form .form .btn_box button:hover {
    -webkit-transform: translate(30px, -50%) scale(1.05);
            transform: translate(30px, -50%) scale(1.05);
  }
}

@media (hover: hover) and (pointer: fine) {
  .contact_modal .contact_form .form .btn_box_hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.contact_modal .contact_form .form .form_focus {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  margin-top: 0;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 3000px solid rgba(68, 68, 68, 0.6);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .contact_modal .contact_form .form .form_focus {
    -webkit-transform: translate(-50%, calc(-50% + 16px));
            transform: translate(-50%, calc(-50% + 16px));
    width: calc(100% + 24px);
    height: calc(100% + 48px);
  }
}

.contact_modal .contact_form .form .form_focus_on {
  opacity: 1;
  visibility: visible;
}

.contact_modal .form_shadow {
  width: 85%;
  height: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 1.9px 1.9px 2.2px rgba(0, 0, 0, 0.027), 4.5px 4.5px 5.3px rgba(0, 0, 0, 0.043), 8.5px 8.5px 10px rgba(0, 0, 0, 0.058), 15.2px 15.2px 17.9px rgba(0, 0, 0, 0.075), 28.4px 28.4px 33.4px rgba(0, 0, 0, 0.099), 68px 68px 80px rgba(0, 0, 0, 0.15);
          box-shadow: 1.9px 1.9px 2.2px rgba(0, 0, 0, 0.027), 4.5px 4.5px 5.3px rgba(0, 0, 0, 0.043), 8.5px 8.5px 10px rgba(0, 0, 0, 0.058), 15.2px 15.2px 17.9px rgba(0, 0, 0, 0.075), 28.4px 28.4px 33.4px rgba(0, 0, 0, 0.099), 68px 68px 80px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_modal .form_shadow {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .contact_modal .form_shadow {
    width: 90%;
    max-width: 540px;
    height: 80%;
  }
}

.privacy_policy_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  max-width: 1280px;
  height: 100dvh;
  z-index: 22;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.privacy_policy_modal .privacy_policy_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(90, 90, 90, 0.7);
}

.privacy_policy_modal .privacy_policy_txtbox {
  width: 80%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  padding: 60px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .privacy_policy_modal .privacy_policy_txtbox {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .privacy_policy_modal .privacy_policy_txtbox {
    width: 100%;
    height: 75%;
    padding: 40px 28px;
  }
}

.privacy_policy_modal .privacy_policy_txtbox h3 {
  display: block;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 100%;
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .privacy_policy_modal .privacy_policy_txtbox h3 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .privacy_policy_modal .privacy_policy_txtbox h3 {
    font-size: 24px;
  }
}

.privacy_policy_modal .privacy_policy_txtbox .privacy_policy_contents {
  width: 100%;
  height: 100%;
}

.privacy_policy_modal .privacy_policy_txtbox .privacy_policy_contents h4 {
  font-size: 20px;
  margin: 0;
  margin-top: 36px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .privacy_policy_modal .privacy_policy_txtbox .privacy_policy_contents h4 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .privacy_policy_modal .privacy_policy_txtbox .privacy_policy_contents h4 {
    font-size: 18px;
  }
}

.privacy_policy_modal .privacy_policy_txtbox .privacy_policy_contents p {
  font-size: 16px;
  margin: 8px 0 0 0;
  line-height: 26px;
}

.privacy_policy_modal .privacy_policy_txtbox .privacy_policy_contents div {
  width: 100%;
  height: 60px;
}

.privacy_policy_modal_show {
  opacity: 1;
  visibility: visible;
}

.submit_notice,
.link_notice {
  width: 100%;
  position: fixed;
  bottom: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 12px 0px;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(68, 68, 68, 0.7);
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 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;
}

@media (max-width: 767px) {
  .submit_notice,
  .link_notice {
    bottom: 0;
  }
}

.submit_notice p,
.link_notice p {
  display: inline-block;
  text-align: center;
}

@media (max-width: 767px) {
  .submit_notice p,
  .link_notice p {
    font-size: 14px;
  }
}

.submit_notice p br,
.link_notice p br {
  display: none;
}

@media (max-width: 767px) {
  .submit_notice p br,
  .link_notice p br {
    display: inline-block;
  }
}

.submit_notice_on {
  opacity: 1;
  visibility: visible;
}

#link_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  z-index: 7;
  width: 60%;
  max-width: 1024px;
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 120px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 1.9px 1.9px 2.2px rgba(0, 0, 0, 0.027), 4.5px 4.5px 5.3px rgba(0, 0, 0, 0.043), 8.5px 8.5px 10px rgba(0, 0, 0, 0.058), 15.2px 15.2px 17.9px rgba(0, 0, 0, 0.075), 28.4px 28.4px 33.4px rgba(0, 0, 0, 0.099), 68px 68px 80px rgba(0, 0, 0, 0.15);
          box-shadow: 1.9px 1.9px 2.2px rgba(0, 0, 0, 0.027), 4.5px 4.5px 5.3px rgba(0, 0, 0, 0.043), 8.5px 8.5px 10px rgba(0, 0, 0, 0.058), 15.2px 15.2px 17.9px rgba(0, 0, 0, 0.075), 28.4px 28.4px 33.4px rgba(0, 0, 0, 0.099), 68px 68px 80px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  #link_modal {
    width: 85%;
    padding: 80px 20px;
  }
}

#link_modal h3 {
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 60px;
  font-weight: 600;
}

#link_modal .link_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#link_modal .link_block p {
  text-align: center;
  white-space: nowrap;
  line-height: 175%;
  font-weight: 400;
}

#link_modal .link_block a {
  color: #3F8CFF;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#link_modal .link_block:nth-of-type(2) {
  margin-top: 36px;
}

.img_modal_bg_wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 7;
  width: 100dvw;
  max-width: 1280px;
  height: 100dvh;
  pointer-events: none;
  overflow: hidden;
}

.img_modal_bg_wrapper .img_modal_bg_inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.img_modal_bg_wrapper .img_modal_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
  width: 250%;
  height: 200%;
  background-color: rgba(90, 90, 90, 0.7);
}

.pointer_auto {
  pointer-events: auto;
}

#img_modal,
#mov_modal {
  width: 80%;
  max-width: 600px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  z-index: 8;
  -webkit-box-shadow: 1.9px 1.9px 2.2px rgba(0, 0, 0, 0.027), 4.5px 4.5px 5.3px rgba(0, 0, 0, 0.043), 8.5px 8.5px 10px rgba(0, 0, 0, 0.058), 15.2px 15.2px 17.9px rgba(0, 0, 0, 0.075), 28.4px 28.4px 33.4px rgba(0, 0, 0, 0.099), 68px 68px 80px rgba(0, 0, 0, 0.15);
          box-shadow: 1.9px 1.9px 2.2px rgba(0, 0, 0, 0.027), 4.5px 4.5px 5.3px rgba(0, 0, 0, 0.043), 8.5px 8.5px 10px rgba(0, 0, 0, 0.058), 15.2px 15.2px 17.9px rgba(0, 0, 0, 0.075), 28.4px 28.4px 33.4px rgba(0, 0, 0, 0.099), 68px 68px 80px rgba(0, 0, 0, 0.15);
}

#img_modal img,
#img_modal video,
#mov_modal img,
#mov_modal video {
  width: 100%;
}

.img_modal_on {
  -webkit-animation: img_modal_on forwards 0.6s cubic-bezier(0.08, 0.34, 0.58, 1);
          animation: img_modal_on forwards 0.6s cubic-bezier(0.08, 0.34, 0.58, 1);
}

@-webkit-keyframes img_modal_on {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes img_modal_on {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

.img_modal_off {
  -webkit-animation: img_modal_off forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
          animation: img_modal_off forwards 0.5s cubic-bezier(0.42, 0, 0.92, 0.66);
}

@-webkit-keyframes img_modal_off {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
}

@keyframes img_modal_off {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
}

.layout_wrapper {
  width: 100%;
  max-width: 1280px;
  height: 100dvh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 6;
  pointer-events: none;
}

.container {
  width: 100vw;
  background: linear-gradient(-45deg, #ff8832 0%, #ffae42 100%);
  max-width: 1280px;
  margin: 0 auto;
}

/*
.bg_color{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 1280px;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    opacity: 1;
    transition: all 1s cubic-bezier(.75,0,.25,1);
}

.bg_color.move{
    opacity: 0;
}
*/
#section_wrapper {
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  #section_wrapper {
    margin-top: 136px;
    padding-top: 44px;
  }
}

#section_wrapper .section_title_sp {
  position: absolute;
  top: 12px;
  left: 0;
  -webkit-transform: translate(-1%, -17%) rotateZ(8deg);
          transform: translate(-1%, -17%) rotateZ(8deg);
  z-index: 5;
  width: 271.42px;
  height: 129.88px;
  -webkit-transition: all 1s cubic-bezier(0.75, 0, 0.25, 1);
  transition: all 1s cubic-bezier(0.75, 0, 0.25, 1);
}

@media (min-width: 1025px) and (max-width: 1120px) {
  #section_wrapper .section_title_sp {
    display: none;
  }
}

@media (min-width: 1121px) {
  #section_wrapper .section_title_sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #section_wrapper .section_title_sp {
    display: none;
  }
}

#section_wrapper .section_title_sp h1 {
  color: #444;
  font-size: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: none;
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  -webkit-transform: translate(-50%, -50%) rotateY(0);
          transform: translate(-50%, -50%) rotateY(0);
  white-space: nowrap;
}

#section_wrapper .section_title_sp h1:first-of-type {
  display: block;
}

#section_wrapper .section_title_sp .change_out {
  -webkit-animation: change_out forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: change_out forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@keyframes change_out {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(0);
            transform: translate(-50%, -50%) rotateY(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(90deg);
            transform: translate(-50%, -50%) rotateY(90deg);
  }
}

#section_wrapper .section_title_sp .change_in {
  -webkit-animation: change_in forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: change_in forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@keyframes change_in {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(-90deg);
            transform: translate(-50%, -50%) rotateY(-90deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(0);
            transform: translate(-50%, -50%) rotateY(0);
  }
}

#section_wrapper .fixed {
  position: fixed !important;
}

#section01_wrapper {
  width: 100%;
}

#section01_wrapper #work_svg {
  position: absolute;
  top: -172px;
  left: -20px;
  z-index: 2;
  width: 66%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #section01_wrapper #work_svg {
    width: 75%;
    top: -148px;
  }
}

@media (max-width: 767px) {
  #section01_wrapper #work_svg {
    width: 100%;
    top: -92px;
    left: 0px;
  }
}

#section01_wrapper #work_svg .work_path {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}

section {
  position: relative;
  z-index: 3;
  width: calc(100% - 120px);
  padding: 140px 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: linear-gradient(-45deg, #ff8832 0%, #ffae42 100%);
  margin: 0 auto;
  margin-top: 200px;
  overflow: hidden;
  display: block;
  -webkit-box-shadow: 2.2px 2.2px 2.2px rgba(0, 0, 0, 0.017), 5.3px 5.3px 5.3px rgba(0, 0, 0, 0.024), 10px 10px 10px rgba(0, 0, 0, 0.03), 17.9px 17.9px 17.9px rgba(0, 0, 0, 0.036), 33.4px 33.4px 33.4px rgba(0, 0, 0, 0.043), 80px 80px 80px rgba(0, 0, 0, 0.06);
          box-shadow: 2.2px 2.2px 2.2px rgba(0, 0, 0, 0.017), 5.3px 5.3px 5.3px rgba(0, 0, 0, 0.024), 10px 10px 10px rgba(0, 0, 0, 0.03), 17.9px 17.9px 17.9px rgba(0, 0, 0, 0.036), 33.4px 33.4px 33.4px rgba(0, 0, 0, 0.043), 80px 80px 80px rgba(0, 0, 0, 0.06);
}

@media (min-width: 1025px) and (max-width: 1120px) {
  section {
    padding: 140px 80px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  section {
    padding: 80px 52px 92px 52px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section {
    padding: 80px 80px 92px 80px;
  }
}

@media (max-width: 767px) {
  section {
    width: calc(100% - 32px);
    padding: 60px 28px 72px 28px;
    margin-top: 108px;
  }
}

section .work_block_l {
  width: 100%;
}

@media (max-width: 767px) {
  section .work_block_l {
    display: none;
  }
}

section .work_block_l .intro_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section .work_block_l .intro_box .info_box {
  width: calc(66% - 100px);
  margin-right: 100px;
  position: relative;
  z-index: 3;
}

@media (min-width: 1025px) and (max-width: 1120px) {
  section .work_block_l .intro_box .info_box {
    margin-right: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box {
    width: calc(66% - 68px);
    margin-right: 60px;
  }
}

section .work_block_l .intro_box .info_box .upper_block {
  width: 100%;
  padding-bottom: 32px;
  position: relative;
  z-index: 4;
  -webkit-transform: translateX(300vw);
          transform: translateX(300vw);
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block {
    padding-bottom: 20px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block {
    font-size: 28px;
  }
}

section .work_block_l .intro_box .info_box .upper_block .work_num {
  font-size: 72px;
  display: inline-block;
  color: #fff;
  line-height: 100%;
  margin-left: -8px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block .work_num {
    font-size: 52px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block .work_num {
    font-size: 52px;
  }
}

section .work_block_l .intro_box .info_box .upper_block h2 {
  font-size: 28px;
  margin-left: 28px;
  display: inline-block;
  color: #fff;
  line-height: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block h2 {
    font-size: 22px;
    margin-left: 20px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block h2 {
    font-size: 22px;
  }
}

section .work_block_l .intro_box .info_box .upper_block .tag_box {
  width: 100%;
  margin-top: 12px;
}

section .work_block_l .intro_box .info_box .upper_block .tag_box p {
  color: #444;
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block .tag_box p {
    padding: 8px 12px;
    font-size: 12px;
  }
}

section .work_block_l .intro_box .info_box .upper_block .tag_box p:nth-of-type(n+2) {
  margin-left: 20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block .tag_box p:nth-of-type(n+2) {
    margin-left: 12px;
  }
}

section .work_block_l .intro_box .info_box .upper_block .upper_dot_svg {
  right: 10%;
  top: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 12%;
}

section .work_block_l .intro_box .info_box .upper_block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  height: 1px;
  width: calc(100% + 152px);
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .upper_block::after {
    width: calc(100% + 120px);
  }
}

section .work_block_l .intro_box .info_box .lower_block {
  position: relative;
  width: 100%;
  margin-top: 40px;
  -webkit-transform: translateX(150vw);
          transform: translateX(150vw);
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .lower_block {
    margin-top: 20px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .lower_block {
    margin-top: 40px;
  }
}

section .work_block_l .intro_box .info_box .lower_block a {
  width: 100%;
  padding: 16px 0;
  display: inline-block;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .info_box .lower_block a {
    padding: 12px 0;
  }
}

section .work_block_l .intro_box .info_box .lower_block .lower_stripe_svg {
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 19%;
}

section .work_block_l .intro_box .info_box .lower_block .lower_polygon_svg {
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 10%;
}

section .work_block_l .intro_box .thumb_box {
  position: relative;
  width: 300px;
  aspect-ratio: 1;
  background-color: #444;
  -webkit-transform: translateX(50vw);
          transform: translateX(50vw);
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .intro_box .thumb_box {
    width: 200px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_l .intro_box .thumb_box {
    width: 240px;
  }
}

section .work_block_l .intro_box .thumb_box .img_wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}

section .work_block_l .intro_box .thumb_box .img_wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section .work_block_l .intro_box .thumb_box .img_wrapper img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.03);
          transform: translate(-50%, -50%) scale(1.03);
}

section .work_block_l .intro_box .thumb_box .thumb_dot_svg {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  width: 40%;
}

section .work_block_l .intro_box .thumb_box .thumb_stripe_svg {
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 25%;
}

section .work_block_l .intro_box .pattern_svg {
  position: absolute;
  z-index: -1;
}

section .work_block_l .intro_box .pattern_path {
  fill: #fff;
  stroke-width: 0px;
  opacity: 0.3;
}

section .work_block_l .txt_box {
  width: 100%;
}

section .work_block_l .txt_box h3, section .work_block_l .txt_box p {
  color: #fff;
}

section .work_block_l .txt_box h3 {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 27px;
  color: #444;
}

section .work_block_l .txt_box p {
  margin-top: 16px;
  text-align: left;
  line-height: 175%;
}

section .work_block_l .txt_box1 {
  margin-top: 88px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l .txt_box1 {
    margin-top: 72px;
  }
}

section .work_block_l .txt_box1 p:nth-of-type(n+2) {
  margin-top: 12px;
}

section .work_block_l .txt_box_after2 {
  margin-top: 60px;
}

section .work_block_l .txt_box_after2 p:nth-of-type(n+2) {
  margin-top: 12px;
}

section .arrow_svg {
  width: 35%;
  margin: 0 auto;
  display: block;
  margin-top: 128px;
  margin-bottom: 132px;
}

@media (max-width: 767px) {
  section .arrow_svg {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .arrow_svg {
    margin-top: 108px;
    margin-bottom: 112px;
  }
}

section .arrow_svg .arrow_path {
  fill: #fff;
  stroke-width: 0px;
}

section .work_block_r {
  width: 100%;
}

@media (max-width: 767px) {
  section .work_block_r {
    display: none;
  }
}

section .work_block_r .intro_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section .work_block_r .intro_box .info_box {
  width: calc(66% - 100px);
  margin-left: 100px;
  position: relative;
  z-index: 3;
}

@media (min-width: 1025px) and (max-width: 1120px) {
  section .work_block_r .intro_box .info_box {
    margin-left: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box {
    width: calc(66% - 68px);
    margin-left: 60px;
  }
}

section .work_block_r .intro_box .info_box .upper_block {
  width: 100%;
  padding-bottom: 32px;
  position: relative;
  z-index: 4;
  -webkit-transform: translateX(-300vw);
          transform: translateX(-300vw);
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block {
    padding-bottom: 20px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block {
    font-size: 28px;
  }
}

section .work_block_r .intro_box .info_box .upper_block .title_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

section .work_block_r .intro_box .info_box .upper_block .title_box .work_num {
  font-size: 72px;
  display: inline-block;
  color: #fff;
  line-height: 100%;
  margin-right: -8px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block .title_box .work_num {
    font-size: 52px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block .title_box .work_num {
    font-size: 52px;
  }
}

section .work_block_r .intro_box .info_box .upper_block .title_box h2 {
  font-size: 28px;
  margin-right: 28px;
  display: inline-block;
  color: #fff;
  line-height: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block .title_box h2 {
    font-size: 22px;
    margin-right: 20px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block .title_box h2 {
    font-size: 22px;
  }
}

section .work_block_r .intro_box .info_box .upper_block .tag_box {
  width: 100%;
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

section .work_block_r .intro_box .info_box .upper_block .tag_box p {
  color: #444;
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block .tag_box p {
    padding: 8px 12px;
    font-size: 12px;
  }
}

section .work_block_r .intro_box .info_box .upper_block .tag_box p:nth-of-type(n+2) {
  margin-left: 20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block .tag_box p:nth-of-type(n+2) {
    margin-left: 12px;
  }
}

section .work_block_r .intro_box .info_box .upper_block .upper_dot_svg {
  left: 10%;
  top: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 12%;
}

section .work_block_r .intro_box .info_box .upper_block::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  height: 1px;
  width: calc(100% + 152px);
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .upper_block::after {
    width: calc(100% + 120px);
  }
}

section .work_block_r .intro_box .info_box .lower_block {
  position: relative;
  width: 100%;
  margin-top: 40px;
  -webkit-transform: translateX(-150vw);
          transform: translateX(-150vw);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .lower_block {
    margin-top: 20px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .lower_block {
    margin-top: 40px;
  }
}

section .work_block_r .intro_box .info_box .lower_block a {
  width: 100%;
  padding: 16px 0;
  display: inline-block;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .info_box .lower_block a {
    padding: 12px 0;
  }
}

section .work_block_r .intro_box .info_box .lower_block .lower_stripe_svg {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  width: 19%;
}

section .work_block_r .intro_box .info_box .lower_block .lower_polygon_svg {
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10%;
}

section .work_block_r .intro_box .thumb_box {
  position: relative;
  width: 35%;
  max-width: 300px;
  aspect-ratio: 1;
  background-color: #444;
  -webkit-transform: translateX(-50vw);
          transform: translateX(-50vw);
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .intro_box .thumb_box {
    width: 200px;
  }
}

@media (min-width: 860px) and (max-width: 1024px) {
  section .work_block_r .intro_box .thumb_box {
    width: 240px;
  }
}

section .work_block_r .intro_box .thumb_box .img_wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}

section .work_block_r .intro_box .thumb_box .img_wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section .work_block_r .intro_box .thumb_box .img_wrapper img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.03);
          transform: translate(-50%, -50%) scale(1.03);
}

section .work_block_r .intro_box .thumb_box .thumb_dot_svg {
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 40%;
}

section .work_block_r .intro_box .thumb_box .thumb_stripe_svg {
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 25%;
}

section .work_block_r .intro_box .pattern_svg {
  position: absolute;
  z-index: -1;
}

section .work_block_r .intro_box .pattern_path {
  fill: #fff;
  stroke-width: 0px;
  opacity: 0.3;
}

section .work_block_r .txt_box {
  width: 100%;
}

section .work_block_r .txt_box h3, section .work_block_r .txt_box p {
  color: #fff;
}

section .work_block_r .txt_box h3 {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 27px;
  color: #444;
}

section .work_block_r .txt_box p {
  margin-top: 16px;
  text-align: left;
  line-height: 175%;
}

section .work_block_r .txt_box1 {
  margin-top: 88px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r .txt_box1 {
    margin-top: 72px;
  }
}

section .work_block_r .txt_box1 p:nth-of-type(n+2) {
  margin-top: 12px;
}

section .work_block_r .txt_box_after2 {
  margin-top: 60px;
}

section .work_block_r .txt_box_after2 p:nth-of-type(n+2) {
  margin-top: 12px;
}

section .work_block_l_sp {
  width: 100%;
}

@media (min-width: 1121px) {
  section .work_block_l_sp {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1120px) {
  section .work_block_l_sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_l_sp {
    display: none;
  }
}

section .work_block_l_sp .upper_block {
  width: 100%;
}

section .work_block_l_sp .upper_block .title_box {
  width: 100%;
  height: 76px;
  position: relative;
  margin: 0 auto;
}

section .work_block_l_sp .upper_block .title_box .back_txt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0.5;
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
}

section .work_block_l_sp .upper_block .title_box .front_txt {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

section .work_block_l_sp .upper_block .title_box .front_txt h2 {
  font-size: 28px;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 600;
  -webkit-transform: translateX(-200vw);
          transform: translateX(-200vw);
}

section .work_block_l_sp .upper_block .tag_box {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-350vw);
          transform: translateX(-350vw);
}

section .work_block_l_sp .upper_block .tag_box p {
  color: #444;
  display: inline-block;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

section .work_block_l_sp .upper_block .tag_box p:nth-of-type(n+2) {
  margin-left: 16px;
}

section .work_block_l_sp .upper_block .thumb_box {
  position: relative;
  width: 100%;
  max-width: 448px;
  aspect-ratio: 1;
  background-color: #444;
  -webkit-transform: scale(0);
          transform: scale(0);
  margin: 0 auto;
  margin-top: 32px;
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

section .work_block_l_sp .upper_block .thumb_box .img_wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}

section .work_block_l_sp .upper_block .thumb_box .img_wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section .work_block_l_sp .upper_block .thumb_box .img_wrapper img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.03);
          transform: translate(-50%, -50%) scale(1.03);
}

section .work_block_l_sp .upper_block .thumb_box .thumb_dot_svg {
  right: 0;
  bottom: 55%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 13%;
}

section .work_block_l_sp .upper_block .thumb_box .thumb_stripe_svg {
  left: 0;
  top: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13%;
}

section .work_block_l_sp .lower_block {
  position: relative;
  width: 100%;
  margin-top: 32px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section .work_block_l_sp .lower_block a {
  width: 100%;
  max-width: 448px;
  padding: 12px 0;
  display: block;
  margin: 0 auto;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

section .work_block_l_sp .lower_block .lower_stripe_svg {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  width: 13%;
}

section .work_block_l_sp .lower_block .lower_polygon_svg {
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10%;
}

section .work_block_l_sp .pattern_svg {
  position: absolute;
  z-index: -1;
}

section .work_block_l_sp .pattern_path {
  fill: #fff;
  stroke-width: 0px;
  opacity: 0.3;
}

section .work_block_l_sp .txt_box {
  width: 100%;
  margin-top: 40px;
}

section .work_block_l_sp .txt_box h3 {
  font-size: 18px;
  color: #444;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
}

section .work_block_l_sp .txt_box p {
  font-size: 16px;
  color: #fff;
  line-height: 175%;
  margin-top: 16px;
}

section .work_block_l_sp .txt_box p:nth-of-type(n+2) {
  margin-top: 12px;
}

section .arrow_svg_sp {
  width: 50%;
  margin: 0 auto;
  display: none;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  section .arrow_svg_sp {
    display: block;
  }
}

section .arrow_svg_sp .arrow_path {
  fill: #fff;
  stroke-width: 0px;
}

section .work_block_r_sp {
  width: 100%;
}

@media (min-width: 1121px) {
  section .work_block_r_sp {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1120px) {
  section .work_block_r_sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  section .work_block_r_sp {
    display: none;
  }
}

section .work_block_r_sp .upper_block {
  width: 100%;
}

section .work_block_r_sp .upper_block .title_box {
  width: 100%;
  height: 76px;
  position: relative;
  margin: 0 auto;
}

section .work_block_r_sp .upper_block .title_box .back_txt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0.5;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

section .work_block_r_sp .upper_block .title_box .front_txt {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

section .work_block_r_sp .upper_block .title_box .front_txt h2 {
  font-size: 28px;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 600;
  -webkit-transform: translateX(350vw);
          transform: translateX(350vw);
}

section .work_block_r_sp .upper_block .tag_box {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(200vw);
          transform: translateX(200vw);
}

section .work_block_r_sp .upper_block .tag_box p {
  color: #444;
  display: inline-block;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

section .work_block_r_sp .upper_block .tag_box p:nth-of-type(n+2) {
  margin-left: 16px;
}

section .work_block_r_sp .upper_block .thumb_box {
  position: relative;
  width: 100%;
  max-width: 448px;
  aspect-ratio: 1;
  background-color: #444;
  -webkit-transform: scale(0);
          transform: scale(0);
  margin: 0 auto;
  margin-top: 32px;
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

section .work_block_r_sp .upper_block .thumb_box .img_wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  position: absolute;
}

section .work_block_r_sp .upper_block .thumb_box .img_wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1) !important;
          transform: translate(-50%, -50%) scale(1) !important;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section .work_block_r_sp .upper_block .thumb_box .img_wrapper img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.03) !important;
          transform: translate(-50%, -50%) scale(1.03) !important;
}

section .work_block_r_sp .upper_block .thumb_box .thumb_dot_svg {
  left: 0;
  bottom: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13%;
}

section .work_block_r_sp .upper_block .thumb_box .thumb_stripe_svg {
  right: 0;
  top: 55%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 13%;
}

section .work_block_r_sp .lower_block {
  position: relative;
  width: 100%;
  margin-top: 32px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section .work_block_r_sp .lower_block a {
  width: 100%;
  max-width: 448px;
  padding: 12px 0;
  display: block;
  margin: 0 auto;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
          box-shadow: 1.1px 1.1px 2.2px rgba(0, 0, 0, 0.02), 2.7px 2.7px 5.3px rgba(0, 0, 0, 0.028), 5px 5px 10px rgba(0, 0, 0, 0.035), 8.9px 8.9px 17.9px rgba(0, 0, 0, 0.042), 16.7px 16.7px 33.4px rgba(0, 0, 0, 0.05), 40px 40px 80px rgba(0, 0, 0, 0.07);
}

section .work_block_r_sp .lower_block .lower_stripe_svg {
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 13%;
}

section .work_block_r_sp .lower_block .lower_polygon_svg {
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 10%;
}

section .work_block_r_sp .pattern_svg {
  position: absolute;
  z-index: -1;
}

section .work_block_r_sp .pattern_path {
  fill: #fff;
  stroke-width: 0px;
  opacity: 0.3;
}

section .work_block_r_sp .txt_box {
  width: 100%;
  margin-top: 40px;
}

section .work_block_r_sp .txt_box h3 {
  font-size: 18px;
  color: #444;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
}

section .work_block_r_sp .txt_box p {
  font-size: 16px;
  color: #fff;
  line-height: 175%;
  margin-top: 12px;
}

section .work_block_r_sp .txt_box p:nth-of-type(n+2) {
  margin-top: 8px;
}

.section02 .work_block_l .intro_box .info_box .upper_block .work_num,
.section04 .work_block_l .intro_box .info_box .upper_block .work_num {
  color: #444;
}

.section02 .work_block_l .intro_box .info_box .upper_block h2,
.section04 .work_block_l .intro_box .info_box .upper_block h2 {
  color: #444;
}

.section02 .work_block_l .intro_box .info_box .upper_block .tag_box p,
.section04 .work_block_l .intro_box .info_box .upper_block .tag_box p {
  color: #fff;
  background-color: rgba(68, 68, 68, 0.7);
}

.section02 .work_block_l .intro_box .info_box .upper_block::after,
.section04 .work_block_l .intro_box .info_box .upper_block::after {
  content: "";
  background-color: #444;
}

.section02 .work_block_l .intro_box .pattern_path,
.section04 .work_block_l .intro_box .pattern_path {
  fill: #FF9939;
}

.section02 .work_block_l .txt_box p,
.section04 .work_block_l .txt_box p {
  color: #444;
}

.section02 .work_block_l .txt_box h3,
.section04 .work_block_l .txt_box h3 {
  background-color: rgba(68, 68, 68, 0.8);
  color: #fff;
}

.section02 .arrow_svg .arrow_path,
.section04 .arrow_svg .arrow_path {
  fill: #FF9939;
  stroke-width: 0px;
}

.section02 .work_block_r .intro_box .info_box .upper_block .work_num,
.section04 .work_block_r .intro_box .info_box .upper_block .work_num {
  color: #444 !important;
}

.section02 .work_block_r .intro_box .info_box .upper_block h2,
.section04 .work_block_r .intro_box .info_box .upper_block h2 {
  color: #444 !important;
}

.section02 .work_block_r .intro_box .info_box .upper_block .tag_box p,
.section04 .work_block_r .intro_box .info_box .upper_block .tag_box p {
  color: #fff;
  background-color: rgba(68, 68, 68, 0.7);
}

.section02 .work_block_r .intro_box .info_box .upper_block::after,
.section04 .work_block_r .intro_box .info_box .upper_block::after {
  content: "";
  background-color: #444;
}

.section02 .work_block_r .intro_box .pattern_path,
.section04 .work_block_r .intro_box .pattern_path {
  fill: #FF9939;
}

.section02 .work_block_r .txt_box p,
.section04 .work_block_r .txt_box p {
  color: #444;
}

.section02 .work_block_r .txt_box h3,
.section04 .work_block_r .txt_box h3 {
  background-color: rgba(68, 68, 68, 0.8);
  color: #fff;
}

.section02 .work_block_l_sp .upper_block .title_box .back_txt,
.section04 .work_block_l_sp .upper_block .title_box .back_txt {
  opacity: 0.25;
}

.section02 .work_block_l_sp .upper_block .title_box .front_txt h2,
.section04 .work_block_l_sp .upper_block .title_box .front_txt h2 {
  color: #444;
}

.section02 .work_block_l_sp .upper_block .tag_box p,
.section04 .work_block_l_sp .upper_block .tag_box p {
  color: #fff;
  background-color: rgba(68, 68, 68, 0.7);
}

.section02 .work_block_l_sp .upper_block .thumb_box,
.section04 .work_block_l_sp .upper_block .thumb_box {
  background-color: #444;
}

.section02 .work_block_l_sp .pattern_path,
.section04 .work_block_l_sp .pattern_path {
  fill: #FF9939;
}

.section02 .work_block_l_sp .txt_box h3,
.section04 .work_block_l_sp .txt_box h3 {
  color: #fff;
  background-color: rgba(68, 68, 68, 0.8);
  padding: 8px 16px;
}

.section02 .work_block_l_sp .txt_box p,
.section04 .work_block_l_sp .txt_box p {
  color: #444;
}

.section02 .arrow_svg_sp .arrow_path,
.section04 .arrow_svg_sp .arrow_path {
  fill: #FF9939;
}

.section02 .work_block_r_sp .upper_block .title_box .back_txt,
.section04 .work_block_r_sp .upper_block .title_box .back_txt {
  opacity: 0.25;
}

.section02 .work_block_r_sp .upper_block .title_box .front_txt h2,
.section04 .work_block_r_sp .upper_block .title_box .front_txt h2 {
  color: #444;
}

.section02 .work_block_r_sp .upper_block .tag_box p,
.section04 .work_block_r_sp .upper_block .tag_box p {
  color: #fff;
  background-color: rgba(68, 68, 68, 0.7);
}

.section02 .work_block_r_sp .upper_block .thumb_box,
.section04 .work_block_r_sp .upper_block .thumb_box {
  background-color: #444;
}

.section02 .work_block_r_sp .pattern_path,
.section04 .work_block_r_sp .pattern_path {
  fill: #FF9939;
}

.section02 .work_block_r_sp .txt_box h3,
.section04 .work_block_r_sp .txt_box h3 {
  font-size: 18px;
  color: #fff;
  background-color: rgba(68, 68, 68, 0.8);
  padding: 8px 16px;
}

.section02 .work_block_r_sp .txt_box p,
.section04 .work_block_r_sp .txt_box p {
  color: #444;
}

@media (max-width: 767px) {
  .section01 {
    margin-top: 0;
  }
}

.section02,
.section04 {
  background: #fff;
}

.section04 {
  margin-bottom: 200px;
}

@media (max-width: 767px) {
  .section04 {
    margin-bottom: 108px;
  }
}

.lower_block a:hover {
  -webkit-transform: scale(1.05) !important;
          transform: scale(1.05) !important;
}

.on .from_right3 {
  -webkit-animation: from_right3 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
          animation: from_right3 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
}

@media (max-width: 767px) {
  .on .from_right3 {
    -webkit-animation: from_right3_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
            animation: from_right3_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
  }
}

@-webkit-keyframes from_right3 {
  0% {
    -webkit-transform: translateX(300vw);
            transform: translateX(300vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_right3 {
  0% {
    -webkit-transform: translateX(300vw);
            transform: translateX(300vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes from_right3_sp {
  0% {
    -webkit-transform: translateX(350vw);
            transform: translateX(350vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_right3_sp {
  0% {
    -webkit-transform: translateX(350vw);
            transform: translateX(350vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.on .from_right2 {
  -webkit-animation: from_right2 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
          animation: from_right2 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
}

@media (max-width: 767px) {
  .on .from_right2 {
    -webkit-animation: from_right2_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
            animation: from_right2_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
  }
}

@-webkit-keyframes from_right2 {
  0% {
    -webkit-transform: translateX(150vw);
            transform: translateX(150vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_right2 {
  0% {
    -webkit-transform: translateX(150vw);
            transform: translateX(150vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes from_right2_sp {
  0% {
    -webkit-transform: translateX(200vw);
            transform: translateX(200vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_right2_sp {
  0% {
    -webkit-transform: translateX(200vw);
            transform: translateX(200vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.on .from_right1 {
  -webkit-animation: from_right1 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
          animation: from_right1 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
}

@media (max-width: 767px) {
  .on .from_right1 {
    -webkit-animation: from_right1_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
            animation: from_right1_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
  }
}

@-webkit-keyframes from_right1 {
  0% {
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_right1 {
  0% {
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes from_right1_sp {
  0% {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_right1_sp {
  0% {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.on .from_left3 {
  -webkit-animation: from_left3 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
          animation: from_left3 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
}

@media (max-width: 767px) {
  .on .from_left3 {
    -webkit-animation: from_left3_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
            animation: from_left3_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
  }
}

@-webkit-keyframes from_left3 {
  0% {
    -webkit-transform: translateX(-300vw);
            transform: translateX(-300vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_left3 {
  0% {
    -webkit-transform: translateX(-300vw);
            transform: translateX(-300vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes from_left3_sp {
  0% {
    -webkit-transform: translateX(-350vw);
            transform: translateX(-350vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_left3_sp {
  0% {
    -webkit-transform: translateX(-350vw);
            transform: translateX(-350vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.on .from_left2 {
  -webkit-animation: from_left2 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
          animation: from_left2 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
}

@media (max-width: 767px) {
  .on .from_left2 {
    -webkit-animation: from_left2_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
            animation: from_left2_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
  }
}

@-webkit-keyframes from_left2 {
  0% {
    -webkit-transform: translateX(-150vw);
            transform: translateX(-150vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_left2 {
  0% {
    -webkit-transform: translateX(-150vw);
            transform: translateX(-150vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes from_left2_sp {
  0% {
    -webkit-transform: translateX(-200vw);
            transform: translateX(-200vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_left2_sp {
  0% {
    -webkit-transform: translateX(-200vw);
            transform: translateX(-200vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.on .from_left1 {
  -webkit-animation: from_left1 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
          animation: from_left1 forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
}

@media (max-width: 767px) {
  .on .from_left1 {
    -webkit-animation: from_left1_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
            animation: from_left1_sp forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
  }
}

@-webkit-keyframes from_left1 {
  0% {
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_left1 {
  0% {
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes from_left1_sp {
  0% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes from_left1_sp {
  0% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.on .from_scale {
  -webkit-animation: from_scale forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
          animation: from_scale forwards 1s cubic-bezier(0, 0.6, 0.4, 1);
}

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

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

.width_auto {
  height: 100%;
  width: auto !important;
}

.modal_trigger,
.link_trigger,
.link_none {
  cursor: pointer;
}

.footer {
  position: absolute;
  bottom: 16px;
  right: 60px;
  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;
  z-index: 15;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer {
    display: none;
  }
}

.footer a {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 0px 12px rgba(90, 90, 90, 0.4);
          box-shadow: 0px 0px 12px rgba(90, 90, 90, 0.4);
  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;
  padding: 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: auto;
}

.footer a i {
  font-size: 20px;
}

.footer a:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.footer a:nth-of-type(2) {
  margin: 0 28px 0 16px;
}

.footer small {
  display: inline-block;
  font-weight: 300;
}

.bottom_elem_hide {
  -webkit-transform: translateY(calc(100% + 20px)) !important;
          transform: translateY(calc(100% + 20px)) !important;
}

.footer_tab {
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-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;
  z-index: 15;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1025px) and (max-width: 1120px) {
  .footer_tab {
    display: none;
  }
}

@media (min-width: 1121px) {
  .footer_tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer_tab {
    display: none;
  }
}

.footer_tab div {
  height: 175.95px;
  position: relative;
}

.footer_tab div small {
  display: inline-block;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  width: 175.95px;
}

.footer_tab a {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0px 0px 12px rgba(90, 90, 90, 0.4);
          box-shadow: 0px 0px 12px rgba(90, 90, 90, 0.4);
  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;
  padding: 6px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: auto;
  margin-top: 16px;
}

.footer_tab a i {
  font-size: 20px;
}

.footer_tab a:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.footer_tab a:nth-of-type(2) {
  margin: 0;
  margin-top: 16px;
}

.footer_tab a:nth-of-type(2) i {
  font-size: 22px;
}

.bg_show {
  -webkit-animation: modal_bg_show forwards 1s cubic-bezier(0.08, 0.34, 0.58, 1);
          animation: modal_bg_show forwards 1s cubic-bezier(0.08, 0.34, 0.58, 1);
}

@-webkit-keyframes modal_bg_show {
  0% {
    -webkit-transform: translate(-50%, -200%);
            transform: translate(-50%, -200%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@keyframes modal_bg_show {
  0% {
    -webkit-transform: translate(-50%, -200%);
            transform: translate(-50%, -200%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.bg_hidden {
  -webkit-animation: modal_bg_hidden forwards 1s cubic-bezier(0.42, 0, 0.92, 0.66);
          animation: modal_bg_hidden forwards 1s cubic-bezier(0.42, 0, 0.92, 0.66);
}

@-webkit-keyframes modal_bg_hidden {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}

@keyframes modal_bg_hidden {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}

.form_show {
  -webkit-animation: contact_modal_show forwards 1s cubic-bezier(0.75, 0, 0.25, 1);
          animation: contact_modal_show forwards 1s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes contact_modal_show {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
            transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
}

@keyframes contact_modal_show {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
            transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
}

.form_hidden {
  -webkit-animation: contact_modal_hidden forwards 1s cubic-bezier(0.75, 0, 0.25, 1);
          animation: contact_modal_hidden forwards 1s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes contact_modal_hidden {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
            transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
  }
}

@keyframes contact_modal_hidden {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
            transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
  }
}

.shadow_on {
  -webkit-animation: shadow_on_tr forwards 1s cubic-bezier(0.75, 0, 0.25, 1), shadow_on_op forwards 1s cubic-bezier(0.4, 0, 1, 0.6);
          animation: shadow_on_tr forwards 1s cubic-bezier(0.75, 0, 0.25, 1), shadow_on_op forwards 1s cubic-bezier(0.4, 0, 1, 0.6);
}

@-webkit-keyframes shadow_on_tr {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
            transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
}

@keyframes shadow_on_tr {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
            transform: translate(-50%, -50%) rotateY(90deg) rotateZ(90deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
}

@-webkit-keyframes shadow_on_op {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes shadow_on_op {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.shadow_off {
  -webkit-animation: shadow_off_tr forwards 1s cubic-bezier(0.75, 0, 0.25, 1), shadow_off_op forwards 0.3s linear;
          animation: shadow_off_tr forwards 1s cubic-bezier(0.75, 0, 0.25, 1), shadow_off_op forwards 0.3s linear;
}

@-webkit-keyframes shadow_off_tr {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
            transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
  }
}

@keyframes shadow_off_tr {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
            transform: translate(-50%, -50%) rotateY(-90deg) rotateZ(-90deg);
  }
}

@-webkit-keyframes shadow_off_op {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes shadow_off_op {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.shadow_visible {
  visibility: visible !important;
}

.shadow_invisible {
  visibility: hidden !important;
}

/*
.contact_button{
    position: absolute;
    left: 16px;
    top: 20px;
    width: 20%;
    max-width: 228px;
    min-width: 224px;
    padding: 12px 40px;
    box-sizing: border-box;
    background: $sub_background_color;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    z-index: 6;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.5s;
    box-shadow:
    0.4px 0.4px 1.6px rgba(0, 0, 0, 0.062),
    1.2px 1.2px 4.6px rgba(0, 0, 0, 0.089),
    2.1px 2.1px 8.9px rgba(0, 0, 0, 0.111),
    3.4px 3.4px 15.2px rgba(0, 0, 0, 0.138),
    6px 6px 32px rgba(0, 0, 0, 0.2);

    @include mq('sp'){
        display: none;
    }
}

.contact_button:hover{
    transform: scale(1.05);
}
*/
.contact_button {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 16px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  display: inline-block;
  text-align: center;
  color: #fff;
  z-index: 6;
  cursor: pointer;
  pointer-events: auto;
  -webkit-transition: all 0.5s;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.062), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.089), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.111), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.138), 6px 6px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.062), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.089), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.111), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.138), 6px 6px 32px rgba(0, 0, 0, 0.2);
  /*
    @include mq('sp'){
        display: none;
    }
    */
}

@media (max-width: 767px) {
  .contact_button {
    left: auto;
    right: 0;
    top: 0;
    padding: 12px 16px;
  }
}

.contact_button i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
}

.contact_button p {
  font-size: 12px;
  line-height: 100%;
  margin-top: 4px;
}

.contact_button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.top_elem_hide {
  -webkit-transform: translateY(calc(-100% - 28px)) !important;
          transform: translateY(calc(-100% - 28px)) !important;
}

#bottom_nav {
  position: absolute;
  bottom: 16px;
  left: 16px;
  pointer-events: none;
  width: 45%;
  min-width: 200px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  /*
    .page_wrap_shadow{
        position: fixed;
        left: 16px;
        bottom: 16px;
        //height: 200px;
        height: 51.6px;
        width: 45%;
        //max-width: 228px;
        min-width: 200px;
        z-index: 5;
        //opacity: 0;
        transition: all 0.5s;
        box-shadow:
        0.4px 0.4px 1.6px rgba(0, 0, 0, 0.047),
        1.2px 1.2px 4.6px rgba(0, 0, 0, 0.067),
        2.1px 2.1px 8.9px rgba(0, 0, 0, 0.083),
        3.4px 3.4px 15.2px rgba(0, 0, 0, 0.103),
        6px 6px 32px rgba(0, 0, 0, 0.15);
    
        @include mq('tab'){
            display: flex;
            max-width: none;
            min-height: none;
            height: 56px;
            left: 0;
            bottom: 0;
            width: 100%;
        }
        @include mq('sp'){
            display: flex;
            max-width: none;
            min-height: none;
            height: 48px;
            width: 100%;
            left: 0;
            bottom: 0;
        }
    }
    
    .page_wrap_shadow_on{
        opacity: 1;
    }
    */
}

@media (min-width: 768px) and (max-width: 1024px) {
  #bottom_nav {
    max-width: none;
    width: 100%;
    bottom: 0px;
  }
}

@media (max-width: 767px) {
  #bottom_nav {
    max-width: none;
    width: 100%;
    bottom: 0px;
    left: 0;
  }
}

#bottom_nav #page_back_btn {
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 82.3px;
  height: auto;
  border: none;
  pointer-events: auto;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 20px;
  -webkit-box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.062), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.089), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.111), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.138), 6px 6px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.062), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.089), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.111), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.138), 6px 6px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  #bottom_nav #page_back_btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

#bottom_nav #page_back_btn a {
  background-color: #cfcfcf;
  padding: 16px 0;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  #bottom_nav #page_back_btn a {
    padding: 12px 20px;
  }
}

#bottom_nav #page_back_btn a i {
  font-size: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#bottom_nav #page_back_btn a p {
  font-size: 12px;
  text-align: center;
  margin-top: 4px;
  line-height: 100%;
}

#bottom_nav #page_back_btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#bottom_nav .page_wrap {
  width: 100%;
  margin: 0;
  z-index: 6;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.047), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.067), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.083), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.103), 6px 6px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.047), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.067), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.083), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.103), 6px 6px 32px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) and (max-width: 1024px) {
  #bottom_nav .page_wrap {
    min-height: none;
    height: 56px;
    width: 100%;
    margin-left: -16px;
  }
}

@media (max-width: 767px) {
  #bottom_nav .page_wrap {
    min-height: none;
    height: 48px;
    width: 100%;
  }
}

#bottom_nav .page_wrap p {
  font-size: 14px;
  font-weight: 100 !important;
}

#bottom_nav .page_wrap li {
  width: 100%;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid rgba(232, 232, 232, 0.7);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #bottom_nav .page_wrap li {
    height: 100%;
  }
}

@media (max-width: 767px) {
  #bottom_nav .page_wrap li {
    height: 100%;
  }
}

#bottom_nav .page_wrap li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(2);
          transform: translate(-50%, -50%) scale(2);
  mix-blend-mode: color-burn;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

#bottom_nav .page_wrap li:last-of-type {
  margin-bottom: 0;
}

#bottom_nav .li_active {
  border: 1px solid rgba(124, 176, 255, 0.7) !important;
}

#bottom_nav .page_wrap a {
  width: 100%;
  height: 100%;
  display: block;
  color: #444;
  background-color: rgba(232, 232, 232, 0.5);
  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-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  cursor: pointer;
  padding: 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#bottom_nav .page_wrap a.active {
  background: linear-gradient(-45deg, rgba(52, 128, 242, 0.7) 0%, rgba(67, 163, 255, 0.7) 100%);
  color: #fff;
  pointer-events: none;
}

#bottom_nav .nav_txt {
  position: relative;
}

#bottom_nav .nav_txt .page_wrap p {
  display: inline-block;
}

#bottom_nav .nav_txt .under_line {
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140%;
  height: 1px;
  opacity: 0.8;
}

#bottom_nav .nav_txt .under_line .under_line_inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#bottom_nav .nav_txt .under_line .under_line_inner div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: #444;
}

#bottom_nav .nav_txt .under_line .under_line_inner .under_line_on {
  -webkit-animation: under_line_on forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: under_line_on forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes under_line_on {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes under_line_on {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#bottom_nav .nav_txt .under_line .under_line_inner .under_line_off {
  -webkit-animation: under_line_off forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
          animation: under_line_off forwards 0.5s cubic-bezier(0.75, 0, 0.25, 1);
}

@-webkit-keyframes under_line_off {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes under_line_off {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.contact_button_sp {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: linear-gradient(-45deg, #3480f2 0%, #43a3ff 100%);
  display: inline-block;
  text-align: center;
  color: #fff;
  z-index: 6;
  cursor: pointer;
  pointer-events: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.062), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.089), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.111), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.138), 6px 6px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0.4px 0.4px 1.6px rgba(0, 0, 0, 0.062), 1.2px 1.2px 4.6px rgba(0, 0, 0, 0.089), 2.1px 2.1px 8.9px rgba(0, 0, 0, 0.111), 3.4px 3.4px 15.2px rgba(0, 0, 0, 0.138), 6px 6px 32px rgba(0, 0, 0, 0.2);
}

.contact_button_sp i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
}

.contact_button_sp p {
  font-size: 12px;
  line-height: 100%;
  margin-top: 4px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact_button_sp {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1120px) {
  .contact_button_sp {
    display: none;
  }
}

@media (min-width: 1121px) {
  .contact_button_sp {
    display: none;
  }
}

.initial_move_item1 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.initial_move_item2 {
  z-index: 10;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.initial_move_item3 {
  z-index: 9;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.initial_move_item4 {
  z-index: 8;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.initial_move_item5 {
  z-index: 7;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.initial_move_item6 {
  z-index: 6;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.initial_move_on1 {
  -webkit-animation: initial_move1 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
          animation: initial_move1 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
}

@-webkit-keyframes initial_move1 {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes initial_move1 {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.initial_move_on2 {
  -webkit-animation: initial_move2 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
          animation: initial_move2 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
}

@-webkit-keyframes initial_move2 {
  0% {
    -webkit-transform: translateY(-500%);
            transform: translateY(-500%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes initial_move2 {
  0% {
    -webkit-transform: translateY(-500%);
            transform: translateY(-500%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.initial_move_on3 {
  -webkit-animation: initial_move3 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
          animation: initial_move3 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
}

@-webkit-keyframes initial_move3 {
  0% {
    -webkit-transform: translateY(-1000%);
            transform: translateY(-1000%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes initial_move3 {
  0% {
    -webkit-transform: translateY(-1000%);
            transform: translateY(-1000%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.initial_move_on4 {
  -webkit-animation: initial_move4 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
          animation: initial_move4 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
}

@-webkit-keyframes initial_move4 {
  0% {
    -webkit-transform: translateY(-1500%);
            transform: translateY(-1500%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes initial_move4 {
  0% {
    -webkit-transform: translateY(-1500%);
            transform: translateY(-1500%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.initial_move_on5 {
  -webkit-animation: initial_move5 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
          animation: initial_move5 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
}

@-webkit-keyframes initial_move5 {
  0% {
    -webkit-transform: translateY(-2000%);
            transform: translateY(-2000%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes initial_move5 {
  0% {
    -webkit-transform: translateY(-2000%);
            transform: translateY(-2000%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.initial_move_on6 {
  -webkit-animation: initial_move6 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
          animation: initial_move6 forwards 1s cubic-bezier(0, 0.55, 0.45, 1);
}

@-webkit-keyframes initial_move6 {
  0% {
    -webkit-transform: translateY(-2500%);
            transform: translateY(-2500%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes initial_move6 {
  0% {
    -webkit-transform: translateY(-2500%);
            transform: translateY(-2500%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */