.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: 50%;
}
.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: #083A84;
}
.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: #0F3267;
}
.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;
}

#header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 900;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  #header {
    height: 70px;
    background: white;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .container > a {
  height: 60px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1280px) {
  #header .container > a {
    height: 40px;
  }
}
#header .container > a > img {
  width: auto;
  height: 100%;
}
#header .container .h-global-nav {
  position: relative;
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-global-nav .repre-menu-group {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .repre-menu-group > li {
  height: 100%;
  flex: 0 0 150px;
  display: flex;
}
#header .container .h-global-nav .repre-menu-group > li > a {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: white;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav .repre-menu-group > li > a {
    color: black;
  }
}
#header .container .h-global-nav .repre-menu-group > li:hover > a {
  color: #083A84;
  font-weight: 800;
}
#header .container .h-global-nav .repre-menu-group .devine-bar {
  width: 1px;
  height: 20%;
  background: white;
  display: block;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav .repre-menu-group .devine-bar {
    background: black;
  }
}
#header .container .h-global-nav .depth-menu-group {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0px;
  padding-bottom: 0;
  display: flex;
  flex-direction: row;
  background: white;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
#header .container .h-global-nav .depth-menu-group .each-depth {
  flex: 1 1 10%;
  display: flex;
  flex-direction: column;
}
#header .container .h-global-nav .depth-menu-group .each-depth > li {
  width: 100%;
  height: 52px;
}
#header .container .h-global-nav .depth-menu-group .each-depth > li > a {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: black;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-menu-group .each-depth > li > a:hover {
  color: #083A84;
}
#header .container .h-global-nav:hover .repre-menu-group {
  background: white;
}
#header .container .h-global-nav:hover .repre-menu-group > li > a {
  color: black;
}
#header .container .h-global-nav:hover .repre-menu-group > li > a:hover {
  color: #083A84;
}
#header .container .h-global-nav:hover .repre-menu-group .devine-bar {
  background: black;
}
#header .container .h-global-nav:hover .depth-menu-group {
  max-height: 400px;
  padding-bottom: 52px;
}
#header .container .h-right-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-right-wrap .h-member-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-member-nav {
    display: none;
  }
}
#header .container .h-right-wrap .h-member-nav > a {
  width: 75px;
  height: 36px;
  display: flex;
  align-items: center;
}
#header .container .h-right-wrap .h-member-nav > a > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-member-nav > a > svg {
    fill: black;
  }
}
#header .container .h-right-wrap .m-menu-open {
  display: none;
  width: 40px;
  height: auto;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-open {
    display: flex;
  }
}
#header .container .h-right-wrap .m-menu-open > svg {
  width: 100%;
  height: auto;
  fill: black;
}
#header.active, #header:hover {
  background: white;
}
#header.active .container .h-global-nav .repre-menu-group > li > a, #header:hover .container .h-global-nav .repre-menu-group > li > a {
  color: black;
}
#header.active .container .h-global-nav .repre-menu-group .devine-bar, #header:hover .container .h-global-nav .repre-menu-group .devine-bar {
  background: black;
}
#header.active .container .h-right-wrap .h-member-nav > a > svg, #header:hover .container .h-right-wrap .h-member-nav > a > svg {
  fill: black;
}

#footer {
  width: 100%;
  height: auto;
  padding: 52px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
@media (max-width: 1280px) {
  #footer {
    padding: 40px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 1280px) {
  #footer .container {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
}
#footer .container .left, #footer .container .right {
  flex: 1 1 25%;
  padding-top: 48px;
}
@media (max-width: 1280px) {
  #footer .container .left, #footer .container .right {
    padding-top: 0;
  }
}
#footer .container .left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (max-width: 1280px) {
  #footer .container .left {
    align-items: center;
  }
}
#footer .container .left .f-social-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  gap: 12px;
}
#footer .container .left .f-social-nav > a {
  display: flex;
  width: 32px;
  height: auto;
}
#footer .container .left .f-social-nav > a > img {
  width: 100%;
  height: auto;
}
#footer .container .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 36px;
}
@media (max-width: 1280px) {
  #footer .container .right {
    align-items: center;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .right {
    gap: 16px;
  }
}
#footer .container .right .council-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media (max-width: 1280px) {
  #footer .container .right .council-info {
    align-items: center;
  }
}
#footer .container .right .council-info .direct-phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  #footer .container .right .council-info .direct-phone {
    gap: 12px;
  }
}
#footer .container .right .council-info .direct-phone > img {
  flex: 0 0 auto;
  width: 36px;
  height: auto;
}
@media (max-width: 768px) {
  #footer .container .right .council-info .direct-phone > img {
    width: 24px;
  }
}
#footer .container .right .council-info .direct-phone > b {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
  color: white;
}
@media (max-width: 768px) {
  #footer .container .right .council-info .direct-phone > b {
    font-size: 24px;
  }
}
#footer .container .right .council-info > span {
  font-size: 18px;
  line-height: 1.3;
  word-break: keep-all;
  color: #aaa;
  text-align: right;
}
@media (max-width: 768px) {
  #footer .container .right .council-info > span {
    font-size: 14px;
  }
}
#footer .container .right .etc-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}
#footer .container .right .etc-wrap .privacy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
#footer .container .right .etc-wrap .privacy-nav > a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #aaa;
}
#footer .container .right .etc-wrap .privacy-nav .devide {
  width: 1px;
  height: 18px;
  background: #ddd;
  display: block;
}
#footer .container .right .etc-wrap .copyright {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: #707070;
}
#footer .container .center {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1280px) {
  #footer .container .center {
    order: -1;
    gap: 20px;
  }
}
#footer .container .center #f-logo {
  width: auto;
  height: 110px;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .container .center #f-logo {
    height: 80px;
  }
}
#footer .container .center #f-logo > img {
  width: auto;
  height: 100%;
}
#footer .container .center .f-info-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#footer .container .center .f-info-wrap > b {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .center .f-info-wrap > b {
    font-size: 13px;
  }
}
#footer .container .center .f-info-wrap .info-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  #footer .container .center .f-info-wrap .info-row {
    gap: 12px;
  }
}
#footer .container .center .f-info-wrap .info-row > p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  #footer .container .center .f-info-wrap .info-row > p {
    flex: 0 0 auto;
    gap: 8px;
  }
}
#footer .container .center .f-info-wrap .info-row > p > em {
  flex: 0 0 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 768px) {
  #footer .container .center .f-info-wrap .info-row > p > em {
    flex: 0 0 48px;
    font-size: 13px;
  }
}
#footer .container .center .f-info-wrap .info-row > p > span {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.2;
  color: #ddd;
  word-break: keep-all;
}
@media (max-width: 768px) {
  #footer .container .center .f-info-wrap .info-row > p > span {
    font-size: 13px;
  }
}/*# sourceMappingURL=common.css.map */