@charset "UTF-8";

/* clearfix
================================ */
.clearfix:after,.clearfix:before{display:table;content:" "}.clearfix:after{clear:both}
/* 1.1 normalize
------------------------------ */
html,body { height: 100%; -webkit-text-size-adjust: none; }
html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6 { margin: 0; padding: 0;}
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
ul { list-style: none;}
button,input,select,textarea { margin: 0;}
img,embed,iframe,object,audio,video { height: auto; max-width: 100%;}
iframe { border: 0;}
table { border-collapse: collapse; border-spacing: 0;}
td,th { padding: 0; text-align: left;}
i { font-style: normal;}
img { max-width: 100%;}
*,*::before,*::after { box-sizing: border-box; padding: 0; margin: 0; outline: none;}

/* 1.2 clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}
/* base
================================ */
body {
	width: 100%;
	height: 100%;
	font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 15px;
	line-height: 1.8;
	color: #151515;
}
a {
	color: #205296; outline: none;
    transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.bold{ font-weight: bold!important;}
.red{ color: #bf3432!important;}

/* footer
================================ */
footer{
	width: 100%;
	font-size: 10px;
	text-align: center;
	line-height: 2;
	position: absolute;
	left: 0;
	bottom: 20px;
	opacity: 0.8;
	z-index: 10;
}
footer *{ font-style: normal;}

/* components
================================ */
.btn { text-align: center; margin: 35px 0 0;}
.btn + .btn { margin-top: 10px;}
.btn--base {
    color: inherit;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.75;
    -webkit-appearance: none;
    text-decoration: none;
    display: inline-block;
    width: 90%;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    padding: 14px 2em;
    border: 1px solid transparent;
}
.btn--main{
    background: #205296;
    color: #fff;
}
.btn--sub{
    background: #fff;
    color: #205296;
    border-color: #205296;
}
.btn > span {
    display: block;
    text-align: center;
    line-height: 1.45em;
    margin-bottom: 15px;
    font-size: 13px;
}
.txt {margin: 25px 0;}
.txt + .txt {margin-top: -15px;}
div > .txt:first-child {margin-top: 0;}
.txt--link {margin: 25px 0 0 ;}
.txt--link + .txt--link {margin-top: 10px;}
.txt--link a { text-decoration: none; font-weight: bold;}
.txt--link a::after {
    content: "\f08e";
    font-family: 'FontAwesome';
    margin-left: 5px;
}
.ph {margin: 0 0 25px; line-height: 0; text-align: center; position: relative;}
.ph .dummy {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.em {color:#fb6d93; font-weight: bold;}
.section-tit {
	text-align: center;
	font-weight: bold;
	margin: 0 0 1em;
	font-size: 20px;
	font-size: 6vw;
	color:#304c73;
}
.list--table { border-top: .5px solid rgba(0,0,0,0.2);}
.list--table dt,
.list--table dd {padding: 10px 0; font-size: 12px;}
.list--table dt{
	float: left;
	width: 100px;
	opacity: .5;
}
.list--table dd{padding-left: 100px; border-bottom: .5px solid rgba(0,0,0,0.2); }
.list--table dd span {margin-right: 5px;}
.list--table .item--l { font-size: 14px; font-weight: bold;}
.block--iframe {
    margin: 0 auto 15px;
    text-align: center;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    width: 100%;
    text-align: center;
}
.block--iframe iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.anchor {position: absolute; top: -52px;}
.list--attention li {
    line-height: 1.6em;
    font-size: 13px;
}
.list--attention li + li{margin-top: 10px;}

/* scroll-animation */
.section--base.delighter {
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	opacity: 0;
}
.section--base.delighter.started {transform: none; -webkit-transform: none; opacity: 1;}
.section--base.delighter.started.ended {}



/* layout
================================ */
.wrap {
	position: relative;
	padding: 0 0 60px;
	overflow: hidden;
}
.section--base {
    background: #f5f5f5;
    padding: 30px 5%;
    margin: 1vw 1vw 0;
}

/* contents
================================ */
.jkt-list {
	width: 100%;
	position: absolute;
	left: 0;
	transition: all .8s ease;
	-webkit-transition: all .8s ease;
	z-index: 1;
}
.jkt-list01 {
	top: 0;
	transform: translateY(-120%);
	-webkit-transform: translateY(-120%);
}
.jkt-list02 {
	bottom: 0;
	transform: translateY(120%);
	-webkit-transform: translateY(120%);
}
.opening-finished .jkt-list01,
.opening-finished .jkt-list02 {
	transform: translateY(0);
	-webkit-transform: translateY(0);
}
.jkt-list li {line-height: 0;}
.jkt-list li img {
	width: 100%;
    background: #2e535d no-repeat center;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-blend-mode: lighten;
}
.opening-finished .jkt-list li img {display: inline!important;}
.block--opening {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	display: webkit-flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	z-index:2;
}
.block--opening .opening__inner{ width: 70%;}
.block--opening .jkt-list{ 
	position: relative;
	transform: scale(.6);
	-webkit-transform: scale(.6);
	opacity: 0;
}
.opening-start .block--opening .jkt-list {
	transform: scale(1);
	-webkit-transform: scale(1);
	transition: transform 8s ease, opacity .3s ease;
	-webkit-transition: transform 8s ease, opacity .3s ease;
	opacity: 1;
}
.block--opening .jkt-list li{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.block--opening .jkt-list li img {background-color: #fff;}
.block--opening .jkt-list li.opening-remove img{
	opacity: 0;
	transition: all .75s ease;
	-webkit-transition: all .75s ease;
}
.opening-start .block--opening .jkt-list li img{ background-color: #1c83c1;}
.block--opening .btn--skip {
    position: absolute;
    bottom: 70px;
    bottom: 10vh;
    width: 100%;
    text-align: center;
    left: 0;
}
.block--opening .btn--skip a{
    display: inline-block;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}
.block--opening .dummy{width: 100%;}
/* scroll */
.block--scroll{
    width: 40px;
    margin-left: -20px;
    height: 3vh;
    text-align: center;
    position: absolute;
    bottom: 17.5vh;
    left: 50%;
    transition: all .3s ease 1.6s;
    -webkit-transition: all .3s ease 1.6s;
    opacity: 0;
    z-index: 10;
    animation: scroll 1.2s linear 0s infinite;
}
.block--scroll:after{
	content:" ";
	display: block;
	width: 12px;
	height: 12px;
	border-right: 2px solid #205296;
	border-top: 2px solid #205296;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	margin-left: -6px;
}
body.opening-finished:not(.status--scrolled) .block--scroll {opacity: 1;}
body.status--scrolled .block--scroll {transition-delay: 0s; -webkit-transition-delay: 0s;}
@keyframes scroll {
	0% { transform: translateY(0); }
	50% { transform: translateY(40%); }
	0% { transform: translateY(0); }
}
.section--main {
    position: relative;
    text-align: center;
    background: #fff;
    margin: 0 0 55px;
    padding: 0;
}
.section--main .main__inner {
	height: 88.1vh;
	display: flex;
	display: webkit-flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}
.section--main .main__tit {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: all .8s ease;
	-webkit-transition: all .8s ease;
	margin-top: -9vh;
}
.section--main .main__tit .tit-wrap {
	width: 72%;
	margin: 0 auto 50px;
	margin: 0 auto 8vh;
}
.opening-finished .section--main .main__tit {transform: none; -webkit-transform: none;}
.section--main .main__tit img{
    display: block;
    margin: 22px auto;
    margin: 3.35vh auto;
    position: relative;
    z-index: 1;
}
.section--main .main__tit .tit--01{ width: 84%;}
.section--main .main__tit .tit--02{ width: 100%;}
.section--main .main__tit .tit--03{ width: 58%;}
.section--main .main__tit .txt--topics {
	position: relative;
    line-height: 1.6;
    font-weight: normal;
    color: #215296;
    max-width: 90%;
    margin: 0 auto;
    display: inline-block;
    opacity: 0;
    transition: all .8s ease .8s;
    -webkit-transition: all .8s ease .8s;
}
.opening-finished .section--main .main__tit .txt--topics {opacity: 1; translateY: 0;}
.section--main .main__tit .txt--topics > span {position: relative;}
.section--main .main__tit .txt--topics::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 50px 30px #e2f0f5;
    background: #e2f0f5;
    border-radius: 100px;
    transform: scale(.95, .75);
}
.section--comment .tit {
    font-size: 18px;
    font-weight: bold;
}
.section--comment .tit + .txt {margin-top: 15px;}
.section--singles .tit {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 15px;
}
.section--singles .ph img:first-child{ width: 70%; background: #d6dce4;}
.section--movie .block--iframe + .btn {margin-top: 25px;}
.section--present {padding-bottom: 0;}
.section--present .section-tit > span {
    display: block;
    font-size: 16px;
}
.section--present .ph img:first-child{ width: 70%; box-shadow: 0px 10px 25px -10px rgba(0,0,0,0.1);}
.section--present .ph .caption {
    display: block;
    font-size: 11px;
    opacity: .5;
    line-height: 2em;
    margin-top: 10px;
}
.section--present .present__about { margin: 0 0 20px;}
.section--present .block--acceptance {
    margin: 0 -5.5%;
    padding: 40px 5% 30px;
    background: no-repeat center url(/feature/kobukuro_30th_single/common/images/bg_miyazaki.jpg);
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    position: relative;
}
.section--present .block--acceptance::before {
	content:'';
	width: 100%;
	height: 160px;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(245,245,245,0) 100%);
	background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(245,245,245,0) 100%);
	background: linear-gradient(to bottom, rgba(245,245,245,1) 0%,rgba(245,245,245,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#00f5f5f5',GradientType=0 );
}
.section--present .block--acceptance > .tit {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
    text-align: center;
    position: relative;
}
.section--present .block--acceptance > .tit > span{
    font-size: 15px;
    display: block;
    line-height: 1.5;
    margin: 0 0 2px;
}
.section--present .block--acceptance > .tit + .txt {margin-top: -5px;}
.section--present .list--acceptance-pattern .txt {line-height: 1.65;}
.section--present .list--acceptance-pattern > li {
    background: #fff;
    padding: 25px 5% 35px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.section--present .list--acceptance-pattern > li + li { margin-top: 10px;}
.section--present .list--acceptance-pattern .tit {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	color: #304c73;
	line-height: 1.4;
}
.section--present .list--acceptance-pattern .tit + .txt {margin: 20px 0;}
.section--present .acceptance__txt {margin: 0 0 30px;}
.section--present .acceptance__txt dt{
    font-weight: bold;
    color: #304c73;
    line-height: 1.5;
    margin: 0 0 20px;
    font-size: 18px;
    text-align: center;
}
.section--present .acceptance__txt dt i{
    display: block;
    font-size: 40px;
    margin: 0 0 5px;
}
.section--present .acceptance__txt dd .txt {margin: 0 0 15px;}
.section--present .acceptance__txt dd .txt--link {margin-top: -10px;}
.section--present .type--none {
    font-weight: bold;
    color: #304c73;
    line-height: 1.5;
}
/*
.section--present .list--ticket-type dt i {
    margin-right: 5px;
    width: 20px;
    text-align: center;
    font-size: 1.2em;
}
.section--present .list--ticket-type dt.type--denshi i {font-size: 1.45em;}
*/

.section--present .table--schedule { margin: 0 0 30px; width: 100%;}
.section--present .table--schedule tr {
    background: #f5f5f5;
    margin: 0 0 5px;
    display: block;
}
.section--present .table--schedule th,
.section--present .table--schedule td {
	padding: 15px;
	line-height: 0;
}
.section--present .table--schedule th {
	width: 95px;
	text-align: center;
	color: #304c73;
}
.section--present .table--schedule th span{
    display: block;
    width: 60px;
    height: 60px;
    background: #fb6d93;
    color: #fff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    line-height: 60px;
    margin: 0 auto;
}
.section--present .table--schedule td {padding-left: 0;}
.section--present .table--schedule img{width: 100%;}

/* PC
============================== */
@media screen and (min-width: 961px) {
	.sp{ display: none!important;}
	body{ font-size: 15px;}
	.btn {margin-top: 50px;}
	.btn--base {width: auto;min-width: 280px;}
	a:hover {color: #227af1;}
	.btn--main:hover { color: #fff; background:#227af1;}
	.btn--sub:hover { color:#227af1; background:#fff; border-color:#227af1 ;}
	.section--base:not(.section--main) {padding: 50px 0; margin: 30px;}
	.section__inner {width: 700px; margin: 0 auto;}
	.section-tit {font-size: 30px; margin: 0 0 45px;}
	.block--float .ph { float: left; width: 50%; margin: 0;}
	.float__txt { float: right; width: 50%;}
	.anchor {position: absolute; top: -80px;}
	
	.block--opening .opening__inner {width: 400px;}
	.block--scroll{ bottom: 22vh; cursor: pointer;}
	.block--scroll:after {
	    width: 20px;
	    height: 20px;
	    border-right: 3px solid #205296;
	    border-top: 3px solid #205296;
	    margin-left: -10px;
	    transition: all .3s ease;
		-webkit-transition: all .3s ease;
	}
	.block--scroll:hover::after {border-color: #227af1;}
	.section--main {margin-bottom: 85px;}
	.section--main .main__inner {height: 100vh;padding: 0;min-height: 600px;}
	.section--main .main__tit .tit-wrap {width: 45%; margin-bottom: 70px; margin-bottom: 9vh;}
	.section--main .main__tit img { margin: 35px auto; margin: 4.25vh auto;}
	.section--main .main__tit .tit--01{width: 70%;}
	.section--main .main__tit .tit--03{width: 48%;}
	.section--main .main__tit .txt--topics {font-size: 18px;}
	.section--main .main__tit .txt--topics::before {box-shadow: 0 0 70px 30px #e2f0f5; transform: scale(1.1, .85);}
	.section--singles .tit {font-size: 20px;}
	.section--singles .ph img {width: 100%;}
	.section--base.section--present {padding-bottom: 0;}
	.section--present .section__inner {width: 100%;}
	.section--present .present__about{width: 700px; margin: 0 auto 40px;}
	.section--present .block--acceptance {margin: 0;    padding: 80px 0;}
	.section--present .list--acceptance-pattern {width: 700px; margin: 0 auto;}
	.section--present .block--acceptance > .tit {font-size: 26px; margin-bottom: 25px;}
	.section--present .block--acceptance > .tit > span {font-size: 20px;}
	.section--present .block--acceptance > .tit + .txt { text-align: center; margin-bottom: 35px;}
	.section--present .list--acceptance-pattern > li {padding: 50px;}
	.section--present .list--acceptance-pattern .tit {font-size: 20px; margin-bottom: 35px;}
	.section--present .table--schedule {text-align: center;}
	.section--present .table--schedule tr { display: inline-block; width: 290px;}
	.section--present .table--schedule tr + tr {margin-left: 16px;}
	.section--present .list--acceptance-pattern .txt {line-height: 1.8;}
	.section--present .list--acceptance-pattern .tit + .txt {text-align: center; }
	.section--present .acceptance__txt {margin-bottom: 40px;}
	.section--present .acceptance__txt dt { font-size: 20px;}
	.section--present .acceptance__txt dt i {margin: 0 0 10px;}
	.section--present .acceptance__txt dd .txt:not(.txt--link) {margin: 0 0 18px;}
	.section--present .type--none {text-align: center;}
	
}

/* SP
============================== */
@media screen and (max-width: 960px) {
  .pc{ display: none!important;}
  .and-browser-standard .section--main .main__inner{padding: 120px 0;}
  .and-browser-standard .block--scroll {display: none;}
  .and-browser-standard .block--opening .opening__inner {
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
  }
  .and-browser-standard .block--opening .btn--skip {bottom: -80px;}
}


/* tablet
============================== */
@media screen and (min-width: 750px) and (max-width: 960px) {
	.btn--base {width: 60%;}
	.ph {margin-bottom: 40px;}
	.section-tit {font-size: 4.5vw;}
	.section--base {padding: 50px 15%;}
	.section--main {padding: 0;}
	.section--main .main__tit img {width: 38%;}
	.section--main .main__inner {height: 93.5vh;}
	.section--present {padding-bottom: 0;}
	.section--present .present__about {margin-bottom: 40px;}
	.section--present .block--acceptance {margin: 0 -22%;padding: 80px 15% 50px;}
	.section--present .block--acceptance > .tit {font-size: 26px;margin: 0 0 25px;}
	.section--present .block--acceptance > .tit > span {font-size: 18px;}
	.section--present .list--acceptance-pattern .tit {font-size: 20px;}
	.section--present .table--schedule img {width: 70%;}
	.section--present .table--schedule th span {font-size: 18px;width: 70px; height: 70px; line-height: 70px;}
	.section--present .table--schedule th, .section--present .table--schedule td {padding: 15px 40px;}
	.section--present .table--schedule td {padding-left: 0;}
}
