@charset "utf-8";
/* CSS Document */

/* SNS横並び表示
-------------------------*/

#sns-common .left{
	width: 48%;
}

#sns-common .right{
	width: 48%;
}

/* スタッフ表示
-------------------------*/

#staff_area ul{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

#staff_area ul li{
	width: 22%;
    float: left;
    margin-right: 4%;
    position: relative;
    margin-bottom: 30px;
    -webkit-box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

#staff_area ul li:nth-child(4n){
	margin-right: 0;
}

#staff_area ul li img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
	object-fit: cover;
    aspect-ratio: 3 / 4;
}

#staff_area ul li h3{
	position: absolute;
    width: 100%;
    background: var(--main-color);
    padding: 10px 0;
    text-align: center;
    bottom: 0;
    left: 0;
    color: var(--text-color);
    margin: 0;
}

#staff_area ul li h3 span{
	display: block;
	font-size: 70%;
	margin-bottom: 5px;
}

#staff_area ul li .emblem{
	position: absolute;
	top:5px;
	left: 5px;
	width: 40px;
	height: auto;
}

#staff_area ul li .emblem img{
    aspect-ratio: 1 / 1  !important;
}

/* エンブレム・ローディング
-------------------------*/

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff; /* 背景色 */
    opacity: 1;
    transition: opacity 0.5s ease;
}

#loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* 基本設定
-------------------------*/

html{
    scroll-behavior: smooth;
}

body{
	font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",YuGothic,'Yu Gothic',Verdana,Meiryo,sans-serif;
	font-size: 16px;
	line-height: 1.6em;
	color: #333;
	background: #fff;
	padding: 0;
	margin:0;
}

a{
    text-decoration:underline;
    color: #333;
}

a:hover {
    text-decoration:none;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

a:hover img{
    filter:alpha(opacity=90);
    -moz-opacity: 0.9;
    opacity: 0.9;
}

header{
	background: #fff;
	width: 100%;
	position: relative;
}

header #header_top{
	background: var(--main-color);
	color: var(--text-color);
	padding: 10px 0;
	font-size: 12px;
	border-bottom: 3px solid var(--sub-color);
}

#header_top .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header_top .wrap ul{
	display: flex;
	justify-content: space-between;
	padding-top: 5px;
}

#header_top .wrap ul li{
	margin: 0 5px;
}

#header_top .wrap ul li a{
	color: var(--text-color);
}

#header_top .wrap ul li a img{
	width: 15px;
	height: auto;
}

#header_inner .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1,
header h2{
    max-width: 250px;
}

header h1 img,
header h2 img{
	width: 100%;
}

ul.nav li a{
	text-decoration: none;
}

.block{
	padding: 80px 0 120px;
}

.block:nth-child(even){
	background: #eff2f3;
}

.h2_center{
	text-align: center;
	padding-bottom: 40px;
}

.h2_center h1,
.h2_center h2{
	position: relative;
	display: inline-block;
	padding-bottom: 30px;
	font-size: 24px;
	text-align: center;
	line-height: 1.5;
 }

.h2_center h1::before,
.h2_center h2::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom: 5px solid var(--main-color);
	width : 40% ;
	margin: 0 auto;
}

.fadeup {
	transition: opacity 0.7s;
	-moz-transition: opacity 0.7s;
	-webkit-transition: opacity 0.7s;
	-o-transition: opacity 0.7s;
	transition: transform 0.7s;
	-moz-transition: transform 0.7s;
	-webkit-transition: transform 0.7s;
	-o-transition: transform 0.7s;
}

a.btn {
    display: inline-block;
    padding: 20px 0;
    border: 1px solid #ccc;
    text-align: center;
    background: #fff;
    cursor: pointer;
    -webkit-transition: background-color .25s ease,color .25s ease;
    transition: background-color .25s ease,color .25s ease;
    width: 100%;
    text-decoration: none;
    margin: 80px 0 0;
}

a.btn:hover {
	background: var(--main-color);
    color: var(--text-color);
	filter:alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

/* フッター設定
-------------------------*/

footer{
	background: #333;
	padding: 100px 0 0;
	color: #fff;
}

footer a{
	color: #fff;
}

footer .block01{
	width: 40%;
	float: left;
	margin-right: 10%;
}

footer .block01 h2{
	max-width: 250px;
	margin: 0 0 30px;
}

footer .block01 h2 img{
	width: 100%;
}

footer .block01 p{
	line-height: 2;
}

footer .block01 ul{
	margin-top: 30px;
}

footer .block01 ul li{
	float: left;
    margin-right: 10px;
}

footer .block01 ul li img{
	width: 20px;
	height: auto;
}

footer .block01 ul li:last-child{
	margin-right: 0;
}

footer .block02{
	width: 20%;
	float: left;
	margin-right: 10%;
}

footer .block03{
	width: 20%;
	float: left;
}

footer .block02 h3,footer .block03 h3{
	margin: 0 0 30px;
	border-left: 5px solid #fff;
	padding-left: 10px;
}

footer .block02 ul li,footer .block03 ul li{
	border-bottom: 1px dotted #777;
    padding: 15px 10px;
    box-sizing: border-box;
}

footer .block02 ul li:first-child,footer .block03 ul li:first-child{
	border-top: 1px dotted #777;
}

footer .block02 ul li a,footer .block03 ul li a{
	text-decoration: none;
}

footer #copy{
	background: var(--main-color);
	color: var(--text-color);
	padding: 10px 0;
	text-align: center;
	font-size: 10px;
	clear: both;
	margin-top: 50px;
}

footer #producer{
	background: -moz-linear-gradient(top, #000, #383838);
	background: -webkit-linear-gradient(top, #000, #383838);
	background: linear-gradient(to bottom, #000000, #383838);
}

footer #producer a img{
	width: 100%;
}

footer #producer a{
	width: 150px;
    margin: 0 auto;
    display: block;
    padding: 15px 0 5px;
}

footer p.caution{
	margin-top: 40px;
	line-height: 2.2;
	font-size: 12px;
}

@media (max-width: 599px) {
/* small devices */

/* SNS横並び表示
-------------------------*/

#sns-common .left{
	width: 100%;
	margin-bottom: 50px;
}

#sns-common .right{
	width: 100%;
}

/* スタッフ表示
-------------------------*/

#staff_area ul li{
	width: 48%;
    float: left;
    margin-right: 4%;
    position: relative;
    margin-bottom: 30px;
}

#staff_area ul li:nth-child(2n){
	margin-right: 0;
}

#staff_area ul li h3{
    padding: 10px 0;
}

#staff_area ul li h3 span{
	margin-bottom: 5px;
	font-size: 10px;
}

/* 基本設定
-------------------------*/

.wrap{
	width: 90%;
	margin: 0 auto;
}

br.sp{
	display: none;
}

header{
	width: 100%;
	position: relative;
}

header h1,
header h2{
    max-width: 200px;
}

ul.nav li{
    margin: 0;
}

.block{
	padding: 40px 0 60px;
}

.h2_center{
	text-align: center;
	padding-bottom: 20px;
	font-size: 18px;
}

/* フッター設定
-------------------------*/

footer .block01{
	width: 100%;
	float: none;
	padding-bottom: 40px;
}

footer .block02{
	width: 100%;
	float: none;
	padding: 40px 0;
}

footer .block03{
	width: 100%;
	float: none;
	padding-top: 40px;
}

}

@media (min-width: 600px) and (max-width: 960px) {
/* tablets */

/* スタッフ表示
-------------------------*/

#staff_area ul li{
	width: 48%;
    float: left;
    margin-right: 4%;
    position: relative;
    margin-bottom: 30px;
}

#staff_area ul li:nth-child(2n){
	margin-right: 0;
}

/* 基本設定
-------------------------*/

.wrap{
	width: 90%;
	margin: 0 auto;
}

header{
	width: 100%;
	position: relative;
}

header h1,
header h2{
    max-width: 250px;
}

ul.nav li{
    margin: 0;
}

/* フッター設定
-------------------------*/

footer .block01{
	width: 100%;
	float: none;
	padding-bottom: 40px;
}

footer .block02{
	width: 100%;
	float: none;
	padding: 40px 0;
}

footer .block03{
	width: 100%;
	float: none;
	padding-top: 40px;
}
}

@media (min-width: 961px) and (max-width: 1209px) {

.wrap{
	width: 90%;
	margin: 0 auto;
}

header{
	width: 100%;
	position: relative;
}

header h1,
header h2{
    max-width: 250px;
}

}

@media (min-width: 1210px) {
   /* large desktops */

.wrap{
	width: 1200px;
	margin: 0 auto;
}

}