@charset "UTF-8";
/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

fonts.min.css
フォントアイコンを記載したcss

common.css
レイアウト、TOPのスタイルを記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	content: "\f099";
	font-family: "icomoon";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ 
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
    overflow-y: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 1.6px;
}
.pc {
  display: none;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
img {
	max-width: 100%;
	height: auto;
}
/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */

/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */ 
::selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}

::-moz-selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}
a {
  color: #333;
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #666;
  opacity: 0.8;
  text-decoration: none;
}
a:active {
  color: #333;
  text-decoration: none;
}

/* ------------------------------------------------------------ */
/* common layouts */
/* ------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 1em;
  margin: 0 auto;
  clear: both;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}

/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
@keyframes fadeInup {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIndown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeInup {
  opacity: 0;
  animation: fadeInup 2s ease-in-out 0.3s 1 forwards;
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 2s ease-in-out 2.5s 1 forwards;
}

/* ------------------------------------------------------------ */
/* page */
/* ------------------------------------------------------------ */
.page_enter {
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex-wrap: wrap;
}
.page_enter .item {
	width: 100%;
	height: 50%;
}
.page_enter .item:first-of-type {
	background: #000 url("/dinosaur-born/common/img/img-mainvisual04.png")no-repeat center center / auto 100%;
}
.page_enter .item:last-of-type {
	background: #000 url("/x-frame/common/img/top-mv.png")no-repeat center center / cover;
}
.page_enter .item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
    height: 100%;
}
.page_enter .item a::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all .3s;
}
.page_enter .item a div {
	position: relative;
	z-index: 3;
	max-width: 60%;
	margin: 0 auto;
	text-align: center;
}
.page_enter .item:first-of-type a div {
	width: 50%;
}
.page_enter .item:last-of-type a h1 {
background: rgb(0 0 0 / 19%);
    padding: 1em 1.5em;
    border: 3px solid rgba(255,255,255,.7);
}
.page_enter .item a:hover {
	opacity: 1;
}
.page_enter .item a:hover::before {
	background: rgba(0,0,0,.3);
}

.door {
	position: absolute;
	z-index: 5;
	color: #fff;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	background: #d2071d;
	padding: .5em 1em;
	font-weight: bold;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s;
}
.page_enter .item:last-of-type .door{
	background: #ec6817;
}
.page_enter .item a:hover .door{
	visibility: visible;
	opacity: 1;
}
@-webkit-keyframes enter {
	25% {
		-webkit-transform: scale(1.1);
		transform: translateX(-50%) scale(1.1);
	}

	75% {
		-webkit-transform: scale(0.9);
		transform: translateX(-50%) scale(0.9);
	}
}

@keyframes enter {
	25% {
		-webkit-transform: scale(1.1);
		transform: translateX(-50%) scale(1.1);
	}

	75% {
		-webkit-transform: scale(0.9);
		transform: translateX(-50%) scale(0.9);
	}
}
/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  width: 100%;
  padding: 0 5%;
}
.copy {
  padding: 1.5em 0;
  text-align: center;
  font-size: 1rem;
  border-top: 1px solid #a2a2a2;
}
@media screen and (orientation: landscape) {
   /* 画面が横向き(横長)の場合 */
	.page_enter {
	flex-direction: row;
}
.page_enter .item {
	width: 50%;
	height: 100%;
}
}
@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  .sp {
    display: block;
  }
  .spnav {
    width: 350px;
  }
  
}
@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */
  
}
@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
/* ------------------------------------------------------------ */
/* page */
/* ------------------------------------------------------------ */
.page_enter {
	flex-direction: row;
}
.page_enter .item {
	width: 50%;
	height: 100%;
}
.page_enter .item a::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transform: translateY(-100%);
	transition: transform .3s;
	opacity: .8;
}
.page_enter .item:first-of-type a::after {
	background: #000;
}
.page_enter .item:last-of-type a::after {
	background: #2c2c2c;
}
.page_enter .item a:hover::after {
	transform: translateY(0);
}
.page_enter .item a:hover .door,
.page_enter .item a:focus .door,
.page_enter .item a:active .door {
	-webkit-animation-name: enter;
	animation-name: enter;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
  
	
}
