@charset "Utf-8";

/*-----------------------------------------------------------------------------------*/
/*	リセット paddingリセット
/*-----------------------------------------------------------------------------------*/

*{
	font-family:'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    padding:0;
    margin:0;
    -webkit-box-sizing: border-box;	/**	widthにpaddingを含める	**/
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, th,{
	margin:0px;
	padding:0px;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
}

html{font-size: 62.5%;}
body {
	font-size: 1.4rem;
	color: #333333;
}


/*-----------------------------------------------------------------------------------*/
/*	リンク画像透過共通指定　hr装飾
/*-----------------------------------------------------------------------------------*/

.content 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;
	-moz-box-shadow: 0px 1px 2px #656565;
	-webkit-box-shadow: 0px 1px 2px #656565;
	box-shadow: 0px 1px 2px #656565;
}
.content a img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}


.link_img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}


hr{
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	margin-top: 5px;
	margin-bottom: 5px;
}

/*********** map ***********/

.map{
	margin-top: 10px;
	width: 100%;
}

.map iframe{
	width: 100%;
}

/*********** youtube ***********/

.youtube_wrapp{
	max-width: 480px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 460px !important;
  max-height: 315px !important;
}

/*********** 解除・調整・その他 ***********/

.clear{clear: both;}

.align_center{
	text-align: center;
}

.mg_b10 {margin-bottom: 10px;}
.mg_b20 {margin-bottom: 20px;}
.mg_b30 {margin-bottom: 30px;}
.mg_b40 {margin-bottom: 40px;}
.mg_b50 {margin-bottom: 50px;}

.font_10 {font-size: 1rem;}
.font_11 {font-size: 1.1rem;}
.font_12 {font-size: 1.2rem;}
.font_13 {font-size: 1.3rem;}
.font_14 {font-size: 1.4rem;}
.font_15 {font-size: 1.5rem;}
.font_16 {font-size: 1.6rem;}
.font_17 {font-size: 1.7rem;}
.font_18 {font-size: 1.8rem;}
.font_19 {font-size: 1.9rem;}
.font_20 {font-size: 2.0rem;}
.font_21 {font-size: 2.1rem;}
.font_22 {font-size: 2.2rem;}
.font_23 {font-size: 2.3rem;}
.font_24 {font-size: 2.4rem;}
.font_25 {font-size: 2.5rem;}

.only_pc{}
.only_moblie{display: none;}


/** Flex 指定 ********************/

.flex{
    display: -webkit-flex; /* Safari */
    display: flex;
}

.flex_r{
	-webkit-flex-direction: row-reverse; /* Safari */
	flex-direction:         row-reverse;
}

.flex_wrap{
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
}

/* 端詰め等間隔 */
.space_between{
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}
/* 等間隔 */
.space_around{
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
}

/* センター寄せ */
.justify_center {
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
}


/* PC時Flex モバイル時Flexしない */
.flex_nonflex{
	display: -webkit-flex; /* Safari */
    display: flex;
	flex-wrap: wrap;
}

/*********** ページ全体設定 ***********/
.container{
	width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.section{
	padding-bottom: 50px;
}

.content p{
	font-size: 1.6rem;
}

.slider{
	width: 980px;
	margin-left: auto;
	margin-right: auto;
}


.h2_nomal{
	background-image: url(img/h2_bg.png);
	background-repeat: no-repeat;
	background-position: left;
	height: 35px;
	padding-left: 40px;
	padding-top: 5px;
	font-weight: 400;
	margin-top: 10px;
	margin-bottom: 10px;
}

.h3_yellow{
	background-color: #f5f5dc;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 15px;
	font-weight: 800;
	font-size: 115%;
	border: 2px;
	border-style: solid;
	border-color: #ff9900;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -o-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
    -ms-box-shadow: 3px 3px 3px rgba(0,0,0,0.4);
	margin-bottom: 10px;
}

.h4_blue{
	background-color: #dce9f5;
	padding-top: 2px;
	padding-bottom: 2px;
	text-align: center;
	font-weight: 800;
	font-size: 110%;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px dotted #999999;
}

.container p{
	margin-bottom: 7px;
}

.table{
	width: 100%;
	margin-bottom: 10px;
}

.table tr th{
	padding: 3px;
	border-bottom: 2px dotted #666666;
}

.table tr td{
	border-bottom: 1px dotted #666666;
}

.one_half img{
	max-width: 100%;
}

/*********** ページヘッダー ***********/

.header{}
.header_logo{
	float: left;
}

.header h1{
	font-size: 100%;
	font-weight: 400;
}

.header_img{
	background-image: url(img/header_bg.jpg);
	height: 300px;
}


/*********** パンくずリスト ***********/

.pan_list{
	list-style-type: none;
	margin-top: 10px;
	margin-bottom: 10px;
}

.pan_list li{
	float: left;
	margin-right: 10px;
}



/*********** ページフッター ***********/

.footer{
	margin-top: 50px;
	padding-top: 50px;
	background-color: #ffe4e1;
	padding-bottom: 50px;
}

.copy a{
	text-decoration: none;
	color: #333333;
}

/** 画像Gallery *******************************/

.img_gallery{
    display: -webkit-flex; /* Safari */
    display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
	padding-top: 10px;
}

.img_gallery a{
	margin-bottom: 10px;
	margin-left: 5px;
	margin-right: 5px;
}

.img_gallery a img{
	width: 180px;
	padding: 5px;
	border: 1px solid #999999;
	vertical-align: bottom;
}

.gallery_fix{
	width: 190px;
	height: 0px;
	margin-left: 5px;
	margin-right: 5px;
}
/*********** ページ内基本グリッド分割枠 ***********/

.one_half {
	width:48%;
	margin-bottom: 20px;
}

.one_third {
	width:30.66%;
}

.two_third {
	width:65.33%;
}

.one_fourth {
	width:22%;
}

.three_fourth {
	width:74%;
}

.one_fifth {
	width:16.8%;
}

.two_fifth {
	width:37.6%;
}

.three_fifth {
	width:58.4%;
}

.four_fifth {
	width:67.2%;
}

.one_sixth {
	width:13.33%;
}

.five_sixth {
	width:82.67%;
}

.one_third, .two_third, .three_fourth, .one_fourth, .one_fifth, .two_fifth, .three_fifth, .four_fifth, .one_sixth, .five_sixth {
	position:relative;
	margin-right:4%;
	float:left;
}

.last {
	margin-right:0 !important;
	clear:right;
}

.list_check {
	list-style-type: none;
	margin-left: 20px;
	font-size: 1.8rem;
}

.list_check li{
	margin-top: 5px;
	margin-bottom: 10px;
}

.list_check li::before{
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	margin: auto 5px 2px 0px;
	font-weight: 900;
  color: #ffb03f; /*アイコン色*/
}

.img_banner{
	width: 234px;
	margin-left: auto;
	margin-right: auto;
}
.list_disc{
	padding-top: 15px;
	padding-bottom: 15px;
	margin-left: 25px;
	font-size: 1.6rem;
	list-style-type: disc;
}
.list_disc li{
	margin-top: 5px;
	margin-bottom: 10px;
}
