﻿@keyframes down_bounce {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    transform: rotateY(0);
  }
  55% {
    transform: rotateY(90deg);
  }
  60% {
    transform: rotateY(180deg);
  }
  75% {
    transform: rotateY(-90deg);
  }
  80% {
    transform: rotateY(0);
  }
}
@keyframes fadeLeftIn {
  0% {
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeDownIn {
  0% {
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes img-wrap-before {
  0% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes img-wrap-after {
  0% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes grayscale {
  0% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0);
  }
}
@keyframes blur {
  0% {
  }
  100% {
    filter: blur(0) grayscale(0);
  }
}
@keyframes reveil_first {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes reveil_second {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes rotateFrag {
  0% {
  }
  100% {
    opacity: 1;
    transform: rotateZ(0);
  }
}
@keyframes flipIn {
  0% {
    transform: rotateY(90deg);
  }
  25% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
  }
  75% {
    transform: rotateY(0deg);
  }
  100% {
    opacity: 1;
  }
}
.bounceIn {
  opacity: 0;
}
.bounceIn.animated {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.blur {
  right: 0;
  left: 0;
  overflow: hidden;
}
.blur img {
  width: calc(100% + 10px);
  filter: blur(5px) grayscale(100%);
  margin-top: -10px;
}
.blur.animated img {
  animation-name: blur;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-direction: normal;
}
.img-wrap {
  overflow: hidden;
  position: relative;
  opacity: 0;
}
.img-wrap.animated {
  opacity: 1;
}
.img-wrap.animated:before,
.img-wrap.animated:after {
  animation: 0.6s cubic-bezier(0.52, 0.15, 0.96, 0.35) forwards;
  background: #0b308e;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.img-wrap.animated:before {
  animation-name: img-wrap-before;
  top: 0;
  bottom: 50%;
}
.img-wrap.animated:after {
  animation-name: img-wrap-after;
  top: 50%;
  bottom: 0;
}
.revail {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s ease-in 0.2s;
}
.revail:before {
  content: "";
  display: block;
  background-color: #0b308e;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}
.revail img {
  transition: opacity 0.1s ease 0.4s;
  opacity: 0;
}
.revail.animated {
  opacity: 1;
}
.revail.animated:before {
  animation: reveil_first 0.2s ease 0.2s 1 forwards,
    reveil_second 0.6s cubic-bezier(0.52, 0.15, 0.96, 0.35) 0.4s 1 forwards;
}
.revail.animated img {
  opacity: 1;
}
.flipIn {
  opacity: 0;
}
.flipIn.animated {
  animation: flipIn 0.4s ease 0.2s 1 forwards;
}
.fadeLeftIn {
  opacity: 0;
  transform: translateX(-20%);
}
.fadeLeftIn.animated {
  animation: fadeLeftIn 0.4s ease 0.2s 1 forwards;
}
.fadeDownIn {
  opacity: 0;
  transform: translateY(-20%);
}
.fadeDownIn.animated {
  animation: fadeDownIn 0.4s ease 0.2s 1 forwards;
}
.mt1rem_sp {
  margin-top: 1rem !important;
}
.mb1rem_sp {
  margin-bottom: 1rem !important;
}
.ml1rem_sp {
  margin-left: 1rem !important;
}
.mr1rem_sp {
  margin-right: 1rem !important;
}
.pt1rem_sp {
  padding-top: 1rem !important;
}
.pb1rem_sp {
  padding-bottom: 1rem !important;
}
.pl1rem_sp {
  padding-left: 1rem !important;
}
.pr1rem_sp {
  padding-right: 1rem !important;
}
.mt2rem_sp {
  margin-top: 2rem !important;
}
.mb2rem_sp {
  margin-bottom: 2rem !important;
}
.ml2rem_sp {
  margin-left: 2rem !important;
}
.mr2rem_sp {
  margin-right: 2rem !important;
}
.pt2rem_sp {
  padding-top: 2rem !important;
}
.pb2rem_sp {
  padding-bottom: 2rem !important;
}
.pl2rem_sp {
  padding-left: 2rem !important;
}
.pr2rem_sp {
  padding-right: 2rem !important;
}
.mt3rem_sp {
  margin-top: 3rem !important;
}
.mb3rem_sp {
  margin-bottom: 3rem !important;
}
.ml3rem_sp {
  margin-left: 3rem !important;
}
.mr3rem_sp {
  margin-right: 3rem !important;
}
.pt3rem_sp {
  padding-top: 3rem !important;
}
.pb3rem_sp {
  padding-bottom: 3rem !important;
}
.pl3rem_sp {
  padding-left: 3rem !important;
}
.pr3rem_sp {
  padding-right: 3rem !important;
}
.mt4rem_sp {
  margin-top: 4rem !important;
}
.mb4rem_sp {
  margin-bottom: 4rem !important;
}
.ml4rem_sp {
  margin-left: 4rem !important;
}
.mr4rem_sp {
  margin-right: 4rem !important;
}
.pt4rem_sp {
  padding-top: 4rem !important;
}
.pb4rem_sp {
  padding-bottom: 4rem !important;
}
.pl4rem_sp {
  padding-left: 4rem !important;
}
.pr4rem_sp {
  padding-right: 4rem !important;
}
.mt5rem_sp {
  margin-top: 5rem !important;
}
.mb5rem_sp {
  margin-bottom: 5rem !important;
}
.ml5rem_sp {
  margin-left: 5rem !important;
}
.mr5rem_sp {
  margin-right: 5rem !important;
}
.pt5rem_sp {
  padding-top: 5rem !important;
}
.pb5rem_sp {
  padding-bottom: 5rem !important;
}
.pl5rem_sp {
  padding-left: 5rem !important;
}
.pr5rem_sp {
  padding-right: 5rem !important;
}
.mt6rem_sp {
  margin-top: 6rem !important;
}
.mb6rem_sp {
  margin-bottom: 6rem !important;
}
.ml6rem_sp {
  margin-left: 6rem !important;
}
.mr6rem_sp {
  margin-right: 6rem !important;
}
.pt6rem_sp {
  padding-top: 6rem !important;
}
.pb6rem_sp {
  padding-bottom: 6rem !important;
}
.pl6rem_sp {
  padding-left: 6rem !important;
}
.pr6rem_sp {
  padding-right: 6rem !important;
}
.mt7rem_sp {
  margin-top: 7rem !important;
}
.mb7rem_sp {
  margin-bottom: 7rem !important;
}
.ml7rem_sp {
  margin-left: 7rem !important;
}
.mr7rem_sp {
  margin-right: 7rem !important;
}
.pt7rem_sp {
  padding-top: 7rem !important;
}
.pb7rem_sp {
  padding-bottom: 7rem !important;
}
.pl7rem_sp {
  padding-left: 7rem !important;
}
.pr7rem_sp {
  padding-right: 7rem !important;
}
.mt8rem_sp {
  margin-top: 8rem !important;
}
.mb8rem_sp {
  margin-bottom: 8rem !important;
}
.ml8rem_sp {
  margin-left: 8rem !important;
}
.mr8rem_sp {
  margin-right: 8rem !important;
}
.pt8rem_sp {
  padding-top: 8rem !important;
}
.pb8rem_sp {
  padding-bottom: 8rem !important;
}
.pl8rem_sp {
  padding-left: 8rem !important;
}
.pr8rem_sp {
  padding-right: 8rem !important;
}
.mt9rem_sp {
  margin-top: 9rem !important;
}
.mb9rem_sp {
  margin-bottom: 9rem !important;
}
.ml9rem_sp {
  margin-left: 9rem !important;
}
.mr9rem_sp {
  margin-right: 9rem !important;
}
.pt9rem_sp {
  padding-top: 9rem !important;
}
.pb9rem_sp {
  padding-bottom: 9rem !important;
}
.pl9rem_sp {
  padding-left: 9rem !important;
}
.pr9rem_sp {
  padding-right: 9rem !important;
}
.mt10rem_sp {
  margin-top: 10rem !important;
}
.mb10rem_sp {
  margin-bottom: 10rem !important;
}
.ml10rem_sp {
  margin-left: 10rem !important;
}
.mr10rem_sp {
  margin-right: 10rem !important;
}
.pt10rem_sp {
  padding-top: 10rem !important;
}
.pb10rem_sp {
  padding-bottom: 10rem !important;
}
.pl10rem_sp {
  padding-left: 10rem !important;
}
.pr10rem_sp {
  padding-right: 10rem !important;
}
.mt1rem_spc {
  margin-top: 1rem !important;
}
.mb1rem_spc {
  margin-bottom: 1rem !important;
}
.ml1rem_spc {
  margin-left: 1rem !important;
}
.mr1rem_spc {
  margin-right: 1rem !important;
}
.pt1rem_spc {
  padding-top: 1rem !important;
}
.pb1rem_spc {
  padding-bottom: 1rem !important;
}
.pl1rem_spc {
  padding-left: 1rem !important;
}
.pr1rem_spc {
  padding-right: 1rem !important;
}
.mt2rem_spc {
  margin-top: 2rem !important;
}
.mb2rem_spc {
  margin-bottom: 2rem !important;
}
.ml2rem_spc {
  margin-left: 2rem !important;
}
.mr2rem_spc {
  margin-right: 2rem !important;
}
.pt2rem_spc {
  padding-top: 2rem !important;
}
.pb2rem_spc {
  padding-bottom: 2rem !important;
}
.pl2rem_spc {
  padding-left: 2rem !important;
}
.pr2rem_spc {
  padding-right: 2rem !important;
}
.mt3rem_spc {
  margin-top: 3rem !important;
}
.mb3rem_spc {
  margin-bottom: 3rem !important;
}
.ml3rem_spc {
  margin-left: 3rem !important;
}
.mr3rem_spc {
  margin-right: 3rem !important;
}
.pt3rem_spc {
  padding-top: 3rem !important;
}
.pb3rem_spc {
  padding-bottom: 3rem !important;
}
.pl3rem_spc {
  padding-left: 3rem !important;
}
.pr3rem_spc {
  padding-right: 3rem !important;
}
.mt4rem_spc {
  margin-top: 4rem !important;
}
.mb4rem_spc {
  margin-bottom: 4rem !important;
}
.ml4rem_spc {
  margin-left: 4rem !important;
}
.mr4rem_spc {
  margin-right: 4rem !important;
}
.pt4rem_spc {
  padding-top: 4rem !important;
}
.pb4rem_spc {
  padding-bottom: 4rem !important;
}
.pl4rem_spc {
  padding-left: 4rem !important;
}
.pr4rem_spc {
  padding-right: 4rem !important;
}
.mt5rem_spc {
  margin-top: 5rem !important;
}
.mb5rem_spc {
  margin-bottom: 5rem !important;
}
.ml5rem_spc {
  margin-left: 5rem !important;
}
.mr5rem_spc {
  margin-right: 5rem !important;
}
.pt5rem_spc {
  padding-top: 5rem !important;
}
.pb5rem_spc {
  padding-bottom: 5rem !important;
}
.pl5rem_spc {
  padding-left: 5rem !important;
}
.pr5rem_spc {
  padding-right: 5rem !important;
}
.mt6rem_spc {
  margin-top: 6rem !important;
}
.mb6rem_spc {
  margin-bottom: 6rem !important;
}
.ml6rem_spc {
  margin-left: 6rem !important;
}
.mr6rem_spc {
  margin-right: 6rem !important;
}
.pt6rem_spc {
  padding-top: 6rem !important;
}
.pb6rem_spc {
  padding-bottom: 6rem !important;
}
.pl6rem_spc {
  padding-left: 6rem !important;
}
.pr6rem_spc {
  padding-right: 6rem !important;
}
.mt7rem_spc {
  margin-top: 7rem !important;
}
.mb7rem_spc {
  margin-bottom: 7rem !important;
}
.ml7rem_spc {
  margin-left: 7rem !important;
}
.mr7rem_spc {
  margin-right: 7rem !important;
}
.pt7rem_spc {
  padding-top: 7rem !important;
}
.pb7rem_spc {
  padding-bottom: 7rem !important;
}
.pl7rem_spc {
  padding-left: 7rem !important;
}
.pr7rem_spc {
  padding-right: 7rem !important;
}
.mt8rem_spc {
  margin-top: 8rem !important;
}
.mb8rem_spc {
  margin-bottom: 8rem !important;
}
.ml8rem_spc {
  margin-left: 8rem !important;
}
.mr8rem_spc {
  margin-right: 8rem !important;
}
.pt8rem_spc {
  padding-top: 8rem !important;
}
.pb8rem_spc {
  padding-bottom: 8rem !important;
}
.pl8rem_spc {
  padding-left: 8rem !important;
}
.pr8rem_spc {
  padding-right: 8rem !important;
}
.mt9rem_spc {
  margin-top: 9rem !important;
}
.mb9rem_spc {
  margin-bottom: 9rem !important;
}
.ml9rem_spc {
  margin-left: 9rem !important;
}
.mr9rem_spc {
  margin-right: 9rem !important;
}
.pt9rem_spc {
  padding-top: 9rem !important;
}
.pb9rem_spc {
  padding-bottom: 9rem !important;
}
.pl9rem_spc {
  padding-left: 9rem !important;
}
.pr9rem_spc {
  padding-right: 9rem !important;
}
.mt10rem_spc {
  margin-top: 10rem !important;
}
.mb10rem_spc {
  margin-bottom: 10rem !important;
}
.ml10rem_spc {
  margin-left: 10rem !important;
}
.mr10rem_spc {
  margin-right: 10rem !important;
}
.pt10rem_spc {
  padding-top: 10rem !important;
}
.pb10rem_spc {
  padding-bottom: 10rem !important;
}
.pl10rem_spc {
  padding-left: 10rem !important;
}
.pr10rem_spc {
  padding-right: 10rem !important;
}
.mt1rem_pc {
  margin-top: 1rem !important;
}
.mb1rem_pc {
  margin-bottom: 1rem !important;
}
.ml1rem_pc {
  margin-left: 1rem !important;
}
.mr1rem_pc {
  margin-right: 1rem !important;
}
.pt1rem_pc {
  padding-top: 1rem !important;
}
.pb1rem_pc {
  padding-bottom: 1rem !important;
}
.pl1rem_pc {
  padding-left: 1rem !important;
}
.pr1rem_pc {
  padding-right: 1rem !important;
}
.mt2rem_pc {
  margin-top: 2rem !important;
}
.mb2rem_pc {
  margin-bottom: 2rem !important;
}
.ml2rem_pc {
  margin-left: 2rem !important;
}
.mr2rem_pc {
  margin-right: 2rem !important;
}
.pt2rem_pc {
  padding-top: 2rem !important;
}
.pb2rem_pc {
  padding-bottom: 2rem !important;
}
.pl2rem_pc {
  padding-left: 2rem !important;
}
.pr2rem_pc {
  padding-right: 2rem !important;
}
.mt3rem_pc {
  margin-top: 3rem !important;
}
.mb3rem_pc {
  margin-bottom: 3rem !important;
}
.ml3rem_pc {
  margin-left: 3rem !important;
}
.mr3rem_pc {
  margin-right: 3rem !important;
}
.pt3rem_pc {
  padding-top: 3rem !important;
}
.pb3rem_pc {
  padding-bottom: 3rem !important;
}
.pl3rem_pc {
  padding-left: 3rem !important;
}
.pr3rem_pc {
  padding-right: 3rem !important;
}
.mt4rem_pc {
  margin-top: 4rem !important;
}
.mb4rem_pc {
  margin-bottom: 4rem !important;
}
.ml4rem_pc {
  margin-left: 4rem !important;
}
.mr4rem_pc {
  margin-right: 4rem !important;
}
.pt4rem_pc {
  padding-top: 4rem !important;
}
.pb4rem_pc {
  padding-bottom: 4rem !important;
}
.pl4rem_pc {
  padding-left: 4rem !important;
}
.pr4rem_pc {
  padding-right: 4rem !important;
}
.mt5rem_pc {
  margin-top: 5rem !important;
}
.mb5rem_pc {
  margin-bottom: 5rem !important;
}
.ml5rem_pc {
  margin-left: 5rem !important;
}
.mr5rem_pc {
  margin-right: 5rem !important;
}
.pt5rem_pc {
  padding-top: 5rem !important;
}
.pb5rem_pc {
  padding-bottom: 5rem !important;
}
.pl5rem_pc {
  padding-left: 5rem !important;
}
.pr5rem_pc {
  padding-right: 5rem !important;
}
.mt6rem_pc {
  margin-top: 6rem !important;
}
.mb6rem_pc {
  margin-bottom: 6rem !important;
}
.ml6rem_pc {
  margin-left: 6rem !important;
}
.mr6rem_pc {
  margin-right: 6rem !important;
}
.pt6rem_pc {
  padding-top: 6rem !important;
}
.pb6rem_pc {
  padding-bottom: 6rem !important;
}
.pl6rem_pc {
  padding-left: 6rem !important;
}
.pr6rem_pc {
  padding-right: 6rem !important;
}
.mt7rem_pc {
  margin-top: 7rem !important;
}
.mb7rem_pc {
  margin-bottom: 7rem !important;
}
.ml7rem_pc {
  margin-left: 7rem !important;
}
.mr7rem_pc {
  margin-right: 7rem !important;
}
.pt7rem_pc {
  padding-top: 7rem !important;
}
.pb7rem_pc {
  padding-bottom: 7rem !important;
}
.pl7rem_pc {
  padding-left: 7rem !important;
}
.pr7rem_pc {
  padding-right: 7rem !important;
}
.mt8rem_pc {
  margin-top: 8rem !important;
}
.mb8rem_pc {
  margin-bottom: 8rem !important;
}
.ml8rem_pc {
  margin-left: 8rem !important;
}
.mr8rem_pc {
  margin-right: 8rem !important;
}
.pt8rem_pc {
  padding-top: 8rem !important;
}
.pb8rem_pc {
  padding-bottom: 8rem !important;
}
.pl8rem_pc {
  padding-left: 8rem !important;
}
.pr8rem_pc {
  padding-right: 8rem !important;
}
.mt9rem_pc {
  margin-top: 9rem !important;
}
.mb9rem_pc {
  margin-bottom: 9rem !important;
}
.ml9rem_pc {
  margin-left: 9rem !important;
}
.mr9rem_pc {
  margin-right: 9rem !important;
}
.pt9rem_pc {
  padding-top: 9rem !important;
}
.pb9rem_pc {
  padding-bottom: 9rem !important;
}
.pl9rem_pc {
  padding-left: 9rem !important;
}
.pr9rem_pc {
  padding-right: 9rem !important;
}
.mt10rem_pc {
  margin-top: 10rem !important;
}
.mb10rem_pc {
  margin-bottom: 10rem !important;
}
.ml10rem_pc {
  margin-left: 10rem !important;
}
.mr10rem_pc {
  margin-right: 10rem !important;
}
.pt10rem_pc {
  padding-top: 10rem !important;
}
.pb10rem_pc {
  padding-bottom: 10rem !important;
}
.pl10rem_pc {
  padding-left: 10rem !important;
}
.pr10rem_pc {
  padding-right: 10rem !important;
}
.mt1rem_wpc {
  margin-top: 1rem !important;
}
.mb1rem_wpc {
  margin-bottom: 1rem !important;
}
.ml1rem_wpc {
  margin-left: 1rem !important;
}
.mr1rem_wpc {
  margin-right: 1rem !important;
}
.pt1rem_wpc {
  padding-top: 1rem !important;
}
.pb1rem_wpc {
  padding-bottom: 1rem !important;
}
.pl1rem_wpc {
  padding-left: 1rem !important;
}
.pr1rem_wpc {
  padding-right: 1rem !important;
}
.mt2rem_wpc {
  margin-top: 2rem !important;
}
.mb2rem_wpc {
  margin-bottom: 2rem !important;
}
.ml2rem_wpc {
  margin-left: 2rem !important;
}
.mr2rem_wpc {
  margin-right: 2rem !important;
}
.pt2rem_wpc {
  padding-top: 2rem !important;
}
.pb2rem_wpc {
  padding-bottom: 2rem !important;
}
.pl2rem_wpc {
  padding-left: 2rem !important;
}
.pr2rem_wpc {
  padding-right: 2rem !important;
}
.mt3rem_wpc {
  margin-top: 3rem !important;
}
.mb3rem_wpc {
  margin-bottom: 3rem !important;
}
.ml3rem_wpc {
  margin-left: 3rem !important;
}
.mr3rem_wpc {
  margin-right: 3rem !important;
}
.pt3rem_wpc {
  padding-top: 3rem !important;
}
.pb3rem_wpc {
  padding-bottom: 3rem !important;
}
.pl3rem_wpc {
  padding-left: 3rem !important;
}
.pr3rem_wpc {
  padding-right: 3rem !important;
}
.mt4rem_wpc {
  margin-top: 4rem !important;
}
.mb4rem_wpc {
  margin-bottom: 4rem !important;
}
.ml4rem_wpc {
  margin-left: 4rem !important;
}
.mr4rem_wpc {
  margin-right: 4rem !important;
}
.pt4rem_wpc {
  padding-top: 4rem !important;
}
.pb4rem_wpc {
  padding-bottom: 4rem !important;
}
.pl4rem_wpc {
  padding-left: 4rem !important;
}
.pr4rem_wpc {
  padding-right: 4rem !important;
}
.mt5rem_wpc {
  margin-top: 5rem !important;
}
.mb5rem_wpc {
  margin-bottom: 5rem !important;
}
.ml5rem_wpc {
  margin-left: 5rem !important;
}
.mr5rem_wpc {
  margin-right: 5rem !important;
}
.pt5rem_wpc {
  padding-top: 5rem !important;
}
.pb5rem_wpc {
  padding-bottom: 5rem !important;
}
.pl5rem_wpc {
  padding-left: 5rem !important;
}
.pr5rem_wpc {
  padding-right: 5rem !important;
}
.mt6rem_wpc {
  margin-top: 6rem !important;
}
.mb6rem_wpc {
  margin-bottom: 6rem !important;
}
.ml6rem_wpc {
  margin-left: 6rem !important;
}
.mr6rem_wpc {
  margin-right: 6rem !important;
}
.pt6rem_wpc {
  padding-top: 6rem !important;
}
.pb6rem_wpc {
  padding-bottom: 6rem !important;
}
.pl6rem_wpc {
  padding-left: 6rem !important;
}
.pr6rem_wpc {
  padding-right: 6rem !important;
}
.mt7rem_wpc {
  margin-top: 7rem !important;
}
.mb7rem_wpc {
  margin-bottom: 7rem !important;
}
.ml7rem_wpc {
  margin-left: 7rem !important;
}
.mr7rem_wpc {
  margin-right: 7rem !important;
}
.pt7rem_wpc {
  padding-top: 7rem !important;
}
.pb7rem_wpc {
  padding-bottom: 7rem !important;
}
.pl7rem_wpc {
  padding-left: 7rem !important;
}
.pr7rem_wpc {
  padding-right: 7rem !important;
}
.mt8rem_wpc {
  margin-top: 8rem !important;
}
.mb8rem_wpc {
  margin-bottom: 8rem !important;
}
.ml8rem_wpc {
  margin-left: 8rem !important;
}
.mr8rem_wpc {
  margin-right: 8rem !important;
}
.pt8rem_wpc {
  padding-top: 8rem !important;
}
.pb8rem_wpc {
  padding-bottom: 8rem !important;
}
.pl8rem_wpc {
  padding-left: 8rem !important;
}
.pr8rem_wpc {
  padding-right: 8rem !important;
}
.mt9rem_wpc {
  margin-top: 9rem !important;
}
.mb9rem_wpc {
  margin-bottom: 9rem !important;
}
.ml9rem_wpc {
  margin-left: 9rem !important;
}
.mr9rem_wpc {
  margin-right: 9rem !important;
}
.pt9rem_wpc {
  padding-top: 9rem !important;
}
.pb9rem_wpc {
  padding-bottom: 9rem !important;
}
.pl9rem_wpc {
  padding-left: 9rem !important;
}
.pr9rem_wpc {
  padding-right: 9rem !important;
}
.mt10rem_wpc {
  margin-top: 10rem !important;
}
.mb10rem_wpc {
  margin-bottom: 10rem !important;
}
.ml10rem_wpc {
  margin-left: 10rem !important;
}
.mr10rem_wpc {
  margin-right: 10rem !important;
}
.pt10rem_wpc {
  padding-top: 10rem !important;
}
.pb10rem_wpc {
  padding-bottom: 10rem !important;
}
.pl10rem_wpc {
  padding-left: 10rem !important;
}
.pr10rem_wpc {
  padding-right: 10rem !important;
}
.mt1rem_all {
  margin-top: 1rem !important;
}
.mb1rem_all {
  margin-bottom: 1rem !important;
}
.ml1rem_all {
  margin-left: 1rem !important;
}
.mr1rem_all {
  margin-right: 1rem !important;
}
.pt1rem_all {
  padding-top: 1rem !important;
}
.pb1rem_all {
  padding-bottom: 1rem !important;
}
.pl1rem_all {
  padding-left: 1rem !important;
}
.pr1rem_all {
  padding-right: 1rem !important;
}
.mt2rem_all {
  margin-top: 2rem !important;
}
.mb2rem_all {
  margin-bottom: 2rem !important;
}
.ml2rem_all {
  margin-left: 2rem !important;
}
.mr2rem_all {
  margin-right: 2rem !important;
}
.pt2rem_all {
  padding-top: 2rem !important;
}
.pb2rem_all {
  padding-bottom: 2rem !important;
}
.pl2rem_all {
  padding-left: 2rem !important;
}
.pr2rem_all {
  padding-right: 2rem !important;
}
.mt3rem_all {
  margin-top: 3rem !important;
}
.mb3rem_all {
  margin-bottom: 3rem !important;
}
.ml3rem_all {
  margin-left: 3rem !important;
}
.mr3rem_all {
  margin-right: 3rem !important;
}
.pt3rem_all {
  padding-top: 3rem !important;
}
.pb3rem_all {
  padding-bottom: 3rem !important;
}
.pl3rem_all {
  padding-left: 3rem !important;
}
.pr3rem_all {
  padding-right: 3rem !important;
}
.mt4rem_all {
  margin-top: 4rem !important;
}
.mb4rem_all {
  margin-bottom: 4rem !important;
}
.ml4rem_all {
  margin-left: 4rem !important;
}
.mr4rem_all {
  margin-right: 4rem !important;
}
.pt4rem_all {
  padding-top: 4rem !important;
}
.pb4rem_all {
  padding-bottom: 4rem !important;
}
.pl4rem_all {
  padding-left: 4rem !important;
}
.pr4rem_all {
  padding-right: 4rem !important;
}
.mt5rem_all {
  margin-top: 5rem !important;
}
.mb5rem_all {
  margin-bottom: 5rem !important;
}
.ml5rem_all {
  margin-left: 5rem !important;
}
.mr5rem_all {
  margin-right: 5rem !important;
}
.pt5rem_all {
  padding-top: 5rem !important;
}
.pb5rem_all {
  padding-bottom: 5rem !important;
}
.pl5rem_all {
  padding-left: 5rem !important;
}
.pr5rem_all {
  padding-right: 5rem !important;
}
.mt6rem_all {
  margin-top: 6rem !important;
}
.mb6rem_all {
  margin-bottom: 6rem !important;
}
.ml6rem_all {
  margin-left: 6rem !important;
}
.mr6rem_all {
  margin-right: 6rem !important;
}
.pt6rem_all {
  padding-top: 6rem !important;
}
.pb6rem_all {
  padding-bottom: 6rem !important;
}
.pl6rem_all {
  padding-left: 6rem !important;
}
.pr6rem_all {
  padding-right: 6rem !important;
}
.mt7rem_all {
  margin-top: 7rem !important;
}
.mb7rem_all {
  margin-bottom: 7rem !important;
}
.ml7rem_all {
  margin-left: 7rem !important;
}
.mr7rem_all {
  margin-right: 7rem !important;
}
.pt7rem_all {
  padding-top: 7rem !important;
}
.pb7rem_all {
  padding-bottom: 7rem !important;
}
.pl7rem_all {
  padding-left: 7rem !important;
}
.pr7rem_all {
  padding-right: 7rem !important;
}
.mt8rem_all {
  margin-top: 8rem !important;
}
.mb8rem_all {
  margin-bottom: 8rem !important;
}
.ml8rem_all {
  margin-left: 8rem !important;
}
.mr8rem_all {
  margin-right: 8rem !important;
}
.pt8rem_all {
  padding-top: 8rem !important;
}
.pb8rem_all {
  padding-bottom: 8rem !important;
}
.pl8rem_all {
  padding-left: 8rem !important;
}
.pr8rem_all {
  padding-right: 8rem !important;
}
.mt9rem_all {
  margin-top: 9rem !important;
}
.mb9rem_all {
  margin-bottom: 9rem !important;
}
.ml9rem_all {
  margin-left: 9rem !important;
}
.mr9rem_all {
  margin-right: 9rem !important;
}
.pt9rem_all {
  padding-top: 9rem !important;
}
.pb9rem_all {
  padding-bottom: 9rem !important;
}
.pl9rem_all {
  padding-left: 9rem !important;
}
.pr9rem_all {
  padding-right: 9rem !important;
}
.mt10rem_all {
  margin-top: 10rem !important;
}
.mb10rem_all {
  margin-bottom: 10rem !important;
}
.ml10rem_all {
  margin-left: 10rem !important;
}
.mr10rem_all {
  margin-right: 10rem !important;
}
.pt10rem_all {
  padding-top: 10rem !important;
}
.pb10rem_all {
  padding-bottom: 10rem !important;
}
.pl10rem_all {
  padding-left: 10rem !important;
}
.pr10rem_all {
  padding-right: 10rem !important;
}
.en {
  font-family: "Ropa Sans", sans-serif;
}
.anchor_point {
  padding-top: 100px;
  margin-top: -100px;
  display: block;
}
.anchor_point.upper_l_gap {
  padding-top: 150px;
  margin-top: -150px;
}
.list_marker_circle {
  margin-right: 0.3rem;
}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {
  outline-offset: -2px;
}
input[type="text"] {
  border: 1px solid #3b3b3b;
}
a img {
  transition: all 0.4s ease;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  word-break: break-all;
}
strong {
  font-weight: bold;
}
a {
  color: #000;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
a:hover img {
  opacity: 0.5;
}
html,
body {
  height: 100%;
}
html {
  background-color: transparent;
}
body {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", "Noto Sans JP",
    "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo,
    sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #7d7d7d;
  line-height: calc(27 / 15);
  font-feature-settings: "palt";
  height: 100%;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: subpixel-antialiased;
  background-color: #fff;
}
body.lower {
  padding-top: 83px;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .sp_btn {
    display: none;
  }
}
@media screen and (max-width: 919px) {
  .sp_btn {
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    padding-top: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    position: absolute;
    right: 5.83333%;
    top: 27px;
    z-index: 3;
  }
}
.sp_btn .bar {
  width: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 1px;
  background-color: #000;
  transition: all 0.4s ease;
}
.sp_btn .bar.bar_top {
  transform-origin: 0 0;
}
.sp_btn .bar.bar_bottom {
  transform-origin: right bottom;
}
.sp_btn .bar + .bar {
  margin-top: 4px;
}
.menu_open .sp_btn .bar.bar_top {
  transform: translateX(2px) translateY(10px) rotateZ(-45deg);
}
.menu_open .sp_btn .bar.bar_middle {
  opacity: 0;
}
.menu_open .sp_btn .bar.bar_bottom {
  transform: translateX(-12px) translateY(-11px) rotateZ(-135deg);
}
.hamburger {
  width: 23px;
  cursor: pointer;
}
.hamburger .bar {
  display: block;
  width: 23px;
  height: 2px;
}
.hamburger .bar + .bar {
  margin-top: 8px;
}
.wrapper {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.wrapper:after {
  background: url("../img/common/footer_bg.jpg") 0 100% / contain no-repeat;
  content: "";
  display: block;
  width: 100%;
  padding-top: 41.5%;
  padding-bottom: 93px;
}
.global_header_wrapper.gray .global_header {
  background-color: #ebebeb;
}
.global_header_wrapper.gray .hamburger .bar {
  background-color: #0b308e;
}
.global_header_wrapper.blue .global_header {
  background-color: #0b308e;
}
.global_header_wrapper.blue .hamburger .bar {
  background-color: #fff;
}
.global_header_wrapper .global_header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 83px;
  z-index: 500;
}
.header_fixed .global_header_wrapper .global_header {
  transform: translateY(0) !important;
}
.global_header_wrapper .global_header > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.global_header_wrapper .global_header > .inner .gnav_logo {
  width: 240px;
}
.global_header_wrapper .gnav_func {
  display: flex;
  line-height: 1;
  font-size: 0;
}
.global_header_wrapper .gnav_func img {
  line-height: 1;
  font-size: 0;
}
.global_header_wrapper .gnav_func .gnav_tel {
  width: 207px;
  margin-right: 20px;
}
.global_header_wrapper .gnav_func .gnav_tel a {
  display: block;
}
.global_header_wrapper .gnav_func .gnav_tel img {
  width: 207px;
  height: 25px;
}
.global_header_wrapper .gnav_func .gnav_email {
  margin-right: 50px;
}
.global_header_wrapper .gnav_func .gnav_email img {
  width: 30px;
  display: block;
}
.global_footer_wrapper {
  position: relative;
  z-index: 2;
}
.global_footer_wrapper .global_footer {
  background-color: #ebebeb;
  padding: 60px 0 30px;
}
.global_footer_wrapper .global_footer .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.global_footer_wrapper .global_footer .inner .upper {
  display: flex;
  justify-content: space-between;
}
.global_footer_wrapper .global_footer .inner .upper .footer_logo {
  width: 174px;
}
.global_footer_wrapper .global_footer .inner .upper .footer_menus {
  width: 540px;
  display: flex;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu
  a {
  color: #7d7d7d;
  text-decoration: none;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu.menu_01 {
  width: 30%;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu.menu_02 {
  width: 40%;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu.menu_03 {
  width: 30%;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu
  .parent {
  font-size: 25px;
  font-weight: bold;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu
  .parent
  + .parent {
  margin-top: 25px;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu
  .parent
  > .children {
  font-size: 15px;
  font-weight: normal;
  margin-top: 22px;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu
  .parent
  > .children
  > li
  + li {
  margin-top: 10px;
}
.global_footer_wrapper
  .global_footer
  .inner
  .upper
  .footer_menus
  .footer_menu
  .other_menu {
  margin-top: 36px;
}
.global_footer_wrapper .global_footer .inner .bottom {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.global_footer_wrapper .global_footer .inner .bottom .footer_iso {
  display: flex;
  margin-top: 20px;
  width: 457px;
}
.global_footer_wrapper
  .global_footer
  .inner
  .bottom
  .footer_iso
  .footer_iso_icon {
  width: 63px;
  margin-right: 10px;
}
.global_footer_wrapper
  .global_footer
  .inner
  .bottom
  .footer_iso
  .footer_iso_desc {
  font-size: 13px;
  line-height: calc(16.25 / 13);
  color: #7d7d7d;
}
.global_footer_wrapper
  .global_footer
  .inner
  .bottom
  .footer_iso
  .footer_iso_desc
  small {
  font-size: 9px;
  display: block;
  line-height: calc(12 / 9);
  letter-spacing: -0.025em;
}
.global_footer_wrapper .global_footer .inner .bottom .footer_sdgs {
  width: 378px;
}
#pageHome .global_header_wrapper .global_header {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
#pageHome.tablet,
#pageHome.sp {
  height: 750px;
}
#pageHome.tablet .kv_wrapper,
#pageHome.sp .kv_wrapper {
  height: 750px;
}
#pageHome.tablet .kv_wrapper .kv > .inner,
#pageHome.sp .kv_wrapper .kv > .inner {
  height: 750px;
}
#pageHome.tablet .kv_wrapper .kv_img img,
#pageHome.sp .kv_wrapper .kv_img img {
  height: 750px;
  display: block;
}
#pageHome.tablet .overlay .ham_logo,
#pageHome.sp .overlay .ham_logo {
  transform: translateX(0) !important;
}
#pageHome .kv_wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  -webkit-perspective: 270px;
  perspective: 270px;
}
#pageHome .kv_wrapper .kv {
  position: absolute;
  width: 100%;
  -webkit-perspective: 270px;
  perspective: 270px;
}
#pageHome .kv_wrapper .kv .kv_logo {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 270px;
  height: 270px;
  transform: perspective(270px);
}
#pageHome .kv_wrapper .kv .kv_logo p {
  animation-name: down_bounce;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-delay: 0;
  animation-direction: normal;
}
#pageHome .kv_wrapper .kv > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
  height: 100vh;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav {
  position: absolute;
  width: 100%;
  top: 30px;
  display: flex;
  justify-content: space-between;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_logotype {
  width: 201px;
  height: 90px;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func {
  display: flex;
  line-height: 1;
  font-size: 0;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func img {
  line-height: 1;
  font-size: 0;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func .kv_tel {
  width: 207px;
  margin-right: 20px;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func .kv_tel a {
  display: block;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func .kv_tel img {
  width: 207px;
  height: 25px;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func .kv_email {
  margin-right: 50px;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func .kv_email img {
  width: 30px;
  display: block;
}
#pageHome .kv_wrapper .kv > .inner .kv_nav .kv_func .hamburger .bar {
  background-color: #0b308e;
}
#pageHome .kv_img {
  width: 100%;
}
#pageHome .kv_img img {
  object-fit: cover;
  height: 100vh;
}
#pageHome .section_group_01 {
  background-color: #ebebeb;
  padding-bottom: 88px;
}
#pageHome .s01 {
  position: relative;
}
#pageHome .s01 .s01_img_01 {
  position: absolute;
  z-index: 0;
  right: 0;
  left: 0;
}
#pageHome .s01 .s01_img_01 img {
  object-fit: cover;
  height: 745px;
}
#pageHome .s01 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
  padding-top: 246px;
  z-index: 1;
}
#pageHome .s01 > .inner .s01_box_01 {
  background-color: #fff;
  min-height: 760px;
  width: 540px;
  box-sizing: border-box;
  padding: 40px 40px 37px;
}
#pageHome .s01 > .inner .s01_box_01 .s01_ttl_01 {
  width: 146px;
}
#pageHome .s01 > .inner .s01_box_01 .s01_ttl_01 img {
  display: block;
}
#pageHome .s01 > .inner .s01_box_01 .s01_catch_01 {
  width: 436px;
  margin-top: 42px;
  line-height: 1;
}
#pageHome .s01 > .inner .s01_box_01 .s01_catch_01 img {
  display: block;
}
#pageHome .s01 > .inner .s01_box_01 .s01_sttl {
  font-weight: bold;
  font-size: 23px;
  color: #7d7d7d;
  line-height: calc(30 / 23);
  margin-top: 46.5px;
}
#pageHome .s01 > .inner .s01_box_01 .s01_sttl.mt_v2 {
  margin-top: 25px;
}
#pageHome .s01 > .inner .s01_box_01 .s01_txt {
  color: #7d7d7d;
  font-size: 15px;
  line-height: calc(27 / 15);
  margin-top: 23px;
  letter-spacing: 0.025em;
}
#pageHome .s01 > .inner .s01_box_01 .s01_line_01 {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  height: 2.8px;
  margin-top: 25px;
  line-height: 1;
  background: url("../img/top/s01_line_01.png") 0 0 / contain repeat-x;
}
#pageHome .s01 > .inner .s01_sign {
  width: 540px;
}
#pageHome .s01 > .inner .s01_sign img {
  display: block;
  width: 132px;
  margin-left: auto;
  margin-top: 25px;
}
#pageHome .s01 > .inner .s01_photos {
  position: absolute;
  right: 0;
  width: 350px;
  top: 744px;
}
#pageHome .s01 > .inner .s01_photos img {
  display: block;
}
#pageHome .s01 > .inner .s01_photos figure + figure {
  margin-top: 12px;
}
#pageHome .s02 {
  margin-top: 74px;
}
#pageHome .s02 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageHome .s02 .s02_ttl_01 {
  width: 226px;
}
#pageHome .s02 .s02_ttl_01 img {
  display: block;
}
#pageHome .s02 .s02_catch_01 {
  width: 311px;
  margin-top: 47px;
}
#pageHome .s02 .s02_catch_01 img {
  display: block;
}
#pageHome .s02 .s02_box_01 {
  background: url("../img/top/s02_box_top.png") 0 0 no-repeat,
    url("../img/top/s02_box_bottom.png") 0 100% no-repeat;
  padding: 27px 0 27px;
  margin-top: 50px;
}
#pageHome .s02 .s02_box_01 .s02_box_01_inner {
  background: url("../img/top/s02_box_side.png") 0 0 repeat-y;
  position: relative;
}
#pageHome .s02 .s02_box_01 .s02_box_01_inner .s02_box_title {
  font-weight: bold;
  font-size: 20px;
  color: #0b308e;
  position: absolute;
  line-height: 1;
  top: -37px;
  margin-bottom: -37px;
  left: 52px;
  white-space: nowrap;
  box-sizing: border-box;
}
#pageHome .s02 .s02_box_01 .s02_box_01_inner .s02_box_01_content {
  display: flex;
  padding-top: 16px;
}
#pageHome
  .s02
  .s02_box_01
  .s02_box_01_inner
  .s02_box_01_content
  .s02_box_01_content_column {
  display: flex;
  width: 263px;
  margin-right: 36px;
}
#pageHome
  .s02
  .s02_box_01
  .s02_box_01_inner
  .s02_box_01_content
  .s02_box_01_content_column
  .s02_box_01_content_column_title {
  width: 60px;
  margin-right: 10px;
}
#pageHome
  .s02
  .s02_box_01
  .s02_box_01_inner
  .s02_box_01_content
  .s02_box_01_content_column
  .s02_box_01_content_column_desc {
  width: 196px;
}
#pageHome
  .s02
  .s02_box_01
  .s02_box_01_inner
  .s02_box_01_content
  .s02_box_01_content_column
  .s02_box_01_content_column_desc
  .s02_box_01_content_column_stitle
  img {
  width: auto;
  height: 64px;
  display: block;
}
#pageHome
  .s02
  .s02_box_01
  .s02_box_01_inner
  .s02_box_01_content
  .s02_box_01_content_column
  .s02_box_01_content_column_desc
  .s02_box_01_content_column_text {
  font-size: 13px;
  color: #7d7d7d;
  line-height: calc(20 / 13);
  margin-left: 8px;
  margin-top: 19px;
  letter-spacing: -0.025em;
}
#pageHome .s02 .s02_bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
#pageHome .s02 .s02_bottom .s02_bottom_01 .s02_catch_02 {
  width: 400px;
}
#pageHome .s02 .s02_bottom .s02_bottom_01 .s02_catch_02 img {
  display: block;
}
#pageHome .s02 .s02_bottom .s02_bottom_01 address {
  font-size: 13px;
  color: #7d7d7d;
  line-height: calc(20 / 13);
  margin-top: 16px;
}
#pageHome .s02 .s02_bottom .s02_bottom_01 address a {
  text-decoration: none;
  color: #7d7d7d;
}
#pageHome .s02 .s02_bottom .s02_bottom_02 {
  width: 93px;
}
#pageHome .s03 {
  margin-top: 80px;
}
#pageHome .s03 > .inner {
  position: relative;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageHome .s03 > .inner .s03_icon_01 {
  perspective: 1000px;
  position: absolute;
  width: 235px;
  height: 235px;
  right: 90px;
  top: -117px;
  z-index: 3;
}
#pageHome .s03 > .inner .s03_upper {
  position: relative;
}
#pageHome .s03 > .inner .s03_upper .s03_ttl_01 {
  width: 164px;
  padding-top: 45px;
}
#pageHome .s03 > .inner .s03_upper .s03_ttl_01 img {
  display: block;
}
#pageHome .s03 > .inner .s03_upper .s03_catch_01 {
  width: 238px;
  margin-top: 47px;
}
#pageHome .s03 > .inner .s03_upper .s03_catch_01 img {
  display: block;
}
#pageHome .s03 > .inner .s03_upper .s03_text_01 {
  line-height: calc(27 / 15);
  color: #7d7d7d;
  margin-top: 39px;
  width: 410px;
}
#pageHome .s03 > .inner .s03_upper .s03_img_02 {
  width: 130px;
  position: absolute;
  right: 460px;
  top: 10px;
}
#pageHome .s03 > .inner .s03_upper .s03_img_03 {
  width: 450px;
  position: absolute;
  top: -66px;
  right: 0;
}
#pageHome .s03 > .inner .s03_upper .s03_img_04 {
  width: 304px;
  position: absolute;
  left: 374px;
  top: 119px;
  opacity: 0;
  transform: rotateZ(-43deg);
  transform-origin: 20% 100%;
}
#pageHome .s03 > .inner .s03_upper .s03_img_04 img {
  display: block;
  line-height: 1;
  font-size: 0;
}
#pageHome .s03 > .inner .s03_upper .s03_img_04.animated {
  animation: rotateFrag 1.4s ease 0.6s 1 forwards;
}
#pageHome .s03 > .inner .s03_upper .s03_catch_02 {
  width: 400px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#pageHome .section_group_02 {
  background-color: #fff;
  padding-top: 50px;
  position: relative;
}
#pageHome .section_group_02:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 983px;
  background-color: #ebebeb;
  z-index: 1;
  top: 1850px;
}
#pageHome .section_group_02 .s04 {
  position: relative;
  z-index: 2;
}
#pageHome .section_group_02 .s04 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper {
  display: flex;
  justify-content: space-between;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha {
  width: 588px;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_ttl_01 {
  width: 289px;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_ttl_01 img {
  display: block;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_catch_01 {
  width: 515px;
  margin-top: 46px;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_catch_01 img {
  display: block;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_sttl_01 {
  font-size: 23px;
  font-weight: bold;
  color: #7d7d7d;
  margin-top: 42px;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_text_01 {
  display: flex;
  margin-top: 20px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_upper
  .alpha
  .s04_text_01
  .s04_text_01_icon {
  width: 69px;
  margin-right: 10px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_upper
  .alpha
  .s04_text_01
  .s04_text_01_desc {
  font-size: 15px;
  line-height: 1;
  color: #7d7d7d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_upper
  .alpha
  .s04_text_01
  .s04_text_01_desc
  small {
  font-size: 12px;
  display: block;
  line-height: calc(19 / 12);
  margin-bottom: -5px;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .beta {
  width: 260px;
}
#pageHome .section_group_02 .s04 > .inner .s04_box {
  margin-top: 40px;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .inner_box_sttl_bar {
  background-color: #0b308e;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-top: 26px;
  padding: 13px 0;
}
#pageHome .section_group_02 .s04 > .inner .s04_box.box_02 .s04_box_body {
  border: 2px solid #fff;
  padding: 32px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .lead_unit_01 {
  display: flex;
  width: 100%;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .lead_unit_01
  .lead_unit_text {
  width: 260px;
  margin-right: 18px;
  color: #7d7d7d;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .lead_unit_01
  .lead_unit_photos {
  width: 550px;
  display: flex;
  flex-wrap: wrap;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .lead_unit_01
  .lead_unit_photos
  .photo {
  width: 270px;
  margin-right: 10px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .lead_unit_01
  .lead_unit_photos
  .photo:last-child {
  margin-right: 0;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .table_wrap {
  margin-top: 5px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .table_wrap
  .inner_box_table_01 {
  width: calc(100% + 10px);
  border-collapse: separate;
  border-spacing: 5px;
  margin-left: -5px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .table_wrap
  .inner_box_table_01
  thead
  th,
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .table_wrap
  .inner_box_table_01
  thead
  td {
  background-color: #7d7d7d;
  text-align: center;
  color: #fff;
  padding: 7px 0;
  font-size: 15px;
  line-height: calc(25 / 15);
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .table_wrap
  .inner_box_table_01
  tbody
  th,
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .table_wrap
  .inner_box_table_01
  tbody
  td {
  background-color: #fff;
  color: #7d7d7d;
  padding: 7px;
  vertical-align: middle;
  text-align: center;
  line-height: calc(25 / 15);
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  width: 100%;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box {
  width: 580px;
  display: flex;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  justify-content: space-between;
  border: 1px solid #7d7d7d;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box
  .column.column_01 {
  width: 270px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box
  .column.column_02 {
  width: 250px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box
  .column
  .env_unit_box_title {
  background-color: #0b308e;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 24px;
  border-radius: 8px;
  padding: 30px 0;
  font-weight: bold;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box
  .column
  .env_unit_box_text {
  line-height: calc(27 / 15);
  font-size: 15px;
  color: #7d7d7d;
  margin-top: 8px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box
  .column
  .env_list {
  font-size: 17px;
  border-top: 1px solid #bebfbf;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box
  .column
  .env_list
  li {
  border-bottom: 1px solid #bebfbf;
  padding: 6px 11px;
  color: #7d7d7d;
  line-height: 1.5;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_box
  .column
  .env_list
  .num {
  display: inline-block;
  width: 17px;
  height: 17px;
  background-color: #0b308e;
  font-size: 13px;
  text-align: center;
  color: #fff;
  border-radius: 17px;
  font-weight: bold;
  margin-right: 7px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box.box_02
  .s04_box_body
  .env_unit
  .env_unit_photo {
  width: 240px;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header {
  background-color: #0b308e;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 37px 0;
  font-size: 0;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 21px;
  margin-right: 33px;
  background: url("../img/top/arrow_white.svg") 0 0 no-repeat;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header h1,
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header h2,
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header h3,
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header h4,
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header h5,
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_header h6 {
  display: inline-block;
  font-size: 30px;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_body {
  padding: 35px;
  box-sizing: border-box;
  background-color: #ebebeb;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_body .s04_box_sttl {
  font-size: 20px;
  font-weight: bold;
  color: #0b308e;
  position: relative;
  padding-left: 28px;
  margin-top: 23px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_box_body
  .s04_box_sttl:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 17px;
  left: 0;
  top: 8px;
  background: url("../img/top/arrow_blue.svg") 0 0 no-repeat;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_box_body .s04_box_para {
  font-size: 15px;
  color: #7d7d7d;
  line-height: calc(27 / 15);
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_inner_boxs {
  display: flex;
  margin-top: 16px;
  justify-content: space-between;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_inner_boxs .column_01 {
  width: 450px;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_inner_boxs .column_02 {
  width: 365px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .column_02
  .inner_box_text {
  margin-top: 30px !important;
}
#pageHome .section_group_02 .s04 > .inner .s04_box .s04_inner_boxs .inner_box {
  width: 100%;
  background-color: #fff;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  + .inner_box {
  margin-top: 15px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_header {
  background-color: #0b308e;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: calc(30 / 22);
  padding: 21px 0;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body {
  background-color: #fff;
  padding: 0 20px 20px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .s04_img_02 {
  margin-top: 20px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_text {
  font-size: 15px;
  letter-spacing: -0.035em;
  color: #7d7d7d;
  margin-top: 20px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_detail {
  margin-top: 16px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_detail
  dl {
  display: flex;
  border: 1px solid #7d7d7d;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_detail
  dl
  dt {
  display: flex;
  align-items: center;
  background-color: #7d7d7d;
  color: #fff;
  font-size: 13px;
  width: 50px;
  justify-content: center;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_detail
  dl
  dd {
  font-size: 15px;
  padding: 5px 22px;
  line-height: calc(20 / 15);
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_btn {
  margin-top: 32px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_btn
  a {
  display: block;
  background-color: #0b308e;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_btn
  a:hover {
  opacity: 0.5;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_btn
  a:after {
  content: "▶";
  display: inline-block;
  margin-left: 9px;
}
#pageHome .section_group_02 .s05 {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
#pageHome .section_group_02 .s05 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper {
  display: flex;
  justify-content: space-between;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .alpha {
  width: 470px;
  padding-top: 38px;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .alpha .s05_ttl_01 {
  width: 254px;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .alpha .s05_ttl_01 img {
  display: block;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .alpha .s05_catch_01 {
  width: 450px;
  margin-top: 46px;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .alpha .s05_catch_01 img {
  display: block;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .alpha .s05_text_01 {
  margin-top: 37px;
  font-size: 15px;
  color: #7d7d7d;
  line-height: calc(27 / 15);
  letter-spacing: normal;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .beta {
  width: 400px;
  padding-top: 10px;
}
#pageHome .section_group_02 .s05 > .inner .s05_upper .beta .s05_catch_02 {
  margin-top: 38px;
}
.overlay {
  background-color: #0b308e;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.menu_open .overlay {
  z-index: 1000;
  opacity: 1;
  height: 100%;
}
.overlay > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overlay > .inner .btn_close {
  position: absolute;
  right: 0;
  width: 23px;
  top: 30px;
  cursor: pointer;
}
.overlay > .inner .ham_logotype {
  width: 240px;
}
.overlay > .inner .ham_menus {
  margin-top: 84px;
  display: flex;
}
.overlay > .inner .ham_menus .ham_menu {
  margin-right: 75px;
}
.overlay > .inner .ham_menus .ham_menu a {
  color: #fff;
  text-decoration: none;
}
.overlay > .inner .ham_menus .ham_menu .parent {
  font-size: 25px;
  font-weight: bold;
}
.overlay > .inner .ham_menus .ham_menu .parent + .parent {
  margin-top: 25px;
}
.overlay > .inner .ham_menus .ham_menu .parent > .children {
  font-size: 15px;
  font-weight: normal;
  margin-top: 22px;
}
.overlay > .inner .ham_menus .ham_menu .parent > .children > li + li {
  margin-top: 10px;
}
.overlay > .inner .ham_menus .ham_menu .other_menu {
  margin-top: 36px;
}
.overlay > .inner .ham_bottom {
  display: flex;
  margin-top: 105px;
  align-items: flex-end;
  justify-content: space-between;
}
.overlay > .inner .ham_bottom .ham_bottom_info .ham_address {
  color: #fff;
  font-size: 15px;
  line-height: calc(25 / 15);
}
.overlay > .inner .ham_bottom .ham_bottom_info .ham_address a {
  text-decoration: none;
  color: #fff;
}
.overlay > .inner .ham_bottom .ham_bottom_info .ham_services {
  margin-top: 25px;
}
.overlay > .inner .ham_bottom .ham_bottom_info .ham_services dl {
  display: flex;
  color: #fff;
}
.overlay > .inner .ham_bottom .ham_bottom_info .ham_services dl dt {
  width: 1rem;
  line-height: 1.1;
  border-right: 1px solid #fff;
  padding-right: 1rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.overlay > .inner .ham_bottom .ham_bottom_info .ham_services dl dd {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.overlay > .inner .ham_bottom .ham_logo {
  width: 80px;
  transform: translateX(50%);
}
#pagePrivacy .section_prvacy {
  padding-top: 150px;
}
#pagePrivacy .section_prvacy > .inner {
  width: 640px;
  margin: 0 auto;
}
#pagePrivacy .section_prvacy > .inner .s01_ttl_01 {
  width: 263px;
}
#pagePrivacy .section_prvacy > .inner .privacy_content {
  margin-top: 95px;
}
#pagePrivacy .section_prvacy > .inner .privacy_content h3 {
  font-weight: bold;
  color: #7d7d7d;
}
#pagePrivacy .section_prvacy > .inner .privacy_content .text {
  margin-top: 1rem;
}
#pagePrivacy .section_prvacy > .inner .privacy_content + .privacy_content {
  margin-top: 44px;
}
#pageProducts .wrapper {
  background-image: linear-gradient(180deg, #ebebeb 4400px, #fff 4400px);
}
#pageProducts .s01 {
  background: url("../img/products/products_bg_01.jpg") 50% 0 no-repeat;
}
#pageProducts .s01 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageProducts .s01 > .inner .s01_ttl_01 {
  width: 271px;
  padding-top: 100px;
}
#pageProducts .s01 > .inner .s01_ttl_01 img {
  display: block;
}
#pageProducts .s01 > .inner .s01_catch_01 {
  width: 871px;
  margin-top: 45px;
}
#pageProducts .s01 > .inner .s01_catch_01 img {
  display: block;
}
#pageProducts .s01 > .inner .s01_text_01 {
  font-size: 15px;
  margin-top: 35px;
}
#pageProducts .s01 > .inner .s01_catch_02 {
  width: 400px;
  margin-top: 34px;
}
#pageProducts .s01 > .inner .s01_catch_02 img {
  display: block;
}
#pageProducts .s01 > .inner .s01_sttl_01 {
  font-size: 20px;
  font-weight: bold;
  color: #0b308e;
  position: relative;
  padding-left: 28px;
  margin-top: 23px;
  margin-top: 76px;
}
#pageProducts .s01 > .inner .s01_sttl_01:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 17px;
  left: 0;
  top: 8px;
  background: url("../img/top/arrow_blue.svg") 0 0 no-repeat;
}
#pageProducts .s01 > .inner .s01_sttl_02 {
  font-size: 20px;
  font-weight: bold;
  color: #0b308e;
  position: relative;
  padding-left: 28px;
  margin-top: 23px;
  margin: 0;
}
#pageProducts .s01 > .inner .s01_sttl_02:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 17px;
  left: 0;
  top: 8px;
  background: url("../img/top/arrow_blue.svg") 0 0 no-repeat;
}
#pageProducts .s01 > .inner .products_list_title {
  color: #fff;
  background-color: #0b308e;
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  margin-top: 14px;
}
#pageProducts .s01 > .inner .products_list_item_list li {
  min-height: 60px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  box-sizing: border-box;
  border: 1px solid #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
#pageProducts .s01 > .inner .products_list_item_list + .products_list_title {
  margin-top: 75px;
}
#pageProducts .s01 .line_01 {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 3px;
  background: url("../img/common/line_01.png") 0 0 / cover no-repeat;
  margin: 97px 0 97px;
}
#pageProducts .s01 .env_lists {
  position: relative;
}
#pageProducts .s01 .env_lists + .env_lists {
  margin-top: 15px;
}
#pageProducts .s01 .env_lists .env_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#pageProducts .s01 .env_lists .env_list dt {
  width: 145px;
  color: #fff;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b308e;
  font-size: 20px;
}
#pageProducts .s01 .env_lists .env_list dd li {
  background-color: #fff;
  min-height: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3px 20px 0;
  line-height: calc(35 / 20);
  border: 1px solid #bebebe;
  font-size: 18px;
}
#pageProducts .s01 .env_lists .env_list dd li .env_list_title_2column {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#pageProducts
  .s01
  .env_lists
  .env_list
  dd
  li
  .env_list_title_2column
  .emphasis {
  font-weight: bold;
  color: #0b308e;
}
#pageProducts .s01 .env_lists .env_list dd li figure {
  margin-bottom: 20px;
}
#pageProducts .s01 .env_lists .env_list dd li.short {
  width: 495px;
}
#pageProducts .s01 .env_lists .env_list dd li.long {
  width: 755px;
}
#pageProducts .s01 .env_lists .env_list dd li + li {
  margin-top: 15px;
}
#pageProducts .s01 .env_lists .env_photo {
  position: absolute;
  width: 250px;
  right: 0;
  top: 0;
}
#pageProducts .s01 .env_lists .env_photo.custom_01 {
  top: 165px;
}
#pageProducts .s01 .env_lists .env_photo figure figcaption {
  font-size: 12px;
  margin-top: 8px;
}
#pageProducts .s01 .env_lists .env_photo figure + figure {
  margin-top: 10px;
}
#pageCompany .s01 {
  background: #ebebeb url("../img/company/company_s01_bg_01.png") 50% 0 /
    contain no-repeat;
  padding-top: 36px;
}
#pageCompany .s01 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
  min-height: 1081px;
}
#pageCompany .s01 > .inner .s01_ttl_01 {
  width: 166px;
  padding-top: 102px;
}
#pageCompany .s01 > .inner .s01_ttl_01 img {
  display: block;
}
#pageCompany .s01 > .inner .s01_catch_01 {
  width: 268px;
  margin-top: 45px;
}
#pageCompany .s01 > .inner .s01_catch_01 img {
  display: block;
}
#pageCompany .s01 > .inner .s01_sttl_01 {
  font-size: 25px;
  font-weight: bold;
  line-height: calc(34 / 25);
  margin-top: 42px;
}
#pageCompany .s01 > .inner .s01_text {
  letter-spacing: normal;
}
#pageCompany .s01 > .inner .s01_text.s01_text_01 {
  margin-top: 20px;
}
#pageCompany .s01 > .inner .s01_text.s01_text_02 {
  margin-left: 257px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
#pageCompany .s01 > .inner .s01_text p + p {
  margin-top: 28px;
}
#pageCompany .s01 > .inner .s01_img_01 {
  width: 292px;
  position: absolute;
  top: 0;
  left: 380px;
}
#pageCompany .s01 > .inner .s01_img_02 {
  width: 365px;
  position: absolute;
  bottom: 0;
  left: -54px;
}
#pageCompany .s01 > .inner .s01_name_circle {
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 100px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 36.5px;
  left: 315px;
  align-items: center;
}
#pageCompany .s01 > .inner .s01_name_circle .katagaki {
  color: #0b308e;
}
#pageCompany .s01 > .inner .s01_name_circle .name {
  font-weight: bold;
  font-size: 30px;
  color: #0b308e;
  margin-top: 21px;
}
#pageCompany .s01 > .inner .s01_name_circle .name_en {
  margin-top: 20px;
  font-size: 13px;
  color: #0b308e;
}
#pageCompany .s02 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
  padding: 100px 0 0;
}
#pageCompany .s02 > .inner .s02_ttl_01 {
  width: 228px;
  margin-bottom: 34px;
}
#pageCompany .s02 > .inner .s02_ttl_01 img {
  display: block;
}
#pageCompany .s02 > .inner .s02_img_01 {
  position: absolute;
  top: -168px;
  right: -104px;
  width: 435px;
}
#pageCompany .s02 > .inner .s02_catch_01 {
  position: absolute;
  right: 0;
  width: 22px;
  top: 420px;
}
#pageCompany .s02 > .inner .overview_table {
  display: flex;
}
#pageCompany .s02 > .inner .overview_table dt {
  display: flex;
  justify-content: space-between;
  width: 110px;
  margin-right: 20px;
}
#pageCompany .s02 > .inner .overview_table dt:after {
  content: "：";
  display: block;
}
#pageCompany .s02 > .inner .line_01 {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 3px;
  background: url("../img/common/line_01.png") 0 0 / cover no-repeat;
  width: 620px;
  margin-top: 44px;
}
#pageCompany .s03 > .inner {
  padding: 50px 0 374px;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageCompany .s03 > .inner .s03_ttl_01 {
  width: 217px;
}
#pageCompany .s03 > .inner .s03_ttl_01 img {
  display: block;
}
#pageCompany .s03 > .inner .s03_costomer_text {
  margin-top: 37px;
}
#pageCompany .s03 > .inner .s03_text_01 {
  margin-top: 28px;
}
#pageCompany .s04 {
  background-color: #ebebeb;
  padding-bottom: 251px;
}
#pageCompany .s04 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageCompany .s04 > .inner .s04_img_01 {
  transform: translateY(-50%);
  margin-bottom: -30.88889%;
}
#pageCompany .s04 > .inner .s04_img_01 img {
  display: block;
}
#pageCompany .s04 > .inner .s04_ttl_01 {
  width: 183px;
  margin-top: 73px;
}
#pageCompany .s04 > .inner .s04_ttl_01 img {
  display: block;
}
#pageCompany .s04 > .inner .history_table_wrapper {
  margin-top: 36px;
  position: relative;
}
#pageCompany .s04 > .inner .history_table_wrapper .history_table {
  display: flex;
}
#pageCompany .s04 > .inner .history_table_wrapper .history_table dt {
  display: flex;
  justify-content: space-between;
  width: 140px;
  margin-right: 20px;
}
#pageCompany .s04 > .inner .history_table_wrapper .history_table dt:after {
  content: "：";
  display: block;
}
#pageCompany .s04 > .inner .s04_img_02 {
  position: absolute;
  width: 181px;
  right: 0;
  bottom: 56px;
}
#pageCompany .s04 > .inner .s04_img_02 img {
  display: block;
}
#pageCompany .s05 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pageCompany .s05 > .inner .map {
  transform: translateY(-50%);
  margin-bottom: -16.66667%;
}
#pageCompany .s05 > .inner .map iframe {
  width: 100%;
  height: 300px;
  vertical-align: bottom;
}
#pageCompany .s05 > .inner .s05_ttl_01 {
  width: 121px;
  margin-top: 43px;
}
#pageCompany .s05 > .inner .s05_ttl_01 img {
  display: block;
}
#pageCompany .s05 > .inner .s05_sttl_01 {
  margin-top: 42px;
  width: 194px;
}
#pageCompany .s05 > .inner .s05_sttl_01 img {
  display: block;
}
#pageCompany .s05 > .inner .s05_text_01 {
  margin-top: 15px;
  position: relative;
}
#pageCompany .s05 > .inner .s05_text_01 .s05_img_01 {
  width: 132px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#pageRecruit .wrapper {
  background-image: linear-gradient(180deg, #ebebeb 3350px, #fff 3350px);
}
#pageRecruit .s01 {
  background: url("../img/products/products_bg_01.jpg") 50% 0 no-repeat;
}
#pageRecruit .s01 > .inner {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
}
#pageRecruit .s01 > .inner .s01_ttl_01 {
  width: 174px;
  padding-top: 100px;
}
#pageRecruit .s01 > .inner .s01_ttl_01 img {
  display: block;
}
#pageRecruit .s01 > .inner .s01_catch_01 {
  width: 409px;
  margin-top: 45px;
}
#pageRecruit .s01 > .inner .s01_catch_01 img {
  display: block;
}
#pageRecruit .s01 > .inner .s01_catch_02 {
  width: 400px;
  margin-top: 31px;
}
#pageRecruit .s01 > .inner .s01_catch_02 img {
  display: block;
}
#pageRecruit .s01 > .inner .s01_img_01 {
  position: absolute;
  right: 0;
  top: 87px;
  width: 360px;
}
#pageRecruit .s01 > .inner .s01_xsttl_01 {
  font-size: 20px;
  font-weight: bold;
  color: #0b308e;
  position: relative;
  padding-left: 28px;
  margin-top: 23px;
  margin-top: 93px;
}
#pageRecruit .s01 > .inner .s01_xsttl_01:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 17px;
  left: 0;
  top: 8px;
  background: url("../img/top/arrow_blue.svg") 0 0 no-repeat;
}
#pageRecruit .s01 > .inner .s01_xsttl_02 {
  font-size: 20px;
  font-weight: bold;
  color: #0b308e;
  position: relative;
  padding-left: 28px;
  margin-top: 23px;
  margin-top: 93px;
}
#pageRecruit .s01 > .inner .s01_xsttl_02:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 17px;
  left: 0;
  top: 8px;
  background: url("../img/top/arrow_blue.svg") 0 0 no-repeat;
}
#pageRecruit .s01 > .inner .s01_xxsttl_01 {
  font-weight: bold;
  font-size: 20px;
  line-height: calc(27 / 20);
  padding-top: 7.5px;
}
#pageRecruit .s01 > .inner .unit_01 {
  display: flex;
  justify-content: space-between;
  margin-top: 51px;
}
#pageRecruit .s01 > .inner .unit_01 .img {
  width: 320px;
}
#pageRecruit .s01 > .inner .unit_01 .text {
  width: 548px;
}
#pageRecruit .s01 > .inner .unit_01 .text .para {
  margin-top: 37px;
}
#pageRecruit .s01 > .inner .unit_01 .text .para p + p {
  margin-top: 26px;
}
#pageRecruit .s01 > .inner .unit_02 {
  width: 858px;
  height: 903px;
  position: relative;
  margin: 0 auto;
  background: url("../img/recruit/recruit_s01_bg_01.png") 50% 0 / contain
    no-repeat;
}
#pageRecruit .s01 > .inner .unit_02 > .inner {
  padding-top: 283px;
}
#pageRecruit .s01 > .inner .unit_02 > .inner .s01_catch_03 {
  width: 283px;
  margin: 0 auto;
}
#pageRecruit .s01 > .inner .unit_02 > .inner .s01_catch_03 img {
  display: block;
}
#pageRecruit .s01 > .inner .unit_02 > .inner .text {
  width: 480px;
  margin: 0 auto;
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.01em;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img {
  position: absolute;
  width: 230px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img figcaption {
  width: 105px;
  position: absolute;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img figcaption > img {
  display: block;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img > img {
  display: block;
  border: 3px solid #0b308e;
  border-radius: 230px;
  vertical-align: bottom;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_01 {
  left: 313px;
  top: 28px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_01 figcaption {
  top: 101px;
  left: -50px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_02 {
  left: 636px;
  top: 259px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_02 figcaption {
  top: 101px;
  right: -50px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_03 {
  left: -15px;
  top: 259px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_03 figcaption {
  top: 101px;
  left: -50px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_04 {
  left: 114px;
  top: 638px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_04 figcaption {
  top: 101px;
  left: -50px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_05 {
  left: 512px;
  top: 638px;
}
#pageRecruit .s01 > .inner .unit_02 .unit_02_img.unit_02_img_05 figcaption {
  top: 101px;
  right: -50px;
}
#pageRecruit .s01 > .inner .unit_03 {
  border: 3px solid #0b308e;
  padding: 70px 75px;
  margin-top: 11px;
}
#pageRecruit .s01 > .inner .unit_03 h5 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #0b308e;
  line-height: calc(27 / 25);
}
#pageRecruit .s01 > .inner .unit_03 small {
  display: block;
  text-align: center;
  margin-top: 5px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list {
  margin-top: 26px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list.s01_list_01 dl {
  background-color: #fff;
  display: flex;
  padding: 12px 24px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list.s01_list_01 dl dt {
  width: 138px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list.s01_list_01 dl dt,
#pageRecruit .s01 > .inner .unit_03 .s01_list.s01_list_01 dl dd {
  font-size: 18px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list.s01_list_01 dl + dl {
  margin-top: 10px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list.s01_list_02 ul li {
  background-color: #fff;
  padding: 12px 24px;
  text-align: center;
  font-size: 18px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list + h5 {
  margin-top: 48px;
}
#pageRecruit .s01 > .inner .unit_03 .s01_list + small + h5 {
  margin-top: 42px;
}
#pageRecruit .s01 > .inner .unit_03 .bottom {
  margin-top: 140px;
  position: relative;
}
#pageRecruit .s01 > .inner .unit_03 .bottom .bottom_catch {
  font-size: 25px;
  line-height: calc(35 / 25);
  font-weight: bold;
  color: #0b308e;
}
#pageRecruit .s01 > .inner .unit_03 .bottom address {
  margin-top: 14px;
}
#pageRecruit .s01 > .inner .unit_03 .bottom address a {
  text-decoration: none;
  color: #7d7d7d;
}
#pageRecruit .s01 > .inner .unit_03 .bottom .s01_img_02 {
  position: absolute;
  width: 181px;
  bottom: 0;
  right: 0;
}
#pageContact .s01 > .inner {
  width: 640px;
  margin: 0 auto;
}
#pageContact .s01 > .inner .s01_ttl_01 {
  width: 191px;
  margin-top: 150px;
}
#pageContact .s01 > .inner .s01_ttl_01 img {
  display: block;
}
#pageContact .s01 > .inner .s01_catch_01 {
  font-weight: bold;
  font-size: 25px;
  margin-top: 95px;
  line-height: calc(35 / 25);
}
#pageContact .s01 > .inner .s01_catch_01 + p {
  margin-top: 12px;
}
#pageContact .s01 > .inner .s01_sttl_01 {
  font-size: 32px;
  font-weight: bold;
  line-height: calc(32 / 27.5);
  margin-top: 66px;
}
#pageContact .s01 > .inner .tel_box {
  margin-top: 32px;
  display: flex;
  border: 1px solid #7d7d7d;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 38px 0;
}
#pageContact .s01 > .inner .tel_box .tel {
  font-size: 35px;
  font-weight: bold;
  margin-right: 42px;
  font-family: "Ropa Sans", sans-serif;
  font-weight: bold;
}
#pageContact .s01 > .inner .tel_box .tel a {
  text-decoration: none;
  color: #7d7d7d;
}
#pageContact .s01 > .inner .s01_text_02 {
  margin-top: 34px;
}
#pageContact .s01 > .inner .mail {
  margin-top: 24px;
}
#pageContact .s01 > .inner .mail .checklist {
  display: flex;
}
#pageContact .s01 > .inner .mail .checklist li {
  margin-right: 34px;
}
#pageContact .s01 > .inner .mail .checklist li label {
  position: relative;
}
#pageContact .s01 > .inner .mail .checklist li label:before {
  content: "";
  display: inline-block;
  margin-right: 0.5rem;
  width: 15px;
  height: 15px;
  border: 1px solid #7d7d7d;
  vertical-align: middle;
  margin-bottom: 2px;
}
#pageContact .s01 > .inner .mail .checklist li label:after {
  width: 11px;
  height: 11px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 2px;
}
#pageContact .s01 > .inner .mail .checklist li input[type="radio"] {
  margin-right: 0.5rem;
  border-radius: 0;
  border: none;
  background: none;
  display: none;
}
#pageContact
  .s01
  > .inner
  .mail
  .checklist
  li
  input[type="radio"]
  + label::after {
  background-color: #eee;
}
#pageContact
  .s01
  > .inner
  .mail
  .checklist
  li
  input[type="radio"]:checked
  + label::after {
  background-color: #0b308e;
}
#pageContact .s01 > .inner .mail .box {
  padding-top: 24px;
}
#pageContact .s01 > .inner .mail .box dl {
  margin-top: 23px;
}
#pageContact .s01 > .inner .mail .box dl dt {
  margin-bottom: 0.5rem;
}
#pageContact .s01 > .inner .mail .box dl .input_text {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0.5rem;
  border: 1px solid #7d7d7d;
}
#pageContact .s01 > .inner .mail .box dl .input_text::placeholder {
  font-size: 12px;
}
#pageContact .s01 > .inner .mail .box dl .input_textarea {
  width: 100%;
  height: 250px;
  box-sizing: border-box;
  font-size: 16px;
  padding: 0.5rem;
  border: 1px solid #7d7d7d;
}
#pageContact .s01 > .inner .mail .box dl .input_textarea::placeholder {
  font-size: 12px;
}
#pageContact .s01 > .inner .layout {
  display: flex;
  flex-wrap: wrap;
}
#pageContact .s01 > .inner .layout.c2_column_pc .column {
  width: 48%;
  margin-right: 2%;
}
#pageContact .s01 > .inner .layout.c2_column_pc .column:nth-child(2n) {
  margin: 0;
}
#pageContact .s01 > .inner .infosystemBox ul {
  display: flex;
  flex-wrap: wrap;
}
#pageContact .s01 > .inner .infosystemBox ul li {
  font-size: 13px;
  width: 50%;
}
#pageContact .s01 > .inner .infosystemBox ul li input[type="checkbox"] {
  margin-right: 0.5rem;
}
#pageContact .s01 > .inner .privacy_box {
  border: 1px solid #7d7d7d;
  padding: 30px 40px;
  margin-top: 48px;
}
#pageContact .s01 > .inner .privacy_box b {
  font-weight: bold;
}
@media screen and (min-width: 920px) {
  #pageContact .s01 > .inner .privacy_box b {
    font-size: 20px;
  }
}
@media screen and (max-width: 919px) {
  #pageContact .s01 > .inner .privacy_box b {
    font-size: 16px;
  }
}
#pageContact .s01 > .inner .privacy_box .privacy_box_unit {
  display: flex;
}
@media screen and (min-width: 920px) {
  #pageContact .s01 > .inner .privacy_box .privacy_box_unit {
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media screen and (max-width: 919px) {
  #pageContact .s01 > .inner .privacy_box .privacy_box_unit {
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
@media screen and (min-width: 920px) {
  #pageContact .s01 > .inner .privacy_box .privacy_box_unit .privacytxt {
    margin-top: 24px;
    width: 64%;
  }
}
@media screen and (max-width: 919px) {
  #pageContact .s01 > .inner .privacy_box .privacy_box_unit .privacytxt {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 919px) {
  #pageContact .s01 > .inner .privacy_box .privacy_box_unit .privacytxt br {
    display: none;
  }
}
@media screen and (min-width: 920px) {
  #pageContact .s01 > .inner .privacy_box .privacy_box_unit .agreement {
    width: 30%;
  }
}
@media screen and (max-width: 919px) {
  #pageContact .s01 > .inner .privacy_box .privacy_box_unit .agreement {
    margin-left: auto;
    white-space: nowrap;
  }
}
#pageContact .s01 > .inner .form_submit {
  display: flex;
}
@media screen and (min-width: 920px) {
  #pageContact .s01 > .inner .form_submit {
    justify-content: flex-end;
    margin-top: 75px;
  }
}
@media screen and (max-width: 919px) {
  #pageContact .s01 > .inner .form_submit {
    margin-top: 50px;
    justify-content: center;
  }
}
#pageContact .s01 > .inner .form_submit input[type="button"] {
  width: 120px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  background-color: #7d7d7d;
}
.error_blank {
  color: #f00;
}
.not-support {
  position: fixed;
  z-index: 5;
  width: 500px;
  height: 250px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/*# sourceMappingURL=style.css.map */
#pageHome .section_group_02 .s04 > .inner .s04_upper {
  align-items: center;
}

#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_sttl_01 {
  margin-top: 32px;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .beta {
  width: 200px;
}
#pageHome .section_group_02 .s04 > .inner .s04_upper .alpha .s04_text_01 {
  margin-top: 10px;
}
#pageHome
  .section_group_02
  .s04
  > .inner
  .s04_box
  .s04_inner_boxs
  .inner_box
  .inner_box_body
  .inner_box_text {
  letter-spacing: -0.05em;
}
