@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  common

---------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
  background: #000 url("../images/bg_bottom.jpg") no-repeat center bottom/100% auto;
  color: #fff;
}
.l-inner {
  margin: auto;
  max-width: 120rem;
  width: 90%;
}
:root {
  --col-main: #333;
  --col-sub: #d9c43b;
  --bg-01: #fff;
  --bg-02: #e6e6da;
  --en: normal 400 9rem/1 "Amiri", serif;
}
/*---------------------------------

  header

---------------------------------*/
header {
  background: url("../images/bg_main.jpg") no-repeat center/cover;
  padding: 5.5rem 0;
}
header img {
  width: 100%;
  vertical-align: bottom;
}
header .wrap {
  margin: auto;
  width: 95%;
  position: relative;
}
header .wrap #logo {
  max-width: 118rem;
  margin: auto;
  width: 90%;
}
header .wrap #logo a {
  display: block;
}
header .wrap #logo a img {
  filter: drop-shadow(0 0 5px #000);
  width: 100%;
  vertical-align: bottom;
}
header .wrap .link_youtube {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 5rem;
  height: 3.5rem;
}
header .wrap .link_youtube span {
  background: url("../images/sun_youtube.svg") no-repeat center/contain;
  display: block;
  width: 100%;
  height: 100%;
}
header #mainvisual {
  margin: auto;
  width: 95%;
  height: 70rem;
}
header #mainvisual img {
  object-fit: cover;
  object-position: center bottom;
  height: 100%;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {
  header .wrap #logo {
    max-width: 80rem;
  }
  header .wrap .link_youtube {
    top: 0em;
  }
  header #mainvisual {
    height: 50rem;
  }
}
@media screen and (max-width: 896px) {
  header {
    padding-top: 0;
  }
  header .wrap {
    padding: 2rem 0;
  }
  header .wrap #logo {
    padding-right: 6rem;
  }
  header .wrap .link_youtube {
    top: 8rem;
    width: 4rem;
    height: 3rem;
  }
  header #mainvisual {
    height: 43rem;
  }
}
@media screen and (max-width: 480px) {
  header #mainvisual {
    height: 35rem;
  }
  header #mainvisual img {
    object-position: right -3em bottom 0;
  }
}
/*---------------------------------
  グローバルナビゲーション
---------------------------------*/
#gnav {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(230, 230, 230, 0.3);
  margin: 4rem auto;
  padding: 2rem;
}
#gnav .main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
#gnav .main li {
  overflow: hidden;
}
#gnav .main li:not(._sns) a {
  color: #fff;
  display: block;
  font-size: 1.1em;
  font-weight: 600;
  padding: 0 1rem;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  background: linear-gradient(to bottom, #9F821D 49%, transparent 49%) 0 100%;
  background-size: 100% 200%;
  transition: text-shadow 0.3s, background-position 0.3s;
}
header #gnav ul.main li.PCnone {
  display: none;
}
@media (any-hover: hover) {
  #gnav .main li:not(._sns) a:hover {
    text-shadow: 0 0 0 #fff, 0 1.5em 0 #9F821D;
    background-position: 0 0;
    opacity: 1;
  }
}
@media screen and (max-width: 1440px) {
  #gnav .main {
    gap: 1.5rem;
  }
  #gnav .main li a {
    font-size: 1.05em;
  }
}
@media screen and (max-width: 896px) {
  #gnav {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------
  トグルメニュー（ipadサイズから）
---------------------------------*/
@media screen and (max-width: 896px) {
  .navToggle {
    background: var(--col-sub);
    color: var(--col-main);
    cursor: pointer;
    pointer-events: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: block;
    width: 6rem;
    height: 6rem;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  .navToggle::after {
    content: 'MENU';
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .navToggle span {
    background: var(--col-main);
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navToggle span:nth-of-type(1) {
    top: 10px;
  }
  .navToggle span:nth-of-type(2) {
    top: 20px;
  }
  .navToggle span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle.active::after {
    content: 'CLOSE';
  }
  .navToggle.active span:nth-of-type(1) {
    display: none;
  }
  .navToggle.active span:nth-of-type(2) {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 20px;
    right: 0;
  }
  .navToggle.active span:nth-of-type(3) {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 20px;
    right: 0;
  }
  header .overlay {
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px); /* ぼかしエフェクト */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh);
    display: none;
    z-index: 50;
  }
  header .overlay.active {
    display: block;
    animation-name: fade-in;
    animation-duration: .5s;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.panelactive {
    transform: translate(0);
    right: 0;
  }
  nav.globalMenuSp {
    background: #111;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0%;
    max-width: 30rem;
    width: 100%;
    height: fit-content;
    transform: translate(45rem);
    transition: all 0.6s;
    padding: 10rem 5% 5rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  header #gnav ul.main {
    flex-direction: column;
    font-size: 2rem;
    font-weight: 600;
    align-items: stretch;
    gap: 2rem;
  }
  header #gnav ul.main li {
    flex-basis: 100%;
  }
  header #gnav ul.main li a {}
  header #gnav ul.main li.PCnone {
    display: block;
  }
  header #gnav ul.main li._sns a {
    display: block;
    margin-left: auto;
    width: 4rem;
    height: 3rem;
  }
  header #gnav ul.main li span._youtube {
    background: url("../images/sun_youtube.svg") no-repeat center/contain;
    display: block;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 480px) {
  nav.globalMenuSp {}
  nav.globalMenuSp {}
}
/*---------------------------------

	

---------------------------------*/
#flotingBunner {
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6rem;
  height: 25rem;
  z-index: 10;
}
#flotingBunner a {
  background: #c1272d url("../images/flowting_order.svg") no-repeat center/auto 80%;
  border-radius: .5rem 0 0 .5rem;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
}
#flotingBunner a:hover {
  background-color: #84191E;
  opacity: 1;
}
#flotingBunner a span {
  opacity: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  #flotingBunner {
    width: 4rem;
    height: 20rem;
  }
}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  #flotingBunner {
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 6rem;
  }
  #flotingBunner a {
    background: #c1272d url("../images/flowting_order_sp.svg") no-repeat center/60% auto;
    border-radius: 0;
  }
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  background: rgba(0, 0, 0, 0.70);
  padding: 8rem 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
footer .wrap .infoBox .site_title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2rem;
}
footer .wrap .infoBox .site_title p {
  font-weight: 700;
  font-size: 2rem;
}
footer .wrap .infoBox .site_title span {
  font-size: 1.4rem;
}
footer .wrap .infoBox .site_title span a {
  background: url("../images/arr_w.svg") no-repeat center left/1rem;
  border-bottom: 1px solid;
  color: #fff;
  display: inline-block;
  padding-left: 1.4rem;
}
footer .wrap .infoBox address {
  font-style: normal;
  font-size: 1.4rem;
}
footer .wrap .copylight {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  footer .wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3rem;
  }
}
@media screen and (max-width: 480px) {}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
}
#page-top a {
  background: #333;
  text-decoration: none;
  color: #fff;
  width: 5rem;
  height: 5rem;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #aaa;
}
#page-top a:hover .arrow::before {
  top: -10px;
}
@media screen and (max-width: 480px) {
  #page-top {
    bottom: 8rem;
  }
}
/*---------------------------------

	inview

---------------------------------*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeIn_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s, transform .8s;
}
.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .5s;
}