@charset "utf-8";
/* CSS Document */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
    font-size: 16px;
    font-family:-apple-system,'BlinkMacSystemFont','Segoe UI','Roboto','Lato','Helvetica','Arial',sans-serif;
    line-height: 1.4;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display: block;
}
nav ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colours to suit your needs */
ins {
	background: #999;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;   
	border-top: 2px solid #cccccc;
	margin: 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}

/* clearfix */
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
}
.clearfix {
	zoom: 1;
}

/* ========================================================================== */
/*      基本スタイル                                                          */
/* ========================================================================== */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	/* overflow: auto; /* iOS overflow-x:hidden;の対応 */
}
body {
	color: #202122;
	font-weight: 400;
	-webkit-text-size-adjust: 100%; /* 文字サイズ固定 */
	background-color: #ffffff;
	overflow-wrap: break-word;
    overflow-y: scroll;
}
html,body {
    height: 100%;
}
a {
    color: blue;
	text-decoration: none;
}
a:hover {
	color: #333;
}
a.noneOutline {
	outline: none;
}
main, img, iframe {
	display: block;
}
h2, h3, h4, h5, h6 {
	line-height: 1.3;
	text-align: center;
	margin: -0.15em 0;
}
img {
	width: 100%;
     height:auto;
}
ul, ol {
	list-style: none;
}
address, em, i {
	font-style: normal;
}
table {
	line-height: 1.3;
}
th, td {
	vertical-align: middle;
}
/* form custom */
input:focus, textarea:focus, select:focus, button:focus {
	outline: 0;
}
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
	font: 14px/1.5 "Noto Sans Japanese", sans-serif;
	background-color: rgba(29, 32, 136, 0.1);
	padding: 0.25em 0.5em;
	border: none;
	border-radius: 2px;
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
	-webkit-appearance: none; /*iPhone*/
	width: 100%;
}
input[type="button"], input[type="submit"], input[type="reset"] {
	color: rgba(255, 255, 255, 1);
	font: 16px/1.5 "Noto Sans Japanese", sans-serif;
	font-weight: bold;
	text-align: center;
	background: rgba(232, 95, 157, 1) url("../img/btn-bk.png") right bottom no-repeat;
	background-size: 16px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 240px;
	min-height: 44px;
	height: 44px; /* ie */
	margin: 0 5px;
	border: none;
	cursor: pointer;
	-webkit-appearance: none; /*iPhone*/
}
input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
	background-color: rgba(29, 32, 136, 1);
}
form dl {
	line-height: 1.3;
	display: flex;
	flex-wrap: wrap;
}
form dt,
form dd {
	display: flex;
	align-items: center;
}
form dt {
	width: 25%;
	padding-right: 0.5em;
	border-bottom: solid 1px rgba(29, 32, 136, 1);
}
form dd {
	white-space: nowrap;
	width: 75%;
	padding: 0.5em 0;
	border-bottom: solid 1px rgba(232, 95, 157, 1);
}
form label,
form span {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 44px;
}
form dd i {
	font-size: 12px;
}
form dl span {
	padding: 0.05em 0;
}
div.form_btn {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 -5px;
}

/* embet */
.youtube_wrap,
.map_wrap {
	width: 100%;
	height: auto;
	position: relative;
}
.youtube_wrap {
	padding-bottom: 56.25%; /* 16:9 */
}
.map_wrap {
	padding-bottom: 100%;
}
.youtube_wrap iframe,
.map_wrap iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 479px) {
	form dd.tb {
		white-space: normal;
	}
}