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

/*ページ全体*/
*{
	margin: 0;
}

/* ヘッダー */
.header{
  position: fixed;
  top: 0px;
  left: 0px;
  height: 5%;
  width: 100vw;
  padding: 20px;
  z-index: 10;
}
.toplogo{
  position: absolute;
  top: 20px;
  right: 80px;
  width: 200px;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  filter: drop-shadow(0px 0px 10px rgba(255,255,255,0.5));
  z-index: -3;
}
/* ハンバーガーメニュー */
.openbtn{
  position: relative;
	background:#284155;
	cursor: pointer;
  width: 70px;
  height:70px;
	border-radius: 5px;
  z-index: 100;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	  background: white;
  	width: 55%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:33px;
}
.openbtn span:nth-of-type(3) {
	top:53px;
}
.openbtn.active span:nth-of-type(1) {
    top: 27px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2),
.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 1;
    transform: translateY(-6px) rotate(45deg);
}

/* メニュー */
.navi{
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  position: absolute;
  top: -400px;
  left: -200px;
}
.navi.nv{
  top: 100px;
  left: calc((100vw - 149.19px)/2.0);
  animation: nn 1s ease-out both;
}
@keyframes nn{
  0%{
    opacity: 0;
  }
  60%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
#logo1{
  height: 35px;
  mask-image: white;
  padding: 0 0 10px;
}
.navi ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}
.navi ul li a{
  font-family: 'Yusei Magic', sans-serif;
  font-size: 20px;
  display: block;
  text-decoration: none;
  color: white;
  padding: 5px;
}
.navi ul li a:hover{
  color: #ec9bab;
}
.bk{
  position: fixed;
  position: absolute;
  top: 50px;
  left: 50px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #284155;
  z-index: -2;
  transition-duration: 1s ;
}

/* トップ */
.topbox{
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.topbox #logo{
  position: absolute;
  top: calc((100vh - 93.87px)/2.0);
  left: calc((100vw - 400px)/2.0);
  width: 400px;
  animation-name: jackInTheBox;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-fill-mode: both;
  filter: drop-shadow(0px 0px 10px rgba(255,255,255,0.5));
}

/* アバウト */
.aboutbox{
  /* position: relative; */
  width: 100%;
  height: 100%;
  padding: 100px 0px 60px;
}
.aboutbox p{
  padding: 10px;
  margin: 0px;
  text-align: center;
}

/* アイテム */
.itembox{
  position: relative;
  width: 100%;
  height: 10%;
}
#llitem{
  margin: 50px 0 10px;
  text-align: center;
}
#litem{
  height: 55px;
}
.slider {
  width:94%;
  margin:0 auto;
  padding: 0px;
}
.pnk{
  background-color: #ec9bab;
}
.slider img {
  width:40vw;
  height:auto;
  position: relative;
  cursor: pointer;
  opacity: 1;
}
.slider p{
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #284155;
}
.slider .slick-slide {
transform: scale(0.8);/*左右の画像のサイズを80%に*/
transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
opacity: 0.5;/*透過50%*/
}
.slider .slick-slide.slick-center{
transform: scale(1);/*中央の画像のサイズだけ等倍に*/
opacity: 1;/*透過なし*/
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align:center;
  margin:20px 0 0 0;
  padding: 0px;
}
.slick-dots li {
  display:inline-block;
  margin:0 5px;
}
.slick-dots button {
  padding: 0px;
  color: transparent;
  outline: none;
  width:8px;/*ドットボタンのサイズ*/
  height:8px;/*ドットボタンのサイズ*/
  display:block;
  border-radius:50%;
  background:#ccc;/*ドットボタンの色*/
  border: none;
}
.slick-dots .slick-active button{
  background:#284155;/*ドットボタンの現在地表示の色*/
  transform: scale(1.2);
}
#button{
  width: 150px;
  height: 50px;
  background-color: transparent;
  margin: 20px auto;
  padding: 10px 0 0;
  cursor: pointer;
  font-size: 1.5em;
  text-align: center;
  position: relative;
  transition-duration: 0.5s;
}
#button::after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  background-color: #284155;
  z-index: -1;
  transition-duration: 0.5s;
  border-radius: 10px;
}
#button:hover::after{
  height: 100%;
}
#button a{
  color: #ec9bab;
  text-decoration: none;
}

/* コラム */
.column{
  margin-top: 90px;
}
#llpickup{
  margin: 50px 0 10px;
  text-align: center;
}
#lpickup{
  height: 55px;
}
.columnbox{
  position: relative;
  width: 100vw;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.clm{
  margin: 20px 0 40px;
  width: 75vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.columnimg{
  margin: 10px 20px;
  flex: 1;
}
#okimono .columnimg, #tougei .columnimg{
  order: 2;
}
#okimono .detail, #tougei .detail{
  order: 1;
}
#okimono, #tougei{
  flex-wrap: wrap-reverse;
}
.columnimg img{
  width: 500px;
}
.detail{
  margin: 10px 20px;
  color: #284155;
  display: flex;
  flex: 1.5;
  flex-direction: column;
  word-break: break-all;
  animation-fill-mode: backwards;
}
.detail h4{
  padding: .25em 0 .25em .75em;
  border-left: 6px solid #ec9bab;
}
.detail p{
  padding: 10px 0px;
}
.activaten{
  animation-name: fadeInBottomRight;
  animation-duration: 2.5s;
  animation-fill-mode: backwards;
}
.activateo{
  animation-name: fadeInBottomLeft;
  animation-duration: 2.5s;
  animation-fill-mode: backwards;
}

/* ニュース */
.newsbox{
  position: relative;
  width: 100vw;
  height: 100%;
}
#llnews{
  margin: 50px 0 10px;
  text-align: center;
}
#lnews{
  height: 55px;
}
.top-news {
  padding: 40px 20px;
  }
.news-box {
  overflow: scroll;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  width: 70%;
  height: 200px;
  border-radius: 10px;
  background-color: rgba(185, 195, 235, 0.4);
}
.news-box article {
  padding: 3px;
  border-bottom: dotted 1px #708090;
}
.news-box h3 {
  color: #284155;
  padding: 1px;
}
.news-box p{
  padding: 5px 0 10px;
}

/* アクセス */
.accessbox{
  position: relative;
  width: 100vw;
  height: 100%;
}
#llaccess{
  margin: 50px 0 10px;
  text-align: center;
}
#laccess{
  height: 55px;
}
.top-access{
  width: 85vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.accessbox img{
  width: 450px;
  margin: 15px;
}
.accessbox h4{
  padding-bottom: .3em;
  border-bottom: 2px solid #ec9bab;
}
.accessbox p{
  padding: 5px 0px;
}

/* コンタクト */
.contactbox{
  position: relative;
  width: 100vw;
  height: 10%;
  padding-bottom: 100px;
  background-image: url("ashiato.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
#llcontact{
  margin: 50px 0 10px;
  text-align: center;
}
#lcontact{
  height: 55px;
}
.container{
  margin: 0 auto 30px;
  width: 70vw;
  padding: 10px;
}
.fp{
  margin: 0 0 10px;
}
.container span{
  color: brown;
}
input, textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 10px 0;
}
textarea{
  height: 120px;
}
input[type="submit"]{
  width: 250px;
  background-color: #284155;
  color: white;
  border: none;
}
input[type="submit"]:hover{
  opacity: 0.7;
  transition-duration: 0.5s;
}

/* ショップ */
.bs{
  background-image: url("ashiato2.png");
  background-size: contain;
  background-position: 0px 100px;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#llshop{
  padding: 90px 0 10px;
  text-align: center;
}
#lshop{
  height: 55px;
}
.shopbox{
  position: relative;
  width: 80vw;
  height: 100%;
  margin: 20px auto 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shopbox figure{
  width: 300px;
  height: 225px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.shopbox img{
  width: 300px;
  height: 225px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.shopbox img:hover{
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.shopbox p{
  color: #284155;
}
.shops{
  padding-bottom: 30px;
  animation: fadeInUp 2s;
  animation-fill-mode: backwards;
}
#si01{
animation-delay: 1s;
}
#si02{
  animation-delay: 1.3s;
}
#si03{
  animation-delay: 1.6s;
}
#si04{
  animation-delay: 1.9s;
}
#si05{
  animation-delay: 2.2s;
}
#si06{
  animation-delay: 2.5s;
}
#si07{
  animation-delay: 2.8s;
}
#si08{
  animation-delay: 3.1s;
}
#si09{
  animation-delay: 3.4s;
}
#si10{
  animation-delay: 4.7s;
}
#si11{
  animation-delay: 4s;
}
#si12{
  animation-delay: 4.3s;
}
#si13{
  animation-delay: 4.6s;
}
#si14{
  animation-delay: 4.9s;
}
#si15{
  animation-delay: 5.2s;
}
#si16{
  animation-delay: 5.5s;
}
#si17{
  animation-delay: 5.8s;
}
.shopbox::after{
  display: block;
  content: "";
  width: 300px;
}

/* ショップコラム */
.scolumn{
  margin-top: 90px;
}
.scolumnbox{
  position: relative;
  width: 80vw;
  height: 100%;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.scolumnimg{
  margin: 20px;
  flex: 1;
}
.scolumnimg img{
  width: 250px;
}
.scolumnimg h4{
  color: #284155;
}

/* フッター */
.footer{
  height: 100%;
  padding: 30px 10px 10px;
  color: #284155;
  display: flex;
  justify-content: space-between;
}
#pagetop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
#page-top a{
  width: 50px;
	display: flex;
	justify-content:center;
	align-items:center;
	color: #284155;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}
#lpagetop :hover{
  color: #708090;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateX(100px);
}
/*　左の動き　*/
#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}</pre></body></html>