body {
  padding-top: 70px;
}
@media (max-width: 1280px) {
  body {
    padding-top: 50px;
  }
}

h1 {
  font-size: 52px;
  font-weight: 600;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 600;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 44px;
  font-weight: 600;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 40px;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  h4 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: 36px;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  h5 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 32px;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  h6 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h6 {
    font-size: 16px;
  }
}

.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 600;
}
.m-menu-background.on {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background-color: white;
  transition: all 0.2s ease-in-out;
  z-index: 601;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .menu-head {
  width: 100%;
  height: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  background-color: #3e3825;
  position: relative;
}
.m-menu .menu-head > .bottom_menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.m-menu .menu-head > .bottom_menu > .top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.m-menu .menu-head > .bottom_menu > .top > .img_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-menu .menu-head > .bottom_menu > .top > .img_box > img {
  width: 35%;
  height: 100%;
  border-radius: 500px;
}
.m-menu .menu-head > .bottom_menu > .top > a {
  display: inline-block;
}
.m-menu .menu-head > .bottom_menu > .top > a > h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: white;
  word-break: keep-all;
}
@media (max-width: 480px) {
  .m-menu .menu-head > .bottom_menu > .top > a > h1 {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .m-menu .menu-head > .bottom_menu > .top > a > h1 {
    font-size: 16px;
  }
}
.m-menu .menu-head > .bottom_menu > .bot {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-menu .menu-head > .bottom_menu > .bot > a {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.m-menu .menu-head > .bottom_menu > .bot > a > img {
  width: 10%;
}
.m-menu .menu-head .m-menu-close {
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: absolute;
  top: 5%;
  right: 5%;
}
@media (max-width: 480px) {
  .m-menu .menu-head .m-menu-close {
    width: 30px;
    height: 30px;
  }
}
.m-menu .menu-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .menu-body {
  width: 100%;
}
.m-menu .menu-body .m-global-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .menu-body .m-global-nav .depth-1 {
  width: 100%;
}
.m-menu .menu-body .m-global-nav .depth-1 > a, .m-menu .menu-body .m-global-nav .depth-1 > span {
  width: 100%;
  display: inline-block;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #3e3825;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.m-menu .menu-body .m-global-nav .depth-1:hover > a, .m-menu .menu-body .m-global-nav .depth-1:hover > span, .m-menu .menu-body .m-global-nav .depth-1.on > a, .m-menu .menu-body .m-global-nav .depth-1.on > span {
  background: #3e3825;
  color: white;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  border-bottom: 1px solid #ddd;
  z-index: 500;
}
@media (max-width: 1280px) {
  .header {
    height: 50px;
    background-color: #3e3825;
  }
}
.header .container {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1280px) {
  .header .container {
    gap: 70px;
  }
}
@media (max-width: 768px) {
  .header .container {
    gap: 50px;
  }
}
.header .container .h-logo.type-img {
  width: auto;
  height: 80%;
}
.header .container .h-logo.type-img > img {
  width: auto;
  height: 100%;
}
.header .container .h-logo.type-text {
  width: auto;
  height: auto;
  display: inline-block;
}
@media (max-width: 1024px) {
  .header .container .h-logo.type-text {
    display: none;
  }
}
.header .container .h-logo.type-text > h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: black;
}
@media (max-width: 1280px) {
  .header .container .h-logo.type-text > h1 {
    font-size: 24px;
    color: white;
  }
}
@media (max-width: 768px) {
  .header .container .h-logo.type-text > h1 {
    font-size: 18px;
  }
}
.header .container .right-wrap {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .header .container .right-wrap {
    gap: 12px;
  }
}
.header .container .right-wrap .h-global-swiper {
  flex: 0 1 1000px;
  overflow: hidden;
}
.header .container .right-wrap .h-global-swiper .h-global-nav {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 {
  position: relative;
  width: auto;
  height: 100%;
}
.header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: black;
}
@media (max-width: 1280px) {
  .header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 > a {
    font-size: 16px;
    color: white;
  }
}
@media (max-width: 768px) {
  .header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 > a {
    font-size: 16px;
    font-weight: 700;
  }
}
.header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 .depth-2 {
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 .depth-2 > a {
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1;
  color: #2D2D2D;
  word-break: keep-all;
  background: white;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 .depth-2 > a {
    padding: 12px 18px;
    font-size: 14px;
  }
}
.header .container .right-wrap .h-global-swiper .h-global-nav .depth-1 .depth-2 > a:hover {
  background: #f0f0f0;
}
.header .container .right-wrap .h-global-swiper .h-global-nav .depth-1:hover .depth-2 {
  visibility: visible;
  opacity: 1;
}
.header .container .right-wrap .m-menu-open {
  flex: 0 0 auto;
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .header .container .right-wrap .m-menu-open {
    display: block;
  }
}
.header .container .right-wrap .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.quickmenu {
  position: fixed;
  bottom: 32px;
  right: 10px;
  transition: all 0.2s ease-in-out;
  z-index: 450;
}
@media (max-width: 1280px) {
  .quickmenu {
    right: 0;
    transform: translateX(100%);
  }
  .quickmenu.on {
    transform: translateX(0);
  }
  .quickmenu.on .qm-toggle > svg {
    transform: rotate(180deg);
  }
}
.quickmenu .qm-toggle {
  position: absolute;
  left: -10px;
  top: 28%;
  transform: translate(-100%, -50%);
  width: 60px;
  height: 60px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 500rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .quickmenu .qm-toggle {
    display: flex;
  }
}
.quickmenu .qm-toggle > svg {
  width: 40px;
  height: 40px;
  fill: #3e3825;
  transition: all 0.2s ease-in-out;
}
.quickmenu .qm-toggle:hover {
  background: #3e3825;
}
.quickmenu .qm-toggle:hover > svg {
  fill: white;
}
.quickmenu .qm-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.quickmenu .qm-wrap .qm-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.quickmenu .qm-wrap .qm-nav > a {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border-radius: 5000rem;
  background: #3e3825;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .quickmenu .qm-wrap .qm-nav > a {
    width: auto;
    height: 44px;
    min-width: 44px;
    padding: 0 16px;
    gap: 8px;
  }
}
.quickmenu .qm-wrap .qm-nav > a > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 50%;
  fill: white;
}
@media (max-width: 1280px) {
  .quickmenu .qm-wrap .qm-nav > a > svg {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
  }
}
.quickmenu .qm-wrap .qm-nav > a > span {
  max-width: 0px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: white;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  transition: unset;
}
@media (max-width: 1280px) {
  .quickmenu .qm-wrap .qm-nav > a > span {
    max-width: 100px;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
  }
}
@media (min-width: 1281px) {
  .quickmenu .qm-wrap .qm-nav > a:hover {
    width: auto;
    min-width: 60px;
    padding: 0 20px;
  }
  .quickmenu .qm-wrap .qm-nav > a:hover > svg {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
  }
  .quickmenu .qm-wrap .qm-nav > a:hover > span {
    max-width: 100px;
    transition: all 0.2s ease-in-out;
  }
}
.quickmenu .qm-wrap .to-top {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #f0f0f0;
  border-radius: 500rem;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .quickmenu .qm-wrap .to-top {
    width: 44px;
    height: 44px;
    gap: 4px;
  }
}
.quickmenu .qm-wrap .to-top > svg {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
  fill: #3e3825;
}
@media (max-width: 1280px) {
  .quickmenu .qm-wrap .to-top > svg {
    width: 13px;
    height: 13px;
  }
}
.quickmenu .qm-wrap .to-top > span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #3e3825;
  text-align: center;
}
@media (max-width: 1280px) {
  .quickmenu .qm-wrap .to-top > span {
    font-size: 13px;
  }
}

.footer {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #f0f0f0;
}
@media (max-width: 1280px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer .container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
}
.footer .container .f-top {
  width: 100%;
  margin-bottom: 36px;
  display: none;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer .container .f-top {
    display: flex;
  }
}
.footer .container .f-top .f-logo-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer .container .f-top .f-logo-wrap .image-logo {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1/1;
  background-color: white;
  border: none;
  border-radius: 5000rem;
  overflow: hidden;
}
@media (max-width: 480px) {
  .footer .container .f-top .f-logo-wrap .image-logo {
    max-width: 160px;
  }
}
.footer .container .f-top .f-logo-wrap .image-logo > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
}
.footer .container .f-top .f-logo-wrap > h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
@media (max-width: 480px) {
  .footer .container .f-top .f-logo-wrap > h1 {
    font-size: 20px;
  }
}
.footer .container .f-info-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 0;
}
@media (max-width: 768px) {
  .footer .container .f-info-list {
    margin-bottom: 20px;
  }
}
.footer .container .f-info-list .item {
  font-size: 14px;
  line-height: 1;
  color: #464646;
}
.footer .container .f-info-list .item:not(:last-of-type)::after {
  content: "";
  margin-top: 2px;
  width: 1px;
  height: 14px;
  display: inline-block;
  margin: 0 12px;
  background: #aaa;
}
@media (max-width: 1024px) {
  .footer .container .f-info-list .item:not(:last-of-type)::after {
    display: none;
  }
}
.footer .container .copyright {
  font-size: 14px;
  line-height: 1;
  color: #464646;
}

.sub-local-nav {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  background: #fafafa;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .sub-local-nav {
    height: 40px;
  }
}
@media (max-width: 768px) {
  .sub-local-nav {
    height: 32px;
  }
}
.sub-local-nav .depth-2 {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sub-local-nav .depth-2 > li {
  width: auto;
}
.sub-local-nav .depth-2 > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #464646;
}
@media (max-width: 768px) {
  .sub-local-nav .depth-2 > li > a {
    font-size: 12px;
  }
}
.sub-local-nav .depth-2 > li > a.current {
  color: #3e3825;
}/*# sourceMappingURL=common.css.map */