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


*, *: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:link {
	color:#4D4D4D;
	text-decoration: none;
}
a:visited {
	color:#4D4D4D;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #f7931e;
	text-decoration: underline;
	}
a:active {
	color:#f7931e;
}



.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);
}





/*スマホ対応 PCでは消す*/

.sp_navi {
  display:none;
}
.sp_diplay {
    display: none;
}


/* 例：br.sp_brはタブレット以上のサイズでは非表示にする */
@media screen and (min-width: 641px) {
  .sp_br{
    display: none;
  }
}

/*スマホ（サイズ）のみ電話リンクイキ*/

@media (min-width: 641px) {
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 {
	padding: 10px 30px 0 30px;
}

.h_content .h_content_top {
	display: flex;
	justify-content: space-between;
}

.h_content .h_content_top .h_content_top_p {
	font-size: 75%;
}

.h_content .h_content_top .h_content_top_button {
	display: flex;
	margin-top: 3px;
}

.h_content .h_content_top .h_content_top_button .h_content_kochira_l a {
	padding: 10px 25px;
	border-radius: 17px;
	background-color: #DF7CAC;
	color: #fff;
	margin-left: 10px;
	font-size: 85%;
	text-decoration: none;
	transition: .3s;
	white-space: nowrap;
}
.h_content .h_content_top .h_content_top_button .h_content_kochira_l a:hover {
	opacity: 0.5;
}

.h_content .h_content_top .h_content_top_button .h_content_kochira_r a {
	padding: 10px 25px;
	border-radius: 17px;
	background-color: #10679B;
	color: #fff;
	margin-left: 10px;
	font-size: 85%;
	text-decoration: none;
	transition: .3s;
	white-space: nowrap;
}

.h_content .h_content_top .h_content_top_button .h_content_kochira_r a:hover {
	opacity: 0.5;
}

.h_content .h_content_top .h_content_top_button .h_content_kochira_tuika a {
	padding: 10px 25px;
	border-radius: 17px;
	background-color: rgb(235, 235, 235);
	color: black;
	margin-left: 10px;
	font-size: 85%;
	text-decoration: none;
	transition: .3s;
	white-space: nowrap;
}
.h_content .h_content_top .h_content_top_button .h_content_kochira_tuika a:hover {
	opacity: 0.5;
}

/*=====追加ここまで　20221115ここまで=====*/

.h_content .h_content_bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 15px;
}

.h_content .h_content_bottom .globalnavibtn_t {
	display: flex;
	white-space: nowrap;
	margin-right: 20px;
}

.h_content .h_content_bottom .globalnavibtn_t li {
	margin-left: 45px;
}

.h_content .h_content_bottom .globalnavibtn_t li a {
	padding-bottom: 15px;
}


/*=====文字下にラインが出る=====*/

.globalnavibtn_t li a{
	position: relative;
}

.globalnavibtn_t li.now_t a,
.globalnavibtn_t li a:hover{
	color:#10679B;
	text-decoration: none;
}
.globalnavibtn_t li a:focus{
	color:#10679B;
	text-decoration: none;
}

.globalnavibtn_t li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background:#10679B;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}

.globalnavibtn_t li.now_t a::after,
.globalnavibtn_t li a:hover::after {
    transform: scale(1, 1);
}

/*=====ここまで=====*/

#globalnavi_input {
	display: none;
}

.globalnavi_oisogi {
	display: none;
}

.globalnavi_jizen {
	display: none;
}



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

.f_top {
	width: 100%;
	background-color: #F2F2EF;
	padding: 12px 0;
}

.f_top_con {
	width: 1200px;
	margin: 0 auto;
}

.f_top_con .f_navi {
	display: flex;
	justify-content: center;
}

.f_top_con .f_navi li {
	margin: 0 12px;
	font-size: 70%;
	white-space: nowrap;
}

/**/

.f_center {
	width: 100%;
	background-image: url("../images/new_back_04.jpg");
	background-size: 30px 30px;
	background-position: left top;
	background-repeat: repeat;
	padding: 30px 0 25px 0;
}

.f_center_con {
	width: 1200px;
	margin: 0 auto;
}

.f_center_con .f_center_top {
	margin-bottom: 40px;
}

.f_center_con .f_center_top h5 {
	margin-bottom: 15px;
}

.f_center_con .f_center_top .f_center_p {
	font-size: 80%;
	color: #fff;
	margin-bottom: 5px;
}

.f_center_con .f_center_top .f_center_p a {
	color: #fff;
}

.f_center_con .f_center_top .f_bold {
	font-weight: bold;
}

.f_center_con .f_center_bottom h6 {
	font-weight: bold;
	font-size: 80%;
	color: #C7E8FA;
	margin-bottom: 5px;
}

.f_center_con .f_center_bottom .f_center_group {
	width: 800px;
	display: flex;
	flex-wrap: wrap;
}

.f_center_con .f_center_bottom .f_center_group li {
	font-size: 80%;
	width: 190px;
	margin-bottom: 10px;
	color: #fff;
}

.f_center_con .f_center_bottom .f_center_group li a {
	color: #fff;
}

/**/

.f_bottom {
	width: 100%;
	background-color: #147FB3;
	padding: 15px 0;
}

.f_bottom_con {
	width: 1200px;
	margin: 0 auto;
	text-align: center;
	font-size: 75%;
	color: #fff;
}



































