@charset "UTF-8";

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	color: #333;
	font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	line-height: 1.3;
	-webkit-text-size-adjust: none;
	background: #fff;
	padding-top: 0;
}
/* anchor */
a:link {
	color: #00e;
}

a:visited {
	color: #551a8b;
}

a:focus
,a:hover
,a:active {
	text-decoration: none;
}

em,
.caution {
	color: #f00;
}

.center {
	text-align: center;
}

.container {
	padding-top: 100px;
}


/* header
------------------------------------------------------------- */
#wrapper {
	position: relative;
}


/* footer
------------------------------------------------------------- */
#footer {
	padding: 1em 0 2em 0;
	text-align: center;
	background-color: #333;
}

#footer .copyright {
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
}

#footer a:link
,#footer a:visited {
	color: #fff;
}

/* content
------------------------------------------------------------- */
#content {
	width: 1024px;
	height: 1435px;
	padding: 0;
	background: #faf8f2;
	background-image: url(../img/form-back.png);
}

#content .section {
	padding-top: 100px;
	width: 700px;
	margin: 0 auto 3em;
}

/* format
------------------------------------------------------------- */

/* heading */
#content h2 {
	font-size: 116%;
	font-weight: bold;
	text-align: center;
}
#content h2 img{
	display: inline-block;
}

#content h3 {
	margin-bottom: 1em;
	font-size: 116%;
	font-weight: bold;
	text-align: center;
}
#content h3 img{
	display: inline-block;
}

#content h4 {
	margin-bottom: 1em;
	font-size: 116%;
	font-weight: bold;
	line-height: 1;
}


/* paragraph */
#content p {
	margin-bottom: 1em;
}


/* text */
.big {
	font-size: 116%;
}

.small {
	font-size: 85%;
}


/* list */
#content ul {
	margin-bottom: 1em;
}

#content ul li {
	list-style: disc;
	margin: 0 0 0.3em 20px;
}

#content ul.nonstyle {}
#content ul.nonstyle li {
	list-style: none;
	margin-left: 0;
}

#content ul.books {}
#content ul.books li {
	list-style: none;
	display: inline;
	float: left;
	width: 140px;
	margin: 0 13px 0 0;
}

#content ul.books li:last-child {
	margin-right: 0;
}

#content ul.books li.last-child {
	margin-right: 0;
}

#content ul.books li img {
	margin-bottom: 0.5em;
}

#content ol {
	margin-bottom: 1em;
}

#content ol li {
	list-style: decimal;
	margin: 0 0 0.3em 30px;
}

#content dl {
	margin-bottom: 1em;
}

#content dt {
	margin-bottom: 0.5em;
	font-weight: bold;
}

#content dd {
	margin-bottom: 1em;
}


/* table */
#content table {
	margin-bottom: 1em;
}

#content table {
	border-collapse: collapse;
}

#content table th, #content table td {
	font-size: 1.4em;
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	text-align: left;
	padding: 6px;
	vertical-align: top;
}

#content table th {
	width: 200px;
}


#content table td ul {
	margin-bottom: 0;
}

#content table td img {
	margin: 0.5em 0;
}


/* form */
#content form input, #content form textarea {
	font-size: 0.8em;
	padding: 0.2em;
}

#content form.inline {
	display: inline;
}

#content form .wide {
	width: 100%;
}

#content form .middle {
	width: 400px;
}

#content form .narrow {
	width: 100px;
}

#content form .mini {
	width: 40px;
}

#content .error {
	margin-top: 6px;
}
#content form input[type="submit"] {
	-webkit-appearance: none;
  display: inline-block;
	border: none;
  font-size: 18pt;
  text-align: center;
  cursor: pointer;
  padding: 12px 12px;
  background: #CC0000;
  color: #ffffff;
  line-height: 1em; 
  transition: 0.1s;
}
#content form input[type="submit"]:hover {
  background: #FF3333; 
}

/* modal --------------------------------------------------------------- */
body.open_popup {
    overflow: hidden;
}

.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

body.open_popup .bg_onetime_popup {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	height: 90vh;
	background-color: #fff;
	overflow-y: scroll;
}

.onetime_popup_title {
	position: relative;
	padding: 1em 80px;
	margin: 0px;
	text-align: center;
	background-color: #FFF;
}
onetime_popup_title a{
	text-decoration: none;
}
.onetime_popup_title_close, .disagree {
	width: 150px;
	height: 30px;
	font-size: 14px;
	line-height: 1.8em;
	color: #fff;
	background: rgba(0,0,0,60%);
	border: none;
	padding: 4px 15px;
	text-align: center;
	margin-top: 10px;
	display: inline-block;
	cursor: pointer;
}
.onetime_popup_content {
    padding: 60px;
		font-size: 1.4em;
		line-height:1.4em;
}
.onetime_popup_content h2{
    text-align-all: center;
		font-size: 1.4em;
		margin-bottom: 2em;
}
.onetime_popup_content h3{
		margin-top: 1em;
		margin-bottom: 0.5em;
		font-weight: 600;
}
.onetime_popup_content p{
		line-height:1.7em;
}
.onetime_popup_content ul{
		margin-bottom:2em;
}
.onetime_popup_content ul li{
		margin-bottom:0.5em;
		list-style: decimal;
		margin-left: 1.4em;
}
button:hover{
	opacity: 0.7;
}
.disagree a{
  color: #fff;
}