@charset "UTF-8";
/* CSS Document */
body {
	font-family: Ryumin Medium KL;
	margin: 0;
	color: #333333;
}

ul {
	padding: 0;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

p {
	margin: 0;
	line-height: 1.5;
}



#loader-bg {
	display: none;
	background-color: #ffffff;
}

#loading {
	display: none;
}


#top {
	background: #000000;
}

header {
    position: fixed;
	top: 0;
    left: 0;
    right: 0;
    height: 65px;
    width: 100%;
    z-index: 1000;
	background-color: rgba(255,255,255,0.8);
}

.header-wrapper {
    max-width: 1280px;
    margin: 0 auto;
	position: relative;
}

.tabiiro-logo {
    position: absolute;
    height: 40px;
    margin: 10px;
}

.about-tabiiro {
    position: absolute;
    top: 20px;
    right: 180px;
}

.about-tabiiro a {
	color: #11172c;
}

.about-tabiiro a:hover {
	text-decoration: underline;
}


.language-btn {
	float: right;
    height: 25px;
    margin: 18px 15px;
    display: block;
    text-align: right;
}

.language-btn a {
    color: #11172c;
    border: 1px solid #11172c;
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 13px;
}

.language-btn a:hover {
    background-color: #ff9b9b;
	border: 1px solid #ff9b9b;
    color: #ffffff;
}


.top {
    position: relative;
    width: 100%;
    height: 800px;
}

.top-text {
	z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.movie-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.movie-area video {
    display: block;
    min-width: 100%;
    min-height: 100%;
    height: 100vh;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
	    background-size: contain;
}

.movie-color {
	position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.sub-title {
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: -35%;
    left: 0;
    right: 0;
    bottom: 0;
	width: 100%;
    height: 1em;
    margin: auto;
    font-size: 1.5em;
}

#top h1 {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    position: absolute;
    top: -5%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 20%;
    font-size: 80px;
    line-height: 1.3;
}

.movie-start {
    color: #ffffff;
    border: 1px solid #ff9b9b;
	background-color: #ff9b9b;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: -330px;
    margin: auto;
    display: block;
    width: 250px;
    height: 1.5em;
    line-height: 1.5;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
}

.movie-start:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
	background-color: rgba(255,255,255,0.00);
}

.movie-modal {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 800px;
    height: 450px;
    z-index: 30;
	display: none;
}

#modal-overlay {
	z-index:10;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,1);
	cursor: pointer;
}

.close-btn {
    padding: 10px;
    text-align: center;
    font-size: 19px;
    color: #ffffff;
	cursor: pointer;
}


.scroll-icon a {
text-align: center;
    position: absolute;
    bottom: 10%;
    left: 45%;
    width: 10%;
    font-size: 30px;
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
}

.scroll-icon a::before,
.scroll-icon a::after{
position: absolute;
top: 0;
bottom: 0;
left: 0;
margin: auto;
content: "";
vertical-align: middle;
}

.scroll-icon a::before{
    width: 30px;
    height: 30px;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -50px;
    left: 50%;
    margin-left: -15px;
}


.wrapper {
	background-color: rgba(255,255,255,0.7);
	width: 100%;
	height: 100%;
	padding-bottom: 80px;
}

.book {
    max-width: 1130px;
    margin: 0 auto;
    padding: 10% 10px;
}

.cover {
	width: 30%;
    float: left;
	transition: .8s;
	transform : translate(0, 100px);
}

.interview {
	margin-left: 35%;
	width: 65%;
	transition: 1s;
	transform : translate(0, 200px);
}

.interview h2 {
	font-size: 55px;
    line-height: 1;
    margin: 0 0 20px;
	color: #ff9b9b;
	border: none;
	padding-right: 0;
}

.interview h2 span {
	font-size: 40px;
	white-space: nowrap;
}

.book-btn {
    margin: 20px auto 0;
	width: 70%;
	font-size: 20px;
}

.book-btn a {
	background-color: #ff9b9b;
	display: block;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	color: #ffffff;
}

.book-btn a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 13px;
    background-image: url(/sp/special/hearts/images/book-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin-right: 5px;
}

.pickup {
	max-width: 1130px;
	margin: 0 auto;
	position: relative;
	padding: 10px;
}

.pickup-title {
	position:relative;
    color: #ff9b9b;
}

.pickup-title h2 {
    float: right;
    font-size: 70px;
    margin-top: 5px;
    border: none;
    color: #ff9b9b;
    padding: 0;
    margin-bottom: 50px;
    white-space: nowrap;
}

.pickup-subtitle {
    position: absolute;
    right: 110px;
    bottom: 35px;
}


.pickup h2:before {
    content: "";
    width: 70%;
    position: absolute;
    display: block;
    border-bottom: 1px solid #ff9b9b;
    left: 0;
    top: 50px;
}

.pickup-contents {
	position: relative;
	margin-bottom: 100px;
}

.pickup-contents img {
	transition: .8s;
	transform : translate(0, 100px);
}

.pickup-contents .text-area {
	transition: .5s;
	transition-delay: .5s;
	transform : translate(0, 100px);
}

.pickup-contents:nth-child(2n+1) {
    text-align: right;
}

.pickup-contents img {
    width: 60%;
}

.pickup-contents .text-area {
	position: absolute;
	width: 450px;
}

.content01 .text-area {
    top: 70%;
    left: 50%;
}

.content02 .text-area {
    top: 70%;
    right: 50%;
}

.content03 .text-area {
    top: 70%;
    left: 50%;
}

.content04 .text-area {
    top: 70%;
    right: 50%;
}


.feature-title {
    font-family: リュウミン L-KL;
    background-color: #ff9b9b;
    color: #ffffff;
    font-size: 16px;
    display: block;
	padding: 2px 10px 0px 10px;
    line-height: 1.5;
    text-align: left;
}

.feature-title:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 13px;
    background-image: url(/sp/special/hearts/images/book-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin-right: 5px;
}

.contents-title {
    background-color: #ffffff;
    color: #333333;
    font-size: 28px;
    padding: 5px 10px;
    line-height: 1.2;
    text-align: left;
}


#top footer {
    position: relative;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    max-width: none;
}


#top .contacts {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    height: 400px;
}


#top .contacts p {
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: left;
    display: block;
	padding: 10px;
}

#top .contacts dt {
    display: inline-block;
    width: 210px;
    padding: 10px;
    text-align: left;
    margin-bottom: 20px;
    vertical-align: top;
}
#top .contacts dd {
    display: inline-block;
    padding: 10px;
    margin-bottom: 20px;
    margin-left: 0;
    width: 350px;
    text-align: left;
}

#top .contacts dd span {
	font-size: 0.8em;
}

#top .contacts .contacts-title {
	margin-bottom: 30px;
    font-size: 30px;
    text-align: center;
}

.contacts-campany {
	border-bottom: 1px solid #ffffff;
}

#top .menu-list {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    margin: auto;
    width: 470px;
    height: 1em;
    padding: 0;
}

#top .menu-list li {
	float: left;
    margin-right: 30px;
}

#top .menu-list li:last-child {
    margin-right: 0;
}

#top .menu-list li a {
	color: #ffffff;
}

.menu-list li a:hover {
	text-decoration: underline;
}


#top .copyright {
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 80%;
    height: 3em;
}


#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
 
#pageTop a {
    display: block;
    padding: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ff9b9b;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    line-height: 1;
}
 
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}



/*----------------------------------
		info What is TABIIRO ?
----------------------------------*/

#info ,#regulation , #environment {
	background: #ffffff;
}

#info h1 ,
#regulation h1 ,
#environment h1 {
    border-top: 1px solid #222c50;
    border-bottom: 1px solid #222c50;
    padding: 20px 10px;
	margin-top: 0;
	color: #222c50;
	font-feature-settings: "palt";

}

#info .sub-wrapper {
	position: relative;
	padding: 0;
}

.info-main {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
	max-width: 920px;
    height: 600px;
}

#info .read {
    color: #222c50;
    font-size: 20px;
    line-height: 1.5;
}

.main-text h2 {
	font-size: 30px;
    color: #222c50;
	font-feature-settings: "palt";

}

.main-text {
	display: table;
	width: 100%;
}

.main-text .text,
.main-text .images {
	display: table-cell;
	vertical-align: middle;
}

.main-text .text {
	padding-right: 10px;
}

.main-text .images {
    width: 28%;
}

footer {
    position: fixed;
    padding: 10px 20px;
    max-width: 1280px;
	margin: auto;
    bottom: 0;
    right: 0;
    left: 0;
	background-color: #ffffff;
}

.contacts {
    font-size: 15px;
    line-height: 1.5;
    display: table-cell;
	vertical-align: middle;
	float: left;
}

.menu-list {
	display: table-cell;
    vertical-align: middle;
    padding-left: 40px;
	float: left;
}

.menu-list li {
	font-family: Ryumin Regular KL;
	float: left;
    margin-right: 30px;
}

.menu-list li:last-child {
    margin-right: 0;
}

.menu-list li a {
	color: #333333;
}


.copyright {
	float: right;
	padding: 15px 0;
}


/*----------------------------------
		regulation 利用規約
----------------------------------*/

.sub-wrapper {
    position: relative;
    max-width: 920px;
    min-height: 750px;
    margin: 0 auto;
    padding: 10px;
    padding-top: 75px;
}

h2 {
    border-bottom: 1px solid #222c50;
    border-left: 3px solid #222c50;
    color: #222c50;
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.main-contents p {
    font-family: Ryumin Regular KL;
    margin-bottom: 1em;
    padding: 0 10px;
}

#regulation ol {
	margin-left: 20px;
}

#regulation ol li {
    font-family: Ryumin Regular KL;
    line-height: 1.5;
    margin-bottom: 0.5em;
    text-indent: -15px;
}

#regulation ol li span {
    display: inline-block;
    width: 15px;
}

.main-contents {
	padding-bottom: 64px;
}




/*----------------------------------
		clearfix
----------------------------------*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix {
    zoom: 1;
}
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}