#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: white;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  z-index: 500;
}
@media (max-width: 768px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 65%;
  display: flex;
}
@media (max-width: 768px) {
  #header .container #h-logo {
    height: 80%;
  }
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container #h-global-nav {
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container #h-global-nav {
    display: none;
  }
}
#header .container #h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}
#header .container #h-global-nav .depth-1 > li {
  flex: 0 0 auto;
  height: 100%;
}
#header .container #h-global-nav .depth-1 > li > a {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  color: #464646;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
#header .container #h-global-nav .depth-1 > li:hover > a {
  font-weight: 700;
  color: #28336E;
}
#header .container #h-global-nav .depth-1 > li .megamenu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  padding: 0;
  background: #f0f0f0;
  transition: all 0.2s ease-in-out;
  max-height: 0px;
  overflow: hidden;
}
#header .container #h-global-nav .depth-1 > li .megamenu .inner {
  width: 95%;
  height: auto;
  max-width: 1024px;
  margin: 0 auto;
}
#header .container #h-global-nav .depth-1 > li .megamenu .inner .depth-2 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
#header .container #h-global-nav .depth-1 > li .megamenu .inner .depth-2 > li {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
#header .container #h-global-nav .depth-1 > li .megamenu .inner .depth-2 > li > a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #464646;
  word-break: keep-all;
}
#header .container #h-global-nav .depth-1 > li .megamenu .inner .depth-2 > li .depth-3 {
  width: 100%;
  height: auto;
  padding-left: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 36px;
  border-left: 2px solid #28336E;
}
#header .container #h-global-nav .depth-1 > li .megamenu .inner .depth-2 > li .depth-3 > li {
  flex: 0 0 auto;
}
#header .container #h-global-nav .depth-1 > li .megamenu .inner .depth-2 > li .depth-3 > li > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #707070;
  word-break: keep-all;
}
#header .container #h-global-nav .depth-1 > li:hover .megamenu {
  padding: 40px 0 60px;
  max-height: 500px;
}
#header .container .m-menu-open {
  flex: 0 0 auto;
  height: 34px;
  display: flex;
  cursor: pointer;
}
@media (max-width: 768px) {
  #header .container .m-menu-open {
    height: 28px;
  }
}
#header .container .m-menu-open > img {
  height: 100%;
}

.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 950;
}
.m-menu-background.active {
  opacity: 1;
  visibility: visible;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(calc(100% + 12px));
  width: 100%;
  height: 100dvh;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  z-index: 951;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  flex: 0 0 auto;
  width: 100%;
  height: 70px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.m-menu .m-menu-head > a {
  flex: 0 0 auto;
  width: auto;
  height: 60%;
}
.m-menu .m-menu-head > a > img {
  width: auto;
  height: 100%;
}
.m-menu .m-menu-head .m-menu-close {
  width: 40px;
  height: 40px;
  padding: 4px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.m-menu .m-menu-body {
  flex: 1 1 auto;
  overflow: auto;
}
.m-menu .m-menu-body .m-global-nav {
  width: 100%;
  height: auto;
}
.m-menu .m-menu-body .m-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li > a {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: black;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > li {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #3D3D3D;
  border-left: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > li:hover {
  color: #0F4196;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li:hover > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li:hover > a, .m-menu .m-menu-body .m-global-nav .depth-1 > li.active > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li.active > a {
  color: white;
  background: #0F4196;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.active .depth-2 {
  max-height: 240px;
}
.m-menu .m-menu-bottom {
  flex: 0 0 auto;
  width: 100%;
  height: 70px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
}
.m-menu .m-menu-bottom > a {
  flex: 1 1 40%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.m-menu .m-menu-bottom > a .icon-box {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: black;
  border-radius: 8px;
  cursor: pointer;
}
.m-menu .m-menu-bottom > a .icon-box > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-menu-bottom > a > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: #3D3D3D;
}
.m-menu .m-menu-bottom > a.mypage .icon-box {
  background: white;
  border: 2px solid #01d95a;
}
.m-menu .m-menu-bottom > a.mypage .icon-box > svg {
  fill: #01d95a;
}

#footer {
  width: 100%;
  height: auto;
  padding: 60px 0 34px;
  background: #F2F9FF;
}
@media (max-width: 1280px) {
  #footer {
    padding: 40px 0 28px;
  }
}
#footer .f-top {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media (max-width: 1280px) {
  #footer .f-top {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  #footer .f-top {
    margin-bottom: 24px;
  }
}
#footer .f-top .inner {
  width: 95%;
  height: auto;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #footer .f-top .inner {
    flex-direction: column-reverse;
    gap: 32px;
  }
}
#footer .f-top .inner .f-t-left {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1280px) {
  #footer .f-top .inner .f-t-left {
    gap: 24px;
  }
}
#footer .f-top .inner .f-t-left #f-logo {
  width: 260px;
  height: auto;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .f-top .inner .f-t-left #f-logo {
    width: 200px;
  }
}
#footer .f-top .inner .f-t-left #f-logo > img {
  width: 100%;
  height: auto;
}
#footer .f-top .inner .f-t-left article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
#footer .f-top .inner .f-t-left article p {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D2D2D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .f-top .inner .f-t-left article p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #footer .f-top .inner .f-t-left article p {
    font-size: 20px;
  }
}
#footer .f-top .inner .f-t-left article p em {
  color: #2EA9DF;
}
#footer .f-top .inner .f-t-left article small {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: #464646;
}
@media (max-width: 1280px) {
  #footer .f-top .inner .f-t-left article small {
    font-size: 14px;
  }
}
#footer .f-top .inner .f-t-right {
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  #footer .f-top .inner .f-t-right {
    align-self: flex-end;
  }
}
#footer .f-top .inner .f-t-right .to-top {
  width: 48px;
  height: auto;
  display: flex;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #footer .f-top .inner .f-t-right .to-top {
    width: 40px;
  }
}
@media (max-width: 768px) {
  #footer .f-top .inner .f-t-right .to-top {
    width: 36px;
  }
}
#footer .f-top .inner .f-t-right .to-top > img {
  width: 100%;
  height: auto;
}
#footer .f-bottom {
  width: 100%;
  height: auto;
  padding: 40px 0;
  background: #E8F4FF;
}
@media (max-width: 1280px) {
  #footer .f-bottom {
    padding: 24px 0;
  }
}
#footer .f-bottom .inner {
  width: 95%;
  height: auto;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
#footer .f-bottom .inner .f-b-left {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#footer .f-bottom .inner .f-b-left .f-infos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 16px;
}
#footer .f-bottom .inner .f-b-left .f-infos span {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner .f-b-left .f-infos span {
    font-size: 14px;
  }
}
#footer .f-bottom .inner .f-b-left .copyright {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner .f-b-left .copyright {
    font-size: 14px;
  }
}
#footer .f-bottom .inner .f-b-right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner .f-b-right {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .f-bottom .inner .f-b-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}
#footer .f-bottom .inner .f-b-right > b {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #2D2D2D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner .f-b-right > b {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #footer .f-bottom .inner .f-b-right > b {
    font-size: 16px;
  }
}
#footer .f-bottom .inner .f-b-right .rel-sites {
  position: relative;
  z-index: 2;
}
#footer .f-bottom .inner .f-b-right .rel-sites .current {
  width: 280px;
  height: 44px;
  padding: 0 4%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 3px;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner .f-b-right .rel-sites .current {
    width: 200px;
    height: 40px;
  }
}
#footer .f-bottom .inner .f-b-right .rel-sites .current > span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: #464646;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner .f-b-right .rel-sites .current > span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .f-bottom .inner .f-b-right .rel-sites .current > span {
    font-size: 14px;
  }
}
#footer .f-bottom .inner .f-b-right .rel-sites .current i {
  font-size: 18px;
  color: #2EA9DF;
  line-height: 1;
}
@media (max-width: 1280px) {
  #footer .f-bottom .inner .f-b-right .rel-sites .current i {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .f-bottom .inner .f-b-right .rel-sites .current i {
    font-size: 14px;
  }
}
#footer .f-bottom .inner .f-b-right .rel-sites .rel-list {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: auto;
  display: none;
  flex-direction: column;
  background: #fafafa;
  border-radius: 3px;
}
#footer .f-bottom .inner .f-b-right .rel-sites .rel-list li {
  width: 100%;
  height: auto;
}
#footer .f-bottom .inner .f-b-right .rel-sites .rel-list li > a {
  width: 100%;
  height: auto;
  display: inline-block;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: #464646;
}
#footer .f-bottom .inner .f-b-right .rel-sites .rel-list li > a:hover {
  background: #ddd;
}
#footer .f-bottom .inner .f-b-right .rel-sites:hover .rel-list {
  display: flex;
}/*# sourceMappingURL=common.css.map */