@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

body {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
  height: auto;
}

a {
  text-decoration: none;
  color: black;
}

li {
  list-style: none;
}

.flex {
  display: flex;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

h2 {
  font-size: 48px;
  font-weight: bold;
  color: #010f31;
  text-align: center;
}

h3 {
  font-size: 13px;
  color: #010f31;
  text-align: center;
  margin-top: 15px;
}

@media screen and (max-width:960px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  h2 {
    font-size: 33px;
  }

  h3 {
    font-size: 12px;
  }

}

@media screen and (max-width:520px) {
  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 13px;
    margin-top: 0px;
  }

}

/* ヘッダー固定 */
header {
  position: fixed;
  width: 100vw;
  z-index: 10;
}

header.transform {
  background: #010f31;
}

/* ナビゲーション */
nav.pc-only img {
  width: 75px;
  margin-top: 20px;
}

.color-logo {
  filter: drop-shadow(3px 3px 6px #d3d3d3);
}

.mono-logo {
  display: none;
}

header.transform .mono-logo {
  display: block;
}

header.transform .color-logo {
  display: none;
}


header nav.pc-only {
  height: 70px;
}

.pc-only .menu {
  width: 750px;
  margin: 0 auto;
  justify-content: space-between;
  vertical-align: middle;
}

@media screen and (max-width:960px) {
  nav.sp-only {
    padding-bottom: 10px;
  }

  nav.sp-only img {
    width: 60px;
    margin-top: 15px;
    margin-left: 10px;
  }

}

@media screen and (max-width:520px) {
  nav.sp-only img {
    margin-top: 15px;
    width: 50px;
  }

}

/*ナビゲーションドロップダウン*/
nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  padding: 40px 20px 20px;
  transition: all .3s;
  color: #fff;
  font-size: 15px;
  font-family: 'Noto Sans Japanese', sans-serif;
}

nav ul.flex>li:first-of-type a {
  margin-right: 30px;
}


nav ul li li a {
  padding: 10px 15px;
}

nav ul li a:hover {
  color: #464545;
}

nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 43px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

nav li.has-child ul {
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  background-color: rgba(1, 15, 49, .7);
  width: 140px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

header.transform nav li.has-child ul {
  background-color: rgba(1, 15, 49,.9);
}

nav li.has-child:hover>ul,
nav li.has-child:active>ul {
  visibility: visible;
  opacity: 1;
}

nav li.has-child ul li a {
  color: #fff;
}

nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background-color: rgba(255,255,255,.5);
  color: #464545;
}

@media screen and (max-width:960px) {
  nav {
    padding: 0;
  }

  nav ul {
    display: block;
  }


  nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
  }

  nav li.has-child ul {
    background: #fff;
  }

  nav li.has-child ul li a {
    color: #000;
  }

  /*矢印の位置と向き*/

  nav ul li.has-child::before {
    left: 49.5%;
    top: 31px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }

  nav ul li.has-child>a {
    padding-bottom: 23px;
  }

  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }

  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }


  nav ul li a {
    font-size: 14px;
  }

  
header.transform nav li.has-child ul {
  background-color: #fff;
}
}

/* ハンバーガーボタン */
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: rgb(255, 255, 255);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #000;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  height: 110vh;
  color: #fff;
  background: #fff;
  text-align: center;
  width: 100vw;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  /*　メニューを開いているときは中のリンクを押せないように */
  visibility: hidden;
}

.globalMenuSp img {
  text-align: left;
  display: block;
}

.globalMenuSp ul {
  padding: 0;
  width: 100%;
}

.globalMenuSp>ul {
  margin: 10% auto;
}

.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: .7em 0;
  text-decoration: none;
}

.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

@media screen and (max-width:520px) {
  .hamburger {
    top: 7px;
  }
}


/* 動き */
/*========= 流れるテキスト(各ページタイトル) ===============*/

.mv-title p,
.sub-title p{
  overflow: hidden;
}

/*全共通*/

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-fill-mode: forwards;
  opacity: 0;
}

.img-wrap1 .slideAnimeLeftRight{
  animation-duration: 3s;
}

.img-wrap2 .slideAnimeLeftRight{
  animation-duration: 3s;
  animation-delay: 1s;
}

.img-wrap3 .slideAnimeLeftRight{
  animation-duration: 3s;
  animation-delay: 2s;
}

.img-wrap4 .slideAnimeLeftRight{
  animation-duration: 5s;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-fill-mode: forwards;
  opacity: 0;
}


.img-wrap1 .slideAnimeRightLeft{
  animation-duration: 3s;
}

.img-wrap2 .slideAnimeRightLeft{
  animation-duration: 3s;
  animation-delay: 1s;
}

.img-wrap3 .slideAnimeRightLeft{
  animation-duration: 3s;
  animation-delay: 2s;
}

.img-wrap4 .slideAnimeRightLeft{
  animation-duration: 5s;
}



@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/*=======================じわっと文字が出現／MVコピー===========================*/

.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}


/*=======================じわっと文字が出現／h2タイトル===========================*/
.titleUp{
  animation-name:titleAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
}

@keyframes titleAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.titleTrigger{
    opacity: 0;
}

/*=======================フェードアップ===========================*/
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(50px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
   
  .fadeUpTrigger{
      opacity: 0;
  }





/*=========================画像=========================
/*全共通*/

.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ddd;
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}


/* footer */
footer .flex {
  font-family: 'Noto Sans Japanese', sans-serif;
  line-height: 1.3;
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: 50px auto;
}

footer .address {
  display: flex;
}

footer .address img {
  width: 65px;
  margin-right: 30px;
}

footer .address p {
  font-size: 15px;
}

footer .address p:first-of-type {
  font-size: 17px;
  margin-bottom: 5px;
}

footer .address p:last-of-type {
  font-size: 13px;
  margin-top: 10px;
}

footer .site-map {
  margin-right: 10%;
}

footer .site-map li {
  line-height: 1.8;
  font-size: 14px;
}

footer .site-map li:before,
footer .address p:last-of-type:before {
  content: '';
  display: inline-block;
  background-image: url(../img/common/go.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

footer .address p:last-of-type:before {
  margin-right: 3px;
  margin-left: 10px;
}

.copy-area {
  height: 30px;
  background-color: #010f31;
  padding-top: 60px;
}

.copy-area p {
  color: #a7a7a7;
  font-size: 13px;
  text-align: right;
  margin-right: 10%;
  font-family: 'Noto Sans Japanese', sans-serif;
}


@media screen and (max-width:960px) {
  footer .flex {
    width: 100%;
  }

  footer .address p {
    font-size: 14px;
  }

  footer .address p:first-of-type {
    font-size: 16px;
  }

  footer .address img {
    width: 50px;
    margin-right: 20px;
  }
}


@media screen and (max-width:520px) {
  footer .address {
    display: block;
  }

  footer .flex {
    margin: 20px auto;
}

  footer .address img {
    width: 50px;
    margin: 0 auto 15px;
    display: block;
  }

  footer .address p {
    font-size: 12px;
}

  footer .site-map {
    display: none;
  }

  .copy-area {
    padding-top: 10px;
    margin-top: 30px;
    height: 20px;
  }

  .copy-area p {
    text-align: center;
    margin-right: auto;
  }
  .copy-area p {
    font-size: 12px;
}
}