@charset "UTF-8";
/*===============================================
●common.css  全体で使用する変数や装飾を定義
===============================================*/
/*--------------------------------------------
		変数設定
--------------------------------------------*/
/*--------------------------------------------
		共通スタイル設定処理
--------------------------------------------*/
/*--------------------------------------------
		サイト基本設定
--------------------------------------------*/
body {
  font-style: normal;
  font-weight: normal;
  line-height: 1.8em;
  font-family: "Noto Sans JP", "Yu Gothic", "メイリオ", "ＭＳ ゴシック", sans-serif;
  color: #1E1815;
}

.nl-s-fonttype-ltitle {
  font-family: "RocknRoll One", sans-serif;
}

.nl-s-fontweightbold-text {
  font-weight: 700;
}

.nl-s-basecolor-main {
  background-color: #FFF5E0;
  z-index: -50;
}

.nl-s-fontcolorred-nl {
  color: #A41200;
}

.nl-s-fontcolorblue-nl {
  color: #073E73;
}

a {
  color: inherit;
  text-decoration: none;
}

.nl-s-verreverse-img {
  transform: scale(1, -1);
}

.nl-s-horreverse-img {
  transform: scale(-1, 1);
}

.nl-s-titledeco-title {
  display: inline-block;
  position: relative;
}

.nl-s-titleunderdeco-title {
  display: inline-block;
  position: relative;
}

.nl-s-backblack-back {
  background-color: #1E1815;
}

.nl-s-backbeige-back {
  background-color: #FFF5E0;
}

.nl-s-backbrown-back {
  background-color: #D9BA97;
}

.nl-s-backwhite-back {
  background-color: #FFFFFF;
}

.nl-s-textwhite-text {
  color: #FFFFFF;
}

.nl-l-layout-otherpagetop {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.nl-l-nl-headtitlecontainer {
  display: flex;
  align-items: center;
}

.nl-l-nl-otherpheadtitle {
  height: -moz-fit-content;
  height: fit-content;
}

.nl-s-textshadow-nl {
  text-shadow: 2px 2px #FFFFFF;
}

.nl-s-nl-breadcrumbcontainer {
  margin: 0;
  display: flex;
}
.nl-s-nl-breadcrumbcontainer li:not(li:nth-of-type(1)) {
  margin-left: 10px;
}
.nl-s-nl-breadcrumbcontainer li:not(li:nth-of-type(1)):before {
  content: ">";
  margin-right: 10px;
}

.nl-a-hoverpointer-nl {
  cursor: pointer;
}

nav a:hover {
  color: #a18678;
  transition: 0.2s;
}

.nl-a-hoveranime-btn:hover {
  filter: opacity(80%);
  transition: 0.2s;
}

#chac-a-tabanime-daytext {
  opacity: 0;
}

#chac-a-tabanime-daytext.show {
  opacity: 1;
}

#chac-a-tabanime-daytext.hidden {
  opacity: 0;
}

#chac-a-tabanime-nighttext.show {
  opacity: 1;
}

#chac-a-tabanime-nighttext.hidden {
  opacity: 0;
}

.gl-s-nl-accordioncontainer:hover {
  filter: opacity(70%);
  transition: 0.2s;
}

.gl-s-nl-accordioncontainer {
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.gl-s-nl-accordionbtn_open {
  padding-top: 5px;
  width: 30px;
  margin: 0 auto;
}

.gl-s-nl-accordionbtnclose {
  padding-bottom: 5px;
  margin: 0 auto;
}

#gl-a-nl-closecotainer {
  display: none;
}

#gl-a-nl-closecotainer.show {
  display: block;
}
#gl-a-nl-closecotainer.show .gl-s-nl-accordionbtnclose, #gl-a-nl-closecotainer.show #gl-a-nl-accordionclose {
  display: block;
}

#gl-a-nl-closecotainer.hidden {
  display: none;
}
#gl-a-nl-closecotainer.hidden .gl-s-nl-accordionbtnclose, #gl-a-nl-closecotainer.hidden #gl-a-nl-accordionclose {
  display: none;
}

#gl-a-nl-opencotainer.show {
  display: block;
}
#gl-a-nl-opencotainer.show .gl-s-nl-accordionbtn_open, #gl-a-nl-opencotainer.show #gl-a-nl-accordionopen {
  display: block;
}

#gl-a-nl-opencotainer.hidden {
  display: none;
}
#gl-a-nl-opencotainer.hidden .gl-s-nl-accordionbtn_open, #gl-a-nl-opencotainer.hidden #gl-a-nl-accordionopen {
  display: none;
}

.gl-a-imgshow-hiddenimg {
  display: none;
}

.loader-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #FFFFFF;
}

.loader-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.loader-container-l {
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 35%;
}

.loader-img-container {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  margin: 0 auto;
}

.loader-imgleft {
  position: absolute;
  top: -70px;
  left: 30px;
  width: 60px;
  height: auto;
  animation: loaderimgleft_anime 0.5s ease-out infinite;
}

.loader-imgright {
  position: absolute;
  top: -70px;
  right: 60px;
  width: 50px;
  height: auto;
  animation: loaderimgright_anime 0.5s ease-out infinite;
}

@keyframes loaderimgleft_anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(27deg);
  }
}
@keyframes loaderimgright_anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-27deg);
  }
}
.loader-text {
  margin-top: 20px;
  z-index: 13;
  --c: $color_black;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  color: #1E1815;
  overflow: hidden;
  text-shadow: 0 0 var(--c), 11ch 0 var(--c);
  animation: l1 1s linear infinite alternate;
}

.loader-text:before {
  content: "読み込み中...";
}

@keyframes l1 {
  to {
    opacity: 0;
  }
}
/*ページ読み込み終わったらローダーを消す*/
#spinnerback1.loaded, #spinnerback2.loaded, #spinnerback3.loaded {
  animation: loaderfade 0.5s forwards;
}

@keyframes loaderfade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/*===============================================
●page_pc.css  画面の横幅が850px以下の場合の装飾を定義
===============================================*/
@media print, screen and (max-width: 850px) {
  /*--------------------------------------------
  		変数設定
  --------------------------------------------*/
  /*--------------------------------------------
  		サイト基本設定
  --------------------------------------------*/
  body {
    background-size: 100%;
    display: block;
    font-size: 14px;
    line-height: 1.6em;
  }
  .nl-l-changeimg-imgsp {
    display: block;
  }
  .nl-l-changeimg-imgtb {
    display: none;
  }
  .nl-l-changeimg-imgpc {
    display: none;
  }
  .nl-s-spbr-nl {
    display: block;
  }
  .nl-s-fontsizesp-catchcopy {
    font-size: 35px;
    line-height: 1.7em;
  }
  .nl-s-fontsize1-text {
    font-size: 40px;
  }
  .nl-s-fontsize2sp-text {
    font-size: 30px;
  }
  .nl-s-fontsize2-text {
    font-size: 30px;
  }
  .nl-s-fontsize3-text {
    font-size: 16px;
  }
  .nl-s-fontsize5-text {
    font-size: 14px;
  }
  .nl-s-fontstyle-catchcopy {
    -webkit-text-stroke: 1px white;
    font-weight: normal;
  }
  .nl-s-titledeco-title:before {
    top: -10%;
    left: -50px;
    content: url(../img/SP/title_deco_red_sp.png);
    position: absolute;
  }
  .nl-s-titledeco-title:after {
    top: -10%;
    right: -50px;
    content: url(../img/SP/title_deco_blue_sp.png);
    position: absolute;
  }
  .nl-s-titleunderdeco-title:after {
    content: url(../img/SP/otherp_subtitle_deco_sp.png);
    position: absolute;
    top: 100%;
    left: 0px;
  }
  .nl-s-titledeco-titleday:after {
    top: -70%;
    left: 120%;
  }
  .nl-s-titledeco-titlenight:after {
    top: -70%;
    left: 120%;
  }
  .nl-l-center-container {
    width: 290px;
    margin: 0 auto;
  }
  .nl-l-center-title {
    text-align: center;
  }
  .nl-s-btnsize-blackbtn {
    width: 208px;
    height: 50px;
  }
  .nl-l-btnlayout-blackbtn {
    padding: 14px 0;
  }
  .nl-l-btntextlayout-blackbtn {
    margin: 0 auto;
    width: 175px;
    height: 22px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .nl-s-textvertical-text {
    writing-mode: vertical-rl;
  }
  .nl-s-deco-verticaltitle:before {
    content: url(../img/SP/title_deco_red_sp.png);
  }
  .nl-s-deco-verticaltitle:after {
    content: url(../img/SP/title_deco_blue_sp.png);
  }
  .nl-s-nl-strengthtextcontainer {
    display: flex;
    flex-wrap: nowrap;
  }
  .nl-s-nl-strengthtext {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  .nl-l-layout-otherpagetop {
    width: 100%;
    height: 150px;
  }
  .nl-l-nl-otherpheadleft {
    position: relative;
    top: 5px;
    left: 5px;
  }
  .nl-l-nl-otherpheadright {
    position: relative;
    top: 5px;
    right: 5px;
  }
  .nl-s-nl-breadcrumbcontainer {
    padding: 10px 0 50px 10px;
  }
  /*--------------------------------------------
  		ヘッダー
  --------------------------------------------*/
  .hd-l-nl-container {
    position: fixed;
    z-index: 10;
    height: 76px;
    background-color: #FFFFFF;
    width: 100%;
    padding: 10px 15px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .hd-l-nl-hamburgermenu {
    margin-top: 13px;
  }
  .nl-l-headerheightadjust-nl {
    padding-top: 76px;
  }
  .hd-l-nl-navcontainer {
    display: none;
  }
  #hd-a-spmenuanime-menu {
    display: none;
  }
  #hd-a-spmenuanime-closebtn {
    display: none;
    margin-top: 8px;
  }
  #hd-a-spmenuanime-menu.show {
    position: fixed;
    z-index: 3;
    display: block;
    background-color: #1E1815;
    color: #FFFFFF;
    top: 76px;
    width: 298px;
    right: calc(50% - 149px);
    animation: slideinmenu 1s forwards;
  }
  #hd-a-spmenuanime-menu.show li {
    padding: 20px 0 20px 30px;
  }
  #hd-a-spmenuanime-menu.show li:not(li:last-of-type) {
    border-bottom: 1px solid;
  }
  @keyframes slideinmenu {
    0% {
      transform: translateY(-400px);
    }
    100% {
      transform: translateY(0);
    }
  }
  #hd-a-spmenuanime-closebtn.show {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  #hd-a-spmenuanime-openbtn.hidden {
    display: none;
  }
  /*--------------------------------------------
  		フッター
  --------------------------------------------*/
  .fot-s-nl-logo {
    width: 130px;
    margin-bottom: 10px;
  }
  .fot-l-nl-allcontainer {
    padding: 30px 0 0 0;
    display: flex;
    flex-wrap: wrap;
  }
  .fot-l-nl-container1 {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .fot-l-nl-container1 .fot-s-nl-logo {
    margin: 0 auto;
  }
  .fot-l-nl-outlink {
    margin-top: 50px;
  }
  .nl-l-nl-listcontent a {
    display: flex;
    flex-wrap: nowrap;
  }
  .nl-s-nl-outlinkicon {
    margin: 0;
    width: 30px;
    height: auto;
  }
  .fot-l-nl-container2 {
    margin: 50px 0 50px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .fot-l-nl-container2left {
    width: 290px;
    margin-bottom: 30px;
  }
  .fot-l-nl-telcontainer {
    display: flex;
    flex-wrap: nowrap;
  }
  .fot-l-nl-contacttitle {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .fot-l-nl-telicon {
    width: 40px;
    height: 40px;
  }
  .fot-l-nl-telnum {
    margin-top: 5px;
  }
  .fot-l-nl-container2right {
    width: 290px;
  }
  .fot-l-nl-storeinfo {
    margin-bottom: 30px;
  }
  .fot-s-nl-scheduletable table {
    text-align: center;
    border-collapse: collapse;
  }
  .fot-s-nl-scheduletable table th, .fot-s-nl-scheduletable table td {
    padding: 5px 7px 5px 7px;
  }
  .fot-s-nl-scheduletable table tr:not(tr:last-of-type) {
    border-bottom: 2px solid #FFFFFF;
  }
  .fot-s-nl-scheduletable table .noborder {
    border: none;
  }
  .fot-s-nl-scheduletable table .timerow-th, .fot-s-nl-scheduletable table .timerow-td {
    width: 100px;
    padding-right: 10px;
  }
  .fot-s-nl-scheduletable table .fot-s-fontsize-scheduletitle {
    font-size: 12px;
    font-weight: 400;
  }
  .fot-s-nl-scheduletable .scheduletable-text {
    margin-top: 20px;
  }
  .fot-s-nl-googlemap {
    padding-bottom: 50px;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .fot-s-nl-googlemap iframe {
    width: 80vw;
  }
  .fot-l-nl-copyright {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  /*--------------------------------------------
  		トップページ
  --------------------------------------------*/
  .imv-s-nl-mainvisualcontainer {
    width: 100%;
    height: 560px;
  }
  .imv-s-nl-mainvisualcontainer::before {
    content: "";
    width: 100%;
    height: 560px;
    position: absolute;
    left: 0;
    top: 76px;
    background-image: url(../img/SP/main_visual_sp.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 0;
  }
  .imv-l-nl-catchcopy {
    position: relative;
    transform: rotate(-9deg);
    top: 300px;
    left: 10px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .iov-l-nl-backcolorupper {
    margin-top: -50px;
    position: relative;
    top: -50px;
    width: 100vw;
  }
  .iov-l-nl-backcolorbottom {
    margin-top: -52px;
    position: relative;
    top: 50px;
    width: 100vw;
    z-index: 1;
  }
  .iov-l-nl-backcolor {
    margin-top: -52px;
    position: relative;
    z-index: 1;
  }
  .iov-l-nl-container {
    padding: 60px 0 60px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .iov-l-nl-textcontainer {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .iov-l-nl-upperdeco {
    margin-bottom: 40px;
  }
  .iov-l-nl-bottomdeco {
    margin-top: 40px;
  }
  .ienj-s-nl-title {
    line-height: 1.7em;
  }
  .ienj-l-nl-container {
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
  }
  .ienj-l-nl-listcontainer {
    margin-bottom: 100px;
  }
  .ienj-l-nl-list {
    margin-top: 70px;
    margin-bottom: 70px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .ienj-l-nl-list:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .ienj-s-nl-subtitle {
    margin-right: 16px;
  }
  .ienj-s-nl-subtitleeven {
    margin-left: 16px;
  }
  .ienj-s-nl-img {
    margin-bottom: 15px;
  }
  .ienj-l-nl-imgtext, .ienj-l-nl-imgtexteven {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .ienj-l-nl-listtextcontainer {
    display: flex;
    align-items: center;
  }
  .ienj-s-nl-img {
    width: 240px;
    height: 240px;
  }
  .ienj-s-nl-enjoydeco1 {
    height: 130px;
    width: auto;
    position: absolute;
    top: 250px;
    right: 20px;
  }
  .ienj-s-nl-enjoydeco2 {
    height: 100px;
    width: auto;
    position: absolute;
    top: 800px;
    left: 5px;
  }
  .ienj-s-nl-enjoydeco3 {
    height: 130px;
    width: auto;
    position: absolute;
    top: 1300px;
    right: 20px;
  }
  .icha-s-titledeco-titleday {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
  }
  .icha-s-titledeco-titleday:after {
    content: url(../img/SP/fee_sun_sp.png);
    position: absolute;
    left: 155px;
    top: 1px;
  }
  .icha-s-titledeco-titlenight {
    display: inline-block;
    position: relative;
  }
  .icha-s-titledeco-titlenight:after {
    content: url(../img/SP/fee_moon_sp.png);
    position: absolute;
    left: 155px;
    top: 1px;
  }
  .icha-l-nl-backcolorupper {
    margin-top: -150px;
    position: relative;
    top: -50px;
    width: 100vw;
  }
  .icha-l-nl-backcolorbottom {
    margin-top: -52px;
    position: relative;
    top: 50px;
    width: 100vw;
    z-index: 1;
  }
  .icha-l-nl-backcolor {
    margin-top: -52px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  .icha-l-nl-container {
    padding-top: 50px;
  }
  .icha-s-nl-chargelistcontainer {
    display: flex;
    flex-wrap: no-wrap;
  }
  .icha-s-nl-chargecontainer2 {
    width: -moz-fit-content;
    width: fit-content;
  }
  .icha-s-nl-daycharge1 {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 30px;
  }
  .icha-s-nl-chargecontainer {
    display: flex;
    flex-wrap: wrap;
    width: -moz-fit-content;
    width: fit-content;
  }
  .icha-s-nl-chargecontainer .icha-s-nl-listsubtitle, .icha-s-nl-chargecontainer .icha-s-nl-daycharge {
    width: -moz-fit-content;
    width: fit-content;
  }
  .icha-l-nl-glassredsp {
    width: 70px;
    height: auto;
    padding-top: 40px;
  }
  .icha-l-nl-glassbluesp {
    width: 50px;
    height: auto;
    padding-top: 60px;
  }
  .icha-l-nl-contentcontainer {
    display: flex;
    flex-wrap: nowrap;
  }
  .icha-l-nl-listcontainer {
    margin: 90px 0 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .icha-l-nl-list {
    width: 290px;
  }
  .icha-s-nl-toppin {
    width: 95%;
    position: relative;
    top: 10px;
    margin: 0 auto;
  }
  .icha-l-nl-listcontentcontainerday {
    background-color: #FFFFFF;
    height: 460px;
  }
  .icha-l-nl-listcontentcontainernight {
    background-color: #FFFFFF;
    height: 490px;
  }
  .icha-l-nl-listnight {
    margin-top: 45px;
  }
  .icha-l-nl-listcontent {
    padding: 50px 20px 50px 20px;
  }
  .icha-s-nl-strengthtextcontainer {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px auto;
  }
  .icha-s-nl-listtitle {
    font-size: 30px;
  }
  .icha-s-nl-listtitlelarge {
    font-size: 30px;
  }
  .icha-s-nl-charge {
    font-size: 48px;
  }
  .icha-s-nl-chargesmall {
    font-size: 24px;
  }
  .icha-s-nl-nightcharge {
    margin: 30px 0 30px 0;
  }
  .icha-s-nl-listsubtitle {
    margin-bottom: 20px;
  }
  .icha-s-nl-nightcharge1 {
    margin-bottom: 30px;
  }
  .icha-s-nl-chargeinfo p::before {
    content: "◆";
  }
  .icha-s-nl-chargeinfo p {
    margin-bottom: 10px;
  }
  .icha-l-nl-btn {
    margin-left: auto;
  }
  .istf-l-nl-container {
    margin: 130px 0 450px 0;
    position: relative;
  }
  .istf-l-nl-text {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: 80px;
  }
  .istf-l-nl-staffimg {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    margin-top: 40px;
  }
  .istf-l-nl-womanimg {
    width: 65px;
    height: auto;
    position: absolute;
    left: 10px;
  }
  .istf-l-nl-manimg {
    max-width: 150px;
    height: auto;
    position: absolute;
    top: 30px;
    right: 10px;
  }
  .iint-l-nl-lastlist {
    margin-top: 50px;
  }
  .iint-l-nl-backcolorupper {
    margin-top: -150px;
    position: relative;
    top: -50px;
    width: 100vw;
  }
  .iint-l-nl-backcolor {
    margin-top: -52px;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
  }
  .iint-l-nl-listcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 90px 0 60px 0;
  }
  .iint-s-nl-strengthtextcontainer {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px auto;
  }
  .iint-l-nl-listtext {
    margin-top: 25px;
  }
  .iint-l-nl-btn {
    margin-left: auto;
  }
  .iint-l-nl-interiorimglist {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .iint-l-nl-interiorimglist img {
    width: 425px;
  }
  .iint-a-slider-interiorlist img {
    width: 100%;
    height: auto;
    filter: brightness(0.8);
  }
  /*--------------------------------------------
  		アクセスページ
  --------------------------------------------*/
  .acc-s-background-headvisual {
    background-image: url(../img/SP/accessp_title_backimg_sp.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .ac-s-nl-googlemap {
    margin-bottom: 150px;
  }
  .ac-s-nl-googlemap iframe {
    width: 290px;
  }
  .ac-l-nl-contentcontainer, .rout-l-nl-contentcontainer {
    margin-top: 50px;
  }
  .ac-l-nl-time {
    margin-bottom: 30px;
  }
  .ac-l-nl-address {
    margin-bottom: 30px;
  }
  .ac-s-nl-googlemap {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 80px;
  }
  .ac-s-nl-googlemap iframe {
    width: 80vw;
  }
  .rout-l-nl-title {
    padding-top: 50px;
  }
  .rout-l-nl-backcolorupper {
    position: relative;
    top: 2px;
    width: 100vw;
  }
  .rout-l-nl-routelist {
    margin-bottom: 110px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .rout-s-nl-guidemapimg {
    width: 290px;
    height: 180px;
  }
  .rout-l-nl-routelisttext {
    width: 290px;
  }
  .rout-l-arrow-routelist::after {
    content: url(../img/SP/accessp_arrowbalack_sp.png);
    position: absolute;
    top: 380px;
    left: 110px;
  }
  .rout-l-nl-routelistright {
    margin-top: 10px;
  }
  .rout-l-nl-routelistright h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .rout-l-nl-neonsigntextcontainer {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px;
  }
  .rout-l-nl-neonsign {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 150px;
  }
  /*--------------------------------------------
  		料金体系ページ
  --------------------------------------------*/
  .chac-s-background-headvisual {
    background-image: url(../img/SP/feep_title_backimg_sp.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .chac-s-fontsize-title {
    font-size: 16px;
  }
  .chac-s-fontsizelarge-title {
    font-size: 24px;
  }
  .chac-s-nl-strengthtextcontainer {
    width: 180px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .chac-l-nl-changetabcontainer {
    display: flex;
    flex-wrap: nowrap;
  }
  .chac-l-nl-tabdaycontainer {
    width: 150px;
  }
  .chac-l-nl-tabdaycontainer .chac-s-nl-titledaycontainer {
    padding: 15px 0 0 15px;
    width: 150px;
    height: 55px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .chac-l-nl-tabnightcontainer {
    width: 150px;
  }
  .chac-l-nl-tabnightcontainer .chac-s-nl-titlenightcontainer {
    padding: 15px 0 0 15px;
    width: 150px;
    height: 55px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .chac-s-titledeco-titleday {
    display: inline-block;
    position: relative;
  }
  .chac-s-titledeco-titleday:after {
    content: url(../img/SP/fee_sun_sp.png);
    position: absolute;
    left: 92px;
    top: 1px;
  }
  .chac-s-titledeco-titlenight {
    display: inline-block;
    position: relative;
  }
  .chac-s-titledeco-titlenight:after {
    content: url(../img/SP/fee_moon_sp.png);
    position: absolute;
    left: 92px;
    top: 1px;
  }
  .day-l-nl-daycontainer {
    padding-top: 50px;
    padding-bottom: 200px;
  }
  .day-l-nl-contentcontainer1 {
    display: flex;
    flex-wrap: wrap;
  }
  .day-l-nl-text {
    width: 500px;
    order: 2;
  }
  .day-l-nl-karaokeimg {
    width: 290px;
    height: auto;
    order: 1;
    margin-bottom: 20px;
  }
  .day-l-nl-contentcontainer2 {
    margin-top: 30px;
    padding: 0 25px;
    display: flex;
    flex-wrap: wrap;
    height: 390px;
  }
  .day-l-nl-daychargeinfocontainer {
    display: flex;
    flex-wrap: wrap;
  }
  .day-s-nl-pin {
    width: 95%;
    height: 10px;
    position: relative;
    top: 20px;
    margin: 0 auto;
  }
  .day-l-nl-daychargecontainer {
    width: 290px;
  }
  .day-l-nl-daychargecontainer .day-s-nl-daychargeinner {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
  }
  .day-l-nl-daychargecontainer .day-s-nl-daychargeinner h4 {
    padding-bottom: 10px;
  }
  .day-l-nl-daychargecontainer .day-s-nl-daychargeinner .day-s-fontsize-daychargeval {
    font-size: 48px;
  }
  .day-s-nl-dayinfocontainer {
    width: 290px;
  }
  .day-s-nl-dayinfocontainer .day-s-nl-dayinfoinner {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 20px;
  }
  .day-s-nl-dayinfocontainer p::before {
    content: "◆";
  }
  .day-s-nl-dayinfocontainer p {
    margin-bottom: 25px;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: #A41200;
  }
  .nig-l-nl-text {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .nig-l-nl-contentcontainer {
    display: flex;
    flex-wrap: wrap;
    padding: 0 25px;
    height: 800px;
  }
  .nig-s-nl-pin {
    width: 95%;
    height: 10px;
    position: relative;
    top: 10px;
    margin: 0 auto;
  }
  .nig-l-nl-nigchargeinfocontainer {
    display: flex;
    flex-wrap: wrap;
  }
  .nig-l-nl-othersliquortext {
    width: 85%;
  }
  .nig-l-nl-nigchargecontainer {
    width: 290px;
  }
  .nig-l-nl-nigchargecontainer .nig-s-nl-nigchargeinner {
    width: 290px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: 45px;
  }
  .nig-l-nl-nigchargecontainer .nig-s-nl-nigchargeinner h4 {
    padding-bottom: 10px;
  }
  .nig-l-nl-nigchargecontainer .nig-s-nl-nigchargeinner .nig-s-fontsize-nigchargeval {
    font-size: 48px;
  }
  .nig-s-nl-niginfocontainer {
    width: 290px;
  }
  .nig-s-nl-niginfocontainer .nig-s-nl-niginfoinner {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 45px;
  }
  .nig-s-nl-niginfocontainer p::before {
    content: "◆";
  }
  .nig-s-nl-niginfocontainer p {
    margin-bottom: 25px;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: #073E73;
  }
  .nig-l-nl-nigchargemenu1 {
    margin-bottom: 45px;
  }
  .nig-l-nl-liquortitle {
    width: 290px;
    margin-bottom: 10px;
  }
  .nig-l-nl-othersliquortitle {
    margin-bottom: 10px;
  }
  .nig-l-nl-liquorlist {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .nig-l-nl-keepimg1 {
    width: 700px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .nig-l-nl-keepimg2 {
    width: 700px;
    height: auto;
    margin-left: auto;
    padding-bottom: 180px;
  }
  .chac-l-nl-main {
    position: relative;
  }
  .chac-l-nl-deco {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  /*--------------------------------------------
  		店内案内ページ
  --------------------------------------------*/
  .intc-s-background-headvisual {
    background-image: url(../img/SP/intep_title_backimg_sp.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .gl-l-nl-gallerylistcontainer {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .gl-s-nl-accordioncontainer {
    padding-top: 20px;
    padding-bottom: 200px;
  }
  .gl-s-nl-accordionbtn_open {
    width: 30px;
    height: auto;
  }
  .gl-s-nl-accordionbtnclose {
    width: 30px;
    height: auto;
  }
  .seat-l-nl-backcolorupper {
    margin-top: -150px;
    position: relative;
    width: 100vw;
  }
  .seat-l-nl-section {
    margin-top: -2px;
    padding-top: 100px;
  }
  .seat-l-nl-title {
    margin-bottom: 50px;
  }
  .seat-l-nl-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .seat-s-nl-smokeicon {
    width: 60px;
    height: 60px;
  }
  .seat-l-nl-smokecontainer {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .seat-l-nl-smokecontainer p {
    margin-top: 15px;
    margin-left: 15px;
  }
  .seat-l-nl-seatimg {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  /*--------------------------------------------
  		採用情報ページ
  --------------------------------------------*/
  .emp-s-background-headvisual {
    background-image: url(../img/SP/recruitp_title_backimg_sp.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .emp-l-nl-list:not(.emp-l-nl-list:last-of-type) {
    margin-bottom: 25px;
  }
  .emp-l-nl-list:last-of-type {
    padding-bottom: 50px;
  }
  .emp-l-nl-list {
    display: flex;
    flex-wrap: wrap;
  }
  .emp-l-nl-list h3 {
    width: 290px;
  }
  .emp-l-nl-telcontainer {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
  }
  .emp-l-nl-telnum {
    font-weight: bold;
    margin-top: 10px;
  }
  .emp-s-underline-nl {
    border-bottom: 1px solid;
    border-color: #1E1815;
  }
}
/*===============================================
		画面の横幅が550px以上の場合の装飾を定義
===============================================*/
@media print, screen and (min-width: 550px) {
  /*--------------------------------------------
  		トップページ
  --------------------------------------------*/
  .imv-s-nl-mainvisualcontainer {
    width: 100%;
    height: 900px;
  }
  .imv-s-nl-mainvisualcontainer::before {
    content: "";
    width: 100%;
    height: 900px;
    position: absolute;
    left: 0;
    top: 76px;
    background-image: url(../img/SP/main_visual_tb.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 0;
  }
  .imv-l-nl-catchcopy {
    font-size: 50px;
    position: relative;
    transform: rotate(-9deg);
    top: 550px;
    left: 30px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .iov-l-nl-backcolorupper {
    margin-top: -100px;
  }
  .iov-l-nl-backcolorbottom {
    margin-top: -53px;
  }
  .iov-l-nl-backcolor {
    margin-top: -53px;
  }
  .icha-l-nl-backcolorupper {
    margin-top: -150px;
  }
  .icha-l-nl-backcolorbottom {
    margin-top: -53px;
  }
  .icha-l-nl-backcolor {
    margin-top: -53px;
  }
  .iint-l-nl-backcolorupper {
    margin-top: -150px;
  }
  .iint-l-nl-backcolor {
    margin-top: -53px;
  }
}/*# sourceMappingURL=page_sp.css.map */