@charset "UTF-8";
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.shine a {
  position: relative;
  overflow: hidden;
}

.shine a:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -75%;
  display: block;
  width: 50%;
  height: 100%;
  content: '';
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.shine a:hover:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

/*-------------------
Default Settings
-------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  position: relative;
  min-height: 100%;
}

html.wf-loading {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

body {
  font-family: 'Lato', 'Open Sans', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
  font-size: 1.6em;
  line-height: 1.6;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding-right: 10px;
  padding-left: 10px;
}

.entry {
  padding: 10px;
  /* Old browsers */
  background: #457FCA;
  /* FF3.6-15 */
  background: -moz-linear-gradient(0deg, #457FCA 0, #55C8DA 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(0deg, #457FCA 0, #55C8DA 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #457FCA), to(#55C8DA));
  background: -webkit-linear-gradient(left, #457FCA 0, #55C8DA 100%);
  background: -o-linear-gradient(left, #457FCA 0, #55C8DA 100%);
  background: linear-gradient(90deg, #457FCA 0, #55C8DA 100%);
  /* IE6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#457FCA', endColorstr='#55C8DA',GradientType=1 );
}

.entry__btn {
  max-width: 800px;
  margin: 0 auto;
}

.check__recruit{
  margin: 0 auto 15px;
  text-align: center;
  color: #fff;
}

.check__recruit a{
  color: #fff;
  font-size: 20px;
}
.check__recruit a:hover{
  text-decoration: underline;
}

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

@media screen and (min-width: 901px) {
  .sp {
    display: none;
  }
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: #FFF;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}

.logoArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logoArea .logo {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 110px;
}

@media screen and (max-width: 900px) {
  .logoArea .logo {
    width: 100%;
    max-width: 110px;
  }
}

.logoArea .logo a {
  font-size: 0;
  line-height: 1;
  display: block;
}

.logoArea .logo + .logo {
  margin-left: 32px;
}

@media screen and (max-width: 900px) {
  .logoArea .logo + .logo {
    margin-left: 5vw;
  }
}

.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .gnav__list {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
  }
}

.gnav__item {
  padding: 1px 32px;
  background: #FFF;
}

@media screen and (max-width: 900px) {
  .gnav__item {
    width: 100%;
    padding: 0;
  }
}

.gnav__item a {
  font-size: 0;
  line-height: 1;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 900px) {
  .gnav__item a {
    width: 100%;
    padding: 2vw 4.26667vw;
    border-bottom: 1px solid #A0A0A0;
  }
}

.gnav__item a:hover {
  opacity: .5;
}

.gnav__item + .gnav__item {
  position: relative;
}

.gnav__item + .gnav__item:before {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 100%;
  content: '';
  background: #A0A0A0;
}

@media screen and (max-width: 900px) {
  .gnav__item + .gnav__item:before {
    display: none;
  }
}

.gnav__item--top {
  width: 144px;
}

@media screen and (max-width: 900px) {
  .gnav__item--top {
    width: 100%;
  }
}

.gnav__item--story {
  width: 161px;
}

@media screen and (max-width: 900px) {
  .gnav__item--story {
    width: 100%;
  }
}

.gnav__item--reason {
  width: 91px;
}

@media screen and (max-width: 900px) {
  .gnav__item--reason {
    width: 100%;
  }
}

.gnav__item--service {
  width: 118px;
}

@media screen and (max-width: 900px) {
  .gnav__item--service {
    width: 100%;
  }
}

.gnav__item--step {
  width: 119px;
}

@media screen and (max-width: 900px) {
  .gnav__item--step {
    width: 100%;
  }
}

.gnav__btn {
  display: none;
  margin-left: 5vw;
}

@media screen and (max-width: 900px) {
  .gnav__btn {
    display: block;
  }
}

.gnav__btn a {
  position: relative;
  display: block;
  width: 60px;
  height: 44px;
}

.gnav__btn a.onClick .gnav__btn__mark--top {
  -webkit-animation: gnav--onClick--top .3s linear 0s;
  animation: gnav--onClick--top .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.gnav__btn a.onClick .gnav__btn__mark--middle {
  -webkit-animation: gnav--onClick--middle .3s linear 0s;
  animation: gnav--onClick--middle .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.gnav__btn a.onClick .gnav__btn__mark--bottom {
  -webkit-animation: gnav--onClick--bottom .3s linear 0s;
  animation: gnav--onClick--bottom .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.gnav__btn a.removeClick .gnav__btn__mark--top {
  -webkit-animation: gnav--removeClick--top .3s linear 0s;
  animation: gnav--removeClick--top .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.gnav__btn a.removeClick .gnav__btn__mark--middle {
  -webkit-animation: gnav--removeClick--middle .3s linear 0s;
  animation: gnav--removeClick--middle .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.gnav__btn a.removeClick .gnav__btn__mark--bottom {
  -webkit-animation: gnav--removeClick--bottom .3s linear 0s;
  animation: gnav--removeClick--bottom .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.gnav__btn__mark {
  position: absolute;
  left: 0;
  display: block;
  width: 60px;
  height: 4px;
  background: #1C2B4F;
}

.gnav__btn__mark--top {
  top: 0;
}

.gnav__btn__mark--middle {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.gnav__btn__mark--bottom {
  top: calc( 100% - 4px);
}

@-webkit-keyframes gnav--onClick--top {
  0% {
    top: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(45deg);
    transform: translate(0, -50%) rotateZ(45deg);
  }
}

@keyframes gnav--onClick--top {
  0% {
    top: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(45deg);
    transform: translate(0, -50%) rotateZ(45deg);
  }
}

@-webkit-keyframes gnav--onClick--middle {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%) scaleX(0);
    transform: translate(0, -50%) scaleX(0);
  }
}

@keyframes gnav--onClick--middle {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%) scaleX(0);
    transform: translate(0, -50%) scaleX(0);
  }
}

@-webkit-keyframes gnav--onClick--bottom {
  0% {
    top: calc( 100% - 4px);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(-45deg);
    transform: translate(0, -50%) rotateZ(-45deg);
  }
}

@keyframes gnav--onClick--bottom {
  0% {
    top: calc( 100% - 4px);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(-45deg);
    transform: translate(0, -50%) rotateZ(-45deg);
  }
}

@-webkit-keyframes gnav--removeClick--top {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(45deg);
    transform: translate(0, -50%) rotateZ(45deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes gnav--removeClick--top {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(45deg);
    transform: translate(0, -50%) rotateZ(45deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes gnav--removeClick--middle {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%) scaleX(0);
    transform: translate(0, -50%) scaleX(0);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@keyframes gnav--removeClick--middle {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%) scaleX(0);
    transform: translate(0, -50%) scaleX(0);
  }
  100% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@-webkit-keyframes gnav--removeClick--bottom {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(-45deg);
    transform: translate(0, -50%) rotateZ(-45deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: calc( 100% - 4px);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes gnav--removeClick--bottom {
  0% {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotateZ(-45deg);
    transform: translate(0, -50%) rotateZ(-45deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  100% {
    top: calc( 100% - 4px);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.mv {
  background: url(../../assets/landing/mv__bg.jpg) center no-repeat;
  background-size: cover;
}

.mv__img {
  max-width: 1120px;
  margin: 0 auto;
  padding: 29px 14px 0;
  text-align: center;
}

/* ========================
about_ITCO
 ========================*/
.about_ITCO {
  padding-top: 100px;
}

@media screen and (max-width: 900px) {
  .about_ITCO {
    padding-top: 9.6vw;
  }
}

.about_ITCO__ttl {
  margin: 0 auto;
  text-align: center;
  font-size: 54px;
}

@media screen and (max-width: 900px) {
  .about_ITCO__ttl {
    max-width: 90vw;
    font-size: 26px;
  }
}

.about_ITCO__list {
  margin-top: 57px;
  padding: 0 10px;
}

@media screen and (max-width: 900px) {
  .about_ITCO__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90.66667%;
    max-width: 680px;
    margin: 10.66667vw auto 0;
    padding: 0;
  }
}

.about_ITCO__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  background: #FFF;
  -webkit-box-shadow: 0 0 7px rgba(152, 151, 151, 0.2);
  box-shadow: 0 0 7px rgba(152, 151, 151, 0.2);
}

@media screen and (max-width: 900px) {
  .about_ITCO__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 95.58824%;
    max-width: 650px;
  }
}

.about_ITCO__item + .about_ITCO__item {
  margin-top: 121px;
}

@media screen and (max-width: 900px) {
  .about_ITCO__item + .about_ITCO__item {
    margin-top: 20.13333vw;
  }
}

.about_ITCO__item__img {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 50%;
  width: 50%;
  min-height: 0%;
}

@media screen and (max-width: 900px) {
  .about_ITCO__item__img {
    width: 100%;
  }
}

.about_ITCO__item__img span {
  position: absolute;
  top: 0;
  left: 4.36364%;
  width: 80px;
  -webkit-transform: translate(0, -32.43243%);
  -ms-transform: translate(0, -32.43243%);
  transform: translate(0, -32.43243%);
}

@media screen and (max-width: 900px) {
  .about_ITCO__item__img span {
    width: 13.2vw;
  }
}

.about_ITCO__item__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 50%;
  min-height: 0%;
}
.about_ITCO__item__txt h4{
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.about_ITCO__item__txt p{
  width: 90%;
}


@media screen and (max-width: 900px) {
  .about_ITCO__item__txt {
    width: 100%;
  }
  .about_ITCO__item__txt h4{
    text-align: center;
  }
  .about_ITCO__item__txt p{
    width: 100%;
  }
}

.about_ITCO__item__btn {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  -webkit-transform: translate(16.66667%, 50%);
  -ms-transform: translate(16.66667%, 50%);
  transform: translate(16.66667%, 50%);
  background: #FFF;
}

@media screen and (max-width: 1200px) {
  .about_ITCO__item__btn {
    -webkit-transform: translate(-16.66667%, 50%);
    -ms-transform: translate(-16.66667%, 50%);
    transform: translate(-16.66667%, 50%);
  }
}

@media screen and (max-width: 900px) {
  .about_ITCO__item__btn {
    right: -4.26471%;
    bottom: -9.33333vw;
    width: 54.93333vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.about_ITCO__item__btn a {
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.about_ITCO__item__btn a:hover {
  opacity: .7;
}

/*.about_ITCO__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
*/
@media screen and (max-width: 900px) {
  .about_ITCO__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about_ITCO__item:nth-of-type(even) .about_ITCO__item__img span {
  right: 4.36364%;
  left: auto;
}

@media screen and (max-width: 900px) {
  .about_ITCO__item:nth-of-type(even) .about_ITCO__item__img span {
    right: auto;
    left: 4.36364%;
  }
}

.about_ITCO__item:nth-of-type(even) .about_ITCO__item__btn {
  right: auto;
  left: 0;
  -webkit-transform: translate(-16.66667%, 50%);
  -ms-transform: translate(-16.66667%, 50%);
  transform: translate(-16.66667%, 50%);
}

@media screen and (max-width: 1200px) {
  .about_ITCO__item:nth-of-type(even) .about_ITCO__item__btn {
    -webkit-transform: translate(16.66667%, 50%);
    -ms-transform: translate(16.66667%, 50%);
    transform: translate(16.66667%, 50%);
  }
}

@media screen and (max-width: 900px) {
  .about_ITCO__item:nth-of-type(even) .about_ITCO__item__btn {
    right: -4.26471%;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.about_ITCO__more {
  width: 100%;
  max-width: 868px;
  margin: 109px auto 0;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .about_ITCO__more {
    max-width: 434px;
    margin: 12.53333vw auto 0;
    padding: 0 2.66667vw;
  }
}

.about_ITCO__more a {
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.about_ITCO__more a:hover {
  opacity: .7;
}


/* ========================
story
 ========================*/
.story {
  padding-top: 100px;
}

@media screen and (max-width: 900px) {
  .story {
    padding-top: 9.6vw;
  }
}

.story__ttl {
  max-width: 155px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .story__ttl {
    max-width: 26vw;
  }
}

.story__list {
  margin-top: 57px;
  padding: 0 10px;
}

@media screen and (max-width: 900px) {
  .story__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90.66667%;
    max-width: 680px;
    margin: 10.66667vw auto 0;
    padding: 0;
  }
}

.story__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  background: #FFF;
  -webkit-box-shadow: 0 0 7px rgba(152, 151, 151, 0.2);
  box-shadow: 0 0 7px rgba(152, 151, 151, 0.2);
}

@media screen and (max-width: 900px) {
  .story__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 95.58824%;
    max-width: 650px;
  }
}

.story__item + .story__item {
  margin-top: 121px;
}

@media screen and (max-width: 900px) {
  .story__item + .story__item {
    margin-top: 20.13333vw;
  }
}

.story__item__img {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 50%;
  min-height: 0%;
}

@media screen and (max-width: 900px) {
  .story__item__img {
    width: 100%;
  }
}

.story__item__img span {
  position: absolute;
  top: 0;
  left: 4.36364%;
  width: 80px;
  -webkit-transform: translate(0, -32.43243%);
  -ms-transform: translate(0, -32.43243%);
  transform: translate(0, -32.43243%);
}

@media screen and (max-width: 900px) {
  .story__item__img span {
    width: 13.2vw;
  }
}

.story__item__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 50%;
  min-height: 0%;
}

@media screen and (max-width: 900px) {
  .story__item__txt {
    width: 100%;
  }
}

.story__item__btn {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  -webkit-transform: translate(16.66667%, 50%);
  -ms-transform: translate(16.66667%, 50%);
  transform: translate(16.66667%, 50%);
  background: #FFF;
}

@media screen and (max-width: 1200px) {
  .story__item__btn {
    -webkit-transform: translate(-16.66667%, 50%);
    -ms-transform: translate(-16.66667%, 50%);
    transform: translate(-16.66667%, 50%);
  }
}

@media screen and (max-width: 900px) {
  .story__item__btn {
    right: -4.26471%;
    bottom: -9.33333vw;
    width: 54.93333vw;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.story__item__btn a {
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.story__item__btn a:hover {
  opacity: .7;
}

.story__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 900px) {
  .story__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.story__item:nth-of-type(even) .story__item__img span {
  right: 4.36364%;
  left: auto;
}

@media screen and (max-width: 900px) {
  .story__item:nth-of-type(even) .story__item__img span {
    right: auto;
    left: 4.36364%;
  }
}

.story__item:nth-of-type(even) .story__item__btn {
  right: auto;
  left: 0;
  -webkit-transform: translate(-16.66667%, 50%);
  -ms-transform: translate(-16.66667%, 50%);
  transform: translate(-16.66667%, 50%);
}

@media screen and (max-width: 1200px) {
  .story__item:nth-of-type(even) .story__item__btn {
    -webkit-transform: translate(16.66667%, 50%);
    -ms-transform: translate(16.66667%, 50%);
    transform: translate(16.66667%, 50%);
  }
}

@media screen and (max-width: 900px) {
  .story__item:nth-of-type(even) .story__item__btn {
    right: -4.26471%;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.story__more {
  width: 100%;
  max-width: 868px;
  margin: 109px auto 0;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .story__more {
    max-width: 434px;
    margin: 12.53333vw auto 0;
    padding: 0 2.66667vw;
  }
}

.story__more a {
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.story__more a:hover {
  opacity: .7;
}

/* ========================
reason
 ========================*/
.reason {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px 100px;
}

@media screen and (max-width: 900px) {
  .reason {
    padding: 6.26667vw 10px 8.53333vw;
  }
}

.reason__ttl {
  max-width: 188px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .reason__ttl {
    max-width: 31.86667vw;
  }
}

.reason__read {
  max-width: 878px;
  margin: 40px auto 0;
}

@media screen and (max-width: 900px) {
  .reason__read {
    max-width: 76.8vw;
    margin: 5.33333vw auto 0;
  }
}

.reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 111px;
}

@media screen and (max-width: 900px) {
  .reason__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 76vw;
    margin: 14.4vw auto 0;
  }
}

.reason__item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  max-width: 570px;
}

.reason__item + .reason__item {
  margin-left: 40px;
}

@media screen and (max-width: 900px) {
  .reason__item + .reason__item {
    margin-top: 13.2vw;
    margin-left: 0;
  }
}

.reason__item__num {
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 900px) {
  .reason__item__num {
    max-width: 16vw;
  }
}

.reason__item__img {
  -webkit-box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
}

.reason__item__txt {
  margin-top: 24px;
}

@media screen and (max-width: 900px) {
  .reason__item__txt {
    margin-top: 4.26667vw;
  }
}

.reason__point__about {
  max-width: 752px;
  margin: 87px auto 0;
}

@media screen and (max-width: 900px) {
  .reason__point__about {
    max-width: 88.26667vw;
    margin: 8.53333vw auto 0;
  }
}

.reason__point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1116px;
  margin: 73px auto 0;
}

@media screen and (max-width: 900px) {
  .reason__point__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 60vw;
    margin: 7.6vw auto 0;
  }
}

.reason__point__item {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  max-width: 332px;
  margin-top: 0;
}

.reason__point__item + .reason__point__item {
  margin-left: 60px;
}

@media screen and (max-width: 900px) {
  .reason__point__item + .reason__point__item {
    margin-top: 9.2vw;
    margin-left: 0;
  }
}

.reason__point__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
}

@media screen and (max-width: 900px) {
  .reason__point__icon {
    width: 18.4vw;
  }
}

.reason__point__ttl {
  margin-top: 16px;
}

@media screen and (max-width: 900px) {
  .reason__point__ttl {
    margin-top: 4.8vw;
  }
}

.reason__point__txt {
  margin-top: 16px;
}

@media screen and (max-width: 900px) {
  .reason__point__txt {
    margin-top: 3.33333vw;
  }
}

.service {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 10px 110px;
}

@media screen and (max-width: 900px) {
  .service {
    padding: 10.66667vw 0;
  }
}

.service__ttl {
  max-width: 194px;
  margin: 0 auto 0;
}

@media screen and (max-width: 900px) {
  .service__ttl {
    max-width: 32.4vw;
  }
}

.service__read {
  max-width: 977px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 44px;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .service__read {
    max-width: 90.26667vw;
    margin: 5.33333vw auto 0;
    font-size: 24px;
  }
}

.service__list {
  margin: 58px auto 0;
}

@media screen and (max-width: 900px) {
  .service__list {
    width: 100vw;
    margin: 7.46667vw auto 0;
  }
}

.service__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 900px) {
  .service__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.service__item + .service__item {
  margin-top: 24px;
}

@media screen and (max-width: 900px) {
  .service__item + .service__item {
    margin-top: 7.33333vw;
  }
}

.service__item__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
}

@media screen and (max-width: 900px) {
  .service__item__num {
    width: 13.33333vw;
  }
}

.service__item__img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 610px;
  flex: 1 1 610px;
  width: 100%;
  max-width: 610px;
}

@media screen and (max-width: 900px) {
  .service__item__img {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-height: 0%;
  }
}

.service__item__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 570px;
  flex: 1 1 570px;
  width: 100%;
  max-width: 570px;
  margin-left: 30px;
}
.service__item__txt h4{
  font-size: 20px;
  margin-bottom: 30px;
}
.service__item__txt h4 strong{
  font-size: 30px;
  color: #4881C8;
}
.service__item__txt p{
  width: 90%;
}


@media screen and (max-width: 900px) {
  .service__item__txt {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0%;
    padding: 7.46667vw 0;
  }
}

/* advice */

.advice_title{
  max-width: 180px;
  margin: 80px auto 0;
}

.advice_text img{
  max-width: 800px;
  width: 80%;
  display: block;
  margin: 60px auto;
}

.advice_item img{
  max-width: 1000px;
  width: 80%;
  display: block;
  margin: 40px auto;
}
.advice_item p{
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  margin: -10px 80px 0 0;

}

.step {
  padding: 74px 10px 65px;
  background: url(../../assets/landing/step__bg.jpg) no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 900px) {
  .step {
    padding: 10.66667vw 1.33333vw;
  }
}

.step__ttl {
  max-width: 117px;
  margin: 0 auto 0;
}

@media screen and (max-width: 900px) {
  .step__ttl {
    max-width: 19.6vw;
  }
}

.step__read {
  max-width: 503px;
  margin: 48px auto 0;
}

@media screen and (max-width: 900px) {
  .step__read {
    max-width: 67.06667vw;
    margin: 5.33333vw auto 0;
  }
}

.step__img {
  max-width: 1180px;
  margin: 48px auto 0;
}

@media screen and (max-width: 900px) {
  .step__img {
    max-width: 96.53333vw;
    margin: 6vw auto 0;
  }
}

.step__txt {
  max-width: 754px;
  margin: 40px auto 0;
}

@media screen and (max-width: 900px) {
  .step__txt {
    max-width: 92vw;
    margin: 6.4vw auto 0;
  }
}

.company {
  display: flex;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 68px 10px 92px;
}

@media screen and (max-width: 900px) {
  .company {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 86.66667vw;
    padding: 10.66667vw 0 10.66667vw;
  }
}

.company__cont {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  max-width: 450px;
}

@media screen and (max-width: 900px) {
  .company__cont {
    max-width: none;
  }
}

.company__cont + .company__cont {
  margin-left: 15.09434%;
}

@media screen and (max-width: 900px) {
  .company__cont + .company__cont {
    margin-top: 10.66667vw;
    margin-left: 0;
  }
}

.company__ttl {
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  color: #457FCA;
}

@media screen and (max-width: 900px) {
  .company__ttl {
    font-size: 4.26667vw;
  }
}

.company__img {
  margin-top: 24px;
}

@media screen and (max-width: 900px) {
  .company__img {
    margin-top: 5.33333vw;
  }
}

.company__name {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 24px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .company__name {
    font-size: 4.26667vw;
    line-height: 1.5;
  }
}

.company__about {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .company__about {
    font-size: 3.2vw;
    margin-top: 4.26667vw;
  }
}

.company__about p + p {
  margin-top: 14px;
}

@media screen and (max-width: 900px) {
  .company__about p + p {
    margin-top: 3.2vw;
  }
}

.company__about a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  color: #000;
}

.company__about a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  content: '';
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background: #000;
}

.company__about a:hover:before {
  width: 100%;
}

.footer .toTop {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 70px;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 900px) {
  .footer .toTop {
    bottom: calc( 7.2vw + 18px);
    height: 16vw;
    display: none;
  }
}

.footer .toTop.fadeIn {
  -webkit-animation: fadeIn .3s linear 0s;
  animation: fadeIn .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.footer .toTop.fadeOut {
  -webkit-animation: fadeOut .3s linear 0s;
  animation: fadeOut .3s linear 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.footer .toTop__btn {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
}

.footer .toTop__btn a {
  position: absolute;
  top: 0;
  right: 10px;
  display: block;
  overflow: hidden;
  width: 70px;
  height: 70px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 50%;
  background: #55C8DA;
}

@media screen and (max-width: 900px) {
  .footer .toTop__btn a {
    width: 16vw;
    height: 16vw;
  }
}

.footer .toTop__btn a:before {
  position: absolute;
  top: 28px;
  left: 50%;
  display: block;
  width: 17px;
  height: 17px;
  content: '';
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translate(-50%, 0) rotate(45deg);
  -ms-transform: translate(-50%, 0) rotate(45deg);
  transform: translate(-50%, 0) rotate(45deg);
  border-top: 5px solid #FFF;
  border-left: 5px solid #FFF;
}

@media screen and (max-width: 900px) {
  .footer .toTop__btn a:before {
    top: 6.4vw;
    width: 4vw;
    height: 4vw;
  }
}

.footer .toTop__btn a:hover {
  background: #457FCA;
}

.footer .toTop__btn a:hover:before {
  top: 25px;
}

@media screen and (max-width: 900px) {
  .footer .toTop__btn a:hover:before {
    top: 5.73333vw;
  }
}

.footer .copy {
  font-size: 1.2rem;
  line-height: 1;
  padding: 9px 10px;
  text-align: center;
  color: #FFF;
  background: #457FCA;
}

@media screen and (max-width: 900px) {
  .footer .copy {
    font-size: 3.2vw;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
