@charset "UTF-8";

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{line-height:1}
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:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}
* {
		-webkit-box-sizing: border-box;
			 -moz-box-sizing: border-box;
				 -o-box-sizing: border-box;
				-ms-box-sizing: border-box;
						box-sizing: border-box;
}
.clearfix:after {
	content:".";
	font-size: 0.1em;
	line-height: 0;
	display:block;
	height:0px;
	clear:both;
	visibility:hidden;
	overflow:hidden;
}
.clearfix {
	display:inline-block;
}
* html .clearfix {
	height:1px;
}
.clearfix {
	display:block;
}

/* ======================================================
-----mainContents------------------------------------
=========================================================*/
html {
	height: 100%;
	margin : 0;
	padding : 0;
	font-size:62.5%;
	background:#fff;
}
body {
	margin : 0;
	padding : 0;
	width : 100%;
	height:100%;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 1.6rem;
	color:#000;
	line-height:1.75;
	z-index: 1;
	-webkit-text-size-adjust:none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: auto | grayscale;
	font-feature-settings : "palt";
	background: #fff;
}

a {
	display: block;
	color:#000;
	text-decoration: none;
	-webkit-transition:0.3s;
	transition: 0.3s;
}
img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: text-bottom;
}

li{
	list-style:none;
}
/* SVG */
.svg-block {
	display: block;
}
object {
	pointer-events: none;
}
.svg-link object {
	overflow:visible;
}
/* SVG */
svg {
	width: 100%;
	height: 100%;
}
::selection {
 background: #ccc;
 color:#FFF;
}
::-moz-selection {
 background: #ccc;
 color:#FFF;
}
form ::selection {
 background: #ccc;
 color:#FFF;
}
form ::-moz-selection {
 background: #ccc;
 color:#FFF;
}
*{
	-webkit-tap-highlight-color:#ccc;
	tap-highlight-color:#ccc;
}

:focus {
	outline: 0;
}

.nolink {
	cursor: none;
}


/*---Animation */
.anime .obj {
	-webkit-transition: 0.8s;
	transition: 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 0;
}
.anime.active .obj {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}

.elm {
	transition: 1.2s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate3d(0,20px,0);
	opacity: 0;
}
.elm.active {
	transform: translate3d(0,0,0);
	opacity: 1;
}
.elm:nth-of-type(even) {
	transition-delay: 0.5s;
}

@media only screen and (max-width: 767px) {
.elm:nth-of-type(even) {
	transition-delay: 0s;
}
}


/*---Flex box */
.flex {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: stretch;
	align-items:stretch;
}
.flex_center {
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_left {
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.flex_right {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.flex_top {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.flex_bottom {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.flex_stretch {
	-webkit-align-items: stretch;
	align-items: stretch;
}
.flexself_center {
	-webkit-align-self: center;
	align-self: center;
}
.flexself_left {
	-webkit-align-self: flex-start;
	align-self: flex-start;
}
.flexself_right {
	-webkit-align-self: flex-end;
	align-self: flex-end;
}

.bg_cover {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.fix_img {
	width: 100%;
	position: relative;
	background-attachment: fixed;
}


/* ***** Form **************** */
button{
	appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-size:inherit;
}
input,
input:focus,
textarea,
select {
	width: 100%;
	padding: 4px 10px;
	font-size:inherit;
	font-size: 16px;
	-webkit-appearance: none;
	border: 1px #c8c8c8 solid;
	border-radius: 0;
	color: #000;
	vertical-align: middle;
	background-color: transparent;
	background: #FFF;
}
:placeholder-shown {
}
::-webkit-input-placeholder {
}
:-moz-placeholder {
}
::-moz-placeholder {
}
:-ms-input-placeholder {
}
::-ms-input-placeholder {
}

input[type=checkbox],
input[type=radio] {
	display: none;
}
.radio,
.textfield {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items:center;

	width: 100%;
	height: 52px;
	position: relative;
	margin-bottom: 10px;
	padding: 4px;
	padding-left: 20px;
	line-height: 1.3;
	border: 1px #fff solid;
	border-radius: 4px;
	background: #fff;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: 0.3s;
}
.textfield {
	height: auto;
	padding-left: 4px;
}
.radio.textfield {
	padding-left: 20px;
}
.radio:before,
.radio:after {
	content:'';
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	left: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../img/icon_check_off.png);
	transform: translate(-50%,-50%);
	transition: 0.3s;
}
.radio:after {
	background-image: url(../img/icon_check.png);
	opacity: 0;
}
.radio:hover,
input[type=radio]:checked + .radio {
	color: #f02149;
	border: 1px #f02149 solid;
}
input[type=radio]:checked + .radio:before {
	opacity: 0;
}
input[type=radio]:checked + .radio:after {
	opacity: 1;
}
.radio textarea {
	border: 0;
	background: #f5f5f5;
	pointer-events: none;
	opacity: 0.6;
}
input[type=radio]:checked + .radio textarea {
	pointer-events: auto;
	opacity: 1;
}

.choices {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items:center;
	margin-bottom: 20px;
	padding: 0 10%;
}
.choices .btn {
	width: calc(50% - 10px);
	color: #f02149;
	background: #fff;
	border: 1px #f02149 solid;
}
.choices .btn:hover,
.choices input[type=radio]:checked + .btn {
	color: #fff;
	background: #f02149;
}
.form_s_txt {
	width: 140px;
	height: 36px;
}
.form_s_txt input[type=text] {
	width: 100px;
	height: 100%;
	margin-right: 10px;
	margin-bottom: 10px;
	display: inline-block;
	border-radius: 4px;
	background: #fff;
	transition: 0.3s;
}
.form_s_txt input[type=text]:hover {
	border: 1px #f02149 solid;
}

.switch {
	position: relative;
	width: 44px;
	height: 26px;
}
.switch input[type="checkbox"] {
	display: none;
}
.switch label {
	height: 100%;
	display: block;
	border: 1px solid #b3b3b3;
	border-radius: 13px;
	background: #b3b3b3;
	cursor: pointer;
}
.switch label:before {
	content:'';
	display: block;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 2px;
	left: 2px;
	border-radius: 50%;
	background: #fff;
	transition: .2s;
	pointer-events: none;
}
.switch input[type="checkbox"]:checked + label {
	border-color: #F02149;
	background: #F02149;
}
.switch input[type="checkbox"]:checked + label:before {
	transform: translateX(18px);
}


/* ***** Common **************** */

/* ーーー Footer 最下部 ーーー */

.pc {
	display: inline-block;
}
.sp {
	display: none;
}

/* ===== Link Line ===== */
.Link_line {
	position:relative;
	display: inline-block;
	-webkit-transition:0.3s;
	-ms-transition:0.3s;
	-moz-transition:0.3s;
	transition:0.3s;
	cursor: pointer;
}
.Link_line:before{
	content:"";
	display:block;
	width:0%;
	height:2px;
	position:absolute;
	right:0%;
	left:auto;
	top:100%;
	background: #1a3f89;
	z-index: -1;
	transition:0.3s;
}
.Link_line.active:before,
.Link_line:hover:before{
	left:0%;
	right:auto;
	width:100%;
	transition:width 0.3s;
}


/* ===== Button ===== */
.btn {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items:center;

	width: 100%;
	height: 60px;
	padding: 4px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: #fff;
	border: 1px #f02149 solid;
	border-radius: 4px;
	background: #f02149;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: 0.3s;
}
.btn:hover {
	color: #f02149;
	background: #fff;
}
.bd_btn {
	color: #f02149;
	border: 1px #f02149 solid;
	background: #fff;
}
.bd_btn:hover {
	color: #fff;
	background: #f02149;
}
.closeBtn {
	width: 15px;
	height: 15px;
	position: absolute;
	top: 10px;
	right: 10px;
	transform: rotate(45deg);
	cursor: pointer;
}
.closeBtn:before,
.closeBtn:after {
	content:'';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #000;
	transform: translate(-50%,-50%);
}
.closeBtn:after {
	transform: translate(-50%,-50%) rotate(90deg);
}


/* ===== base layout ===== */
.wrapper,
#container {
	width: 100%;
	height: 100%;
}
#maincontents {
	position: relative;
	padding: 10px;
	z-index: 10;
}


/* ===== Loader ===== */
#loader {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	transition: 0.6s;
	z-index: 9999;
	background: #fff;
}
body.ready #loader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

#loader_dot {
	width: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#loader_dot i {
	height: 10px;
	width: 10px;
	border-radius: 100%;
	background-color: black;
	position: absolute;
	animation: loader 1.5s ease-in-out infinite;
}
#loader_dot i:nth-child(1) {
	background-color: #F0D500;
	animation-delay: 0s;
}
#loader_dot i:nth-child(2) {
	background-color: #FF7B00;
	animation-delay: 0.2s;
}
#loader_dot i:nth-child(3) {
	background-color: #F02149;
	animation-delay: 0.4s;
}
#loader_dot i:nth-child(4) {
	background-color: #662D91;
	animation-delay: 0.6s;
}
#loader_txt {
	width: 6rem;
	position: absolute;
	left: 50%;
	bottom: 10%;
	text-align: center;
	transform: translate(-50%,0);
}
#loader_txt:after {
	content: "Loading";
	font-weight: bold;
	color: #666;
	animation: load_txt 2s infinite;
}

@keyframes loader {
	0% {
		transform: translate(0,0);
	}
	50% {
		transform: translate(0,-100px) scale(3);
	}
	100% {
		transform: translate(0,0);
	}
}
@keyframes load_txt {
	0% {
		content: "Loading";
	}
	25% {
		content: "Loading.";
	}
	50% {
		content: "Loading..";
	}
	75% {
		content: "Loading...";
	}
}


/* ===== Map ===== */
#map {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}
#map_canvas {
	width: 100%;
	height: 100%;
	position: relative;
}


/* ===== Card ===== */
#setting_card {
	width: 100%;
	max-width: 360px;
	height: 100%;
	max-height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.4s;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
	transform: translate3d(-110%,0,0);
}
.card {
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 100vh;
	background: #fff;
	box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
	overflow: auto;
}
.card .block {
	padding: 30px;
}
.card .b {
	font-weight: bold;
}
.card .r {
	color: #fb6b69;
}

body.setting_open #setting_card {
	transform: translate3d(0,0,0);
}

/* ===== Setting card ===== */
#setting_btn {
	max-width: 140px;
	height: 40px;
	position: fixed;
	top: 20px;
	left: 30px;
	border-radius: 20px;
	z-index: 999;
}
#setting_btn:after {
	content:'';
	display: block;
	width: 7px;
	height: 7px;
	position: absolute;
	top: 50%;
	right: 14px;
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
	transform: translate(0,-50%) rotate(45deg);
	transition: 0.3s;
}
body.setting_open #setting_btn {
	color: #f02149;
	background: #fff;
}
body.setting_open #setting_btn:hover {
	color: #fff;
	background: #f02149;
}
#setting_btn:hover:after,
body.setting_open #setting_btn:after {
	border-top: 1px #f02149 solid;
	border-right: 1px #f02149 solid;
}
body.setting_open #setting_btn:after {
	left: 14px;
	right: auto;
	transform: translate(0,-50%) rotate(-135deg);
}
body.setting_open #setting_btn:hover:after {
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
}

body.setting_open #setting_btn {
	opacity: 0;
	pointer-events: none;
}

#form_title {
	position: absolute;
	top: 20px;
	left: 30px;
	font-size: 1.5rem;
	line-height: 1;
	color: #ef2149;
}
#form_title span {
	font-size: 2.0rem;
}
#fixbtn {
	width: 100px;
	height: 40px;
	position: absolute;
	top: 20px;
	right: 30px;
	border-radius: 20px;
	z-index: 9;
}

#setting_form {
	padding-top: 70px;
	font-weight: bold;
	line-height: 1.4;
}
#setting_form .select2-container .select2-selection--single {
	height: 48px;
}
#setting_form .item,
#setting_form .item .switchlist li {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: stretch;
	align-items:stretch;
}
#setting_form .item {
	width: 100%;
	margin-bottom: 20px;
}
#setting_form .item p {
	display:-webkit-flex;
	display:flex;
	-webkit-align-items: center;
	align-items:center;
}
#setting_form .tit {
	position: relative;
}
#setting_form .tit .sub {
	font-size: 1.2rem;
	font-weight: normal;
	color: #666;
}
#setting_form #year .tit {
	width: 50%;
}
#setting_form #year .switchlist {
	width: 50%;
}
#setting_form #year .switchlist li {
	-webkit-align-items: stretch;
	align-items:stretch;
	margin-bottom: 20px;
}
#setting_form #year .switchlist li:last-of-type {
	margin-bottom: 0;
}
#setting_form #point_item i {
	width: 12px;
	height: 12px;
	display: inline-block;
	margin-left: 2px;
	border-radius: 50%;
	background: #5a6879;
}
#setting_form #point_item i:first-of-type {
	margin-left: 10px;
	background: #5a6879;/*#456d6a;*/
}
#setting_form .qbtn {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 10px;
	font-size: 1rem;
	line-height: 14px;
	text-align: center;
	border: 1px #666 solid;
	cursor: pointer;
}

#setting_form .abox {
	width: 180px;
	position: absolute;
	top: 0;
	left: 0;
	padding: 8px;
	font-size: 1.1rem;
	font-weight: normal;
	transform: translate(0,calc(-100% + 6px));
	border-radius: 4px;
	background: #efefef;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s;
}
#setting_form .active .abox {
	transform: translate(0,calc(-100% - 6px));
	opacity: 1;
	pointer-events: auto;
}
#setting_form .abox:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 20%;
	border-top: 8px solid #efefef;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	transform: translate(-50%,100%);
}
#setting_form .abox_close {
	width: 20px;
	height: 20px;
	position: absolute;
	top: -8px;
	right: -8px;
	border: 1px #000 solid;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}
#setting_form .abox_close:before,
#setting_form .abox_close:after {
	content:'';
	display: block;
	width: 8px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #000;
}
#setting_form .abox_close:before {
	transform: translate(-50%,-50%) rotate(45deg);
}
#setting_form .abox_close:after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

#setting_form #areabtn  {
	width: 200px;
	height: 48px;
	margin: 0 auto;
	color: #000;
	border: 1px solid #000;
	border-radius: 24px;
	background: #fff;
	box-shadow:none;
}
#setting_form #areabtn:hover {
	color: #fff;
	border: 1px solid #f02149;
	background: #f02149;
}


#danger {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: stretch;
	align-items:stretch;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: 0.3s;
}
#danger.off {
	pointer-events: none;
	opacity: 0.3;
}
#danger .tit {
	margin-bottom: 10px;
}
#danger #danger_map {
	width: 190px;
	height: 176px;
}
#danger #danger_map .st {
	opacity: 0.1;
	transition: 0.3s
}
#danger #danger_map .st0 {
	fill:#F0D500;
}
#danger #danger_map .st1 {
	fill:#FF7B00;
}
#danger #danger_map .st2 {
	fill:#F02149;
}
#danger #danger_map .st3 {
	fill:#662D91;
}
#danger #danger_map.on0 .st0,
#danger #danger_map.on1 .st1,
#danger #danger_map.on2 .st2,
#danger #danger_map.on3 .st3 {
	opacity: 0.7;
}

#danger #danger_list {
	font-size: 1.4rem;
}
#danger #danger_list label {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items:center;
	margin-bottom: 15px;
	cursor: pointer;
	transition: 0.3s;
}
#danger label:hover {
	opacity: 0.6;
}
#danger #danger_list li:last-of-type {
	margin-bottom: 0;
}
#danger #danger_list svg {
	width: 24px;
	height: 24px;
	margin-right: 8px;
}
#danger #danger_list .st1{
	fill:#FFFFFF;
}
#danger label .st0{
	fill:#dbdbdb;
}
#danger input[type="checkbox"]:checked + label.danger0 .st0{
	fill:#F0D500;
}
#danger input[type="checkbox"]:checked + label.danger1 .st0{
	fill:#FF7B00;
}
#danger input[type="checkbox"]:checked + label.danger2 .st0{
	fill:#F02149;
}
#danger input[type="checkbox"]:checked + label.danger3 .st0{
	fill:#662D91;
}



/* ===== Top ===== */
#top_bg {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../img/top_bg.jpg);
	z-index: -1;
}
#topcard {
	width: 100%;
	height: 100%;
	min-height: calc(100vh - 20px);

	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items:center;
}
#topcard .card {
	max-width: 700px;
	border-radius: 4px;
}
#topcard .block {
	padding: 40px;
}
#topcard .card .card_title {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items:center;

	height: 80px;
	padding: 10px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	color: #fff;
	background: #fb6b69;
	border-radius: 4px 4px 0 0;
}
#topcard .card .card_title h1 {
	width: 100%;
	/*padding-bottom: 5px;*/
	font-size: 2.8rem;
}
#topcard .card strong {
	color: #f02149;
}
#top .select_school {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px #f02149 solid;
}

@media only screen and (min-height: 640px) {
#topcard .card {
	overflow: inherit;
}
}


/* ===== Select ===== */
#select_block {
	width: 100%;
	position: relative;
	margin-bottom: 20px;
	border-radius: 4px;
}
.select2-container--default .select2-selection--single {
	border: 1px solid #000;
}
.select2-container .select2-selection--single {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items:center;

	height: 60px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #f02149;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #000;
	line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0,-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	border: 0;
	border-right: 1px #000 solid;
	border-bottom: 1px #000 solid;
	transform: translate(0,-2px) rotate(45deg);
	transition: 0.3s;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	transform: translate(0,2px) rotate(-135deg);
}


/* ===== Popup ===== */
/*
.gm-style .gm-style-iw {
	border-radius: 4px;
}
.hiyari + div .gm-style-iw button {
	width: 32px !important;
	height: 32px !important;
	top: 10px !important;
	right: 10px !important;
	border: 1px #f02149 solid !important;
	border-radius: 16px;
	background: #fff !important;
	transition: 0.3s;
	opacity: 1;
}
.gm-ui-hover-effect>span {
	background: none;
}
.hiyari + div .gm-style-iw button:before,
.hiyari + div .gm-style-iw button:after {
	content:'';
	display: block;
	width: 10px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #f02149;
}
.hiyari + div .gm-style-iw button:before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.hiyari + div .gm-style-iw button:after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.hiyari + div .gm-style-iw button:hover:before,
.hiyari + div .gm-style-iw button:hover:after {
	opacity: 0.6;
}
.hiyari + div .gm-style-iw button img {
	display: none !important;
}
*/
.gm-style .gm-style-iw {
	border-radius: 4px;
}
.gm-style-iw button[aria-label="閉じる"] {
	width: 32px !important;
	height: 32px !important;
	top: 10px !important;
	right: 10px !important;
	border: 1px #f02149 solid !important;
	border-radius: 16px;
	background: #fff !important;
	transition: 0.3s;
	opacity: 1;
	z-index: 999;
}
.gm-ui-hover-effect>span {
	background: none;
}
.gm-style-iw button[aria-label="閉じる"]:before,
.gm-style-iw button[aria-label="閉じる"]:after {
	content:'';
	display: block;
	width: 10px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #f02149;
}
.gm-style-iw button[aria-label="閉じる"]:before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.gm-style-iw button[aria-label="閉じる"]:after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.gm-style-iw button[aria-label="閉じる"]:hover:before,
.gm-style-iw button[aria-label="閉じる"]:hover:after {
	opacity: 0.6;
}
.gm-style-iw button[aria-label="閉じる"] img {
	display: none !important;
}
#hiyari_info {
	padding: 0 8px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 1.6rem;
	line-height: 1.4;
}

/* === Infowindow Map === */
#hiyari_info .sceneImgWrap {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	padding-top: 100%;
	border-radius: 4px;
	overflow: hidden;
	pointer-events: none;
}
#hiyari_info #embmap_blc,
#hiyari_info #embedMap,
#hiyari_info .sceneImg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#hiyari_info #embmap_blc {
	opacity: 0.5;
}
#hiyari_info .sceneImg {
	mix-blend-mode: darken;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#hiyari_info #embedMap iframe {
	width: 200%;
	height: 200%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#hiyari_info .sceneImg.def {
	width: 100%;
	height: auto;
	position: relative;
	top: auto;
	left: auto;
	margin-bottom: 15px;
	padding-top: 100%;
	border-radius: 4px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}

/* === Infowindow Map === */

#hiyari_info ul {
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: stretch;
	align-items:stretch;
	position: relative;
}
#hiyari_info .scene_info li {
	width: 100%;
	padding-bottom: 15px;
}
#hiyari_info .scene_info li:nth-of-type(1),
#hiyari_info .scene_info li:nth-of-type(2) {
	width: 50%;
}
#hiyari_info li .title {
	font-size: 1.2rem;
	font-weight: bold;
	color: #f02149;
}


#top .btnset {
	width: 100%;
	margin-bottom: 20px;
}
#top .btnset .btn {
	width: calc((100% - 20px) / 2);
	color: #f02149;
	background: #fff;
}
#top .btnset .btn:hover,
#top .btnset input[type=radio]:checked + .btn	{
	color: #fff;
	background: #f02149;
}
#top #select_block {
	height: 0;
	margin-bottom: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
#top #select_block.on {
	height: auto;
	margin-bottom: 20px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.card .note {
	padding-top: 40px;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #666;
}



/* ====================================
 max width 767px
==================================== */
@media only screen and (max-width: 767px) {
.pc {
	display: none;
}
.sp {
	display: inline-block;
}
body {
	font-size: 1.5rem;
}

#maincontents {
	padding: 0;
}

/* ===== Map ===== */
#map {
	width: 100%;
	left: 0;
}

/* ===== Setting card ===== */
#setting_btn {
	max-width: 110px;
	height: 34px;
	left: 10px;
	border-radius: 17px;
	font-size: 1.4rem;
}
#setting_btn:after {
	right: 10px;
}
body.setting_open #setting_btn {
	left: 30px;
}
#fixbtn {
	width: 80px;
	height: 34px;
	right: 30px;
	border-radius: 17px;
	font-size: 1.4rem;
}
#setting_form {
	padding-top: 50px;
}


/* ===== Top ===== */
#top #maincontents {
	height: 100%;
}
#top_bg {
	min-height: 0;
	height: 70vw;
}
#topcard {
	height: 100%;
	min-height: 0;
}
#topcard .card {
	max-width: 100%;
	border-radius: 0;
}
#topcard .block {
	padding: 30px;
}
#topcard .card .card_title {
	font-size: 1.4rem;
	border-radius: 0;
}
#topcard .card .card_title h1 {
	font-size: 2.2rem;
}

/* ===== Select ===== */
#select_block {
	width: 100%;
}
.select_school .btn {
	max-width: 100%;
}


/* ===== Popup ===== */
.hiyari + div .gm-style-iw button {
	width: 28px !important;
	height: 28px !important;
	border-radius: 14px;
}

#hiyari_info {
	padding: 4px;
	padding-bottom: 10px;
	font-size: 1.5rem;
}
#hiyari_info .sceneImg {
	margin-bottom: 10px;
}
#hiyari_info .scene_info li {
	padding-bottom: 10px;
}
#hiyari_info li .title {
	font-size: 1.1rem;
}


}











