﻿@import "base.css";
@import "fonts.css";
@import "aos.css";
@import "slick.css";
@import "slick-theme.css";
@import "lightbox.css";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap";
:root {
  --content-width: 1230px;
  --font-yugothic: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  --font-yumincho: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
  --font-meiryo: "Meiryo UI", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  --font-arial: Arial, Helvetica, sans-serif;
  --main-cl: #1d2450;
  --sec-cl: #d6540d;
  --b-cl: #000;
  --w-cl: #fff;
  --lh: 1.8em;
  --font-family: "Noto Sans JP", sans-serif;
  --noto: "Noto Sans JP", sans-serif;
  --body-color: #333333;
  --font-gabarito: "Gabarito", serif;
  --roboto: "Roboto", serif;
  --roboto-condensed: "Roboto Condensed", serif;
  --font-ship: "Shippori Mincho", serif;
  --font-serif: "Noto Serif JP", serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 160%;
  -webkit-text-size-adjust: none;
  font-family: var(--font-family);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  width: 100%;
  border: solid 1px #999;
  padding: 10px;
}
::placeholder {
  opacity: 0.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6em;
}
a {
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-family);
  color: var(--body-color);
}
select {
  visibility: visible !important;
}
[href^="tel:"] {
  word-break: keep-all;
  white-space: nowrap;
}
img {
  vertical-align: middle;
  max-width: 100%;
  flex-shrink: 0;
  height: auto;
  object-fit: cover;
}
table {
  width: 100%;
}
p {
  margin-bottom: 15px;
  line-height: 32px;
  letter-spacing: 0.05em;
}
p:last-child {
  margin-bottom: 0;
}
button {
  cursor: pointer;
  border: solid 1px #333;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
*,
::before,
::after {
  box-sizing: border-box;
  outline: none;
}
html {
  background: #fff;
}
body {
  min-width: 320px;
  -webkit-text-size-adjust: none;
  color: var(--body-color);
}
.font_ship,.font_ship *{font-family: var(--font-ship);}

#wrapper {
  min-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
}
.container {
  width: var(--content-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.lk-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.customize-support #header {
  margin-top: 32px;
}
@media screen and (max-width: 782px) {
  .customize-support #header {
    margin-top: 46px !important;
  }
}
@media screen and (max-width: 600px) {
  .customize-support #header {
    margin-top: 0px !important;
  }
}
.hamburger-btn {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 99;
  margin-left: 20px;
  background-color: var(--main-cl);
}
.hamburger-btn .bar {
  width: 18px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 6px;
  margin: auto;
  bottom: 0;
  right: 0;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 30px;
}
.hamburger-btn .bar::before,
.hamburger-btn .bar::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.hamburger-btn .bar::before {
  top: -7px;
  left: -6px;
  width: calc(100% + 6px);
}
.hamburger-btn .bar::after {
  top: 7px;
  left: 4px;
  width: calc(100% - 4px);
}
.hamburger-btn.--active .bar {
  background-color: rgba(0, 0, 0, 0);
  left: 0;
}
.hamburger-btn.--active .bar::before {
  width: 100%;
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
.hamburger-btn.--active .bar::after {
  width: 100%;
  top: 0;
  left: 0;
  transform: rotate(135deg);
}
.to-top {
  position: fixed;
  bottom: 20px;
  right: 30px;
  cursor: pointer;
  z-index: 98;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
}
.to-top:hover {
  opacity: 0.8;
}
.to-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--main-cl);
  border: 1px var(--main-cl) solid;
  border-radius: 4px;
  z-index: 1;
}
.to-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 20px 14px;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fff rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
.d-flex {
  display: flex;
}
.d-flex-column {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-center-all {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.bold {
  font-weight: 700;
}
.iline {
  --cl: var(--main-cl);
  --t: 75%;
  --b: 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) var(--t),
    var(--cl) var(--t),
    var(--cl) var(--b),
    rgba(255, 255, 255, 0) var(--b)
  );
}
.iline-radius {
  --underline-color: #fff;
  --underline-height: 36px;
  background:
    radial-gradient(farthest-side, var(--underline-color) 100%, transparent 30%) bottom right/var(--underline-height)
      var(--underline-height),
    radial-gradient(farthest-side, var(--underline-color) 100%, transparent 30%) bottom left/var(--underline-height)
      var(--underline-height),
    linear-gradient(var(--underline-color), var(--underline-color)) bottom/calc(100% - var(--underline-height))
      var(--underline-height);
  background-repeat: no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.ml-0 {
  margin-left: 0px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.mx-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.mx-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.mx-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}
.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.mx-45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}
.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}
.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}
.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.w0 {
  width: 0%;
}
.w5 {
  width: 5%;
}
.w10 {
  width: 10%;
}
.w15 {
  width: 15%;
}
.w20 {
  width: 20%;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w35 {
  width: 35%;
}
.w40 {
  width: 40%;
}
.w45 {
  width: 45%;
}
.w50 {
  width: 50% !important;
}
#header.fix {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
#header.fix .header-act-contact .mail {
  width: 270px;
  max-width: 100%;
  height: 76px;
}
#header.fix .header-act-contact .mail span {
  padding: 0 25px;
}
#header.fix .header-act-contact .mail span::before {
  left: -10px;
}
#header.fix .header-act-contact .call {
  margin-right: 20px;
}
#header.fix .header-act-contact .call .num {
  font-size: 28px !important;
}
#header.fix .header-act-contact .call .txt {
  font-size: 14px !important;
}
#header.fix .header-act-contact .tesla {
  padding: 3px 13px 3px 3px !important;
  margin-right: 20px !important;
}
.header-main {
  display: flex;
  height: 100%;
}
.header-act {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.menu-list {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.menu-list * {
  color: #fff;
}
.menu-list li:first-child .menu-tt {
  padding-left: 0;
  border-left: unset;
}
.menu-list .menu-tt {
  padding: 0 84px 0 85px;
  line-height: 1.8;
  height: 49px;
  border-left: 1px solid #fff;
  letter-spacing: 0.05em;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-list .menu-tt .img {
  margin-right: 16px;
}
.menu-list p {
  margin-bottom: 0;
}
.menu-list a {
  position: relative;
  display: block;
}
.header-menu-frame {
  width: 100%;
  padding: 8px 0 8px 30px;
}
.header-act-bnr {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 30px;
}
.header-act-bnr a {
  display: block;
}
.header-act-bnr a:not(:last-child) {
  margin-right: 30px;
}
.header-menu .dropdown {
  position: relative;
}
.header-menu .dropdown .menu-tt.open span::after {
  height: 0 !important;
}
.header-menu .dropdown .menu-tt span:not([class]) {
  position: relative;
  z-index: 1;
}
.header-menu .dropdown .menu-tt span:not([class])::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 1px;
  background-color: #fff;
  right: -26px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transition: 0.2s linear;
}
.header-menu .dropdown .menu-tt span:not([class])::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 17px;
  background-color: #fff;
  right: -18px;
  top: 1px;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transition: 0.2s linear;
}
.sub-menu {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: var(--main-cl);
  padding: 1px 33px 22px;
  display: none;
}
.sub-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 18px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.sub-menu a::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 10px;
  height: 1px;
  left: 0;
  top: 10px;
  z-index: -1;
}
.sub-menu li:not(:last-child) {
  margin-bottom: 6px;
}
.fz16 {
  font-size: 16px !important;
}
.sidebar-menu-list::-webkit-scrollbar {
  /* display: none; */
}
.header-act-contact {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.91);
  padding: 10px 20px 10px 24px;
  position: relative;
  z-index: 1;
  top: -9px;
  border-bottom-left-radius: 20px;
  display: flex;
  align-items: center;
}
.header-act-contact > a {
  /* transition: 0.2s linear; */
  transition: unset;
}
.header-act-contact .tesla {
  display: flex;
  align-items: center;
  color: #fff;
  width: 250px;
  max-width: 100%;
  padding: 8px;
  background-color: var(--main-cl);
  margin-right: 20px;
}
.header-act-contact .tesla .txt {
  display: block;
  font-size: 15px;
  line-height: 1.3em;
  margin-left: 15px;
  margin-bottom: 0 !important;
  text-align: center;
}
.header-act-contact .tesla .txt span {
  font-size: 133%;
}
.header-act-contact .call {
  text-align: center;
  margin-right: 20px;
}
.header-act-contact .call .num {
  color: var(--main-cl);
  font-size: 35px;
  display: block;
  padding-left: 35px;
  font-family: var(--roboto);
  font-weight: bold;
  line-height: 1.16em;
  position: relative;
  z-index: 1;
  margin-bottom: 1px;
  color: var(--sec-cl);
}
.header-act-contact .call .num::before {
  content: "";
  position: absolute;
  background: url("../images/ic-call.png") center no-repeat;
  background-size: cover;
  width: 29px;
  height: 23px;
  top: -1px;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.header-act-contact .call .txt {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.header-act-contact .call .txt span {
  font-size: 71%;
  padding-right: 7px;
}
.header-act-contact .mail {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 28px;
  color: #fff;
  width: 300px;
  max-width: 100%;
  height: 86px;
  padding: 10px 41px 14px;
  background: #d6540d;
  background: linear-gradient(150deg, rgba(214, 84, 13, 0.7) 0%, rgb(214, 84, 13) 100%);
  position: relative;
  z-index: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-act-contact .mail::after {
  content: "";
  position: absolute;
  background: url("../images/ic-mail-decore.png") center no-repeat;
  background-size: cover;
  /* width: 54px;
  height: 94px; */
  width: 40px;
  height: 70px;
  right: 11px;
  bottom: 13px;
}
.header-act-contact .mail span {
  position: relative;
  z-index: 1;
  padding: 0 36px;
  display: block;
  width: 100%;
}
.header-act-contact .mail span::before {
  content: "";
  position: absolute;
  background: url("../images/ic-mail.png") center no-repeat;
  background-size: cover;
  width: 34px;
  height: 23px;
  z-index: -1;
  top: 3px;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.2s linear;
}
.under .menu-list .sub-menu {
  padding: 12px 33px 22px;
}
h1 span,
.txt-h1 span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
}
#sidebar {
  padding: 0 0 13px;
  transition: all 0.3s ease;
  z-index: 99;
  width: 280px;
  height: 100%;
  flex-shrink: 0;
  background-color: var(--main-cl);
}
#sidebar h1,
#sidebar .txt-h1 {
  font-size: 12px;
  margin: 0 0 -1px;
  background-color: #fff;
  font-family: var(--noto);
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  padding: 14px 10px 20px;
}
#sidebar .logo {
  width: 100%;
  padding-bottom: 31px;
  background-color: #fff;
}
#sidebar .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.sidebar-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sidebar-act {
  display: flex;
  align-items: center;
}
.mainvs .slide.slide1 .slide__box h2 > span .fz32 {
  font-size: 100%;
}
.mainvs .slide.slide1 .d-flex {
  justify-content: space-between;
  align-items: center;
}

.sidebar-menu-list {
  position: relative;
  display: flex;
  flex-direction: column;
  column-gap: 25px;
  padding-bottom: 18px;
  overflow: auto;
  max-height: calc(100vh - 52px - 124px - 280px - 10px);
}
.sidebar-menu-list::-webkit-scrollbar {
  display: none;
}
.sidebar-menu-list .menu-tt {
  padding: 19px 40px 18px 27px;
  line-height: 1.8;
  width: 100%;
}
.sidebar-menu-list p {
  margin-bottom: 0;
}
.sidebar-menu-list a {
  position: relative;
  display: block;
}
.sidebar-menu-list a,
.sidebar-menu-list p {
  color: #fff;
  line-height: 1.5em !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-menu-list > li {
  background-color: #1d2450;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 1;
}
.sidebar-menu-list > li .menu-tt {
  position: relative;
  z-index: 1;
}
.sidebar-menu-list > li .menu-tt::before {
  content: "";
  position: absolute;
  background: url("../images/icon-arrow.png") center no-repeat;
  background-size: cover;
  width: 21px;
  height: 6px;
  z-index: -1;
  top: -3px;
  bottom: 0;
  right: 14px;
  margin: auto;
  transition: 0.2s linear;
}
.sidebar-menu-list > li:nth-child(1) > a,
.sidebar-menu-list > li:nth-child(2) > a,
.sidebar-menu-list > li:nth-child(3) > a {
  min-height: 85px;
}
.sidebar-menu-list > li:nth-child(1) {
  background: url("../images/bg-menu1.png") top right no-repeat #1d2450;
  background-size: 280px 86px;
}
/* .sidebar-menu-list > li:nth-child(2) {
  background: url("../images/bg-menu2.png") top right no-repeat #1d2450;
  background-size: 280px 86px;
}
.sidebar-menu-list > li:nth-child(3) {
  background: url("../images/bg-menu3.png") top right no-repeat #1d2450;
  background-size: 280px 86px;
} */
.sidebar-menu-list > li:nth-child(2) {
  background: url("../images/top2-bg-menu2.png") top right no-repeat #1d2450;
  background-size: 280px 86px;
}
.sidebar-menu-list > li:nth-child(3) {
  background: url("../images/top2-bg-menu3.png") top right no-repeat #1d2450;
  background-size: 280px 86px;
}
.sidebar-menu-list > li.dropdown:not(.dropdown_link) .menu-tt::before {
  background: none;
  width: 17px;
  height: 1px;
  top: -1px;
  background-color: #fff;
}
.sidebar-menu-list > li.dropdown:not(.dropdown_link) .menu-tt::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 17px;
  background-color: #fff;
  transition: 0.2s linear;
}
.sidebar-menu-list > li.dropdown:not(.dropdown_link) .menu-tt.open::after {
  height: 0;
}
.sidebar-menu .dropdown {
  position: relative;
}
.sidebar-menu .dropdown .menu-tt {
  cursor: pointer;
  padding: 20px 40px 18px 27px;
}
.sidebar-sub-menu {
  width: 100%;
  display: none;
  margin-top: 11px;
  padding: 0 0 18px 27px;
}
.sidebar-sub-menu li:not(:last-child) {
  margin-bottom: 8px;
}
.sidebar-sub-menu a {
  font-size: 14px;
  padding: 0 17px;
  position: relative;
  z-index: 1;
}
.sidebar-sub-menu a::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 10px;
  height: 1px;
  top: 10px;
  left: 0;
  z-index: -1;
}
.banner-list {
  text-align: center;
  margin: 41px auto 0;
}
.banner-list li:not(:last-child) {
  margin-bottom: 28px;
}
.custom-dot .slick-dots {
  left: 0;
}
.custom-dot .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 6px;
}
.custom-dot .slick-dots li.slick-active button {
  background-color: #dd7237;
}
.custom-dot .slick-dots li button {
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(204, 204, 204, 0.5);
  border-radius: 100%;
}
.custom-dot .slick-dots li button::before {
  display: none;
}
.mainvs {
  width: calc(100vw - 296px);
  height: 100%;
}
.mainvs .slick-list,
.mainvs .slick-track {
  height: 100%;
}
.mainvs .slick-slide > div {
  height: 100%;
}
.mainvs .slide {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.mainvs .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 1640px;
  height: 100%;
}
.mainvs .slide.slide1::before {
  background: url("../images/mainvs-1.jpg") center no-repeat;
  background-size: cover;
}
.mainvs .slide.slide1 .slide__box {
  position: absolute;
  left: 110px;
  top: 179px;
}
.mainvs .slide.slide1 .slide__box h2 {
  color: #fff;
  font-weight: bold;
  font-size: 58px;
  letter-spacing: 0.05em;
  line-height: 81px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 33px;
}
.mainvs .slide.slide1 .slide__box h2 > span {
  position: relative;
  z-index: 1;
  padding: 0 10px 0 24px;
}
.mainvs .slide.slide1 .slide__box h2 > span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.3);
  left: 0;
  bottom: 4px;
  border-radius: 30px;
}
.mainvs .slide.slide1 .slide__box h2 > span span {
  font-size: 77.2727%;
}
.mainvs .slide.slide1 .slide__box .en {
  font-size: 32px;
  font-family: var(--font-gabarito);
  padding: 0 0 0 33px;
  letter-spacing: -0.012em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  line-height: 1.5em;
  position: relative;
  z-index: 1;
  padding-right: 10px;
  margin-bottom: 0;
}
.mainvs .slide.slide1 .slide__box .en::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  width: calc(100% - 210px);
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 100%;
  z-index: -1;
}
.mainvs .slide.slide2::before {
  background: url("../images/mainvs-2.jpg") center no-repeat;
  background-size: cover;
}
.mainvs .slide.slide2 .h2-mainvs2 {
  position: absolute;
  bottom: 0;
  left: -43px;
}

.h2-mainvs2 .custom__link {
  position: absolute;
  top: calc(50% + 14px);
  left: 0;
  right: 0;
  margin: auto;
}
.mainvs .slide.slide3::before {
  background: url("../images/mainvs-3.jpg") center no-repeat;
  background-size: cover;
}
.mainvs .slide.slide3 .h2-mainvs3 {
  position: absolute;
  bottom: 0;
  left: 21px;
  top: 10px;
  right: 0;
  margin: auto;
  width: fit-content;
  max-width: 100%;
  height: fit-content;
}
.mainvs .slide.slide4::before {
  background: url("../images/mainvs-4.jpg") center no-repeat;
  background-size: cover;
}
.mainvs .slide.slide4 .slide__box {
  position: absolute;
  top: -66px;
  bottom: 0;
  right: 105px;
  margin: auto;
  width: 835px;
  height: 312px;
  background-color: rgba(26, 34, 79, 0.6);
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  padding: 30px 50px 50px;
}
.mainvs .slide.slide4 .slide__box::before {
  content: "";
  position: absolute;
  width: calc(100% - 25px);
  height: calc(100% - 12px);
  border-bottom: 1px solid var(--main-cl);
  border-left: 1px solid var(--main-cl);
  bottom: -10px;
  left: -9px;
}
.mainvs .slide.slide4 .slide__box .h2-mainvs4 {
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 82px;
  margin-bottom: 32px;
}
.mainvs .slide.slide4 .slide__box .h2-mainvs4 span {
  font-size: 68%;
}
.mainvs .slide.slide4 .slide__box .ttm {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 22px;
  font-weight: bold;
}
#index .index-visual {
  width: calc(100vw - 295px);
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.mainvs .slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: -1;
}
.idx_b08_ttl {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 59px;
  line-height: 3;
}
.idx_b08_txt {
  background: wheat;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  padding: 14px 20px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.index-visual {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100vh;
}
.btns-fix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: salmon;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 98;
}
.btns-fix.show {
  opacity: 1;
  visibility: visible;
}
.arrow {
  margin: 100px auto;
  text-align: center;
}
.arrow span {
  display: inline-block;
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
  border-left: 10px solid #000;
}
.arrow-line {
  margin: 100px auto;
  text-align: center;
}
.arrow-line span {
  display: inline-block;
  width: 11.316px;
  height: 11.316px;
  transform: rotate(45deg);
  border-top: solid 1px #000;
  border-right: solid 1px #000;
}
.arrow-corner {
  margin: 100px auto;
  text-align: center;
}
.arrow-corner span {
  display: inline-block;
  width: 0;
  height: 0;
  border-right: 20px solid #000;
  border-top: 20px solid rgba(0, 0, 0, 0);
}
.circle {
  margin: 100px auto;
  text-align: center;
}
.circle span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #333;
  border-radius: 100%;
}
.asd {
  display: flex;
  flex-wrap: wrap;
}
.asd li {
  background-color: wheat;
  display: block;
}
@media screen and (min-width: 751px) {
  .asd li {
    width: calc(33.3333333333% - 26.6666666667px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .asd li:nth-child(3n + 3) {
    margin-right: 0;
  }
  .asd li:nth-child(3n + 1):nth-last-child(1),
  .asd li:nth-child(3n + 1):nth-last-child(2),
  .asd li:nth-child(3n + 2):nth-last-child(1),
  .asd li:nth-child(3n + 1):nth-last-child(3),
  .asd li:nth-child(3n + 2):nth-last-child(2),
  .asd li:nth-child(3n + 3):nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .asd li {
    width: calc(33.3333333333% - 20px);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .asd li:nth-child(3n + 3) {
    margin-right: 0;
  }
  .asd li:nth-child(3n + 1):nth-last-child(1),
  .asd li:nth-child(3n + 1):nth-last-child(2),
  .asd li:nth-child(3n + 2):nth-last-child(1),
  .asd li:nth-child(3n + 1):nth-last-child(3),
  .asd li:nth-child(3n + 2):nth-last-child(2),
  .asd li:nth-child(3n + 3):nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 425px) {
  .asd li {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .asd li:nth-child(2n + 2) {
    margin-right: 0;
  }
  .asd li:nth-child(2n + 1):nth-last-child(1),
  .asd li:nth-child(2n + 1):nth-last-child(2),
  .asd li:nth-child(2n + 2):nth-last-child(1) {
    margin-bottom: 0;
  }
  .asd li:nth-child(3) {
    margin-right: 20px;
    background-color: red;
  }
}
.css-min-max {
  left: max(min((100vw - 1100px)/-2, -80px), -410px);
  width: max(min(41.458vw, 796px), 522px);
}
.mainvs__frame {
  position: relative;
  z-index: 1;
}
.mainvs__post {
  position: absolute;
  bottom: 0;
  right: 0;
}
.mainvs__post * {
  color: #fff;
}
.mainvs__post--ttl {
  text-align: right;
  margin: 0 13px 20px 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.05em;
  width: 224px;
  max-width: 100%;
  background-color: #fff;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
  margin-left: auto;
  text-align: center;
  padding: 0 10px 4px;
}
.mainvs__post--ttl span {
  color: #1d2450 !important;
  display: inline-block;
}
.mainvs__post--desc {
  background-color: #fff;
  margin: 20px 13px 20px 20px;
  padding: 24px;
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.mainvs__post--desc::before {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-color: rgba(29, 36, 80, 0.8);
  top: -20px;
  left: -20px;
  z-index: -2;
  clip-path: polygon(55px 0%, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 58px);
}
.mainvs__post--desc::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  top: 0;
  left: 0;
}
.mainvs__post--desc .item {
  display: flex;
  max-width: 100%;
  width: 305px;
  position: relative;
  z-index: 1;
}
.mainvs__post--desc .item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.mainvs__post--desc .item .img {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-right: 14px;
	display:flex;
	align-items: center;
	justify-content: center;
}
.mainvs__post--desc .item .info {
  flex-grow: 1;
}
.mainvs__post--desc .item .ttl {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 23px;
  font-weight: 500;
  color: #1d2450;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.mainvs__post--desc .item .date-cate {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.mainvs__post--desc .item .date-cate p {
  margin-bottom: 0;
}
.mainvs__post--desc .item .date-cate .date {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--roboto);
  letter-spacing: 0.04em;
  line-height: 24px;
  color: #333;
}
.mainvs__post--desc .item .date-cate .cate {
  width: 106px;
  max-width: 100%;
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 21px;
  padding-bottom: 3px;
}
.mainvs__post--desc .item .date-cate .cate.cate1 {
  background-color: #1d2450;
}
.mainvs__post--desc .item .date-cate .cate.cate2 {
  background-color: #999;
}
.iBanner {
  padding: 55px 0;
}
.iBanner__list {
  display: flex;
  justify-content: center;
  gap: 42px;
}
.iBanner__item img {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.block2 {
  position: relative;
  z-index: 1;
  padding: 107px 0 105px;
  background-color: rgba(29, 36, 80, 0.05);
}
.block2::before {
  content: "";
  position: absolute;
  background: url("../images/block2-bg.png") top center no-repeat;
  background-size: cover;
  width: 100%;
  height: calc(100% - 31px);
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.block2__frame {
  display: flex;
  margin-bottom: 40px;
}
.block2 h3 {
  margin-bottom: 58px;
}
.block2__left {
  position: relative;
  z-index: 2;
  padding-left: 29px;
  flex-shrink: 0;
}
.block2__left--link1 {
  position: absolute;
  left: -2px;
  top: -26px;
}
.block2__left--link2 {
  position: absolute;
  right: -75px;
  bottom: -4px;
}
.block2__left--link3 {
  position: absolute;
  right: -68px;
  bottom: 210px;
  pointer-events: none;
}
.not-link {
  pointer-events: none;
}
.block2__right {
  margin-left: -112px;
  position: relative;
  z-index: 1;
  margin-top: -144px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.block2__right--link1 {
  position: absolute;
  right: 0;
  top: -7px;
  z-index: 2;
}
.block2 .desc {
  margin-bottom: 45px;
}
.block2 .desc p {
  font-weight: 500;
}
.block2 .desc p a {
  color: #d6540d;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.block3 {
  padding: 41px 0;
}
.block3__frame {
  text-align: center;
}
.block4 {
  padding: 96px 0 120px;
  position: relative;
  z-index: 1;
}
.block4::before {
  content: "";
  position: absolute;
  background: url("../images/block4-bg.jpg") top center no-repeat;
  background-size: cover;
  width: 1920px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}
.block4 h3 {
  text-align: center;
  line-height: 78px !important;
  margin-bottom: 56px;
}
.block4 h3 > span {
  display: inline-block;
  border-bottom: 1px solid;
  padding: 0 28px 8px;
}
.block4 h3 .num {
  font-family: var(--roboto-condensed);
}
.block4__content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px 16px;
  margin-bottom: 48px;
}
.block4__content .item {
  width: 100%;
  max-width: 288px;
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.block4__content .item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.block4__content .item .desc {
  padding: 13px 20px 20px;
}
.block4__content .item .ttl {
  line-height: 26px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #1d2450;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.block4__content .item .info {
  display: flex;
  gap: 6px;
  padding-right: 40px;
}
.block4__content .item .info::before {
  content: "";
  position: absolute;
  background: url("../images/arrow-circle.png") center no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  bottom: 13px;
  right: 8px;
}
.block4__content .item .info p {
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 20px;
  background-color: #eee;
  margin-bottom: 0;
  padding: 1px 6px 2px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.block4__content .item .info p .location {
  width: 65px;
}
.block4__content .item .info p .manufacturer {
  width: 78px;
}
.block4__content .item .info p span {
  padding-left: 15px;
  position: relative;
  z-index: 1;
}
.block4__content .item .info p span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  margin: auto;
}
.block4__content .item .info .location span::before {
  background: url("../images/icon-location.png") center no-repeat;
  background-size: cover;
  width: 9px;
  height: 13px;
  left: 2px;
  top: 3px;
}
.block4__content .item .info .manufacturer span::before {
  background: url("../images/icon-manufacturer.png") center no-repeat;
  background-size: cover;
  width: 11px;
  height: 14px;
  left: 2px;
  top: 2px;
}
.block5 {
  padding: 101px 0 120px;
  position: relative;
  z-index: 1;
}
.block5::before {
  content: "";
  position: absolute;
  background: url("../images/block5-bg.png") top center no-repeat;
  background-size: cover;
  width: 1929px;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.block5 h3 {
  text-align: center;
  margin-bottom: 67px;
}
.block5 h3 span {
  display: inline-block;
  padding: 0 143px;
  position: relative;
  z-index: 1;
}
.block5 h3 span::before {
  content: "";
  position: absolute;
  background: url("../images/block5-h3-dc.png") center no-repeat;
  background-size: cover;
  width: 101px;
  height: 205px;
  top: -46px;
  right: 0;
  z-index: -1;
}
.block5__list {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
  margin-bottom: 56px;
}
.block5__item {
  position: relative;
  z-index: 1;
  width: 252px;
  max-width: 100%;
  padding-bottom: 45px;
  cursor: pointer;
}
.block5__item::before {
  content: "";
  position: absolute;
  background: url("../images/arrow-circle.png") center no-repeat #d6540d;
  background-size: cover;
  width: 30px;
  height: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.block5__item--img {
  width: 100%;
  height: 248px;
  border: 4px solid #1d2450;
  background-color: #fff;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: -26px;
}
.block5__item--img img {
  position: absolute;
  max-width: none;
}
.block5__item.item1 .block5__item--img img {
  top: -7px;
  left: -30px;
}
.block5__item.item2 .block5__item--img img {
  top: -28px;
  left: 33px;
}
.block5__item.item3 .block5__item--img img {
  top: 38px;
  left: 1px;
}
.block5__item.item4 .block5__item--img img {
  top: -25px;
  left: -7px;
}
.block5__item--box {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  width: 188px;
  margin: 0 auto 15px;
  border-radius: 25px;
  padding: 9px 9px 8px;
  background-color: #1d2450;
  text-align: center;
  line-height: 1.5em;
}
.block5__item--ttl {
  text-align: center;
  font-size: 18px;
  color: #d75c19;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 7px;
}
.block5__item--desc {
  width: fit-content;
  margin: 0 auto;
}
.block5__item--desc li {
  font-size: 13px;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}
.block5__item--desc li:not(:last-child) {
  margin-bottom: 9px;
}
.block5__item--desc li::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  border: 2px solid #d6540d;
  background-color: #fff;
  top: 3px;
  left: 0;
  z-index: -1;
}
.block5 .custom__link p {
  max-width: 368px;
}
.block5__popup--item {
  display: flex;
}
.block5__popup--item:not(:last-child) {
  margin-bottom: 48px;
}
.block5__popup--item .img {
  flex-shrink: 0;
  margin-right: 47px;
  margin-bottom: 0;
}
.block5__popup--item .desc {
  padding-top: 5px;
}
.block5__popup--item .ttl {
  color: var(--main-cl);
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  letter-spacing: 0.05em;
  margin-bottom: 19px;
}
.block5__popup--item .txt p {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.block6 {
  padding: 102px 0 111px;
}
.block6 h3 {
  text-align: center;
  margin-bottom: 10px;
}
.block6__list {
  max-width: 1020px;
  margin: 0 auto 48px;
}
.block6__item {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1;
}
.block6__item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}
.block6__item:not(:last-child) {
  margin-bottom: 16px;
}
.block6__item p {
  margin-bottom: 0;
}
.block6__item .date {
  font-family: var(--roboto);
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  top: 2px;
  margin-right: 30px;
}
.block6__item .cate {
  min-width: 90px;
  background-color: #1d2450;
  font-size: 12px;
  color: #fff;
  line-height: 22px;
  padding: 0 5px 2px;
  text-align: center;
  margin-right: 16px;
}
.block6__item .ttl {
  flex-grow: 1;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 30px;
}
.block6__item .ttl::before {
  content: "";
  position: absolute;
  background: url("../images/icon-arrow2.png") center no-repeat;
  background-size: cover;
  width: 21px;
  height: 6px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.block6__item .ttl a {
  position: relative;
  top: -1px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 22px;
  color: #1d2450;
}
.block6 .custom__link p {
  max-width: 218px;
}
.custom__link {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.custom__link.type2 a {
  background: #1d2450;
}
.custom__link p {
  width: 100%;
  max-width: 254px;
  height: 66px;
  position: relative;
  z-index: 1;
}
.custom__link p::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  background: linear-gradient(150deg, rgb(255, 255, 255) 40%, rgba(0, 0, 0, 0) 80%);
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
  border-radius: 6px;
  transition: 0.2s linear;
}
.custom__link a,
.custom__link input {
  background: #d6540d;
  width: 100%;
  height: 100%;
  padding: 15px;
  font-size: 18px;
  text-align: center;
  color: #fff !important;
  letter-spacing: 0.05em;
  line-height: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
}
.custom__link a::before,
.custom__link input::before {
  content: "";
  position: absolute;
  background: url("../images/icon-arrow.png") center no-repeat;
  width: 21px;
  height: 6px;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 13px;
  margin: auto;
}
.custom__link input {
  cursor: pointer;
  background: url("../images/icon-arrow.png") right 13px center no-repeat #d6540d;
  background-size: 21px 6px;
  border: 0;
  outline: 0;
}
.custom__link input::before {
  display: none;
}
.custom__link .ubtn-back input {
  background: url("../images/icon-arrow-back.png") left 13px center no-repeat #d6540d;
  background-size: 21px 6px;
}
.custom__link .uBtn-back::before {
  background: url("../images/icon-arrow-back.png") center no-repeat #d6540d;
  background-size: 21px 6px;
  right: unset;
  left: 13px;
}
.custom__link .uBtn-center::before {
  display: none;
}
.custom__link .hidden {
  display: none;
}
#index #content h3 {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 72px;
  color: #1d2450;
}
.fz32 {
  font-size: 76.1905%;
}
.fz64 {
  font-size: 152.381%;
}
.fz36 {
  font-size: 85.7144%;
}
.fz28 {
  font-size: 66.6666%;
}
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
}
.popup {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  max-width: 1400px;
  max-height: 780px;
  height: 100%;
  width: 100%;
}
.close {
  position: absolute;
  top: -16px;
  right: -16px;
  font-size: 36px;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: var(--main-cl);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  z-index: 20;
}
.popup-content {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  transform: translateX(0);
}
.popup-item {
  display: none;
  padding: 64px;
  height: 100%;
  overflow: auto;
}
.popup-item-large {
  display: flex;
}
.popup-item-large .popup-item-img {
  flex-shrink: 0;
  margin-right: 47px;
}
.popup-item .custom__link {
  margin-top: 50px;
}
.popup-item.active {
  display: block;
}
.popup-active {
  overflow: hidden;
}
.popup-active .popup-container {
  z-index: 150;
}
.popup-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.popup-arrow {
  position: absolute;
  top: 50%;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
  width: 50px;
  height: 85px;
}
.popup-arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
}
.popup-arrow.left {
  left: -82px;
}
.popup-arrow.left::before {
  background: url("../images/arrow-popup-left.png") center no-repeat;
  background-size: cover;
  left: 0;
}
.popup-arrow.right {
  right: -82px;
}
.popup-arrow.right::before {
  background: url("../images/arrow-popup-right.png") center no-repeat;
  background-size: cover;
  right: 0;
}
.post-related-pagination .hidden {
  display: none;
}
.tag-row .custom__link {
  justify-content: flex-start;
}
.tag-row .custom__link p {
  max-width: 276px;
}
#form-ct select {
  padding: 10px;
}
#form-ct th {
  text-align: left;
}
#form-ct th > p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#form-ct th > p .require {
  background-color: #ed6862;
  width: 30px;
  height: 17px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding-bottom: 2px;
}
#form-ct td {
  vertical-align: middle;
}
#form-ct td > p:last-child {
  margin-bottom: 0;
}
#form-ct .wpcf7-date {
  padding: 10px;
}

.block4__content .item .img {
  background-color: #f3f3f3;
  padding: 10px;
}
.block4__content .item .img img {
  width: 100% !important;
}
.group-sub {
  margin-top: 20px;
}
.inquiry-sub input {
  display: none;
}
.inquiry-sub .wpcf7-list-item label {
  position: relative;
  z-index: 1;
  padding-bottom: 170px;
  width: 200px;
  display: block;
  opacity: 0.5;
}
.inquiry-sub .wpcf7-list-item label.checked {
  opacity: 1;
}
.inquiry-sub .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.inquiry-sub .wpcf7-list-item:nth-child(1) label::before {
  background: url("../images/inquiry-sub-1.png") center no-repeat;
  background-size: cover;
  width: 158px;
  height: 149px;
}
.inquiry-sub .wpcf7-list-item:nth-child(2) label::before {
  background: url("../images/inquiry-sub-2.png") center no-repeat;
  background-size: cover;
  width: 146px;
  height: 160px;
}
.inquiry-sub .wpcf7-list-item:nth-child(3) label::before {
  background: url("../images/inquiry-sub-3.png") center no-repeat;
  background-size: cover;
  width: 140px;
  height: 156px;
}
.inquiry-sub .wpcf7-list-item-label {
  background-color: rgba(29, 36, 80, 0.8);
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  display: block;
}
.inquiry-sub-confirm {
  position: relative;
  z-index: 1;
  padding-bottom: 170px;
  width: 200px;
  display: block;
  margin-top: 20px;
}
.inquiry-sub-confirm::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.inquiry-sub-confirm.inquiry-sub1 {
  display: block !important;
}
.inquiry-sub-confirm.inquiry-sub1::before {
  background: url("../images/inquiry-sub-1.png") center no-repeat;
  background-size: cover;
  width: 158px;
  height: 149px;
}
.inquiry-sub-confirm.inquiry-sub2 {
  display: block !important;
}
.inquiry-sub-confirm.inquiry-sub2::before {
  background: url("../images/inquiry-sub-2.png") center no-repeat;
  background-size: cover;
  width: 146px;
  height: 160px;
}
.inquiry-sub-confirm.inquiry-sub3 {
  display: block !important;
}
.inquiry-sub-confirm.inquiry-sub3::before {
  background: url("../images/inquiry-sub-3.png") center no-repeat;
  background-size: cover;
  width: 140px;
  height: 156px;
}
.inquiry-sub-confirm #cf7msm_inquiry-sub {
  display: inline-block;
  background-color: rgba(29, 36, 80, 0.8);
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  display: block;
}
.wpcf7-list-item.first {
  margin-left: 0;
}
.wpcf7-textarea {
  resize: none;
  height: 200px;
  margin-bottom: -15px;
}
.postcode, .postcode_blog {
  display: flex;
  align-items: center;
}
.postcode p, .postcode_blog p {
  margin-bottom: 0;
}
.postcode p:not(:last-child), .postcode_blog p:not(:last-child) {
  margin-right: 20px;
}
.hidden {
	display: none;
}
.postcode p:first-child, .postcode_blog p:first-child {
  width: 200px;
}
.postcode .btn-postcode, .postcode_blog .btn-postcode-blog {
  background-color: var(--main-cl);
  padding: 2px 10px 3px;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  text-align: center;
  transition: 0.2s linear;
  color: #fff;
}
.wpcf7-list-item input {
  position: relative;
  top: 1px;
}
.thanks-page {
  margin-bottom: 50px;
}
.wpcf7-form .info {
  color: #090;
  font-size: 14px;
}
.email-suggestions {
  list-style-type: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px 10px;
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
  display: none;
}
.email-suggestions li {
  padding: 5px 0;
  cursor: pointer;
}
.email-suggestions li:hover {
  background-color: #f0f0f0;
}
.txt-privacy {
  height: 350px;
  border: 1px solid var(--main-cl);
  padding: 15px;
  overflow: auto;
  margin-bottom: 50px;
}
.agree-policy {
  text-align: center;
}
.agree-policy input {
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
  margin-right: 10px;
  cursor: pointer;
}
.gr_input {
  gap: 10px;
}
.gr_input .txt {
  margin-right: 0;
}
.block7 {
  --space-top: 54px;
  position: relative;
  z-index: 1;
  padding: 72px 0 71px;
}
.block7::before {
  content: "";
  position: absolute;
  background: url("../images/block7-bg.jpg") top center repeat-y;
  background-size: contain;
  width: calc(100% + 2px);
  height: 100%;
  left: calc(50% - 1px);
  top: 0;
  transform: translate(-50%, 0);
  z-index: -1;
}
.block7__content {
  max-width: 1020px;
  margin: 0 auto;
}
.block7__contact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 51px;
  gap: 20px;
}
.block7__contact > div {
  display: flex;
  position: relative;
  z-index: 1;
}
.block7__contact > div::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 110px;
  background-color: #6c708b;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  border-bottom: 0;
  top: 1px;
  left: 1px;
  right: 0;
  margin: auto;
  z-index: -2;
}
.block7__contact > div::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.block7__contact .block7__frame {
  position: relative;
  z-index: 1;
  width: 498px;
  max-width: 100%;
  border: 6px solid #6c708b;
  text-align: center;
  background-color: #fff;
  margin-top: var(--space-top);
  padding: 14px 23px 18px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.block7__contact .block7__frame::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.block7__contact .block7__frame .ttl {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: bold;
  color: var(--main-cl);
  margin-bottom: 15px;
}
.block7__contact .block7__frame .ttl::before {
  content: "";
  position: absolute;
  width: 195px;
  height: 100px;
  background-color: #fff;
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  border-bottom: 0;
  top: -67px;
  left: 2px;
  right: 0;
  margin: auto;
  z-index: -2;
}
.block7__contact .block7__frame .ttl span {
  padding: 0 26px;
  position: relative;
  z-index: 1;
}
.block7__contact .block7__frame .ttl span::before {
  content: "";
  position: absolute;
  background: url("../images/block7-dc-title-left.png") center no-repeat;
  background-size: cover;
  width: 17px;
  height: 27px;
  z-index: -1;
  left: 0;
  top: 8px;
  bottom: 0;
  margin: auto;
}
.block7__contact .block7__frame .ttl span::after {
  content: "";
  position: absolute;
  background: url("../images/block7-dc-title-right.png") center no-repeat;
  background-size: cover;
  width: 17px;
  height: 27px;
  z-index: -1;
  right: 0;
  top: 8px;
  bottom: 0;
  margin: auto;
}
.block7__call > a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}
.block7__call::after {
  background: url("../images/block7-icon-call.png") center no-repeat;
  background-size: cover;
  width: 42px;
  height: 33px;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
}
.block7__call .block7__frame::before {
  background: url("../images/block7-dc-call.png") center no-repeat;
  width: 65px;
  height: 124px;
  background-size: cover;
  bottom: 18px;
  left: 15px;
}
.block7__call .ttl {
  margin-bottom: 22px !important;
}
.block7__call .num {
  font-size: 50px;
  font-family: var(--roboto);
  font-weight: bold;
  line-height: 24px;
  color: var(--sec-cl);
  letter-spacing: 0;
  margin-bottom: 18px;
  padding-left: 20px;
}
.block7__call .txt {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 30px;
  font-size: 18px;
  padding-left: 15px;
}

.block7__call .txt span {
  font-size: 75%;
}

.block7__mail::after {
  background: url("../images/block7-icon-mail.png") center no-repeat;
  background-size: cover;
  width: 45px;
  height: 31px;
  top: 33px;
  left: 1px;
  right: 0;
  margin: auto;
}
.block7__mail .block7__frame {
  padding: 14px 23px 30px;
}
.block7__mail .custom__link {
  height: 100%;
}
.block7__mail .custom__link p {
  max-width: 100%;
  height: 100%;
}
.block7__mail .custom__link p::before {
  display: none;
}
.block7__mail .custom__link a {
  font-size: 26px;
  padding: 15px 53px 18px 15px;
}
.block7__mail .custom__link a::before {
  background: url("../images/block7-dc-mail.png") center no-repeat;
  width: 73px;
  height: 138px;
  background-size: cover;
  bottom: 28px;
  right: -15px;
  z-index: 3;
}
.block7__mail .custom__link a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  background: linear-gradient(150deg, rgb(255, 255, 255) 40%, rgba(0, 0, 0, 0) 80%);
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
  border-radius: 6px;
  transition: 0.2s linear;
}
.block7__btn--ttl {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.block7__btn--ttl .dot span {
  position: relative;
  z-index: 1;
}
.block7__btn--ttl .dot span::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #fff;
  top: -6px;
  left: 2px;
  right: 0;
  margin: auto;
  z-index: -1;
}
.block7__btn--ttl .line {
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-thickness: 2px;
}
.block7__list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.block7__list .item {
  width: 244px;
  max-width: 100%;
  height: 172px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 19px 15px 15px;
  clip-path: polygon(4% 0%, 96% 0%, 100% 5%, 100% 94%, 96% 100%, 4% 100%, 0% 94%, 0% 6%);
  position: relative;
  z-index: 1;
  transition: .2s linear;
}
.block7__list .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.block7__list .item:nth-child(3) .icon {
  top: -6px;
}
.block7__list .item:nth-child(4) .icon {
  top: -8px;
}
.block7__list .item .icon {
  position: relative;
  z-index: 1;
  margin-bottom: 2px;
  height: 92px;
}
.block7__list .item .ttl {
  color: #f5703a;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.block8 {
  padding: 80px 0 56px;
}
.block8__frame {
  display: flex;
}
.ft__logo {
  margin-right: 55px;
  flex-shrink: 0;
  margin-bottom: 19px;
}
.ft__menu {
  --space-left: 31px;
  display: flex;
  width: 100%;
}
.ft__menu > ul {
  padding: 18px 68px 0 55px;
  border-right: 1px solid #ddd;
  flex-grow: 1;
}
.ft__menu > ul:first-child {
  border-left: 1px solid #ddd;
}
.ft__menu > ul > li:not(:last-child) {
  margin-bottom: 13px;
}
.ft__menu > ul > li a {
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-left: var(--space-left);
  color: var(--main-cl);
  position: relative;
  z-index: 1;
}
.ft__menu > ul > li a::before {
  content: "";
  position: absolute;
  background: url("../images/icon-arrow-cl2.png") center no-repeat;
  background-size: cover;
  width: 21px;
  height: 6px;
  top: 9px;
  left: 0;
  z-index: -1;
}
.ft__menu .sub__menu {
  padding-left: var(--space-left);
}
.ft__menu .sub__menu--ttl {
  padding-left: 31px;
  color: var(--main-cl);
  position: relative;
  z-index: 1;
  margin-bottom: 13px !important;
  font-weight: 500;
}
.ft__menu .sub__menu--ttl p {
  line-height: 22.4px;
}
.ft__menu .sub__menu--ttl::before {
  content: "";
  position: absolute;
  background: url("../images/icon-arrow-cl2.png") center no-repeat;
  background-size: cover;
  width: 21px;
  height: 6px;
  top: 9px;
  left: 0;
  z-index: -1;
}
.ft__menu .sub__menu > p {
  line-height: 1.2em;
}
.ft__menu .sub__menu > p:not(:last-child) {
  margin-bottom: 9px;
}
.ft__menu .sub__menu > p a {
  font-size: 14px;
  color: var(--main-cl);
  font-weight: 500;
}
.ft__menu .sub__menu a {
  padding-left: 0;
}
.ft__menu .sub__menu a::before {
  display: none;
}
.block9 {
  padding: 57px 0 56px;
  background-color: rgba(29, 36, 80, 0.05);
}
.block9__content {
  width: 100%;
  max-width: 924px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 43px 40px;
}
.block9__content a img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.ft__address {
  padding: 34px 0 33px;
}
.ft__address--frame {
  display: flex;
  justify-content: space-between;
}
.ft__address--frame .txt {
  letter-spacing: 0.05em;
  line-height: 1.8em;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.ft__address--frame .txt span {
  font-weight: bold;
  font-size: 16px;
}
address {
  font-size: 12px;
  letter-spacing: 0.05em;
  align-self: flex-end;
  padding-bottom: 10px;
}
.ft__left {
  position: fixed;
  bottom: 130px;
  right: 2px;
  z-index: 20;
  cursor: pointer;
}
.ft__left a {
  position: relative;
  z-index: 10;
}
.ft__left.show {
  bottom: 80px;
}
.ft__left .close {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  right: 20px;
  top: 13px;
  padding: 0;
  z-index: 22;
  background: rgba(0, 0, 0, 0);
}
.ft__left {
	opacity: 0;
	visibility: hidden;
}
.ft__left.show {
	opacity: 1;
	visibility: visible;
}
.pagination {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-numbers {
  font-size: 16px;
  background-color: #fff;
  text-align: center;
  line-height: 1.5em;
  color: var(--main-cl);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 5px;
  font-family: var(--noto);
  justify-content: center;
  border: 1px solid var(--main-cl);
}
.page-numbers.next,
.page-numbers.prev {
  padding-bottom: 8px;
}
.page-numbers.current {
  background-color: var(--main-cl);
  color: #fff;
}
.box-info .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-top: 5px;
}
.box-info .item img {
  height: 13px;
  width: auto;
}
.box-info .item:nth-child(2) img {
}
.box-info .item:not(:last-child) {
  margin-bottom: 5px;
}
.box-info .item > span {
  background-color: var(--main-cl);
  color: #fff;
  text-align: center;
  width: 57px;
  padding: 5px;
}

.pos-r {
  right: -10px;
  position: relative;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .logo-main {
  width: 160px;
}
.logo .logo-ranking {
  width: 90px;
}
#header .header-act-contact > .txt {
  font-weight: bold;
}
.sidebar-menu-list li.dropdown > a {
  display: flex;
  padding: 19px 40px 18px 27px;
  justify-content: center;
}
.fixed_bot {
    display: none;
}
.sp425 {
  display: none;
}
@-moz-document url-prefix() {
}

.extra_txt p{font-size: 30px;color: #fff;font-weight: 700;}
.extra_txt{margin: 0 0 5px 0;}


/* TOP 2 */
.top2 .header-act-contact .mail::before {
    content: "";
    position: absolute;
    background: url(../images/ic-mail-decore2.png) center no-repeat;
    background-size: cover;
    width: 40px;
    height: 87px;
    left: 10px;
    bottom: -7px;
}
.top2 .header-act-contact .mail::after {
    width: 32px;
    height: 56px;
    right: 11px;
    bottom: 5px;
}

.top2 .header-act-contact .mail {
  font-size: 18px;
  line-height: 24px;
  height: 66px !important;
}
.top2 .header-act-contact .mail {
  padding: 10px 41px 14px 60px;
}

.top2 #header .header-act-contact {
  transition: unset;
}
.top2 #header.fix .header-act-contact .mail::after {
    width: 32px;
    height: 56px;
    bottom: 10px;
}

.top2 .header-act-contact .mail, .top2 .header-act-contact .tesla, .top2 .banner-list a, .top2 .mainvs__post--desc .item, .top2 .block3__frame a {
  transition: unset;
}
.top2 #header.fix .header-act-contact .mail span {
    padding: 0 5px 0 35px;
}

.top2 #header.fix .header-act-contact .mail span::before {
    left: 0px;
}

.top2 .header-act-contact {
  opacity: 0;
  pointer-events: none;
}

.top2 #header.fix .header-act-contact {
  opacity: 1;
  pointer-events: all;
  animation: scrolltop 1s;
  animation-iteration-count: 1;
}
.top2 .mainvs_video {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    position: relative;
    z-index: 1;
}
.top2 .mainvs_video_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  max-width: 100%;
}
.top2 .mainvs_video_img img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  animation-duration: 1.5s; /* nhanh hơn */
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: center center;
  will-change: transform;
}
@keyframes ring {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  45%, 100% { transform: rotate(0deg); }
}
.top2 .iBanner {
  padding-bottom: 0;
}
.top2 .mainvs_video video {
    object-fit: cover;
}

.top2 .mainvs__frame {
    height: 100vh;
}
.top2 .block5__item {
    width: 320px;
}
.top2 .block5__item--img {
  width: 252px;
  margin: 0 auto -26px;
}

.top2 .block5__item--box {
  width: 100%;
}
.top2 .block7__list .item {
    width: 330px;
}
.block7__list .item {
    width: min();
}
.top2 .mainvs__flex {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-top: 50px;
}
.top2 .index-visual {
  height: auto;
  flex-direction: column;
  padding-bottom: 50px;
}

.top2 .mainvs__post {
  position: relative;
  max-width: 1200px;
	width: 100%;
  margin: auto;
}

.top2 .mainvs__post--desc .item {
  width: 100%;
}
.top2 .block5 h3 span::after {
    content: "";
    position: absolute;
    background: url(../images/block5-h3-dc2.png) center no-repeat;
    background-size: cover;
    width: 121px;
    height: 205px;
    top: -46px;
    left: 0;
    z-index: -1;
}

.top2 .block7__call .block7__frame::before {
  display: none;
}

.top2 .block7__mail .custom__link a::before {
  display: none;
}

.top2 .block7__mail .custom__link a {
    padding: 15px;
}
.top2 .block6 {
  padding-bottom: 30px;
}
.top2 #footer {
    --space-top-ft: 200px;
    padding-top: var(--space-top-ft);
}
.top2 .block7::after {
  content: "";
  position: absolute;
  background: url('../images/block7_dc_top.png') no-repeat center/contain;
  width: 300px;
  height: var(--space-top-ft);
  top: calc((var(--space-top-ft) - 85px) * -1);
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
@keyframes scrolltop {0%{transform:translateY(-90px);transform-origin:center;opacity:0;transition:ease-in-out}100%{transform:translateY(0);opacity:1}}

/* End TOP 2 */

.grecaptcha-badge {
  display: none !important;
}

.page_contact .grecaptcha-badge {
  display: block !important;
  bottom: 80px !important;
  z-index: 100;
}