/* 基本のリセット */
body, h1, h3, header, ul, li {
	margin: 0;
	padding: 0;
}

body main {
    font-family: "A-OTF 丸フォーク Pro M", "A-OTF 丸フォーク Pro B", "A-OTF 丸フォーク Pro H", "A-OTF 丸フォーク Pro R";
    width: 100%;
    height: auto;
    color: #532E33;
}

body {
    background-color: #FAD7D2;
    margin: 0;
    padding: 0;
    animation: bg-color 120s infinite;
    width: 100%;
    height: 100vh;
	overflow-x: hidden;
	background-color: transparent;
}
header   {
    position: fixed;
    width: 100%;
    display: flex;
    margin-right: 40px;
    justify-content: space-between;
    z-index: 9999;
    margin-top: 0px;
}




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

/*========= ナビゲーションのためのCSS ===============*/

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

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 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: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 99999999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #532e33;
  	width: 45%;
  }

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

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

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

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    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(135deg);
    width: 30%;
}
















/*========= 検索窓を開くためのボタン設定 ===========*/

.open-btn{
	position: absolute;
	top:10px;
	right:10px;
	background:url("../img/icon_search.svg") no-repeat 15px center;/*虫眼鏡アイコンを背景に表示*/
	background-size: 20px 20px;
	width:50px;
	height:50px;
	cursor: pointer;/*カーソルを指マークに*/
}

/*クリック後、JSでボタンに btnactive クラスが付与された後の見た目*/
.open-btn.btnactive{
	background:url("../img/icon_close.svg") no-repeat 15px center;/*閉じるアイコンを背景に表示*/
	background-size: 18px 18px;
}

/*========= 検索窓の設定 ===============*/

/*==検索窓背景のエリア*/

#search-wrap{
    position:absolute;/*絶対配置にして*/
	top:150px;
    right:20px;
	z-index: -1;/*最背面に設定*/
	opacity: 0;/*透過を0に*/
	width:0;/*横幅は0に*/
	transition: all 0.4s;/*transitionを使ってスムースに現れる*/
	border-radius: 5px;
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
#search-wrap.panelactive{
	opacity: 1;/*不透明に変更*/
	z-index: 3;/*全面に出現*/
	width:280px;
	padding:20px;
	top:60px;
	background:#fff;
}

/*==検索窓*/
#search-wrap #searchform{
	display: none;/*検索窓は、はじめ非表示*/
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
#search-wrap.panelactive #searchform{
	display: block;/*検索窓を表示*/
}

/*==検索フォームの設定*/

/*==テキスト入力とボタンinput共通設定*/
#search-wrap input{
	-webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
	outline: none;
	cursor: pointer;/*カーソルを指マークに*/
	color: #666;
}

/*テキスト入力input設定*/
 #search-wrap input[type="text"] {
	width: 100%;
	border: none;
	border-bottom:2px solid #ccc;
	transition: all 0.5s;
	letter-spacing: 0.05em;
    height:46px;
	padding: 10px;
}

/*テキスト入力inputにフォーカスされたら*/
 #search-wrap input[type="text"]:focus {
	background:#eee;/*背景色を付ける*/
}

/*ボタンinput設定*/
 #search-wrap input[type="submit"] {
	position: absolute;
    top:10px;
	right:30px;
	background:url("../img/icon_search.svg") no-repeat right;/*虫眼鏡アイコンを背景に表示*/
	background-size: 20px 20px;
	width:30px;
	height: 60px;
}








@keyframes bg-color {
  0% { background-color: #E2A49F; }
  25% { background-color: #EB636C; }
  50% { background-color: #D0BC98; }
  75% { background-color: #D4C1B4; }
  100% { background-color: #E2A49F; }
}

main header h1 {
    margin-left: 50px;
    margin-top: 10px;
    float: left;
    clear: both;
}
main header h3 {
    float: left;
    text-align: left;
    position: absolute;
    margin-left: 120px;
    margin-top: 18px;
}

nav ul li {
    list-style-type: none;
    margin-top: 10px;
    float: left;
    margin-right: 30px;
}

main header h2 {
    position: fixed;
    margin-top: 45px;
    margin-left: 100px;
    font-size: 15px;
}

.image1-wrapper{
    width: 100%;
    justify-content: center;
    display: flex;
    margin-bottom: 100vh;
}


.image1 {
    scale: 1;
    z-index: 999;
    position: absolute;
    display: block;
}

.Click{
    display: block;
    position: absolute;
    padding-top: 30px;
    padding-bottom: 0px;
}


@keyframes shake {
	0% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

.element:hover {
	animation: shake 0.1s 0.1s;
}

/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
    position: fixed;
    bottom: 1%;
    right: 50%;
    /*矢印の動き1秒かけて永遠にループ*/
    animation: arrowmove 1s ease-in-out infinite;
    z-index: 99999;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
    position: absolute;
    left: -20px;
    bottom: 12vh;
    /*テキストの形状*/
    color: #000000;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 10vh;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background-color: #000000;
    transform: skewX(-31deg);
	box-shadow: 0 0 2px 1px white;
}

.scrolldown4:after{
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 10vh;
    right: 0;
    /*矢印の形状*/
    width: 1px;
    height: 50px;
    background-color: #000000;
	box-shadow: 0 0 2px 1px white;
}
















/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin-top: 50px;
    margin-bottom: 180px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.slider img {
    width: 35vw;
    height: auto;
    margin-left: 15px;
    margin-right: 15px;
    min-width: 300px;
}

.slider .slick-slide {
	transform: scale(0.6);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    margin-left: 8px;
    margin-right: 8px;
    display: inline-block;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 10px;/*ドットボタンのサイズ*/
    height: 10px;/*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    padding: 0;
	border: none;
    background: #ccc;/*ドットボタンの色*/
	box-sizing: border-box;
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
















.fadeUpTrigger{
opacity: 1;
}

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

/* 拡大 */
.zoomIn{
	animation-name:zoomInAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}

.charm1 {
  opacity: 0;
}

* {
  box-sizing: border-box;
}
.Whitesspace1 {
    height: 0vh;
	margin: 0;
}

.Whitesspace2 {
    height: 100vh;
}


main {
    padding-top: 30px;
}


.image-transition-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* ←ここ重要！ スクロール距離を確保 */
    margin: 11vh auto 0;
    clear: left;
}

.outline,
.charm1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    clear: left;
}

.outline {
  z-index: 1;
}

.charm1 {
    opacity: 0;
    z-index: 2;
    pointer-events: none; /* クリック等を無効にするため */
    margin-top: -30px;
}

.symbol {
	overflow-x: hidden;
    text-align: left;
    margin-top: 50vh;
    margin-bottom: 50vh;
    padding-top: 20vh;
    padding-bottom: 20vh;
}










.Category ul {
    display: flex;
    list-style: none;
    overflow-x: scroll;
    padding-left: 25px;
    padding-right: 25px;
}

.Category ul li img {
    width: 16vw;
    height: auto;
    display: block;
    text-shadow: 3px 3px #9B8585;    /*min-width: 100px;*/
    margin-left: 35px;
    margin-right: 35px;
    margin-top: 100px;
    margin-bottom: 100px;
}








.floating-band {
  height: 100px;
  width: 100%;
  text-align: center;
  line-height: 100px;
  animation: float 3s ease-in-out infinite;
}







.magazine {
	width: 100%;
	overflow-x: hidden;
	text-align: center;
    padding-left: 25px;
    padding-right: 25px;
}

.magazine ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.magazine ul li {
    text-align: center;
}

.magazine ul li img {
    width: 16vw;
    height: auto;
    display: block;
    margin: 100px auto;
    text-shadow: 3px 3px #9B8585;
}

@media (max-width: 768px){
    .magazine ul li img {
        width: 35vw;
    }
}

@media (max-width: 375px){
    .magazine ul li img {
        width: 35vw;
    }
}










.door-wrapper {
	overflow-x: hidden;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}



.neko-scroll {
  bottom: 0%;
  right: 0%;
  transform: translateX(50%);
  text-align: center;
  z-index: 9;
  animation: float 2s ease-in-out infinite;
	width: 10%;
	height: auto;
	background: transparent !important;
}

@media (max-width: 768px){
	.neko-scroll{
		width: 20%;
	}
}

@media (max-width: 375px){
	.neko-scroll{
		width: 20%;
	}
}

.neko-scroll img {
	width: 80%;
	height: auto;
	padding-left: 20%;
  animation: beckon 1.4s ease-in-out infinite;
  transform-origin: center bottom;
	background: transparent !important;
}

@media (max-width: 768px){
	.neko-scroll img{
		width: 100%;
		padding-left: 30px;
		padding-top: 40px;
	}
}

@media (max-width: 375px){
	.neko-scroll img{
		width: 100%;
		padding-left: 30px;
		padding-top: 40px;
	}
}

/* 手招きする動き */
@keyframes beckon {
  0%   { transform: rotate(0deg); }
  30%  { transform: rotate(20deg); }
  60%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* ゆらゆら浮かぶような全体の動き（任意） */
/*@keyframes float {
  0% { transform: translateX(50%) translateY(0px); }
  50% { transform: translateX(50%) translateY(-5px); }
  100% { transform: translateX(50%) translateY(0px); }
}*/




















.Category {
  overflow-x: scroll; /* ボタン操作でだけスクロールさせたい場合は scroll → hidden */
  flex: 1;
}

.arrow {
	all:unset;
	font-size: 3rem;
	cursor: pointer;
	padding: 10px;
	z-index: 99999;
	opacity: 0.4;
	color: rgba(0, 0, 0, 0.2); /* 黒っぽいけど透けてる */
}

.prev {
  margin-right: 0px;
}

.next {
  margin-left: 0px;
}

.arrow:hover {
  color: rgba(0, 0, 0, 0.5); /* ホバーで少し濃く */
  transform: scale(1.1); /* 少し拡大してふわっと感 */
}



@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.knock-icon {
  transition: transform 0.2s;
}

.knock-icon:hover {
  animation: knock 0.4s ease-in-out 1;
}

@keyframes knock {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}





.gallery-section {
    padding: 10em;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1em;
    text-align: center;
}

.gallery-item {
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.gallery-item img {
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
	display: block;
	object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}



@media (max-width: 768px){
	main header nav ul li{
    position: relative;
    display: block;
    padding: 0;
    clear: both;
    width: 100%;
    text-align: center;
    margin-right: 50px;
	}
	
	.image-transition-wrapper{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
	}
	
	.outline img{
		width: 70vw;
		height: auto;
	}
	
	.charm1 img{
		width: 70vw;	
		height: auto;
	}
	
	.symbol img{
		width: 40vw;
		height: auto;
	}
	
	.image1 img{
		width: 50vw;
		height: auto;
		margin-top: 50px;
	}
	
	.Click img{
    width: auto;
    height: 15vh;
    padding-top: 50px;
	}
	
	.slider {
	overflow-x: hidden;
    width: 100%;
    margin: 30px auto 100px;
  }

  .slider img {
    width: 100vw; /* 画面幅いっぱい */
    min-width: unset; /* 300pxの制限を解除 */
    margin: 0; /* 左右のマージン削除 */
  }

  .slider .slick-slide {
    transform: scale(0); /* 左右の画像を非表示に */
    opacity: 0;
  }

  .slider .slick-slide.slick-center {
    transform: scale(1); /* 中央の画像は等倍 */
    opacity: 1;
  }

  /* ▼ 矢印の表示＆位置調整 */
  .slick-prev,
  .slick-next {
    display: block; /* ←ここで表示に戻す */
    top: 45%;
    z-index: 10;
  }

  .slick-prev {
    left: 15px; /* スマホでは画面の端に寄せると◎ */
  }

  .slick-next {
    right: 15px;
  }

  .slick-dots {
    margin-top: 10px;
  }
	.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
	gap:1em;
  }
	.gallery-section {
    padding: 1em 1em; /* 上下は余裕を残して、左右は狭くする */
  }
	
	.Category ul{
    margin-top: 30px;
	}
	
	.Category ul li img {
    width: 35vw;
    height: auto;
    margin: 10px;
}

	
	.nekomokomain{
		height: 100vh;
		width: auto;
		object-fit: cover;
	}

	
}


@media (max-width: 375px){
	main header nav ul li{
    position: relative;
    display: block;
    padding: 0;
    clear: both;
    width: 100%;
    text-align: center;
    margin-right: 50px;
	}
	
	.image-transition-wrapper{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
	}
	
	.outline img{
		width: 70vw;
		height: auto;
	}
	
	.charm1 img{
		width: 70vw;	
		height: auto;
	}
	
	.symbol img{
		width: 40vw;
		height: auto;
	}
	
	.image1 img{
		width: 50vw;
		height: auto;
		margin-top: 50px;
	}
	
	.Click img{
    width: auto;
    height: 15vh;
    padding-top: 50px;
	}
	
	.slider {
	overflow-x: hidden;
    width: 100%;
    margin: 30px auto 100px;
  }

  .slider img {
    width: 100%; /* 画面幅いっぱい */
    min-width: unset; /* 300pxの制限を解除 */
    margin: 0; /* 左右のマージン削除 */
  }

  .slider .slick-slide {
    transform: scale(0); /* 左右の画像を非表示に */
    opacity: 0;
  }

  .slider .slick-slide.slick-center {
    transform: scale(1); /* 中央の画像は等倍 */
    opacity: 1;
  }

  /* ▼ 矢印の表示＆位置調整 */
  .slick-prev,
  .slick-next {
    display: block; /* ←ここで表示に戻す */
    top: 45%;
    z-index: 10;
  }

  .slick-prev {
    left: 15px; /* スマホでは画面の端に寄せると◎ */
  }

  .slick-next {
    right: 15px;
  }

  .slick-dots {
    margin-top: 10px;
  }
	.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
	gap:1em;
  }
	.gallery-section {
    padding: 1em 1em; /* 上下は余裕を残して、左右は狭くする */
  }
	
	.Category ul{
    margin-top: 30px;
	}
	
	.Category ul li img {
    width: 35vw;
    height: auto;
    margin: 10px;
}

	
	.nekomokomain{
		height: 100vh;
		width: auto;
		object-fit: cover;
	}

	
}















footer{
    background: #532e33;
    font-size: 0.7rem;
    width: auto;
}

footer p{
    color: #FFFFFF;
    font-size: 1rem;
    font-family: "Comic Sans MS", cursive;
    font-style: normal;
    font-weight: normal;
}


.scrollup {
    position: fixed;
    bottom: 2%;
    right: 50%;
    transform: translateX(50%);
    font-size: 1.2rem;
    color: #000;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 999;
    animation: arrowupmove 1s ease-in-out infinite;
    pointer-events: none;
    margin-bottom: 80px;
}

@keyframes arrowupmove {
  0% { bottom: 2%; }
  50% { bottom: 4%; }
  100% { bottom: 2%; }
}

.footer-wrapper{
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
    margin-left: 30px;
    align-items: flex-end;
    height: 120px;
    padding-bottom: 30px;
}

.nekomokotitle{
    margin-top: 20px;
    margin-left: 225px;
    text-align: left;
    font-size: 3ex;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
}

.cafenekotitle{
    margin-top: 20px;
    margin-left: 225px;
    text-align: left;
    font-size: 3ex;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
}

.nekodorilogo{
    margin-left: 40px;
}

.nekomokocoment{
    margin-top: 75px;
    text-align: left;
    position: absolute;
    margin-left: 230px;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
}

.cafenekocoment{
    margin-top: 75px;
    text-align: left;
    position: absolute;
    margin-left: 230px;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
}

.nekomoko-wraper{
	position: relative;
	min-height: 100vh;
}

.nekomokomain img{
    width: 100vw;
    height: 100%;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	object-position: center center;
    padding: 0;
    display: block;
	object-fit: cover;
	margin-top: -30px;
}


.sakichimain img{
	width: 50vw;
	height: auto;
	position:absolute;
	top: 50%;
	left: 70%;
	transform:translate(-50%, -50%);
}

.nekomokologo img{
	position: absolute;
	top:92%;
	left:50%;
	transform: translate(-50%, -50%); /* 中央に揃える */
}

.nekoirologo img{
	position: absolute;
	top:85%;
	left:50%;
	transform: translate(-50%, -50%); /* 中央に揃える */
	
}

.sakichilogo img{
	position: absolute;
	top:50%;
	left:26%;
	transform: translate(-50%, -50%); /* 中央に揃える */
}

.cafenekologo img{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%); /* 中央に揃える */
}



@media (max-width: 768px){
	.nekomokologo img{
		width: 60%;
		position:absolute;
		top:90%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.nekoirologo img{
		width: 50%;
		position:absolute;
		top:84%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.sakichimain img{
		width: 100vw;
		height: auto;
		position:absolute;
		top: 45%;
		left: 50%;
		transform:translate(-50%, -50%);
}
	
	.sakichilogo img{
		width: 55%;
		position: absolute;
		top:77%;
		left:50%;
		transform: translate(-50%, -50%); /* 中央に揃える */
}
	
	.cafenekologo img{
		width: 55%;
		position: absolute;
		top:75%;
		left:50%;
		transform: translate(-50%, -50%); /* 中央に揃える */
}

	
}

@media (max-width: 375px){
	.nekomokologo img{
		width: 60%;
		position:absolute;
		top:90%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.nekoirologo img{
		width: 50%;
		position:absolute;
		top:84%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.sakichimain img{
		width: 100vw;
		height: auto;
		position:absolute;
		top: 45%;
		left: 50%;
		transform:translate(-50%, -50%);
}
	
	.sakichilogo img{
		width: 55%;
		position: absolute;
		top:77%;
		left:50%;
		transform: translate(-50%, -50%); /* 中央に揃える */
}
	
	.cafenekologo img{
		width: 55%;
		position: absolute;
		top:75%;
		left:50%;
		transform: translate(-50%, -50%); /* 中央に揃える */
}

	
}


@media (max-width: 768px){
.nekomokotitle{
    margin-left: 40px;
    margin-top: 110px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
	}
	
.cafenekotitle{
    margin-left: 40px;
    margin-top: 130px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9);
    line-height: 35px;
	width: 70%;
}

	
.nekomokocoment{
    margin-left: 40px;
    margin-top: 160px;
    width: 70%;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
	}
	
.cafenekocoment{
    margin-left: 40px;
    margin-top: 160px;
    width: 70%;
	margin-top: 250px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
	line-height: 20px;
	}
	
}

@media (max-width: 375px){
.nekomokotitle{
    margin-left: 40px;
    margin-top: 110px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
	}
	
.cafenekotitle{
    margin-left: 40px;
    margin-top: 130px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9);
    line-height: 35px;
	width: 70%;
}

	
.nekomokocoment{
    margin-left: 40px;
    margin-top: 160px;
    width: 70%;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
	}
	
.cafenekocoment{
    margin-left: 40px;
    margin-top: 160px;
    width: 70%;
	margin-top: 250px;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.9) ;
	line-height: 20px;
	}
	
}














.nekomoko-benefit{
	position: relative;
}


.nekodorimedia{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.nekomokomidashi{
    font-size: 35px;
    margin-bottom: 0px;
    color: #FFFFFF;
}

.nekomokomaincoment{
    width: 37%;
    font-size: 21px;
    margin-left: 10%;
	margin-bottom: 20vh;
    color: #FFFFFF;
}

.nekomokomaincoment-2{
    width: 37%;
    font-size: 21px;
    margin-left: 50%;
	margin-bottom: 20vh;
    color: #FFFFFF;
}

.nekomokoyoutube{
    margin-bottom: 0px;
    vertical-align: bottom;
}

.nekomokomainP img{
    width: 30%;
    height: auto;
    margin-top: 50px;
	position:absolute;
	left:50%;
}

.sayuri img{
    width: 30%;
    height: auto;
    margin-top: 50px;
	position:absolute;
	left:50%;
}

.sakichi img{
    width: 30%;
    height: auto;
    margin-top: 50px;
	position:absolute;
	left:15%;
}


@media (max-width: 768px){
	.nekodorimedia{
		width: 100%;
	}
	.nekomokomainP img{
		width: 100vw;
		height: auto;
		margin: 0;
		padding: 0;
		position: relative;
		left: 0;
	}
	.nekomokomidashi{
		font-size: 25px;
	}
	.nekomokomaincoment{
		width: 100%;
		margin-left: 25px;
		margin-right: 25px;
		margin-bottom: 0;
		margin-top: 0;
		font-size: 15px;
	}
	
	.nekomokomaincoment-2{
		width: 100%;
		margin-left: 25px;
		margin-right: 25px;
		margin-bottom: 0;
		margin-top: 0;
		font-size: 15px;
	}

	
	.sayuri img{
    width: 100vw;
    height: auto;
    position: relative;
    left: 0%;
    margin-top: 30px;
    margin-bottom: -70px;
	}
	
	.sakichi img{
    width: 100vw;
    height: auto;
    position: relative;
    left: 0%;
    margin-top: 30px;
    margin-bottom: -70px;
	}
	
	
	
}


@media (max-width: 375px){
	.nekodorimedia{
		width: 100%;
	}
	.nekomokomainP img{
		width: 100vw;
		height: auto;
		margin: 0;
		padding: 0;
		position: relative;
		left: 0;
	}
	.nekomokomidashi{
		font-size: 25px;
	}
	.nekomokomaincoment{
		width: 100%;
		margin-left: 25px;
		margin-right: 25px;
		margin-bottom: 0;
		margin-top: 0;
		font-size: 15px;
	}
	
	.nekomokomaincoment-2{
		width: 100%;
		margin-left: 25px;
		margin-right: 25px;
		margin-bottom: 0;
		margin-top: 0;
		font-size: 15px;
	}

	
	.sayuri img{
    width: 100vw;
    height: auto;
    position: relative;
    left: 0%;
    margin-top: 30px;
    margin-bottom: -70px;
	}
	
	.sakichi img{
    width: 100vw;
    height: auto;
    position: relative;
    left: 0%;
    margin-top: 30px;
    margin-bottom: -70px;
	}
	
	
	
}















/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap:10px;
	padding:50px 20px;
}

.sort-btn li{
	background:#eee;
list-style:none;
	border-radius:10px;
	cursor: pointer;
	padding: 10px;
	margin:0 10px;
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
	background:#ccc;	
}

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
.sort-btn{
	justify-content: space-between;
}
	
.sort-btn li{
	width:48%;
	margin:0 0 10px 0;
	text-align:center;
	}	
}

/*＝＝＝Muuriのレイアウトのための調整 */

.official-gallery{
    height: auto;
}

.grid {
  position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 33%;/*横並びで3つ表示*/
  z-index: 1;
list-style:none;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;/*横並びで2つ表示*/
}
}

/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
.fancybox-thumbs {
    background: transparent!important;
}

.fancybox-thumbs__list a:before {
    border: 6px solid #FA999B;
}
















