@charset "utf-8";


/*** Common styles ***/


/* Initial Setting
------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, img,
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, input, textarea, legend,
article, aside, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

hr {
	display: none;
}

.hidden {
	display: none;
}

.nbr {
	white-space: nowrap;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@-ms-viewport {
	width: auto;
	initial-scale: 1;
}

@viewport {
	width: device-width;
	initial-scale: 1;
}



/* Body
------------------------------------------------------------- */

html {
/*	font-size: 62.5%;		 sets the base font to 10px for easier math */
	font-size: 68.75%;		/* sets the base font to 11px for easier math */
	height: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	position: relative;
	font-size: 14px;
	font-size: 1.4rem;		/* sets the default sizing to make sure nothing is actually 10px */
	color: #000;
	font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 300;
	height: 100%;
}

h1, h2, h3 {
	font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 100;
}

h4, h5, h6 {
	font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 300;
}



/* Fadein Animation
------------------------------------------------------------- */

body {
	animation: fadeIn 1.5s ease 0s 1 normal;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}



/*Clearfix
------------------------------------------------------------- */

.clearfix::after {
	content:"";
	display:block;
	clear:both;
}

.container::after {
	content: "";
	clear: both;
	display: block;
}

.clear {
	clear: both;
	float: none;
}

.clear_l {
	clear: left;
	float: none;
}

.clear_r {
	clear: right;
	float: none;
}



/* Basic Setting 
------------------------------------------------------------- */

ul, ol {
	margin-left: 1.5em;
}

ul.none li {
	list-style-type: none;
}

ul.disc li {
	list-style-type: disc;
}

ul.circle li {
	list-style-type: circle;
}

ul.square li {
	list-style-type: square;
}

ul.indent li {
	text-indent: -0.45em;
	margin-left: 1em;
}

ul.custom_icon {
	margin-left: 0.5em;
	list-style-type: none;
}

ul.custom_icon li {
	list-style-type: none;
	text-indent: -1em;
	margin-left: 1em;
}

/*for FontAwesome*/
ul.custom_icon li > i.fas {
	margin-left: 1em;
}


ol.decimal li {
	list-style-type: decimal;
}

ol.l_roman li {
	list-style-type: lower-roman;
}

ol.u_roman li {
	list-style-type: upper-roman;
}

ol.l_alpha li {
	list-style-type: lower-alpha;
}

ol.u_alpha li {
	list-style-type: upper-alpha;
}

dl {
	margin: 0 0 0 1em;
	padding: 0;
}

dt {
	margin: 0;
	padding: 0;
	font-weight: 500;
}

dd {
	margin: 2px 0 0 1em;
}

img {
	vertical-align: bottom;
	line-height: normal;
	border: 0;
}



/*Link
------------------------------------------------------------- */

a:link {
	color: #103fb4;
	text-decoration: none;
}

a:visited {
	color: #103fb4;
	text-decoration: none;
}

a:hover {
	color: #9b2c93;
	text-decoration: underline;
}

a:active {
	color: #9b2c93;
	text-decoration: underline;
}

a {
	outline: none !important;
}

*:focus {
	outline: none !important;
}

a img,
a:focus img,
a:hover img,
a:active img {
	border: none;
	outline: none;
}

a.page_link::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 20px;
	vertical-align: middle;
	margin-left: 2px;
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../img/icon_ext_blue.png);
}

a:hover.page_link::after {
	background-image: url(../img/icon_ext_purple.png);
}

a.file_link::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 20px;
	vertical-align: middle;
	margin-left: 2px;
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../img/icon_file_blue.png);
}

a:hover.file_link::after {
	background-image: url(../img/icon_file_purple.png);
}



/*Text -Size, Color, Weight-
------------------------------------------------------------- */

.s1 {
	font-size: 10px;
	font-size: 1rem;
}

.s2 {
	font-size: 12px;
	font-size: 1.2rem;
}

.s3 {
	font-size: 16px;
	font-size: 1.6rem;
}

.s4 {
	font-size: 20px;
	font-size: 2rem;
}

.s5 {
	font-size: 23px;
	font-size: 2.3rem;

}

.s6 {
	font-size: 27px;
	font-size: 2.7rem;
}

strong {
	color: #c61717;
	font-weight: 500;
	background-color: inherit;
}

em {
	color: #103fb4;
	font-weight: 300;
	font-style: italic;
	background-color: inherit;
}

.bold {
	font-weight: 500;
}

.italic {
	font-style: italic;
}

.normal {
	font-weight: 200;
}

.sup, sup {
	vertical-align: super;
	font-size: 60%;
}

.sub, sub {
	vertical-align: sub;
	font-size: 60%;
}

.l_red {
	border-bottom: 1px solid #c61717;
}

.l_black {
	border-bottom: 1px solid #000;
}



/* Font
------------------------------------------------------------- */

.font_100 {
	font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 100;
}

.font_300 {
	font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 300;
}

.font_500 {
	font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 500;
}

.font_700 {
	font-family: 'Roboto', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 700;
}

.font_serif_300 {
	font-family: 'Noto Serif JP', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 300;
}



/* Colors
------------------------------------------------------------- */

.color_blue {
	color: #103fb4;
	background-color: inherit;
}

.bg_blue {
	background-color: #103fb4;
	color: inherit;
}

.bg_lblue {
	background-color: #cbd7f5;
	color: inherit;
}

.bg_pblue {
	background-color: #e4ecff;
	color: inherit;
}

.color_red {
	color: #c61717;
	background-color: inherit;
}

.bg_red {
	background-color: #c61717;
	color: inherit;
}

.bg_lred {
	background-color: #fac7c7;
	color: inherit;
}

.color_orange {
	color: #e55800;
	background-color: inherit;
}

.bg_orange {
	background-color: #e55800;
	color: inherit;
}

.bg_lorange {
	background-color: #fcd9c3;
	color: inherit;
}

.color_ygreen {
	color: #72a200;
	background-color: inherit;
}

.bg_ygreen {
	background-color: #72a200;
	color: inherit;
}

.bg_lygreen {
	background-color: #e2f4ba;
	color: inherit;
}

.color_bgreen {
	color: #0f96af;
	background-color: inherit;
}

.bg_bgreen {
	background-color: #0f96af;
	color: inherit;
}

.bg_lbgreen {
	background-color: #cbf0f7;
	color: inherit;
}

.color_purple {
	color: #c6177c;
	background-color: inherit;
}

.color_violet {
	color: #5b27be;
	background-color: inherit;
}

.bg_purple {
	background-color: #9b2c93;
	color: inherit;
}

.bg_lpurple {
	background-color: #f7cff4;
	color: inherit;
}

.bg_ppurple {
	background-color: #ffeefe;
	color: inherit;
}


/*monotone*/

.color_dgray {
	color: #444;
	background-color: inherit;
}

.color_gray {
	color: #707070;
	background-color: inherit;
}

.color_lgray {
	color: #ccc;
	background-color: inherit;
}

.bg_dgray {
	background-color: #ccc;
	color: inherit;
}

.bg_gray {
	background-color: #e5e5e5;
	color: inherit;
}

.bg_lgray {
	background-color: #f5f5f5;
	color: inherit;
}

.color_black {
	color: #000;
	background-color: inherit;
}

.color_white {
	color: #fff;
	background-color: inherit;
}

.bg_black {
	background-color: #000;
	color: inherit;
}

.bg_white {
	background-color: #fff;
	color: inherit;
}



/*Text Align
------------------------------------------------------------- */

.left, .txt_l {
	margin: 0;
	padding: 0;
	text-align: left;
}

.right, .txt_r {
	margin: 0;
	padding: 0;
	text-align: right;
}

.center, .txt_c {
	margin: 0;
	padding: 0;
	text-align: center;
}

.txt_indent {
	margin-left: 1em;
	text-indent: -1em;
}


/*Images
------------------------------------------------------------- */

img {
	vertical-align: bottom;
	line-height: normal;
	border: 0;
}

.img_l {
	width: 100%;
	height: auto;
	margin: 5px 0 10px 0;
	padding: 0;
	float: none;
}

.img_r {
	width: 100%;
	height: auto;
	margin: 5px 0 10px 0;
	padding: 0;
	float: none;
}

.img_c {
	width: 100%;
	margin: auto;
	padding: 0;
	text-align: center;
}

.img_c img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 5px 0 10px 0;
}

.img_icon {
	margin: 0 2px;
	vertical-align: middle;
}


/* Image Box */

.img_box > div, .img_box_s > div,  .img_box_l > div {
	margin-bottom: 15px;
}

.img_box > div img, .img_box_s > div img, .img_box_l > div img {
	margin-top: 5px;
	width: 100%;
}

p.img_caption {
	padding: 8px 0 0 0;
	line-height: 1.5;
	font-size: 1.3rem;
	text-align: center;
}


/* Movie
------------------------------------------------------------- */

.movie_box > div, .movie_box_s > div {
	margin-bottom: 20px;
	width: 100%;
}

.youtube_box {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.youtube_box::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.youtube_box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

p.movie_caption {
	padding: 8px 0 0 0;
	line-height: 1.5;
	font-size: 1.3rem;
	text-align: center;
}



/*Table
------------------------------------------------------------- */

table.layout {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
	font-size: 0;
	line-height: 0;
	white-space: nowrap;
}

table.layout caption,
table.basetable caption, 
table.coltable caption {
	display: none;
}

table.layout th {
	padding: 0;
	border: 0;
}

table.layout td {
	padding: 0;
	border: 0;
}

table.basetable {
	width: 100%;
	margin: 0 0 20px 0;
	line-height: 1.5;
	border-collapse: collapse;
	border-right: 0;
	border-left: 0;
	border-top: 0;
	border-bottom: #707070 solid 1px;
	border-right: #707070 solid 1px;
}

table.basetable tr th {
	padding: 12px;
	font-weight: 300;
	border-top: #707070 solid 1px;
	border-left: #707070 solid 1px;
	border-right: 0;
	border-bottom: 0;
}

table.basetable tr td {
	padding: 12px;
	border-top: #707070 solid 1px;
	border-left: #707070 solid 1px;
	border-right: 0;
	border-bottom: 0;
}

table.coltable {
	width: 100%;
	margin: 5px 0;
	line-height: 1.5;
	border-collapse: collapse;
	border-right: 0;
	border-left: 0;
	border-top: 0;
	border-bottom: #ccc solid 1px;
}

table.coltable tr th {
	padding: 12px;
	font-weight: 300;
	border-top: #ccc solid 1px;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

table.coltable tr td {
	padding: 12px;
	border-top: #ccc solid 1px;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}

.top {
	vertical-align: top;
}

.bottom {
	vertical-align: bottom;
}

.middle {
	vertical-align: middle;
}

/* for Responsive */

.table-responsive {
	overflow-x: auto;
	min-height: 0.01%;
}
@media screen and (max-width: 787px) {

	.table_responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 0;
	}

	.table_responsive .basetable {
		min-width: 360px;
	}

	.table_responsive .basetable tr th {
		white-space: nowrap;
	}

}



/*Hidden Items for Responsive
------------------------------------------------------------- */

@media (max-width: 359px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 360px) and (max-width: 787px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 360px) and (max-width: 479px) {
	.hidden-sm-360 {
		display: none !important;
	}
}

@media (min-width: 480px) and (max-width: 539px) {
	.hidden-sm-480 {
		display: none !important;
	}
}

@media (min-width: 540px) and (max-width: 787px) {
	.hidden-sm-540 {
		display: none !important;
	}
}

@media (min-width: 788px) and (max-width: 959px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 960px) and (max-width: 1259px) {
	.hidden-lg {
		display: none !important;
	}
}

@media (min-width: 1260px) {
	.hidden-xl {
		display: none !important;
	}
}



/*Assist Box
------------------------------------------------------------- */

/*Notes*/

.note {
	margin: 10px 0 20px 0;
	padding: 15px;
	color: inherit;
	background-color: #fff;
	border: 5px solid #cbd7f5;
	clear: both;
}

.caution {
	margin: 10px 0 20px 0;
	padding: 15px;
	color: inherit;
	background-color: #ffeefe;
	border: 1px solid #c6177c;
	clear: both;
}


/*Border*/

.border {
	margin: 10px 0;
	padding: 0;
	line-height: normal;
	border-bottom: 1px solid #ccc;
	clear: right;
}

.border_bold {
	margin: 10px 0;
	padding: 0;
	line-height: normal;
	border-bottom: 3px solid #ccc;
	clear: right;
}

.spacer {
	height: 300px;
	clear: right;
}



/* List
------------------------------------------------------------- */

ul.icon_list, ul.link_list {
	margin: 10px 0;
	padding: 0;
	clear: right;
}

ul.icon_list > li, ul.link_list > li {
	margin: 0;
	padding: 5px 0 5px 1.5em;
	list-style-type: none;
	list-style-position: outside;
	text-indent: -0.6em;
}

ul.icon_list > li > ul, ul.link_list > li > ul {
	margin: 0;
	padding: 5px 0 0 1.5em;
}

ul.icon_list > li > ul > li, ul.link_list > li > ul > li {
	margin: 0;
	padding: 2px 0;
	list-style-type: circle;
	list-style-position: outside;
	text-indent: 0;
}

ul.icon_list > li > ol, ul.link_list > li > ol {
	margin: 0;
	padding: 5px 0 0 2em;
}

ul.icon_list > li > ol > li, ul.link_list > li > ol > li {
	margin: 0;
	padding: 2px 0;
	list-style-position: outside;
	text-indent: 0;
}

ul.icon_list > li::before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0c8";
	color: #707070;
	margin-right: 4px;
}

ul.link_list > li > a::before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f138";
	color: #103fb4;
	margin-right: 3px;
}

ul.link_list > li > a:hover::before {
	color: #c6177c;
}

ul.line {
	border-top: 1px solid #ccc;
}

ul.line > li {
	border-bottom: 1px solid #ccc;
}



/* Form
------------------------------------------------------------- */

fieldset {
	margin: 0;
}

input {
	vertical-align: middle;
	max-width: 100%;
	border-radius: 0;
}

input:focus {
	outline: 0;
}

input[type="text"] {
	width: 100%;
	padding: 8px;
	font-size: 16px;
	border: 1px solid #ccc;
/*	border-radius: 4px;	*/
}

textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 5px 0;
	padding: 8px;
	font-size: 16px;
	border: 1px solid #ccc;
/*	border-radius: 4px;	*/
	width: 100%;
}

input[type="text"]:focus, textarea:focus {
	outline: none;
	background-color: #f5f5f5;
}

input[type="radio"], input[type="checkbox"] {
/*	appearance: none;	*/
	vertical-align: baseline;
}


/*SelectBox*/

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

select {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: auto;
	max-width: 100%;
	margin-bottom: 8px;
	padding: 8px 30px 8px 8px;
	font-size: 16px;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: none;
	box-shadow: none -moz-mac-focusring;
/*	border-radius: 4px;	*/
	vertical-align: middle;
	background-image: url(../img/arrow_pulldown.png);
	background-repeat: no-repeat;
	background-size: 28px;
	background-position: right 3px top 50%;
	text-indent: 0.01px; /*for Firefox*/
	text-overflow: ""; /*for Firefox*/
}

select:focus {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	box-shadow: none -moz-mac-focusring;
	background-color: #f5f5f5;
}

select option {
	background-color: #fff;
	font-weight: normal;
}


/* CheckBox */

input[type=checkbox] {
	display: none;
}

.check_style {
	display: inline-block;
	width: auto;
	padding: 8px 10px 8px 27px;
	position: relative;
	cursor: pointer;
	white-space: normal;
	line-height: 1.5;
}

.check_style::before {
	content: "";
	display: block;
	height: 22px;
	width: 22px;
	margin-top: -11px;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #fff;
	border: 1px solid #ccc;
/*	border-radius: 3px;	*/
}

.check_style::after {
	content: "";
	display: block;
	width: 9px;
	height: 16px;
	margin-top: -10px;
	border-right: 3px solid #103fb4;
	border-bottom: 3px solid #103fb4;
	position: absolute;
	top: 50%;
	left: 7px;
	transform: rotate(45deg);
	opacity: 0;
}

input[type=checkbox]:checked + .check_style::after {
	opacity: 1;
}


/* RadioButton */

input[type=radio] {
	display: none;
}

.radio_style {
	display: inline-block;
	width: auto;
	padding: 8px 10px 8px 27px;
	position: relative;
	cursor: pointer;
	white-space: normal;
	line-height: 1.5;
}

.radio_style::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
}

.radio_style::after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	position: absolute;
	top: 50%;
	left: 6px;
	background-color: #103fb4;
	border-radius: 50%;
	opacity: 0;
}

input[type=radio]:checked + .radio_style::after {
	opacity: 1;
}


/*Submit*/

.form_submit_box {
	padding: 20px 0;
	text-align: center;
}

input[type="button"], input[type="reset"], input[type="submit"] {
	width: 60%;
	min-width: 240px;
	max-width: 360px;
	margin: 10px;
	padding: 15px 10px;
	text-align: center;
	line-height: 1.5;
	color: #fff;
	background-color: #103fb4;
	border: 1px solid #fff;
/*	border-radius: 8px;	*/
	box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.5);
	cursor: pointer;
}

input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
	color: #fff;
	background-color: #9b2c93;
	transform: translateY(1px);
	box-shadow: 0px 1px 5px -2px rgba(0,0,0,0.5);
}




/* for IE 
------------------------------------------------------------- */

@media all and (-ms-high-contrast: none){

	/* Form
	------------------------------------------------------------- */

	input[type="text"], textarea {
		padding: 5px;
	}

	.check_style, .radio_style {
		padding: 10px 10px 5px 27px;
	}

}





/* for SmallSize
--------------------------------------------------------------------------------- */
@media print, screen and (min-width:360px) {

	/* Image Box */

	.img_box_s {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.img_box_s > div {
		width: calc(50% - 10px);
	}

}





/* for MiddleSize(480-579px)
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:480px) {


}




/* for MiddleSize(580-787px)
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:580px) {

	/*Image
	------------------------------------------------------------- */

	.img_l {
		width: auto;
		max-width: 50%;
		margin: 5px 25px 10px 0;
		float: left;
		clear: left;
	}

	.img_r {
		width: auto;
		max-width: 50%;
		margin: 5px 0 10px 25px;
		float: right;
		clear: right;
	}

	.img_c img {
		width: auto;
	}


	/* Image Box */

	.img_box {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.img_box > div {
		width: calc(50% - 10px);
	}

	.img_box_l {
		text-align: center;
	}

	.img_box_l > div {
		margin: 0 auto 15px auto;
		max-width: 680px;
	}

	.img_box_s > div {
		width: calc(33.3333% - 12px);
	}


	/* Movie
	------------------------------------------------------------- */

	.movie_box > div {
		margin: 0 auto 20px auto;
		max-width: 680px;
	}


}



/* for MiddleSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:788px) {


	/* Form
	------------------------------------------------------------- */

	input[type="text"] {
		width: auto;
		font-size: 1.4rem;
	}

	textarea {
		font-size: 1.4rem;
		width: auto;
	}

	/*SelectBox*/

	select {
		font-size: 1.4rem;
	}


}





/* for LargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:960px) {

	/* Movie
	------------------------------------------------------------- */

	.movie_box_s {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.movie_box_s > div {
		width: calc(50% - 10px);
	}

}



/* for ExtraLargeSize
-------------------------------------------------------------------------------- */
@media print, screen and (min-width:1260px) {



}



