body {
  font-size: 14px;
  color: #525252;
  background: rgba(228,242,254,.4);
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* header */
.header {
  height: 64px;
  padding: 0 16px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
}
.logo_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: auto;
}
.logo_container .logo_title {
  margin-top: 30px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .logo_container .logo_title {
    display: block;
  }
}
.logo_container .logo_title {
  margin-top: 13px;
  margin-bottom: 2px;
  font-size: 11px;
  color: #333;
}
.logo_logo_img {
  height: 40px;
}

.header .header_sp {
  display: none;
}
.header .header_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .header .header_sp {
    display: block;
  }
  .header .header_pc {
    display: none;
  }
  .logo_logo_img {
    height: 26px;
  }
  .logo_container {
    max-width: 200px;
  }
}


/* footer */
.footer {
  padding: 32px 16px 38.5px 16px;
  background-color: #165476;
  color: #ffffff;
  font-weight: 300;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer .logo {
    height: 40px;
    width: auto;
  }
.footer .logo_img {
  height: 100%;
  width: auto;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 32px 32px 38.5px 32px;
  }
}
@media screen and (min-width: 1280px) {
  .footer {
    padding: 32px 0 46.5px 0;
  }
}

@media screen and (min-width: 1280px) {
  .footer_main {
    width: 1080px;
    margin: 0 auto;
  }
}

.footer_main_column {
  margin-top: 24px;
  display: inline-block;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  font-weight: 300;
}
.footer_second_column {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  gap: 0 40px;
}
@media screen and (min-width: 768px) {
  .footer_second_column {
    gap: 0 24px;
  }
}
.footer_second_column > div {
  flex-basis: 50%;
}
.footer_second_column div > a {
  display: inline-flex;
  align-items: center;
  gap: 0 4px;
}

.footer_second_column_inner {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin-top: 40px;
}
.footer_second_column_inner:first-child {
  margin-top: 0;
}

.footer_other_column {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  font-size: 13px;
}
.footer .footer_inner a:hover {
  text-decoration: underline;
}

.footer hr {
  border: 0;
  border-top: 1px solid #184662;
  margin: 24px 0 24px 0;
  width: 100%;
}
.footer .open_icon {
  width: 16px;
  height: 16px;
}

.footer .footer_title {
  font-size: 13px;
  font-weight: 600;
  color: #8ccded;
}
.copyright {
  background-color: #165476;
  color: #8ccded;
  font-size: 11px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 124.5px;
}
@media screen and (min-width: 1280px) {
  .copyright {
    padding-bottom: 140.5px;
  }
}
