/* MONSTER
-----------------------------*/


/* 汎用クラス */
.tpl-sec-ttl{
	font-size: 50px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	line-height: 1;
	margin-bottom: 45px;
}
@media screen and (max-width: 750px) {
.tpl-sec-ttl{
	font-size: 35px;
	margin-bottom: 25px;
}
}

.tpl-tel-link{
	text-decoration: none !important;
	cursor: auto;
}
@media screen and (min-width: 751px) {
.tpl-tel-link{
	pointer-events: none;
}
}

.tpl-blank{
	background: url(/monster/img/blank-icon-black.png) no-repeat right 0.55em;
	padding-right: 24px;
}
@media screen and (max-width: 750px) {
.tpl-blank{
	background-size: 10px auto;
	padding-right: 12px;
}
}

.tpl-pdf{
	background: url(/monster/img/pdf-icon.png) no-repeat right 0.5em;
	padding-right: 30px;
}
@media screen and (max-width: 750px) {
.tpl-pdf{
	background-size: 11px auto;
	padding-right: 15px;
}
}

.tpl-check-btn{
	height: 60px;
	line-height: 60px;
	text-align: center;
}
.tpl-check-btn a{
	display: block;
	color: white;
	text-decoration: none !important;
	font-size: 16px;
	background-color: black;
	border: 1px solid black;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 751px) {
.tpl-check-btn a:hover{
	color: black;
	background-color: #FFDC00;
}
}
.tpl-check-btn--blank a{
	background-image: url(/monster/img/blank-icon-white.png);
	background-repeat: no-repeat;
	background-position: right 30px center;
}
@media screen and (min-width: 751px) {
.tpl-check-btn--blank a:hover{
	background-color: white;
	background-image: url(/monster/img/blank-icon-black.png);
}
}
@media screen and (max-width: 750px) {
.tpl-check-btn a{
	font-size: 14px;
	background-size: 10px auto;
}
}


/* #tpl-menu-btn */
#tpl-menu-btn{
	width: 70px;
	height: 70px;
	background-color: black;
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	cursor: pointer;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
	-webkit-align-items: center; /* Safari */
	align-items:         center;
}
#tpl-menu-btn .tpl-menu-btn--line {
    position: relative;
    width: 35px;
    height: 25px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#tpl-menu-btn.active .tpl-menu-btn--line {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}
#tpl-menu-btn .tpl-menu-btn--line>div {
	background-color: white;
	width: 100%;
	height: 3px;
	display: block;
	position: absolute;
	left: 0;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#tpl-menu-btn .tpl-menu-btn--line>div:nth-child(1) {
	top: 0;
}
#tpl-menu-btn .tpl-menu-btn--line>div:nth-child(2) {
	top: 11px;
	opacity: 1;
}
#tpl-menu-btn .tpl-menu-btn--line>div:nth-child(3) {
	top: 22px;
}
#tpl-menu-btn.active .tpl-menu-btn--line>div:nth-child(1) {
	top: -9px;
	-webkit-transform: translateY(20px) rotate(-315deg);
	transform: translateY(20px) rotate(-315deg);
}
#tpl-menu-btn.active .tpl-menu-btn--line>div:nth-child(2) {
	opacity: 0;
}
#tpl-menu-btn.active .tpl-menu-btn--line>div:nth-child(3) {
	top: 31px;
	-webkit-transform: translateY(-20px) rotate(315deg);
	transform: translateY(-20px) rotate(315deg);
}
@media screen and (max-width: 750px) {
#tpl-menu-btn{
	width: 50px;
	height: 50px;
}
#tpl-menu-btn .tpl-menu-btn--line {
    width: 25px;
    height: 18px;
}
#tpl-menu-btn .tpl-menu-btn--line>div {
	height: 2px;
}
#tpl-menu-btn .tpl-menu-btn--line>div:nth-child(2) {
	top: 8px;
}
#tpl-menu-btn .tpl-menu-btn--line>div:nth-child(3) {
	top: 16px;
}
#tpl-menu-btn.active .tpl-menu-btn--line>div:nth-child(1) {
	top: -13px;
}
#tpl-menu-btn.active .tpl-menu-btn--line>div:nth-child(3) {
	top: 27px;
}
}


/* #tpl-nav */
#tpl-nav{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #FFDC00;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
	-webkit-align-items: center; /* Safari */
	align-items:         center;
	letter-spacing: 0.06em;
}
#tpl-nav.active{
	opacity: 1;
	pointer-events: auto;
}
#tpl-nav ul{
	font-size: 30px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	line-height: 1;
}
#tpl-nav ul li{
	margin-bottom: 40px;
	text-align: center;
}
#tpl-nav ul li:last-child{
	margin-bottom: 0;
}
#tpl-nav ul li a{
	text-decoration: none;
	position: relative;
}
#tpl-nav ul li a::after{
	content: "";
	display: block;
	background-color: black;
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: -3px;
	left: 0;
	transform: scale(0,1);
	transform-origin: center center;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#tpl-nav ul li a:hover::after{
	transform: scale(1,1);
}
@media screen and (max-width: 750px) {
#tpl-nav ul{
	font-size: 20px;
}
#tpl-nav ul li{
	margin-bottom: 35px;
}
#tpl-nav ul li a::after{
	display: none;
}
}


/* #tpl-monster-logo */
#tpl-monster-logo{
	padding-top: 300px;
	margin-bottom: -50px;
	background-color: #FFDC00;
	background-image: url(/monster/img/header-logo-pc.png);
	background-repeat: no-repeat;
	background-position: center 55px;
	-webkit-backface-visibility: hidden;
	text-indent: -9999px;
}
@media screen and (max-width: 750px) {
#tpl-monster-logo{
	padding-top: 86.666666666%;
	background-image: url(/monster/img/header-logo-sp.png);
	background-position: center 32%;
	background-size: 93.6% auto;
	margin-bottom: -27%;
}
}


/* #tpl-contents */
#tpl-contents{
	margin: 0;
	padding: 0;
	letter-spacing: 0.06em;
}


/* .tpl-section */
.tpl-section{
	padding: 100px 0;
}
@media screen and (max-width: 750px) {
.tpl-section{
	padding: 70px 0 80px;
}
}


/*　#section-works　*/
#section-works{
	margin-bottom: -6%;
}
#section-works .item--img .data{
	background-color: white;
}


/*　#section-awards　*/
#section-awards{
	padding-top: 150px;
	background-color: #FFDC00;
	text-align: center;
}
@media screen and (max-width: 750px) {
#section-awards{
	padding-top: 90px;
}
}


/*　#section-producer　*/
#section-producer .tpl-sec-ttl{
	text-align: center;
}
#section-producer .section-producer--list{
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
}
#section-producer .section-producer--list li{
	width: 20%;
	position: relative;
}
#section-producer .section-producer--list li a{
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
	-webkit-align-items: center; /* Safari */
	align-items:         center;
	text-decoration: none;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#section-producer .section-producer--list li:nth-child(odd) a{
	background-color: #F2F2F2;
}
#section-producer .section-producer--list-inner{
	text-align: center;
}
#section-producer .section-producer--list--jp{
	font-size: 23px;
	margin-bottom: 5px;
}
#section-producer .section-producer--list--en{
	font-size: 13px;
	font-family: 'Montserrat', sans-serif;
}
@media screen and (min-width: 751px) {
#section-producer .section-producer--list li a:hover{
	background-color: #FFDC00;
}
}
@media screen and (max-width: 750px) {
#section-producer .section-producer--list{
	display: block;
}
#section-producer .section-producer--list li{
	width: auto;
	padding-top: 0;
}
#section-producer .section-producer--list li a{
	position: static;
	display: block;
	padding: 8px;
	width: auto;
}
#section-producer .section-producer--list--jp{
	font-size: 15px;
	margin-bottom: 0;
}
#section-producer .section-producer--list--en{
	font-size: 10px;
}
}


/*　#section-contact　*/
#section-contact{
	background-color: #FFDC00;
}
#section-contact .tpl-sec-ttl{
	text-align: center;
}
#section-contact .section-contact--info{
	width: 500px;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
	margin: auto;
}
#section-contact .section-contact--info dt{
	width: 185px;
	font-size: 18px;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
}
#section-contact .section-contact--info dd{
	width: 315px;
	font-size: 16px;
}
#section-contact .section-contact--info--map a{
	margin-right: 27px;
}
@media screen and (max-width: 750px) {
#section-contact .section-contact--info{
	width: auto;
	display: block;
	text-align: center;
}
#section-contact .section-contact--info dt{
	width: auto;
	font-size: 15px;
}
#section-contact .section-contact--info dd{
	width: auto;
	font-size: 14px;
	margin-bottom: 5px;
}
#section-contact .section-contact--info--map a{
	margin-right: 20px;
}
}


/*　#section-recruit　*/
#section-recruit{
	text-align: center;
}
@media screen and (min-width: 751px) {
#section-recruit .tpl-check-btn a:hover{
	background-color: white;
}
}


/*　#tpl-monster-footer　*/
#tpl-monster-footer{
	text-align: center;
	background-color: black;
	height: 110px;
	line-height: 110px;
	position: relative;
}
#tpl-monster-footer .copyright{
	color: white;
	font-size: 12px;
	letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
#tpl-monster-footer{
	height: 100px;
	line-height: 100px;
}
#tpl-monster-footer .copyright{
	font-size: 12px;
}
}


/*　#tpl-pagetop　*/
#tpl-pagetop{
	width: 70px;
	height: 70px;
	background-color: black;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#tpl-pagetop.show{
	opacity: 1;
	pointer-events: auto;
}
#tpl-pagetop.is-absolute{
	position: absolute;
	top: -70px;
}
#tpl-pagetop a{
	display: block;
}
#tpl-pagetop a::before,
#tpl-pagetop a::after{
	position: absolute;
	top: 32px;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
#tpl-pagetop a::before{
	width: 22px;
	height: 22px;
	border-top: 2px solid white;
	border-right: 2px solid white;
	-webkit-transform: scale(1,0.85) rotate(-45deg);
	transform: scale(1,0.85) rotate(-45deg);
}
@media screen and (max-width: 750px) {
#tpl-pagetop{
	width: 50px;
	height: 50px;
}
#tpl-pagetop.is-absolute{
	top: -50px;
}
#tpl-pagetop a::before,
#tpl-pagetop a::after{
	top: 23px;
}
#tpl-pagetop a::before{
	width: 16px;
	height: 16px;
	border-top: 2px solid white;
}
}

.iten{
	text-align: center;
	padding-bottom: 10px;
}