<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */



    
.container {
  overflow: hidden;
  position: relative;
}

.main {
  background-color: #FCFAFA;
}

.pc_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.pc_bg img {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

h3.title {
  margin: 0px 0px 40px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.8px;
  /* opacity: 0; */
}

h3.title  span {
  font-size: 30px;
  letter-spacing: 0.8px;
  font-family: 'Lora';
}

/* ハンバーガーメニュー */

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #FCFAFA;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*ナビゲーションの縦スクロール*/
/* #g-nav.panelactive #g-nav-list { */
  /*ナビの数が増えた場合縦スクロール*/
  /* position: fixed;
  z-index: 999;
  width: 100%; */
  /* height: 100vh;  */
  /*表示する高さ*/
  /* overflow: auto;
  -webkit-overflow-scrolling: touch; */
/* } */

/*ハンバーガー開いた時のナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #612026;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 34px;
  font-size: 2.0rem;
  font-family: 'Lora';
  font-weight: 500;
}

#g-nav rt {
  font-family: "Noto Serif JP";
}

.gnav_sns {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translatex(-50%);
}

.gnav_Instagram {
  width: 6.1%;
  min-width: 30px;
}

.gnav_line {
      width: 6.1%;
    min-width: 30px;
    margin-left: 10%;

}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 15px;
  right: 5%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #612026;
  width: 45%;
  margin: 0 auto;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}


/* ページリンクボタンのためのCSS */

/* .btn { 
  display: inline-block; 
  padding: .75em 3.75em; 
  min-width: 300px; 
  color: #612026; 
  font-size: 18px; 
  font-weight: 500; 
  letter-spacing: 0.8px; 
	text-decoration: none;
  text-align: center; 
  border: 1px solid #612026; 
  position: relative; 
  box-sizing: border-box;
} */

.btn { 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 300px;
  height: 60px;
  color: #612026;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-decoration: none;
  border: 1px solid #612026;
  border-radius: 35px;
  margin: 40px auto;
}



.btn::before { 
  display: block; 
  position: absolute; 
  right: 0; top: 50%; 
  transform: translateY(-50%); 
  width: 2.95em;
  height: 1px; 
  background: #612026; 
  content: "";
}

.btn::after { 
  display: block; 
  position: absolute; 
  top: 50%; right: 0; 
  transform: translateY(-50%); 
  width: 5px; height: 5px; 
  background: #612026; 
  content: ""; 
  animation: btn-animate 3s ease infinite;
}

@keyframes btn-animate {
  0% { right: 2.95em; opacity: 0;}
  50% { opacity: 1;}
  100% { right: 0; opacity: 0;}
}

.btn:hover {
  background: #612026;
  color: #FCFAFA;
}



/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  z-index: 3000;
  background-color: #FCFAFA;
  left: 0;
  width: 100%;
}

@media screen and (min-width:769px) {
  .header {
    position: relative;
  }
}


.header_wrapper {
  padding: 24px 24px;
  display: flex;
  border: #612026 1px solid;
  position: relative;
  border-right: none;
  border-left: none;
}

.header_Instagram {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  vertical-align: middle;
}

.header_line {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.shop_tag {
  color: #612026;
  text-decoration: none;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 1.3rem;
  font-family: 'Lora';
  left: 50%;
  transform: translateX(-35%);
  position: absolute;
}

.openbtn {
  text-align: right;
}

/* セクショントップ */
.section_top-inner {
  padding-top: 24px;
}

.main {
  background-color: #FCFAFA;
  margin-top: 80px;
}

@media screen and (min-width:769px) {
  .main {
    margin-top: 0;
  }
  
  }


.main_visual .mv {
  width: 100%;
}

.main_visual {
  text-align: center;
  width: auto;
  margin: 0px auto 40px;
  position: relative;
  padding: 0;
  max-width: 95%;
}

.section_top-inner h1 {
  position: absolute;
  bottom: 2.8%;
  left: 4.1%;
  color: #ffffff;
  font-size: clamp(4rem,13.8vw,8rem);
  font-weight: 400;
  letter-spacing: 0.5rem;
  font-family: 'Lora';
  background-color: rgba(97,32,38,0.6);
}

.top_discription {
  padding:0 24px 40px;
  position: relative;
}

.top_discription::before { 
  content: "";
  background-image: url(../images/top/namigata_ue.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
  padding-top: 15%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transform: translateY(71%);
}

.section_top-inner h2 {
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-align: left;
  margin-bottom: 40px;
}

.section_top-inner span.top_marker {
  font-size: 4.0rem;
  background: linear-gradient(transparent 75%, #E8B0F1 90%);
}

.top_text {
  text-align: left;
  margin-bottom: 40px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.5rem;
  line-height: 2.8rem;
}

.top_text span.atera {
  letter-spacing: 0.2rem;
}

/* セクショントップのPC設定 */
@media screen and (min-width:769px) {
  .mobile_br {
    display: block;
  }
  }

/* オーナー */
.section_owner {
  margin: 40px 0px;
  padding: 40px 0px;
  position: relative;
  background-color: #faf3f4;
}


.section_owner::before { 
  content: "";
  width: 200%;
  height: 50%;
  background-image: url(../images/top/namigata_sita.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.5);
  position: absolute;
  left: -50%;
  bottom: -32%;
}


/* .section_owner_photo {
  margin: 0 0 40px;
}
 */
.owner_discription {
  margin: 24px 24px 40px 36px;
}

.owner_subtitle {
  font-family: 'Lora';
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.5rem;
  margin: 24px 0;
  text-align: left;
}

.owner_subtitle span.sangmi {
  font-family: 'Noto Serif JP';
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.section_owner p {
  text-align: left;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.4rem;
  line-height: 2.8rem;
  margin-bottom: 40px;
}



/* コーディネイト */
.coordinate_inner {
  padding: 40px 0 40px;
  position: relative;
}

.coordinate_inner::before { 
  content: "";
  width: 200%;
  height: 50%;
  background-image: url(../images/top/namigata_ue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.5);
  position: absolute;
  left: -50%;
  bottom: -35%;
}

.coordinate_inner ul {
  display: flex;
  list-style: none;
  max-width: 95%;
  align-items: flex-end;
  justify-content: space-between;
  margin: 40px auto;
}

/* .coordinate_inner li {
  margin: 0 5px;
} */

.coordinate_subtitle {
  margin: 24px 0 24px 24px;
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.3rem;
}

.coordinate_inner span.subtitle_marker {
  font-size: 3.2rem;
  background: linear-gradient(transparent 75%, #F0F1B0 90%);
}

.coordinate_inner p {
  text-align: left;
  margin: 0 24px 40px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.4rem;
  line-height: 2.8rem;
}

.lb-caption {
  font-size: 1.4rem;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.4rem;
}

#lightbox .lb-container { padding: 0px; }
#lightbox .lb-outerContainer { padding: 6px; }

/* サービス */

.service_inner {
  margin: 40px 0px;
  padding: 40px 0px;
  position: relative;
  background-color: #faf3f4;
}

.service_inner::before{ 
  content: "";
  width: 200%;
  height: 100%;
  background-image: url(../images/top/namigata_sita.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.5);
  position: absolute;
  left: -50%;
  bottom: -64%;
  }
  
.service_inner h3 {
  position: relative;
}

.service_inner h3::before {
    content: "";
    width: 100px;
    height: 100px;
    background-image: url(../images/top/service_ue.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: scale(1.3);
    position: absolute;
    left: 10%;
    bottom: 40%;
  }

.service_inner h3::after {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(../images/top/service_sita.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1.3);
  position: absolute;
  left: 85%;
  bottom: -50%;
}

.service_discription {
  margin: 0 24px 40px;
}

.service_text {
  text-align: left;
  margin-bottom: 40px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.3rem;
  line-height: 2.8rem;
}

span.service_text__1 {

}

/* Instagram */
.Instagram_inner {
  margin: 40px 0;
  padding: 40px 0;
  position: relative;
}

.Instagram_inner::before { 
  content: "";
  width: 200%;
  height: 50%;
  background-image: url(../images/top/namigata_ue.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.5);
  position: absolute;
  left: -50%;
  bottom: -33%;
}

  
.btn__01 {
position: relative;
width: fit-content;
margin: 0 auto;
}

.btn__01::before {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(../images/top/sns_Instagram.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.3);
  position: absolute;
  left: -1%;
  bottom: -33%;
}

.btn__01::after {
  content: "";
  width: 100px;
  height: 100px;
  background-image: url(../images/top/gaibu_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(0.15);
  position: absolute;
  left: 62%;
  bottom: -32%;
}

a.btn--nobefore::before {
  display: none;
}
  
a.btn--nobefore::after {
  display: none;
  }
  
/* 店舗情報 */
.information_inner {
  background-color: #faf3f4;
  padding: 95px 0 180px;
  z-index: 999;
}

.information_list {
    background-color: #ffffff;
    padding: 40px 20px;
    border: solid 1px;
    margin: 0 24px 40px;
    text-align: left;
    font-family: 'Noto Sans JP';
    font-weight: 400;
    line-height: 2rem;
    line-height: 2.5rem;
    letter-spacing: 0.4rem;
}

h4.info_title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  font-family: 'Lora';
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: solid #612026 1px;
}

h4.info_title span {
  font-size: 1.4rem;
  font-family: 'Noto Sans JP';
  margin-left: 10px;
}

.information_list address {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  font-style: normal;
}

.information_list span.info_span {
  font-size: 1.4rem;
}

.information_inner iframe {
  max-width: 100%;
  max-height: 100vw;
  margin: 20px 0 40px;
}

.information_list p {
  margin-bottom: 40px;
}

.information_list span.info_span {
  letter-spacing: 0.2rem;
}

.information_inner img {
  vertical-align: bottom;
  margin: -38px -40.5px;
  width: 100px;
  height: 100px;
  transform: scale(0.15);
}
/* フッダー */
.footer {
  height: 300px;
  background-image: url(../images/top/footer_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.footer_logo {
  letter-spacing: 1.2rem;
  color: #fff;
  font-size: 4.0rem;
  font-family: 'Lora';
  font-weight: 400;
  text-decoration: none;
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
    }

.footer_logo span {
    letter-spacing: 0rem;
}

.footer_sns {
  position: absolute;
  bottom: 30%;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
}

.footer_Instagram {
  height: 30px;
}

.footer_line {
  height: 30px;
  margin-left: 36px;
}

.footer_YouTube {
  height: 35px;
  margin-left: 36px;
}

small {
  color: #ffffff;
  font-family: 'Lora';
  font-size: 1.2rem;
  font-weight: 400;
  position: absolute;
  bottom: 10%;
  transform: translateX(-50%);
}


@media screen and (min-width:769px) {
  .footer {
    background-image: none;
  }
  }
  

/* ページトップへ戻るボタン */
/* .pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 1px #612026; */
  /* 丸にしたかったらborder-radiusを50%に */
  /* border-radius: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 2px solid #612026;
  border-right: 2px solid #612026;
  transform: translateY(20%) rotate(-45deg);
} */


/*========= スクロール途中からリンクボタンの形状が変化のためのCSS ===============*/

/*スクロールリンクの形状*/
.scroll-top {
  /*表示位置*/
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden; 
  transition: opacity .5s, visibility .5s; /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  /*改行禁止*/
    white-space: nowrap;
  /*矢印の動き*/
  animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove{
      0%{bottom:20px;}
      50%{bottom:25px;}
     100%{bottom:20px;}
 }


/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
  text-decoration: none;
  color: #612026;
  text-transform: uppercase;
  font-size:0.9rem;
    display: block;
}

@media screen and (min-width:816px) {
  .scroll-top a {
    color: #fff;
  }
}


/*スクロールリンクの形状*/

.js-scroll a::after{
  content:"";
  position: absolute;
  top:0;
  right:0;
  width:1px;
  height: 50px;
  background:#612026;
}

@media screen and (min-width:816px) {
  .js-scroll a::after {
    background: #fff;
  }
}


.js-scroll a::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #612026;
    transform: skewX(-31deg);
}

@media screen and (min-width:816px) {
  .js-scroll a::before {
    background: #fff;
  }
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before{
  right:-11px;
}

/*ページトップリンクの形状*/

.js-pagetop a::after{
  content:"";
  position: absolute;
  top:0;
  right:0;
  width:1px;
  height: 50px;
  background:#612026;
}

@media screen and (min-width:816px) {
  .js-pagetop a::after{
    background: #fff;
  }
}


.js-pagetop a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #612026;
    transform: skewX(31deg);
}

@media screen and (min-width:816px) {
  .js-pagetop a::before {
    background: #fff;
  }
}


/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before{
  right:0;
}


/*==================================================
アニメーション___ふわっ
===================================*/
/* ふわっとその場で */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  


/* fadeUp */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
/* 上から */

.fadeDown{
  animation-name:fadeDownAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeDownAnime{
    from {
      opacity: 0;
    transform: translateY(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  /* 右から */
  
  .fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /* 左から */
  
  .fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeRightAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }  

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}
</pre></body></html>