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


/* ==================== base =====================*/

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 100%;
	line-height: 1.8;
	color: #333;
	width:100%;
}

a {
	transition: .3s;
}

a:link {
	color:#4D4D4D;
	text-decoration: none;
}
a:visited {
	color:#4D4D4D;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #781A7B;
	text-decoration: none;
	}
a:active {
	color:#781A7B;
}


.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}


.alpha_a a img {
	-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;
}
.alpha_a a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}


/*写真拡大*/
.moimg1 {
	overflow: hidden;
	width: 100%;
	height: auto;
}
.moimg1 img {
    width: 100%;
	display: block;
	transition: 0.5s;
}
.moimg1 img:hover {
	transform: scale(1.1, 1.1);
}


/*タブレットでは非表示*/
.tb_displaynone {
    display: none;
}


/*スマホ（サイズ）のみ電話リンクイキ*/
@media (min-width: 600px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}


/*ページトップへ（矢印）*/

#ptop {
    position: fixed;
    bottom: 25px;
    right: 25px;
	z-index: 1;
}
#ptop a {
    text-align: center;
    display: block;
    border-radius: 5px;
}




/*==================== header ====================*/

header {
	width: 100%;
}

.h_content {
	border-top: solid 5px #781A7B;
	padding: 20px 40px 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*900px以上の時*/
@media screen and (min-width: 900px) {
	
	.h_content .h_logo {
		line-height: 1;
	}

	.h_content .h_logo a:hover {
		opacity: 0.6;
	}

	.h_content .h_logo .h_logo_b {
		font-size: 215%;
		color: #781A7B;
		font-weight: bold;
	}

	.h_content .h_logo .h_logo_s {
		font-size: 110%;
		font-weight: bold;
		color: #D1B869;
	}
	
	#globalnavi_input {
	display: none;
	}

	.h_content .globalnavibtn_t {
		display: flex;
	}

	.h_content .globalnavibtn_t li {
		margin-left: 25px;
		font-size: 85%;
		font-weight: bold;
		white-space: nowrap;
	}

	/*下線装飾*/
	.globalnavibtn_t .globalnavi_normal a{
		position: relative;
		text-decoration: none;
		padding-bottom: 10px;
		color: #781A7B;
	}

	.globalnavibtn_t .globalnavi_normal.globalnavi_now a {
		color: #781A7B;
	}

	.globalnavibtn_t .globalnavi_normal a:hover,
	.globalnavibtn_t .globalnavi_normal a:focus {
		color: #781A7B;
	}
	.globalnavibtn_t .globalnavi_normal a:active {
		color:#781A7B;
	}

	.globalnavibtn_t .globalnavi_normal a:after {
    	content: '';
    	position: absolute;
    	bottom: 0;
    	left: 30%;
    	width: 40%;
    	height: 1px;
    	background: #781A7B;
    	transition: all .3s;
    	transform: scale(0, 1);
    	transform-origin: center top;
	}

	.globalnavibtn_t .globalnavi_normal.globalnavi_now a:after,
	.globalnavibtn_t .globalnavi_normal a:hover:after {
    	transform: scale(1, 1);
	}

}

/*899px以下の時*/
@media screen and (max-width: 899px) {
	
	.h_content .h_logo {
		line-height: 1;
	}

	.h_content .h_logo a:hover {
		opacity: 0.6;
	}

	.h_content .h_logo .h_logo_b {
		font-size: 195%;
		color: #781A7B;
		font-weight: bold;
	}

	.h_content .h_logo .h_logo_s {
		font-size: 90%;
		font-weight: bold;
		color: #D1B869;
	}

	/* ハンバーガーメニュー */
	#globalnavi_t {
		position: fixed;
		top: 0;
		left: -100%;
		z-index: 100;
		width: 100%;
		max-width: 350px;
		transition: .3s;
	}

	ul.globalnavibtn_t {
		background-color: #781A7B;
		padding: 0;
		height: 100vh;
		text-align: center;
		padding-top: 30%;
	}

	ul.globalnavibtn_t li {
		display: block;
	}

	ul.globalnavibtn_t li a {
		display: block;
		padding: 1.5rem;
		color: #fff;
		font-size: 90%;
		text-decoration: none;
	}

	.globalnavi_tr {
		display: none;
	}

	#globalnavi_btn {
		display: block;
		width: 25px;
		height: 20px;
		z-index: 100;
		background-image: url("../images/menu_open.png");
		background-size: 25px 20px;
		background-repeat: no-repeat;
		background-position: center center;
		transition: .3s;
	}

	#globalnavi_block {
		display: none;
		position: fixed;
		z-index: 90;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
	}

	#globalnavi_input:checked ~ #globalnavi_btn {
		background-image: url("../images/menu_close.png");
		background-size: 25px 20px;
		background-repeat: no-repeat;
		background-position: center center;
	}

	#globalnavi_input:checked ~ #globalnavi_block {
		display: block;
	}

	#globalnavi_input:checked ~ #globalnavi_t {
		left: 0;
	}

	.globalnavi_jizen {
		margin-bottom: 15px;
	}

}




/*==================== footer ====================*/

/*=== f_top ===*/

.f_top {
	width: 100%;
	margin-bottom: 5px;
}

.f_top_con .f_top_link {
	text-align: center;
	font-size: 90%;
}

/*=== f_center ===*/

.f_center {
	width: 100%;
	border-top: solid 1px #CCCCCC;
	padding: 35px 0;
}

.f_center_con {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.f_center_con .f_center_l {
	margin-right: 20px;
	margin-bottom: 30px;
}

.f_center_con .f_center_r iframe {
	width: 500px;
	height: 240px;
}

.f_center_con .f_center_logo {
	line-height: 1;
	margin-bottom: 20px;
}

.f_center_con .f_center_logo_b {
	font-size: 310%;
	font-weight: bold;
	color: #781A7B;
}

.f_center_con .f_center_logo_s {
	font-size: 110%;
	font-weight: bold;
	color: #D1B869;
}

.f_center_con .f_center_ti {
	font-size: 130%;
	font-weight: bold;
	color: #781A7B;
}

/*=== f_bottom ===*/

.f_bottom {
	width: 100%;
	padding: 20px 0;
	background-color: #E1D2E4;
	text-align: center;
	font-size: 75%;
}




/*==================== top page ====================*/

/*=== top_main ===*/

.top_main {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
}

.top_main .top_main_name {
	position: absolute;
	width: 55%;
	left: 5%;
	top: 10%;
}

.top_main .top_main_name img {
	width: 100%;
	height: auto;
}

.top_main .top_main_copy {
	position: absolute;
	left: 8%;
	bottom: 3%;
	width: 35%;
}

.top_main .top_main_copy img {
	width: 100%;
	height: auto;
}

.top_main .top_main_photo .object {
	width: 100%;
	height: auto;
}

/*=== top_intro ===*/

.top_intro {
	width: 100%;
	margin-bottom: 60px;
}

.top_intro_con {
	width: 95%;
	margin: 0 auto;
}

.top_intro_con .top_intro_ti {
	text-align: center;
	font-size: 230%;
	font-weight: bold;
	background-image: url("../images/deco_line.png");
	background-size: 256px 4px;
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-bottom: 15px;
}

.top_intro_con .top_intro_p {
	width: 80%;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

/*=== top_info ===*/

.top_info {
	width: 100%;
	background-image: url("../images/t_sky.jpg");
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	padding-top: 30px;
}

.top_info_con {
	width: 95%;
	margin: 0 auto;
	background-image: url("../images/t_illust.jpg");
	background-size: 817px 300px;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-bottom: 300px;
}

.top_info_con .top_info_ti {
	text-align: center;
	font-weight: bold;
	font-size: 200%;
	line-height: 1.7;
	margin-bottom: 30px;
}

.top_info_con .top_info_info {
	display: flex;
	justify-content: space-between;
}

.top_info_con .top_info_num {
	margin: 0 15px;
	margin-bottom: 35px;
	display: flex;
}

.top_info_con .top_info_num_img {
	margin-right: 10px;
}

.top_info_con .top_info_num_img img {
	width: 40px;
	height: auto;
}

.top_info_con .top_info_num_ti {
	font-weight: bold;
	font-size: 130%;
	color: #781A7B;
}

/*800px以下の時*/
@media screen and (max-width: 800px) {
	
	.top_info_con .top_info_info {
		display: block;
	}
	
}

/*=== top_photo ===*/

.top_photo {
	width: 100%;
	margin-bottom: 50px;
}

.top_photo .top_photo_pgroup {
	background-color: #781A7B;
}

.top_photo .top_photo_p {
	width: 90%;
	margin: 0 auto;
	font-size: 80%;
	background-color: #781A7B;
	color: #fff;
	text-align: center;
	padding: 3px 0;
}

.top_photo .top_photo_img {
	display: flex;
}

.top_photo .top_photo_img_con {
	width: 25%;
}

.top_photo .top_photo_img_con img {
	width: 100%;
	height: auto;
}

.top_photo .top_photo_ti {
	text-align: center;
	font-size: 200%;
	font-weight: bold;
	color: #781A7B;
}

/*=== top_support ===*/

.top_support {
	width: 100%;
	margin-bottom: 60px;
	background-color: #781A7B;
	border-top: solid 5px #D1B869;
	padding: 20px 0 30px 0;
}

.top_support_con {
	width: 95%;
	margin: 0 auto;
}

.top_support_con .top_support_ti {
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-size: 180%;
	margin-bottom: 15px;
}

.top_support_con .top_support_info_group {
	display: flex;
	justify-content: space-between;
}

.top_support_con .top_support_info {
	width: 49%;
}

.top_support_con .top_support_info_a {
	width: 100%;
	background-color: #fff;
	border-radius: 20px;
	padding: 25px 35px;
	margin-bottom: 20px;
}

.top_support_con .top_support_top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.top_support_con .top_support_info_pa {
	margin-right: 10px;
}

.top_support_con .top_support_info_pb {
	color: #781A7B;
}

.top_support_con .top_support_info_name {
	font-weight: bold;
}

.top_support_con .top_support_info_a_ti {
	font-size: 130%;
	font-weight: bold;
	color: #781A7B;
	border-bottom: solid 3px #781A7B;
	line-height: 1;
	padding-bottom: 6px;
	margin-bottom: 10px;
	margin-right: 10px;
}

/*1000px以下の時*/
@media screen and (max-width: 1000px) {
	
	.top_support_con .top_support_info_group {
		display: block;
	}
	
	.top_support_con .top_support_info {
		width: 100%;
	}
	
	.top_support_con .top_support_info_pa {
		margin-right: 20px;
	}
	
	.top_support_con .top_support_info_a_ti {
		margin-right: 20px;
	}
	
	.top_support_con .top_support_top {
		margin-bottom: 10px;
	}
	
}

/*=== top_profile ===*/

.top_profile {
	width: 100%;
	margin-bottom: 60px;
}

.top_profile_con {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.top_profile_con .top_profile_ti {
	font-size: 130%;
	font-weight: bold;
	color: #781A7B;
	margin-bottom: 15px;
}

.top_profile_con .top_profile_info {
	margin-left: 40px;
	margin-bottom: 20px;
}

.top_profile_con .top_profile_list {
	margin-left: 40px;
	font-weight: bold;
	color: #781A7B;
}

.top_profile_con .top_profile_l {
	margin-right: 20px;
}



/* ==================== sitepolicy =====================*/

#content_a {
	width: 100%;
	margin: 0 auto;
	border-top: solid 1px #781A7B;
	padding: 50px 0 70px 0;
}


.sitepolicy_content {
	width: 100%;
	margin: 0 auto;
}
.sitepolicy_content.sitepolicy_content {
	width: 80%;
	max-width: 800px;
	margin: 0 auto;
} 

.sitepolicy_content.sitepolicy_content h2 {
	text-align: center;
	font-weight: bold;
	font-size: 130%;
	background-image: url("../images/deco_line.png");
	background-size: 80px 2px;
	background-repeat: no-repeat;
	background-position: center bottom;
	padding-bottom: 5px;
	margin-bottom: 35px;
} 


.sitepolicy_content.sitepolicy_content .sitepolicy_info {
	margin-bottom: 35px;
} 

.sitepolicy_content.sitepolicy_content .sitepolicy_info h3 {
	text-align: center;
	font-weight: bold;
	font-size: 110%;
	color: #781A7B;
	padding-bottom: 5px;
} 

.sitepolicy_content.sitepolicy_content .sitepolicy_info_ac{
	border-top: solid 1px #CCC;
	padding-top: 35px;
} 
.sitepolicy_content.sitepolicy_content .sitepolicy_info_ac h4 {
	font-weight: bold;
	font-size: 80%;
} 
.sitepolicy_content.sitepolicy_content .sitepolicy_info_ac p {
	font-size: 80%;
} 


/* ==================== top sns =====================*/

.snsicon_content {
	width: 100%;
	margin: 0 auto;
}
.snsicon_content .snsicon_con {
	float: right;
	width: 120px;
	margin: 0 40px;
	margin-bottom: 35px;
}
.snsicon_content .snsicon_con ul li {
	float: left;
	padding-left:15px; 
}

.top_intro {
	clear: both;
}
.facebook_content {
	clear: both;
}


ul.snsicon_list:after {
	font-size: 1px;
	color: #FFFFFF;
	content:".";
	display: block;
	height: 0px;
	clear: both;
}
ul.snsicon_list{
	zoom: 1;
}

/* ==================== facebook sns =====================*/

.facebook_content {
	width: 100%;
	margin: 0 auto;
}
.facebook_content .facebook_con_c {
	text-align: center;
	margin-bottom: 65px;
}


/* ==================== footer sns =====================*/

.f_center .f_center_con .f_center_l ul {
	margin: 10px 5px;
}
.f_center .f_center_con .f_center_l ul li {
	float: left;
	padding-right:15px; 
}


ul.f_snsicon_list:after {
	font-size: 1px;
	color: #FFFFFF;
	content:".";
	display: block;
	height: 0px;
	clear: both;
}
ul.f_snsicon_list{
	zoom: 1;
}



/* ==================== top_report =====================*/

.top_report {
	width: 100%;
	margin-bottom: 50px;
	background-color: #F1E9F2;
	padding: 25px 0 20px 0;
}

.top_report_con {
	width: 95%;
	margin: 0 auto;
}

.top_report_con .top_report_ti {
	font-size: 120%;
	color: #781A7B;
	font-weight: bold;
	border-bottom: solid 2px #781A7B;
	margin-bottom: 20px;
}

.top_report_con .top_report_list dt {
	color: #666666;
	font-size: 95%;
	font-weight: bold;
}

.top_report_con .top_report_list dd {
	margin-bottom: 15px;
	font-weight: bold;
}

.top_report_con .top_report_list dd a {
	color: #333;
}

.top_report_con .top_report_list dd a:hover {
	color: #C1A11F;
}

.top_report_con .top_report_link {
	margin-top: 20px;
	font-size: 110%;
	font-weight: bold;
	text-align: center;
}

.top_report_con .top_report_link a {
	color: #781A7B;
}

.top_report_con .top_report_link a:hover {
	color: #C1A11F;
}



/* ==================== report =====================*/

.report_info {
	width: 100%;
}

.report_info_con {
	width: 85%;
	margin: 0 auto;
}

.report_info_ti {
	font-size: 120%;
	font-weight: bold;
	color: #781A7B;
	border-left: solid 6px #D1B869;
	padding: 10px 0 10px 15px;
	margin-bottom: 30px;
}

.report_info_con .report_info_list dt {
	color: #8C6239;
}

.report_info_con .report_info_list dd {
	margin-bottom: 10px;
}

.report_info_con .report_info_list dd a {
	color: #781A7B;
}

.report_info_con .report_info_list dd a:hover {
	color: #C1A11F;
}



/* ==================== report_a =====================*/

.report_article {
	width: 100%;
}

.report_article_con {
	width: 85%;
	margin: 0 auto;
}

.report_article_con .report_article_ti {
	font-size: 120%;
	font-weight: bold;
	color: #781A7B;
	border-left: solid 6px #D1B869;
	padding: 10px 0 10px 15px;
	margin-bottom: 5px;
}

.report_article_con .report_article_time {
	text-align: right;
	font-size: 75%;
	color: #8C6239;
	margin-bottom: 25px;
}

.report_article_con .report_article_topimg {
	background-color: #F2F2F2;
	margin-bottom: 20px;
	text-align: center;
}

.report_article_con .report_article_topimg img {
	width: 100%;
	height: 480px;
	object-fit: contain;
}

.report_article_con .report_article_text {
	color: #666666;
	margin-bottom: 80px;
}

.report_article_con .report_article_bottomimg {
	width: 75%;
	margin: 0 auto;
	margin-bottom: 80px;
	background-color: #F2F2F2;
}

.report_article_con .report_article_bottomimg img {
	width: 100%;
	height: 340px;
	object-fit: contain;
}

.report_article_con .report_article_btn {
	text-align: center;
}

.report_article_con .report_article_btn a {
    font-size: 110%;
    background-color: #E6E6E6;
    padding: 2px 5px;
    text-decoration: none;
}



/* ==================== report_b =====================*/

.report_article_pdf {
	text-align: center;
	margin-bottom: 80px;
}

.report_article_pdf a {
	display: inline-block;
}

.report_article_pdf p {
	font-size: 85%;
	margin-top: 5px;
}




/*cms css 追加*/

.report_article_con .cms_con th {
	border: 1px solid #C1C1C1;
	padding: 10px;
	background-color: #F2F2F2;
}

.report_article_con .cms_con td {
	border: 1px solid #C1C1C1;
	padding: 10px;
}



.report_article_con .cms_con ul{
    list-style-type: disc;
	padding-left: 25px;
}

.report_article_con .cms_con ol{
    list-style-type: decimal;
	padding-left: 25px;
}




.report_article_con .cms_con h1 {
    font-weight: bold;
	font-size: 160%;
	padding-bottom:3px;
}

.report_article_con .cms_con h2 {
    font-weight: bold;
	font-size: 140%;
	padding-bottom:3px;
}

.report_article_con .cms_con h3 {
    font-weight: bold;
	font-size: 120%;
	padding-bottom:3px;
}

.report_article_con .cms_con h4 {
    font-weight: bold;
	font-size: 100%;
	padding-bottom:3px;
}

.report_article_con .cms_con h5 {
    font-weight: bold;
	font-size: 90%;
	padding-bottom:3px;
}

.report_article_con .cms_con h6 {
    font-weight: bold;
	font-size: 80%;
	padding-bottom:3px;
}


.report_article_con .cms_con a:link {
	color:#29ABE2;
	text-decoration: none;
}
.report_article_con .cms_con a:visited {
	color:#29ABE2;
	text-decoration: none;
}
.report_article_con .cms_con a:hover,
.report_article_con .cms_con a:focus {
	color: #29ABE2;
	text-decoration: underline;
	}
.report_article_con .cms_con a:active {
	color:#0071BC;
}






































































