@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  letter-spacing: 0.2rem;
  background: #161c2a;
  -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: #161c2a;
}
@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: #dedede;
  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 #dedede;
  -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 #dedede;
  }
}
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 #161c2a;
}
@media screen and (max-width: 950px) {
  header .container .nav .nav-list .is-active a {
    border-left: 0;
    border-bottom: 2px solid #161c2a;
  }
}

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: #161c2a;
  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: #161c2a;
  -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: #161c2a;
  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;
}

.company {
  padding-top: 150px;
  width: 100%;
  color: #dedede;
}
@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 #dedede;
  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: 100px;
  background: #161c2a;
}
.footer .container {
  padding: 30px 0 20px;
  background: #161c2a;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .footer .container {
    padding: 30px 0 10px;
  }
}
.footer .container img {
  width: 120px;
}
@media screen and (max-width: 700px) {
  .footer .container img {
    width: 150px;
  }
}
.footer .container .copyright {
  margin-top: 20px;
}
@media screen and (max-width: 700px) {
  .footer .container .copyright {
    margin-top: 10px;
  }
}
.footer .container .copyright small {
  color: #dedede;
  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;
}