/*
Theme Name: Sample Theme
Theme URI: http://www.www.www/
Description: This is my sample theme.
*/

/*---------------------------------
add css standard start
--------------------------------*/

@charset "utf-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size: 100%;
    vertical-align:baseline;
    background:transparent; /*背景色を透明にする初期設定 */
}

@media only screen and (max-width: 644px) {
	}


/* 基本 */
body  {font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
margin:0; padding:0;
overflow-x: hidden;
    position: relative;
   background-color:#fff;
  color: #40464d;
}

* html body{  
    overflow: hidden;  /* はみ出た部分非表示 */
}  

.wrap {
	margin:0; padding:0;
  overflow: hidden; /*スマホサイトの右に空白が出るので全体を wrapして解決*/
}

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

a  {text-decoration: none;
  color: #000;
  vertical-align:baseline;
    background:transparent;
}

a img  {border: none}

a:hover img {
  opacity: 0.6; /* マウスオーバー時透過 */
  filter: alpha(opacity=60);
}

/* clearfix */
.cf { zoom: 1; }
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }

.both {
  clear: both;
}

.inline_block {  
  display: inline-block;  
  *display: inline;  
  *zoom: 1;  
}

/* reCAPTCHA非表示 */	
.grecaptcha-badge { visibility: hidden; }

/*---------------------------------
add css standard end
add css layout start
--------------------------------*/

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
 共通設定およびスマートフォン向けのスタイル
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

h1 a:hover img {
  opacity: 1.0; /* マウスオーバー時透過 しない*/
}


.top_h2 {
	width:100%;
}
h2.fukidashi {
    position: relative;
    padding: .5em .7em;
    border-radius: 10px;
    background-color: #ea5526;
    color: #fff;
	font-size:1.3em;
}

h2.fukidashi::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-top: 11px solid #ea5526;
}

.cute-heading-8 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3436;
  padding: 18px 24px 18px 60px;
  position: relative;
}

.cute-heading-8::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #c4b7a8;
  border-radius: 50%;
  opacity: 0.6;
}

.cute-heading-8::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 25%;
  width: 18px;
  height: 18px;
  background-color: #998675;
  border-radius: 50%;
  opacity: 0.7;
}



 /* 続きを見るボタン*/

:root { --btn-color: #333; }

.btn-stretch {
  display: block;
  margin: 2em auto;
  width: 100%;
  max-width: 250px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--btn-color);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-stretch span {
  position: relative;
  z-index: 3;
  color: var(--btn-color);
  transition: color 0.2s ease;
}

.btn-stretch:hover span { color: #fff; }

.btn-stretch::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--btn-color);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.btn-stretch:hover::before { transform: scaleY(1); }
 /* 続きを見るボタンここまで*/





/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#header{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
	width:100%;
} 

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*見出し設定*/
h2.top_logo2 {
/*要素の配置*/
    position:absolute;
    /*要素を天地中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
	width:100%;
}
h2.top_logo2 img {
filter: drop-shadow(3px 3px 3px #000);
}





h2.top_logo{
    /*要素の配置*/
    position:absolute;
    /*要素を天地中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*見た目の調整*/
    color:#fff;
    text-shadow: 0 0 15px #666;
}
h2.top_logo img {
filter: drop-shadow(3px 3px 3px #000);
}
/*========= 背景動画設定のCSSここまで ===============*/

#head_menu_pc {
	display:none;
}
#head_menu_mobile {
width:100%;
	margin:0;
background-color:rgb(153, 134, 117, 0.8);
	position: fixed;
	z-index: 9999;
}
.head_inner {
	width:90%;
	margin:20px auto;
}
.head_inner_logo {
	width:75%;
	float:left;
}
.head_inner_menu {
	width:22%;
	float:right;
	text-align:right;
}

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: rgb(255, 255, 255, 0.8);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/*============
main
=============*/
main {
  padding: 25px 25px 10px 25px;
}
/*============
nav_END
=============*/


/*========= スクロールダウンのためのCSS ===============*/

/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scroll{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:30px;
  left:50%;
}

/*Scrollテキストの描写*/
.scroll span{
    /*描画位置*/
  position: absolute;
  left:10px;
  bottom:10px;
    /*テキストの形状*/
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scroll:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
  width:10px;
  height:10px;
  border-radius: 50%;
  background:#fff;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }

/* 線の描写 */
.scroll:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width:2px;
  height: 50px;
  background:#fff;
}



/*main*/
#main {
  width:100%;
background-color:#fff;	
  }

/*top01_about*/
#top01_about {
	width:100%;
}
.top01_about_inner {
width:95%;	
	margin:0 auto;
	padding:50px 0;
}
.top01_about_inner_left {
width:95%;
	margin:0 auto;
}
.top01_about_inner_right {
width:95%;
	margin:0 auto;
	text-align:right;
}
.textbox90 {
	width:90%;	
	margin:0 auto;
	padding:50px 0;
}
.brownbox {
background-color:rgb(153, 134, 117, 0.8);	
	border-radius: 30px;
	margin:30px 0;
	padding:30px;
	color:#fff;
}
h3.underline {
    padding:0 .4em .2em;
    border-bottom: 2px solid #fff;
    color: #fff;
	margin:0 0 15px 0;
	font-size:1.2em;
}

/*top02_teams*/
#top02_teams {
	width:100%;
}

.top02_teams_inner {
width:95%;	
	margin:0 auto;
	padding:50px 0;
}
.teams_shokai {
width:100%;
	margin:50px auto;
}
.teams_shokai_s {
width:100%;	
}
.teams_shokai_s table {
width:100%;	
	border:1px #998675 dotted;
	margin:0 0 50px 0;
}
.teams_shokai_s table td.shokai_mark {
	text-align:center;
	font-weight:bold;
	padding-bottom:10px;
}
.teams_shokai_s table th {
	width:25%;
border-bottom:1px #998675 dotted;
	padding:10px 0;
	background-color:#998675;
	color:#fff;
	font-weight:normal;
}
.teams_shokai_s table td {
border-bottom:1px #998675 dotted;	
	padding:10px 0 10px 20px;
}
.teams_shokai_s table td.shokai_text {
padding:10px 20px;	
border:none;
}
.teams_shokai_s table td.shokai_mark img {
	padding:15px 0 10px 0;
}
.teams_shokai_s table td img {
	width:50%;
}

/*top03_news*/
#top03_news {
	width:100%;
	padding-bottom:100px;
}

.top03_news_inner {
width:95%;	
	margin:0 auto;
	padding:50px 0;
}

.top_news_line_pc {
	display:none;
}
.top_news_line_sp {
	width:88%;
	margin:30px auto;
	text-align:left;	
}
.top_news_line_sp ul {
	list-style: none;
  margin: 0;
  padding: 0;
}
.top_news_line_sp ul li {
  clear: both;
  margin: 0 0 0.3em;
   border-bottom: dotted 1px #999999;
  padding-bottom:5px;
}
.top_news_line_sp ul li  a{
  color:#4d4d4d;
  text-decoration:underline;
}
.top_news_line_sp ul li span.maru {
  display: inline;
  float: none;
  padding: 0 5px;
  font-size: 13px;
  color:#ea5526;
}
.top_news_line_sp ul li span.ymd {
  display: inline;
  float: none;
  padding: 0 5px;
  font-size: 13px;
  color:#999;
}

/*top04_SNS*/
#top04_sns {
	width:100%;
	background-image: url(https://tsuruga-kodomo-shokudo.net/wp-content/uploads/fb_bg_green-scaled.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;

}

.top04_sns_inner {
width:95%;	
	margin:0 auto;
	padding:50px 0;
}

.top04_fb {
width:100%;
	margin:50px 0 0 0;
	text-align:center;
}

/*top05_kifu*/
#top05_kifu {
	width:100%;
	background-image: url(https://tsuruga-kodomo-shokudo.net/wp-content/uploads/top_kifu_bg.jpg);
	background-repeat: repeat-x;
	background-position:bottom;
}

.top05_kifu_inner {
width:95%;	
	margin:0 auto;
	padding:50px 0 150px 0;
}
.top_text_box_900 {
width:95%;
	margin:50px auto;	
}

/*top06_start*/
#top06_start {
	width:100%;
}

.top06_start_inner {
width:95%;	
	margin:0 auto;
	padding:50px 0;
}

/*top07_volunteer*/
#top07_volunteer {
	width:100%;
	background-image: url(https://tsuruga-kodomo-shokudo.net/wp-content/uploads/volunteer_bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.top07_volunteer_inner {
width:95%;	
	margin:0 auto;
	padding:50px 0;
}
.top_white_box_900 {
width:80%;
	margin:50px auto;
	background-color:rgb(255 255 255 / 0.75);;	
	padding:30px 25px;
}

/*footer*/	

#footer {
  width:100%;
  padding:20px 0;
background-color:#998675;
  }

.footer_inner {
	width:90%;
	margin:0 auto;
	font-size:0.8em;
}
.footer_inner_left {
width:100%;
margin:0 auto 20px auto;	
}
.footer_inner_left img {
	width:70%;
}
.footer_inner_right {
width:100%;
margin:0 auto 20px auto;
	color:#fff;
}
.footer_inner_right a {
	color:#fff;
}
#copy {
	width:100%;
	background:#40464d;
	text-align:center;
	color:#fff;
	padding:10px 0;
	font-size:0.8em;
}

/*投稿*/
/* page_wrap　ページ内容全体 */
#page_wrap {
  width:95%;
  margin:100px auto 10px auto;
}
/* sidebar　サイドバー */
#sidebar {
  width: 100%;
	padding-bottom:500px;
font-size:0.9em;
}

div#sidebar ul  {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

div#sidebar .widget  {
  margin-bottom: 20px;
}


div#sidebar h2  {
	width:95%;
  font-size: 0.8em;
  color: #ffffff;
  background-color: #998675;
  border-radius: 3px;
  padding: 4px 10px;
  margin: 0;
}

div#sidebar li li  {
	width: 95%;
  font-size: 0.9em;
  border-bottom: dotted 1px #aaaaaa;
  margin: 0;
	padding: 4px 10px;
}

div#sidebar li li a  {
  color: #000000;
  display: block;
  padding: 5px 10px;
}

/* 記事 */
div.post  {
  margin-bottom: 30px;
  overflow: hidden;
font-size:0.9em;}

div.post h2  {background-color: #F4A460;
  font-size: 1.0em;
  padding: 10px 18px;
  margin: 0 0 20px 0;
}

div.post h2 a  {color: #000000}

div.post a  {
  text-decoration: underline;
}

div.post p  {font-size: 0.95em;
  line-height: 1.6}

div.post p.postinfo  {
  color: #999999;
  text-align: right;
  margin: 0}



/* pagenation */
p.pagenation  {
  font-size: 1.0em;
  color:#543A00;
  padding-top:100px;
  overflow: hidden}

span.oldpage  {
  font-size: 0.9em;
  color:#543A00;
  width:45%;
  height:40px;
  display: block;
float:left;}

span.newpage  {
  font-size: 0.9em;
  color:#543A00;
  width:45%;
  height:40px;
  display: block;
float:right;
	text-align:right;
}

span.oldpage a {text-decoration: underline;
}

span.newpage a {text-decoration: underline;
}



/*固定ページ*/
#page_header{
width:100%;
} 
#page_main {
  width:100%;
background-color:#fff;
margin:0;
  }
#title_img {
display:none;
}
#contents_page {
width:95%;	
	margin:30px auto;
}
.page_box {
width:95%;	
	margin:0 auto;
	padding:50px 0;	
}

/*固定ページ 私たちについて*/
.aisatsu_box {
width:90%;	
	margin:0 auto;
	padding:30px 0;	
}

table.enkaku {
width:100%;	
	border-top:1px #998675 dotted;
	border-right:1px #998675 dotted;
	margin:0 0 50px 0;
}
table.enkaku td {
border-bottom:1px #998675 dotted;	
	padding:10px;
}
table.enkaku th {
	width:25%;
border-bottom:1px #998675 dotted;
	padding:10px;
	background-color:#998675;
	color:#fff;
	font-weight:normal;
	text-align:left;
}


/*固定ページ ご支援のお願い*/
.box_5050 {
width:95%;	
	margin:20px auto 0 auto;
}
.box_5050_left {
width:95%;
	padding-bottom:30px;
}
.box_5050_right {
width:95%;
	padding-bottom:30px;
}
.box_5050 table {
width:100%;	
	border:1px #998675 dotted;
	margin:0 0 50px 0;	
}
.box_5050 table th {
	width:25%;
border-bottom:1px #998675 dotted;
	padding:10px 0;
	background-color:#998675;
	color:#fff;
	font-weight:normal;
}
.box_5050 table td {
border-bottom:1px #998675 dotted;	
	padding:10px 0 10px 20px;
}
.photo50 {
width:95%;
	margin:10px auto;
	text-align:center;
}
.photo50 img {
	width:95%;
	padding:2px;
}
/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
  Media Queries による切り替え
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* タブレット向けのスタイル：645px ～ 768px */
@media only screen and (min-width: 645px) {
 
/*header設定*/	

.head_inner_logo {
	width:50%;
}

/*main*/

/*top01_about*/
.top01_about_inner_right img {
width:70%;
}

/*top02_teams*/
.teams_shokai_s {
width:47%;	
	margin:0 10px;
	float:left;
}
	
	/* home_NEWS */

.top_news_line_pc {
	display:block;
	width:88%;
	margin:30px auto;
	text-align:left;	
}
.top_news_line_sp {
display:none;
}
	.top_news_line_pc ul {
	list-style: none;
  margin: 0;
  padding: 0;
}
.top_news_line_pc ul li {
  clear: both;
  margin: 0 0 0.3em;
   border-bottom: dotted 1px #999999;
  padding-bottom:5px;
}
.top_news_line_pc ul li  a{
  color:#4d4d4d;
  text-decoration:underline;
}
.top_news_line_pc ul li span.maru {
  display: inline;
  float: none;
  padding: 0 5px;
  font-size: 13px;
  color:#ea5526;
}
.top_news_line_pc ul li span.ymd {
  display: inline;
  float: none;
  padding: 0 5px;
  font-size: 13px;
  color:#999;
}
	
/*top07_volunteer*/
.top_white_box_900 {
width:85%;
padding:50px;
}	
	
	
	
	/*footer*/	

#footer {
padding:40px 0;
  }

.footer_inner {
font-size:1.0em;
}
.footer_inner_left img {
	width:50%;
}
	
/*固定ページ ご支援のお願い*/
.photo50 img {
	width:45%;
}
	
  }

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
  Media Queries による切り替え
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/*  PC向けのスタイル：769px～1000px */
@media only screen and (min-width: 1000px) {

	
	/*header設定*/

	#head_menu_mobile {
	display:none;
}
#head_menu_pc {
	display:block;
width:100%;
	margin:0;
background-color:rgb(153, 134, 117, 0.8);
	position: fixed;
	z-index: 9999;
}
	.head_inner {
	width:1000px;
}
	
.head_inner_logo {
	width:300px;
}
.head_inner_menu {
	width:650px;
	float:right;
	text-align:right;
}
	
	
	h2.top_logo2 {
width:800px;
}
	
	.head_inner_menu ul {
list-style: none;	
		overflow: hidden;
		float:right;
	}
	.head_inner_menu ul li {
		float: left;
		font-size:0.8em;
	padding:8px 0 0 20px;
	}
	.head_inner_menu ul li a {
		color:#fff;
		font-weight:bold;
	}
	.head_inner_menu ul li a:hover {
		color:yellow;
	}
	
/*main*/

/*top01_about*/
#top01_about {
background-image:url(https://tsuruga-kodomo-shokudo.net/wp-content/uploads/top01_about_bg.jpg);
	background-repeat: no-repeat;
background-position: right bottom;
	background-size:700px;
}
.top01_about_inner {
width:1000px;	
}
.top01_about_inner_left {
width:600px;
float:left;
}
.top01_about_inner_right {
display:none;
}
	
/*top02_teams*/
.top02_teams_inner {
width:1000px;
}

	
/*top03_news*/
.top03_news_inner {
width:1000px;
}
	
/*top04_sns*/
.top04_sns_inner {
width:1000px;
}
	
/*top05_kifu*/
.top05_kifu_inner {
width:1000px;
}
	
/*top06_start*/
.top06_start_inner {
width:1000px;
}
.top06_start_inner_left {
width:700px;
float:left;
}
.top06_start_inner_right {
width:600px;
float:right;
}
	
/*top07_volunteer*/
.top07_volunteer_inner {
width:1000px;
}
.top_white_box_900 {
text-align:center;
}	
	
/*footer*/	

#footer {
padding:20px 0;
  }

.footer_inner {
	width:1000px;
	font-size:0.8em;
}
.footer_inner_left {
width:400px;
float:left;	
}
.footer_inner_left img {
	width:300px;
}
.footer_inner_right {
width:600px;
float:right;
}
	
	/* page_wrap　ページ内容全体 */
#page_wrap {
  width:960px;
}
/* sidebar　サイドバー */
#sidebar {
  width: 200px;
	float:right;
	padding-top:30px;
	padding-bottom:700px;
}

	/* contents　コンテンツ */
#contents {
  width: 700px;
padding-bottom:400px;	
	float:left;
}

	
	div#sidebar h2  {
	width: 220px;
}


div#sidebar li li  {
	width: 220px;
	background-color: #fff;
	border-bottom: dotted 1px #aaaaaa;
}	
	
div#sidebar li li a:hover  {
  background-color: #F5F5F5;
}

/*固定ページ*/

#title_img {
display:block;
}
#title_s_img {
display:none;
}
#contents_page {
width:1000px;
}	
	
/*固定ページ ご支援のお願い*/

.box_5050_left {
width:45%;
float:left;
}
.box_5050_right {
width:45%;
float:right;
}

	
  }