@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;
}

.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 {
    padding: 15px 0;
  }
}
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: 5px;
    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: 5px;
  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;
}

.mvv {
  padding-top: 150px;
  width: 100%;
}
.mvv .container {
  width: 90%;
  margin: 0 auto 30px;
  text-align: center;
}
.mvv .container .main-title {
  font-size: 4vw;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .mvv .container .main-title {
    font-size: 30px;
  }
}
.mvv .container .subtitle {
  font-size: 1.5vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .mvv .container .subtitle {
    font-size: 20px;
  }
}

.mission {
  padding-top: 150px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .mission {
    padding-top: 100px;
  }
}
.mission .container {
  width: 90%;
  margin: 0 auto 30px;
}
.mission .container .main-title-1 {
  font-size: 4vw;
  line-height: 1;
  color: #dc0451;
}
@media screen and (max-width: 700px) {
  .mission .container .main-title-1 {
    font-size: 50px;
  }
}
.mission .container .main-title-2 {
  font-size: 4vw;
  line-height: 1;
  color: #0c1aac;
}
@media screen and (max-width: 700px) {
  .mission .container .main-title-2 {
    font-size: 50px;
  }
}
.mission .container .main-title-3 {
  font-size: 4vw;
  line-height: 1;
  color: #0e680a;
}
@media screen and (max-width: 700px) {
  .mission .container .main-title-3 {
    font-size: 50px;
  }
}
.mission .container .subtitle {
  font-size: 1.5vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .mission .container .subtitle {
    font-size: 16px;
  }
}
.mission .container .main-text {
  margin-top: 30px;
  font-size: 2vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .mission .container .main-text {
    font-size: 20px;
    margin-top: 10px;
  }
}
.mission .container .text {
  margin-top: 30px;
}

.value {
  padding-top: 150px;
  width: 100%;
  padding-bottom: 150px;
}
@media screen and (max-width: 700px) {
  .value {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.value .container {
  width: 90%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 700px) {
  .value .container .content {
    margin-bottom: 20px;
  }
}
.value .container .main-title-3 {
  font-size: 4vw;
  line-height: 1;
  color: #0e680a;
}
@media screen and (max-width: 700px) {
  .value .container .main-title-3 {
    font-size: 50px;
  }
}
.value .container .subtitle {
  font-size: 1.5vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .value .container .subtitle {
    font-size: 16px;
  }
}
.value .container .main-text {
  margin-top: 10px;
  font-size: 2vw;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .value .container .main-text {
    font-size: 20px;
  }
}

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%);
  }
}
.company {
  padding-top: 150px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .company {
    padding-top: 100px;
  }
}
.company .container {
  width: 90%;
  margin: 0 auto 30px;
}
.company .container .main-title {
  font-size: 4vw;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .company .container .main-title {
    font-size: 30px;
  }
}
.company .container .subtitle {
  font-size: 1.5vw;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .company .container .subtitle {
    font-size: 20px;
  }
}
.company .container .contents {
  width: 70%;
  margin: 50px auto;
}
@media screen and (max-width: 700px) {
  .company .container .contents {
    width: 100%;
  }
}
.company .container .contents .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .company .container .contents .content {
    display: block;
  }
}
.company .container .contents .content:not(:last-child) {
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.company .container .contents .content .title,
.company .container .contents .content .text,
.company .container .contents .content .text-text {
  font-weight: bold;
}
.company .container .contents .content .other {
  display: block;
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
  .company .container .contents .content .title {
    font-size: 16px;
  }
  .company .container .contents .content .text {
    padding-left: 10px;
    font-size: 14px;
  }
}

.footer {
  padding-top: 150px;
  background: rgb(225, 225, 225);
}
@media screen and (max-width: 700px) {
  .footer {
    padding-top: 100px;
  }
}
.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;
}