.hidden {
  opacity: 0;
  visibility: hidden;
}

body.fixed {
  overflow: hidden;
  height: 100vh;
}

.preloader {
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  transition: all 0.5s;
  background: url("../img/shared/bg.jpg");
}
.preloader .img, .preloader .ttl {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s;
}
.preloader .skip {
  position: absolute;
  bottom: 0;
  left: 8.5vw;
  font-size: 5.26vw;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  opacity: 0.6;
  cursor: pointer;
  z-index: 3;
}
.preloader .skip span {
  letter-spacing: 0.12em;
  cursor: pointer;
}
.preloader .skip:after {
  content: "";
  height: 13.73vw;
  width: 1px;
  opacity: 0.6;
  background: #000;
}
.preloader.show {
  opacity: 1;
  visibility: visible;
}
.preloader.show .set1 {
  transition: opacity 0.5s;
}
.preloader.show .set1 .img {
  transition-delay: 1s;
  opacity: 1;
  visibility: visible;
}
.preloader.show .set1 .ttl {
  transition-delay: 1.8s;
  opacity: 1;
  visibility: visible;
}
.preloader.show:has(.set2.show) .set1 {
  opacity: 0;
  visibility: hidden;
}
.preloader.show .set2.show {
  opacity: 1;
  visibility: visible;
}
.preloader .set1, .preloader .set2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s;
}
.preloader .set1 {
  padding: 0 0 0 26vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10vw;
}
.preloader .set1 .img {
  height: 70vh;
  max-height: calc(100% - 27vw);
  width: 100%;
}
.preloader .set1 .ttl {
  width: 56vw;
}
.preloader .set2 {
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  padding: 2.8vw 0 0 2.8vw;
}
.preloader .set2.show {
  opacity: 1;
  visibility: visible;
}
.preloader .set2.show .img {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.8s;
}
.preloader .set2.show .img:nth-child(2) {
  transition-delay: 1.6s;
}
.preloader .set2.show .img:nth-child(3) {
  transition-delay: 2.4s;
}
.preloader .set2.show .ttl {
  transition-delay: 3s;
  opacity: 1;
  visibility: visible;
}
.preloader .set2 .img {
  width: 53.73vw;
  height: 22vh;
}
.preloader .set2 .img:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.preloader .set2 .img:nth-child(3) {
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .preloader .set2 .img img {
    height: 100%;
    width: auto;
  }
}
.preloader .set2 .ttl {
  position: absolute;
  bottom: 0;
  left: 22.67vw;
  height: 60vh;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .preloader .set2 .ttl {
    width: 9.6vw;
  }
}
@media screen and (min-width: 768px) {
  .preloader {
    height: 100vh;
  }
  .preloader .skip {
    bottom: auto;
    top: 28px;
    left: auto;
    right: 28px;
    font-size: 15px;
    gap: 10px;
  }
  .preloader .skip:hover {
    opacity: 0.8;
  }
  .preloader .skip:after {
    height: 39px;
  }
  .preloader .set1 {
    flex-direction: row;
    padding: 0 78px;
    gap: 0;
  }
  .preloader .set1 .img {
    height: 100%;
    width: calc(50% - 117px);
    max-height: 100%;
  }
  .preloader .set1 .ttl {
    width: auto;
    margin: 30px 46px 0 0;
  }
  .preloader .set2 {
    padding: 33px 0 0 31px;
  }
  .preloader .set2 .img {
    width: 349px;
    height: 269px;
    max-height: calc(33.3333333333vh - 20px);
  }
  .preloader .set2 .img:nth-child(2) {
    margin-left: 349px;
    margin-right: 0;
  }
  .preloader .set2 .img:nth-child(3) {
    margin-left: 698px;
  }
  .preloader .set2 .ttl {
    left: 179px;
    height: 643px;
    text-align: center;
    max-height: 66.6666666667vh;
    bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: url("../img/shared/menu_fixed_bg.jpg");
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.5s;
    opacity: 0;
    visibility: hidden;
  }
  .nav-fixed.fixed {
    opacity: 1;
    visibility: visible;
  }
  .nav-fixed .nav {
    display: flex;
    margin: 0 0 0 31px;
    align-items: center;
    font-size: 15px;
    line-height: 1.5;
    gap: 19px;
  }
  .nav-fixed .nav a {
    display: block;
    letter-spacing: 0.2em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  .nav-fixed .nav a:hover, .nav-fixed .nav a.active {
    border-color: #000;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .nav-fixed .nav a {
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  .nav-fixed .right {
    display: flex;
    align-items: center;
  }
  .nav-fixed .right .tel {
    line-height: 1;
    margin: 0 19px 0 15px;
  }
  .nav-fixed .right .web {
    width: 123px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .nav-fixed .right .web {
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .nav-fixed .right .web a {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 24px 0 0;
    height: 90px;
    box-sizing: border-box;
    gap: 9px 0;
    line-height: 1;
    font-size: 15px;
  }
  .nav-fixed .right .web a::before {
    content: "";
    background: url("../img/shared/icon_web2.png");
    width: 21px;
    height: 20px;
  }
  .nav-fixed .right .web a small {
    font-size: inherit;
  }
  .nav-fixed .right .web a:hover {
    opacity: 0.8;
  }
}
.language {
  display: flex;
}
.language li a {
  width: 58px;
  box-sizing: border-box;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 2;
  opacity: 0.4;
  transition: all 0.5s;
  border: 1px solid #000;
  box-sizing: border-box;
}
.language li a.active {
  opacity: 1;
  background: #000;
  color: #fff;
}
.language li a.active:hover {
  opacity: 0.8;
}
.language li a:hover {
  opacity: 0.2;
}
.language li + li a {
  border-left: 0;
}
@media screen and (min-width: 768px) {
  .language li a {
    width: 53px;
    font-size: 15px;
    line-height: 1;
    padding: 2px 0 4px;
  }
}

.tel {
  line-height: 1.5;
}
.tel .sub-tel {
  font-size: 11px;
}
.tel span {
  font-size: 21px;
  letter-spacing: 0.07em;
}

#header {
  position: relative;
  z-index: 2;
  padding: 13px 0 0;
}
#header h1 {
  padding: 0 5% 10px;
  text-align: center;
  font-size: 9.5px;
  line-height: 2.27;
  opacity: 0.5;
  letter-spacing: 0.14em;
}
#header #key {
  position: relative;
}
#header #key .img {
  height: 162.8vw;
}
#header #key .right {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  background: url("../img/shared/bg.jpg");
  padding: 11px;
  box-sizing: border-box;
}
#header #key .logo {
  position: absolute;
  top: 50vw;
  left: 50%;
  width: 26vw;
  transform: translateX(-37%);
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #header {
    padding: 38px 69px 0 74px;
  }
  #header h1 {
    position: absolute;
    line-height: 1.5;
    font-size: 11px;
    top: 214px;
    right: 27px;
    bottom: 0;
    padding: 0;
  }
  #header #key .img {
    height: 879px;
  }
  #header #key .nav {
    position: absolute;
    z-index: 2;
    top: 49px;
    left: 52px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.5;
    gap: 33px;
  }
  #header #key .nav a {
    display: block;
    letter-spacing: 0.25em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  #header #key .nav a:hover, #header #key .nav a.active {
    border-color: #fff;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #header #key .nav {
    gap: 20px;
  }
  #header #key .nav a {
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  #header #key .right {
    padding: 27px 4px 32px 0;
    min-width: 363px;
  }
  #header #key .right .flex {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    align-items: center;
    margin: 0 3px 0 0;
  }
  #header #key .right .flex .nav2 {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  #header #key .right .flex .nav2 a {
    display: flex;
    align-items: baseline;
    gap: 5px;
    line-height: 1;
    font-size: 14px;
    letter-spacing: 0.15em;
  }
  #header #key .right .group-tel {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin: 10px 0 16px;
    gap: 13px;
  }
  #header #key .right .group-tel .note-tel {
    font-size: 13px;
    line-height: 1.5;
  }
  #header #key .right .btn-web {
    margin: 0 0 0 auto;
  }
  #header #key .logo {
    top: 334px;
    width: 126px;
    transform: translateX(-52%);
  }
}

.btn-web {
  width: 225px;
  max-width: 100%;
}
.btn-web a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
  line-height: 2;
  padding: 11.5px 0;
  text-decoration: none;
  gap: 7px;
}
.btn-web a small {
  font-size: inherit;
}
.btn-web a::before {
  content: "";
  background: url("../img/shared/icon_web_sp.png") no-repeat center/100% auto;
  width: 12px;
  height: 12px;
}
.btn-web.style-white a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-web.style-white a::before {
  background-image: url("../img/shared/icon_web2_sp.png");
}
@media screen and (min-width: 768px) {
  .btn-web {
    width: 223px;
  }
  .btn-web a {
    padding: 5px 0 2px;
  }
  .btn-web a::before {
    background-image: url("../img/shared/icon_web.png");
    width: 14px;
    height: 13px;
  }
  .btn-web a:hover {
    opacity: 0.8;
  }
  .btn-web.style-white a::before {
    background-image: url("../img/shared/icon_web3.png");
  }
}

#ft-fixed {
  display: flex;
  z-index: 99999;
  background: url("../img/shared/menu_fixed_bg.jpg");
}
#ft-fixed p {
  width: 25%;
  box-sizing: border-box;
}
#ft-fixed p a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10.5px 0 0;
  height: 60px;
  line-height: 1;
  gap: 10px;
  box-sizing: border-box;
}
#ft-fixed p a img {
  width: 18px;
}
#ft-fixed p a span {
  font-size: 11.5px;
}
#ft-fixed .web a {
  background: #000;
  color: #fff;
}
#ft-fixed .hamburger {
  position: relative;
  top: 0;
  right: 0;
  width: 25%;
  box-sizing: border-box;
  border-left: 1px solid #aea693;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ft-fixed .hamburger:after {
  display: none;
}
#ft-fixed .hamburger.is-active {
  background: url("../img/shared/ham_bg_sp.jpg") repeat-y top center/100% auto;
}
#ft-fixed .hamburger.is-active .hamburger-inner, #ft-fixed .hamburger.is-active .hamburger-inner::before, #ft-fixed .hamburger.is-active .hamburger-inner::after {
  background: #fff;
}

#menu-toggle {
  background: url("../img/shared/menu_fixed_bg.jpg");
}
#menu-toggle .inner {
  padding: 0 var(--wrapPadding);
}
#menu-toggle .language {
  justify-content: flex-end;
  margin: 0 0 50px;
}
#menu-toggle .nav {
  margin: 0 17px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
#menu-toggle .nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
#menu-toggle .nav li a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  line-height: 2;
  padding: 11px 0 5px;
  letter-spacing: 0.2em;
  position: relative;
}
#menu-toggle .nav li a.active::before {
  content: "";
  position: absolute;
  height: 2px;
  opacity: 0.6;
  left: 50px;
  right: 50px;
  bottom: -1.5px;
  background: #000;
}

#footer .set2 {
  text-align: center;
  padding: 12vw 0 140px;
}
#footer .set2 address {
  line-height: 1.5;
  margin: 0 0 7px;
  letter-spacing: 0.1em;
}
#footer .set2 .cookies-link {
  font-size: 11.5px;
  line-height: 1.5;
  color: #8a8a8a;
  margin: 0 0 30px;
}
#footer .set2 .cookies-link a {
  text-decoration: underline;
  display: inline-block;
}
#footer .set2 .btn-copy {
  line-height: 1;
  margin: 30px 0 0;
}
#footer .set2 .btn-copy a {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
}
#footer .set2 .btn-copy a::before {
  content: "";
  background: url("../img/shared/icon_url_sp.png") no-repeat center/100% auto;
  width: 14px;
  height: 14px;
}
#footer .set2 .btn-copy a.copied {
  text-decoration: none;
  cursor: context-menu;
}
#footer .set2 .pagetop {
  margin: 40px auto 0;
  width: 28.5px;
  line-height: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #footer .set2 {
    padding: 81px 0 73px;
  }
  #footer .set2 .nav {
    display: flex;
    align-items: center;
    line-height: 1.5;
    justify-content: center;
    gap: 31px;
  }
  #footer .set2 .nav a {
    display: block;
    letter-spacing: 0.2em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #footer .set2 .nav a {
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  #footer .set2 .nav a:hover, #footer .set2 .nav a.active {
    border-color: #000;
  }
  #footer .set2 address {
    margin: 72px 0 2px;
  }
  #footer .set2 .cookies-link {
    font-size: 13px;
  }
  #footer .set2 .cookies-link a:hover {
    text-decoration: none;
  }
  #footer .set2 .flex {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
  }
  #footer .set2 .btn-copy {
    line-height: 1;
    margin: 0;
  }
  #footer .set2 .btn-copy a::before {
    background: url("../img/shared/icon_url.png") no-repeat center/100% auto;
    width: 16px;
    height: 16px;
  }
  #footer .set2 .pagetop {
    margin: 73px auto 0;
    width: 33px;
  }
  #footer .set2 .pagetop:hover {
    opacity: 0.8;
  }
}
#footer .set1 {
  background: url("../img/shared/bg2.png");
  padding: 15vw 0 12vw;
}
#footer .set1 .left {
  text-align: center;
  padding: 0 0 10vw;
}
@media screen and (max-width: 767px) {
  #footer .set1 .left .logo {
    width: 26vw;
    margin: 0 auto;
  }
}
#footer .set1 .left .name {
  line-height: 1.6875;
  margin: 26px 0 38px;
}
#footer .set1 .left .tel {
  margin: 0 0 13px;
}
#footer .set1 .left .btn-web {
  margin: 0 auto;
}
#footer .set1 .info dl {
  display: flex;
  align-items: flex-start;
  padding: 0 0 12px;
  line-height: 1.875;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#footer .set1 .info dl + dl {
  margin-top: 17px;
}
#footer .set1 .info dl dt {
  width: 90px;
}
#footer .set1 .info dl dd {
  width: calc(100% - 90px);
}
@media screen and (min-width: 768px) {
  #footer .set1 {
    padding: 103px 0 80px;
  }
  #footer .set1 .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #footer .set1 .left {
    width: 276px;
    padding: 58px 0 0;
  }
  #footer .set1 .left .name {
    margin: 26px -20px 38px;
  }
  #footer .set1 .left .btn-web a {
    padding: 5px 0 6px;
  }
  #footer .set1 .info {
    margin: 0 -18px 0 0;
    width: 630px;
  }
  #footer .set1 .info dl dt {
    width: 168px;
  }
  #footer .set1 .info dl dd {
    width: calc(100% - 148px);
    margin: 0 -20px 0 0;
  }
}

.btn-link {
  width: 300px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.btn-link a {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  padding: 0 0 13px;
  background: url("../img/shared/arrow_sp.png") no-repeat bottom right/100% auto;
  text-decoration: none;
}
.btn-link a::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("../img/shared/ball_sp.png") no-repeat center/100% auto;
  width: 79px;
  height: 79px;
  left: 50%;
  transform: translateX(-50%);
  top: -23px;
}
.btn-link.btn-white a {
  color: #fff;
  background-image: url("../img/shared/arrow2_sp.png");
}
.btn-link.btn-white a::before {
  background-image: url("../img/shared/ball2_sp.png");
}
@media screen and (min-width: 768px) {
  .btn-link {
    width: 309px;
  }
  .btn-link a {
    font-size: 18px;
    padding: 0 0 17px;
    background-image: url("../img/shared/arrow.png");
  }
  .btn-link a::before {
    background-image: url("../img/shared/ball.png");
    width: 116px;
    height: 116px;
    top: -35px;
    transition: all 1s ease-in-out;
  }
  .btn-link a:hover::before {
    transform: translateX(-50%) scale(2);
  }
  .btn-link.btn-white a {
    color: #fff;
    background-image: url("../img/shared/arrow2.png");
  }
  .btn-link.btn-white a::before {
    background-image: url("../img/shared/ball2.png");
  }
}