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

/*リンク指示*/
a {
color:#000000;
text-decoration:underline;
}
a:link { /*アクセスしたことのないリンク*/
color:#304250;
}
a:visited { /*アクセスしたことのあるリンク*/
color:#7091A9;
}
a:hover {/*マウスが上に乗っている状態*/
color:#a8dbff;
text-decoration:underline;
}
a:active {/*クリック中*/
color:#a8dbff;
}
/*リンク指示ここまで*/

/*本文設定*/
body {
/*フォント指示*/
    color:#000000;
	font-size:12px;
	font-family:"メイリオ","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    line-height: 1.8em;
/*配置指示*/
    width: 100%;
    text-align:center;
    margin-left:auto;margin-right:auto;
    background: linear-gradient(180deg, #7091A9, #304250 ) fixed;/*グラデーション指定*/
}

main{
    width: 75%;
/*背景指示*/
    /*background: linear-gradient(150deg, #b0c4de, #2462b3 ) fixed;/*グラデーション指定*/
    background: linear-gradient(180deg, #FFFFFF, #7091A9 ) fixed;/*グラデーション指定*/
    border-radius: 30px 30px;/*角の丸み*/
    text-align:center;
    margin-left:auto;margin-right:auto;
}


/*メモbodey中央処理
text-align:center;
margin-left:auto;margin-right:auto;
※カラムの配置を行う時サイトの表示幅まで表記しておくこと
　表示幅を指定していないとカラムが永遠に広がるため
メモここまで*/



/*content*/
.content {
	width:80%;
	text-align:left;
	margin-left:auto;margin-right:auto;
}
/*content*/


/*下部テキスト処理*/
.under {
    width:80%;
    text-align:left;
	margin-left:auto;margin-right:auto;
} 
/*下部テキスト処理ここまで*/


/*content用囲みボックス*/
.box1 {
    width: 90%;
    text-align:left;
    color: #FFFFFF;
    padding: 0em 1em;
    margin: 1em 0em;
    background: linear-gradient(-150deg, #7091A9, #304250 ) fixed;/*#c9e1ff*/
    border-radius: 20px;/*角の丸み*/
}
.box1 p {
    margin: 2px; 
    padding: 0;
}
/*content用囲みボックスここまで*/

/*画像表示指示（JavaScript連動)*/
img {
    text-align:center;
    margin-left:auto;margin-right:auto;
	max-width: 50%;
}
/*画像表示指示（JavaScript連動)ここまで*/

/*画像用囲みボックス*/
.box2 {
    text-align:center;
    margin-left:auto;margin-right:auto;
}
/*画像用囲みボックスここまで*/


/*本文用pタグ*/
p {
    margin: 20px 20px;
    padding: 0em 1em;
}
p1 {
	font-size:10px;
    line-height: 0.4em;
    margin: 10px 20px;
    padding: 0em 1em;
}
/*本文用pタグここまで*/


/*余白調整*/
.bottom_space {
  margin-bottom: 15em;
}
/*余白調整ここまで*/


