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

html{
    scroll-behavior: smooth;
}

body{
	font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",YuGothic,'Yu Gothic',Verdana,Meiryo,sans-serif;
	font-size: 14px;
	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;
	height: 150px;
	width: 100%;
	position: relative;
}

header #header_top{
	background: #003d69;
	color: #fff;
	padding: 10px 0;
	font-size: 12px;
	border-bottom: 3px solid #c0c0c0;
}

header h1,
header h2{
	width: 240px;
    margin: 35px 0 0;
    float: left;
}

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

ul.nav{
    float: right;
}

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

/* ----------- メイン共通CSS ----------- */

.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 #333;
	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 #333;
    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: #333;
	color: #fff;
	filter:alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ----------- 下層ページ共通CSS ----------- */

#block01{
	background: #fff;
	padding: 80px 0;
}

#block01 ul a{
	float: left;
	border-radius: 10px;
	padding: 30px 0;
	margin-right: 1%;
	text-align: center;
	box-sizing: border-box;
	width: 11.555555555%;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
    -webkit-transition: background-color .25s ease,color .25s ease;
    transition: background-color .25s ease,color .25s ease;
    background: #003d69;
    color: #fff;
}

#block01 ul a:hover {
	background: #000000;
	color: #fff;
	filter:alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

#block01 ul a:nth-child(8n){
	margin-right: 0;
}

#block01 ul a:nth-child(n + 9){
	margin-top: 20px;
}

#block01 ul a i.fas,
#block01 ul a .fa-solid{
	font-size: 350%;
    margin-bottom: 10px;
}

#block01 ul a p{
	font-size: 14px;
	font-weight: bold;
}

#block02 ul li{
	width: 100%;
	border-bottom: 1px dotted #ccc;
	padding: 30px 0;
}

#block02 ul li:first-child{
	border-top: 1px dotted #ccc;
}

#block02 ul li .img_box{
	width: 20%;
	float: left;
}

#block02 ul li .img_box img{
	width: 100%;
	height: auto;
}

#block02 ul li .text_box{
	width: 70%;
	float: right;
}

#block02 ul li .text_box p.category,
#block02 ul li .text_box p.date{
	float: left;
	margin-right: 20px;
	font-size: 12px;
	color: #081c54;
	font-weight: bold;
}

#block02 ul li .text_box h3{
	line-height: 2;
}

#block02 ul li .text_box p.text{
	font-size: 90%;
	line-height: 2;
}

ul li .text_box .new{
	font-weight: bold;
	margin-left: 10px;
	color: red;
	font-style: italic;
}

.blinking {
	-webkit-animation: blink 1s ease infinite;
	animation: blink 3s ease infinite;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

#block20{
	background: #fff;
	padding: 80px 0;
}

#block20 ul a{
	float: left;
	border: 1px solid #333;
	border-radius: 10px;
	padding: 30px 0;
	margin-right: 1%;
	text-align: center;
	box-sizing: border-box;
	width: 19%;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
    -webkit-transition: background-color .25s ease,color .25s ease;
    transition: background-color .25s ease,color .25s ease;
}

#block20 ul a:hover {
	background: #333;
	color: #fff;
	filter:alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

#block20 ul a:nth-child(5n){
	margin-right: 0;
}

#block20 ul a:nth-child(n + 6){
	margin-top: 10px;
}

#block20 ul a i.fas{
	font-size: 350%;
    margin-bottom: 10px;
}

#block20 ul a p{
	font-size: 12px;
	font-weight: bold;
}

#block03 .img_box{
	float: left;
	width: 40%;	
}

#block03 .img_box img{
	width: 100%;
	height: auto;
}

#block03 .text_box{
	width: 50%;
	float: right;
}

#block03 .text_box p{
	line-height: 2.2;
}

#block03 .btn-area{
	width: 100%;
}

#block03 .btn-area a{
	float: left;
	width: 48%;
}

#block03 a.btn:last-child{
	float: right;
}

/* ----------- ブログ共通CSS ----------- */

#result_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;
}

#result_area ul li{
	width: 30%;
	background: #fff;
	margin-right: 5%;
	float: left;
	box-sizing: border-box;
	margin-bottom: 50px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

#result_area ul li a{
	padding: 30px 20px;
 	text-decoration: none;
}

#result_area ul li a:hover:before {
	transform: scale(1);
}

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

#result_area ul li p.category{
    font-size: 12px;
    color: #333;
    float: left;
}

#result_area ul li p.category span:nth-child(n + 2){
	margin-left: 5px;
}

#result_area ul li p.date{
	color: #ccc;
	font-size: 10px;
	float: right;
}

#result_area ul li .img_box{
	max-width: 100%;
    height: auto;
    overflow: hidden;
    margin: 20px 0;
    padding: 0;
    display: grid;
}

#result_area ul li .img_box img{
	width: 100%;
	height: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
}

#result_area ul li a:hover{
	filter:alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

#result_area ul li a:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#result_area ul li h3{
	font-size: 14px;
	line-height: 2.2;
	margin: 0;
}

#result_area ul li h3 span {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(0, #ffe500));
    background-image: linear-gradient(180deg, transparent 65%, #ffe500 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    -webkit-transition: background-size .6s ease;
    transition: background-size .6s ease;
}

#result_area ul li a:hover h3 span{
	background-size: 100% 100%;
}
					

#result_area ul li p.text{
	margin-top: 20px;
	font-size: 12px;
	line-height: 2;
}

#result_area ul li h3 a,#result_area ul li p.text a{
	text-decoration: none;
}

#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;
}

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

#staff_area ul li img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#staff_area ul li h3{
	position: absolute;
    width: 100%;
    background: #003d69;
    padding: 20px 0;
    text-align: center;
    bottom: 0;
    left: 0;
    color: #fff;
    margin: 0;
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    opacity: 0.9;
}

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

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


/* ----------- フッター共通CSS ----------- */

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

footer a{
	color: #fff;
}

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

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

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

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

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 #banner-area{
	clear: both;
    margin: 100px 0 0;
}

footer #banner-area h3{
	color: #fff;
    text-align: center;
    letter-spacing: .1em;
    margin: 50px 0;
    font-size: 24px;
}

footer #banner-area h3 {
    display: flex;
    align-items: center;
}
 
footer #banner-area h3:before,
footer #banner-area h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}
 
footer #banner-area h3:before {
    margin-right: 1rem;
}
 
footer #banner-area h3:after {
    margin-left: 1rem;
}

footer #banner-area ul li{
	float: left;
	width: 22%;
	margin: 10px 4% 10px 0;
}

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


footer #banner-area ul li img{
	width: 100%;
}

footer #copy{
	background: #003d69;
	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: 200px;
    margin: 0 auto;
    display: block;
    padding: 15px 0 5px;
}

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

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

#label-menu{
	display: none;
}

#label-menu ul.sp{
	position: fixed;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: 100%;
}

#label-menu ul.sp a{
	color: #fff;
	text-decoration: none;
	display: block;
	border-right: 1px solid #272525;
	width: 25%;
    float: left;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: background-color .25s ease,color .25s ease;
    transition: background-color .25s ease,color .25s ease;
    background: #333;
}

#label-menu ul.sp a:hover {
    background: #000;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

#label-menu ul.sp a li{
	font-size: 12px;
	text-align: center;
	padding: 10px 0px;
}

#label-menu ul.sp a:last-child{
	border-right: 0;
}

#label-menu ul.sp .fa{
	display: block;
    text-align: center;
   margin: 0 auto 5px;
    font-size: 140%;
}

#label-menu ul.sp .fas{
	display: block;
    text-align: center;
    margin: 0 auto 5px;
    font-size: 140%;
}

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

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

br.sp{
	display: none;
}

header{
	height: 80px;
	width: 100%;
	position: relative;
}

header #header_top{
	display: none;
}

header h1,
header h2{
	position: absolute;
    top: 0;
    left: 0;
	width: 220px;
	margin: 23px 0 0 5%;
}

header .wrap{
	width: 100%;
}

ul.nav li{
    margin: 0;
}

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

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

.h2_center h1::before,
.h2_center h2::before {
	border-bottom: 3px solid #333;
}

/* ----------- フッター共通CSS ----------- */

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;
}

footer #banner-area ul li{
	float: left;
	width: 48%;
	margin-right: 4%;
}

footer #banner-area ul li:nth-child(even){
	margin-right: 0;
}

#label-menu{
	display: block;
}

footer #producer{
	padding-bottom: 57px;
}

/* ----------- 下層ページ共通CSS ----------- */

#block01{
	padding: 20px 0 50px;
}
 
#block01 ul a{
    padding: 20px 0;
    margin-right: 4%;
    width: 48%;
    margin-bottom: 15px;
}

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

#block01 ul a i.fas{
	font-size: 150%;
    margin-bottom: 10px;
}

#block01 ul a i.fas,
#block01 ul a .fa-solid{
	font-size: 150%;
    margin-bottom: 10px;
}

#block01 ul a p{
	font-size: 12px;
	font-weight: bold;
}

#block02 ul li .img_box{
	width: 48%;
}

#block02 ul li .text_box{
	width: 48%;
}

#block02 ul li .text_box p.category,
#block02 ul li .text_box p.date{
	margin-right: 10px;
	font-size: 80%;
}

#block02 ul li .text_box h3{
	font-size: 14px;
	margin: 20px 0 0;
}

#block02 ul li .text_box p.text{
	display: none;
}


#block20 ul a{
    padding: 15px 0;
    margin-right: 4%;
    width: 48%;
    margin-top: 10px;
}

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

#block20 ul a:nth-child(5) {
	margin-right: 4%;
}

#block20 ul a:nth-child(-n+2){
	margin-top: 0;
}

#block20 ul a i.fas{
	font-size: 250%;
    margin-bottom: 10px;
}

#block03 .img_box{
	width: 100%;
	margin-bottom: 40px;
}

#block03 .text_box{
	width: 100%;
}

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

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

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

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


/* ----------- ブログ共通CSS ----------- */

#result_area ul li{
	width: 100%;
	background: #fff;
	margin-right: 0;
}

#result_area ul li:last-child{
	margin-bottom: 0 !important;
}

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

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


}

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

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

header{
	height: 80px;
	width: 100%;
	position: relative;
}

header #header_top{
	display: none;
}

header h1,
header h2{
	position: absolute;
    top: 0;
    left: 0;
	width: 300px;
    margin: 15px 0 0 5%;
}

header .wrap{
	width: 100%;
}

ul.nav li{
    margin: 0;
}

/* ----------- 下層ページ共通CSS ----------- */

#block01 ul a{
    padding: 30px 0;
    margin-right: 3%;
    width: 22%;
}

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

#block01 ul a i.fas{
	font-size: 250%;
    margin-bottom: 10px;
}

#block01 ul a i.fas,
#block01 ul a .fa-solid{
	font-size: 250%;
    margin-bottom: 10px;
}

#block01 ul a:nth-child(-n+5){
	margin-bottom: 20px;
}

#block02 ul li .img_box{
	width: 30%;
}

#block02 ul li .text_box{
	width: 60%;
}


#block03 .img_box{
	width: 100%;
	margin-bottom: 40px;
}

#block03 .text_box{
	width: 100%;
}

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

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


/* ----------- ブログ共通CSS ----------- */

#result_area ul li{
	width: 100%;
	background: #fff;
	padding: 20px 20px;
	margin-right: 0;
}

#result_area ul li:last-child{
	margin-bottom: 0 !important;
}

/* ----------- フッター共通CSS ----------- */

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: 1100px) {

header{
	height: 80px;
	width: 100%;
	position: relative;
}

header #header_top{
	display: none;
}

header h1,
header h2{
	position: absolute;
    top: 0;
    left: 0;
    width: 280px;
	margin: 15px 0 0 5%;
}

}

@media (min-width: 960px) and (max-width: 1280px) {
/* desktops */

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

.nav a{
	background: transparent !important;
	float: left;
}

}

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

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

}