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


.about__hero{
	position: relative;
	width: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/top/about.jpg);
	background-size: cover;
	background-position: center center;
	min-height: 500px;
}
.about__hero__inner{
	font-family: Hiragino Mincho Pro , 'Hiragino Mincho Pro' , serif;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	font-size: 30px;
	color: #fff;
	width: 90%;
	max-width: 1000px;
	margin:0 auto;
	padding-top: 400px;
}
.about__hero__inner span{
	display: block;
	font-size: 15px;
	margin: 10px 0 0;
	letter-spacing: 0.1em;
}
@media print, screen and (max-width: 640px) {
	.about__hero{
		min-height: 200px;
	}
	.about__hero__inner{
		font-size: 20px;
		line-height: 1.3em;
		padding-top: 100px;
	}
	.about__hero__inner span{
		font-size: 12px;
		line-height: 1em;
	}
}


.about__main{
	background: #fff;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 0 100px;
}

.about__text{
	font-size: 14px;
	line-height: 1.8em;
	margin: 60px 0 60px;
}
.about__text span{
	font-size: 18px;
	line-height: 1.8em;
}
.about__text a{
	color: #333;
	text-decoration: underline;
}

@media print, screen and (max-width: 640px) {
	.about__text{
		font-size: 12px;
	}
	.about__text span{
		font-size: 16px;
	}
}

h3{
	font-size: 24px;
	border-bottom: 1px solid #38ACFF;
	padding-bottom: 10px;
	margin-bottom: 40px;
}
h4{
	font-size: 20px;
	border-bottom: 1px solid #38ACFF;
	padding-bottom: 10px;
	margin: 180px 0 40px;
}
@media print, screen and (max-width: 640px) {
	h4{
		margin: 100px 0 40px;
	}
}

.carousel-cell {
  width: 100%;
  height: auto;
  padding: 0;
}
.carousel-cell img{
	display: block;
	margin: 0 auto;
	width: 100%;
	height: 300px;
	object-fit: contain;
	padding-bottom: 20px;
}
.carousel-cell .caption{
	display: block;
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
/*
	background: rgba(0,0,0,0.7);
	color: #fff;
*/
	font-size: 14px;
	box-sizing: border-box;
}

.carousel-nav .carousel-cell {
  margin: 20px 0 0;
  width: 11%;
  background-size: cover;
  background-position: center center;
  padding: 0;
  border: 3px solid #fff;
  box-sizing: border-box;
  border-radius: 0;
  cursor: pointer;
}
.carousel-nav .carousel-cell:after{
	content: "";
	display: block;
	padding-top: 100%;
}
.carousel-nav .carousel-cell.is-nav-selected {
	border: 3px solid #38ACFF;
	box-sizing: border-box;
}
.carousel-main:hover .flickity-button{
	background: #BFAFA0;
	opacity: 0.4;
}
.carousel-main:hover .flickity-button:hover{
	background: #BFAFA0;
	opacity: 0.9;
}
.flickity-button:disabled{
	opacity: 0 !important;
}
@media print, screen and (max-width: 640px) {
	
}
table{
	width: 100%;
	font-size: 14px;
	text-align: center;
	border-collapse: collapse;
	margin: 0 0 100px;
}
table th,
table td{
	border: solid 1px #38ACFF;
	line-height: 1.8em;
	vertical-align: middle;
}
table th{
	border: solid 1px #efefef;
	background: #38ACFF;
	color: #fff;
	padding: 20px 0;
}
@media print, screen and (max-width: 640px) {
	table{
		font-size: 12px;
	}
	table th{
/* 		width: 60px; */
		padding: 20px 10px;
	}
}
table td{
	background: #fff;
	color: #333;
	padding: 20px;
}


.staff{
	display: flex;
	flex-wrap: wrap;
}
.staff__cell{
	width: calc(100% / 6 - 20px);
	margin: 0 10px 30px;
}
.staff__cell img{
	width: 100%;
}
.staff__cell p{
	text-align: center;
	font-size: 14px;
	margin-top: 10px;
	line-height: 1.5em;
}
.staff__cell p span{
	display: block;
	font-size: 10px;
	color: #666;
}
@media print, screen and (max-width: 640px) {
	.staff__cell{
		width: calc(100% / 3 - 20px);
		margin: 0 10px 30px;
	}
}