@charset "UTF-8";
/* CSS Document */
/*
	##### Loun9ine PC基本セット #####
	/assets/css/style_pc.css
*/



/* (header/footer) ボタン・メニュー
=======================================*/
.sns-btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: color .3s;
}
.sns-btn a:hover {
  color: #917e3b;
}
.gradation-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  color: #fff;
  transition: background 0.7s ease-out;
}
.gradation-btn.color1 {
  background: linear-gradient(270deg,
      #887944,
      #887944,
      #68614f,
      #68614f
      );
  background-position: 99% 50%;
  background-size: 300% 300%;
  border: none;
}
.gradation-btn.color2 {
  background: linear-gradient(270deg,
      #4f4a3c,
      #4f4a3c,
      #68614f,
      #68614f);
  background-position: 99% 50%;
  background-size: 300% 300%;
  border: none;
}
.gradation-btn.color1:hover,
.gradation-btn.color2:hover,
.checked .gradation-btn.color1 {
  background-position: 1% 50%;
}
.contents-list {
  display: flex;
}
.contents-list li {
  border-left: 1px solid #917e3c;
}
.contents-list a {
  box-sizing: border-box;
  padding: 0 18px 4px;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Serif JP', serif;
  font-size: 23px;
  line-height: 1.5;
  margin-top: -5px
}
.contents-list .en-txt {
  margin: auto auto 0 0;
  font-size: 12px;
  line-height: 1;
  color: var(--light-color);
  position: relative;
  transition: color .3s;
  display: inline-block;
  padding-right: 46px;
}
.contents-list .en-txt::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #222;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}
.contents-list .en-txt::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 4.5px;
  border-color: transparent transparent transparent #222;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}
.contents-list a:hover .en-txt {
  color: #1c1c1c;
}
.contents-list a:hover .en-txt::before {
  right: -10px;
  width: 30px;
}
.contents-list a:hover .en-txt::after {
  right: -10px;
}



/*header関連
=============================*/
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 2000;
  background-color: var(--bg-color)
}
.header-main .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  padding: 0 90px;
  margin: 0 auto;
}
@media (max-width: 1692px) {
  .header-main .inner {
    padding: 0 calc(50/940*100vw)
  }
}



/* logo */
.header-logo {
  display: block;
  width: auto;
  height: 34px;
  margin-left: 1px;
  will-change: contents
}
@media (max-width: 1359px) and (min-width: 1200px) {
  .header-logo {
    height: calc(34/1359*100vw)
  }
}
@media (min-width: 1007px) and (max-width: 1200px) {
  .header-logo {
    height: 30px;
  }
}
@media (max-width: 1006px) {
  .header-logo {
    height: 28px;
  }
}
.header-logo img {
  height: 100%;
  width: auto;
  max-width: none;
}



/* ヘッダーエリア内ボタン等 Override含む */
.header-main-right-box,
.header-main .btn-set {
  display: flex;
  align-items: center;
}
.header-main .tel {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: calc(30/1920*100vw)
}
.header-main .tel a {
  font-size: 22px;
  pointer-events: none
}
@media (max-width: 940px) {
  .header-main .tel {
    font-size: calc(18/940*100vw)
  }
  .header-main .tel a {
    font-size: calc(22/940*100vw)
  }
}
.header-main .sns-btn a {
  font-size: 22px;
}
.header-main .sns-btn {
  justify-content: space-between;
  width: 98px;
  margin: 0 17px 0 calc(26/1920*100vw)
}
.header-main .sns-btn li {
  display: inline-block;
  width: 46px;
  height: 46px
}
.header-main .gradation-btn {
  font-size: 13px;
  letter-spacing: 0.075em;
  width: 180px;
  height: 46px;
}
@media (max-width: 1302px) {
  .header-main .gradation-btn {
    font-size: calc(13/1302*100vw);
    width: calc(180/1302*100vw)
  }
  .header-main .sns-btn {
    width: calc(98/1302*100vw)
  }
  .header-main .sns-btn li {
    width: calc(46/1302*100vw)
  }
}



/* ハンバーガー */
.hamburger {
  box-sizing: content-box;
  width: 30px;
  height: 13px;
  padding: 16px 0;
  margin-right: 8px;
  cursor: pointer;
}
.hamburger .bar-set {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s;
}
.hamburger span {
  display: block;
  transition: all 0.4s;
  height: 1px;
  background-color: var(--main-color);
  width: 100%;
}
.hamburger:hover span:nth-of-type(1) {
  transform: translateY(-3px);
}
.hamburger:hover span:nth-of-type(3) {
  transform: translateY(+3px);
}
.hamburger.active .bar-set {
  transform: rotateY(-360deg);
}
.hamburger.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-135deg);
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0
}
.hamburger.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(135deg);
}



/* グローバルメニュー */
.global-nav {
  position: absolute;
  top: 70px;
  display: block;
  width: 100%;
  height: calc(100vh - 70px);
  padding-top: 100px;
  background-color: rgba(0, 0, 0, .92);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: .5s ease;
}
.global-nav.on {
  opacity: 1;
  visibility: visible
}



/*左列*/
.global-nav .blck-01 {
  clip-path: inset(100% 0 0 0);
}
.global-nav.on .blck-01 {
  clip-path: inset(0);
  transition: clip-path 1s cubic-bezier(0, .8, .4, 1) .75s
}
.global-nav .gnav-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 870px;
  padding: 0 15px 180px;
  margin: 0 auto
}
.global-nav .gnav-inner .logo {
  display: block;
  width: 75px;
  height: 109px;
  margin-bottom: 80px
}



/*左列（contents-listを上書き）*/
.global-nav .contents-list {
  flex-direction: column
}
.global-nav .contents-list li {
  margin-bottom: 56px;
}
.global-nav .contents-list a {
  height: 70px
}
.global-nav .contents-list a:hover .en-txt,
.global-nav .contents-list a {
  color: #fff
}
.global-nav .contents-list .en-txt::before {
  background-color: var(--light-color)
}
.global-nav .contents-list .en-txt::after {
  border-color: transparent transparent transparent var(--light-color)
}



/*右列*/
.global-nav .blck-02 {
  display: flex;
  justify-content: space-between;
  width: 460px;
  padding-top: calc(109px + 80px);
  opacity: 0;
  visibility: hidden;
}
.global-nav.on .blck-02 {
  opacity: 1;
  visibility: visible;
  transition: 1s linear .75s
}
.global-nav .blck-02 ul {
  display: inline-block
}
.global-nav .blck-02 li {
  display: block;
  padding-right: 1em;
  font-size: 18px;
}
.global-nav .blck-02 li + li {
  margin-top: 2em
}
.global-nav .blck-02 li a {
  color: #fff;
  letter-spacing: 0.14em;
  line-height: 1.3;
  transition: color .3s ease;
}
.global-nav .blck-02 li a:hover {
  color: #c8b57a
}




/*footer関連
=============================*/
.page-footer {
  position: relative;
}
.back-to-page-top {
  position: absolute;
  right: 0;
  top: -97px;
  display: block;
  width: 97px;
  height: 97px
}
.back-to-page-top.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  top: auto
}
.back-to-page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: #fff;
  background-color: #181818;
  transition: background-color .3s ease
}
.back-to-page-top a:hover {
  background-color: var(--light-color)
}
.page-footer .blck {
  display: block;
  width: 100%;
  color: #fff
}



/*上段*/
.page-footer .blck-01 {
  font-family: 'Noto Serif JP', serif;
  height: 250px;
  background: rgba(0, 0, 0, .7) url(/files/user/img/img-footer_pc.jpg?v=1682066096) no-repeat center center / cover;
  background-blend-mode: darken
}
.page-footer .blck-01 .blck-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1520px;
  padding: 0 72px;
  margin: 0 auto;
}
.page-footer .blck-01 h2 {
  font-weight: 400;
  margin-right: auto;
}
.page-footer .blck-01 h2 span {
  display: inline-block
}
.page-footer .blck-01 h2 .en-txt {
  font-size: 45px;
  letter-spacing: .085em
}
.page-footer .blck-01 h2 .jp-title {
  font-size: 18px;
  letter-spacing: .13em;
  margin-top: 16px;
}
.page-footer .contact-set {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-footer .tel {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: 45px
}
.page-footer .tel a {
  font-size: 34px;
  pointer-events: none
}
.page-footer .tel .time {
  display: inline-block;
  font-size: 12px;
  margin-top: 16px;
}
.page-footer .footer-btn {
  display: flex;
  justify-content: space-between;
  width: 740px;
}
.page-footer .gradation-btn {
  font-size: 14px;
  letter-spacing: 0.06em;
  width: 360px;
  height: 72px;
}
@media (max-width: 1662px) {
  .page-footer .footer-btn {
    width: calc(740/1662*100vw);
  }
  .page-footer .gradation-btn {
    width: calc(360/1662*100vw);
  }
}
@media (max-width: 1421px) {
  .page-footer .tel {
    margin-right: calc(22/1421*100vw);
    transition: .3s
  }
}
@media (max-width: 1350px) {
  .page-footer .blck-01 h2 .en-txt {
    font-size: calc(45/1350*100vw);
  }
}
@media (max-width: 1275px) {
  .page-footer .tel a {
    font-size: calc(34/1275*100vw);
  }
}
@media (max-width: 1199px) {
  .page-footer .blck-01 .blck-inner {
    padding: 0 calc(50/1199*100vw);
  }
  .page-footer .blck-01 h2 .en-txt {
    font-size: 38px;
  }
  .page-footer .tel a {
    font-size: 30px;
  }
  .page-footer .footer-btn {
    width: calc(530/1199*100vw);
  }
  .page-footer .gradation-btn {
    width: calc(260/1199*100vw);
  }
}
@media (max-width: 1100px) {
  .page-footer .blck-01 .blck-inner {
    transition: .3s
  }
  .page-footer .footer-btn {
    width: calc(530/1199*78.8vw);
    transition: .3s
  }
  .page-footer .gradation-btn {
    width: calc(260/1199*78.8vw);
    transition: .3s
  }
}
@media (max-width: 939px) {
  .page-footer .blck-01 h2 .en-txt {
    font-size: calc(38/939*100vw);
  }
  .page-footer .blck-01 h2 .jp-title {
    font-size: calc(18/939*100vw);
  }
  .page-footer .tel a {
    font-size: calc(30/939*100vw);
  }
}



/*下段*/
.page-footer .blck-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  background-color: #181818;
}
.page-footer .blck-02 .blck-inner {
  display: block;
  width: 100%;
  max-width: 1664px;
  padding: 0 72px
}
.page-footer .blck-02 .blck-inner-02 {
  display: flex;
  justify-content: space-between
}
@media (max-width: 1540px) {
  .page-footer .blck-02 .logo {
    flex: 0 1 calc(700/1540*100vw)
  }
}
.page-footer .blck-02 .logo a {
  display: block;
  width: 75px;
  height: 109px;
  opacity: 1;
  transition: opacity .4s ease;
}
.page-footer .blck-02 .logo a:hover {
  opacity: .6;
}
.page-footer .blck-02 .links {
  display: flex;
  flex: 0 1 808px;
}
.page-footer .blck-02 .links .sitemap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: 220px;
  flex: 0 1 735px;
}
@media (max-width: 1200px) {
  .page-footer .blck-02 .blck-inner {
    padding: 0 calc(50/1200*100vw)
  }
  .page-footer .blck-02 .logo {
    flex-basis: calc(250/1200*100vw);
    min-width: calc(200/940*100vw)
  }
}
.page-footer .blck-02 .links .sitemap li {
  display: inline-block;
  margin-bottom: 2em;
  font-size: 14px;
}
.page-footer .sitemap li a {
  transition: color .3s ease
}
.page-footer .sitemap li a:hover {
  color: #887944
}
.page-footer .sns-btn {
  display: flex;
  justify-content: space-between;
  width: 72px;
  flex: 0 0 72px;
}
.page-footer .sns-btn li {
  display: inline-block;
  width: 26px;
  height: 26px
}
.page-footer .sns-btn a {
  font-size: 26px;
}
.page-footer .copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-top: 40px;
}