@charset "UTF-8";
@import url(html5reset-1.6.1.css);
@import url(fonts.css);
/* ==============================

共通

============================== */
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 100%;
  height: 100%;
  background: #fff;
  color: #333;
  font-family: Hiragino Sans, "ヒラギノ角ゴ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 160%;
  font-size: 1.4rem;
}

a {
  color: #6AB3F4;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul li,
ol li {
  list-style: none;
}

.dsp_none {
  display: none !important;
}

.f_michroma {
  font-family: 'Michroma', sans-serif;
}

.bg_blue {
  background: #6AB3F4;
}

.align_c {
  text-align: center !important;
}

/* ==============================

ヘッダー

============================== */
header > div:first-child {
  padding: 20px;
  position: relative;
}
header > div:nth-child(2) {
  background: #fff;
}
header > div:nth-child(2) dl {
  text-align: center;
  padding: 10px;
}
header > div:nth-child(2) dl dt,
header > div:nth-child(2) dl dd {
  display: inline-block;
}
header > div:nth-child(2) dl dt {
  font-weight: bold;
  line-height: 40px;
  vertical-align: top;
  margin-right: 10px;
}
header > div:nth-child(2) dl dd + dt {
  margin-left: 30px;
}
header > div:nth-child(3) {
  width: 100%;
  height: 40px;
  color: #fff;
  background: #00417b;
}
header > div:nth-child(3) p {
  height: 40px;
  line-height: 40px;
  text-align: center;
}
header h1 {
  width: 100%;
  height: 40px;
  margin: 0 0 -10px 0;
  text-align: center;
}
header h1 img {
  width: auto;
  height: 100%;
}
header h2 {
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: #fff;
  text-indent: 30px;
  display: inline-block;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
header h2 span {
  position: relative;
  text-indent: 0;
}
header h2 span:before {
  font-family: 'icomoon';
  content: "\e906";
  font-size: 2rem;
  position: absolute;
  left: -26px;
  top: -2px;
}
header h2 + p {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
header h2 + p a {
  height: 30px;
  line-height: 30px;
  background: #fff;
  display: block;
  padding: 0 20px;
  color: red;
  font-weight: bold;
}
header h2 + p a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
}

.select {
  width: 280px;
  max-width: calc(50% - 80px);
  height: 40px;
  position: relative;
}
.select:after {
  width: 8px;
  height: 8px;
  margin: auto;
  content: "";
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  top: 13px;
  right: 13px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
}

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

select {
  width: 280px;
  max-width: 100%;
  font-size: 1.2rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding: 10px 30px 10px 10px;
  background: #fff;
  border: 1px solid #ddd;
  vertical-align: bottom;
  color: #333;
}

/* ==============================

フッター

============================== */
footer {
  height: 30px;
  line-height: 30px;
  color: #E7E7E7;
  background: #222325;
  overflow: hidden;
  padding: 0 20px;
}
footer ul {
  font-size: 1.2rem;
  float: left;
}
footer ul li {
  display: inline-block;
}
footer ul li + li {
  margin-left: 10px;
}
footer ul li a {
  color: #ccc;
}
footer p {
  font-size: 1rem;
  float: right;
}

/* ==============================

コンテンツ

============================== */
#map_area {
  position: relative;
  background: #ccc;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

.modal {
  width: 500px;
  background: #fff;
  padding: 20px;
  overflow: auto;
  position: absolute;
  z-index: 1001;
  display: none;
}
.modal h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #6AB3F4;
  color: red;
}
.modal h3 + p {
  text-align: justify;
}
.modal h4 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 10px;
}
.modal h4 span {
  margin-left: .5em;
}
.modal ul {
  text-align: center;
}
.modal ul li {
  display: inline-block;
}
.modal ul li + li {
  margin-left: 20px;
}
.modal table {
  width: 100%;
  border-collapse: collapse;
  border: 1px #6AB3F4 solid;
}
.modal table th,
.modal table td {
  padding: 10px;
}
.modal table th {
  background: #6AB3F4;
  color: #fff;
  font-weight: normal;
}
.modal table th + th {
  border-left: 1px solid #fff;
}
.modal table td {
  text-align: center;
  border: 1px #6AB3F4 solid;
}
.modal table + p {
  margin-top: 10px;
}
.modal table + ul {
  margin-top: 10px;
}
.modal .closeBtn {
  margin-top: 20px;
  text-align: center;
}
.modal .closeBtn a {
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  padding: 0 20px;
  color: #fff;
  background: #6AB3F4;
  border: 1px solid #6AB3F4;
  display: inline-block;
}
.modal .closeBtn a:hover {
  text-decoration: none;
  background: #fff;
  color: #6AB3F4;
}

a.arrow {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
  position: relative;
}
a.arrow:hover {
  text-decoration: underline;
}
a.arrow:hover:after {
  right: -12px;
}
a.arrow:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #6AB3F4;
  border-right: 1px solid #6AB3F4;
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

a.place {
  height: 30px;
  line-height: 30px;
  font-size: 1.2rem;
  display: inline-block;
  border-radius: 15px;
  color: #6AB3F4;
  border: 1px solid #6AB3F4;
  padding: 0 10px 0 30px;
}
a.place span {
  position: relative;
}
a.place span:before {
  font-family: 'icomoon';
  content: "\e903";
  font-size: 2rem;
  position: absolute;
  left: -24px;
}
a.place:hover {
  text-decoration: none;
  background: #6AB3F4;
  color: #fff;
}

#modal3,
#modal4,
#modal5,
#modal5_2 {
  width: 350px;
}

#modal7 {
  width: 800px;
  max-width: calc(100vw - 40px);
}

#time_table_week {
  margin-bottom: 15px;
}
#time_table_week li.active {
  position: relative;
}
#time_table_week li.active:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
}
#time_table_week + table th, #time_table_week + table td {
  padding: 5px 10px;
}
#time_table_week + table th span {
  margin-left: 10px;
}
#time_table_week + table th span:before {
  content: "[";
}
#time_table_week + table th span:after {
  content: "]";
}
#time_table_week + table td {
  font-weight: bold;
}
#time_table_week + table td + td {
  font-weight: normal;
  text-align: left;
}

#modal5 dl {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-bottom: 20px;
}
#modal5 dl dt {
  font-weight: bold;
  margin-bottom: 5px;
}
#modal5 dl dd {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
#modal5 dl dd + dt {
  margin-top: 10px;
}
#modal5 a.arrow {
  display: inline;
}
#modal5 a.arrow:after {
  top: auto;
  bottom: 0px;
}

#area_info_anchor a.arrow {
  margin-left: 10px;
}
#area_info_anchor a.arrow:after {
  left: -10px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}
#area_info_anchor a.arrow:hover:after {
  left: -12px;
}

#area_info_title {
  margin-bottom: 10px;
}
#area_info_title + p {
  margin: 0 auto;
  display: table;
}
#area_info_title + p a {
  margin: 0 auto 10px;
  font-weight: normal;
}
#area_info_title + p + div p {
  display: block;
  line-height: 30px;
  position: relative;
}
#area_info_title + p + div p + p {
  margin-top: 20px;
}
#area_info_title + p + div p a.place {
  position: absolute;
  bottom: 0;
  right: 0;
}

#modal6 dl dt {
  width: 6em;
  float: left;
  clear: left;
  font-weight: bold;
  padding: 10px 0 10px 0;
}
#modal6 dl dd {
  padding: 10px 0 10px 8em;
  border-bottom: 1px dotted #ccc;
}
#modal6 dl dd ul {
  text-align: left;
}
#modal6 dl dd ul li {
  margin: 0 0 0 1em;
  list-style: disc;
  display: list-item;
}

#modal7 > div + div {
  margin-top: 30px;
}
#modal7 h4 {
  text-align: left;
  font-size: 1.6rem;
}
#modal7 ul {
  text-align: left;
}
#modal7 ul li {
  margin: 0 0 0 1em;
  list-style: disc;
  display: list-item;
}
#modal7 ul li + li {
  margin-top: 10px;
}

/*新着点滅 pc,sp*/
.blink {
	animation:blink 0.6s ease-in-out infinite alternate;
	color: red;
	position: absolute;
	left: -45px;
	top: 5px;
}
@keyframes blink {
	0%{opacity:1.0;}100% {opacity:0;}
}
