@charset "utf-8";
/* ------------------------------------------- 以下、構築に関するリセット ------------------------------------------- */

/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License: 
http: //developer.yahoo.com/yui/license.html
version: 2.9.0
*/
/**
 * YUI Reset
 * @module reset
 * @namespace
 * @requires 
 */

html {
	background-color: none;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
    font: inherit;
}

del,
ins {
	text-decoration: none;
}

li {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q: before,
q: after {
	content: '';
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

sup {
	vertical-align: baseline;
}

sub {
	vertical-align: baseline;
}

/*because legend doesn't inherit in IE */
legend {
	color: #000;
}





/* ------------------------------------------- 以下、fontに関するリセット ------------------------------------------- */

/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License: 
http: //developer.yahoo.com/yui/license.html
version: 2.9.0
*/
/**
 * YUI Fonts
 * @module fonts
 * @namespace yui-
 * @requires 
 */

/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
	font: 12px/1.231 arial,helvetica,clean,sans-serif;
	/* for IE6/7 */ 
	*font-size: small; 
	/* for IE Quirks Mode */
	*font: x-small; 
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */ 
select,
input,
textarea,
button {
	font: 99% arial,helvetica,clean,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
	font-size: inherit;
	font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
	font-family: monospace;
	*font-size: 108%;
	line-height: 100%;
}







/* 共通設定
****************************************************************************************************************************************** */
html,body{ 
    height: 100%;
} 

body {
	background-color: #FFF;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 12px;
	text-align: center;
	line-height: 1.2em;
	overflow-x: hidden;
	}

a {
	cursor: pointer;
}


/* 全体構成
---------------------------------------------------------------------------*/

/* container 全体を囲むボックス
-----------------------------------------------------*/
#container {
	position: relative;
	min-height: 100%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

* html div#container { 
	height: 100%;
}


/* header
-----------------------------------------------------*/
#header {
	width: 1000px;
	height: 250px;
	background-color: #FFF;
	background: url(../img/bg_header.jpg) no-repeat 0 0;
	margin: 0 auto;
}
@media screen and (max-width: 480px){
	#header {
		width: 100vw;
		height: calc(100vw / 4);
		background: url(../img/bg_header.jpg) no-repeat 10vw 0;
		background-size: cover;
	}
}


/**
 * clearfix
 */

#header:before,
#header:after { /* For modern browsers */
    content: "";
	display: table;
}
#header:after {
	clear: both;
}
#header { /* For IE 6/7 (trigger hasLayout) */
    zoom: 1;
}



/* main
-----------------------------------------------------*/
#main {
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-bottom: 250px;
}


/**
 * clearfix
 */

#main:before,
#main:after { /* For modern browsers */
    content: "";
	display: table;
}
#main:after {
	clear: both;
}
#main { /* For IE 6/7 (trigger hasLayout) */
    zoom: 1;
}



@media screen and (max-width: 480px){
	#main {
		padding-bottom: 200px;
	}
}




/* content
------------------------*/
 .content { /* ページ内スクロール01用 */
	position: relative;
	width: 100%;
	padding-bottom: 80px;
}


/**
 * clearfix
 */

.content:before,
.content:after { /* For modern browsers */
    content: "";
	display: table;
}
.content:after {
	clear: both;
}
.content { /* For IE 6/7 (trigger hasLayout) */
    zoom: 1;
}



	

/* footer
-----------------------------------------------------*/
#footer {
	position: absolute;
	bottom: 0 !important;
	width: 100%;
	height: 170px;
	background-color: #EDEDED;
	font-size: 10pt;
	text-align: center;
	padding-top: 30px;
}

@media screen and (max-width: 480px){
	#footer {
		height: 120px;
		padding-top: 20px;
	}
	#footer img {
		width: 60%;
		height: auto;
	}
}








/**
 * 重要な文字
 */
 
 
.note { color: #F00;}
.note_b { font-weight: bold; color: #F00;}


/**
 * リンクテキスト
 */

a: {
	color: #03F;
	text-decoration: none;
}
a:visited {
	color: #03F;
	text-decoration: none;
}
a:hover {
	color: #39C;
	text-decoration: underline;
}










/* 各部位の個別設定
****************************************************************************************************************************************** */

/* 各コンテンツ内
-----------------------------------------------------*/
/* ヘッダー内部
-----------------------------------------------------*/
#head {
	position: relative;
	width: 99%;
	height: 250px;
	background-color: none;
	margin: 15px auto 0 15px;
}

h1 {
	width: 343px;
	height: 96px;
	background: url(../img/img_log.png) no-repeat 5px 0;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 480px){
	#head { margin: 10px 0 0 0;}
	h1 {
		width: 60vw;
		height: calc(60vw * 96 / 343);
		background-size: cover;
	}
}






/* ページ上部へ
---------------------*/
.menu_top {
	width: 98%;
	font-family:"ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	color: #06F;
	text-align: right;
	margin: 0 auto 40px;
	cursor: pointer;
}
@media screen and (max-width: 480px){
	.menu_top {
		margin-bottom: 0;
		}
}




/* ハガキをバナーにした広告
---------------------*/
.bnr_postcard {
	text-align: center;
	margin: 0 auto 80px;
}

@media screen and (max-width: 480px){
	.bnr_postcard {
		margin-bottom: 40px;
	}
	.bnr_postcard img {
		max-width: 100vw;
		height: auto;
	}
}




/* フォームに飛ぶボタン */
div.plans {
	/* ----- リストを中央寄せにする為の記述*/
	position: relative;
	overflow: hidden;
}

div.plans ul {
	height: 58px;
	/* ----- リストを中央寄せにする為の記述*/
	float: left;
	left: 50%;
	position: relative;
}

li.btn_join,
li.btn_next,
li.noLink {
	/* ----- リストを中央寄せにする為の記述*/
	float: left;
	left: -50%;
	position: relative;
	margin-right: 30px;
}

li.noLink {
	width: 360px;
	height: 58px;
	background: url(../img/btn_next_noLink.png) no-repeat 0 0;
}

li.btn_join a,
li.btn_next a {
	width: 360px;/* !重要: 各liにwidth指定が無いと並びません */
	height: 58px;
	text-decoration: none;
	text-indent: -9999px;
	display: block;
}

/* normal
---------------------*/
li.btn_join a { background-image: url(../img/btn_join.png);}
li.btn_next a { background-image: url(../img/btn_next.png);}

/* rollover
---------------------*/
li.btn_join a:hover,
li.btn_next a:hover {
	background-position: 0  -58px;
}







/* メールフォーム見出し  
---------------------*/
.line_cap_form_eb {
	width: 100%;
	height: 90px;
	background-color: #ff318b;
	text-align: center;
	line-height: 125px; /* imgの縦配置を中央にする。値は適当にやってみたらheightの約1.38倍が良いみたい */
	margin: 0 auto 60px;
}

@media screen and (max-width: 480px){
	.line_cap_form_eb {
		height: 60px;
		line-height: 82px; /* imgの縦配置を中央にする。値は適当にやってみたらheightの約1.38倍が良いみたい */
		margin: 0 auto 30px;
		}
	.line_cap_form_eb img {
		width: 90%;
		height: auto;
		}
}


/* メールフォーム上部 説明文
-----------------------------------------------------*/
ul.guide_member {
	width: 60%;
	margin: 40px auto;
}
ul.guide_member li {
	list-style-type: disc;
	font-size: large;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	margin: 0 auto 7px 15px;
}

@media screen and (max-width: 480px){
	ul.guide_member {
		width: 94vw;
		margin-top: 0;
	}
	ul.guide_member li {
		line-height: 1.3m;
		margin: 0 auto 5px 15px;
	}
}



/*【フォーム】
**************************************************** */
.formAround {
	margin: 50px auto　30px;
}


/*【ボタン】
-----------------------------------------------------*/
#areaButton {
	width: 900px;
	text-align: center;
	margin: 20px auto 30px;
	padding: 0;
}
	#areaButton input {
	margin-left: 30px;
	border: none;
	text-indent: -9999px;
}

/* ボタンを押す
-----------------------------*/
.mail_submit,
.mail_reset,
.mail_back,
.mail_topback {
	width: 300px;
	height: 60px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
}
.mail_submit { background-image: url(../img/btn_Msubmit.jpg);}
.mail_reset { background-image: url(../img/btn_Mreset.jpg);}
.mail_back { background-image: url(../img/btn_Mback.jpg);}
.mail_topback { background-image: url(../img/btn_Mtotop.jpg);}



@media screen and (max-width: 480px){
	#areaButton {
		width: 98%;
		text-align: center;
		margin: 20px auto 30px;
		padding: 0;
	}
	#areaButton input {
		margin-left: 10px;
		border: none;
		text-indent: -9999px;
	}

	.mail_submit { background: url(../img/btn_Msubmit.jpg) no-repeat 0 0;}
	.mail_reset { background: url(../img/btn_Mreset.jpg) no-repeat 0 0;}
	.mail_back { background: url(../img/btn_Mback.jpg) no-repeat 0 0;}
	.mail_topback { background: url(../img/btn_Mtotop.jpg) no-repeat 0 0;}.mail_submit,

	.mail_reset,
	.mail_back,
	.mail_topback {
		width: 180px;
		height: 36px;
		background-size: cover;
		cursor: pointer;
	}
	input[type="button"],input[type="submit"]#conf {
		width: 180px;
		height: 36px;
		margin-left: 10px;
	}
}



/* 基本のフォーム【テーブル】
**************************************************** */
table.mail {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #FFF;
	margin: 10px auto 20px;
	padding: 10px;
}

@media screen and (max-width: 480px){
	table.mail {
		width: 98%;
		border-collapse: collapse;
		border: none;
	}
}

table.mail th {
	height: 36px;
	border-style: solid;
	border-color: #FFF;
	border-width: 1px 1px 0;
	background-color: #F4F4F4;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight: normal;
	text-align: left;
	padding: 5px 5px 5px 20px;
}

@media screen and (max-width: 480px){
	table.mail th {
		width: calc(100vw - 10vw);
		border: none;
		font-size: 20px;
		padding: 5px 5px 5px 15px;
		}
}

table.mail td {
	border-style: solid;
	border-color: #FFF;
	border-width: 0 1px 0;
	font-size: 12px;
	text-align: left;
	line-height: 1.5em;
	padding: 30px;
}

@media screen and (max-width: 480px){
	table.mail td {
		width: calc(100vw - 10vw);
		border: none;
		font-size: 16px;
		padding: 10px;
	}
	table.mail td img {
		width: 100%;
		height: auto;
		margin: auto;
	}
}


/* input[type="text"]
-----------------------------*/
table.mail td input[type="text"] {
	height: 20px;
	color: #333;
	margin: 0 2px 3px 0;
	padding: 5px;
}

.waku_name { width: 400px;}
.waku_post-no { width: 200px;}
.waku_address { width: 600px;}
.waku_tel { width: 300px;}
.waku_mail { width: 500px;}

@media screen and (max-width: 480px){
	.waku_name { width: 60%;}
	.waku_post-no { width: 35%;}
	.waku_address { width: 90%;}
	.waku_tel { width: 40%;}
	.waku_mail { width: 70%;}
}

table.mail td textarea {
	width: 700px;
	color: #333;
	margin-bottom: 5px;
	padding: 5px;
}
@media screen and (max-width: 480px){
	table.mail td textarea {
		width: 90vw;
		color: #333;
		margin: 0 auto 5px;
		padding: 5px;
	}
}



/* checkbox
-----------------------------*/
table.mail td input[type="checkbox"] {
	/*vertical-align: -0.2em;
	margin: 0 2px 3px 2px;*/
	position: relative;
	top: 1px;
	margin-left: 3px;
	margin-right: -2px;
}

/* select
-----------------------------*/
.areaSelect {
	border: 1px solid #999;
	line-height: 1.2em;
	font-size: large;
	margin-bottom: 5px;
	padding: 2px;
}

table.mail td select option {
	border: none;
	color: #666;
	margin: 1px;
}


table.mail td div.questionnaire {
	line-height: 1.6em;
	margin: 15px auto 20px;
}


/** 必須項目 */
.essential {
	color: #F63;
	font-weight: bold;
}



/* メール送信後ページ
-----------------------------------------------------*/
#guide_form {
	width: 70%;
	font-size: large;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	margin: 40px auto 40px;
}
#guide_form h3 {
	font-size: x-large;
	font-weight: bold;
	margin-bottom: 20px;
}


table.mail_submit {
	width: 70%;
	background-image: none;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #999;
	margin: 10px auto 40px;
	padding: 10px;
}

table.mail_submit th {
	width: 30%;
	border-style: solid;
	border-color: #999;
	border-width: 1px 1px 0;
	background-image: none;
	background-color: #F4F4F4;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight: normal;
	text-align: left;
	padding: 15px;
}

table.mail_submit td {
	background-image: none;
	background-color: #FFF;
	border-style: solid;
	border-color: #999;
	border-width: 1px;
	font-size: 16px;
	text-align: left;
	line-height: 1.4em;
	padding: 15px;
}









/* フッター内部
-----------------------------------------------------*/
#copy {
	width: 800px;
	text-align: center;
	font-size: 11px;
	margin: 20px auto;
}

@media screen and (max-width: 480px){
	#copy {
		width: 90%;
		text-align: center;
		font-size: 10px;
		margin: 20px auto;
	}
}





