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

* {
  box-sizing: border-box;
}

/*=============================================
* body
*=============================================*/
body {
  color: #fff;
  font-family: 'Noto Sans JP';
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.15em;
  background: url("../img/shared/bg.jpg");
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 15px;
    line-height: 32px;
    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;
}

a:hover {
  text-decoration: none;
}

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

.txt {
  text-align: justify;
}

.ovh {
  overflow: hidden;
}

.bg2 {
  background-image: url("../img/shared/bg2.jpg");
  color: #000;
}

@media screen and (max-width: 767px) {
  .bg2 {
    background-size: 150vw;
  }
}

/*=============================================
* <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 * {
  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;
  right: 0;
}

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

header {
  color: #fff;
  position: relative;
}

header h1 {
  font-size: 8px;
  letter-spacing: 0.05em;
  line-height: 11px;
  position: absolute;
  left: 4vw;
  right: 4vw;
  bottom: 4vw;
  z-index: 2;
  text-shadow: 0 0 3px #000, 0 0 3px #000;
}

header .header-ct {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 30vw;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .col-left .logo {
  width: 32vw;
  margin: 0 auto 2.5vw;
}

header .col-left .link {
  width: 32vw;
  margin: 0 auto;
}

header .col-left .link {
  display: block;
  border: 1px solid;
  text-align: center;
  font-size: 2.4vw;
  line-height: 5.1vw;
  font-weight: 600;
  letter-spacing: 0.15em;
}

@media only screen and (min-width: 768px) {
  header h1 {
    font-size: 12px;
    line-height: 18px;
    left: 33px;
    right: 27px;
    bottom: 26px;
  }
  header .header-ct {
    position: static;
    display: block;
  }
  header .col-left {
    width: 240px;
    position: absolute;
    left: 40px;
    top: 39px;
    z-index: 2;
  }
  header .col-left .logo {
    width: 100%;
    margin: 0 auto 19px;
  }
  header .col-left .link {
    width: 100%;
    margin: 0 0 5px;
  }
  header .col-left .link {
    font-size: 18px;
    line-height: 38px;
  }
  header .col-left .link a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
  }
  header .col-left .tel {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  header .col-left .tel span {
    white-space: nowrap;
    border-top: 1px solid;
    font-size: 30px;
    letter-spacing: 0.05em;
    margin: 1px 0 3px;
    padding-top: 8px;
  }
  header .col-left .tel small {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 20px;
    margin: 0 -8px;
  }
  header .col-right {
    width: 70px;
    position: absolute;
    right: 0;
    top: 185px;
    z-index: 9;
  }
  header .col-right .access {
    padding-left: 21px;
    margin-bottom: 33px;
  }
  header .col-right .access li {
    margin-bottom: 13px;
  }
  header .col-right .access .ttl {
    width: 29px;
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 16px;
  }
  header .col-right .access .ttl .txt-latin {
    letter-spacing: 0.06em;
  }
  header .col-right .btn-reserve {
    width: 70px;
    height: 260px;
    text-align: center;
    position: fixed;
    right: 0;
    z-index: 9;
  }
  header .col-right .btn-reserve a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #000;
    background: #d90211;
    border-left: 5px solid #e3414d;
    padding: 25px 0 0;
    cursor: pointer;
  }
  header .col-right .btn-reserve a:hover {
    opacity: 0.8;
  }
  header .col-right .btn-reserve a:hover img {
    opacity: 1 !important;
  }
  header .col-right .btn-reserve a img {
    display: block;
    margin: 0 auto 11px;
  }
  header .col-right .btn-reserve a span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding-right: 18px;
  }
  header .banner {
    width: 374px;
    height: 100px;
    border: 1px solid;
    position: absolute;
    left: 31px;
    bottom: 66px;
    z-index: 2;
  }
  header .banner a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: url("../img/shared/honten_banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.15em;
    position: relative;
    padding: 0px 15px 0 0px;
  }
  header .banner a:after {
    content: '';
    width: 14px;
    background-image: url("../img/shared/icon_arrow.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 58px;
    filter: brightness(0) invert(1);
  }
  header .banner a:hover {
    opacity: 0.8;
  }
}

@media only screen and (min-width: 768px) and (max-height: 768px) {
  header .col-right {
    top: 55px;
  }
}

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

.menu-toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  right: -100%;
  bottom: 0;
  padding: 70px 4vw;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: 9;
  background-image: url("../img/shared/bg3.png");
}

.menu-toggle .row {
  margin-bottom: 25px;
}

.menu-toggle .row .ttl {
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 14px;
  border-bottom: 1px solid;
  padding-bottom: 3px;
  margin-bottom: 12px;
}

.menu-toggle .row nav {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
}

.menu-toggle .row nav ul {
  width: 50%;
}

.menu-toggle .row nav ul + ul {
  padding-left: 15px;
}

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

.menu-toggle .row .tel span {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 24px;
}

.menu-toggle .row .tel small {
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 0.05em;
}

.menu-toggle .row .btn-reserve {
  max-width: 300px;
  width: 100%;
  margin: 35px auto 0;
}

.menu-toggle .row .btn-reserve a {
  display: block;
  text-align: center;
  background: #d90211;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 30px;
  padding: 10px;
  position: relative;
}

.menu-toggle .row .btn-reserve a img {
  width: 13px;
  position: absolute;
  left: 36px;
  top: 18px;
}

@media screen and (max-width: 370px) {
  .menu-toggle .row nav {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) {
  .menu-toggle {
    background: transparent;
    padding: 0;
  }
  .menu-toggle #close{
    width: calc(100% - 750px);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
  }
  .menu-toggle:after{
    content: '';
    width: 750px;
    background: url("../img/shared/bg3.png");
    position: fixed;
    right: -750px;
    top: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s all ease-in-out;
  }
  .nav--opened .menu-toggle:after{
    right: 0;
  }
  .menu-toggle .wrapper{
    width: 750px;
    margin-left: auto;
    padding: 161px 0 20px 3px;
  }
  .menu-toggle .inner {
    width: 500px;
    margin: 0 auto;
  }
  .menu-toggle .row {
    margin-bottom: 55px;
  }
  .menu-toggle .row .ttl {
    font-size: 13px;
    line-height: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .menu-toggle .row nav {
    font-size: 24px;
    line-height: 48px;
  }
  .menu-toggle .row nav ul + ul {
    padding-left: 4px;
  }
  .menu-toggle .row nav a:hover {
    color: #d90211;
  }
  .menu-toggle .row .tel span {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .menu-toggle .row .tel small {
    font-size: 13px;
  }
  .menu-toggle .row .btn-reserve {
    max-width: none;
    margin: 27px auto 0;
  }
  .menu-toggle .row .btn-reserve a {
    font-size: 20px;
    line-height: 40px;
    font-weight: 600;
    padding: 20px 14px 20px 20px;
  }
  .menu-toggle .row .btn-reserve a img {
    width: 23px;
    height: auto;
    left: 60px;
    top: 28px;
  }
  .menu-toggle .row .btn-reserve a:hover {
    opacity: 0.8;
  }
  .menu-toggle .row .btn-reserve a:hover img {
    opacity: 1 !important;
  }
  .menu-toggle .row2 {
    margin-bottom: 51px;
  }
  .menu-toggle .row3 .ttl {
    margin-bottom: 27px;
  }
}

/*=============================================
* key
*=============================================*/
#key {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 160vw;
  position: relative;
}

@media only screen and (min-width: 768px) {
  #key {
    height: 900px;
  }
}

/*=============================================
* <section>
*=============================================*/
.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;
  object-position: 50%;
  z-index: 0;
  transform: translateZ(0);
}

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

.btn-common {
  width: 80vw;
  margin: 0 auto;
}

.btn-common a {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  color: #000;
  text-align: center;
  font-family: 'Noto Serif JP';
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 10px;
  position: relative;
}

.btn-common a:after {
  content: '';
  width: 9px;
  background-image: url("../img/shared/icon_arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8vw;
}

@media screen and (min-width: 768px) {
  .btn-common {
    width: 500px;
  }
  .btn-common a {
    font-size: 20px;
    line-height: 38px;
    padding: 20px;
  }
  .btn-common a:after {
    width: 14px;
    right: 50px;
  }
  .btn-common a:hover {
    opacity: 0.8;
  }
}

.slick-dots {
  display: flex;
  justify-content: center;
}

.slick-dots li {
  width: 15px;
  height: 15px;
  line-height: 0;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.slick-dots li + li {
  margin-left: 4vw;
}

.slick-dots li.slick-active button {
  background: rgba(255, 255, 255, 0.3);
}

@media screen and (min-width: 768px) {
  .slick-dots li {
    width: 20px;
    height: 20px;
  }
  .slick-dots li + li {
    margin-left: 20px;
  }
}

.slick-arrow {
  display: block;
  width: 23px;
  height: 36px;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
  font-size: 0;
  position: absolute;
  bottom: -10px;
  z-index: 1;
}

.slick-prev {
  background-image: url("../img/shared/prev.png");
  left: calc(50% - 80px);
}

.slick-next {
  background-image: url("../img/shared/next.png");
  right: calc(50% - 80px);
}

@media screen and (min-width: 768px) {
  .slick-arrow {
    width: 29px;
    height: 45px;
    bottom: -13px;
    transition: 0.3s all ease-in-out;
  }
  .slick-arrow:hover {
    opacity: 0.8;
  }
  .slick-prev {
    left: calc(50% - 122px);
  }
  .slick-next {
    right: calc(50% - 122px);
  }
}

.honten-banner-sp {
  width: 80vw;
  height: 20vw;
  margin: 0 auto 6.7vw;
}

.honten-banner-sp a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  background-image: url("../img/shared/honten_banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  font-size: 4.8vw;
  letter-spacing: 0.15em;
  position: relative;
}

.honten-banner-sp a:after {
  content: '';
  width: 1.5vw;
  background-image: url("../img/shared/icon_arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7.5vw;
  filter: brightness(0) invert(1);
}

/*=============================================
* <footer>
*=============================================*/
footer {
  background: #111;
  padding: 75px 4vw 125px;
}

footer .blk1 {
  margin-bottom: 35px;
}

footer .blk1 .col-left .logo {
  width: 120px;
  margin: 0 auto 30px;
}
footer .blk1 .col-left .logo .link {
    display: block;
    border: 1px solid;
    text-align: center;
    font-size: 2.4vw;
    line-height: 5.1vw;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-top: 3vw;
}


footer .blk1 .col-right {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

footer .blk1 .col-right .banner {
  margin-bottom: 20px;
}

footer .blk1 .col-right .banner a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 125px;
  background-image: url("../img/shared/footer_bnr.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  font-size: 18px;
  letter-spacing: 0.15em;
  border: 1px solid;
  position: relative;
}

footer .blk1 .col-right .banner a:after {
  content: '';
  width: 7px;
  background-image: url("../img/shared/icon_arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  filter: brightness(0) invert(1);
}

footer .blk1 .col-right .link a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  font-size: 15px;
  line-height: 48px;
  letter-spacing: 0.2em;
}

footer .blk1 .col-right .link a:after {
  content: '';
  width: 9px;
  background-image: url("../img/shared/icon_arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  filter: brightness(0) invert(1);
}

footer .blk2 {
  font-size: 12px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

footer .blk2 .col-left {
  line-height: 16px;
  margin-bottom: 35px;
}

footer .blk2 .col-left small {
  font-size: 10px;
  letter-spacing: 0.1em;
}

footer .blk2 .col-right {
  line-height: 25px;
}

footer .blk2 .col-right .copy,
footer .blk2 .col-right .cookies-link {
  padding-left: 25px;
  position: relative;
}

footer .blk2 .col-right .copy:before,
footer .blk2 .col-right .cookies-link:before {
  content: '';
  width: 10px;
  height: 10px;
  background-image: url("../img/shared/icon_link.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 5px;
  top: 10px;
}

footer .blk2 .col-right .cookies-link a,
footer .blk2 .col-right .copy {
  display: table;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 7px;
}

footer .blk2 .col-right .copy.copied {
  pointer-events: none;
  text-decoration: none;
}

footer .blk2 .col-right #pagetop {
  display: table;
  cursor: pointer;
  margin: 25px 0 35px 6px;
}

footer .blk2 .col-right #pagetop span {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 7px;
}

footer .blk2 .col-right #pagetop img {
  width: 6px;
  display: inline-block;
  margin: -2px 12px 0 0;
}

footer .blk2 .col-right #socialbuttons {
  margin: 0 0 35px;
  text-align: left;
}

footer .blk2 .col-right address {
  font-size: 10px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 100px 30px 96px;
  }
  footer .inner {
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
  }
  footer .blk1 {
    margin-bottom: 89px;
  }
  footer .blk1 .col-left {
    display: flex;
    align-items: flex-start;
  }
  footer .blk1 .col-left .logo {
    width: 200px;
    margin: 0 23px 0 0;
  }

  footer .blk1 .col-left .logo .link{
        font-size: 18px;
        line-height: 38px;
                margin-top: 20px;
  }


  
  footer .blk1 .col-left nav {
    display: flex;
  }
  footer .blk1 .col-left .navi {
    font-size: 30px;
    line-height: 52px;
    letter-spacing: 0.05em;
    display: flex;
  }
  footer .blk1 .col-left .navi a {
    display: block;
    width: 52px;
    cursor: pointer;
  }
  footer .blk1 .col-left .navi a:hover {
    color: #d90211;
  }
  footer .blk1 .col-left .access {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    margin: 12px 0 0 28px;
    padding-left: 40px;
    line-height: 29px;
  }
  footer .blk1 .col-left .access li {
    margin-bottom: 19px;
  }
  footer .blk1 .col-left .access li:last-child {
    margin-bottom: 0;
  }
  footer .blk1 .col-left .access .ttl {
    font-size: 18px;
    margin-bottom: 24px;
  }
  footer .blk1 .col-left .access .ttl .txt-latin {
    letter-spacing: 0.06em;
  }
  footer .blk1 .col-right {
    max-width: none;
    width: 300px;
    margin: 1px 0 0;
  }
  footer .blk1 .col-right .banner {
    margin-bottom: 20px;
  }
  footer .blk1 .col-right .banner a {
    height: 160px;
    font-size: 20px;
    padding: 2px 0 0 5px;
  }
  footer .blk1 .col-right .banner a:after {
    width: 14px;
    right: 23px;
  }
  footer .blk1 .col-right .banner a:hover {
    opacity: 0.8;
  }
  footer .blk1 .col-right .link a {
    font-size: 18px;
    line-height: 45px;
    letter-spacing: 0.06em;
    padding-bottom: 3px;
  }
  footer .blk1 .col-right .link a:after {
    width: 9px;
    right: 25px;
  }
  footer .blk1 .col-right .link a:hover {
    opacity: 0.8;
  }
  footer .blk2 {
    font-size: 15px;
    max-width: none;
  }
  footer .blk2 .col-left {
    line-height: 24px;
    margin-bottom: 0px;
  }
  footer .blk2 .col-left small {
    font-size: 15px;
    letter-spacing: 0.15em;
  }
  footer .blk2 .col-right {
    font-size: 13px;
    line-height: 36px;
    margin: 0 -1px -7px 0;
  }
  footer .blk2 .col-right .copy,
  footer .blk2 .col-right .cookies-link {
    padding-left: 32px;
  }
  footer .blk2 .col-right .copy:before,
  footer .blk2 .col-right .cookies-link:before {
    width: 14px;
    height: 14px;
    left: 3px;
    top: 14px;
  }
  footer .blk2 .col-right .cookies-link a,
  footer .blk2 .col-right .copy {
    text-underline-offset: 7px;
  }
  footer .blk2 .col-right .cookies-link a:hover,
  footer .blk2 .col-right .copy:hover {
    text-decoration: none;
  }
  footer .blk2 .col-right #pagetop {
    margin: 15px 0 24px 5px;
  }
  footer .blk2 .col-right #pagetop span {
    text-underline-offset: 7px;
  }
  footer .blk2 .col-right #pagetop img {
    margin: -2px 20px 0 0;
  }
  footer .blk2 .col-right #pagetop:hover span {
    text-decoration: none;
  }
  footer .blk2 .col-right #socialbuttons {
    margin: 0 0 28px;
  }
  footer .blk2 .col-right address {
    font-size: 13px;
  }
}

@media screen and (min-width: 1500px) {
  footer {
    padding-left: 80px;
    padding-right: 80px;
  }
  footer .inner {
    max-width: none;
  }
}

#ft-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  text-align: center;
  width: 100%;
  z-index: 10;
  background: #fff;
  color: #000;
}

#ft-fixed a {
  display: block;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#ft-fixed a img {
  display: inline-block;
  width: 18px;
  margin: -3px 5px 0 0;
}

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

#ft-fixed .reserve {
  width: 70%;
  background: #d90211;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#ft-fixed .tel {
  width: 30%;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

#ft-fixed .map {
border-right: 1px solid rgba(124, 124, 124, 0.5);
    padding-right: 1vw;
}


/*=============================================
* .socialbuttons
*=============================================*/
/*=============================================
* copyright
*=============================================*/
.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 (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .df-pc {
    display: flex;
  }
}

/* --------------------------------------------------------------------- */
/* ef */
/* --------------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0.3s;
}

@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) + 125px);
  }
  #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) + 125px);
  }
  #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) + 125px);
  }
  #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;
  }
}
