@charset "UTF-8";

/* CSS Document */

/* ▼　共通設定　▼ */

* {
	margin:0px;
	padding:0px;
    box-sizing: border-box; 
}


body {
	font-size: 16px;
	line-height:1.5em;
	/*font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color:#000;
	margin:0;
	padding:0;
	background-color:#ffffff;
}

img {
	border:none;
}

a img {
	border-style:none;
}

a {
	outline:0;
	color:#000;
	text-decoration:none;
}

a:link {
}

a:hover {
}

/*マウスオーバーアニメーション*/
.hvr-sweep-to-bottom:before{
	background-color:#b9bb32;
}

.opacity {
}

.opacity a {
	-moz-transition: all 0.2s ease-in;
	-webkit-transition:all 0.2s ease-in;
}

a img, :link img, :visited img {
    border:none;
}

/* delate dot boader of link for New Mozilla \*/
a {
    overflow:hidden; 
}

img,fieldset,abbr,acronym {
    border:0;
}

img {
	vertical-align:bottom;
	max-width:100%;
	height:auto;
}

hr {
	border-top:2px solid #b9bb32;
	margin-top:20px;
	margin-bottom:20px;
}

/* float clear */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.clear {
	clear:both;
}

li {
	list-style-type:none;
}

.float_left {
	float:left;
}

.float_right {
	float:right;
}

#wrapper {
	margin:0;
	padding:0;
	z-index:1;
}
		
h1,h2,h3,h4,h5,h6 {
	margin:0;
	padding:0;
	font-weight:normal;
	font-size:normal;
	}

.fixed{
	  position: fixed;
	  top: 0px;
	  left: 0px;
	  z-index: 9999;
	}

big{
	font-size:1.385em;
}

small{
	font-size:0.77em;
}
	
.txt_a_right{
	text-align:right;
}

.txt_a_center{
	text-align:center;
}

.txt_a_left{
	text-align:left;
}

.txt_c_accent{
	color:#907765;
}

.txt_c_red{
	color:#7C0D0D;
}

.txt_bnr_blue{
	background-color:#134186;
	color:#fff;
	font-size:1.6em;
	font-weight:bold;
	display:inline-block;
	width:230px;
	height:40px;
	line-height:40px;
}

.txt_f_roboto-condensed{
	font-family: 'Roboto Condensed', sans-serif;
}

.txt_w_300{
	font-weight:300;
}

.txt_w_700{
	font-weight:700;
}

.txt_subtitle{
	width:170px;
	border-top:2px solid #907765;
	color:#907765;
	text-align:center;
	margin:10px auto;
	padding:5px;
}

.flex_around{
	display: flex;
	display: -webkit-flex; /* Safari */
	justify-content: space-around;
	-webkit-justify-content: space-around; /* Safari */
}


.blk_gray{
	background:#F4F4F4;
	padding: 3em 2em;
	margin-bottom: 60px;
}

.space_btm{
	padding-bottom: 3em;
}
	
/* ▲　共通設定　▲ */

/* ▼　スマホメニュー　▼ */
/* ▽▽ハンバーガーメニュー▽▽ */
.slide_menu_check {/* チェックボックスを隠す */
	display: none;
}
.sec_slide_menu {
	/*display: inline-block;*/
	display:none;/*PC非表示*/
	position :relative;
	width :100%;
	/*min-height:50px;*/
}
 
/* ▽▽メニューボタン▽▽ */
.slide_btn {
	/*position: absolute;*/
	position:fixed;/*上部固定*/
	top: 30px;
	right: 50px;
	width: 50px;
	height: 40px;
	cursor: pointer;
	display: block;
	/*float: right;ボタン右寄せ*/
	z-index: 20;
}
.slide_btn::before {
	-webkit-box-shadow: #1C4877 0 17px 0;
	box-shadow: #1C4877 0 17px 0;
}
.slide_btn::after {
	bottom: 0;
}
.slide_btn::before,
.slide_btn::after {
	width: 50px;
	height: 6px;
	background: #1C4877;
	display: block;
	content: '';
	position: absolute;
	-webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
	transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
}
/* △△メニューボタン△△ */

/* ▽▽開閉時のアニメーション▽▽ */
.slide_menu_check:checked ~ .slide_btn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(9px, 15px, 0);
	transform: rotate(45deg) translate3d(9px, 15px, 0);
}
.slide_menu_check:checked ~ .slide_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(9px, -15px, 0);
	transform: rotate(-45deg) translate3d(9px, -15px, 0);
}
.slide_menu_check:checked ~ .slide_menu_wrap {
	/*right: 0;右からスライド*/
}
 
/* △△開閉時のアニメーション△△ */
 
.slide_menu_wrap {
	width :100%;
	height :100%;
	/*background-color: rgba(0,0,0,0.7);*/
	background-color:#fff;
	/*position: absolute;*/
	position:fixed;/*上部固定*/
	overflow: auto;/*縦スクロール可*/
	-webkit-overflow-scrolling: touch;/*縦スクロールスムーズに*/
	/*right: -100%;右に隠す*/
	right:0;
	top: 0;
	/*-webkit-transition: right 0.4s;右からスライド*/
	/*transition: right 0.4s;右からスライド*/
	display:none;
	z-index:10;
	margin-top:83px;
	padding-bottom:60px;
}
 

/* ▽▽メニュー内のリストスタイル▽▽ */
.slide_list {
	list-style-type: none;
	margin: 50px 0 50px;
	padding: 0;
}
.slide_list li{
	list-style: none;
	text-align:center;
	font-size:2.0em;
	line-height: 1.8;
	border-top:1px solid #f4eee8;
}
.slide_list li a {
	color: #000;
	display: block;
	overflow: hidden;
	padding: 8px 22px;
	position: relative;
	text-decoration: none;
	z-index: 1;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

.slide_list li a:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.slide_list li:last-child a {
	display:inline-block;
	margin:0 5%;
}

/* メニュー内のリストスタイル△△ */
.slide_menu_ttl{
	display:inline-block;
	margin-top:30px;
	margin-right:50px;
}

 
/* △△ハンバーガーメニュー△△ */
/* ▲　スマホメニュー　▲ */

/* ▼　ヘッダ　▼ */
#header{
	padding:20px 20px 0;
}

#header_logo{
	text-align:center;
	margin-bottom:20px;
	position: relative;
}

#header_logo .header_bnr{
	position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
	width: 210px;
}

#header_tel{
	display:none;
}
#header_tel img{
	padding:10px 3em;
	border:2px solid #907765;
	border-bottom:3px solid #907765;
	-moz-border-radius: 10px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 10px;/*角丸指定*/
	border-radius: 10px;/*角丸指定*/
	display:inline-block;
	margin:10px 0;
}

/* ▲　ヘッダ　▲ */	
	
/* ▼　ナビゲーション　▼ */
#header_navi{}

#header_navi ul{
	display: flex;
	display: -webkit-flex; /* Safari */
	justify-content: space-around;
	-webkit-justify-content: space-around; /* Safari */
}

#header_navi ul li{
	text-align:center;
	padding:10px 0.5em;
}

#header_navi ul li img:first-child{
	margin-bottom:10px;
}

#header_navi ul li:last-child{
	padding:0 1em;
}

#header_navi ul li a{
	display: inline-block;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

#header_navi ul li a:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
/* ▲　ナビゲーション　▲ */


/* ▼　メイン　▼ */

/* 共通部分 */
.hover_grow {
	display: inline-block;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

.hover_grow:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#main {
	clear:both;
	overflow:hidden;
}

#main h2 {
    font-size: 2.154em;
    font-weight: bold;
	text-align:center;
}

#main h2 span{
	font-size:0.433em;
	vertical-align:middle;
}

#main h3 {
    font-size: 2.154em;
    font-weight: bold;
	line-height: 1.2;
}

#main p {
	margin-bottom: 1em;
}

#main p:last-child{
	margin-bottom: 0;
}

#main .content{
	max-width:1100px;
	margin:0 auto 2em;
	padding:0 50px;
}

#main .content_wide{
	padding:0 20px 2em;
}

.link_btn{
	text-align:center;
	font-size:15px;
	color:#1C4877;
	width:320px;
	background-color:#fff;
	padding:20px 1em;
	border:2px solid #1C4877;
	border-bottom:3px solid #1C4877;
	-moz-border-radius: 10px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 10px;/*角丸指定*/
	border-radius: 10px;/*角丸指定*/	
	display: block;
	margin:0 auto;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

.link_btn:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.link_btn:visited,
.link_btn:hover{
	color:#1C4877;
}


#lnk_contact .link_btn{
	text-align:center;
	font-size:15px;
	color:#fff;
	width:auto;
	max-width:28em;
	background-color:#1C4877;
	padding:20px 5em;
	border:none;
	-moz-border-radius: 5px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 5px;/*角丸指定*/
	border-radius: 5px;/*角丸指定*/	
	display: block;
	margin:0 auto;
}

#lnk_contact .link_btn img{
	padding-right:1em;
}

#lnk_contact .link_btn p{
	display: inline-block;
	text-align: left;
	font-size:1.33em;
	line-hight:1.2;
}

#main_img{
	background-repeat:no-repeat;
	background-size:cover;
	position:relative;
	margin-bottom:20px;
}

#main_img:before {
    content:"";
    display: block;
    padding-top: 39%; /* 高さを幅の39%に固定 */
}

#main_img .main_catch{
	color:#fff;
	background-color:rgba(28,72,119,0.9);
	display:inline-block;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	text-align:center;
	width:60%;
	line-height:1.5;
	padding:4%;
}
#main_img .main_catch p{
	font-size:1.6vw;
}

#main_img .main_catch h1{
	font-size:2.5vw;
	font-weight:normal;
	line-height: 1.2;
}

#main #breadcrumb{}

#main #breadcrumb li{
	display:inline-block;
}

#main #breadcrumb li a{
	display: inline-block;
	vertical-align: middle;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

#main #breadcrumb ul li a:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#main #page_ttl{
	text-align:center;
	margin-top:70px;
	margin-bottom:60px;
}

	

#main #page_ttl h3{
	font-size:1.385em;
	margin-bottom:6px;
}

#main .sec_header{
	background-color:#f4eee8;
	text-align:center;
	padding:40px 0;
	position:relative;
	margin-bottom:60px;
}

#main .sec_header h3{
	padding:20px;
	position:relative;
}

#main .sec_header h3 span{
	font-size:0.5em;
	vertical-align:middle;
}

#main .sec_header h3:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px;/*線の上下位置*/
  display: inline-block;
  width: 170px;/*線の長さ*/
  height: 2px;/*線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color:#1C4877;/*線の色*/
  /*border-radius: 2px;*//*線の丸み*/
}

#main .sec_header .sec_subttl{
	position:absolute;
	top:-50px;
	left: 0;
	right: 0;
}

#main .sec_header .sec_subttl p{
	color:#1C4877;
	padding:20px;
	width:370px;
	text-align:left;
	border:2px solid #f4eee8;
	background-color: #fff;
	display: inline-block;
}

#main .sec_header .sec_subttl p span{
	font-size:2.3em;
	vertical-align:middle;
}


#main .sec_gray_header{
	background-color:#F3F4F5 !important;
}

#main .section{
	margin-bottom:120px;
}

#main .sec_img img{
	width:100%;
}

#main .sec_header_arrow {
	display: block;
	margin: 0 auto;
	max-width: 350px;
	width: 30%;
}

/*ブログ一覧*/
.sec_blog .content_wide{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sec_blog h4{
	font-size:1.15em;
	font-weight:bold;
	margin-bottom:1em;
}

.sec_blog img{
	width:100%;
	height:auto;
	margin-bottom:1em;
}

.sec_blog .area_cnt{
	width:30%;
	margin-left:2.5%;
	margin-right:2.5%;
	margin-bottom: 40px;
}

.sec_blog .area_cnt:nth-child(3n+1){
	margin-left:0px;
}

.sec_blog .area_cnt:nth-child(3n){
	margin-right:0px;
}



.sec_blog .blog_cat li{
	display:inline-block;
	color:#1C4877;
	border:1px solid #1C4877;
	-moz-border-radius: 5px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 5px;/*角丸指定*/
	border-radius: 5px;/*角丸指定*/	
	padding:2px 8px;
	margin-bottom:4px;
}

.sec_blog .blog_cat li a{
	color:#1C4877;
}


/*スライドショー*/
#sec_slide{
	padding:50px 5%;
	background-color:#fef6ee;
	margin-bottom:60px;
}

#sec_slide .sec_header{
	background:none;
	padding: 0 0;
	margin-bottom:0px;
}

#sec_slide .sec_header h3{
	padding:0;
}

#sec_slide .sec_header h3::before{
    height:0;
}

#sec_slide img{
	width:100%;
}

#sec_slide .bx-wrapper .bx-viewport{
	-moz-border-radius: 10px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 10px;/*角丸指定*/
	border-radius: 10px;/*角丸指定*/
}


.bx-wrapper{
	position:relative;
}
.bx-wrapper .bx-pager {
	text-align: center;
    margin-top: 15px;
}

.bx-wrapper .bx-pager .bx-pager-item {
	display: inline-block;
	display: inline;
}
.bx-pager a {
	background: #fff;
	text-indent: -9999px;/*数字表示をブラウザ外に押しやる*/
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 5px;
	border:1px solid #907765;
	-moz-border-radius: 8px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 8px;/*角丸指定*/
	border-radius: 8px;/*角丸指定*/
}
.bx-pager a:hover,
.bx-pager a.active {
	background: #907765;
}
.bx-wrapper .bx-controls-direction a{
	position: absolute;
	top: 40%;
	width: 5%;
	height: 60px;
	/*text-indent: -9999px;*/
	z-index: 9999;
	color:#907765;
	font-weight:bold;
	font-size:35px;
	text-align:center;
	padding-top: 0.75em;
	font-family: sans-serif;
}
.bx-wrapper .bx-prev {
    left: -5.5%;
}
.bx-wrapper .bx-next {
    right: -5.5%;
}

/*流れ*/

#sec_flow{}

#sec_flow table{
	border-spacing:0px;
	margin-bottom:40px;
}

#sec_flow th{
	border: 2px solid #907765;
	border-top:none;
	padding: 2em;
	vertical-align: top;
	width:1em;
	white-space: nowrap;
}

#sec_flow th p{
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
	writing-mode: tb-rl; /* IE用 */
    writing-mode: vertical-rl;/* Chrome、Firefox用 */
	-webkit-text-orientation: upright;
	text-orientation: upright;
	margin: 0 auto;/* [2]Chromeで中央に寄せたいときに指定 */
	display: block;/* [1]Safariで幅が広がるのを防止 */
	display: inline-block\9;/* IE9で高さが広がるのを防止 */
	width: 1em;/* firefox対策 */
    line-height: 1em;/* firefox対策 */
	font-size: 2.154em;
	font-weight: bold; /* [1]Safariで幅が広がるのを防止 */
}

/* IE10以降 */
	@media all and (-ms-high-contrast:none){
	  #sec_flow th p {
	    display:inline-block;/* IE10以降高さが広がるのを防止 */
	  }
	}

#sec_flow tr:first-child th{
	border-top:2px solid #907765;
}

#sec_flow td {
	text-align:left;
	vertical-align:top;
}

#sec_flow td.area_num{
	padding: 0 30px;
	font-size:2.3em;
	background: url(../images/construction/construction-sec01-arrow.png), -webkit-linear-gradient(to right, #fff 0%, #fff 49%, #907765 49%, #907765 50.5%, #fff 50.5%, #fff 100%);
	background: url(../images/construction/construction-sec01-arrow.png), linear-gradient(to right, #fff 0%, #fff 49%, #907765 49%, #907765 50.5%, #fff 50.5%, #fff 100%);
	background-position:bottom center;
	background-repeat:no-repeat;
}

#sec_flow td.area_num p{
	width:78px;
	height:78px;
	color:#fff;
	background-color:#907765;
	-moz-border-radius: 50%;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 50%;/*角丸指定*/
	border-radius: 50%;/*角丸指定*/	
	text-align:center;
	line-height: 78px;
	font-weight:600;
}

#sec_flow td.area_head{
	height:78px;
	vertical-align:middle;
}

#sec_flow td.area_head h4{
	display:inline;
	font-size:1.53em;
	font-weight:bold;
}

#sec_flow .area_txt p{
	margin-bottom:20px;
}

#sec_flow .area_txt img{
	padding-bottom:20px;
}
/* ▲　メイン　▲ */

/* ▼　コンタクトエリア　▼ */
#contact_area{
	max-width:1100px;
	margin:0 auto 100px;
	padding:0 50px;
	color:#1a2a3c;
}

#contact_area h3{
	text-align:center;
}

#contact_area dl{
	font-size:0;
	margin:20px 0;
	}

#contact_area dt{
	font-size:15px;
	min-width:13em;
	width:29%;
	vertical-align:top;
	padding-top:8px;
	border-top:1px solid #f4eee8;
	display:inline-block;
}

#contact_area dt span{
	background:#907765;
	color:#fff;
	-moz-border-radius: 5px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 5px;/*角丸指定*/
	border-radius: 5px;/*角丸指定*/
	padding-left:0.8em;
	padding-right:0.8em;
	margin-left:0.4em;
}

#contact_area dd{
	font-size:15px;
	width:69%;
	padding-top:8px;
	padding-bottom:8px;
	border-top:1px solid #f4eee8;
	display:inline-block;
}

#contact_area .first_row{
	border-top:none;
}

#contact_area input{
	width:100% !important;
	height:40px;
	border:solid #907765 1px;
	font-size:1.5em;
}

#contact_area select{
    /*　矢印を消す　*/
    -webkit-appearance:none;
    -moz-appearance:none;
        text-indent: .01px; /* Firefox用 */
        text-overflow: ""; /* Firefox用 */
    appearance:none;
	width:100% !important;
	height:40px;
	border:solid #907765 1px;
	font-size:1.5em;
	background-repeat:no-repeat;
    background-position:right center;
    cursor:pointer;
	background-image:url(../images/general/btn-contact-select.png);
}

#contact_area textarea{
	width:100% !important;
	height: auto !important;
	border:solid #907765 1px;
}

#contact_area .mfp_buttons{
	text-align:center;
}

#contact_area .mfp_buttons button{
	text-align:center;
	font-size:15px;
	color:#907765;
	width:320px;
	background-color:#fff;
	padding:20px 1em;
	border:2px solid #907765;
	border-bottom:3px solid #907765;
	-moz-border-radius: 10px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 10px;/*角丸指定*/
	border-radius: 10px;/*角丸指定*/	
	display: inline-block;
	margin:0 auto;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

#contact_area .mfp_buttons button:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/* ▲　コンタクトエリア　▲ */

/* ▼　フッタ　▼ */
#footer{
	border-top:2px solid #1C4877;
	text-align:center;
	position:relative;
}

#footer #footer_content{
	padding-top:20px;
	padding-bottom:20px;
}

#footer .address_area{
	margin:0 auto;
	display:inline-block;
}

#footer #footer_logo{
	float:left;
	width:198px;
	margin-top:20px;
}

#footer #footer_address{
	float:left;
	width:20em;
	text-align:left;
	margin-top:20px;
	margin-left: 30px;
}

#footer .contact_info{
	margin-bottom:20px;
}

#footer .contact_info ul li{
	display:inline-block;
	margin:20px 8px 0;
}

#footer .contact_info_sp{
	display:none;
}

#footer .contact_info_sp .footer_tel{
	padding:10px 3em;
	border:2px solid #907765;
	border-bottom:3px solid #907765;
	-moz-border-radius: 10px;/*角丸指定 四隅を丸くすることで10pxの●に*/
	-webkit-border-radius: 10px;/*角丸指定*/
	border-radius: 10px;/*角丸指定*/
	display:inline-block;
	margin:10px 0;
}

#footer .contact_info_sp p:last-child img{
	margin:10px 30px;
	height:40px;
	width:auto;
	}

#footer #footer_partner{}

#footer #footer_partner h4{
	background-color:#f4eee8;
	color:#907765;
	font-size:0.77em;
	padding:2px;
}


#footer #footer_partner ul li{
	display:inline-block;
	margin:20px 2% 0;
}

#footer #footer_partner ul li a{
	display: inline-block;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

#footer #footer_partner ul li a:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#footer #footer_partner ul li a img{
	max-width: 124px;
}

/* ▼　ページトップ　▼ */
#pagetop{
	text-align:right;
	margin-top:-50px;
	margin-right:29px;
}

/* ▲　ページトップ　▲ */
/* ▲　フッタ　▲ */

/* ▼　コピーライト　▼ */
#footer .copyright{
	padding:20px 0 30px;
}
/* ▲　コピーライト　▲ */




