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

.w_base {
	margin: 0 auto;
	width: 100%;
}

.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: 30%;
	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: 100%;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0 20px;
}

p{
	font-size: 1.16rem;
}


/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	background-size: contain;
	width: 100%;
	height: 25vh;
	background: url(../images/hd_bg_bg.png) center bottom / cover no-repeat;
	position: relative;
}
.hd_logo {
	width: 65%;
	max-width: 250px;
	position: absolute;
	top: 5vh;
	left: 50%;
	transform: translateX(-50%);
}
.hd_lang {
	position: absolute;
	right: 0;
	top: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
	background: url(../images/con_bg.png) no-repeat;
}
.con {
	padding: 30px 0 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {

	width: 100%;
	height: 20vh;
	background: url(../images/ft_bg_bg.png) center top / cover no-repeat;
}
.ft.w_base{
	color: #fff;
	margin-top: -20px;
	height: 100%;
	position: relative;
}
.ft p{
	position: absolute;
	bottom: 30px;
	left: 0;
	font-size: 0.9rem;
}
.ft .ft_copy {
	font-size: 0.7rem;
	position: absolute;
	bottom: 0px;
	right: 0;
	text-align: right;
	line-height: 1rem;
}
/*----------------------------------------------------------------------------
******************************************************************************
** 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: 100%;
	background: url(../images/greet_bg.png) no-repeat center;
	background-size: 100%;
	padding: 10px;
	padding-top: 4rem;
	margin: -4rem 0 20px;
}
.index_greet .greet_bg p{
	margin: 1.5rem 0;
}
.index_greet .greet_bg p:first-child{
	text-align: center;
	margin: 2rem 0;
}
.index_gaiyou{
	background-color: #fff;
	border-radius: 9px;
	padding: 20px;
	margin-bottom: 20px;
}
.index_gaiyou img{
	display: block;
	width: 100%;
}
.index_gaiyou .text{
	width: 100%;
}
.index_gaiyou p{
	line-height: 2rem;
	margin-bottom: 1rem;
}
.gaiyou_con{
	display: flex;
	justify-content: center;
}
.gaiyou_con div{
	margin: 0.5rem 0.5rem 0;
}
.index_link{
	text-align: center;
	margin: 20px 0;
}
.link_btn{
	height: 80px;
	background-color: #28bf9b;
	border-radius: 40px;
	position: relative;
	margin: 10px auto;
}
.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: 35px;
	transform: translateY(-50%);
}
.index_link a.link_btn{
	width: 90%;
	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.25rem;
	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: 10px 10px 25px;
}
.index_news h3{
	color: #28bf9b;
	font-weight: bold;
	font-size: 1.6rem;
	text-align: center;
	margin: 10px 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: 300px;
	overflow: auto
}
.index_schedule{
	background: #fff;
	border-radius: 9px;
	margin: 20px 0 -10px;
	padding: 20px 10px;
	text-align: center;
}
.index_schedule iframe{
	width:calc(100vw - 20px);
	height: 400px;
}


/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
}
.mcon section {
	background: #fff;
	padding: 10px;
	margin: 10px 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: 10px;
	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 0.5rem;
	color: #28bf9b;
}
.mcon img {
	max-width: 100%;
	height: auto;
}
.mcon ol {
	margin: 1rem 0 0.5rem 10px;
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em;
}
.mcon p {
	margin: 0.5rem;
	font-size: 13px;
}
.mcon ul {
	margin: 1rem 0 0.5rem 10px;
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1em;
	margin-bottom: 0.5em;
}
.mcon table{
	margin: 10px auto 20px;
	width: 100%;
}
.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;
	width: 20%;
}
.mcon table tr td{
	vertical-align: top;
	padding: 0.5rem 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.pg_hd_bg{
	width: 100%;
	height: 20vh;
	background: url(../images/ft_bg_bg.png) center bottom / cover no-repeat;
	transform: scale(1, -1);
	margin-bottom: -60px;
}
.pg_hd{
	width: 100%;
	position: relative;
}
.pg_hd_logo {
	width: 35%;
	position: absolute;
	top: 4.5rem;
	left: 1rem;
	transform: scale(1, -1);
}
.mcon .part_contact{
	margin-left: 10px;
	margin-top: 10px;
}
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabletスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 580px) {


.hd_bg {

	width: 100%;
	height: 300px;
	background: url(../images/hd_bg_bg.png) center center / cover no-repeat;
	margin-bottom: 2rem;

}

.hd_logo {
	width: 65%;
	max-width: 350px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.hd_logo img {
	width: 100%;
	height: auto
}

.ft_bg {
	width: 100%;
	background: url(../images/ft_bg_bg.png) center center / cover no-repeat;*/
}

.index_gaiyou{
	background-color: #fff;
	border-radius: 9px;
	display: flex;
	justify-content: space-between;
	padding: 20px;
	margin-bottom: 30px;
}
.re{
	flex-direction: row-reverse;
}
.index_gaiyou .text{
	width: 48%;
}
.index_gaiyou > div{
	width: 48%;
	margin: 0 2%;
}
.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: 30px 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;
}


/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.pg_hd_bg{
	width: 100%;
	height: 20vh;
	background: url(../images/ft_bg_bg.png) center bottom / cover no-repeat;
	transform: scale(1, -1);
	margin-bottom: -60px;
}
.pg_hd{
	width: 100%;
	position: relative;
}
.pg_hd_logo {
	width: 35%;
	position: absolute;
	top: 4.5rem;
	left: 1rem;
	transform: scale(1, -1);
}





}