/* Base */
body {
  font-family: sans-serif;
  color: #050505;
}
body.drawer-open {
  overflow: hidden;
}

a {
  color: #050505;
  text-decoration: none;
}
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #0082ff;
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Layout */
body {
  padding-top: 14.4vw;
}
@media (min-width: 1920px) {
  body {
    padding-top: 108px;
  }
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.section {
  padding: 7.3333333333vw 0vw;
}
@media (min-width: 1920px) {
  .section {
    padding: 55px 0;
  }
}

.section-heading-wrap {
  margin: 0vw 5.3333333333vw 6vw;
  padding-bottom: 2.1333333333vw;
}
@media (min-width: 1920px) {
  .section-heading-wrap {
    margin: 0 40px 45px;
    padding-bottom: 16px;
  }
}
.section-heading-wrap {
  position: relative;
  text-align: center;
  border-bottom: 1px solid #c4c4c4;
}
.section-heading-wrap::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #ff5b1a;
  width: 4vw;
}
@media (min-width: 1920px) {
  .section-heading-wrap::after {
    width: 30px;
  }
}
.section-heading-wrap + .section-heading-desc {
  margin-top: -2.6666666667vw;
}
@media (min-width: 1920px) {
  .section-heading-wrap + .section-heading-desc {
    margin-top: -20px;
  }
}

.section-heading {
  font-size: 4.6666666667vw;
}
@media (min-width: 1920px) {
  .section-heading {
    font-size: 35px;
  }
}
.section-heading {
  font-weight: bold;
  line-height: 1;
  color: #050505;
}

.section-heading-en {
  font-size: 1.6666666667vw;
}
@media (min-width: 1920px) {
  .section-heading-en {
    font-size: 12.5px;
  }
}
.section-heading-en {
  line-height: 1;
  color: #a1a1a1;
  margin-top: 2px;
}

.section-heading-desc {
  font-size: 2.9333333333vw;
}
@media (min-width: 1920px) {
  .section-heading-desc {
    font-size: 22px;
  }
}
.section-heading-desc {
  color: #484848;
  text-align: center;
  line-height: 1.5;
}
.section-heading-desc + .section-heading-desc {
  margin-top: 6px;
}

@media (max-width: 749px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 750px) {
  .hidden-desktop {
    display: none !important;
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-5px {
  gap: 5px;
}

/* Header & Footer */
#header {
  height: 14.4vw;
  padding: 0vw 5.6vw;
}
@media (min-width: 1920px) {
  #header {
    height: 108px;
    padding: 0 42px;
  }
}
#header {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
#header.has-shadow {
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
}
#header .logo {
  padding-top: 1.0666666667vw;
}
@media (min-width: 1920px) {
  #header .logo {
    padding-top: 8px;
  }
}
#header .logo img {
  height: 7.4666666667vw;
}
@media (min-width: 1920px) {
  #header .logo img {
    height: 56px;
  }
}

.header-nav-button {
  display: flex;
  cursor: pointer;
}
.header-nav-button img {
  height: 4.2666666667vw;
}
@media (min-width: 1920px) {
  .header-nav-button img {
    height: 32px;
  }
}

/* Drawer Menu */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -80%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: #fff;
  z-index: 50;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}
.drawer-menu.active {
  left: 0;
}

.drawer-content {
  padding: 14.4vw 0vw 5.3333333333vw;
}
@media (min-width: 1920px) {
  .drawer-content {
    padding: 108px 0 40px;
  }
}

.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-nav > li:hover {
  background-color: #f5f5f5;
}
.drawer-nav > li > a {
  display: block;
  padding: 4vw 0vw;
  margin: 0vw 5.6vw;
  font-size: 3.7333333333vw;
}
@media (min-width: 1920px) {
  .drawer-nav > li > a {
    padding: 30px 0;
    margin: 0 42px;
    font-size: 28px;
  }
}
.drawer-nav > li > a {
  border-bottom: 1px solid #e5e5e5;
  color: #050505;
  transition: background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.drawer-nav-item-parent:hover {
  background-color: #f5f5f5;
}
.drawer-nav-item-parent .drawer-nav-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  -webkit-tap-highlight-color: transparent;
  padding: 4vw 0vw;
  margin: 0vw 5.6vw;
  font-size: 3.7333333333vw;
}
@media (min-width: 1920px) {
  .drawer-nav-item-parent .drawer-nav-item-header {
    padding: 30px 0;
    margin: 0 42px;
    font-size: 28px;
  }
}
.drawer-nav-item-parent .drawer-nav-item-header {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.drawer-nav-item-parent .drawer-nav-arrow {
  display: inline-block;
  width: 1.6vw;
  height: 1.6vw;
}
@media (min-width: 1920px) {
  .drawer-nav-item-parent .drawer-nav-arrow {
    width: 12px;
    height: 12px;
  }
}
.drawer-nav-item-parent .drawer-nav-arrow {
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: rotate(45deg);
  transform-origin: top center;
  transition: transform 0.3s ease;
}

.drawer-nav-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.3s ease;
}
.drawer-nav-item-parent.active .drawer-nav-submenu {
  max-height: 2000px;
}

.drawer-nav-submenu-category {
  padding: 3.3333333333vw 0vw 2.6666666667vw;
  margin: 0vw 5.6vw;
}
@media (min-width: 1920px) {
  .drawer-nav-submenu-category {
    padding: 25px 0 20px;
    margin: 0 42px;
  }
}
.drawer-nav-submenu-category {
  border-bottom: 1px solid #e5e5e5;
}
.drawer-nav-submenu-category > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav-submenu-title {
  font-size: 3.4666666667vw;
  margin-bottom: 1.6vw;
}
@media (min-width: 1920px) {
  .drawer-nav-submenu-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
.drawer-nav-submenu-title {
  color: #0082ff;
  line-height: 1.4;
}

.drawer-nav-submenu-title-en {
  font-size: 2.6666666667vw;
}
@media (min-width: 1920px) {
  .drawer-nav-submenu-title-en {
    font-size: 20px;
  }
}
.drawer-nav-submenu-title-en {
  color: #999;
  display: inline-block;
  margin-left: 4px;
}

.drawer-nav-submenu-category > ul > li {
  margin-bottom: 1.6vw;
}
@media (min-width: 1920px) {
  .drawer-nav-submenu-category > ul > li {
    margin-bottom: 12px;
  }
}
.drawer-nav-submenu-category > ul > li:last-child {
  margin-bottom: 0;
}
.drawer-nav-submenu-category > ul > li a {
  font-size: 3.4666666667vw;
}
@media (min-width: 1920px) {
  .drawer-nav-submenu-category > ul > li a {
    font-size: 26px;
  }
}
.drawer-nav-submenu-category > ul > li a {
  color: #484848;
  display: block;
  line-height: 1.5;
  position: relative;
}
.drawer-nav-submenu-category > ul > li a:hover {
  color: #007aff;
}

.footer {
  padding: 0vw 7.4666666667vw;
}
@media (min-width: 1920px) {
  .footer {
    padding: 0 56px;
  }
}
.footer {
  background-color: #0c1d36;
}
.footer .footer-nav {
  padding: 4vw 0vw;
}
@media (min-width: 1920px) {
  .footer .footer-nav {
    padding: 30px 0;
  }
}
.footer .footer-nav {
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
}
.footer .footer-nav .footer-nav-item {
  font-size: 2.6666666667vw;
}
@media (min-width: 1920px) {
  .footer .footer-nav .footer-nav-item {
    font-size: 20px;
  }
}
.footer .footer-nav .footer-nav-item {
  text-align: center;
}
.footer .footer-nav .footer-nav-item a {
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.footer .footer-nav .footer-nav-item a:hover, .footer .footer-nav .footer-nav-item a:focus {
  text-decoration: underline;
}
.footer .footer-nav .footer-nav-separator {
  width: 0.1333333333vw;
  margin: 0vw 1.3333333333vw;
}
@media (min-width: 1920px) {
  .footer .footer-nav .footer-nav-separator {
    width: 1px;
    margin: 0 10px;
  }
}
.footer .footer-nav .footer-nav-separator {
  background-color: #eee;
}
.footer .footer-contact {
  padding: 6.6666666667vw 0vw;
  gap: 4.6666666667vw;
  font-size: 2.6666666667vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact {
    padding: 50px 0;
    gap: 35px;
    font-size: 20px;
  }
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.footer .footer-contact .contact-section {
  gap: 1.6vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-section {
    gap: 12px;
  }
}
.footer .footer-contact .contact-section {
  display: flex;
  flex-direction: column;
}
.footer .footer-contact .contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer .footer-contact .contact-item .contact-icon-tel {
  width: 3.2vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-item .contact-icon-tel {
    width: 24px;
  }
}
.footer .footer-contact .contact-item .contact-icon-weixin {
  width: 5.0666666667vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-item .contact-icon-weixin {
    width: 38px;
  }
}
.footer .footer-contact .contact-item .contact-icon-mark {
  width: 3.2vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-item .contact-icon-mark {
    width: 24px;
  }
}
.footer .footer-contact .contact-item .contact-label {
  font-size: 2.6666666667vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-item .contact-label {
    font-size: 20px;
  }
}
.footer .footer-contact .contact-item .contact-label {
  line-height: 1;
}
.footer .footer-contact .contact-phone {
  font-size: 3.3333333333vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-phone {
    font-size: 25px;
  }
}
.footer .footer-contact .contact-phone {
  line-height: 1;
}
.footer .footer-contact .contact-qrcode img {
  width: 18.4vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-qrcode img {
    width: 138px;
  }
}
.footer .footer-contact .contact-address {
  font-size: 3.2vw;
}
@media (min-width: 1920px) {
  .footer .footer-contact .contact-address {
    font-size: 24px;
  }
}
.footer .footer-contact .contact-address {
  line-height: 1.6;
}

.copyright {
  font-size: 2.4vw;
  padding: 2vw 0vw;
}
@media (min-width: 1920px) {
  .copyright {
    font-size: 18px;
    padding: 15px 0;
  }
}
.copyright {
  margin-top: -1px;
  color: #c9c9c9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  background-color: #0c1d36;
}
.copyright a {
  color: #c9c9c9;
}
.copyright a:hover, .copyright a:focus {
  text-decoration: underline;
}
.copyright .icon-wa-beian {
  vertical-align: middle;
}

/* Contact Form */
#contact-form {
  background-image: url("../../img/mobile/common/contactForm/bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 87.7333333333vw;
  padding: 22.9333333333vw 3.3333333333vw 0vw;
}
@media (min-width: 1920px) {
  #contact-form {
    height: 658px;
    padding: 172px 25px 0;
  }
}
#contact-form .contact-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#contact-form .contact-form-content {
  width: 100%;
  background-color: #fff;
  border-radius: 1.6vw;
  padding: 5.3333333333vw 4.5333333333vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-content {
    border-radius: 12px;
    padding: 40px 34px;
  }
}
#contact-form .contact-form-row {
  display: flex;
  align-items: center;
  background-color: #f5f8ff;
  border-radius: 6px;
  padding: 2.9333333333vw 1.3333333333vw;
  margin-bottom: 4.8vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-row {
    padding: 22px 10px;
    margin-bottom: 36px;
  }
}
#contact-form .contact-form-row:last-child {
  margin-bottom: 0;
}
#contact-form .contact-form-required {
  color: #2196f3;
  font-size: 3.7333333333vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-required {
    font-size: 28px;
  }
}
#contact-form .contact-form-required {
  margin-right: 1.0666666667vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-required {
    margin-right: 8px;
  }
}
#contact-form .contact-form-required {
  line-height: 1;
}
#contact-form .contact-form-label {
  color: #050505;
  font-size: 3.7333333333vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-label {
    font-size: 28px;
  }
}
#contact-form .contact-form-label {
  min-width: 18.6666666667vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-label {
    min-width: 140px;
  }
}
#contact-form .contact-form-label {
  line-height: 1;
}
#contact-form .contact-form-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 3.3333333333vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-input {
    font-size: 25px;
  }
}
#contact-form .contact-form-input {
  color: #050505;
}
#contact-form .contact-form-input::-moz-placeholder {
  color: #999;
}
#contact-form .contact-form-input::placeholder {
  color: #999;
}
#contact-form .contact-form-submit {
  margin-top: 9.3333333333vw;
  padding: 2.9333333333vw 12vw;
  font-size: 4vw;
  border-radius: 6.6666666667vw;
}
@media (min-width: 1920px) {
  #contact-form .contact-form-submit {
    margin-top: 70px;
    padding: 22px 90px;
    font-size: 30px;
    border-radius: 50px;
  }
}
#contact-form .contact-form-submit {
  background-color: #2196f3;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.2s ease;
}
#contact-form .contact-form-submit:hover, #contact-form .contact-form-submit:active {
  background-color: #1976d2;
}