@charset "UTF-8";

/*------------------------
ローディング画面
------------------------*/
#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
#loading.finished {
	opacity: 0;
	visibility: hidden;
}
#loading .inner {
	width: 74vw;
	height: 100vh;
	margin: auto;
	transform: scale(.6);
	position: relative;
	opacity: 0;
}
#loading.animate .inner{
	animation: zoomIn 9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

#loading .inner::before{
	content: "";
	width: 100%;
	height: inherit;
	background: url(/pc/img/takui_w.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 7vw;
	left: 0;
	right: 0;
	margin: auto;
	opacity: .2;
}
#loading .inner img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#skip-button{
	position: absolute;
	bottom: 4vw;
	right: 6vw;
	padding: 0;
	background: none;
}
#skip-button::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 21px;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--txtcolor);
	border-radius: 50vh;
	z-index: 1;
}
#skip-button span{
	display: inline-block;
	line-height: 1;
	font-size: 2.1rem;
	font-weight: bold;
	padding: 20px 80px 20px 0;
	position: relative;
}
#skip-button span::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: 1px solid var(--txtcolor);
	border-radius: 50vh;
}
#skip-button span::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	width: 48px;
	height: 1px;
	background: var(--txtcolor);
	transition: all 0.3s ease-in-out;
}
#skip-button span:hover::after{
	width: 0;
}


/* ローディングアニメーション */
@keyframes zoomIn {
	0% {
		transform: scale(0.6);
		opacity: 0;
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}


/*------------------------
kv
------------------------*/
.kv {
}
.kv #header {
	min-width: 400px;
	padding: 0 0 20px 25px;
	background: #A21118;
	height: calc(100vh - 71px);
	min-height: 854px;
}
.kv #header .logo-area {
	margin-bottom: 15px;
}
.kv #header .logo-area .logo {
	background: var(--txtcolor);
	padding: 6px;
	width: 80px;
	margin-right: 15px;
}
.kv #header .logo-area .txt {
	padding-top: 30px;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
}
.kv #header .logo-area .txt strong {
	display: block;
	font-size: 28px;
}
.kv .g-nav {
	margin-bottom: 15px;
}
.kv .g-nav ul li a {
	display: inline-block;
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	padding: 8px 0;
	position: relative;
	color: #fff;
	z-index: 10;
}
.kv .g-nav ul li a::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	inset: 0 0 0 0;
	background: var(--txtcolor);
	transform: scaleX(0);
	transform-origin: bottom right;
	z-index: -1;
	transition: transform .3s ease;
}
.kv .g-nav ul li a:hover::before {
	transform: scaleX(1);
	transform-origin: bottom left;
}
.kv .fanclub {
	width: 200px;
	background: var(--bgcolor);
	padding: 14px 20px 20px;
	text-align: center;
	position: relative;
	margin-bottom: 25px;
}
.kv .fanclub::before ,
.kv .fanclub::after {
	content: '';
	position: absolute;
	top: 5.74vw;
	width: 0;
	height: 0;
}
.kv .fanclub::before {
	border-style: solid;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #A21118;
	left: 0;
}
.kv .fanclub::after {
	border-style: solid;
	border-width: 5px 9px 5px 0;
	border-color: transparent #A21118 transparent transparent;
	right: 0;
}
.kv .fanclub .ashi {
	width: 60px;
	margin: 0 auto 14px;
	transform: rotate(-10deg);
}
.kv .fanclub h2 {
	font-size: 25px;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 15px;
	border-bottom: 2px dashed var(--txtcolor);
	margin-bottom: 15px;
}
.kv .fanclub .l-btn a {
	display: block;
	padding: 10px;
	background: var(--txtcolor);
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	letter-spacing: .1em;
	margin-bottom: 3px;
}
.kv .fanclub .j-btn a {
	display: block;
	padding: 10px;
	background: var(--btncolor);
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	letter-spacing: .1em;
}
.kv .fanclub a:hover {
	background: var(--mygray);
}
.kv .sns-area {
	align-items: center;
}
.kv .sns-area span a {
	display: block;
	margin-right: 12px;
}
.kv .sns-area span a img {
	width: 25px;
	height: 25px;
}

.kv .online-shop {
	width: 200px;
	margin-bottom: 25px;
}
.kv .online-shop a{
	display: block;
}
.kv .online-shop a:hover{
	opacity:.7;
}

/*slider*/
.kv .slide-wrap {
	position: relative;
	background: url(/pc/img/index/slide00.jpg) no-repeat 100%/cover;
	background-position: center;
	min-width: 66.6vw;
	height: calc(100vh - 71px);
	min-height: 854px;
	flex: 1;
}


.kv .slide-wrap .slider {
	opacity: 0;
	transition: opacity .3s ease;
	width: 100%;
}
.kv .slide-wrap .slider.slick-initialized {
	opacity: 1;
	background: #fff;
}
.kv .slide-wrap .slider .slick-slide {
	height: calc(100vh - 71px);
	min-height: 854px;
}
.kv .slide-wrap .slider .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.kv .slide-wrap .name {
	position: absolute;
	bottom: 3.125vw;
	right: 2.083vw;
	width: 34.896vw;
	transform: rotate(-10deg);
}
.kv .slide-wrap .name img {
	width: 100%;
}
@media screen and (max-width:1200px) {
	.kv .slide-wrap {
	}
}

.kv .slide-wrap .sub-text {
	position: absolute;
	bottom: 40px;
	left: 40px;
	width: 800px;
}
/* 自動化 */
.kv .slide-wrap .slider .item.contain img{
	object-fit: contain;
}
.kv .slide-wrap .slider .item.contain .img_bg{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.kv .slide-wrap .slider .item.contain .img_bg img{
	object-fit: cover;
}




/*------------------------
更新情報
------------------------*/
.new_contents{
	background: #000000;
	color: #fff;
}
.new_contents .inner{
	width: 1200px;
	margin: 0 auto;
	padding: 18px 0;
	align-items: center;
	overflow: hidden;
}
.new_contents .new_ttl{
	display: inline-block;
	background: var(--btncolor);
	padding-left: 10px;
	font-size: 1.6rem;
	color: #fff;
	line-height: 1;
	margin-right: 45px;
}
.new_contents .new_ttl span{
	display: inline-block;
	border-left: 1px solid #fff;
	padding: 8px 30px 11px;
	letter-spacing: .1rem;
	white-space: nowrap;
}
.new_contents .item_wrap{
	flex: 1;
}
.new_contents .item {
	font-size: 1.7rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.new_contents .item .day{
	margin-right: 2rem;
}
.new_contents .item .txt{
}

/*------------------------
バナー
------------------------*/
.top-bnr {
	padding: 30px 0;
	background: url(/pc/img/common/bg_black.jpg) 100%/cover;
	background-position: center;
	margin-bottom: 90px;
}
.top-bnr .inner{
	width: 1200px;
	margin: 0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
}
.top-bnr .block {
	width: 380px;
	margin: 0 10px;
}
.top-bnr .block a {
	display: block;
	height: auto;
}
.top-bnr .block img {
	transition: all .3s ease 0s;
}
.top-bnr .block a:hover,
.top-bnr .block a:hover img {
	transform:scale(1.02,1.02);
	transition: .3s all;
}
.top-bnr .bnr a .head {
	display: block;
	padding-top: 10px;
	font-size: 1.8rem;
	text-align: center;
	color: #fff;
}
.top-bnr .bnr a .recruitment {
	display: block;
	padding: 42px 0 0 24px;
	font-weight: bold;
	line-height: 1.24;
	text-shadow: 2px 2px 0 var(--accentcolor), -2px -2px 0 var(--accentcolor),-2px 2px 0 var(--accentcolor), 2px -2px 0 var(--accentcolor),0px 2px 0 var(--accentcolor),  0 -2px 0 var(--accentcolor),-2px 0 0 var(--accentcolor), 2px 0 0 var(--accentcolor);
}
.top-bnr .bnr a .recruitment b {
	display: block;
	font-size: 2.1rem;
	letter-spacing: .12em;
}
.top-bnr .bnr a .link {
	display: block;
	font-size: 1.8rem;
	text-align: right;
	color: #fff;
	padding: 46px 10px 10px;
}
/*バナーのスライド*/
.top-bnr .slider{
	display: none;
}
.top-bnr .slider.slick-initialized{
	display: block; /*slick-initializedが付与されたら表示*/
}
.top-bnr .slick-prev,
.top-bnr .slick-next{
	width: 28px;
	height: 72px;
}
	.top-bnr .slick-prev{
		left: -30px;
}
.top-bnr .slick-next{
		right: -30px;
}
.top-bnr .slick-arrow:before{
	content:""!important;
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity .3s ease 0s;
	opacity: 1!important;
}
.top-bnr .slick-next:hover:before,
.top-bnr .slick-prev:hover:before{
	opacity: .6!important;
}

.top-bnr .slick-next:before{
	background: url(/pc/img/common/slick_arrow_right.svg)!important;
	background-size: contain!important;
}

.top-bnr .slick-prev:before{
	background: url(/pc/img/common/slick_arrow_right.svg)!important;
	background-size: contain!important;
	transform: scale(-1, 1);
}

/*------------------------
news
------------------------*/
section .ttl {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}
section .ttl .mf {
	font-size: 5.2rem;
	line-height: 1;
	margin-bottom: 10px;
}
section .ttl .lead {
	font-size: 1.8rem;
}
.news {
	width: 1200px;
	margin: 0 auto 90px;
}
.news .tab_area {
	text-align: center;
	justify-content: space-between;
	margin-bottom: 50px;
	border-bottom: 1px solid var(--mygray);
}
.news .tab_area .one_tab {
	width: 100%;
}
.news .tab_area .one_tab a {
	display: block;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1;
	padding: 15px;
	position: relative;
	transition: none;
}
.news .tab_area .one_tab .select {
	border-left: 1px solid var(--mygray);
	border-right: 1px solid var(--mygray);
}
.news .tab_area .one_tab .select::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: var(--btncolor);
}
.news .tab_area .one_tab .select::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}
.news .contents .tab_main {
	display: none;
}
.news .contents .tab_main.is_show {
	display: block;
}
.news .contents .tab_main ul {
	overflow: hidden;
}
/* .news .contents .tab_main ul li:first-of-type {
	float: left;
	width: 460px;
	margin: 0 30px 30px 0;
	position: relative;
} */
/* .news .contents .tab_main ul li:first-of-type a {
	flex-direction: column;
} */
.news .contents .tab_main ul li a:hover {
	opacity: .7;
}
.news .contents .tab_main ul li a:hover h3 {
	color: var(--btncolor);
}
/* .news .contents .tab_main ul li:first-of-type .img {
	width: 100%;
	height: 360px;
	margin-bottom: 16px;
} */
.news .contents .tab_main ul li .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.news .contents .tab_main ul li .txt {
	flex: 1;
}
.news .contents .tab_main ul li .cat {
	display: inline-block;
	background: var(--btncolor);
	padding-left: 6px;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1;
	margin-bottom: 2px;
}
/* .news .contents .tab_main ul li:first-of-type .cat {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 1.6rem;
	margin-bottom: 10px;
} */
.news .contents .tab_main ul li .cat span {
	display: inline-block;
	border-left: 1px solid #fff;
	padding: 6px 10px;
}
/* .news .contents .tab_main ul li:first-of-type h3 {
	font-size: 2rem;
	line-height: 1.3;
	margin-bottom: 4px;
} */
.news .contents .tab_main ul li .date {
	font-size: 1.4rem;
	line-height: 1;
	color: #020101;
}
/* .news .contents .tab_main ul li:nth-of-type(2) ,
.news .contents .tab_main ul li:nth-of-type(3) {
	overflow: hidden;
	width: 710px;
	margin-bottom: 20px;
}
.news .contents .tab_main ul li:nth-of-type(2) .img ,
.news .contents .tab_main ul li:nth-of-type(3) .img {
	width: 250px;
	height: 170px;
	margin-right: 20px;
}
 */
.news .contents .tab_main ul li{
	clear: both;
	width: 100%;
	margin-bottom: 20px;
}
.news .contents .tab_main ul li .img {
	width: 140px;
	height: 100px;
	margin-right: 20px;
}
/*------------------------
movie
------------------------*/
.movie {
	padding: 90px 0;
	background: radial-gradient( #f9f9f9 0%, #e5e5e5 300%);
	position: relative;
}
section .inner {
	width: 1200px;
	margin: auto;
}
.movie .inner .icn-area {
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin: auto;
}
.movie .inner .icn-area div {
	position: absolute;
	width: 170px;
	height: 170px;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #f5f5f5;
	border-radius: 50%;
	z-index: -1;
}
.movie .inner .icn-area .icn {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.movie .inner .icn-area .icn img {
	display: block;
	width: 67px;
	margin: auto;
}
.movie .blocklist {
	width: 800px;
	margin: 0 auto 20px;
	flex-wrap: wrap;
}
.movie .blocklist .block:first-of-type {
	width: 100%;
	margin-bottom: 40px;
}
.movie .blocklist .block a {
	display: block;
}
.movie .blocklist .block a:hover {
	opacity: .7;
}
.movie .blocklist .block a:hover h3 {
	color: var(--btncolor);
}
.movie .blocklist .block .img {
	display: block;
	margin-bottom: 10px;
	background: var(--txtcolor);
}
.movie .blocklist .block .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.movie .blocklist .block:first-of-type .img {
	height: 500px;
}
.movie .blocklist .block:first-of-type h3 {
	font-size: 2.2rem;
	font-weight: bold;
}
.movie .blocklist .block:nth-child(n+2) {
	width: 385px;
}
.movie .blocklist .block:nth-child(2) {
	margin-right: 30px;
}
.movie .blocklist .block:nth-child(n+2) .img {
	height: 260px;
}
.movie .blocklist .block:nth-child(n+2) h3 {
	font-size: 1.8rem;
}
/*------------------------
fc
------------------------*/
.fc {
	padding: 90px 0;
	background: #a21118;
	position: relative;
}
section.fc .ttl{
	color: #fff;
}
.fc .inner .icn {
	position: absolute;
	width: 170px;
	height: 170px;
	top: -40px;
	left: 0;
	right: 0;
	margin: auto;
	background: #a21118;
	border-radius: 50%;
}
.fc .inner .icn img {
	display: block;
	width: 80px;
	margin: 44px auto;
	transform: rotate(-10deg);
}
.fc .inner ul {
	margin-bottom: 50px;
}
.fc .inner ul li {
	width: 380px;
	position: relative;
}
.fc .inner ul li:not(:nth-of-type(3n)) {
	margin-right: 30px;
}
.fc .inner ul li .ribbon {
	position: absolute;
	top: -6px;
	left: -6px;
	width: 86px;
	height: 88px;
	overflow: hidden;
}
.fc .inner ul li .ribbon .no {
	display: inline-block;
	position: absolute;
	padding: 4px 0 8px;
	left: -48px;
	top: 16px;
	width: 160px;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1;
	background: var(--txtcolor);
	color: #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.fc .inner ul li .ribbon .no b {
	font-size: 1.8rem;
	color: var(--accentcolor);
}
.fc .inner ul li .ribbon .no::before ,
.fc .inner ul li .ribbon .no::after {
	position: absolute;
	content: "";
	border-top: 4px solid #701504;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	bottom: -4px;
}
.fc .inner ul li .ribbon .no::before {
	left: 20px;
}
.fc .inner ul li .ribbon .no::after {
	right: 22px;
}
.fc .inner ul li .img img {
	width: 100%;
	height: 235px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.fc .inner ul li .txt {
	position: relative;
	min-height: 186px;
	margin: -20px 15px;
	background: #fff;
	padding: 15px 20px;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
}
.fc .inner ul li .txt h3 {
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.2;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--btncolor);
	margin-bottom: 10px;
}
.fc .inner .caution {
	text-align: center;
	margin-bottom: 60px;
	color: #fff;
}
.fc .inner .caution span {
  position: relative;
  z-index: 1;
}
.fc .inner .caution span:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 2px;
	background: #fff;
	z-index: -1;
	transition: all .8s;
}
.fc .inner .caution span.is-active:after {
	width: 100%;
}
.fc .inner .btn-area {
	justify-content: center;
}
.fc .inner .btn-area .l-btn {
	margin-right: 20px;
}
.fc .inner .btn-area div a {
	display: block;
	position: relative;
	padding: 20px;
	width: 340px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1;
}
.fc .inner .btn-area .l-btn a {
	background: #ffffff;
	color: var(--txtcolor);
}
.fc .inner .btn-area .j-btn a {
	background: var(--accentcolor);
	color: var(--txtcolor);
}
.fc .inner .btn-area div a::before {
	content: '';
	position: absolute;
	bottom: -3px;
	right: -3px;
	width: 100%;
	height: 1px;
	transition: .2s ease 0s;
}
.fc .inner .btn-area .l-btn a::before {
	background: #ffffff;
}
.fc .inner .btn-area .j-btn a::before {
	background: var(--accentcolor);
}
.fc .inner .btn-area div a::after {
	content: '';
	position: absolute;
	top: 3px;
	right: -3px;
	width: 1px;
	height: 100%;
	transition: .2s ease .2s;
}
.fc .inner .btn-area .l-btn a::after {
	background: #ffffff;
}
.fc .inner .btn-area .j-btn a::after {
	background: var(--accentcolor);
}
.fc .inner .btn-area div a:hover::before {
	width: 0%;
}
.fc .inner .btn-area div a:hover::after {
	height: 0%;
}
.fc .inner .btn-area div a:hover {
	background: var(--mygray);
}
/*------------------------
instagram
------------------------*/
.instagram {
	padding: 90px 0 120px;
}
.instagram .instagram_list {
	display: flex;
	flex-wrap: wrap;
	width: 1000px;
	margin: 0 auto 20px;
}
.instagram .instagram_list li {
	width: 235px;
	margin-bottom: 20px;
	overflow: hidden;
}
.instagram .instagram_list li:not(:nth-of-type(4n)) {
	margin-right: 20px;
}
.instagram .instagram_list li a {
	display: block;
}
.instagram .instagram_list li a:hover {
	transform:scale(1.06,1.06);
	transition: .3s all;
}
.instagram .instagram_list li a img {
	width: 100%;
	height: 235px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.instagram .instagram_list li .head {
	display: none;
}
/*------------------------
バナー
------------------------*/
.btm-bnr {
	background: url(/pc/img/common/bg_silver.jpg) 100%/cover;
	background-position: center;
	padding: 30px;
}
.btm-bnr ul {
	width: 1200px;
	margin: auto;
	justify-content: center;
}
.btm-bnr ul li:not(:last-of-type) {
	margin-right: 10px;
}
.btm-bnr ul li a:hover {
	opacity: .6;
}
