html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

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

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

/*-----------------------------------------------------------------------------
Firefoxの右側スクロールバーの表示
Firefox上でコンテンツの高さがウィンドウの高さより短い場合に表示位置がずれる現象を解消
-----------------------------------------------------------------------------*/
html {
	overflow-y: scroll;
}

/* *{border-style:none;} */

img {
	vertical-align: top;
}

/*-----------------------------------------------------------------------------
フロート操作によるボックスの高さ調整
-----------------------------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
	min-height: 1%;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* End hide from IE-Mac */

/* 共通定義
=========================================================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

html {
	overflow: auto;
	font-size: 62.5%;
	/* sets the base font to 10px for easier math */
}

body {
	margin: 0 !important;
	padding: 0 !important;
	font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.7;
	color: #072752;
	text-align: left;
	background: #FFF;
	-webkit-text-size-adjust: 100%;
}

/* 画像サイズ
-----------------------------------------------------------*/
img {
	width: 100%;
}

/* デスクトップ・スマホ分岐
-----------------------------------------------------------*/
.pc {
	display: block;
}

.sp {
	display: none;
}

.inner {
	margin: 0 auto;
	width: 1000px;
}

@media screen and (max-width:1030px) {
	.inner {
		width: 100%;
	}
}

/* ヘッダー
-----------------------------------------------------------*/
header {
	height: 300px;
	/*background: url(../img/header_image.jpg) top right no-repeat #010825;
	background-size: auto 100%;*/
	background-color: #F7F7F7;
	border-top: 10px solid #072752;
}

header .inner {
	overflow: hidden;
	display: flex;
	height: 100%;
}

header .logo {
	position: relative;
	width: 342px;
	height: 100%;
	background-color: #FFF;
}

header .logo img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 262px;
}

header .image {
	width: 658px;
}

/* タイトル
-----------------------------------------------------------*/
main h1 {
	padding: 25px 15px;
	font-weight: 900;
	font-size: 3rem;
	letter-spacing: .05em;
	text-align: center;
	color: #FFF;
	background-color: #072752;
}

/* 共通コンテンツ
-----------------------------------------------------------*/
main .inner {
	padding: 50px 15px 100px;
}

strong {
	font-weight: 900;
	font-size: 1.3rem;
}

/* フッター
-----------------------------------------------------------*/
footer {
	padding: 22px 15px;
	text-align: center;
	color: #FFF;
	background-color: #072752;
}

footer .logo {
	margin: 0 auto 10px;
	width: 101px;
}

footer .copyright {
	margin: 0 auto;
	width: 402px;
}

/* トップページ：アジェンダ
-----------------------------------------------------------*/
/* headline */
#agenda .headline {
	margin-bottom: 30px;
	padding: 0 20px;
	border-left: 8px solid #3891C0;
	border-right: 8px solid #3891C0;
}

#agenda .headline h2 {
	margin-bottom: .25em;
	font-weight: 900;
	font-size: 3rem;
	letter-spacing: .05em;
}

#agenda .headline p {
	margin-bottom: .5em;
	font-weight: 900;
	font-size: 1.8rem;
	letter-spacing: .05em;
}

#agenda ul.asterisk.large li {
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: .05em;
	color: #072752;
}

/* time and place */
#agenda .time_place {
	position: relative;
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 24px 24px 4px 0;
	background-color: #F7F7F7;
}

#agenda .time_place h3 {
	position: absolute;
	top: 24px;
	left: 0;
	padding: .5em;
	width: calc(160 / 1000 * 100%);
	font-weight: 900;
	font-size: 2rem;
	line-height: 1em;
	letter-spacing: .1em;
	text-align: center;
	color: #FFF;
	background-color: #3891C0;
	border-radius: 0 5px 5px 0;
}

#agenda .time_place dl {
	display: flex;
	flex-wrap: wrap;
	margin-left: calc(210 / 1000 * 100%);
	font-weight: 900;
	font-size: 1.8rem;
	letter-spacing: .05em;
}

#agenda .time_place dt {
	width: calc(72 / 790 * 100%);
}

#agenda .time_place dd {
	margin-bottom: 1em;
	width: calc(670 / 790 * 100%);
}

#agenda .time_place dl span {
	font-size: 1.6rem;
}

/* time table */
#agenda .time_table {
	margin-bottom: 30px;
}

#agenda .time_table table {
	width: 100%;
	border-top: 1px solid #A4A09F;
}

#agenda .time_table table tr {
	border-bottom: 1px solid #A4A09F;
}

#agenda .time_table table th {
	padding: 10px;
	font-weight: 400;
	font-size: 1.4rem;
	letter-spacing: .05em;
	color: #201714;
	white-space: nowrap;
}

#agenda .time_table table td {
	padding: 10px;
	font-weight: 900;
	font-size: 1.4rem;
}

#agenda .time_table table tr td:nth-child(3) {
	white-space: nowrap;
	border-left: 1px solid #A4A09F;
}

#agenda .time_table table td span.name {
	font-weight: 400;
}

#agenda .time_table table td span.small {
	/*display: block;*/
	font-weight: 400;
	font-size: 1.2rem;
}

#agenda .time_table table td span.subject {
	display: block;
	padding-left: .5em;
	border-left: 6px solid #3891C0;
}

#agenda .time_table table td span small {
	font-size: 1.3rem;
}

#agenda .time_table table td ul {
	list-style: disc;
	margin-left: 1em;
	padding-left: .5em;
	width: 100%;
	/*white-space: nowrap;*/
}

/*#agenda .time_table table td ul li {
  text-indent: -.5em;
}*?
/* lecture content */
#agenda .lecture_content {
	margin-bottom: 60px;
}

#agenda .lecture_content h3 {
	margin-bottom: .25em;
	font-weight: 900;
	font-size: 2.4rem;
	letter-spacing: .1em;
	color: #3891C0;
}

#agenda .lecture_content h4 {
	margin-bottom: .5em;
	font-weight: 900;
	font-size: 2rem;
	letter-spacing: .05em;
}

#agenda .lecture_content h4 span {
	display: block;
	font-weight: 900;
	font-size: 2.4rem;
	padding-left: .5em;
	border-left: 6px solid #3891C0;
}

#agenda .lecture_content h4 small {
	font-size: 2.0rem;
}

#agenda .lecture_content p.summary {
	font-weight: 400;
	font-size: 1.4rem;
	color: #201714;
	word-break: break-all;
}

#agenda .lecture_content .presenter {
	background-color: #EFEFF0;
}

#agenda .lecture_content .presenter .text {
	padding: 20px 20px 0;
}

#agenda .lecture_content .presenter .text p.position {
	font-weight: 400;
	font-size: 1.2rem;
}

#agenda .lecture_content .presenter .text p.name {
	margin-bottom: .5em;
	font-weight: 900;
	font-size: 1.8rem;
}

#agenda .lecture_content .presenter p.profile {
	padding: 0 20px 20px;
	font-weight: 400;
	font-size: 1.2rem;
	color: #201714;
}

#agenda hr {
	margin: 30px 0;
	border-top: 1px solid #A4A09F;
}

/* ゲストセッション */
#agenda .lecture_content .guest_session p.summary {
	margin-bottom: .5em;
}

#agenda .lecture_content .guest_session .presenter {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

#agenda .lecture_content .guest_session .presenter figure {
	width: calc(235 / 1000 * 100%);
}

#agenda .lecture_content .guest_session .presenter .text {
	width: calc(765 / 1000 * 100%);
}

#agenda .lecture_content .guest_session .presenter p.profile {
	margin-bottom: 20px;
	padding: 0;
}

/* CIOとテクノロジ・エグゼクティブのアジェンダ */
#agenda .lecture_content .main_session {
	margin-bottom: 50px;
}
#agenda .lecture_content .main_session .container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

#agenda .lecture_content .main_session .container div.summary {
	width: calc(490 / 1000 * 100%);
}

#agenda .lecture_content .main_session .container .presenter {
	width: calc(490 / 1000 * 100%);
}

#agenda .lecture_content .main_session .presenter {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

#agenda .lecture_content .main_session .presenter figure {
	width: calc(235 / 468 * 100%);
}

#agenda .lecture_content .main_session .presenter .text {
	width: calc(233 / 468 * 100%);
}

/* ラウンドテーブル */
#agenda .lecture_content .main_session {
	margin-bottom: 20px;
}
#agenda .lecture_content .main_session h3.round_table {
	display: inline-block;
	margin-bottom: .25em;
	padding: 0 .5em;
	font-weight: 900;
	font-size: 2.0rem;
	letter-spacing: .1em;
	color: #FFF;
	background-color: #3891C0;
}

#agenda .lecture_content .main_session p.round_table {
	font-weight: 900;
	font-size: 1.6rem;
}

/* 注意事項 */
#agenda ul.asterisk li {
	list-style-type: none;
	padding-left: 1em;
	text-indent: -1em;
	font-weight: 400;
	font-size: 1.4rem;
	text-align: right;
	color: #201714;
}

#agenda ul.asterisk li:before {
	display: inline;
	content: "※";
}

/* フォーム
-----------------------------------------------------------*/
#form h2 {
	margin-bottom: 30px;
	padding: 25px 15px;
	font-weight: 900;
	font-size: 3rem;
	letter-spacing: .05em;
	text-align: center;
	color: #FFF;
	background-color: #072752;
}

#form h2 span {
	display: block;
	font-size: 2rem;
}

#form .container {
	padding: 55px 80px 75px;
	background-color: #F7F7F7;
}

#form h3 {
	margin-bottom: 1em;
	font-weight: 900;
	font-size: 2rem;
	letter-spacing: .05em;
}

#form.form_01 h3 {
	padding: .25em .5em;
	color: #FFF;
	text-align: center;
	background-color: #3891C0;
}

#form.form_04 h3 {
	margin-bottom: 60px;
}

#form h4 {
	margin-bottom: 3em;
	font-weight: 900;
	font-size: 1.6rem;
	letter-spacing: .05em;
}

#form.form_01 h4 {
	margin-bottom: 0;
}

#form.form_01 ul {
	margin-bottom: 3em;
	list-style: disc;
	margin-left: 1em;
	padding-left: .5em;
	font-weight: 900;
	font-size: 1.6rem;
	letter-spacing: .05em;
}

#form .container dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	font-size: 1.6rem;
}

#form .container dt {
	width: calc(270 / 840 * 100%);
}

#form .container dt.wide {
	margin-bottom: 30px;
	width: 100%;
}

#form .container dt p.label {
	padding: .5em;
	font-weight: 900;
	border-left: 6px solid #3891C0;
}

#form .container dt p.label span {
	display: inline-block;
	margin-left: 1em;
	padding: .1em .75em;
	font-weight: 400;
	font-size: 1.3rem;
	letter-spacing: .1em;
	color: #FFF;
	background-color: #CF412F;
	border-radius: 3px;
}

#form .container dt p.label span.optional {
	background-color: #072752;
}

#form .container dd {
	margin-bottom: 30px;
	width: calc(530 / 840 * 100%);
}

#form .container dd.wide {
	margin-bottom: 30px;
	width: 100%;
	text-align: center;
}

#form .container p.error span {
	visibility: hidden;
	display: inline-block;
	margin-top: .25em;
	padding-left: 28px;
	font-weight: 400;
	font-size: 1.5rem;
	letter-spacing: .1em;
	color: #CF412F;
	background: url(../img/icon_error.svg) top 3px left no-repeat;
	background-size: 22px auto;
}

/* ----- ラジオボタン ----- */
#form .input_radio input[type="radio"] {
	display: none;
	border: 0;
	margin: 0;
}

#form .input_radio {
	display: inline-block;
	position: relative;
	padding-left: 35px;
	margin-right: 30px;
}

#form .input_radio label {
	display: inline-block;
	text-align: left;
	cursor: pointer;
	cursor: pointer;
}

#form .input_radio label:before,
#form .input_radio label:after {
	content: "";
	position: absolute;
	display: inline-block;
	border-radius: 50%;
}

#form .input_radio label:before {
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border: 3px solid #C3C3C3;
	background: #FFF;
}

#form .input_radio label:after {
	top: 7px;
	left: 7px;
	width: 12px;
	height: 12px;
	background-color: transparent;
	transform: scale(0);
}

#form .input_radio input[type="radio"]:checked+label:after {
	background-color: #ca3b35;
	transform: scale(1);
}

/* ----- チェックボックス ----- */
#form .input_checkbox {
	display: block;
	position: relative;
	margin-bottom: 40px;
	padding-left: 35px;
	text-align: left;
}

#form .input_checkbox label {
	cursor: pointer;
}

#form input[type="checkbox"] {
	margin: 0;
	display: none;
}

#form .input_checkbox label::before,
#form .input_checkbox label:after {
	content: "";
	position: absolute;
	display: inline-block;
	transition: transform .2s ease;
	-webkit-transition: transform .2s ease;
}

#form .input_checkbox label::before {
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: 0;
	border: 3px solid #C3C3C3;
	background: #FFF;
}

#form .input_checkbox label::after {
	top: 9px;
	left: 8px;
	width: 6px;
	height: 11px;
	margin-top: -5.5px;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-radius: 1.5px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: border-bottom-color, border-right-color .2s ease;
	-webkit-transition: border-bottom-color, border-right-color .2s ease;
}

#form input[type="checkbox"]:checked+label:after {
	border-color: #ca3b35;
}

/* ----- テキストフィールド ----- */
#form input[type="text"],
#form input[type="tel"],
#form input[type="email"] {
	padding: 0 0.5em;
	width: 100%;
	font-size: 1.6rem;
	height: 50px;
	line-height: 50px;
	background-color: #FFF;
	border: 1px solid #C3C3C3;
	border-radius: 3px;
}

/* ----- ボタン ----- */
#form button[type="submit"],
#form button[type="button"] {
	display: block;
	margin: 20px auto 0;
	width: 270px;
	height: 60px;
	text-decoration: none;
	font-weight: 900;
	font-size: 1.8rem;
	letter-spacing: .1em;
	line-height: 60px;
	text-align: center;
	color: #FFF;
	border-radius: 5px;
	background-color: #072752;
	box-shadow: 0 4px 0 rgba(0, 0, 0, .16);
	cursor: pointer;
	transition: all .3s;
}

#form button[type="submit"]:hover,
#form button[type="button"]:hover {
	opacity: .8;
}

/* 02 03 04ページ
-----------------------------------------------------------*/
#form h2.subtitle {
	margin-bottom: 30px;
	padding: 25px 100px;
	font-weight: 900;
	font-size: 2rem;
	letter-spacing: .05em;
	text-align: center;
	color: #FFF;
	background-color: #072752;
}

#form p.message {
	margin-bottom: 60px;
	font-weight: 900;
	font-size: 2rem;
	letter-spacing: .05em;
}

#form p.message.nomagin {
	margin-bottom: 0;
}

#form p.message.center {
	margin-bottom: 30px;
	text-align: center;
}

/* サンクスページ
-----------------------------------------------------------*/
#thanks {
	padding: 25px 100px;
	color: #FFF;
	background-color: #072752;
}

#thanks h2 {
	margin-bottom: 1em;
	font-weight: 900;
	font-size: 3rem;
	letter-spacing: .05em;
	text-align: center;
}

#thanks p {
	font-weight: 900;
	font-size: 2rem;
	letter-spacing: .05em;
}


/*  スマホ（767px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {
	body {
		line-height: 1.5;
	}

	/* デスクトップ・スマホ分岐
	-----------------------------------------------------------*/
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	/* ヘッダー
	-----------------------------------------------------------*/
	header {
		height: 150px;
		border-top: 5px solid #072752;
	}

	header .logo {
		width: calc(140 / 390 * 100%);
	}
	header .logo img {
		width: 70%;
	}

	header .image {
		width: calc(250 / 390 * 100%);
	}

	/* タイトル
	-----------------------------------------------------------*/
	main h1 {
		padding: 10px 15px;
		font-size: 2rem;
	}

	/* 共通コンテンツ
	-----------------------------------------------------------*/
	main .inner {
		padding: 30px 15px 50px;
	}

	/* フッター
	-----------------------------------------------------------*/
	footer {
		padding: 10px 0;
	}

	footer .logo {
		width: 101px;
	}

	footer .copyright {
		width: 296px;
	}

	/* トップページ：アジェンダ
	-----------------------------------------------------------*/
	/* headline */
	#agenda .headline {
		padding: 0 10px;
	}

	#agenda .headline h2 {
		font-size: 2rem;
	}

	#agenda .headline p {
		font-size: 1.4rem;
	}

	#agenda ul.asterisk.large li {
		font-size: 1.4rem;
	}

	/* time and place */
	#agenda .time_place {
		padding: 0 15px;
	}

	#agenda .time_place h3 {
		position: relative;
		top: auto;
		left: auto;
		margin: 0 auto 20px;
		width: calc(160 / 354 * 100%);
		font-size: 1.6rem;
		border-radius: 0 0 5px 5px;
	}

	#agenda .time_place dl {
		margin-left: 0;
		font-size: 1.3rem;
	}

	#agenda .time_place dt {
		width: calc(50 / 354 * 100%);
	}

	#agenda .time_place dd {
		margin-bottom: 1em;
		width: calc(304 / 354 * 100%);
	}

	#agenda .time_place dl span {
		font-size: 1.1rem;
	}

	/* time table */
	#agenda .time_table table th {
		padding: 5px 0;
		font-size: 1.2rem;
		display: block;
		width: 100%;
	}

	#agenda .time_table table td {
		padding: 0 0 5px;
		font-size: 1.3rem;
		display: block;
		width: 100%;
	}

	#agenda .time_table table tr td:nth-child(3) {
		font-size: 1.2rem;
		border-left: none;
	}

	#agenda .time_table table td span.subject {
		margin: .25em 0;
		padding: .25em 0 .25em .5em;
		border-left: 5px solid #3891C0;
	}

	#agenda .time_table table td span small {
		font-size: 1.1rem;
	}

	/* lecture content */
	#agenda .lecture_content {
		margin-bottom: 30px;
	}

	#agenda .lecture_content h3 {
		font-size: 1.8rem;
	}

	#agenda .lecture_content h4 {
		font-size: 1.5rem;
	}

	#agenda .lecture_content h4 span {
		margin: .25em 0;
		padding: .25em 0 .25em .5em;
		border-left: 5px solid #3891C0;
		font-size: 1.8rem;
		letter-spacing: initial;
	}

	#agenda .lecture_content h4 small {
		font-size: 1.5rem;
	}

	#agenda .lecture_content p.summary {
		margin-bottom: 20px;
	}

	#agenda .lecture_content .presenter {
		padding: 15px;
	}

	#agenda .lecture_content .presenter .text {
		padding: 0;
	}

	#agenda .lecture_content .presenter .text p.name {
		font-size: 1.6rem;
	}

	#agenda .lecture_content .presenter p.profile {
		padding: 0;
	}
	#agenda hr {
		margin: 20px 0;
	}
	/* ゲストセッション */
	#agenda .lecture_content .guest_session p.summary {
		margin-bottom: 20px;
	}

	#agenda .lecture_content .guest_session .presenter {
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}

	#agenda .lecture_content .guest_session .presenter figure {
		margin-bottom: 10px;
		width: calc(120 / 354 * 100%);
	}

	#agenda .lecture_content .guest_session .presenter .text {
		width: calc(220 / 354 * 100%);
	}

	#agenda .lecture_content .guest_session .presenter p.profile {
		margin-bottom: 0;
	}

	/* CIOとテクノロジ・エグゼクティブのアジェンダ */
	#agenda .lecture_content .main_session {
		margin-bottom: 25px;
	}
	#agenda .lecture_content .main_session .container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	#agenda .lecture_content .main_session .container div.summary {
		width: 100%;
	}

	#agenda .lecture_content .main_session .container .presenter {
		width: 100%;
	}

	#agenda .lecture_content .main_session .presenter figure {
		width: calc(120 / 354 * 100%);
	}

	#agenda .lecture_content .main_session .presenter .text {
		width: calc(220 / 354 * 100%);
	}

	/* ラウンドテーブル */
	#agenda .lecture_content .round_table {
		margin-bottom: 20px;
	}

	#agenda .lecture_content .main_session h3.round_table {
		font-size: 1.8rem;
	}

	#agenda .lecture_content .main_session p.round_table {
		font-size: 1.5rem;
	}

	/* 注意事項 */
	#agenda ul.asterisk li {
		font-size: 1.2rem;
		text-align: left;
	}

	/* フォーム
	-----------------------------------------------------------*/
	#form h2 {
		padding: 20px 15px;
		font-weight: 900;
		font-size: 2rem;
	}

	#form h2 span {
		font-size: 1.6rem;
	}

	#form .container {
		padding: 15px 15px 30px;
	}

	#form h3 {
		font-size: 1.6rem;
	}

	#form h4 {
		font-size: 1.4rem;
	}

	#form.form_01 ul {
		font-size: 1.4rem;
	}

	#form .container dt {
		margin-bottom: 15px;
		width: 100%;
	}

	#form .container dt.wide {
		margin-bottom: 15px;
		width: 100%;
	}

	#form .container dt p.label {
		padding: .25em .5em;
		font-size: 1.5rem;
	}

	#form .container dt p.label span {
		padding: .1em .75em;
		font-size: 1.1rem;
	}

	#form .container dd {
		margin-bottom: 0;
		width: 100%;
	}

	#form .container dd.wide {
		margin-bottom: 0;
		text-align: left;
	}

	#form .container p.error span {
		margin-top: .5em;
		margin-bottom: 1em;
		padding-left: 22px;
		font-size: 1.3rem;
		background: url(../img/icon_error.svg) top 1px left no-repeat;
		background-size: 18px auto;
	}

	/* ----- ラジオボタン ----- */
	#form .input_radio {
		display: block;
		margin-bottom: 20px;
	}

	#form .input_radio.last {
		margin-bottom: 0;
	}

	#form .input_radio label {
		font-size: 1.4rem;
	}

	/* ----- チェックボックス ----- */
	#form .input_checkbox {
		display: block;
		position: relative;
		margin-bottom: 30px;
		padding-left: 35px;
		text-align: left;
	}

	#form .input_checkbox.last {
		margin-bottom: 0;
	}

	#form label.checkbox {
		font-size: 1.4rem;
	}

	/* ----- テキストフィールド ----- */
	#form input[type="text"],
	#form input[type="tel"],
	#form input[type="email"] {
		height: 40px;
		line-height: 40px;
	}

	/* ----- ボタン ----- */
	#form button[type="submit"],
	#form button[type="button"] {
		width: 100%;
		height: 50px;
		font-size: 1.6rem;
		line-height: 50px;
	}

	/* 02 03 04ページ
	-----------------------------------------------------------*/
	#form h2.subtitle {
		padding: 20px 15px;
		font-size: 1.6rem;
	}

	#form p.message {
		font-size: 1.6rem;
	}

	/* サンクスページ
	-----------------------------------------------------------*/
	#thanks {
		padding: 25px 15px;
	}

	#thanks h2 {
		font-size: 2rem;
	}

	#thanks p {
		font-size: 1.6rem;
	}
}

/*  スマホ（480px以下）
=========================================================================
=========================================================================*/
@media screen and (max-width:480px) {}
