@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

i, em {
  font-style: normal;
}

@font-face {
  font-family: "vani_reg";
  font-display: swap;
  src: url("../fonts/vanitas_reg.woff2") format("woff2");
}
@font-face {
  font-family: "vani_bold";
  font-display: swap;
  src: url("../fonts/vanitas_bold.woff2") format("woff2");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #111;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: left;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media all and (max-width: 750px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media all and (max-width: 750px) {
  .spbr {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 100%;
  padding: 0 max(4rem, 16.6666666667vw);
  margin: 0 auto;
}
@media all and (max-width: 1600px) {
  .inner {
    padding: 0 max(4rem, 8.3333333333vw);
  }
}
@media all and (max-width: 1280px) {
  .inner {
    padding: 0 max(4rem, 4.1666666667vw);
  }
}
@media all and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.inner2 {
  width: 100%;
  padding: 0 max(4rem, 8.3333333333vw);
  margin: 0 auto;
}
@media all and (max-width: 1600px) {
  .inner2 {
    padding: 0 max(4rem, 4.1666666667vw);
  }
}
@media all and (max-width: 767px) {
  .inner2 {
    padding: 0;
  }
}

.inner3 {
  width: 100%;
  padding: 0 0 0 max(4rem, 8.3333333333vw);
  margin: 0 auto;
}
@media all and (max-width: 1600px) {
  .inner3 {
    padding: 0 0 0 max(4rem, 4.1666666667vw);
  }
}
@media all and (max-width: 767px) {
  .inner3 {
    padding: 0;
  }
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  display: block;
  width: 100%;
  padding: 30px 30px 0 30px;
  transition: all 0.3s ease;
}
@media all and (max-width: 1280px) {
  .smenu {
    padding: 20px 20px 0 20px;
  }
}
@media all and (max-width: 767px) {
  .smenu {
    padding: 10px;
  }
}

.logo {
  position: relative;
  z-index: 110;
}
.logo img {
  height: 50px;
  transition: all 0.3s ease;
}
.logo .l2 {
  display: none;
}
@media all and (max-width: 1280px) {
  .logo img {
    height: 40px;
  }
}
@media all and (max-width: 767px) {
  .logo img {
    height: 30px;
    width: auto;
  }
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 767px) {
  #nav-drawer {
    align-items: center;
  }
}

#nav-open {
  display: none;
  width: 55px;
  height: 55px;
  vertical-align: middle;
  padding: 46px 31.5px;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 50px;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 35px; /*長さ*/
  border-radius: 10px;
  background: white;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}
@media all and (max-width: 1280px) {
  #nav-open {
    display: inline-block;
    padding: 17px 10.5px;
    margin-left: 8px;
    position: absolute;
    right: 0;
  }
}
@media all and (max-width: 767px) {
  #nav-open {
    margin-left: 0;
    width: 45px;
    height: 45px;
    padding: 13px 10.5px;
    right: -5px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    width: 25px; /*長さ*/
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
}

#nav-close {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  top: 0;
  right: 0;
  z-index: 9999; /*最前面に*/
  width: auto; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: none; /*最大幅（調整してください）*/
  height: 100%;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
#nav-content a {
  text-decoration: none;
  font-size: 1.2rem;
  margin-right: 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0;
  display: block;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 1;
}
#nav-content a i {
  font-size: 1.6rem;
  font-family: "Raleway", sans-serif;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
#nav-content a:hover {
  color: #999;
}
#nav-content .contact a {
  display: block;
  background: #000;
  width: 220px;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 23px 0;
  box-sizing: border-box;
}
#nav-content .contact a i {
  display: inline-block;
  font-weight: 500;
  background: url("../images/mail_ic.png") center left no-repeat;
  background-size: 20px auto;
  padding-left: 35px;
  box-sizing: border-box;
  margin-bottom: 0;
}
#nav-content .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
}
@media all and (max-width: 1280px) {
  #nav-content {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 100px;
    background: white;
  }
  #nav-content .in {
    display: block;
  }
  #nav-content p {
    width: 90%;
    margin: 0 auto;
  }
  #nav-content a {
    display: block;
    padding: 14px 0;
    margin-right: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.4;
    text-shadow: none;
  }
  #nav-content .contact a {
    width: 400px !important;
    margin: 40px auto 0 auto;
    color: white;
  }
}
@media all and (max-width: 767px) {
  #nav-content a {
    padding: 10px 0;
  }
  #nav-content a i {
    margin-bottom: 5px;
  }
  #nav-content .contact {
    margin-top: 20px;
  }
  #nav-content .contact a {
    width: 100% !important;
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(40deg);
  top: 26px;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 24px;
  }
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(100deg);
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}

.nav-unshown {
  display: none;
}

.under_nav .logo .l1 {
  display: none;
}
.under_nav .logo .l2 {
  display: block;
}
.under_nav #nav-content a {
  line-height: 1.4;
  color: #000;
  text-shadow: unset;
}
.under_nav #nav-content .contact a {
  color: white;
}
.under_nav #nav-open span, .under_nav #nav-open span:before, .under_nav #nav-open span:after {
  background: #000;
}
.under_nav #nav-drawer {
  display: grid;
  grid-template-columns: 246px 1fr;
}

.act, .opens {
  padding: 20px;
}
.act .logo img, .opens .logo img {
  height: 40px;
}
.act .logo .l1, .opens .logo .l1 {
  display: none;
}
.act .logo .l2, .opens .logo .l2 {
  display: block;
}
.act #nav-content a, .opens #nav-content a {
  color: #000;
  text-shadow: unset;
}
.act #nav-content .contact a, .opens #nav-content .contact a {
  width: 200px;
  color: white;
}
.act #nav-open span, .act #nav-open span:before, .act #nav-open span:after, .opens #nav-open span, .opens #nav-open span:before, .opens #nav-open span:after {
  background: #000;
}
@media all and (max-width: 767px) {
  .act, .opens {
    padding: 10px;
  }
  .act .logo img, .opens .logo img {
    height: 30px;
  }
  .act #nav-content a, .opens #nav-content a {
    line-height: 1.4;
    color: #000;
    text-shadow: unset;
  }
  .act #nav-content .contact a, .opens #nav-content .contact a {
    width: unset;
    color: white;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
}
footer .ft1, footer .ft2 {
  position: relative;
  z-index: 2;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.footer {
  margin-top: 100px;
  background: #000;
  text-align: center;
}
.footer .ft_logo {
  display: block;
  width: 190px;
  margin: 0 auto;
  padding: 90px 0 70px 0;
}
.footer .ft_logo img {
  width: 100%;
  height: auto;
}
.footer .menu1 {
  display: inline-block;
}
.footer .menu1 .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 40px;
}
.footer .menu1 a {
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}
.footer .menu1 a:hover {
  opacity: 0.7;
}
.footer .menu2 {
  display: inline-block;
  max-width: 600px;
  margin: 56px 0;
}
.footer .menu2 .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 40px;
}
.footer .menu2 a {
  transition: all 0.3s ease;
}
.footer .menu2 a:hover {
  opacity: 0.8;
}
.footer .sns {
  display: inline-block;
  max-width: 260px;
  padding-bottom: 90px;
}
.footer .sns .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}
.footer .sns a {
  transition: all 0.3s ease;
}
.footer .sns a:hover {
  opacity: 0.8;
}
.footer .copyright {
  border-top: 1px solid #3C3C3C;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
  padding: 40px 0;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  .footer {
    margin-top: 80px;
  }
  .footer .ft_logo {
    width: 135px;
    padding: 45px 0 35px 0;
  }
  .footer .menu1 {
    width: 70%;
  }
  .footer .menu1 .in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .footer .menu1 a {
    text-align: left;
    padding: 10px 0;
    font-size: 1.2rem;
  }
  .footer .menu2 {
    margin: 28px 0;
  }
  .footer .menu2 .in {
    display: block;
    gap: 0 20px;
  }
  .footer .menu2 a {
    margin-bottom: 20px;
    display: block;
    height: auto;
    width: 240px;
  }
  .footer .menu2 a:last-of-type {
    margin-bottom: 0;
  }
  .footer .sns {
    max-width: 130px;
    padding-bottom: 45px;
  }
  .footer .sns .in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: center;
    gap: 0 10px;
  }
  .footer .copyright {
    font-size: 1.2rem;
    padding: 20px 0;
  }
}

.btn_cm {
  display: block;
  width: 210px;
  margin: 0 auto;
  background: #000;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 17px 0;
  box-sizing: border-box;
  text-align: center;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease;
}
.btn_cm:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transform: scale(0.3, 1);
  transition: all 0.3s ease;
}
.btn_cm:hover:before {
  transform: scale(1, 1);
}
@media all and (max-width: 767px) {
  .btn_cm {
    width: 100%;
  }
}

.btn_pic {
  display: block;
  width: 210px;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #C49393;
}
.btn_pic:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0.3, 1);
  transition: all 0.3s ease;
}
.btn_pic img {
  display: inline-block;
  height: 48px;
  width: auto;
}
.btn_pic:hover:before {
  transform: scale(1, 1);
}
@media all and (max-width: 767px) {
  .btn_pic {
    width: 100%;
  }
}

.btn_cm.contact_btn {
  width: 400px;
  padding: 22px 0;
  margin: 56px auto 0 auto;
}
@media all and (max-width: 767px) {
  .btn_cm.contact_btn {
    width: calc(100% - 40px);
    margin: 40px auto 0 auto;
    padding: 17px 0;
  }
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  padding: unset;
  width: 36px;
  height: auto;
  background: none;
}
.swiper-button-next:before, .swiper-button-next:after, .swiper-button-prev:before, .swiper-button-prev:after {
  content: none;
}

.access {
  margin-top: 140px;
}
.access .maps {
  margin-top: 56px;
  position: relative;
  width: 100%;
  padding-top: 31.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}
.access .maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access .c2 {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.access .c2 .bx:nth-of-type(1) {
  padding-right: 60px;
  border-right: 1px solid #EDEDED;
}
.access .c2 .bx:nth-of-type(2) {
  padding-left: 60px;
}
.access .c2 .train {
  background: url("../images/train.png") center left no-repeat;
  background-size: auto 23px;
  padding-left: 32px;
}
.access .c2 .car {
  background: url("../images/car.png") center left no-repeat;
  background-size: auto 23px;
  padding-left: 32px;
}
.access .c2 .txt {
  margin-top: 16px;
}
.access .c2 .md_btn {
  margin-top: 16px;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s ease;
}
.access .c2 .md_btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.access .c3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.access .c3 .bx:nth-of-type(1) {
  padding-right: 40px;
  font-size: 1.4rem;
  border-right: 1px solid #EDEDED;
}
.access .c3 .bx:nth-of-type(2) {
  text-align: center;
}
.access .c3 .bx:nth-of-type(3) {
  padding-left: 40px;
  font-size: 1.4rem;
  border-left: 1px solid #EDEDED;
}
@media all and (max-width: 1600px) {
  .access .c3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (max-width: 1000px) {
  .access {
    margin-top: 100px;
  }
  .access .maps {
    padding-top: 45.25%;
  }
  .access .c2 {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
  .access .c2 .bx:nth-of-type(1) {
    padding-right: 0;
    border-right: none;
  }
  .access .c2 .bx:nth-of-type(2) {
    padding-left: 0;
  }
  .access .c2 .train {
    background: url("../images/train.png") center left no-repeat;
    background-size: auto 23px;
    padding-left: 32px;
  }
  .access .c2 .car {
    background: url("../images/car.png") center left no-repeat;
    background-size: auto 23px;
    padding-left: 32px;
  }
  .access .c2 .txt {
    margin-top: 16px;
  }
  .access .c2 .md_btn {
    margin-top: 16px;
    text-decoration: underline;
  }
  .access .c3 {
    display: block;
    margin-top: 30px;
    border-top: 1px solid #EDEDED;
    padding-top: 30px;
    box-sizing: border-box;
    text-align: left;
  }
  .access .c3 .bx:nth-of-type(1) {
    padding-right: 0;
    border-right: none;
  }
  .access .c3 .bx:nth-of-type(2) {
    text-align: left;
    margin: 30px 0;
    padding: 30px 0;
    box-sizing: border-box;
    border-top: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
  }
  .access .c3 .bx:nth-of-type(3) {
    padding-left: 0;
    border-left: none;
  }
}
@media all and (max-width: 767px) {
  .access {
    margin-top: 70px;
  }
  .access .maps {
    margin-top: 24px;
    padding-top: 65.25%;
  }
  .access .c2 .train {
    background: url("../images/train.png") center left no-repeat;
    background-size: auto 16px;
    padding-left: 24px;
  }
  .access .c2 .car {
    background: url("../images/car.png") center left no-repeat;
    background-size: auto 16px;
    padding-left: 24px;
  }
  .access .c3 {
    margin-top: 20px;
    padding-top: 20px;
  }
  .access .c3 .bx:nth-of-type(2) {
    margin: 20px 0;
    padding: 20px 0;
  }
}

.title_v2 h2 {
  font-size: 1.4rem;
  font-weight: 500;
}
.title_v2 .eg {
  font-family: "vani_reg", Serif;
  font-size: 5.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 24px;
}
@media all and (max-width: 1280px) {
  .title_v2 .eg {
    font-size: 4.4rem;
  }
}
@media all and (max-width: 767px) {
  .title_v2 h2 {
    font-size: 1.2rem;
  }
  .title_v2 .eg {
    font-size: 3rem;
    margin-top: 12px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 20;
}

.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -10px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

.bread {
  margin-top: 110px;
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.bread .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
}
.bread a {
  color: #000;
  position: relative;
  padding-right: 15px;
}
.bread a:before {
  content: ">";
  position: absolute;
  right: 3px;
}
@media all and (max-width: 767px) {
  .bread {
    margin-top: 60px;
  }
}

.under_sec1 {
  margin-top: 190px;
}
.under_sec1 .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: end;
}
.under_sec1 .top .lead {
  font-size: 1.4rem;
  font-family: serif;
  padding-bottom: 10px;
  box-sizing: unset;
}
.under_sec1 .inner3 {
  margin-top: 56px;
}
@media all and (max-width: 1000px) {
  .under_sec1 {
    margin-top: 100px;
  }
}
@media all and (max-width: 767px) {
  .under_sec1 .top {
    display: block;
  }
  .under_sec1 .top .lead {
    font-size: 1.2rem;
    padding: 10px 0;
  }
  .under_sec1 .inner3 {
    margin-top: 12px;
  }
}

.slide_bx {
  margin-top: 120px;
}
.slide_bx h2 {
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 50px;
}
.slide_bx h2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 40px;
  height: 1px;
  background: #000;
}
.slide_bx .wf {
  color: white;
}
.slide_bx .wf:before {
  background: white;
}
.slide_bx .eg i {
  font-family: "vani_reg", Serif;
}
.slide_bx .eg em {
  font-size: 1.6rem;
  margin-left: 10px;
}
.slide_bx .slide_wraps {
  max-width: 900px;
  margin: 36px auto 0 auto;
  position: relative;
}
.slide_bx .sw_nav {
  width: 100%;
  position: absolute;
  top: 50%;
}
.slide_bx .sw_nav .swiper-button-next {
  right: -44px;
}
.slide_bx .sw_nav .swiper-button-prev {
  left: -44px;
}
.slide_bx .txt {
  margin-top: 50px;
}
.slide_bx .c2 {
  margin: 36px auto 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
@media all and (max-width: 900px) {
  .slide_bx .sw_nav {
    width: 100%;
    position: absolute;
    top: 50%;
  }
  .slide_bx .sw_nav .swiper-button-next {
    right: 10px;
  }
  .slide_bx .sw_nav .swiper-button-prev {
    left: 10px;
  }
}
@media all and (max-width: 767px) {
  .slide_bx {
    margin-top: 50px;
  }
  .slide_bx h2 {
    font-size: 1.6rem;
    padding-left: 28px;
  }
  .slide_bx h2:before {
    width: 20px;
    top: 13px;
  }
  .slide_bx .eg i {
    font-size: 1.8rem;
  }
  .slide_bx .eg em {
    font-size: 1.2rem;
    margin-left: 0;
  }
  .slide_bx .eg .dis {
    display: block;
  }
  .slide_bx .slide_wraps {
    margin: 16px auto 0 auto;
  }
  .slide_bx .swiper-button-next, .slide_bx .swiper-button-prev {
    width: 26px;
  }
  .slide_bx .txt {
    margin-top: 24px;
  }
  .slide_bx .c2 {
    margin: 16px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.scrollup-button {
  display: none !important;
}

/*# sourceMappingURL=base.css.map */
