@charset "utf-8";

#mv {
	position: relative;
}

#mv_in {
	max-width: 1100px;
	min-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.mv_com {
	width: 1100px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 999;
}

.mv_com > div {
	width: 65%;
	padding: 20px;
	background-color: rgba(255,255,255,0.75);
	box-shadow: 0 5px 5px 1px rgba(100,100,100,.1);
}

.mv_com > div > div {
	padding: 20px;
	text-align: left;
	border: #fff 1px solid
}

.mv_com h2 {
	font-size: 3rem;
	font-weight: 500;
}

.mv_com p {
	font-size: 2rem;
	margin-top: 20px;
}

.top_btn {
	width: 350px;
	margin: 40px auto 0;
}

.top_btn a {
	padding: 15px 0;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: block;
	background-color: #0862b6;
	border-radius: 100px;
	border: #0862b6 2px solid;
	transition: 0.5s;
}

.top_btn a:hover {
	color: #0862b6;
	background-color: #fff;
}

@media screen and (max-width:768px){
#mv_in {
	max-width: 100%;
	min-width: 100%;
}

.mv_com {
	width: 90%;
	left: 5%;
	right: 5%;
	transform: translate(0,-50%);
}

.mv_com > div {
	width: 100%;
	padding: 7px;
}

.mv_com > div > div {
	padding: 7px;
	border: #fff 1px solid
}

.mv_com h2 {
	font-size: 4.8vw;
	text-align: center;
}

.mv_com p {
	display: none;
}

.top_btn {
	width: 100%;
	margin: 20px auto 0;
}

.top_btn a {
	padding: 10px 0;
}
}





/***** swiper *****/
.swiper {
  width: 100%!important;
  min-width: 1100px;
  margin: 0!important;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-slide img {
	width: 100%;
}

:root {
  --swiper-theme-color: #0862b6!important;
}

.swiper-pagination {
	width: 1100px!important;
	left: 50%!important;
	transform: translate(-50%,0)!important;
	text-align: right!important;
	bottom: 20px!important;
}

.swiper-pagination-bullet {
	width: 9px!important;
	height: 9px!important;
	background: #fff!important;
	opacity: 1!important;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 7px!important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color,var(--swiper-theme-color))!important;
}

@media screen and (max-width:768px){
.swiper {
  width: 100%!important;
  min-width: 100%!important;
}

.swiper-pagination {
	width: 100%!important;
	left: 0%!important;
	transform: translate(0,0)!important;
	text-align: center!important;
	bottom: 10px!important;
}

.swiper-pagination-bullet {
	width: 8px!important;
	height: 8px!important;
}
}




/***** infomation *****/
#infomation {
	min-width: 1100px;
	padding: 50px 0;
	background-color: #f5f5f5;
}

#infomation > div {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

#infomation > div > section {
	width: 100%;
}

#infomation > div > section > div {
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#infomation > div > section > div h3 {
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #0862b6;
}

#infomation > div > section > div p a {
	width: 110px;
	padding: 5px 0;
	font-size: 1.3rem;
	text-align: center;
	text-decoration: none;
	color: #fff;
	border-radius: 100px;
	transition: 0.5s;
	display: block;
}

#infomation > div > section > div p a {
	background-color: #0862b6;
	border: #0862b6 2px solid;
}

#infomation > div > section > div p a:hover {
	color: #0862b6;
	background-color: #fff;
}

#infomation > div > section dl {
	padding-top: 15px;
	border-top: #000 1px dotted;
}

#infomation > div > section dt {
	width: 230px;
	display: flex;
	align-items: center;
	float: left;
	clear: left;
}

#infomation > div > section dt span {
	width: 120px;
	margin-left: 15px;
	padding: 5px 0;
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
	display: block;
	border-radius: 100px;
	background-color: #D4EAFF;
}

#infomation > div > section dd {
	margin-bottom: 15px;
	padding: 0 0 15px 255px;
	border-bottom: #000 1px dotted;
}

#infomation > div > section dd:last-child {
	margin-bottom: 0;
}

#infomation > div > section dd a {
	color: #000;
}

#infomation > div > section dd a:hover {
	text-decoration: none;
}

@media screen and (max-width:768px){
#infomation {
	min-width: 100%;
	padding: 30px 10px;
}

#infomation > div {
	width: 100%;
	display: block;
}

#infomation > div > section > div h3 {
	font-size: 2.5rem;
}

#infomation > div > section > div p a {
	padding: 4px 0;
	font-size: 1.1rem;
}

#infomation > div > section dt {
	width: 100%;
	margin-bottom: 5px;
	float: clear;
}

#infomation > div > section dt span {
	width: 110px;
}

#infomation > div > section dd {
	padding: 0 0 15px 0;
}
}




/***** section *****/
#section {
	width: 1100px;
	margin: 0 auto;
	padding: 70px 0;
	display: flex;
	justify-content: space-between;
}

#section > section {
	width: 47%;
}

#section > section h3 {
	margin-bottom: 30px;
	text-align: center;
	font-size: 3rem;
	font-weight: 500;
	position: relative;
}

#section > section h3:first-letter {
	color: #0862b6;
}

#section > section h3::after {
	content: "";
	width: 10%;
	height: 3px;
	margin: 15px auto 0;
	background-color: #0862b6;
	display: block;
	/*position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);*/
}

#section > section > figure {
	position: relative;
}

#section > section > figure::before {
	content: "";
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	position: absolute;
	left: 15px;
	top: 15px;
	border: #fff 1px solid;
	display: block;
}

#section > section > figure img {
	width: 100%;
}

#section > section > p {
	margin-top: 20px;
	font-size: 1.8rem;
}

#section > section > ul {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
}

#section > section > ul li {
	width: 48%;
	margin-right: 4%;
}

#section > section > ul li:nth-child(2n) {
	margin-right: 0;
}

#section > section > ul li a {
	height: 150px;
	text-decoration: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 7px 1px rgba(100,100,100,.2);
	transition: 0.5s;
}

#section > section > ul li a::before {
	content: "";
	width: 25%;
	height: 3px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	background-color: #0862b6;
	display: inline-block;
	transition: 0.3s;
}

#section > section > ul li a:hover::before {
	content: "";
	width: 50%;
}

#section > section > ul li a dl {
}

#section > section > ul li a dt {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#section > section > ul li a dd {
	width: 100%;
	margin-top: 10px;
	font-weight: 500;
	text-align: center;
	color: #0862b6;
}

@media screen and (max-width:768px){
#section {
	width: 100%;
	padding: 30px 10px;
	display: block;
}

#section > section {
	width: 100%;
}

#section > section:nth-child(2) {
	margin-top: 30px;
}

#section > section h3 {
	margin-bottom: 20px;
	font-size: 2.5rem;
}

#section > section > figure::before {
	content: "";
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	position: absolute;
	left: 10px;
	top: 10px;
	border: #fff 1px solid;
	display: block;
}

#section > section > p {
	margin-top: 15px;
}

#section > section > ul li a {
	height: 130px;
	box-shadow: 0 1px 5px 1px rgba(100,100,100,.2);
}
}




/***** pickup *****/
#pickup {
	min-width: 1100px;
	padding: 70px 0;
	background-color: #f5fbff;
}

#pickup > div {
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#pickup > div > section {
	width: 31%;
	box-shadow: 0 1px 10px 5px rgba(180,180,180,0.1);
	background-color: #fff;
	display: flex;
	align-items: stretch;
}

#pickup > div > section:last-child {
	width: 100%;
	margin-top: 3.5%;
	padding: 30px;
	display: block;
}

#pickup > div > section:last-child h3 {
	width: 100%;
	margin-bottom: 40px;
	font-size: 2.8rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1em;
	position: relative;
}

#pickup > div > section:last-child h3::after {
	content: "";
	width: 12%;
	height: 3px;
	margin: 20px auto 0;
	background-color: #36b5b9;
	display: block;
}

#pickup > div > section:last-child > div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#pickup > div > section:last-child > div > div:nth-of-type(1) {
	/*width: 55%;*/
	font-size: 1.8rem;
	line-height: 1.7;
}

#pickup > div > section:last-child > div > div:nth-of-type(1) .top_btn {
	width: 350px;
	margin: 20px auto;
}

#pickup > div > section:last-child > div > div:nth-of-type(1) .top_btn a {
	padding: 15px 0;
	text-align: center;
	text-decoration: none;
	color: #fff;
	display: block;
	background-color: #36b5b9;
	border-radius: 100px;
	border: #36b5b9 2px solid;
	transition: 0.5s;
}

#pickup > div > section:last-child > div > div:nth-of-type(1) .top_btn a:hover {
	color: #36b5b9;
	background-color: #fff;
}

#pickup > div > section:last-child > div > div:nth-of-type(2) {
	width: 40%;
	padding: 30px;
	border: #36b5b9 3px solid;
}

#pickup > div > section:last-child > div > div h4 {
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 500;
	color: #36b5b9;
}

#pickup > div > section:last-child > div > div h5 {
	margin: 15px 0 5px;
	padding: 3px 5px;
	font-size: 1.8rem;
	font-weight: 500;
	background-color: #e2f9fa;
}

#pickup > div > section:last-child a {
	text-decoration: underline;
	color: #000;
	display: inline;
}

#pickup > div > section:last-child a:hover {
	opacity: 1;
	text-decoration: none;
}

#pickup > div > section a {
	text-decoration: none;
	color: #000;
	transition: 0.5s;
	display: block;
}

#pickup > div > section a:hover {
	opacity: 0.6;
}

#pickup > div > section figure {
	position: relative;
}

#pickup > div > section figure::before {
	content: "";
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	position: absolute;
	left: 15px;
	top: 15px;
	border: #fff 1px solid;
	display: block;
}

#pickup > div > section figure img {
	width: 100%;
}

#pickup > div > section dl {
	padding: 30px;
}

#pickup > div > section dl dt {
	text-align: center;
	font-size: 1.7rem;
	font-weight: 500;
	position: relative;
}

#pickup > div > section dl dt::after {
	content: "";
	width: 20%;
	height: 3px;
	margin: 15px auto 0;
	background-color: #0862b6;
	display: block;
}

#pickup > div > section dl dd {
	margin-top: 25px;
}

@media screen and (max-width:768px){
#pickup {
	min-width: 100%;
	padding: 30px 10px;
}

#pickup > div {
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}

#pickup > div > section {
	width: 100%;
	margin: 0 auto 30px;
	box-shadow: 0 1px 10px 5px rgba(180,180,180,0.1);
}

#pickup > div > section:last-child {
	margin: 0;
	padding: 15px;
	display: block;
}

#pickup > div > section:last-child h3 {
	margin-bottom: 20px;
	font-size: 2.4rem;
}

#pickup > div > section:last-child h3::after {
	width: 20%;
	height: 3px;
	margin: 15px auto 0;
}

#pickup > div > section:last-child > div {
	display: block;
}

#pickup > div > section:last-child > div > div:nth-of-type(1) {
	width: 100%;
	line-height: 1.5;
}

#pickup > div > section:last-child > div > div:nth-of-type(1) .top_btn {
	width: 100%;
	margin: 20px auto;
}

#pickup > div > section:last-child > div > div:nth-of-type(1) .top_btn a {
	padding: 10px 0;
}

#pickup > div > section:last-child > div > div:nth-of-type(2) {
	width: 100%;
	margin-top: 30px;
	/*margin: 15px 0;*/
	padding: 15px;
	border: #36b5b9 2px solid;
}

#pickup > div > section:last-child > div > div h4 {
	text-align: center;
}

#pickup > div > section:last-child > div > div h5 {
	text-align: center;
}

#pickup > div > section figure::before {
	content: "";
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	left: 10px;
	top: 10px;
}

#pickup > div > section dl {
	padding: 15px;
}

#pickup > div > section dl dt::after {
	margin: 10px auto 0;
}

#pickup > div > section dl dd {
	margin-top: 20px;
}
}




/***** greeing *****/
#greeing {
	width: 1100px;
	margin: 0 auto;
	padding: 70px 0;
	display: flex;
	justify-content: space-between;
}

#greeing > section {
	width: 60%;
}

#greeing > section > h3 {
	margin-bottom: 30px;
	padding-left: 40px;
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	position: relative;
}

#greeing > section > h3::before {
	content: "";
	width: 17px;
	height: 17px;
	border: #0862b6 6px solid;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#greeing > section > p {
	font-size: 1.8rem;
	line-height: 1.7;
}

#greeing > section > figure {
	display: none;
}

#greeing > figure {
	width: 30%;
	position: relative;
}

#greeing > figure::before {
	content: "";
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	position: absolute;
	left: 15px;
	top: 15px;
	border: #fff 1px solid;
	display: block;
}

#greeing > figure img {
	width: 100%;
}

@media screen and (max-width:768px){
#greeing {
	width: 100%;
	padding: 30px 10px;
	display: block;
}

#greeing > section {
	width: 100%;
}

#greeing > section > h3 {
	margin-bottom: 15px;
	padding-left: 30px;
	font-size: 2.5rem;
}

#greeing > section > h3::before {
	width: 14px;
	height: 14px;
	border: #0862b6 4px solid;
}

#greeing > figure {
	display: none;
}

#greeing > section > figure {
	width: 40%;
	margin-left: 5%;
	display: block;
	float: right;
	position: relative;
}

#greeing > section > figure::before {
	content: "";
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	position: absolute;
	left: 10px;
	top: 10px;
	border: #fff 1px solid;
	display: block;
}

#greeing > section > figure img {
	width: 100%;
}
}




/***** staff *****/
#staff {
	min-width: 1100px;
	padding: 20px 0;
	background: url("../images/top/staff_bk_ph.jpg") 50% 50% no-repeat;
	background-size: cover;
}

#staff > section {
	width: 1100px;
	margin: 0 auto;
	padding: 50px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	border: #fff 1px solid;
}

#staff > section h3 {
	margin-bottom: 30px;
	font-size: 3.2rem;
	font-weight: 500;
	position: relative;
}

#staff > section h3::after {
	content: "";
	width: 7%;
	height: 3px;
	margin: 20px auto 0;
	background-color: #0862b6;
	display: block;
}

@media screen and (max-width:768px){
#staff {
	min-width: 100%;
	padding: 15px;
	background: url("../images/top/staff_bk_ph.jpg") 50% 100% no-repeat;
	background-size: cover;
}

#staff > section {
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	border: #fff 1px solid;
}

#staff > section h3 {
	margin-bottom: 20px;
	font-size: 2.5rem;
}

#staff > section h3::after {
	width: 20%;
	height: 3px;
	margin: 15px auto 0;
}
}