@charset "UTF-8";
/* =================================================================================================

　TOP

================================================================================================= */
/* CSS Document */
main {
  position: relative;
  padding-top: 130px;
}
@media screen and (max-width: 743px) {
  main {
    padding-top: 60px;
  }
}

/* ----------------------------------------------------------------------------
　loading
---------------------------------------------------------------------------- */
#loading {
  position: fixed;
  top: 0rem;
  left: 0rem;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: #2760A3;
  display: none;
}
#loading.active {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

#loading .mark {
  -webkit-mask-image: url("/img/top/loading_mask.svg");
          mask-image: url("/img/top/loading_mask.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #054577;
  width: 200px;
  height: 118px;
  position: relative;
}
@media screen and (max-width: 743px) {
  #loading .mark {
    width: 150px;
    height: 89px;
  }
}

#loading .mark:after {
  content: "";
  display: block;
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

#loading .mark.active:after {
  -webkit-animation: loadingMarkAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
          animation: loadingMarkAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}

@-webkit-keyframes loadingMarkAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes loadingMarkAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
#loading .txt {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 5px;
  color: #fff;
  margin-top: 2.5rem;
  position: relative;
  left: 0.5rem;
}

/* ----------------------------------------------------------------------------
　blue_bg
---------------------------------------------------------------------------- */
.blue_bg {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 32%;
  height: 100%;
  z-index: 1;
  background-color: #2760A3;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.blue_bg.active {
  -webkit-animation: blueBgAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
          animation: blueBgAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}

@-webkit-keyframes blueBgAnime {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 0 100%, 0% 100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes blueBgAnime {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 0 100%, 0% 100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* ----------------------------------------------------------------------------
　main_area
---------------------------------------------------------------------------- */
#main_area {
  padding: 8rem 0;
  margin-bottom: 5rem;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 743px) {
  #main_area {
    padding: 0rem 0;
    margin-bottom: 3rem;
  }
}

#main_area .photo {
  position: absolute;
  top: 0rem;
  height: 580px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 743px) {
  #main_area .photo {
    height: 250px;
    position: relative;
    top: 0rem;
    margin: 0 0 2rem auto;
  }
}
#main_area .photo:after {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), color-stop(30%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 30%);
}
@media screen and (max-width: 999px) {
  #main_area .photo:after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), color-stop(50%, rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  }
}
@media screen and (max-width: 743px) {
  #main_area .photo:after {
    display: none;
  }
}
#main_area .photo.active {
  -webkit-animation: photoAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
          animation: photoAnime 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s forwards;
}

@-webkit-keyframes photoAnime {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    -webkit-clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes photoAnime {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    -webkit-clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
#main_area .photo p {
  position: absolute;
  width: 100%;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-filter: brightness(200%);
          filter: brightness(200%);
}
#main_area .photo p.active {
  opacity: 1;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}
#main_area .photo p:nth-child(1) {
  background: url("/img/top/main_area_photo01.jpg") right top no-repeat;
  background-size: cover;
}
#main_area .photo p:nth-child(2) {
  background: url("/img/top/main_area_photo02.jpg") right top no-repeat;
  background-size: cover;
}
#main_area .photo p:nth-child(3) {
  background: url("/img/top/main_area_photo03.jpg") right top no-repeat;
  background-size: cover;
}
#main_area .photo p:nth-child(4) {
  background: url("/img/top/main_area_photo04.jpg") right top no-repeat;
  background-size: cover;
}
#main_area .photo p:nth-child(5) {
  background: url("/img/top/main_area_photo05.jpg") right top no-repeat;
  background-size: cover;
}

#main_area .inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #main_area .inner {
    width: 95%;
  }
}
@media screen and (max-width: 743px) {
  #main_area .inner {
    width: 74%;
    position: relative;
    left: 20%;
    margin: 0 0 0 0;
  }
}

#main_area .copy {
  width: 47%;
}
@media screen and (max-width: 999px) {
  #main_area .copy {
    width: 65%;
  }
}
@media screen and (max-width: 743px) {
  #main_area .copy {
    width: 100%;
  }
}

#main_area .copy h1 {
  margin-bottom: 1rem;
  font-family: "Lato", sans-serif;
  font-size: 5.5rem;
  letter-spacing: 3px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  #main_area .copy h1 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 743px) {
  #main_area .copy h1 {
    font-size: 2.7rem;
    text-shadow: none;
    color: #2760A3;
  }
}

#main_area .copy h1 span {
  display: inline-block;
  -webkit-transform: scale(0);
          transform: scale(0);
}

#main_area .copy h1 span:nth-child(9) {
  margin-right: 1rem;
}

#main_area .copy h1.active span:nth-child(1) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
}

#main_area .copy h1.active span:nth-child(2) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.03s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.03s forwards;
}

#main_area .copy h1.active span:nth-child(3) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.06s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.06s forwards;
}

#main_area .copy h1.active span:nth-child(4) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.09s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.09s forwards;
}

#main_area .copy h1.active span:nth-child(5) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.12s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.12s forwards;
}

#main_area .copy h1.active span:nth-child(6) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.15s forwards;
}

#main_area .copy h1.active span:nth-child(7) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.18s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.18s forwards;
}

#main_area .copy h1.active span:nth-child(8) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.21s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.21s forwards;
}

#main_area .copy h1.active span:nth-child(9) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.24s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.24s forwards;
}

#main_area .copy h1.active span:nth-child(10) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.27s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.27s forwards;
}

#main_area .copy h1.active span:nth-child(11) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
}

#main_area .copy h1.active span:nth-child(12) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.33s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.33s forwards;
}

#main_area .copy h1.active span:nth-child(13) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.36s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.36s forwards;
}

#main_area .copy h1.active span:nth-child(14) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.39s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.39s forwards;
}

#main_area .copy h1.active span:nth-child(15) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.42s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.42s forwards;
}

#main_area .copy h1.active span:nth-child(16) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.45s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.45s forwards;
}

#main_area .copy h1.active span:nth-child(17) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.48s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.48s forwards;
}

#main_area .copy h1.active span:nth-child(18) {
  -webkit-animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.51s forwards;
          animation: h1Anime 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.51s forwards;
}

@-webkit-keyframes h1Anime {
  0% {
    -webkit-transform: scale(2.5) translateX(50px);
            transform: scale(2.5) translateX(50px);
  }
  100% {
    -webkit-transform: scale(1) translateX(0px);
            transform: scale(1) translateX(0px);
  }
}

@keyframes h1Anime {
  0% {
    -webkit-transform: scale(2.5) translateX(50px);
            transform: scale(2.5) translateX(50px);
  }
  100% {
    -webkit-transform: scale(1) translateX(0px);
            transform: scale(1) translateX(0px);
  }
}
#main_area .copy .sub {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
}
@media screen and (max-width: 743px) {
  #main_area .copy .sub {
    font-size: 1.4rem;
    color: #575962;
    margin-bottom: 1rem;
    text-shadow: none;
  }
}
#main_area .copy .sub.active {
  -webkit-animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
          animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

@-webkit-keyframes subAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes subAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
#main_area .copy .txt {
  margin-bottom: 3.5rem;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  #main_area .copy .txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 743px) {
  #main_area .copy .txt {
    color: #575962;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: none;
  }
}
#main_area .copy .txt.active {
  -webkit-animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
          animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

#main_area .copy .btn_style01 {
  width: 50%;
  margin-bottom: 3rem;
  opacity: 0;
}
@media screen and (max-width: 743px) {
  #main_area .copy .btn_style01 {
    width: 65%;
  }
}
#main_area .copy .btn_style01.active {
  -webkit-animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
          animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

#main_area .copy .news .ttl {
  font-size: 2.4rem;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
}
@media screen and (max-width: 743px) {
  #main_area .copy .news .ttl {
    font-size: 1.6rem;
    color: #2760A3;
    text-shadow: none;
  }
}
#main_area .copy .news .ttl.active {
  -webkit-animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
          animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

#main_area .copy .news .scroll {
  height: 130px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: auto;
  padding-right: 1rem;
  opacity: 0;
}
#main_area .copy .news .scroll.active {
  -webkit-animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
          animation: subAnime 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

#main_area .copy .news .scroll::-webkit-scrollbar {
  width: 6px;
}
@media screen and (max-width: 743px) {
  #main_area .copy .news .scroll::-webkit-scrollbar {
    width: 4px;
  }
}

#main_area .copy .news .scroll::-webkit-scrollbar-thumb {
  background-color: #CFDAEA;
}

#main_area .copy .news dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CFDAEA;
  padding: 1.2rem 0;
}
#main_area .copy .news dl:first-child {
  padding-top: 0rem;
}
#main_area .copy .news dl:last-child {
  padding-bottom: 0rem;
  border-bottom: none;
}
@media screen and (max-width: 743px) {
  #main_area .copy .news dl {
    font-size: 1rem;
    text-shadow: none;
  }
}

#main_area .copy .news dl dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11rem;
          flex: 0 0 11rem;
}
@media screen and (max-width: 743px) {
  #main_area .copy .news dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.5rem;
            flex: 0 0 6.5rem;
    color: #575962;
  }
}

#main_area .copy .news dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 743px) {
  #main_area .copy .news dl dd {
    color: #575962;
  }
}

#main_area .copy .news dl dd a {
  position: relative;
  color: #fff;
  display: block;
  padding-right: 20px;
}
#main_area .copy .news dl dd a:after {
  content: "";
  position: absolute;
  top: 0.8rem;
  right: 0rem;
  width: 6px;
  height: 10px;
  background: url("/img/top/news_arrow.svg") right 0rem top 50% no-repeat;
  background-size: 100% auto;
  -webkit-transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 743px) {
  #main_area .copy .news dl dd a:after {
    top: 0.6rem;
    width: 4px;
    height: 6px;
    background: url("/img/top/news_arrow_gray.svg") right 0rem top 50% no-repeat;
    background-size: 100% auto;
  }
}
#main_area .copy .news dl dd a:hover:after {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
@media screen and (max-width: 743px) {
  #main_area .copy .news dl dd a {
    color: #575962;
  }
}

#main_area .copy .news dl dd a .new {
  color: #575962;
  background-color: #fff;
  border-radius: 100px;
  display: inline-block;
  margin-right: 1rem;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  text-shadow: 0px 0px 0px rgb(0, 0, 0);
}
@media screen and (max-width: 743px) {
  #main_area .copy .news dl dd a .new {
    font-size: 1rem;
    padding: 0.1rem 0.5rem;
    margin-right: 0.5rem;
    background-color: #2760A3;
    color: #fff;
  }
}

/* ----------------------------------------------------------------------------
　about
---------------------------------------------------------------------------- */
#about {
  width: 1200px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #about {
    width: 95%;
  }
}
@media screen and (max-width: 743px) {
  #about {
    width: 100%;
    margin-bottom: 3rem;
  }
}

#about .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 743px) {
  #about .intro {
    width: 74%;
    position: relative;
    left: 20%;
    display: block;
    margin-bottom: 2rem;
  }
}

#about .ttl {
  color: #fff;
  width: 36%;
}
@media screen and (max-width: 999px) {
  #about .ttl {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 360px;
            flex: 0 0 360px;
  }
}
@media screen and (max-width: 743px) {
  #about .ttl {
    color: #2760A3;
    width: 100%;
    margin-bottom: 1rem;
  }
}

#about .ttl h2 {
  font-family: "Lato", sans-serif;
  font-size: 5.2rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  padding-top: 2rem;
}
@media screen and (max-width: 743px) {
  #about .ttl h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
}

#about .ttl .txt {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 3px;
}
@media screen and (max-width: 743px) {
  #about .ttl .txt {
    font-size: 1.6rem;
  }
}

#about .copy {
  width: 63%;
}
@media screen and (max-width: 743px) {
  #about .copy {
    width: 100%;
  }
}

#about .copy .txt {
  font-size: 2rem;
  line-height: 200%;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-shadow: 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF, 0 0 3px #F8FBFF;
}
@media screen and (max-width: 999px) {
  #about .copy .txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 743px) {
  #about .copy .txt {
    font-size: 1.2rem;
    line-height: 180%;
    margin-bottom: 1rem;
  }
}
#about .copy .txt strong {
  color: #2760A3;
  font-weight: normal;
}

#about .copy .btn_style01 {
  width: 300px;
}
@media screen and (max-width: 743px) {
  #about .copy .btn_style01 {
    width: 60%;
  }
}

#about .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 743px) {
  #about .point {
    width: 78.5%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
  }
}

#about .point li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 23.3333%;
  border: 1px solid #2760A3;
  background-color: #fff;
}
@media screen and (max-width: 743px) {
  #about .point li {
    width: 48%;
    margin-bottom: 1.2rem;
  }
}

#about .point li .photo {
  border-bottom: 1px solid #2760A3;
}
#about .point li .photo img {
  width: 100%;
}

#about .point li .txt {
  text-align: center;
  color: #2760A3;
  font-weight: 600;
  padding: 1rem 1rem;
}
@media screen and (max-width: 1100px) {
  #about .point li .txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 743px) {
  #about .point li .txt {
    font-size: 1.1rem;
  }
}

/* ----------------------------------------------------------------------------
　contact_recruit
---------------------------------------------------------------------------- */
#contact_recruit {
  position: relative;
  z-index: 2;
  background: url("/img/top/contact_recruit_bg.jpg") 0 center no-repeat;
  background-size: cover;
  padding: 4rem 0;
}
@media screen and (max-width: 743px) {
  #contact_recruit {
    padding: 3rem 0;
  }
}

#contact_recruit ul {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  #contact_recruit ul {
    width: 95%;
  }
}
@media screen and (max-width: 743px) {
  #contact_recruit ul {
    width: 78.5%;
    display: block;
  }
}

#contact_recruit ul li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 49%;
  background-color: #2760A3;
  padding: 5rem 1rem;
  border-radius: 20px;
  color: #fff;
}
@media screen and (max-width: 743px) {
  #contact_recruit ul li {
    width: 100%;
    margin-bottom: 1rem;
    padding: 3rem 2rem;
  }
  #contact_recruit ul li:last-child {
    margin-bottom: 0rem;
  }
}

#contact_recruit ul li h2 {
  font-size: 3.2rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 999px) {
  #contact_recruit ul li h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 743px) {
  #contact_recruit ul li h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

#contact_recruit ul li .txt {
  font-size: 2rem;
  line-height: 200%;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 999px) {
  #contact_recruit ul li .txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 743px) {
  #contact_recruit ul li .txt {
    font-size: 1.1rem;
  }
}

#contact_recruit ul li .btn_style01 {
  width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 743px) {
  #contact_recruit ul li .btn_style01 {
    width: 70%;
  }
}

#contact_recruit ul li .cap {
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
}