html:not(.responsive) {
  min-width: 1000px;
  /* viewport */
}

* {
  box-sizing: border-box;
}

/*=============================================
* body
*=============================================*/
body {
  color: #fff;
  font-family: 'Zen Kaku Gothic New';
  font-size: 15px;
  line-height: 35px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: url("../img/shared/bg.jpg");
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  text-align: justify;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 40px;
    min-width: 1000px;
    /* viewport */
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --app-height: 100%;
  }
  html.open,
  body.menu-open {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: var(--app-height);
  }
}

/*=============================================
* <main>
*=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wrap {
  width: 1000px;
}

.wrap1200 {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

a, img {
  transition: 0.3s all ease-in-out;
}

.img--white {
  filter: brightness(0) invert(1);
}

.object-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 50%;
}

.db {
  display: block;
}

.df {
  display: flex;
}

.jcfs {
  justify-content: flex-start;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.jcfe {
  justify-content: flex-end;
}

.aifs {
  align-items: flex-start;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

@media only screen and (max-width: 767px) {
  .wrap1200 {
    width: 100%;
    padding: 0 6.7vw;
  }
}

@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .df-pc {
    display: flex;
  }
}

/*=============================================
* <header>
*=============================================*/
body.nav--opened,
body.nav--opened *,
body.nav--opened *:hover,
body.nav--opened *:focus,
body.nav--opened *:active {
  /*    cursor: none !important;*/
  touch-action: none !important;
  pointer-events: none !important;
}

body.nav--opened .hamburger,
body.nav--opened #menu-toggle,
body.nav--opened #menu-toggle *,
body.nav--opened #ft-fixed,
body.nav--opened #ft-fixed * {
  touch-action: auto !important;
  pointer-events: visible !important;
}

.nav--opened {
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: none !important;
  pointer-events: none !important;
}

.nav--opened #menu-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  overflow: auto;
}

.nav--opened #pagetop {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 768px) {
  header {
    color: #f2f0eb;
  }
  header .nav-pc {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    z-index: 1;
  }
  header .nav-pc li + li {
    margin-left: 36px;
  }
  header .nav-pc a:hover,
  header .nav-pc a.active {
    color: #a7a7a7;
  }
  header .nav-pc dl {
    position: relative;
    padding-bottom: 10px;
  }
  header .nav-pc dl dt {
    cursor: pointer;
  }
  header .nav-pc dl dd {
    width: 120px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 46px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease;
  }
  header .nav-pc dl dd a {
    display: block;
    background: #a4a098;
    color: #000;
    font-size: 16px;
    line-height: 29px;
    padding-left: 18px;
  }
  header .nav-pc dl dd a + a {
    margin-top: 1px;
  }
  header .nav-pc dl dd a:hover,
  header .nav-pc dl dd a.active {
    background: #e0dcd6;
    color: #000;
  }
  header .nav-pc dl:hover dd {
    opacity: 1;
    visibility: visible;
  }
  header .tel-pc {
    position: absolute;
    top: 39px;
    left: 50px;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0.04em;
  }
  header .tel-pc span {
    font-size: 27px;
    letter-spacing: 0;
    font-weight: 900;
    margin-top: -2px;
  }
  header .tel-pc span img {
    margin: -9px 3px 0 2px;
  }
  header .hd-right {
    width: 233px;
    position: absolute;
    top: 23px;
    right: 0;
    z-index: 1;
  }
  header .hd-right .access-group {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 7px 12px;
  }
  header .hd-right .access-group .map {
    margin-left: 38px;
  }
  header .hd-right .access-group .map img {
    margin: -4px 6px 0 0;
  }
  header .hd-right .access-group a:hover {
    color: #a7a7a7;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1380px) {
  header .tel-pc {
    left: 25px;
  }
  header .hd-right {
    width: 210px;
  }
  header .nav-pc {
    left: 30px;
  }
  header .nav-pc li + li {
    margin-left: 25px;
  }
}

.nav-fixed {
  height: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}

@media only screen and (min-width: 768px) {
  .nav-fixed {
    height: 80px;
    background-image: url("../img/shared/bg5.jpg");
    color: #000;
  }
  .nav-fixed nav {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .nav-fixed nav li + li {
    margin-left: 37px;
  }
  .nav-fixed nav a {
    display: block;
    padding-top: 22px;
    position: relative;
  }
  .nav-fixed nav a:before {
    content: '';
    height: 5px;
    background: #984629;
    position: absolute;
    left: -5px;
    right: -5px;
    top: 0;
    opacity: 0;
    transition: 0.3s all ease;
  }
  .nav-fixed nav a:hover:before,
  .nav-fixed nav a.active:before {
    opacity: 1;
  }
  .nav-fixed nav dl {
    position: relative;
    padding-bottom: 20px;
  }
  .nav-fixed nav dl dt {
    padding-top: 22px;
    cursor: pointer;
  }
  .nav-fixed nav dl dd {
    width: 120px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease;
  }
  .nav-fixed nav dl dd a {
    display: block;
    background: #a4a098;
    color: #000;
    font-size: 16px;
    line-height: 29px;
    padding: 0 0 0 18px;
  }
  .nav-fixed nav dl dd a:before {
    display: none;
  }
  .nav-fixed nav dl dd a + a {
    margin-top: 1px;
  }
  .nav-fixed nav dl dd a:hover,
  .nav-fixed nav dl dd a.active {
    background: #e0dcd6;
    color: #000;
  }
  .nav-fixed nav dl:hover dd {
    opacity: 1;
    visibility: visible;
  }
}

.nav-fixed.fixed {
  opacity: 1;
  visibility: visible;
}

.has-nav #ft-fixed {
  opacity: 1;
  visibility: visible;
}

.menu-toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 75px 0;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: 99;
  background: #131212;
  color: #f2f0eb;
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}

.menu-toggle nav {
  padding-left: 13.3vw;
  margin-bottom: 11vw;
}

.menu-toggle nav dl dd {
  padding: 2vw 0 4vw;
}

.menu-toggle nav dl dd a {
  display: block;
  font-size: 5.3vw;
  line-height: 1.9;
  padding-left: 8vw;
  position: relative;
}

.menu-toggle nav dl dd a:before {
  content: '';
  width: 5.1vw;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
}

.menu-toggle nav .active {
  color: #a7a7a7;
}

.menu-toggle .access-group {
  font-size: 6.3vw;
  margin-bottom: 15vw;
}

.menu-toggle .access-group .map {
  margin-left: 14.7vw;
}

.menu-toggle .access-group .map img {
  width: 7.1vw;
  margin: -0.8vw 3vw 0 0;
}

.menu-toggle .access-group .active {
  color: #a7a7a7;
}

.menu-toggle .tel {
  font-size: 4.9vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 15vw;
}

.menu-toggle .tel span {
  font-size: 8.9vw;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: 3vw;
}

.menu-toggle .tel span img {
  width: 9.6vw;
  margin: -2.3vw 0.8vw 0 0;
}

.menu-toggle .tel a:hover img {
  opacity: 1 !important;
}

.menu-toggle .link-top {
  width: 82.8vw;
  margin: 0 auto;
}

/*=============================================
* <section>
*=============================================*/
.gmap {
  height: 480px;
  position: relative;
}

.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.btn-common a {
  display: block;
  text-align: center;
  border: 2px solid #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 31px;
  padding: 20px 10px;
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .btn-common {
    width: 391px;
  }
  .btn-common a {
    font-size: 24px;
    line-height: 39px;
    padding: 22px 25px 28px;
    overflow: hidden;
  }
  .btn-common a:before {
    content: '';
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 100%;
    transform: scale(0);
    transition: 0.3s transform ease-out;
  }
  .btn-common a:hover {
    color: #000;
  }
  .btn-common a:hover:before {
    transform: scale(2);
  }
  .bg-para {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .bg-para .img-parallax {
    clip: rect(0, auto, auto, 0);
    margin-bottom: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
  }
  .bg-para .img-parallax img {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    object-fit: cover;
    z-index: 0;
    transform: translateZ(0);
  }
}

/*=============================================
* <footer>
*=============================================*/
footer {
  background-image: url("../img/shared/bg4.jpg");
  color: #f2f0eb;
  padding: 45px 0 140px;
}

footer nav {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-left: 6.6vw;
  margin-bottom: 11vw;
}

footer nav dl dd {
  padding: 2vw 0 4vw;
}

footer nav dl dd a {
  display: block;
  font-size: 5.3vw;
  line-height: 1.9;
  padding-left: 8vw;
  position: relative;
}

footer nav dl dd a:before {
  content: '';
  width: 5.1vw;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
}

footer nav .active {
  color: #a7a7a7;
}

footer .access-group {
  font-size: 6.3vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 18vw;
}

footer .access-group .map {
  margin-left: 14.7vw;
}

footer .access-group .map img {
  width: 7.1vw;
  margin: -0.8vw 3vw 0 0;
}

footer .logo-group {
  margin-bottom: 7.1vw;
}

footer .logo-group li {
  width: 40.5vw;
}

footer .logo-group li + li {
  margin-left: 6.4vw;
}

footer .tel {
  font-size: 4.5vw;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 15vw;
  border: 1px solid;
  padding: 4vw 0 3vw;
}

footer .tel span {
  font-size: 8.1vw;
  font-weight: 900;
  letter-spacing: 0;
  margin-top: 2vw;
}

footer .tel span img {
  width: 8.8vw;
  margin: -1.6vw 0.8vw 0 0;
}

footer .tel a:hover img {
  opacity: 1 !important;
}

footer .link-top {
  width: 82.8vw;
  margin: 0 auto 11.5vw;
}

footer .ft-bot {
  text-align: center;
  color: #8c8a89;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
}

footer .ft-bot .copy {
  color: #d2cdc6;
  display: table;
  margin: 0 auto 45px;
  cursor: pointer;
}

footer .ft-bot .copy:before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("../img/shared/icon_copy.png");
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-right: 7px;
  position: relative;
  top: 2px;
}

footer .ft-bot .copy.copied {
  pointer-events: none;
}

footer .ft-bot #socialbuttons {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 66px 0 59px;
  }
  footer nav {
    width: 660px;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding-left: 0;
    margin: 3px 0 44px;
  }
  footer nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  footer nav ul li {
    margin: 0 0 31px 32px;
  }
  footer nav dl {
    display: flex;
    padding-right: 8px;
  }
  footer nav dl dt {
    letter-spacing: 0.03em;
    padding-right: 8px;
  }
  footer nav dl dd {
    padding: 0;
  }
  footer nav dl dd a {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    padding-left: 0;
    margin-left: 20px;
    position: relative;
  }
  footer nav dl dd a:before {
    width: 1px;
    height: 14px;
    background: #a3a3a2;
    top: 0;
    left: -14px;
  }
  footer nav dl dd a:last-child:after {
    content: '';
    width: 1px;
    height: 14px;
    background: #a3a3a2;
    position: absolute;
    top: 0;
    right: -14px;
  }
  footer nav a:hover {
    color: #a7a7a7;
  }
  footer .access-group {
    display: none;
  }
  footer .col-left {
    float: left;
    margin-left: 22px;
  }
  footer .logo-group {
    margin-bottom: 32px;
  }
  footer .logo-group li {
    width: 191px;
  }
  footer .logo-group li + li {
    margin-left: 28px;
  }
  footer .tel {
    width: 393px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 0 1px;
    padding: 16px 0 15px;
  }
  footer .tel span {
    font-size: 32.44px;
    margin-top: 6px;
  }
  footer .tel span img {
    width: 35px;
    height: auto;
    margin: -13px 4px 0 0;
  }
  footer .link-top {
    width: 293px;
    float: right;
    margin: 0 -3px 0 0;
  }
  footer .ft-bot {
    text-align: left;
    margin-top: 34px;
  }
  footer .ft-bot .bot-right {
    order: 2;
    padding-bottom: 9px;
  }
  footer .ft-bot .bot-left {
    order: 1;
  }
  footer .ft-bot .copy {
    margin: 0 5px 21px auto;
    letter-spacing: 0.01em;
    transition: 0.3s all ease;
  }
  footer .ft-bot .copy:before {
    width: 13px;
    height: 11px;
  }
  footer .ft-bot .copy:hover {
    color: #a7a7a7;
  }
  footer .ft-bot #socialbuttons {
    text-align: right;
    margin-bottom: 0;
  }
  footer .ft-bot address {
    letter-spacing: 0.08em;
  }
  footer .ft-bot .cookies-link {
    letter-spacing: 0.03em;
    margin-left: 6px;
  }
  footer .ft-bot .cookies-link a:hover {
    text-decoration: underline;
  }
}

#ft-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  text-align: center;
  width: 100%;
  border-top: 1px solid #272725;
  z-index: 10;
  height: 70px;
}

#ft-fixed li {
  width: 33.33%;
  background: #fff;
  color: #000;
  position: relative;
  z-index: 1;
  border-left: 1px solid #272725;
}

#ft-fixed li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#ft-fixed li a:hover img {
  opacity: 0.1 !important;
}

#ft-fixed li img {
  width: 15px;
  height: 22px;
  vertical-align: top;
}

#ft-fixed li span {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

#ft-fixed li:first-child {
  border-left: none;
}

@media screen and (min-width: 768px) {
  #ft-fixed {
    width: 90px;
    height: 90px;
    left: auto;
    right: 14px;
    bottom: 14px;
    border: none;
    background: transparent;
  }
  #ft-fixed li {
    width: 100%;
    background: transparent;
    border: none;
  }
  #ft-fixed li img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  #pagetop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #pagetop picture {
    height: 22px;
  }
}

/* --------------------------------------------------------------------- */
/* ef */
/* --------------------------------------------------------------------- */
@media only screen and (min-device-width: 375px) and (min-device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 140px);
  }
  #ft-fixed:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #fff;
    z-index: -1;
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (min-device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 140px);
  }
  #ft-fixed:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #fff;
    z-index: -1;
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

/* iPhone 11 */
@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-o-min-device-pixel-ratio: 3 / 1), only screen and (min-device-pixel-ratio: 3), only screen and (min-resolution: 458dpi), only screen and (min-resolution: 3dppx) {
  footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 140px);
  }
  #ft-fixed:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #fff;
    z-index: -1;
  }
  #ft-fixed {
    bottom: calc(env(safe-area-inset-bottom) - 0px);
  }
}

.nav--opened #ft-fixed {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 768px) {
  .nav--opened #ft-fixed:after,
  #ft-fixed:after {
    display: none;
  }
}
