/* -------------------------- */
/* base
/* -------------------------- */

html{
  font-size: 62.5%;
}

body{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 1.6rem;
  color: #333;
  /*background:url("../images/green_bk.webp");*/
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: #e2dbc5;
}

@supports (-webkit-overflow-scrolling: touch) {
  body {
    background: none;
  }

body:before {
    background-repeat: no-repeat;
    background-position: right;
    background-size: 100%;
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
    
    
img{
  width: 100%;
  vertical-align: bottom;
}
a{
  font-family: "kinuta-maruminfuji-stdn", serif;
  text-decoration: none;
  color: #225967;
  letter-spacing: 5%;
  line-height: 23px;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
input{
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance:none;
}
textarea{
  border: 0;
  outline: none;
  resize: none;
}

/* -------------------------- */
/* //base
/* -------------------------- */

/* -------------------------- */
/* header
/* -------------------------- */

header{
  width: 90%;
  padding: 4% 4% 4% 4%;
  position: fixed;
  top: 0;
  z-index: 99;
}

.noscroll {
  height: 100%;
  overflow: hidden;
}

.header_under{
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;    
}
/*******************ナビゲーションの設定*******************/
/*==ナビゲーション全体の設定*/
nav{
    text-decoration: underline;/*下線を引く*/
    text-decoration-color: #34006B;;/*下線を赤色*/
	text-underline-offset: 10px;
	text-decoration-thickness: 1px;
	/*==ナビゲーション全体高さ中央設定*/
	display: flex;
	align-items: center;
	text-align: center;
}

/*ナビゲーションを横並びに*/
nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
}

.nav-txt{
	position: absolute;
    z-index: 20;
	font-family: 'brandon-grotesque', sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.5em;
	writing-mode: vertical-rl;
	margin: 10px 0 0 25px;
}

/*ナビゲーションを縦中央並びに*/
.center{
    /*==ナビゲーション全体高さ中央設定*/
	display: flex;
	align-items: center;
	text-align: center;
}


/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基店にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	text-align:justify;
	text-align-last:justify;
	font-size: 100%;
	font-weight: bold;
	display: block;
	text-decoration: none;
	color: #34006B;
	padding: 20px 35px;
	transition: all .3s;
    letter-spacing: 0.3rem;	
}

nav ul li li a{
	padding: 10px 35px;
}

nav ul li a:hover{
	opacity: 20%;
}

.shop-img{
  max-width: 5%;
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

/* ハンバーガーボタン */
.burger-btn{
  display: block;
  width: 30px;
  height: 45px;
  position: relative;
  color: #34006B;
}
.bar{
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  z-index: 20;
}
.bar_top{
  top: 8px;
  background-color:#34006B;
}
/*.bar_middle{
  top: 38px;
}
.bar_bottom{
  top: 68px;
}*/
    
.burger-btn.cross .bar_top{
  transform: rotate(50deg);
  top: 45px;
  transition: .3s;
}
    
.burger-btn.cross .bar_middle{
  opacity: 0;
  transition: .3s;
}
    
.burger-btn.cross .bar_bottom{
  transform: rotate(-50deg);
  bottom: 30px;
  transition: .3s;
} 

/* ハンバーガーメニューが開いたときのスタイル */
.header-nav{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 8;
  justify-content: center;
　overflow: hidden;
}

.globalNav{
	display: flex;
	justify-content: center;
}

/* -------------------------- */
/* //header
/* -------------------------- */

/*******************ナビゲーションの設定最後尾*******************/


/*========= LoadingのためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999999999;
	background:#e2dbc5;
	text-align:center;
	color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-18%, -70%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
    width:500px;
}

/*=============== SVGアニメーション内の指定 =================*/

/*アニメーション前の指定*/
#mask path {
		fill-opacity: 0;/*最初は透過0で見えない状態*/
		transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
		fill: none;/*塗りがない状態*/
		stroke: #333;/*線の色*/
	}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
	  fill: #333;/*塗りの色*/
	  fill-opacity: 1;/*透過1で見える状態*/
	  stroke: none;/*線の色なし*/
	}

/* -------------------------- */
/* ホバー時写真拡大
/* -------------------------- */

/* 1. 親要素 (枠) の設定 */
.img-container {
  /* 画像を中央に配置*/
  margin: auto;
  /* 枠のサイズを定義 */
  width: 60%;
  /* 枠からはみ出た部分を非表示にする (重要!) */
  overflow: hidden;
  /* 見やすいように影を付けるなど */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 2. 画像自体の設定 */
.img-container img {
  /* 親要素の幅に合わせて初期サイズを設定 */
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠に合わせて画像をトリミング */

  /* 変化を滑らかにするための設定 (アニメーション時間) */
  transition: transform 0.3s ease;
}

/* 3. マウスオーバー時の設定 (拡大処理) */
.img-container:hover img {
  /* 1.2倍に拡大する */
  transform: scale(1.2);
}

/* -------------------------- */
/* //ホバー時写真拡大
/* -------------------------- */

/* -------------------------- */
/* 写真ランダム出現
/* -------------------------- */

.spacer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 2rem;
    text-align: center;
    padding: 20px;
}

.photo-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.photo {
    position: absolute;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    left: 50%;
    top: 50%;
    cursor: pointer;
}

.photo:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05) !important;
}

.photo.active {
    opacity: 1;
}

.photo-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

/* モーダルスタイル */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    position: relative;
    width: auto;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    padding: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.close-modal:hover {
    color: #ddd;
}

.modal-image {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1 / 1;
}

.photo:nth-child(1) .photo-inner {
    background-image: url("../images/geko_003.png");
}

.photo:nth-child(2) .photo-inner {
    background-image: url("../images/tana_tate_012.png");
}

.photo:nth-child(3) .photo-inner {
    background-image: url("../images/tana_tate_011.png");
}

.photo:nth-child(4) .photo-inner {
    background-image: url("../images/house_007.png");
}

.photo:nth-child(5) .photo-inner {
    background-image: url("../images/pop_004.png");
}

.photo:nth-child(6) .photo-inner {
    background-image: url("../images/tana_budo_010.png");
}

.photo:nth-child(7) .photo-inner {
    background-image: url("../images/slider_1_test.png");
}

.photo:nth-child(8) .photo-inner {
    background-image: url("../images/tana_budo_007.png");
}

.photo:nth-child(9) .photo-inner {
    background-image: url("../images/tana_tate_006.png");
}

.photo:nth-child(10) .photo-inner {
    background-image: url("../images/slider_2.png");
}

.photo-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .spacer {
        font-size: 1.5rem;
    }

    .modal-image {
        max-width: 95vw;
        max-height: 70vh;
    }

    .close-modal {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
}

/* -------------------------- */
/* //写真ランダム出現
/* -------------------------- */

/* -------------------------- */
/* 画面転換
/* -------------------------- */

.wrapper{
  overflow: hidden;
}
.container {
  display: flex;
}
.item {
  height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
}

/* -- カーソル設定 -- */

* {
  cursor: none;
}
.cursor span {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 9999999999;
  pointer-events: none;
}
.cursor span.dot1 {
  background: rgba(98, 77, 112, 0.8);
  transition: width 0.2s, height 0.2s;
}
.cursor span.dot1.active {
  height: 50px;
  width: 50px;
  background: rgba(98, 77, 112, 0.3);
}
/*.cursor span.dot2 {
  height: 20px;
  width: 20px;
  border: solid 1px #624d70;
  transition: top 0.2s, left 0.2s, width 0.5s, height 0.5s;
  transition-timing-function: ease-out;
}
.cursor span.dot2.active {
  height: 80px;
  width: 80px;
} */

/* -------------------------- */
/* //画面転換
/* -------------------------- */


/**************スライドショー枠設定**************/
/* .border {
  position: absolute;
  z-index: 0;
  width: 55%;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  /** -webkit-transform: translate(-50%, -50%); **/
  /** -ms-transform: translate(-50%, -50%); **/
  /* border: 0rem outset #225967;
  box-shadow: 0 0 0 20rem #225967;
  border-radius: 40px;
  margin: 24% 0px;
  padding: 15.5%;
} */
/**************スライドショー枠設定完了**************/


/**************スライドショー設定**************/
/*ボタン装飾リセット*/
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.slider{
	position: relative;
	z-index: 1;
	height: 100vh;
	top: 50%;
    left: -51%;
    transform: translate(50%,0%);
}

/*背景画像設定*/
.slider-item01{
	background:url("../images/slider_1.png");
}
.slider-item02{
	background:url("../images/slider_2.png");
}
.slider-item03{
	background:url("../images/slider_3.png");
}

.slider-item{
	width: 100%;
	height: 80vh;
	background-repeat: no-repeat;
    background-position: center;
	background-size: cover;
	margin: 1.6% 4% 0 4%;
}

/*スライドショーZoomUp*/

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*スライドショー背景リンク範囲設定*/

.slider li a{
    display: block;
    height: 100vh;
    width: 100%
}

/*//スライドショー背景リンク範囲設定*/


/*ドットナビゲーションの設定*/
.slick-dots{
	position: relative;
	z-index: 99;
	text-align: center;
	left: 0;
	bottom: 5%;
}

.slick-dots li{
	display: inline-block;
	margin: 0 5px;
}

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

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

/**************スライドショー設定終了**************/

/*flex設定*/
.flex-rr{
  display: flex;
  justify-content: space-between;
}
.flex-rp{
  display: flex;
  justify-content: space-between;
}

/* shop-button */

.kv-wrapper-button-shop{
  width: 8%;
  z-index: 2000;
  position: fixed;
  display: block;
  top: 95%;
  left: 92%;
  transform: translate(-50%,-50%);
}

.kv-wrapper-button-shop:hover img {
  transition: transform 1s;
  transform: rotate(360deg);
}

.kv-wrapper-button-sw{
  width: 110%;
  display:block;
  position:relative;
  top: 50%;
  left: 10%;
  transform: translate(-50%,-50%);
}

.kv-wrapper-button-ci{
  width: 100%;
  display:block;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.car-icon{
  width: 60%;
  display: block;
  position:absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* -------------------------- */
/* ランダム写真
/* -------------------------- */

.about-wrapper{
  max-width: 100%;
  margin: 0% auto 10%;
  text-align: center;
}

.concept-text-1{
  margin-top: 4.5%;
  font-family: "kinuta-maruminfuji-stdn", serif;
　font-weight: bold;
　font-style: normal;
  font-size: 1.7rem;
  position: absolute;
  color: #34006B;
  letter-spacing: 0.5em;
  line-height: 170%;
  text-align: center;
}

/* -------------------------- */
/* //ランダム写真
/* -------------------------- */

/* -------------------------- */
/* お知らせ
/* -------------------------- */

.fixed-banner {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%; 
    height: 40px; 
    background-color: white;
    overflow: hidden; 
    z-index: 1000; 
    white-space: nowrap; 
    box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.3);
}

.marquee-content a{
    display: inline-block;
    font-family: "kinuta-maruminfuji-stdn", serif;
    padding-left: 100%;
    line-height: 40px;
    font-weight: bold;
    font-size: 16px;
	color: #34006b;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0); 
    }
    100% {
        transform: translate(-100%, 0);
    }
}

.fixed-banner:hover .marquee-content {
    animation-play-state: paused;
}

/* -------------------------- */
/* //お知らせ
/* -------------------------- */

/* -------------------------- */
/* 商品セクション
/* -------------------------- */

.product-wrapper{
  max-width: 80%;
  margin: 0% auto 10%;
  text-align: center;
}

.grape-product-1{
  display: flex;
  justify-content: space-between;
}

.grape-product-2{
  display: flex;
  justify-content: space-between;
}

.pro-size {
	width:400px;
	margin:2%;
}

/* -------------------------- */
/* //商品セクション
/* -------------------------- */

/* -------------------------- */
/* 農園を見てみる。/ 葡萄について / 農園に聞いてみる
/* -------------------------- */

.grape-wrapper{
  max-width: 80%;
  margin: 0 auto 0%;
  text-align: center;
}

.op-pic1 img{
	max-width: 100%;
}

.btn{
  text-align: center;
}

.questionbtn a {
  margin-top: 3%;
  font-family: "kinuta-maruminfuji-stdn", serif;
  color: #fffdfa;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-decoration: none;
  display: inline-block;
  margig: 10px;
  padding: 5px;
  width: 220px;
  background-color: #34006b;
  border-bottom: 6px solid #230051;
  border-radius: 100vh;
}

/* -------------------------- */
/* Footer
/* ------------------------- */
.footer-bg{
  
  /* position: relative;
  z-index: 9999; 
  background:url("../images/mountain_pic_2.webp");*/
  background-repeat: no-repeat;
  background-size: cover;
  
}

.footer-wrapper{
    padding: 0% 0% 0 0%;
}

.last_illust{
	width: 75%;
	margin: auto auto -5% auto;
    z-index: 0;
}

.copyright{
  position: fixed;
  font-family: 'brandon-grotesque', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #34006B;
  z-index: 2000;
  display: block;
  top: 92.1%;
  right: 86%;
  transform: translate(-50%,-50%);
}

/* -------------------------- */
/* //Footer
/* -------------------------- */

/* -------------------------- */
/* CSS animation
/* -------------------------- */

.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(0px);
	}
}

.fadeUpTrigger{
  opacity: 1;
}

/* -------------------------- */
/* //CSS animation
/* -------------------------- */

/* ----------------------------------------------------------------スマホ版 レスポンシブ 500px */

@media screen and (max-width:500px){
    
	
/* 共通設定 */
	
	.page-top-title{
		margin-bottom: 0;
	}
	
   .shop-img {
    max-width: 80px;
    margin: 10px 0;
   }
	
	
/* 画面固定関連＋非表示要素 */
	
	.last_illust{
	width: 100%;
	margin: auto auto -5% auto;
    z-index: 0;
    }
	
	.copyright{
        display: none;
    }
 
/* -------------------------- */
/* sp-header
/* -------------------------- */

header{
  width: 90%;
  margin: 8% auto 0 auto;
  mix-blend-mode: multiply;
}

/* ハンバーガーボタン */
.burger-btn{
  display: block;
  width: 60px;
  height: 45px;
  position: relative;
  color: #34006B;
}
.bar{
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: absolute;
  z-index: 20; /*メニューの下に隠れないようにz-indexを指定する*/
}
.bar_top{
  top: 8px;
  background-color:#34006B;
}
	
/* //ハンバーガーボタン */
	
/* ハンバーガーボタン_MENU */
	
.nav-txt{
	position: absolute;
    z-index: 20;
	font-family: 'brandon-grotesque', sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0.5em;
	writing-mode: vertical-rl;
	margin: 10px 0 0 30px;
}
	
.header_under{
  width: 0%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;    
}
	
/* //ハンバーガーボタン_MENU */
    
.header-nav{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9) !important;  /* !importantを追加して優先度を上げる */
  background: rgba(255, 255, 255, 0.9) !important;  /* backgroundプロパティでも指定 */
  z-index: 8;
  justify-content: center;
  align-items: flex-start;  /* 上揃えに変更 */
  padding-top: 150px;  /* 上からの余白を追加 */
　overflow: hidden;
}

/* メニューが開いた時のスタイル */
.header-nav[style*="display: flex"],
.header-nav[style*="display:flex"] {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

/* メニューを横並びの縦書きに変更 */
.header-nav .globalNav {
  display: flex;
  flex-direction: row;  /* 横並びに変更 */
  align-items: flex-start;  /* 上揃えに変更 */
  justify-content: center;
}

.header-nav .globalNav li {
  margin: 0 30px;  /* 横の間隔を調整 */
}

.header-nav .globalNav li a {
  writing-mode: vertical-rl;  /* 縦書き */
  text-orientation: upright;  /* 文字を縦に配置 */
  letter-spacing: 0.3rem;
  font-size: 2rem;
  padding: 20px 15px;
}

/* -------------------------- */
/* //sp-header
/* -------------------------- */
	
/**************スライドショー枠設定**************/

.border{
	display: none;
}
	
/**************スライドショー枠設定完了**************/

/**************スライドショー設定**************/
	
.slider{
    position: relative;
    z-index: 1;
    height: 100vh;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    margin: 0 auto;
}

.slider-item{
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
}
    
/* slickスライダー自体の設定も追加 */
.slider .slick-list,
.slider .slick-track {
    margin: 0;
    padding: 0;
}

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

.slick-dots{
	display: none;
}

.slick-dots li{
	display: none;
}

.slick-dots button{
	display: none;
}

.slick-dots .slick-active button{
	display: none;
}

/**************スライドショー設定終了**************/	
	
	
/*flex設定*/
.flex-rr{
  display: flex;
  flex-flow: column;
}

/* -------------------------- */
/* カーソル
/* -------------------------- */

	.cursor{
		display: none;
	}
	
/* -------------------------- */
/* //カーソル
/* -------------------------- */

/* -------------------------- */
/* お知らせ
/* -------------------------- */	
	
.fixed-banner {
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%; 
    height: 40px; 
}
	
/* -------------------------- */
/* //お知らせ
/* -------------------------- */
	
/* -------------------------- */
/* Photoセクション
/* -------------------------- */
	
.photo:nth-child(1) .photo-inner {
    background-image: url("../images/geko_003.png");
}

.photo:nth-child(2) .photo-inner {
    background-image: url("../images/tana_tate_012.png");
}

.photo:nth-child(3) .photo-inner {
    background-image: url("../images/tana_tate_011.png");
}

.photo:nth-child(4) .photo-inner {
    background-image: url("../images/house_007.png");
}

.photo:nth-child(5) .photo-inner {
    background-image: url("../images/pop_004.png");
}

.photo:nth-child(6) .photo-inner {
    background-image: url("../images/tana_budo_010.png");
}

.photo:nth-child(7) .photo-inner {
    background-image: url("../images/slider_1_test.png");
}

.photo:nth-child(8) .photo-inner {
    background-image: url("../images/tana_budo_007.png");
}

.photo:nth-child(9) .photo-inner {
    background-image: url("../images/tana_tate_006.png");
}

.photo:nth-child(10) .photo-inner {
    background-image: url("../images/slider_2.png");
}
	
.spacer {
    height: 100vh;
    display: flex;
    padding: 0px;
}

.photo-container {
    height: 100vh;
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.photo {
    position: absolute;
    background: white;
    border-radius: 0px;
    box-shadow: none;
    padding: 0;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: none;
    left: 50%;
    top: 50%;
    cursor: pointer;
}
	
.photo.active {
    opacity: 0;
}

.photo-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
	opacity: 0.3;  /*写真の透過率*/
}
	
.photo-label {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0;
    border-radius: 0px;
    font-size: 14px;
}
	
.concept-text-1{
  	margin-top: 4.5%;
  	font-family: "kinuta-maruminfuji-stdn", serif;
  	font-size: 1.7rem;
  	position: absolute;
  	color: #34006B;
  	writing-mode: vertical-rl;
  	letter-spacing: 0.5em;
  	line-height: 170%;
  	text-align: center;
}
	
/* -------------------------- */
/* //Photoセクション
/* -------------------------- */
	
/* -------------------------- */
/* 商品セクション
/* -------------------------- */
	
.product-wrapper{
 	max-width: 100%;
  	margin: 0% auto 10%;
  	text-align: center;
}

.pro-size {
	width:400px;
	margin:2% auto;
}
	
.grape-product-2{
	display: none;
}
	
/* -------------------------- */
/* //商品セクション
/* -------------------------- */
	
/* -------------------------- */
/* 各ページボタンセクション
/* -------------------------- */

/* 農園を見てみる。*/
/* 葡萄について*/
/* 農園に聞いてみる*/

.grape-wrapper{
  max-width: 100%;
  margin: 0 auto 0%;
  text-align: center;
}
	
.op-pic1 img{
	height: 70vh;
}

.img-container {
  margin: auto;
  width: 90%;
}

}