* {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, 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, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Start Navigation Bar */
.navbar {
  color: #003B8A;
  border-radius: 4px;
  width: 960px;
  margin: 0 auto;
}

.navbar .menu {
  display: flex;
  position: relative;
}

.navbar .menu li {
  flex: 1;
  display: flex;
  text-align: center;
  transition: background-color 0.5s ease;
  font-family: 'M PLUS 1p', sans-serif;
  font-size:21px;
}

.navbar .menu a {
  flex: 1;
  justify-content: center;
  display: inline-flex;
  color: #003B8A;
  text-decoration: none;
  padding: 10px;
  position: relative;
}

.navbar .menu a > .fa {
  font-weight: bold;
  margin-left: 8px;
}

.navbar .menu li:hover {
  background-color: #fff;
}

.navbar .menu li:hover .container {
  display: flex;
}

a.hasDropdown:after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-top-color: #25283d;
  z-index: 2;
}

li:hover a.hasDropdown:after {
  content: '';
  border-top-color: #fff;
}

/* End Navigation Bar */

/* Start Single Section Menu */

.container {
  display: none;
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  width:100%;
  background-color: #003B8A;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: left;
  margin-bottom: 30px;
}

.container__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.container__listItem {
  flex: 0 0 33.333%;
  max-width: 33.3333%;
  padding: 10px 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size:medium;
}

.container__listItem > div {
  color: #DB6356;
  text-decoration: underline;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.container__listItem a {
  display:block;
}
.container__listItem a:hover dl dt {
  background-color:#fff;
}
.container__listItem dl {
  padding:0;
  margin:0;
}
.container__listItem dt {
  display:block;
  float:left;
  width:80px;
  height:80px;
  margin-right:12px;
  background-color:#eee;
  border:2px solid #fff;
  color:#003B8A;
  font-size:48px;
  font-family: 'Anton', sans-serif;
  text-align:center;
}
.container__listItem dt img {
	margin-top:10px;
}
.container__listItem dd {
  display:block;
  float:left;
  width:100px;
  color:#fff;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
}
.container__listItem dd::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content:"\f0da";
  padding-right : 5px;
}
/* End Single Section Menu */

/* Start Multiple Section Menu */
.container.has-multi .container__listItem {
  flex-basis: 100%;
}

.container.has-multi .container__list {
  flex-basis: 33.333%;
  border-radius: 4px;
}

.container.has-multi .container__list:not(:last-child) {
  border-right: solid 1px #f3f3f3;
  margin-right: 20px;
}

/* End Multiple Section Menu */
