body {
  -webkit-touch-callout: none;
  background: white;
}

.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(100%);
  width: 100%;
  height: 100dvh;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 0 16px 16px 0;
  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;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 200;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  position: relative;
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1620px) {
  #header .container {
    justify-content: space-between;
  }
}
#header .container .h-global-nav {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
}
@media (max-width: 1620px) {
  #header .container .h-global-nav {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    order: 1;
  }
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-global-nav .depth-1 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-global-nav .depth-1 > li {
  position: relative;
  height: 100%;
}
#header .container .h-global-nav .depth-1 > li > a {
  height: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
@media (max-width: 1620px) {
  #header .container .h-global-nav .depth-1 > li > a {
    font-size: 18px;
  }
}
#header .container .h-global-nav .depth-1 > li > a .circle {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid black;
  border-radius: 10000rem;
}
#header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  visibility: visible;
  opacity: 1;
}
#header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  background: black;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
#header .container .h-global-nav .depth-1 > li .depth-2 > li > a {
  height: 48px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1440px) {
  #header .container .h-global-nav .depth-1 > li .depth-2 > li > a {
    height: 40px;
    padding: 0 12px;
    font-size: 16px;
  }
}
#header .container .h-global-nav .depth-1 > li .depth-2 > li > a:hover {
  background: white;
  box-shadow: 0 0 0 2px black inset;
  color: black;
}
#header .container .h-member-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  order: 3;
}
@media (max-width: 1280px) {
  #header .container .h-member-nav {
    display: none;
  }
}
#header .container .h-member-nav > a {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  height: 36px;
  padding: 0 4px 0 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 2px solid black;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
#header .container .h-member-nav > a.lang {
  padding: 0 4px;
}
@media (max-width: 1620px) {
  #header .container .h-member-nav > a {
    height: 40px;
    gap: 10px;
  }
}
#header .container .h-member-nav > a > span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  transition: inherit;
}
#header .container .h-member-nav > a > svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: black;
  transition: inherit;
}
#header .container .h-member-nav > a:hover {
  background: black;
}
#header .container .h-member-nav > a:hover > span {
  color: white;
}
#header .container .h-member-nav > a:hover > svg {
  fill: white;
}
#header .container .h-member-nav > a:hover.black {
  background: black;
  border-color: black;
}
#header .container .h-member-nav > a:hover.black > span {
  color: white;
}
#header .container .h-member-nav > a:hover.black > svg {
  fill: white;
}
#header .container .h-member-nav > a.black {
  background: #7C54F2;
  border-color: #7C54F2;
  height: 64px;
  padding: 0 16px 0 20px;
}
@media (max-width: 1620px) {
  #header .container .h-member-nav > a.black {
    height: 52px;
    padding: 0 10px 0 14px;
  }
}
#header .container .h-member-nav > a.black > span {
  color: white;
  font-size: 18px;
}
#header .container .h-member-nav > a.black > svg {
  width: 28px;
  height: 28px;
  fill: white;
}
#header .container #h-logo {
  margin-right: auto;
  height: 60%;
  display: flex;
}
@media (max-width: 1620px) {
  #header .container #h-logo {
    margin-right: 0;
    height: 50%;
  }
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .m-menu-open {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .m-menu-open {
    display: flex;
  }
}
#header .container .m-menu-open > svg {
  width: 100%;
  height: 100%;
}

.m-footer-quickmenu {
  display: none;
}
@media (max-width: 1280px) {
  .m-footer-quickmenu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    border-top: 1px solid #ddd;
    z-index: 10;
  }
  .m-footer-quickmenu > a {
    flex: 1 1 10%;
    height: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .m-footer-quickmenu > a > svg {
    flex: 0 0 auto;
    width: 24px;
    height: auto;
    fill: black;
  }
  .m-footer-quickmenu > a > span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: black;
    word-break: keep-all;
    text-align: center;
  }
  .m-footer-quickmenu > a.black {
    background: #7C54F2;
  }
  .m-footer-quickmenu > a.black > svg {
    fill: white;
  }
  .m-footer-quickmenu > a.black > span {
    color: white;
  }
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  background: white;
}
@media (max-width: 1280px) {
  #footer {
    gap: 40px;
    margin-bottom: 60px;
  }
}
#footer .top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#footer .top .container {
  width: 95%;
  height: auto;
  max-width: 1640px;
  padding-top: 70px;
  border-top: 1px solid #ddd;
}
@media (max-width: 1280px) {
  #footer .top .container {
    padding-top: 40px;
  }
}
#footer .top .container .title-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1280px) {
  #footer .top .container .title-wrap {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .top .container .title-wrap {
    gap: 20px;
  }
}
#footer .top .container .title-wrap > h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
  color: black;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .top .container .title-wrap > h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  #footer .top .container .title-wrap > h1 {
    font-size: 24px;
  }
}
#footer .top .container .title-wrap > p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #3D3D3D;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  #footer .top .container .title-wrap > p {
    font-size: 16px;
  }
}
#footer .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#footer .bottom .container {
  width: 95%;
  height: auto;
  max-width: 1880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .bottom .container .f-visual-area {
  width: 100%;
  height: auto;
  padding: 52px 16px 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center 80%;
  background-size: cover;
  border-radius: 36px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  #footer .bottom .container .f-visual-area {
    padding: 40px 16px 24px;
  }
}
#footer .bottom .container .f-visual-area .visual-inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1280px) {
  #footer .bottom .container .f-visual-area .visual-inner {
    gap: 24px;
  }
}
#footer .bottom .container .f-visual-area .visual-inner > a {
  width: auto;
  height: 70px;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .bottom .container .f-visual-area .visual-inner > a {
    height: 52px;
  }
}
@media (max-width: 640px) {
  #footer .bottom .container .f-visual-area .visual-inner > a {
    height: 40px;
  }
}
#footer .bottom .container .f-visual-area .visual-inner > a > img {
  width: auto;
  height: 100%;
}
#footer .bottom .container .f-visual-area .visual-inner .social-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
#footer .bottom .container .f-visual-area .visual-inner .social-nav > a {
  flex: 0 0 auto;
}
#footer .bottom .container .f-visual-area .visual-inner .social-nav > a > img {
  width: 40px;
  height: auto;
}
@media (max-width: 640px) {
  #footer .bottom .container .f-visual-area .visual-inner .social-nav > a > img {
    width: 32px;
  }
}
#footer .bottom .container .f-visual-area .visual-inner .f-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 640px) {
  #footer .bottom .container .f-visual-area .visual-inner .f-infos {
    gap: 8px;
  }
}
#footer .bottom .container .f-visual-area .visual-inner .f-infos > span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 640px) {
  #footer .bottom .container .f-visual-area .visual-inner .f-infos > span {
    font-size: 14px;
  }
}
#footer .bottom .container .copyright {
  padding: 16px 0;
  width: 100%;
  height: auto;
  font-size: 17px;
  font-weight: 300;
  color: #3D3D3D;
  word-break: keep-all;
  text-align: center;
}

.side-quick {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: all 0.2s ease-in-out;
}
.side-quick .toggle-btn {
  transform: translateX(1px);
  flex: 0 0 32px;
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px 0 0 8px;
  border: 1px solid #aaa;
  border-right-color: white;
  background: white;
  cursor: pointer;
}
.side-quick .toggle-btn span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  writing-mode: vertical-lr;
}
.side-quick .quick-body {
  flex: 0 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 1px solid #aaa;
  border-right: none;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
.side-quick .quick-body a, .side-quick .quick-body div {
  width: 100%;
  height: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #7C54F2;
}
.side-quick .quick-body a figure, .side-quick .quick-body div figure {
  position: relative;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.side-quick .quick-body a figure > img, .side-quick .quick-body div figure > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.side-quick .quick-body a span, .side-quick .quick-body div span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  color: white;
  text-align: center;
}
.side-quick .quick-body div {
  background: black;
  cursor: pointer;
}/*# sourceMappingURL=common.css.map */