/* CSS Document */


/*基本指定*/


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 {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 0 none;
    font-size: 100%;
	font-family:"ＭＳ Ｐゴシック","平成角ゴシック",sans-serif;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: baseline;
}

/*画像指定*/

img{
　　border: none;
}
a img {
    border: none;
}

/* リンク色（ページ全体） */
a {
	color: #FF69B4; /* リンク色を鮮やかなピンクに */
	text-decoration:
	underline;
}

a:hover {
	color: #FF0000;
	text-decoration: none;
}

hr{
	color:#CCCCCC;
	margin: 10px 20px;
}

/*文字装飾*/

/*文字色指定*/
.red { color: #ff0000; }
.blue { color: #0000cc; }
.orange { color: #FF9900; }
.green { color: #00CC33; }
.light_b { color: #33CCFF; }


/*太文字指定*/
.b { font-weight: bold; }

/*フォントの大きさ指定*/

.xx-small { font-size:58%; }
.x-small { font-size:69%; }
.small { font-size:83%; }
.large { font-size:120%; }
.x-large { font-size:144%; }
.xx-large { font-size:172%; }



/*文字装飾*/
.yline { background: #ffff00; }


/*文字列右寄せ*/

.link_r {
	text-align: right;
	margin-right:10px;
}

#content .to-center {text-align:center;}
#content .to-right {text-align:right;}

.float-right {
  margin-bottom:10px;
  margin-left:10px;
  float:right;
  display:inline;
}

.float-left {
  margin-bottom:10px;
  margin-right:10px;
  float:left;
  display:inline;
}

/*コンテンツ指定*/

body {
	text-align: center;
	font-size:14px;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',	Meiryo,'ＭＳ Ｐゴシック';
	background-color: #FAF0E6; /* 背景色をリネンに変更 */
	background-image: none; /* 元の背景画像を削除 */
	background-repeat: repeat;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (min-width: 641px){

/*画像指定*/

.img_l{
	float:left;
	background:#fff;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 15px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 15;
}

.img_r{
	float:right;
	padding-left:10px;
	margin-top: 0;
	margin-bottom: 0;
	padding-right: 15px;
	margin-left: 10px;
}



#wrapper{
	width:820px;
	background-image: url(img/bg.gif);
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1); /* ラッパーにも影を追加 */
    border-radius: 8px; /* ラッパーの角を丸く */
}

/**▼ヘッダー*****/

#header{
	width:800px;
	margin:0 auto;
}

#head_img{
	height: 351px;
	background: url(img/top.jpg) no-repeat center center / cover; /* 画像を中央配置し、カバーするように調整 */
	margin-bottom:30px;
	border-bottom:4px solid #FF69B4; /* ヘッダー下線を鮮やかなピンクに */
}

h1{
	font-size:20px; /* フォントサイズを大きく */
	font-weight:bold;
	margin-top: 20px; /* 上下のマージンを追加 */
	margin-bottom: 20px;
	padding: 15px 25px; /* パディングを調整 */
	width: 90%; /* 幅を調整 */
	max-width: 800px; /* 最大幅を指定 */
	background: linear-gradient(to right, #FFD700, #FFC0CB); /* グラデーションの背景 */
	margin-right: auto;
	margin-left: auto;
	text-align: center; /* 中央揃え */
	color: #8B4513; /* 落ち着いた茶色系の文字色に */
	border-radius: 10px; /* 角を丸く */
	box-shadow: 3px 3px 10px rgba(0,0,0,0.3); /* 影を強調 */
	letter-spacing: 0.15em; /* 字間をさらに広げる */
	text-shadow: 1px 1px 2px rgba(255,255,255,0.7); /* 文字に影をつけて見やすく */
	border: 2px solid #DAA520; /* ゴールドの枠線を追加 */
}

h1 a{
	text-decoration:none;
	color:#8B4513; /* 文字色と合わせる */
}


/*メイン記事指定*/

h2{
	height: auto; /* 高さを自動調整 */
	padding: 15px 1.5em; /* パディングで高さを調整 */
	background: #FFD700; /* ゴールドに変更 */
	line-height: normal; /* 行の高さを自動に */
	font-size: 22px; /* フォントサイズを少し大きく */
	font-weight:bold;
	clear:both;
	color: #8B4513; /* 文字色を落ち着いた茶色に */
	text-indent: 0; /* インデントをリセット */
	margin-top: 30px; /* 上マージンを調整 */
	margin-right: auto;
	margin-bottom: 25px; /* 下マージンを調整 */
	margin-left: auto;
	text-align: center; /* 中央揃え */
    border-radius: 8px; /* 角を丸く */
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2); /* 影を追加 */
    width: 90%; /* 幅を調整 */
    max-width: 760px; /* 最大幅を指定 */
}

h3{
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	font-weight:bold;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #FFC0CB; /* 薄いピンクに変更 */
	margin-top: 15px; /* マージンを調整 */
	margin-bottom: 15px;
	padding-right: 15px;
	padding-left: 15px;
    color: #FF69B4; /* 鮮やかなピンクに */
}

#content{
	width:760px;
	margin: 0px auto;
	padding-top: 0px 20px;
	text-align: left;
}

#content .inner p {
	background-image: url(img/p_bg3.gif); /* 必要であれば別の背景画像に変更 */
}


.inner{
	margin: 10px 15px 20px 15px;
	border: 1px solid #FFC0CB; /* ボーダーの色を薄いピンクに */
	padding: 1px 1px 10px 1px ;
    border-radius: 5px; /* 内側ボックスの角を丸く */
    background-color: #FFFFFF; /* 背景を白に */
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* 影を追加 */
}

.inner p{
	background: url(img/p_bg.gif) left bottom; /* 必要であれば別の背景画像に変更 */
	margin:0 15px 15px;
	font-size: 14px;
	line-height: 25px;
	text-align:justify;
}

/*フッター*/

#footer{
	text-align: center;
	clear: both;
	overflow:hidden;
}
#footer p {
	margin-right: 30px;
	margin-left: 30px;
	text-align: left;
}


address {
	font-style: normal;
	color: #FFFFFF;
	text-align: center;
	display: block;
	background: linear-gradient(to right, #FFC0CB, #FF69B4); /* フッター背景もグラデーション */
	font-size: 12px;
	margin: 30px auto 0px auto;
	padding: 5px 0px;
	width: 800px;
    border-radius: 5px; /* 角を丸く */
}

/**▼フッターリンク*****/

#space{
	margin: 0 15px 15px;
	padding:15px 0;
	font-size:10px;
	border-top:1px #FFC0CB solid; /* ボーダーの色を薄いピンクに */
	clear:both;
	text-align: left;
}


/*ボタン指定*/

.bt_c{
	text-align:center;
	clear:both;
	width: 600px;
	height: auto; /* 高さを自動調整 */
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	padding-top: 10px;
	padding-right: 63px;
	padding-bottom: 10px;
	padding-left: 63px;
}

/*画像指定*/


/*回り込み解除*/
.c_both{ clear:both;}

}

@media screen and (max-width: 640px){

.link_r {
	display: none;
}


/*画像指定*/

.img_l{
	background:#fff;
}

.img_r{
	margin: 10px;
}


#header {
	margin:0 auto;
	padding: 0;
}

#header img {
	width: 100%;
}

#head_img{
	margin-bottom: 10px;
	border-bottom: 4px solid #FF69B4; /* ヘッダー下線を鮮やかなピンクに */
	height: auto;
}

h1{
	font-size:18px; /* フォントサイズを調整 */
	font-weight:bold;
	padding: 10px 8px; /* パディングを調整 */
	background: linear-gradient(to right, #FFD700, #FFC0CB); /* グラデーションの背景 */
	text-align: center; /* 中央揃え */
	color: #8B4513; /* 落ち着いた茶色系の文字色に */
    border-radius: 8px; /* 角を丸く */
    box-shadow: 2px 2px 7px rgba(0,0,0,0.2); /* 影を強調 */
    letter-spacing: 0.1em; /* 字間を調整 */
    text-shadow: 1px 1px 2px rgba(255,255,255,0.7); /* 文字に影をつけて見やすく */
    border: 1px solid #DAA520; /* ゴールドの枠線を追加 */
}

/*メイン記事指定*/

h2{
	background: #FFD700; /* ゴールドに変更 */
	font-size: 20px;
	font-weight:bold;
	clear:both;
	color: #8B4513; /* 文字色を落ち着いた茶色に */
	padding: 15px; /* パディングを調整 */
    border-radius: 8px; /* 角を丸く */
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2); /* 影を追加 */
    text-align: center; /* 中央揃え */
}

h3{
	font-size: 16px;
	font-weight:bold;
	border-bottom: solid thin #FFC0CB; /* 薄いピンクに変更 */
	padding: 10px;
    color: #FF69B4; /* 鮮やかなピンクに */
}

#content{
	margin: 0px auto;
	padding: 0px 10px;
	text-align: left;
}

#content img {
	width: 100%; /* モバイルでは画像を幅いっぱいに表示 */
    height: auto; /* 高さを自動調整 */
}

#content .inner p {
	background-image: url(img/p_bg3.gif); /* 必要であれば別の背景画像に変更 */
}

.inner{
	background: #FFF;
	margin: 10px auto 20px;
	border: 1px solid #FFC0CB; /* ボーダーの色を薄いピンクに */
	padding: 1px 1px 10px 1px ;
    border-radius: 5px; /* 内側ボックスの角を丸く */
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* 影を追加 */
}

.inner p{
	background: url(img/p_bg.gif) left bottom; /* 必要であれば別の背景画像に変更 */
	margin: 10px;
	font-size: 14px;
	line-height: 25px;
	text-align:justify;
}

.bt_c {
	text-align: center;
}

/*フッター*/

#footer{
	text-align: center;
	clear: both;
	overflow:hidden;
}

#footer p {
	margin: 0 20px;
	text-align: left;
	font-size: 12px;
}


address {
	font-style: normal;
	color: #FFFFFF;
	text-align: center;
	display: block;
	background: linear-gradient(to right, #FFC0CB, #FF69B4); /* フッター背景もグラデーション */
	font-size: 12px;
	margin: 20px auto 0px;
	padding: 5px 0px;
    border-radius: 5px; /* 角を丸く */
}

}