.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;
  height: 50%;
  display: flex;
}
.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;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.3);
  z-index: 300;
}
@media (max-width: 1280px) {
  #header {
    height: 70px;
  }
}
@media (max-width: 768px) {
  #header {
    height: 50px;
  }
}
#header .container {
  width: 95%;
  height: 70%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .container #h-logo {
  width: auto;
  height: 100%;
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-right-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-right-wrap .h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li {
  position: relative;
  flex: 0 0 auto;
  display: flex;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li > a {
  width: 100%;
  height: 48px;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: black;
  word-break: keep-all;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 0 8px -4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: auto;
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;
  color: #2D2D2D;
  word-break: keep-all;
  text-align: center;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 320px;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-global-nav {
    display: none;
  }
}
#header .container .h-right-wrap .m-menu-btn {
  display: none;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-btn {
    width: 40px;
    height: 40px;
    padding: 4px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #3D3D3D;
    cursor: pointer;
  }
  #header .container .h-right-wrap .m-menu-btn > svg {
    width: 100px;
    height: 100%;
    fill: #3D3D3D;
  }
}
@media (max-width: 768px) {
  #header .container .h-right-wrap .m-menu-btn {
    width: 32px;
    height: 32px;
  }
}

#footer {
  width: 100%;
  height: auto;
  padding: 52px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #25292C;
}
@media (max-width: 1280px) {
  #footer {
    padding: 32px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1620px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1280px) {
  #footer .container {
    gap: 40px;
  }
}
#footer .container .f-top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 1280px) {
  #footer .container .f-top {
    gap: 24px;
  }
}
#footer .container .f-top .top-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1280px) {
  #footer .container .f-top .top-left {
    gap: 24px;
  }
}
#footer .container .f-top .top-left > a {
  flex: 0 0 auto;
  width: auto;
  height: 88px;
}
@media (max-width: 1280px) {
  #footer .container .f-top .top-left > a {
    height: 48px;
  }
}
#footer .container .f-top .top-left > a > img {
  width: auto;
  height: 100%;
}
#footer .container .f-top .top-left .family-site {
  flex: 0 0 auto;
  position: relative;
}
#footer .container .f-top .top-left .family-site .visible-box {
  width: 240px;
  height: 60px;
  border: 1px solid white;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1280px) {
  #footer .container .f-top .top-left .family-site .visible-box {
    width: 200px;
    height: 48px;
    padding: 0 12px;
  }
}
#footer .container .f-top .top-left .family-site .visible-box > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  line-height: 1.2;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-top .top-left .family-site .visible-box > span {
    font-size: 14px;
  }
}
#footer .container .f-top .top-left .family-site .visible-box > svg {
  width: 24px;
  height: auto;
  fill: white;
}
#footer .container .f-top .top-left .family-site .site-list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
#footer .container .f-top .top-left .family-site .site-list.active {
  max-height: 320px;
}
#footer .container .f-top .top-left .family-site .site-list .item {
  width: 100%;
  height: auto;
}
#footer .container .f-top .top-left .family-site .site-list .item > a {
  width: 100%;
  height: auto;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  line-height: 1.2;
  color: #25292C;
  background: white;
}
#footer .container .f-top .f-global-nav {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  #footer .container .f-top .f-global-nav {
    flex: 1 1 100%;
    flex-wrap: wrap;
    gap: 12px;
  }
}
#footer .container .f-top .f-global-nav > a {
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .f-top .f-global-nav > a {
    font-size: 16px;
  }
}
#footer .container .f-bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1280px) {
  #footer .container .f-bottom {
    gap: 24px;
  }
}
#footer .container .f-bottom .f-info-list {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 12px;
}
#footer .container .f-bottom .f-info-list .item {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .f-bottom .f-info-list .item {
    font-size: 13px;
  }
}
#footer .container .f-bottom .copyright {
  align-self: center;
  font-size: 14px;
  color: #aaa;
  word-break: keep-all;
  text-align: center;
}/*# sourceMappingURL=common.css.map */