/* -----------------------------------------------------------
  Common
----------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
button,
.btn {
  cursor: pointer;
  transition: all 0.4s ease;
}

.page-wrapper {
  overflow: hidden;
  padding-top: 121px;
}
@media (max-width: 991px) {
  .page-wrapper {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .page-wrapper {
    padding-top: 12.9411764706vw;
  }
}

.common-container {
  width: 100%;
  max-width: 1115px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .common-container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.over {
  transition: all 0.4s ease;
}
.over:hover {
  opacity: 0.7;
}

.text-line-through {
  text-decoration: line-through !important;
}

.w-full {
  width: 100% !important;
}

.font-helvetica {
  font-family: Helvetica, sans-serif !important;
}

.text-primary {
  color: #ff0000 !important;
}

.text-hover-primary {
  transition: all 0.4s ease;
}
.text-hover-primary:hover {
  color: #ff0000 !important;
}

.btn-go-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 130px;
  z-index: 1020;
  transform: translate(0, 200px);
  width: auto;
  height: auto;
  font-weight: bold;
  background: none;
  border: 0;
  outline: 0;
  box-shadow: none;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-go-top {
    right: 2vw;
    bottom: 0;
    transform: translate(0, 100%);
    font-size: 3.1058823529vw;
  }
}
.btn-go-top.fixed {
  transform: translate(0, 0) !important;
}
@media (max-width: 767px) {
  .btn-go-top.fixed {
    bottom: 36vw;
    transform: translate(0, 0);
  }
}
.btn-go-top .ic {
  width: 45px;
  height: 45px;
  background: transparent;
  border-top: solid 3px #000;
  border-left: solid 3px #000;
  transform: rotate(45deg);
  margin-bottom: -25px;
}
@media (max-width: 767px) {
  .btn-go-top .ic {
    width: 6.4705882353vw;
    height: 6.4705882353vw;
    border-top-width: 0.59vw;
    border-left-width: 0.59vw;
    margin-bottom: -7.7647058824vw;
  }
}
.btn-go-top .txt {
  position: relative;
  z-index: 2;
  font-size: 30px;
  color: #000;
}
@media (max-width: 767px) {
  .btn-go-top .txt {
    top: 4vw;
    font-size: 4.2705882353vw;
  }
}

/*
 * simplyScroll 2 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 *
 * Copyright (c) 2009-2012 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT and GPL licenses.
 *
 * Last revised: 31/01/2012
 *
 */
/* Default/Master classes

Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded

<div class="your-custom-class simply-scroll-container">
	<div class="simply-scroll-btn simply-scroll-btn-left"></div>
	<div class="simply-scroll-btn simply-scroll-btn-right"></div>
	<div class="simply-scroll-clip">
		<ul class="simply-scroll-list">
			<li>...</li>
			...
		</ul>
	</div>
</div>


*/
.simply-scroll-container {
  /* Container DIV - automatically generated */
  position: relative;
}

.simply-scroll-clip {
  /* Clip DIV - automatically generated */
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  /* UL/OL/DIV - the element that simplyScroll is inited on */
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simply-scroll-list li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.simply-scroll-list li img {
  border: none;
  display: block;
}

.simply-scroll-btn {
  position: absolute;
  background-image: url(buttons.png);
  width: 42px;
  height: 44px;
  z-index: 3;
  cursor: pointer;
}

.simply-scroll-btn-left {
  left: 6px;
  bottom: 6px;
  background-position: 0 -44px;
}

.simply-scroll-btn-left.disabled {
  background-position: 0 0 !important;
}

.simply-scroll-btn-left:hover,
.simply-scroll-btn-left:focus {
  background-position: 0 -88px;
}

.simply-scroll-btn-right {
  right: 6px;
  bottom: 6px;
  background-position: -84px -44px;
}

.simply-scroll-btn-right.disabled {
  background-position: -84px 0 !important;
}

.simply-scroll-btn-right:hover,
.simply-scroll-btn-right:focus {
  background-position: -84px -88px;
}

.simply-scroll-btn-up {
  right: 6px;
  top: 6px;
  background-position: -126px -44px;
}

.simply-scroll-btn-up.disabled {
  background-position: -126px 0 !important;
}

.simply-scroll-btn-up:hover,
.simply-scroll-btn-up:focus {
  background-position: -126px -88px;
}

.simply-scroll-btn-down {
  right: 6px;
  bottom: 6px;
  background-position: -42px -44px;
}

.simply-scroll-btn-down.disabled {
  background-position: -42px 0 !important;
}

.simply-scroll-btn-down:hover,
.simply-scroll-btn-down:focus {
  background-position: -42px -88px;
}

.simply-scroll-btn-pause {
  right: 6px;
  bottom: 6px;
  background-position: -168px -44px;
}

.simply-scroll-btn-pause:hover,
.simply-scroll-btn-pause:focus {
  background-position: -168px -88px;
}

.simply-scroll-btn-pause.active {
  background-position: -84px -44px;
}

.simply-scroll-btn-pause.active:hover,
.simply-scroll-btn-pause.active:focus {
  background-position: -84px -88px;
}

/* Custom class modifications - override classees

.simply-scroll is default

*/
.simply-scroll {
  /* Customisable base class for style override DIV */
  width: 576px;
  height: 200px;
  margin-bottom: 1em;
}

.simply-scroll .simply-scroll-clip {
  width: 576px;
  height: 200px;
}

.simply-scroll .simply-scroll-list li {
  float: left;
  width: 290px;
  height: 200px;
}

/* Vertical scroller example */
.vert {
  /* wider than clip to position buttons to side */
  width: 340px;
  height: 400px;
  margin-bottom: 1.5em;
}

.vert .simply-scroll-clip {
  width: 290px;
  height: 400px;
}

.vert .simply-scroll-list li {
  width: 290px;
  height: 200px;
}

.vert .simply-scroll-btn-up {
  /* modified btn pos */
  right: 0;
  top: 0;
}

.vert .simply-scroll-btn-down {
  /* modified btn pos */
  right: 0;
  top: 52px;
}

/* NOTE left-right classes wouldn't be needed on vertical scroller */
.heading-md {
  font-weight: 700;
  font-size: 54px;
  color: #000;
  margin-bottom: 31px;
}
@media (max-width: 1199px) {
  .heading-md {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .heading-md {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .heading-md {
    font-size: 8.4117647059vw;
    margin-bottom: 2vw;
  }
}

/* -----------------------------------------------------------
  Button
----------------------------------------------------------- */
.btn-red {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  vertical-align: middle;
  position: relative;
  height: 82px;
  font-weight: 400;
  font-size: 26px;
  color: #fff;
  background: #ff0000;
  border: 0;
  text-decoration: none;
  outline: 0;
  border-radius: 10px;
  box-shadow: none;
  text-align: left;
  padding: 0 20px 0 87px;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .btn-red {
    height: 15.2705882353vw;
    font-size: 4.7882352941vw;
    border-radius: 1.2941176471vw;
    padding: 0 2.5882352941vw 0 16.941176vw;
  }
}
.btn-red:hover {
  color: #fff;
  background: rgb(229.5, 0, 0);
}
.btn-red .sm {
  display: block;
  width: 100%;
  font-size: 14px;
}
@media (max-width: 767px) {
  .btn-red .sm {
    font-size: 1.8117647059vw;
  }
}
.btn-red .ic-arrow {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translate(0, -50%);
  width: 60px;
  height: 88%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .btn-red .ic-arrow {
    left: 1.9411764706vw;
    width: 11vw;
  }
}
.btn-red .ic-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: right center;
  transform: rotate(36deg);
}
.btn-red .ic-arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: right center;
  transform: rotate(-36deg);
}

.btn-center-big {
  display: flex;
  max-width: 844px;
  margin: auto;
}
@media (max-width: 767px) {
  .btn-center-big {
    max-width: 100%;
  }
}

.con-breadcrumbs .box-breadcrumbs {
  max-width: 1210px;
  padding: 8.5px 20px;
  margin: auto;
}
@media (max-width: 767px) {
  .con-breadcrumbs .box-breadcrumbs {
    padding: 1.26vw 4vw 0.68vw;
  }
}
.con-breadcrumbs ul {
  display: inline-flex;
  align-items: center;
}
.con-breadcrumbs ul li,
.con-breadcrumbs ul li a {
  font-weight: 400;
  font-size: 16px;
  color: #ff0000;
  text-decoration: none;
}
@media (max-width: 767px) {
  .con-breadcrumbs ul li,
  .con-breadcrumbs ul li a {
    font-size: 2.0705882353vw;
  }
}
.con-breadcrumbs ul li .divider {
  margin: 0 9px;
}
@media (max-width: 767px) {
  .con-breadcrumbs ul li .divider {
    margin: 0 1.1647058824vw;
  }
}

.slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  overflow: hidden;
  z-index: 2;
  width: 62px;
  height: 62px;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
@media (max-width: 1199px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .slick-arrow {
    width: 8.5vw;
    height: 8.5vw;
  }
}
.slick-arrow:hover {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.7) !important;
}
.slick-arrow svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}
@media (max-width: 1199px) {
  .slick-arrow svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .slick-arrow svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .slick-arrow svg {
    width: 8.5vw;
    height: 8.5vw;
  }
}

.slick-prev {
  left: 24px;
}
@media (max-width: 767px) {
  .slick-prev {
    left: 5vw;
  }
}

.slick-next {
  right: 24px;
}
@media (max-width: 767px) {
  .slick-next {
    right: 5vw;
  }
}

.slick-dots {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 14px;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .slick-dots {
    gap: 0 2.1vw;
    margin-top: 4.8vw;
  }
}
.slick-dots li.slick-active button {
  background: #ff0000;
}
.slick-dots li button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  outline: 0;
  background: #cbcbcb;
  text-indent: -9990px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
@media (max-width: 991px) {
  .slick-dots li button {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .slick-dots li button {
    width: 2.2vw;
    height: 2.2vw;
  }
}

/* -----------------------------------------------------------
  .main-header
----------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1030;
  transition: all 0.4s ease;
}
.main-header.fixed {
  box-shadow: 0 0 0.7764705882vw 0.1294117647vw rgba(0, 0, 0, 0.1);
}
.main-header.fixed .box-nav {
  padding-top: 0;
}
.main-header .box-nav {
  position: relative;
  transition: all 0.4s ease;
  padding-top: 21px;
}
@media (max-width: 991px) {
  .main-header .box-nav {
    padding-top: 0;
  }
}
.main-header .box-nav .common-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1245px;
  height: 100px;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .main-header .box-nav .common-container {
    height: 12.9411764706vw;
    padding-left: 6.5vw;
    padding-right: 4.8vw;
  }
}
.main-header .box-nav .col-logo {
  display: flex;
  align-items: center;
}
.main-header .box-nav .col-logo .logo img {
  width: 379px;
}
@media (max-width: 1199px) {
  .main-header .box-nav .col-logo .logo img {
    width: 359px;
  }
}
@media (max-width: 767px) {
  .main-header .box-nav .col-logo .logo img {
    width: 44.5vw;
  }
}
.main-header .box-nav .main-nav .nav {
  display: inline-flex;
  justify-content: center;
  gap: 10px 51px;
  list-style: none;
  padding: 0;
  margin: auto;
}
@media (max-width: 1199px) {
  .main-header .box-nav .main-nav .nav {
    gap: 10px 40px;
  }
}
@media (max-width: 767px) {
  .main-header .box-nav .main-nav .nav {
    gap: 5vw 7vw;
  }
}
.main-header .box-nav .main-nav .nav li a {
  font-weight: 500;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
@media (max-width: 767px) {
  .main-header .box-nav .main-nav .nav li a {
    font-size: 3.2352941176vw;
  }
}
.main-header .box-nav .main-nav .nav li a:hover {
  color: #ff0000;
}
.main-header .btn-menu {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 51px;
  height: 30px;
  color: #ff0000;
  text-align: center;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .main-header .btn-menu {
    width: 6vw;
    height: 5.5vw;
  }
}
.main-header .btn-menu svg {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------
  off canvas menu
----------------------------------------------------------- */
.has-offcanvas .my-offcanvas .box-offcanvas-wrapper {
  opacity: 1;
  visibility: visible;
  width: 100%;
  max-width: 654px;
}
@media (max-width: 767px) {
  .has-offcanvas .my-offcanvas .box-offcanvas-wrapper {
    max-width: 89vw;
  }
}
.has-offcanvas.offcanvas-shown .my-offcanvas .box-offcanvas-wrapper {
  transform: translate(0, 0);
}
.has-offcanvas.offcanvas-shown .my-offcanvas .box-offcanvas-wrapper:after {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  transition: width 0.1s 0.2s, height 0.1s 0.2s;
}

.my-offcanvas {
  display: none;
}
@media (max-width: 991px) {
  .my-offcanvas {
    display: block;
  }
}
.my-offcanvas .box-offcanvas-wrapper {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  transform: translate(100%, 0);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 0;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1050;
  transition: transform 0.4s ease;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .my-offcanvas .box-offcanvas-wrapper {
    display: block;
  }
}
.my-offcanvas .box-offcanvas-wrapper:after {
  content: "";
  visibility: visible;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.my-offcanvas .btn-close-offcanvas {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 35px;
  top: 35px;
  line-height: 1;
  color: #ff0000;
  background: none transparent;
  border: 0 none;
  outline: 0;
  text-align: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1048;
}
@media (max-width: 767px) {
  .my-offcanvas .btn-close-offcanvas {
    right: 4.2705882353vw;
    top: 4.6588235294vw;
  }
}
.my-offcanvas .btn-close-offcanvas .ic {
  display: block;
  position: relative;
  width: 35px;
  height: 35px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .my-offcanvas .btn-close-offcanvas .ic {
    width: 7.8941176471vw;
    height: 7.8941176471vw;
  }
}
.my-offcanvas .btn-close-offcanvas .ic:before, .my-offcanvas .btn-close-offcanvas .ic:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 48px;
  width: 2px;
  background: #ff0000;
  transform-origin: center center;
}
@media (max-width: 767px) {
  .my-offcanvas .btn-close-offcanvas .ic:before, .my-offcanvas .btn-close-offcanvas .ic:after {
    height: 8.6vw;
    width: 0.3vw;
  }
}
.my-offcanvas .btn-close-offcanvas .ic:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.my-offcanvas .btn-close-offcanvas .ic:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.my-offcanvas .oc-body {
  padding: 124px 0 60px 55px;
}
@media (max-width: 767px) {
  .my-offcanvas .oc-body {
    padding: 23vw 0 10vw 9.5vw;
  }
}
.my-offcanvas .box-btns {
  padding-right: 55px;
  margin-bottom: 82px;
}
@media (max-width: 767px) {
  .my-offcanvas .box-btns {
    padding-right: 9.5vw;
    margin-bottom: 15vw;
  }
}
@media (max-width: 767px) {
  .my-offcanvas .box-btns .button {
    height: 11.8vw;
    font-size: 3.7529411765vw;
    padding-left: 13vw;
  }
}
@media (max-width: 767px) {
  .my-offcanvas .box-btns .button .ic-arrow {
    left: 1.941176vw;
    width: 8vw;
  }
}
.my-offcanvas .main-nav ul.nav {
  border-top: 1px solid rgba(255, 0, 0, 0.7);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .my-offcanvas .main-nav ul.nav {
    border-top-width: 0.3vw;
  }
}
.my-offcanvas .main-nav ul.nav a {
  cursor: pointer;
}
.my-offcanvas .main-nav ul.nav > li {
  width: 100%;
  background: none transparent;
  border-bottom: 1px solid rgba(255, 0, 0, 0.7);
}
@media (max-width: 767px) {
  .my-offcanvas .main-nav ul.nav > li {
    border-bottom-width: 0.3vw;
  }
}
.my-offcanvas .main-nav ul.nav > li > a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  position: relative;
  background: transparent;
  border: 0 none;
  text-transform: capitalize;
  text-decoration: none;
  outline: 0;
  padding: 42px 0;
}
@media (max-width: 767px) {
  .my-offcanvas .main-nav ul.nav > li > a {
    padding: 7.5vw 0;
  }
}
.my-offcanvas .main-nav ul.nav > li > a:hover .txt, .my-offcanvas .main-nav ul.nav > li > a.active .txt {
  color: #ff0000;
}
.my-offcanvas .main-nav ul.nav > li > a .txt {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  padding-right: 10px;
  transition: color 0.4s ease;
}
@media (max-width: 767px) {
  .my-offcanvas .main-nav ul.nav > li > a .txt {
    font-size: 4.5294117647vw;
    padding-right: 5vw;
  }
}
.my-offcanvas .main-nav ul.nav > li > .sub-menu {
  display: none;
  border-top: 1px solid #ff0000;
}
.my-offcanvas .main-nav ul.nav > li.has-sub-menu.show-sub-menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-bottom: 0;
  padding-bottom: 40px;
  z-index: 10;
}
@media (max-width: 767px) {
  .my-offcanvas .main-nav ul.nav > li.has-sub-menu.show-sub-menu {
    padding-bottom: 5.1764705882vw;
  }
}
.my-offcanvas .main-nav ul.nav > li.has-sub-menu.show-sub-menu > a .txt {
  text-align: center;
  padding-left: 10px;
  padding-right: 0;
}
@media (max-width: 767px) {
  .my-offcanvas .main-nav ul.nav > li.has-sub-menu.show-sub-menu > a .txt {
    padding-left: 1.2941176471vw;
  }
}
.my-offcanvas .main-nav ul.nav > li.has-sub-menu.show-sub-menu > a .ic-arrow.ic-left {
  display: block;
}
.my-offcanvas .main-nav ul.nav > li.has-sub-menu.show-sub-menu > a .ic-arrow.ic-right {
  display: none;
}
.my-offcanvas .main-nav ul.nav > li.has-sub-menu.show-sub-menu > .sub-menu {
  display: block;
}

.my-offcanvas-overlay {
  visibility: hidden;
  opacity: 0;
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  left: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  z-index: -9999;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}
.has-offcanvas .my-offcanvas-overlay {
  visibility: visible;
  opacity: 1;
  z-index: 1040;
}

/* -----------------------------------------------------------
  .main-footer
----------------------------------------------------------- */
.main-footer {
  background: #000;
  padding: 80px 0 33px;
}
@media (max-width: 767px) {
  .main-footer {
    padding: 14vw 0 4.5vw;
  }
}
.main-footer .box-logo {
  text-align: center;
  margin-bottom: 51px;
}
@media (max-width: 767px) {
  .main-footer .box-logo {
    margin-bottom: 11.5vw;
  }
}
.main-footer .box-logo .logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 40px 0;
}
@media (max-width: 767px) {
  .main-footer .box-logo .logo {
    gap: 6vw 0;
  }
}
.main-footer .box-logo .logo-footer {
  position: relative;
  left: 10px;
  width: 352px;
}
@media (max-width: 767px) {
  .main-footer .box-logo .logo-footer {
    left: 0;
    width: 51.411765vw;
  }
}
.main-footer .box-logo .logo-white {
  width: 322px;
}
@media (max-width: 767px) {
  .main-footer .box-logo .logo-white {
    width: 76vw;
  }
}
.main-footer .box-nav {
  text-align: center;
  margin-bottom: 136px;
}
@media (max-width: 767px) {
  .main-footer .box-nav {
    margin-bottom: 16vw;
  }
}
.main-footer .box-nav .nav {
  display: inline-flex;
  justify-content: center;
  gap: 10px 82px;
  list-style: none;
  padding: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .main-footer .box-nav .nav {
    flex-direction: column;
    gap: 9.2vw 0;
  }
}
@media (max-width: 767px) {
  .main-footer .box-nav .nav li {
    text-align: left;
  }
}
.main-footer .box-nav .nav li a {
  font-weight: 500;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .main-footer .box-nav .nav li a {
    font-size: 4.2705882353vw;
  }
}
.main-footer .box-nav .nav li a:hover {
  text-decoration: underline;
}
.main-footer .txt-copyright {
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .main-footer .txt-copyright {
    font-size: 2.0705882353vw;
    color: #fff;
    letter-spacing: 0.08em;
  }
}