@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2rem;
  background: rgb(225, 225, 225);
  -webkit-font-smoothing: antialiased;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #313e5c;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 5vw;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #313e5c; /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
  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: 950px) {
  #container {
    display: block;
  }
}

.page-left {
  width: 15%;
  position: fixed;
  z-index: 10000;
}
@media screen and (max-width: 950px) {
  .page-left {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .page-left {
    width: 100%;
  }
}

.page-right {
  width: 85%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 950px) {
  .page-right {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .page-right {
    width: 100%;
    margin: 0 auto;
  }
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  position: relative;
  background: #313e5c;
}
@media screen and (max-width: 700px) {
  header {
    background: none;
  }
}
header .container {
  text-align: center;
}
@media screen and (max-width: 950px) {
  header .container {
    width: 90%;
    margin: 0 auto;
  }
}
header .container a img {
  width: 120px;
  padding-top: 30px;
}
@media screen and (max-width: 950px) {
  header .container a img {
    padding-top: 10px;
  }
}
@media screen and (max-width: 700px) {
  header .container a img {
    padding-top: 20px;
    width: 150px;
  }
}
header .container .nav {
  padding: 20px 10%;
  height: 100vh;
  text-align: left;
}
@media screen and (max-width: 950px) {
  header .container .nav {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    text-align: unset;
  }
}
@media screen and (max-width: 700px) {
  header .container .nav {
    display: none;
  }
}
header .container .nav .nav-list {
  position: relative;
  list-style: none;
}
@media screen and (max-width: 950px) {
  header .container .nav .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header .container .nav .nav-list .nav-item a {
  position: relative;
  display: block;
  text-decoration: none;
  color: rgb(225, 225, 225);
  padding: 2px 5px;
  margin: 20px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 950px) {
  header .container .nav .nav-list .nav-item a {
    margin: 5px 0;
  }
}
header .container .nav .nav-list .nav-item a:hover {
  color: #fff;
  border-left: 3px solid rgb(225, 225, 225);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
@media screen and (max-width: 950px) {
  header .container .nav .nav-list .nav-item a:hover {
    border-left: 0;
    border-bottom: 3px solid rgb(225, 225, 225);
  }
}
header .container .nav .nav-list .has-child img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  vertical-align: bottom;
}
header .container .nav .nav-list .has-child img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
header .container .nav .nav-list .has-child .sec-nav-list {
  padding: 10px;
}
@media screen and (max-width: 950px) {
  header .container .nav .nav-list .has-child .sec-nav-list {
    display: none;
  }
}
header .container .nav .nav-list .has-child .name {
  font-size: 12px;
}
header .container .nav .nav-list .is-active a {
  border-left: 2px solid rgb(225, 225, 225);
}
@media screen and (max-width: 950px) {
  header .container .nav .nav-list .is-active a {
    border-left: 0;
    border-bottom: 2px solid rgb(225, 225, 225);
  }
}

nav ul li.has-child dt {
  overflow: hidden;
  margin: 0 0 10px 0;
}

/*== 2層目の設定 */
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 4;
  background: #313e5c;
  width: 100%;
  display: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 30px;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul {
  display: block;
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #fff;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #3577CA;
}

/*----------
drawer
----------*/
.drawer-icon {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 300;
  -webkit-transition: -webkit-transform 1s ease 0s;
  transition: -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s;
  transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
  display: block;
}
.drawer-icon.is-active {
  display: none;
}
@media screen and (max-width: 700px) {
  .drawer-icon.is-active {
    display: block;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  display: none;
}
@media screen and (max-width: 700px) {
  .drawer-icon.is-active .drawer-icon-bar1 {
    display: block;
    top: 25px;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  display: none;
}
@media screen and (max-width: 700px) {
  .drawer-icon.is-active .drawer-icon-bar3 {
    display: block;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 25px;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
  }
}

.drawer-icon-bars {
  display: none;
}
@media screen and (max-width: 700px) {
  .drawer-icon-bars {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
  }
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  display: none;
}
@media screen and (max-width: 700px) {
  .drawer-icon-bar1,
  .drawer-icon-bar2,
  .drawer-icon-bar3 {
    display: block;
    position: absolute;
    width: 28px;
    height: 1.5px;
    background: #fff;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 700px) {
  .drawer-icon-bar1 {
    top: 8px;
    left: 10px;
  }
}

@media screen and (max-width: 700px) {
  .drawer-icon-bar2 {
    top: 20px;
    left: 10px;
  }
}

@media screen and (max-width: 700px) {
  .drawer-icon-bar3 {
    top: 32px;
    left: 10px;
  }
}

.drawer-content {
  width: 800px;
  height: 98%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 299;
  background: #313e5c;
  -webkit-transform: translateY(-130%);
          transform: translateY(-130%);
  -webkit-transition: -webkit-transform 1s ease 0s;
  transition: -webkit-transform 1s ease 0s;
  transition: transform 1s ease 0s;
  transition: transform 1s ease 0s, -webkit-transform 1s ease 0s;
}
@media screen and (max-width: 700px) {
  .drawer-content {
    width: 100%;
    height: 65%;
  }
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-items .right {
  margin-left: 10%;
  margin-top: 10%;
}
.drawer-content-items .right img {
  width: 150px;
}
.drawer-content-items .left {
  margin-left: 5%;
}
.drawer-content-items .drawer-bottom {
  width: 100%;
}

.drawer-content-item {
  line-height: 80px;
}
@media screen and (max-width: 700px) {
  .drawer-content-item {
    line-height: 20px;
  }
}
.drawer-content-item a {
  display: block;
  color: rgb(225, 225, 225);
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
  text-align: left;
}
.drawer-content-item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  height: 11px;
  background: url(../img/arrow-b.svg) no-repeat center center/contain;
}

.drawer-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 298;
  display: none;
}
.drawer-bg.is-active {
  display: block;
}

.top-img {
  z-index: -1;
  height: 100vh;
  position: fixed;
}

.top-text {
  height: 100vh;
}
.top-text .content {
  position: absolute;
}

.page-top {
  height: 100vh;
}
.page-top .content {
  position: relative;
  color: rgb(225, 225, 225);
  top: 50%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 950px) {
  .page-top .content {
    z-index: -1;
  }
}
@media screen and (max-width: 700px) {
  .page-top .content {
    position: unset;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    padding: 270px 20px;
  }
}
.page-top .content .highland {
  font-size: 10vw;
}
@media screen and (max-width: 700px) {
  .page-top .content .highland {
    font-size: 50px;
  }
}
.page-top .content .title {
  font-size: 3vw;
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .page-top .content .title {
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 0;
  }
}
.page-top .content .subtitle {
  font-size: 1.5vw;
  margin-top: 5px;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .page-top .content .subtitle {
    font-size: 14px;
  }
}

article {
  overflow: hidden;
  background: rgb(225, 225, 225);
  color: #313e5c;
}

.loop_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.loop_wrap div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: 150px;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .loop_wrap div {
    font-size: 100px;
  }
}

.loop_wrap div:nth-child(odd) {
  -webkit-animation: loop 30s -15s linear infinite;
          animation: loop 30s -15s linear infinite;
}

.loop_wrap div:nth-child(even) {
  -webkit-animation: loop2 30s linear infinite;
          animation: loop2 30s linear infinite;
}

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

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.about {
  width: 100%;
  background: rgb(225, 225, 225);
}
.about .container {
  width: 90%;
  padding-top: 150px;
  margin: 0 auto;
  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;
}
@media screen and (max-width: 700px) {
  .about .container {
    display: block;
  }
}
.about .container .left {
  margin-right: 30px;
  border-left: 2px solid #333;
  padding-left: 15px;
}
@media screen and (max-width: 700px) {
  .about .container .left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.about .container .left .main-title {
  font-size: 4vw;
}
@media screen and (max-width: 700px) {
  .about .container .left .main-title {
    font-size: 30px;
  }
}
.about .container .left .subtitle {
  font-size: 2vw;
}
@media screen and (max-width: 700px) {
  .about .container .left .subtitle {
    font-size: 20px;
  }
}
.about .container .left .detail {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .about .container .left .detail {
    gap: 10px;
  }
}
.about .container .left .detail .text {
  background: #333;
  color: rgb(225, 225, 225);
  border-radius: 100px;
  padding: 15px 30px;
  font-size: 1.2vw;
}
@media screen and (max-width: 700px) {
  .about .container .left .detail .text {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.about .container .left .detail a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  border: solid 6px #333;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 700px) {
  .about .container .left .detail a {
    width: 35px;
    height: 35px;
    border: solid 3px #333;
  }
}
.about .container .left .detail a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-color: #333;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0, 0);
          transform: translate(-50%, -50%) scale(0, 0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}
@media screen and (max-width: 700px) {
  .about .container .left .detail a:after {
    width: 40px;
    height: 40px;
  }
}
.about .container .left .detail a:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
          transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.about .container .left .detail a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 45%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #333;
  border-width: 6px 0 0 6px;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transition: border-color ease 0.1s;
  transition: border-color ease 0.1s;
}
@media screen and (max-width: 700px) {
  .about .container .left .detail a:before {
    width: 10px;
    height: 10px;
    border-width: 3px 0 0 3px;
  }
}
.about .container .left .detail a:hover:before {
  border-color: rgb(225, 225, 225);
}
.about .container .right {
  width: 70%;
}
@media screen and (max-width: 700px) {
  .about .container .right {
    width: 100%;
  }
}

.service {
  width: 100%;
  background: rgb(225, 225, 225);
  padding-top: 150px;
}
.service .container {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 700px) {
  .service .container {
    display: block;
  }
}
.service .container .left {
  width: 25%;
}
@media screen and (max-width: 700px) {
  .service .container .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.service .container .left .main-title {
  font-size: 4vw;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .service .container .left .main-title {
    font-size: 30px;
  }
}
.service .container .left .sub-title {
  font-size: 1.5vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .service .container .left .sub-title {
    font-size: 20px;
  }
}
.service .container .right {
  width: 70%;
}
@media screen and (max-width: 700px) {
  .service .container .right {
    width: 100%;
  }
}
.service .container .right .content {
  padding: 20px;
  color: rgb(225, 225, 225);
  border: 1px solid #333;
  color: #333;
}
.service .container .right .content:not(:last-child) {
  margin-bottom: 20px;
}
.service .container .right .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 700px) {
  .service .container .right .content .top {
    display: block;
  }
}
.service .container .right .content .top .names p {
  font-size: 1vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .service .container .right .content .top .names p {
    font-size: 18px;
  }
}
.service .container .right .content .top .names .service-name {
  font-size: 3.5vw;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .service .container .right .content .top .names .service-name {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.service .container .right .content .top .main-text {
  font-size: 3vw;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .service .container .right .content .top .main-text {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.service .container .right .content .sub-text {
  font-size: 1vw;
}
@media screen and (max-width: 700px) {
  .service .container .right .content .sub-text {
    font-size: 16px;
  }
}
.service .container .right .content .detail {
  margin-top: 30px;
  padding: 5px 50px;
  display: inline-block;
  border: 1px solid #333;
  color: #333;
  font-size: 1.2vw;
}
@media screen and (max-width: 700px) {
  .service .container .right .content .detail {
    font-size: 16px;
  }
}
.service .container .right .content .detail:hover {
  background: #313e5c;
  color: rgb(225, 225, 225);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.achievement {
  padding-top: 150px;
  background: rgb(225, 225, 225);
}
.achievement .title {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.achievement .main-title {
  font-size: 4vw;
  line-height: 1;
}
.achievement .subtitle {
  font-size: 1.5vw;
  font-weight: bold;
}

.sponsor {
  padding-top: 150px;
  background: rgb(225, 225, 225);
}
.sponsor .title {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.sponsor .main-title {
  font-size: 4vw;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .sponsor .main-title {
    font-size: 30px;
  }
}
.sponsor .subtitle {
  font-size: 1.5vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .sponsor .subtitle {
    font-size: 20px;
  }
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
}

.recruit {
  width: 100%;
  background: rgb(225, 225, 225);
  padding-top: 150px;
}
.recruit .container {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 700px) {
  .recruit .container {
    display: block;
  }
}
.recruit .title {
  width: 25%;
}
@media screen and (max-width: 700px) {
  .recruit .title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.recruit .main-title {
  font-size: 4vw;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .recruit .main-title {
    font-size: 30px;
  }
}
.recruit .subtitle {
  font-size: 1.5vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .recruit .subtitle {
    font-size: 20px;
  }
}

.contact {
  width: 75%;
}
@media screen and (max-width: 700px) {
  .contact {
    width: 100%;
  }
}
.contact input[type=text],
.contact input[type=email],
.contact input[type=tel],
.contact textarea {
  width: 100%;
  border: 0;
  font-size: 16px;
  border-bottom: 1px solid #333;
  outline: none;
  background: none;
  color: #333;
}
.contact input[type=text],
.contact input[type=email],
.contact input[type=tel] {
  height: 40px;
  padding: 0.2em 0.5em;
}
.contact textarea {
  min-height: 122px;
  resize: vertical;
  border-radius: 2px;
  border: 1px solid #333;
  padding: 0.4em 0.5em;
}

.contact-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.contact-text-inline {
  font-size: 16px;
  color: #313e5c;
}

.contact-list {
  width: 100%;
  margin: 0 auto;
}

.contact-item:not(:first-child) {
  margin-top: 30px;
}

.contact-item-input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
}
@media screen and (max-width: 700px) {
  .contact-item-input {
    margin-top: 3px;
  }
}

.contact-item-title {
  color: #333;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (max-width: 700px) {
  .contact-item-title {
    display: inline-block;
    font-size: 16px;
    line-height: 32px;
    height: 32px;
  }
}

.contact-item-title-inline {
  font-size: 12px;
  color: #313e5c;
  vertical-align: super;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .contact-item-title-inline {
    font-size: 16px;
  }
}

.contact-radio-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 1px;
  -webkit-box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
}

.contact-radio {
  position: relative;
  border: 0.1px solid #333;
}

.contact-radio-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-radio-input:checked + .contact-radio-part {
  background-color: #313e5c;
  color: #fff;
  border-radius: 1px;
}
.contact-radio-input:focus + .contact-radio-part {
  outline: -webkit-focus-ring-color auto 5px;
  outline: none;
}

.contact-radio-part {
  display: block;
  color: #333;
  height: 38px;
  line-height: 38px;
  width: 120px;
  text-align: center;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
@media screen and (max-width: 700px) {
  .contact-radio-part {
    width: 83px;
    font-size: 12px;
  }
}

.contact-footer {
  text-align: left;
  margin-top: 40px;
}

.contact-privacy {
  position: relative;
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}

.contact-privacy-part {
  display: inline-block;
  height: 22px;
  width: 22px;
  border: 1px solid #333;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.contact-privacy-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-privacy-input:checked + .contact-privacy-part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.contact-privacy-input:focus + .contact-privacy-part {
  outline: -webkit-focus-ring-color auto 5px;
  outline: none;
}
.contact-privacy-input:checked:focus + .contact-privacy-part {
  outline: none;
}

.contact-privacy-link {
  color: #333;
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
  .contact-privacy-link {
    font-size: 14px;
  }
}

.contact-footer-submit {
  margin-top: 46px;
}
@media screen and (max-width: 700px) {
  .contact-footer-submit {
    margin-top: 24px;
  }
}

.util-link {
  padding: 10px 80px;
  color: #333;
  border: 1px solid #333;
  font-weight: bold;
  margin-top: 30px;
  background: none;
}
@media screen and (max-width: 700px) {
  .util-link {
    width: 100%;
  }
}
.util-link:hover {
  background: #313e5c;
  color: rgb(225, 225, 225);
  border: 1px solid #313e5c;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.end-message,
.false-message {
  margin-top: 30px;
  display: none;
  color: #707070;
  font-size: 16px;
  text-align: center;
}

.footer {
  padding-top: 150px;
  background: rgb(225, 225, 225);
}
.footer .container {
  padding: 50px 0 20px;
  background: #313e5c;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .footer .container {
    padding: 30px 0 10px;
  }
}
.footer .container img {
  width: 200px;
}
@media screen and (max-width: 700px) {
  .footer .container img {
    width: 150px;
  }
}
.footer .container .nav-list {
  color: rgb(225, 225, 225);
  margin-top: 30px;
}
@media screen and (max-width: 700px) {
  .footer .container .nav-list {
    margin-top: 10px;
  }
}
.footer .container .nav-list .nav-item a:hover {
  color: #fff;
}
.footer .container .doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 10px;
  color: rgb(225, 225, 225);
}
@media screen and (max-width: 700px) {
  .footer .container .doc {
    margin-top: 5px;
  }
}
.footer .container .doc .privacy a,
.footer .container .doc .terms a {
  font-size: 12px;
  font-weight: bold;
}
.footer .container .doc .privacy a:hover,
.footer .container .doc .terms a:hover {
  color: #fff;
}
.footer .container .copyright {
  margin-top: 20px;
}
@media screen and (max-width: 700px) {
  .footer .container .copyright {
    margin-top: 10px;
  }
}
.footer .container .copyright small {
  color: rgb(225, 225, 225);
  font-weight: bold;
}

/*=== 9-1-3 マウスが動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown3 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 70px;
  right: 50%;
  /*マウスの動き1.6秒かけて動く永遠にループ*/
  -webkit-animation: mousemove 1.6s ease-in-out infinite;
          animation: mousemove 1.6s ease-in-out infinite;
}
@media screen and (max-width: 950px) {
  .scrolldown3 {
    display: none;
  }
}

/*下からの距離が変化して上から下に動く*/
@-webkit-keyframes mousemove {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}
@keyframes mousemove {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}
/*Scrollテキストの描写*/
.scrolldown3 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  bottom: 105px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/*マウスの中の線描写 */
.scrolldown3 span::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 70px;
  left: 17px;
  /*線の形状*/
  width: 1px;
  height: 15px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: mousepathmove 1.4s linear infinite;
          animation: mousepathmove 1.4s linear infinite;
  opacity: 0;
}

/*上からの距離・不透明度・高さが変化して上から下に流れる*/
@-webkit-keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  50% {
    height: 15px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
@keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  50% {
    height: 15px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
/*マウスの描写 */
.scrolldown3:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 60px;
  left: -10px;
  /*マウスの形状*/
  width: 25px;
  height: 37px;
  border-radius: 10px;
  border: 1px solid #eee;
}

/*マウスの中の丸の描写*/
.scrolldown3:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 86px;
  left: 0;
  /*丸の形状*/
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid #eee;
}