*,
*:before,
*:after {
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
 -ms-box-sizing: border-box;
 font-feature-settings: "palt";
 letter-spacing: .1em;
}


/*

html {
 scroll-behavior: smooth;
}

*/

html {
 scroll-behavior: smooth;
}




body {
 margin: 0 auto;
 font-size: 14px;
 font-family: 'Roboto', 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
 font-feature-settings: "palt";
 background: #000;
 color: #fff;
}



ul,
ol {
 list-style-type: none;
 padding: 0;
 margin: 0;
}


a {
 transition: 0.3s;
 font-weight: 600;
 text-decoration: underline;

}

a:hover {}



p {
 margin-top: 20px;
 line-height: 2.5;
}

.eng {
 font-size: 13px;
 color: #a6a6a6;
}


p.ex {
 margin-top: 0;
}


.center {
 text-align: center;
}


img {
 max-width: 100%;
}


.serif {
 font-family: "Times New Roman", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3",
  "Hiragino Mincho ProN", "ＭＳ 明朝", "MS Mincho", serif;
 font-weight: 400;
}



.title-1 {
 font-size: 40px;
}

.title-2 {
 font-size: 60px;
 letter-spacing: 0;
}

.title-border {
 text-align: center;
}


.title-border h2 {
 font-size: 24px;
 letter-spacing: 0;
}

.title-border span {
 display: block;
 margin: 0 auto;
 margin-top: 15px;
 height: 1px;
 width: 20px;
 background: #fff;
}


.btn-box {
 margin-top: 100px;
 text-align: center;
 margin-bottom: 100px;
}

.btn-border {
 display: inline-block;
 border: 1px solid #fff;
 padding: 15px 100px;
 text-decoration: none;
 color: #fff;
}








/*----------------------------*/


.fv {
 position: relative;
 width: 100%;
 height: 100vh;
 overflow: hidden;
 background: #000;
 z-index: 9;
}


.fv::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 45%;
 /* ← 少し広めにとる */
 background: linear-gradient(to bottom,
   rgba(0, 0, 0, 0) 0%,
   /* 完全に透明な部分を広く */
   rgba(0, 0, 0, 0.05) 35%,
   /* ごく薄く暗くなり始める */
   rgba(0, 0, 0, 0.25) 60%,
   /* 徐々に黒へ */
   rgba(0, 0, 0, 0.75) 85%,
   /* しっかり暗く */
   rgba(0, 0, 0, 1) 100%
   /* 完全な黒で締める */
  );
 z-index: 1;
 pointer-events: none;
}



.fv-bg {
 position: absolute;
 inset: 0;
 z-index: 0;
}


.fv-slide {
 position: absolute;
 top: 50%;
 left: 50%;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transform: translate(-50%, -50%) scale(1);
 opacity: 0;
 transition:
  opacity 5s ease-in-out,
  transform 14s ease-in-out;
 will-change: transform, opacity;
 image-rendering: auto;
 backface-visibility: hidden;
 filter: brightness(1.05) contrast(1.05);
}


.fv-slide.active {
 opacity: 1;
 z-index: 2;
}



.fv-overlay {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 text-align: center;
 color: #fff;
 z-index: 2;

 /* ▼ 登場アニメーション */
 opacity: 0;
 animation: fadeInSoft 3s ease-out 0.8s forwards;
}

.fv-overlay .logo {
 width: 600px;
 margin-bottom: 16px;
}

.fv-overlay .sub {
 display: block;
 font-size: 16px;
 letter-spacing: 0.15em;
 opacity: 0.8;
}


@keyframes fadeInSoft {
 0% {
  opacity: 0;
  transform: translate(-50%, -40%);
  /* 少し下から浮かぶ感じ */
  filter: blur(6px);
  /* ぼやっと登場 */
 }

 60% {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
 }

 100% {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
 }
}


/* ==============================
   グローバルナビ
============================== */

.global-nav {
 position: absolute;
 top: 10px;
 left: 20px;
 right: 100px;
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 z-index: 9;
 width: calc(100% - 20px);
}


.nav-inner {
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
}

.nav-logo img {
 width: 280px;
}

.nav-menu {
 display: flex;
 align-items: center;
 gap: 28px;
 margin-left: auto;
 padding-right: 100px;
}

.nav-menu a {
 color: #fff;
 text-decoration: none;
 font-size: 15px;
 transition: opacity 0.3s;
 font-weight: 500;

}

.nav-menu a img {
 width: 18px;
}



.nav-menu a:hover {
 opacity: 0.7;
}






/* ==============================
   ハンバーガーメニュー（完全版）
============================== */

.hamburger {
 position: fixed;
 top: 24px;
 right: 40px;
 width: 30px;
 height: 22px;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 align-items: flex-end;
 cursor: pointer;
 z-index: 9999999;
 transform: none !important;
}

/* 基本線設定 */
.hamburger span {
 display: block;
 height: 1px;
 background: rgba(255, 255, 255, 0.85);
 border-radius: 1px;
 transition: all 0.45s ease;
 transform-origin: center center;
 /* ←中心を基準に */
}

/* 長さ：上→長い／中→中間／下→短い */
.hamburger span:nth-child(1) {
 width: 100%;
}

.hamburger span:nth-child(2) {
 width: 80%;
}

.hamburger span:nth-child(3) {
 width: 60%;
}

/* ✕に変形するアニメーション */
.hamburger.active span:nth-child(1) {
 transform: translateY(10px) rotate(45deg);
 width: 100%;
}

.hamburger.active span:nth-child(2) {
 opacity: 0;
}

.hamburger.active span:nth-child(3) {
 transform: translateY(-11px) rotate(-45deg);
 width: 100%;
}



/* ==============================
   オーバーレイメニュー
============================== */

.overlay-menu {
 position: fixed;
 inset: 0;
 background: rgba(10, 10, 10, 0.95);
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.6s ease;
 z-index: 999;
}

.overlay-menu.active {
 opacity: 1;
 pointer-events: auto;
}

.overlay-menu ul {
 list-style: none;
 text-align: center;
}

.overlay-menu li {
 margin: 35px 0;
}

.overlay-menu a {
 color: #fff;
 font-size: 18px;
 font-weight: bold;
 letter-spacing: 0.15em;
 text-decoration: none;
 transition: opacity 0.3s ease;
}

.overlay-menu a:hover {
 opacity: 0.6;
}


.overlay-menu .sns {
 text-align: center;
}


.overlay-menu .sns img {
 width: 20px;
 margin-left: 10px;
 margin-right: 10px;
}


/*----------------------------*/


.about {
 height: 1100px;
 padding: 150px;
 display: flex;
 justify-content: center;
}


.about .inner {
 display: flex;
 align-items: flex-start;
 width: 1000px;
 position: relative;
 z-index: 1;
}


.about .tate {
 writing-mode: vertical-rl;
 margin-right: 50px;
}






.about .img-takibi {
 position: absolute;
 width: 600px;
 right: -10%;
 bottom: -5%;
}

.about .txt {
 width: 500px;
 z-index: 1;
}


.about .txt .eng {
 width: 350px;
 z-index: 9;
}







.image-gallery {
 padding: 60px 40px;
 padding-top: 0;
}

.gallery-row {
 display: flex;
 justify-content: center;
 gap: 30px;
}

.gallery-item {
 position: relative;
 width: 220px;
 /* 横幅固定 */
 aspect-ratio: 9/16;
 /* 縦横比を9:16で固定 */
 border-radius: 20px;
 overflow: hidden;
}

.gallery-item img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 border-radius: 20px;
}

/*----------------------------*/


.location {
 position: relative;
 height: 950px;
 display: flex;
 align-items: flex-end;
 margin-top: 60px;
}


.location .map {
 width: 100%;
 height: 100%;
 object-fit: contain;
 object-position: left center;
 position: absolute;
 top: 0;
 z-index: 0;
 pointer-events: none;
 /* 背景扱いに */
}


.location .info {
 max-width: 60%;
 max-width: 900px;
 margin-left: auto;
 margin-right: 3%;
 margin-bottom: 80px;
}

.location .info .txt {
 display: flex;

}

.location p {
 width: 48%;
}

.location .head {
 margin-bottom: 30px;
 text-align: right;
 margin-right: 3%;
}

/*----------------------------*/


.cta {
 position: relative;
 height: 800px;
 overflow: hidden;
 display: flex;
 justify-content: center;
 align-items: center;
}

.cta-video {
 position: absolute;
 top: 50%;
 left: 50%;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transform: translate(-50%, -50%);
 z-index: 0;
}

.cta-overlay {
 position: absolute;
 inset: 0;
 z-index: 1;
 background: linear-gradient(to bottom,
   rgba(0, 0, 0, 1) 0%,
   /* 上端 真っ黒 */
   rgba(0, 0, 0, 0.6) 20%,
   /* すぐ薄くなる */
   rgba(0, 0, 0, 0.6) 80%,
   /* 中央〜大部分 半透明 */
   rgba(0, 0, 0, 1) 100%
   /* 下端 真っ黒 */
  );
}


.cta .inner {
 position: relative;
 z-index: 2;
 text-align: center;
 color: #fff;
}


.cta .inner p {
 font-size: 18px;
 line-height: 1.5;
}


.cta .inner p.eng {
 font-size: 14px;
 margin-top: 10px;
 margin-bottom: 30px;
}



.cta .logo {
 width: 280px;
 margin-bottom: 20px;
}



/*----------------------------*/

.takibi {
 position: relative;
 padding: 120px 0;
}


.takibi {
 position: relative;
 padding: 120px 0;
 background-color: #000;
 /* 必要なら追加 */
 overflow: hidden;
 /* グラデーションはみ出し防止 */
 z-index: 0;
}

/* 上グラデーション */
.takibi::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 120px;
 background: linear-gradient(to bottom,
   rgba(0, 0, 0, 1) 0%,
   rgba(0, 0, 0, 0.7) 30%,
   rgba(0, 0, 0, 0) 100%);
 z-index: 1;
 pointer-events: none;
}

/* 下グラデーション */
.takibi::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 120px;
 background: linear-gradient(to top,
   rgba(0, 0, 0, 1) 0%,
   rgba(0, 0, 0, 0.7) 30%,
   rgba(0, 0, 0, 0) 100%);
 z-index: 1;
 pointer-events: none;
}



.takibi-top {
 position: absolute;
 z-index: -1;
 top: 0;
}


.takibi-bottom {
 position: absolute;
 z-index: -1;
 bottom: 0;
}



.takibi .title {
 width: 450px;
 display: block;
 margin: 0 auto;
}

.takibi .title img {
 margin-top: 30px;
}


.takibi .info {
 max-width: 90%;
 margin: 0 aUto;
 margin-top: 25%
}


.flow-box {
 width: 750px;
 display: flex;
 margin: 0 auto;
 justify-content: space-between;
}


.flow-box .item {
 width: 350px;
 margin-top: 80px;
}

.flow-box p {
 line-height: 1.5;
}


.flow-box .wrap.ex {
 color: #a6a6a6;
}



.video-wrap {
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 padding-top: 40px;
 overflow: hidden;
}

.video-wrap video {
 width: 800px;
 height: auto;
 display: block;
}

/* ▼ グラデーションオーバーレイ（上下完全黒） */
.video-wrap::before,
.video-wrap::after {
 content: "";
 position: absolute;
 left: 0;
 width: 100%;
 height: 100px;
 /* ← グラデ範囲の長さ */
 pointer-events: none;
 z-index: 2;
}

/* 上のグラデーション */
.video-wrap::before {
 top: 0;
 background: linear-gradient(to bottom,
   rgba(0, 0, 0, 1) 0%,
   /* ← 完全黒 */
   rgba(0, 0, 0, 0.85) 40%,
   /* ← 少し透け始める */
   rgba(0, 0, 0, 0.4) 60%,
   /* ← 中間のフェード */
   transparent 100%);
 /* ← 完全透明 */
}

/* 下のグラデーション */
.video-wrap::after {
 bottom: 0;
 background: linear-gradient(to top,
   rgba(0, 0, 0, 1) 0%,
   /* ← 完全黒 */
   rgba(0, 0, 0, 0.85) 40%,
   rgba(0, 0, 0, 0.4) 60%,
   transparent 100%);
}



.crew-wrap {
 margin-top: 100px;
}

.crew-box {
 margin: 0 auto;
 display: flex;
 justify-content: center;
 margin-top: 30px;
}

.crew-box .item {
 width: 200px;
 text-align: center;
 margin-right: 2%;
}


.crew-box .item:last-child {
 margin-right: 0;
}



.crew-box img.face {
 width: 130px;
}


.crew-box .name {
 text-align: center;
 margin-top: 10px;
}

.crew-box .name span {
 font-size: 14px;
}

.crew-box .name p {
 line-height: 1;
 margin-top: 0;
}

.crew-box .sns {
 margin-top: 20px;
 display: flex;
 justify-content: center;
}


.crew-box .icon-sns {
 width: 20px;
 margin-right: 15px;
}

.crew-box .icon-sns:last-child {
 margin-right: 0;
}




.vision {
 padding: 100px 0;
 position: relative;
}


.vision-back {
 position: absolute;
 z-index: -1;
 top: 0;
}


.vision-img {
 display: block;
 width: 800px;
 margin: 0 auto;
 margin-top: 80px;
}


.vision .txt {
 width: 800px;
 margin: 0 auto;
 margin-top: 60px;
 display: flex;
 justify-content: space-between;
}

.vision .txt .item {
 width: 48%;
}



.news {
 padding: 120px 10%;
}




.news-list {
 width: 500px;
 margin: 0 auto;
 margin-top: 60px;
}

.news-list li {
 display: flex;
 align-items: baseline;
 justify-content: flex-start;
 margin-bottom: 30px;
}

.news-date {
 font-weight: normal;
 display: inline-block;
 width: 120px;
 letter-spacing: 0;
}

.news-title {
 font-size: 16px;
 letter-spacing: 0;
}

.news-list li:last-child {
 margin-bottom: 0;
}





.company {
 margin-top: 100px;
}

.company-table {
 width: 800px;
 table-layout: fixed;
 word-break: break-all;
 word-wrap: break-all;
 border-collapse: separate;
 padding-bottom: 60px;
 margin: 60px auto;
 line-height: 2;
}



.company-table th {
 border-bottom: solid 1px #EAEAEA;
 width: 30%;
 vertical-align: middle;
 text-align: center;
}

.company-table td {
 border-bottom: solid 1px #313131;
 padding: 40px 60px;
 vertical-align: middle;
}

.company-table td.ex {
 padding: 20px 30px;
 text-align: center;
}

.company-table td.ex2 {}

.company-table td p {
 margin-bottom: 20px;
}




/*----------------------------*/


#contact {
 position: relative;
 /* 擬似要素の基準に */
 background-image: url(../img/back-vision.png);
 background-size: cover;
 background-position: center;
 padding: 120px;
 z-index: 0;
 overflow: hidden;
 /* グラデーションはみ出し防止 */
}

/* 上のグラデーション */
#contact::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 120px;
 /* ← グラデーションの高さを調整可能 */
 background: linear-gradient(to bottom,
   rgba(0, 0, 0, 1) 0%,
   /* 完全な黒から */
   rgba(0, 0, 0, 0.7) 30%,
   /* 少し薄く */
   rgba(0, 0, 0, 0) 100%
   /* 透明にフェードアウト */
  );
 z-index: 1;
 pointer-events: none;
}





form {
 width: 800px;
 margin: 0 auto;
 font-size: 15px;
 padding-bottom: 60px;
}



form .title-2 {
 margin-top: 30px;
}

form .txt {
 line-height: 1.5;
 width: 550px;
 margin: 0 auto;
 margin-top: 30px;
}


form .wrap {
 margin-top: 30px;
}

form label {
 width: 100%;
 background-color: rgba(70, 68, 82, 0.8);
 border: 1px solid #464452;
 color: #fff;
 text-align: center;
 height: 50px;
 font-weight: 600;
 display: flex;
 justify-content: center;
 align-items: center;
 width: 45%;
}

form .item {
 display: flex;
 align-items: center;
 margin: 0 auto;
 margin-bottom: 20px;
}

.item.message,
.item.radio {
 align-items: flex-start;
 height: auto;
}


form input {
 width: 55%;
 line-height: 50px;
 border: 1px solid #464452;
 padding: 0 20px;
}

textarea {
 width: 55%;
 height: 200px;
 padding: 10px;
 border: 1px solid #464452;
 background-color: transparent;
 color: #fff;
}

form button {
 text-align: center;
 display: block;
 margin: 0 auto;
 background-color: rgba(70, 68, 82, 0.8);
 color: #fff;
 width: 300px;
 height: 60px;
 font-weight: 600;
 border-radius: 50px;
 cursor: pointer;
 border: 0px;
 margin-top: 50px;
 font-size: 16px;
}

::placeholder {
 font-size: 15px;
 color: #bbb;
}


.radio .inner {
 width: 55%;
 display: flex;
 flex-direction: column;
 padding: 30px;
 font-weight: 500;
 border: 1px solid #464452;
}


.radio.label {
 height: 155px;
}

.radio .inner {
 height: 155px;
}


.radio span {
 margin-left: 5px;
}


.radio .inner.ex {
 flex-direction: row;
 flex-wrap: wrap;
}

.radio .inner div {
 display: flex;
 line-height: 2;
 align-items: center;
}


.radio .inner.ex div {
 margin-right: 20px;
}



.message.label {
 width: 45%;
 height: 200px;
}



.check {
 width: 20px;
 margin-bottom: 3px;
}







/*----------------------------*/







footer {
 padding: 40px;
}


.footer-nav {
 display: flex;
 align-items: flex-start;
}

.footer-nav .logo {
 width: 280px;
}


.footer-nav ul {
 display: flex;
 align-items: center;
 gap: 28px;
 margin-left: auto;
}

.footer-nav ul a {
 font-weight: normal;
 font-size: 16px;
 text-decoration: none;
}



.footer-nav ul img {
 width: 20px;
}


.copyright {
 display: block;
 margin-top: 20px;
 text-align: center;
 font-size: 13px;
 color: #666;
}






.thanks {
 height: 100vh;
 position: relative;

}


.thanks .inner {
 width: 400px;
 height: 120px;
 position: absolute;
 top: 0;
 right: 0;
 left: 0;
 bottom: 0;
 margin: auto;
}

.thanks .txt {
 line-height: 1.8;
}


.thanks a {
 display: block;
 text-align: center;
 margin-top: 20px;
}






/*----------------------------*/


#pageTop {
 position: fixed;
 bottom: 20px;
 right: 20px;
 z-index: 9999;
}

#pageTop a {
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 0;
 padding: 0;
 width: 40px;
 height: 40px;
 background: #464452;
 color: #fff;
 text-decoration: none;
 text-align: center;
 border-radius: 30px;
}

#pageTop i {
 font-size: 18px;
 font-weight: bold;
 margin-left: 3px;
}

#pageTop a:hover {
 text-decoration: none;
 opacity: 0.7;
}


/*----------------------------*/



.anm-text span {
 opacity: 0;
 display: inline-block;
}


.anm-fade_up,
.anm-fade_left,
.anm-fade_right,
.anm-fade_down,
.anm-fade_here {
 opacity: 0;
}

.animated {
 opacity: 1;
}

.anm-fade_up {
 transform: translateY(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_left {
 transform: translateX(-30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_right {
 transform: translateX(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_down {
 transform: translateY(-30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}

.anm-fade_here {
 transform: translate(0);
 transition: opacity 0.8s ease, transform 0.8s ease;
}


.animated.anm-fade_up,
.animated.anm-fade_left,
.animated.anm-fade_right,
.animated.anm-fade_down,
.anm-fade_here {
 transform: translateY(0);

}

.animated.anm-fade_left {
 transform: translateX(0);
}

.animated.anm-fade_right {
 transform: translateX(0);
}

.animated.anm-fade_down {
 transform: translateY(0);
}

.anm-fade_up.two,
.anm-fade_left.two,
.anm-fade_right.two,
.anm-fade_down.two {
 -moz-transition-delay: 200ms;
 -webkit-transition-delay: 200ms;
 -o-transition-delay: 200ms;
 -ms-transition-delay: 200ms;
}


.anm-fade_up.three,
.anm-fade_left.three,
.anm-fade_right.three,
.anm-fade_down.three {
 -moz-transition-delay: 300ms;
 -webkit-transition-delay: 300ms;
 -o-transition-delay: 300ms;
 -ms-transition-delay: 300ms;
}

.anm-fade_up.four,
.anm-fade_left.four,
.anm-fade_right.four,
.anm-fade_down.four {
 -moz-transition-delay: 400ms;
 -webkit-transition-delay: 400ms;
 -o-transition-delay: 400ms;
 -ms-transition-delay: 400ms;
}

.anm-fade_up.five,
.anm-fade_left.five,
.anm-fade_right.five,
.anm-fade_down.five {
 -moz-transition-delay: 500ms;
 -webkit-transition-delay: 500ms;
 -o-transition-delay: 500ms;
 -ms-transition-delay: 500ms;
}

.anm-fade_up.six,
.anm-fade_left.six,
.anm-fade_right.six,
.anm-fade_down.six {
 -moz-transition-delay: 600ms;
 -webkit-transition-delay: 600ms;
 -o-transition-delay: 600ms;
 -ms-transition-delay: 600ms;
}

.anm-fade_up.seven,
.anm-fade_left.seven,
.anm-fade_right.seven,
.anm-fade_down.seven {
 -moz-transition-delay: 700ms;
 -webkit-transition-delay: 700ms;
 -o-transition-delay: 700ms;
 -ms-transition-delay: 700ms;
}

.anm-fade_up.eight,
.anm-fade_left.eight,
.anm-fade_right.eight,
.anm-fade_down.eight {
 -moz-transition-delay: 800ms;
 -webkit-transition-delay: 800ms;
 -o-transition-delay: 800ms;
 -ms-transition-delay: 800ms;
}

.anm-fade_up.nine,
.anm-fade_left.nine,
.anm-fade_right.nine,
.anm-fade_down.nine {
 -moz-transition-delay: 900ms;
 -webkit-transition-delay: 900ms;
 -o-transition-delay: 900ms;
 -ms-transition-delay: 900ms;
}

.anm-fade_up.ten,
.anm-fade_left.ten,
.anm-fade_right.ten,
.anm-fade_down.ten {
 -moz-transition-delay: 1000ms;
 -webkit-transition-delay: 1000ms;
 -o-transition-delay: 1000ms;
 -ms-transition-delay: 1000ms;
}

.anm-fade_up.late-1,
.anm-fade_left.late-1,
.anm-fade_right.late-1,
.anm-fade_down.late-1 {
 -moz-transition-delay: 1200ms;
 -webkit-transition-delay: 1200ms;
 -o-transition-delay: 1200ms;
 -ms-transition-delay: 1200ms;
}


.anm-fade_up.late-2,
.anm-fade_left.late-2,
.anm-fade_right.late-2,
.anm-fade_down.late-2 {
 -moz-transition-delay: 1500ms;
 -webkit-transition-delay: 1500ms;
 -o-transition-delay: 1500ms;
 -ms-transition-delay: 1500ms;
}


.anm-fade_up.late-3,
.anm-fade_left.late-3,
.anm-fade_right.late-3,
.anm-fade_down.late-3 {
 -moz-transition-delay: 1800ms;
 -webkit-transition-delay: 1800ms;
 -o-transition-delay: 1800ms;
 -ms-transition-delay: 1800ms;
}

.anm-fade_up.late-4,
.anm-fade_left.late-4,
.anm-fade_right.late-4,
.anm-fade_down.late-4 {
 -moz-transition-delay: 2100ms;
 -webkit-transition-delay: 2100ms;
 -o-transition-delay: 2100ms;
 -ms-transition-delay: 2100ms;
}


.anm-fade_up.late-5,
.anm-fade_left.late-5,
.anm-fade_right.late-5,
.anm-fade_down.late-5 {
 -moz-transition-delay: 2400ms;
 -webkit-transition-delay: 2400ms;
 -o-transition-delay: 2400ms;
 -ms-transition-delay: 2400ms;
}

.anm-fade_up.late-6,
.anm-fade_left.late-6,
.anm-fade_right.late-6,
.anm-fade_down.late-6 {
 -moz-transition-delay: 2700ms;
 -webkit-transition-delay: 2700ms;
 -o-transition-delay: 2700ms;
 -ms-transition-delay: 2700ms;
}



.sp {
 display: none;
}

.tab {
 display: none;
}

.pc {
 display: block;
}
