@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* resetここまで */
/* common */
main {
  display: block;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #1A1A1A;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 13px;
  }
}
body * {
  box-sizing: border-box;
}
body *::before, body *::after {
  box-sizing: border-box;
}
body img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p, dl, ul {
  line-height: 1.6;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.impact {
  font-family: Impact, "Anton", sans-serif;
}

.dib {
  display: inline-block;
}

.ieonly {
  display: none !important;
}

@media all and (-ms-high-contrast: none) {
  .ieonly {
    display: block !important;
  }
  .ieonly.pconly {
    display: block !important;
  }
}
@media (-ms-high-contrast: none) and (max-width: 768px) {
  .ieonly.pconly {
    display: none !important;
  }
}
@media all and (-ms-high-contrast: none) {
  .ieonly.sponly {
    display: none !important;
  }
}
@media (-ms-high-contrast: none) and (max-width: 768px) {
  .ieonly.sponly {
    display: block !important;
  }
}
.pconly {
  display: block;
}
@media (max-width: 768px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media (max-width: 768px) {
  .sponly {
    display: block;
  }
}

.small_only {
  display: none;
}
@media (max-width: 350px) {
  .small_only {
    display: block;
  }
}

.baseW {
  width: 90%;
  max-width: 1096px;
  margin: auto;
  background-color: #fff;
}

.scroll_con {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s;
}
.scroll_con.active {
  opacity: 1;
  transform: translateY(0);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #0c2c6b;
}
@media (max-width: 768px) {
  header {
    padding: 10px 15px;
  }
}
@media (max-width: 500px) {
  header {
    display: block;
  }
}
header .header_logo {
  font-size: 35px;
  font-style: italic;
  color: #fff;
}
@media (max-width: 768px) {
  header .header_logo {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  header .header_logo {
    text-align: center;
    margin-bottom: 0.2em;
  }
}
header .global_nav {
  display: flex;
}
@media (max-width: 500px) {
  header .global_nav {
    justify-content: center;
  }
}
header .global_nav li:not(:last-child) {
  margin-right: 3em;
}
header .global_nav li a {
  display: block;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  header .global_nav li a {
    font-size: 15px;
  }
}
header .global_nav li a::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 3px;
  bottom: 0;
  width: 5px;
  height: 1em;
  margin: auto;
  background-color: #fff;
  transition: 0.3s;
}
header .global_nav li a:hover::before {
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}

.page_ttl {
  position: relative;
  margin-bottom: 0.7em;
  font-size: 55px;
  font-weight: 500;
  color: #0f3284;
  text-align: center;
}
@media (max-width: 768px) {
  .page_ttl {
    font-size: 30px;
  }
}
.page_ttl::after {
  content: "";
  position: absolute;
  bottom: 0em;
  right: 0;
  left: 0;
  margin: auto;
  width: 3em;
  height: 6px;
  background-color: #f6ab00;
}
@media (max-width: 768px) {
  .page_ttl::after {
    bottom: -0.1em;
    height: 3px;
  }
}

.page_catch {
  font-size: 17px;
  text-align: center;
}
@media (max-width: 768px) {
  .page_catch {
    font-size: 14px;
  }
}

.common_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 35px;
  max-width: 436px;
  height: 78px;
  margin: 0 auto;
  font-size: 22px;
  color: #fff;
  text-align: center;
  background-color: #1359a4;
  transition: 0.3s;
}
.common_btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .common_btn {
    max-width: 300px;
    font-size: 17px;
    height: 58px;
  }
}

footer {
  padding: 52px 0 12px;
  color: #fff;
  text-align: center;
  background-color: #0c2c6b;
}
@media (max-width: 768px) {
  footer {
    padding: 30px 0 15px;
  }
}
footer .footer_logo {
  max-width: 213px;
  margin: 0 auto 1em;
}
@media (max-width: 768px) {
  footer .footer_logo {
    max-width: 150px;
  }
}
footer .contact_list {
  width: 15em;
  margin: 0 auto 1.5em;
  text-align: left;
}
footer .contact_list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 26px;
}
@media (max-width: 768px) {
  footer .contact_list li {
    font-size: 18px;
  }
}
footer .contact_list li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  bottom: 0;
  left: 0;
  margin: auto;
}
footer .contact_list li.tel::before {
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_tel.png) center/contain no-repeat;
}
@media (max-width: 768px) {
  footer .contact_list li.tel::before {
    width: 16px;
    height: 16px;
  }
}
footer .contact_list li.mail::before {
  width: 25px;
  height: 18px;
  background: url(../images/common/icon_mail.png) center/contain no-repeat;
}
@media (max-width: 768px) {
  footer .contact_list li.mail::before {
    width: 20px;
    height: 14px;
  }
}
footer .footer_nav {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  footer .footer_nav {
    display: block;
  }
}
footer .footer_nav li {
  margin: 0 1em;
  font-size: 23px;
}
@media (max-width: 768px) {
  footer .footer_nav li {
    font-size: 16px;
  }
}
footer .copyright {
  font-size: 19px;
}
@media (max-width: 768px) {
  footer .copyright {
    font-size: 13px;
  }
}

#page_top {
  position: fixed;
  z-index: 5;
  bottom: 160px;
  right: 12px;
  width: 70px;
  height: 70px;
  transition: all 0.3s ease;
}
#page_top:hover {
  transform: scale(1.08);
}
@media (max-width: 768px) {
  #page_top {
    bottom: 66px;
    width: 63px;
    height: 63px;
  }
}/*# sourceMappingURL=common.css.map */