@charset "UTF-8";
/*--------------------------
main visual
---------------------------*/
#main_visual {
  background: url("/asset/image/about_us/main_bg01.png");
  background-size: cover;
  width: 100%;
  height: 240px;
  padding: 0;
}
@media only screen and (max-width: 560px) {
  #main_visual {
    height: auto;
  }
}
#main_visual h1 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 4px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 40px 140px;
  margin: 20px 0 0 20px;
  border-bottom: solid 5px #ee3844;
}
@media only screen and (max-width: 560px) {
  #main_visual h1 {
    font-size: 20px;
    letter-spacing: 0;
    padding: 14px;
    margin: 6px;
    border-bottom: solid 2px #ee3844;
  }
}

/*--------------------------
section
---------------------------*/
section {
  padding: 40px 0;
}
@media only screen and (max-width: 560px) {
  section {
    padding: 20px 0;
  }
}
section:last-child {
  padding: 40px 0 140px;
  border-bottom: solid 1px #ccc;
}
@media only screen and (max-width: 560px) {
  section:last-child {
    padding: 20px 0;
  }
}
section a {
  color: rgb(80, 125, 209);
  text-decoration: underline;
}
section h2 {
  color: #000;
  font-weight: 600;
  font-size: 22px;
  line-height: 135%;
  margin-bottom: 10px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 560px) {
  section h2 {
    font-size: 18px;
    margin: 0 0 6px;
  }
}
@media only screen and (max-width: 560px) {
  section h2 {
    margin-bottom: 40px;
  }
}
section h3 {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  margin: 0 0 22px 0;
  padding: 0 0 0 18px;
  position: relative;
}
section h3::before {
  content: "";
  width: 4px;
  height: 28px;
  background: #ee3844;
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
}
@media only screen and (max-width: 560px) {
  section h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
  section h3::before {
    height: 100%;
    top: 0;
  }
}
section .lead_box02 {
  line-height: 175%;
}
section .lead_box02:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (max-width: 560px) {
  section .lead_box02:not(:last-child) {
    margin-bottom: 16px;
  }
}
section .lead_box02 h4 {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  margin-bottom: 10px;
  margin: 4px;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
section .lead_box02 .list01 li {
  padding: 4px 0;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 .list01 li {
    padding: 2px 0;
  }
}
section .lead_box02 .list02 li {
  position: relative;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 .list02 li {
    padding: 0 0 0 14px;
  }
}
section .lead_box02 .list02 li::before {
  position: absolute;
  content: "・";
  left: 0;
}
section .lead_box02 .list03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 .list03 {
    display: block;
    padding: 10px 0 6px;
  }
}
section .lead_box02 .list03 li {
  padding: 0 14px;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 .list03 li {
    padding: 0;
    margin-bottom: 10px;
  }
}
section .lead_box02 .list03 li a {
  color: #ee3844;
  text-align: center;
  text-decoration: none;
  border: solid 1px #ee3844;
  padding: 14px 0;
  width: 286px;
  display: block;
  position: relative;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 .list03 li a {
    margin: 0 auto;
  }
}
section .lead_box02 .list03 li a::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e830";
  position: absolute;
  right: 12px;
}
section .lead_box02 .list03 li a:hover {
  color: #fff;
  background: #ee3844;
}
section .lead_box02 .list04 li {
  padding: 4px 0;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 .list04 li {
    padding: 2px 0 2px 18px;
    text-indent: -18px;
  }
}
section .lead_box02 .lead_box03 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 560px) {
  section .lead_box02 .lead_box03 {
    margin-bottom: 14px;
  }
}

/*--------------------------
Animation
---------------------------*/
.fade-in {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.fade-in.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-up01 {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-up01 {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
}
.fade-in-up01.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-up02 {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-up02 {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
}
.fade-in-up02.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-bottom01 {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-bottom01 {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
}
.fade-in-bottom01.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-bottom02 {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-bottom02 {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
}
.fade-in-bottom02.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-right01 {
  opacity: 0;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
  -webkit-transition: 2s;
  transition: 2s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-right01 {
    -webkit-transform: translate(40px, 0);
            transform: translate(40px, 0);
  }
}
.fade-in-right01.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-right02 {
  opacity: 0;
  -webkit-transform: translate(200px, 0);
          transform: translate(200px, 0);
  -webkit-transition: 2s;
  transition: 2s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-right02 {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
}
.fade-in-right02.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-left01 {
  opacity: 0;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  -webkit-transition: 2s;
  transition: 2s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-left01 {
    -webkit-transform: translate(-20px, 0);
            transform: translate(-20px, 0);
  }
}
.fade-in-left01.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fade-in-left02 {
  opacity: 0;
  -webkit-transform: translate(-200px, 0);
          transform: translate(-200px, 0);
  -webkit-transition: 2s;
  transition: 2s;
  will-change: opacity, transform;
}
@media only screen and (max-width: 560px) {
  .fade-in-left02 {
    -webkit-transform: translate(-40px, 0);
            transform: translate(-40px, 0);
  }
}
.fade-in-left02.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.slide-animation_wrapper {
  overflow: hidden;
}

.slide-animation {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: transparent !important;
  padding: 0 !important;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slide-animation::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ee3844;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  top: 0;
  left: 0;
  z-index: 150;
}

.slide-animation_inner {
  opacity: 0;
  padding: 0;
}

.slide-animation.go:before {
  -webkit-animation-name: obiStart, obiEnd;
          animation-name: obiStart, obiEnd;
  -webkit-animation-duration: 0.5s, 0.5s;
          animation-duration: 0.5s, 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
          animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-animation-delay: 0s, 0.5s;
          animation-delay: 0s, 0.5s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.slide-animation.go .slide-animation_inner {
  -webkit-animation-name: obiInner;
          animation-name: obiInner;
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slide-animation_1.go:before {
  -webkit-animation-delay: 0.1s, 0.7s;
          animation-delay: 0.1s, 0.7s;
}

.slide-animation_1.go .slide-animation_inner {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.slide-animation_2.go:before {
  -webkit-animation-delay: 0.2s, 0.8s;
          animation-delay: 0.2s, 0.8s;
}

.slide-animation_2.go .slide-animation_inner {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.slide-animation_3.go:before {
  -webkit-animation-delay: 0.3s, 0.9s;
          animation-delay: 0.3s, 0.9s;
}

.slide-animation_3.go .slide-animation_inner {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.slide-animation_4.go:before {
  -webkit-animation-delay: 0.4s, 1s;
          animation-delay: 0.4s, 1s;
}

.slide-animation_4.go .slide-animation_inner {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.slide-animation_5.go:before {
  -webkit-animation-delay: 0.5s, 1.1s;
          animation-delay: 0.5s, 1.1s;
}

.slide-animation_5.go .slide-animation_inner {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.slide-animation_6.go:before {
  -webkit-animation-delay: 0.6s, 1.2s;
          animation-delay: 0.6s, 1.2s;
}

.slide-animation_6.go .slide-animation_inner {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.slide-animation_7.go:before {
  -webkit-animation-delay: 0.7s, 1.3s;
          animation-delay: 0.7s, 1.3s;
}

.slide-animation_7.go .slide-animation_inner {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.slide-animation_8.go:before {
  -webkit-animation-delay: 0.8s, 1.4s;
          animation-delay: 0.8s, 1.4s;
}

.slide-animation_8.go .slide-animation_inner {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.slide-animation_9.go:before {
  -webkit-animation-delay: 0.9s, 1.5s;
          animation-delay: 0.9s, 1.5s;
}

.slide-animation_9.go .slide-animation_inner {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes obiInner {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes obiInner {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes obiStart {
  0% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes obiStart {
  0% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes obiEnd {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}
@keyframes obiEnd {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}