/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
	background-color: #f5faf5;
	font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

.w_base {
	margin: 0 auto;
	width: 960px;
}

.index_main h1{
	text-align: center;
	font-size: 1.9rem;
	font-weight: bold;
	color: #28bf9b;
	margin: 0;
	position: relative;
}
.index_main h1:before,
.index_main h1:after{
	content: "";
	width: 40%;
	height: 3px;
	background-color: #28bf9b;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.index_main h1:before{
	left: 0;
}
.index_main h1:after{
	right: 0;
}

.index_main h2{
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	background-color: #28bf9b;
	width: 400px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

p{
	font-size: 1.16rem;
}


/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	width: 100%;
	height: 60vh;
	max-height: 500px;
	background: url(../images/hd_bg_bg.png) center bottom / cover no-repeat;
}
.hd_logo {
	width: 65%;
	max-width: 550px;
	position: absolute;
	top: 10vh;
	left: 50%;
	transform: translateX(-50%);
}
.hd_lang {
	position: absolute;
	right: 0;
	top: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
/*.nav_bg {
	background: url(../images/nav_bg_bg.png) repeat-x #000;
	margin-bottom: 30px;
}
.nav {
	background: url(../images/nav_bg.png) no-repeat;
	overflow: visible;
}
.nav_list {
	display: flex;
	width: 100%;
}
.nav_list img {
	transition: All 0.5s ease;
}
.nav_list img:hover {
	opacity: 0
}
.nav_list a.current img {
	opacity: 0
}
.nav_list>li {
	position: relative;
	z-index: 1000
}
.nav_list>li>a {
	display: block;
	text-align: center
}
.nav_list>li>a:hover,
.nav_list>li>a.current{

}
.nav_list>li:hover .nav_clist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}
@-webkit-keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
.nav_clist {
	display: none;
	transition: All 0.5s ease;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0
}
.nav_clist>li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
	position: relative
}
.nav_clist>li>a {
	background-color: #000;
	color: #fff;
	display: block;
	padding: 10px;
	text-decoration: none
}
.nav_clist>li>a:hover, .nav_clist>li>a.current {
	opacity: 0.8
}
.nav_clist>li:hover .nav_glist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}
.nav_glist {
	display: none;
	width: 100%;
	position: absolute;
	top: 0;
	left: 100%
}
.nav_glist>li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	border-left: 1px solid rgba(255, 255, 255, 0.4)
}
.nav_glist>li>a {
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	display: block;
	padding: 10px;
	text-decoration: none
}
.nav_glist>li>a:hover, .nav_glist>li>a.current {
	background-color: #000;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
	background: url(../images/con_bg.png) no-repeat;
}
.con {
	padding: 30px 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	width: 100%;
	height: 30vh;
	background: url(../images/ft_bg_bg.png) center top / cover no-repeat;

}
.ft.w_base{
	color: #fff;
	height: 100%;
	margin-top: -50px;
	position: relative;
}

.ft p{
	position: absolute;
	bottom: 60px;
	left: 0;
	font-size: 1.3rem;
}
.ft .ft_copy {
	font-size: 0.8rem;
	position: absolute;
	bottom: 20px;
	right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
/*.pt {
	border-radius: 50%;
	background-color: #333;
	bottom: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	right: 30px;
	position: fixed;
	width: 60px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 8px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 7px;
	bottom: 0;
}
.pt_btn::after{
	height: 7px;
	right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*-- 
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */

.index_greet {
	width: 960px;
	height: 600px;
	background: url(../images/greet_bg.png) no-repeat center;
	background-size: 100%;
	padding-top: 4rem;
	margin: 0px 0 -25px;
}
.index_greet .greet_bg p{
	margin: 2.5rem 0;
}
.index_greet .greet_bg p:first-child{
	text-align: center;
	margin: 3rem 0;
}


.index_gaiyou{
	background-color: #fff;
	border-radius: 9px;
	display: flex;
	justify-content: space-between;
	padding: 40px;
	margin-bottom: 50px;
}
.re{
	flex-direction: row-reverse;
}
.index_gaiyou .text{
	width: 400px;
}
.index_gaiyou > div{
	width: 48%;
	margin: 0 1%;
}
.index_gaiyou p{
	line-height: 2rem;
}
.gaiyou_con{
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}
.gaiyou_con div{
	display: block;
	margin: 0 2%;
}
.index_link{
	text-align: center;
	display: flex;
	justify-content: space-around;
	margin: 50px 0;
}
.link_btn{
	width: 450px;
	height: 80px;
	background-color: #28bf9b;
	border-radius: 40px;
	position: relative;
}
.link_btn:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid #fff;
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
}
.index_link a.link_btn{
	width: 40%;
	text-decoration: none;
	color: #fff;
	position: relative;
	font-size: 1.6rem;
	line-height: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index_link a.link_btn img{
	position: absolute;
	left: 0;
}
.index_link a span{
	display: inline-block;
	padding-top: 5px;
	font-size: 1.4rem;
	font-weight: bold;
}
.index_link a span span{
	display: block;
	font-weight: normal;
	font-size: 0.8rem;
	letter-spacing: 0.05rem;
	padding-top: 2px;
}

.index_news{
	background: #fff;
	border-radius: 9px;
	margin: 20px 0 30px;
	padding: 30px;
}
.index_news h3{
	color: #28bf9b;
	font-weight: bold;
	font-size: 1.6rem;
	text-align: center;
	margin: 13px 0;
}
.index_news_item {
	border-bottom: 1px dotted #28bf9b;
	display: flex;
	align-content: space-between;
	align-items: center;
	padding: 10px 0;
	width: 100%;
}
.index_news_item_date {
	width: 80px;
	font-weight: bold;
	padding: 0rem 1.2rem 0.5rem;
	font-size: 0.95rem;
}
.index_news_item_date span{
	display: block;
	color: #28bf9b;
	font-size: 1rem;
}
.index_news_item_ttl {
	width: calc(100% - 100px);
}
.index_news_item_icon_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_news_item_icon_new:before {
	content: "NEW"
}
.index_news_scrl {
	max-height: 200px;
	overflow: auto
}

.index_schedule{
	background: #fff;
	border-radius: 9px;
	margin: 20px 0;
	text-align: center;
	padding: 40px;
}
.index_schedule iframe{
	width: 100%;
	height: 600px;
}


/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
}
.mcon section {
	background: #fff;
	padding: 20px;
	margin: 20px 0;
	border-radius: 5px;
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h1 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	background-color: #28bf9b;
	width: 100%;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border-radius: 5px;
	position: relative;
}
.mcon h2 {
	font-size: 1.5rem;
	color: #28bf9b;
	margin-bottom: 15px;
	margin-top: 5px;
	padding-left: 0.5rem;
	border-left: 10px solid #28bf9b;
	border-bottom: 2px dotted #28bf9b;
}
.mcon h3 {
	font-size: 1.3rem;
	margin: 1rem 0 0.5rem 1rem;
	color: #28bf9b;
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin: 1rem 0 0.5rem 20px;
	font-size: 1.16rem;
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin: 1rem;
}
.mcon ul {
	margin: 1rem 0 20px 20px;
	font-size: 1.16rem;
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}
.mcon table{
	margin: 0 auto 20px;
	width: 93%;
}
.mcon table tr:nth-child(2n-1){
	background-color: rgba(40, 191, 155, 0.3);
}
.mcon table tr th{
	vertical-align: middle;
	text-align: center;
	padding: 0.5rem 0;
}
.mcon table tr td{
	vertical-align: top;
	padding: 0.5rem 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.pg_hd_bg{

	width: 100%;
	height: 30vh;
	max-height: 250px;
	background: url(../images/ft_bg_bg.png) center bottom / cover no-repeat;
	transform: scale(1, -1);
}
.pg_hd{
	width: 960px;
	position: relative;
}
.pg_hd_logo {
	width: 240px;
	position: absolute;
	top: 5.2rem;
	left: 0;
	transform: scale(1, -1);
}
.pg_hd_logo img {
	width: 300px;
	height: auto
}
.mcon.first ul li span{
	margin-left: 5.8rem;
}
.mcon .part_contact{
	margin-left: 30px;
	margin-top: 20px;
}