﻿/* レイアウト ::::::::::::::::::::::::::::::::::::::::::: */
/* PC用 body要素 横幅640px指定 */
#body	{
	max-width:640px;
	margin-left:auto;
	margin-right:auto;
}

/* ページ内リンクの固定ヘッダー分の表示ずれを回避 =============== */
section.anchor {
    padding-top: 50px;
    margin-top:-50px;
}

/*ボタンの背景の調整 */
.bg03_1-2	{
	background-image:url("img/img03_1-2.jpg");
	background-size:contain;
}

.bg03_1-5	{
	background-image:url("img/img03_1-5.jpg");
	background-size:contain;
}

/* ボタン オレンジ背景、黒枠 */
.button3	{
	display:block;
	width:70%;
	padding:10px;
	margin:10px auto;
	text-align:center;
	font-size:16px;
	font-weight:bold;
	border-radius:10px;/* 角丸にするかどうか */
	background:#FF931E center;
	background-size:3%;
	border:2px solid #000000;
	color:#000000;
}

/* ヘッダ ::::::::::::::::::::::::::::::::::::::::::::::::::::  */
.header_s	{
	display: -webkit-box; /* "display: flex(Flexbox)"のベンダープレフィクス(AutoPrefixer(-webkit系)) */
	display: -ms-flexbox; /* "display: flex(Flexbox)"のベンダープレフィクス(AutoPrefixer(-ms系)) */
	display: flex; /* Flexboxを使用 */
	position: fixed; /* ウィンドウを基準に画面に固定 */
	top: 0;
	padding: 10px;
	width: 100%;
	max-width:640px;
	height: 50px;
	-webkit-box-pack: start; /* "justify-content: flex-start"のベンダープレフィクス(AutoPrefixer(-webkit系)) */
	-ms-flex-pack: start; /* "justify-content: flex-start"の"ベンダープレフィクス(AutoPrefixer(-ms系)) */
	justify-content: center; /* header内のアイテムを中央寄せ配置 */
	-webkit-box-align: center; /* "align-items: center"のベンダープレフィクス(AutoPrefixer(-webkit系)) */
	-ms-flex-align: center; /* "align-items: center"の"ベンダープレフィクス(AutoPrefixer(-ms系)) */
	align-items: center; /* header内のアイテムを縦中央配置 */
	background:#FFF;
	overflow: hidden;
	z-index: 5; /* headerの重ね順を他の要素より前に配置する (#container:1) */
}

/* メインイメージ ======================================= */
/* 中央寄せ */
.main	{
	text-align: center;
}


/* コピーライト =============================================== */
#semi_copyR	{
	padding-top:15px;
	padding-bottom:15px;
	text-align:center;
	font-size:10px;
}

/* pagetopボタン */
.pagetop	{
	position:fixed;
	right:30px;
	bottom:30px;
	display:none;
}

/* 文字装飾 ::::::::::::::::::::::::::::::::::::::::::::: */
.fs_20p	{ font-size:20px; }

