@charset "utf-8";

html, body { 
  margin: 0px;
  padding: 0px;
 }


body {
    font-family:  "Kiwi Maru", serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    overflow-x: hidden;
    background-image: url('img/around.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


* クリック可能な画像 */
.clickable {
    cursor: pointer;
}

main {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#key{ 
  margin-top: 10px;
  background-size:cover;
  align-items: flex-end;
}

/* スクロールで現れる要素 */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 4s ease, transform 6s ease;
}

#section1{
  margin-top: 20px;
font-size: 47px; 
color: #ffffff;
}

#section2{
margin-top: 5px;
margin-bottom: 40px;
font-size: 50px; 
font-weight: bold;
line-height: 30px;
color: #ffffff;
}

#section3{

font-size: 19px; 
line-height: 45px;
color: #ffffff;
}


.section.visible {
  opacity: 3;
  transform: translateY(0);
}

#konna{
  margin-top: 130px;
  font-size: 24px; 
}

.clickable3 {
  cursor: pointer;
}
.clickable {
  cursor: pointer;
}

#fukidashi{
  text-align: left;
  margin-top:4rem;
  display:flex;
}





#yonnkoma{ 
  position: relative;  z-index: 10;
  display: flex;
  justify-content: center;
  z-index: 2000;

}

#yonkoma img{
  max-width: 100px;
  height: auto;
}



#samune{
  margin-top: 2rem;
  width: 100%;
}

#comme{
  text-align:center;
  position: absolute ;
  top: 1705px;
  margin-left:17px !important;
  font-size:12px !important;
  line-height: 20px;
}


/* オーバーレイ全体 */
#overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;

}

/* 画像2 */
#image2 {
    max-width: 300px;
    height: auto;
    margin-bottom: 10px;

}

/* 画像3（閉じるボタン） */
#closeButton {
   margin-top: 650px;
    height: auto;
    position: absolute;
    cursor: pointer;
    
}

#osuto{
  font-size: 13px; 
  margin-left: 120px;
}



#comme2{
  text-align:center;
  position: absolute;
  top: 1870px;
  margin-right:120px !important;
  font-size:25px !important;
  line-height: 30px;
}


#comme3{
  text-align:center;
  position: absolute;
  top: 2060px;
  margin-left:140px !important;
  font-size:25px !important;
  line-height: 30px;
}


ul3{
  display: flex;
  margin-right:5px !important;
}

ul{
  display: flex;
  margin-right:35px !important;
}


ul2{
  display: flex;
  margin-right:5px !important;
  margin-top: 30px !important;
}

#omisede{
  margin-top: 80px;
  font-size:23px !important;
}
#yazirusi{
  margin-top: -20px;
}

/* カルーセル全体 */
.carousel {
  /* 水平方向中央寄せ */
  display: flex;
  justify-content: center;
}
/* カルーセル内容 */
.contains {
  /* サイズは自由に変更してください。*/
  /* 下の.slideも同じサイズにしてください。 */
  margin-top: 20px;
  width: 320px;
  height: 320px;
  overflow: hidden;
  position: relative; z-index: 0;
  list-style: none;
  z-index: 1;
}
/* スライド切り換え用ラジオボタンは常に非表示 */
.slide_select {
  display: none;
}
/* 各スライド */
.slide {
  /* サイズは自由に変更してください。*/
  /* 上の.containsも同じサイズにしてください。 */
  width: 320px;
  height: 320px;
  position: absolute;
  /* スライドの初期値は選択されていないので透明にしておく */
  opacity: 0;
}
/* 前へ次へボタン */
.scroll_button {
  position: absolute;
  display: block;
  height: 15px;
  width: 15px;
  /* 縦中央から20px上の位置 */
  top: 50%;
  margin-top: -60px;
  /* 上辺と右辺のみ幅5pxの枠線 */
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: #ce84df;
  cursor: pointer;
  /* 普段はボタンはやや薄くする */
  opacity: 0.5;
  /* スライドよりも前面にする */
  z-index: 3;
}
/* ホバー時にボタンを強調 */
.scroll_button:hover {
  opacity: 1;
}
/* 前へボタン */
.scroll_prev {
  left: 15px;
  /* 上辺と右辺の枠線を回転して"＜"にする */
  transform: rotate(-135deg);
}
/* 次へボタン */
.scroll_next {
  right: 15px;
  /* 上辺と右辺の枠線を回転して"＞"にする */
  transform: rotate(45deg);
}
/* スライド移動ボタンエリア */
.move_controler {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

/* 1番目のスライド選択時 */
/* 1番目のスライドの透明度を0にして表示する */
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}
/* スライド移動ボタンの1個目を明るくする */
/* （今選択されていることが分かるように） */
.slide_select:nth-of-type(1):checked ~ .move_controler .button_move:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}
/* 2番目のスライド選択時（1番目のスライドと同じことをする） */
.slide_select:nth-of-type(2):checked ~ .move_controler .button_move:nth-of-type(2) {
  opacity: 1;
}
/* 3番目のスライド選択時 */
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .move_controler
  .button_move:nth-of-type(3) {
  opacity: 1;
}
/* 4番目のスライド選択時 */
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked
  ~ .move_controler
  .button_move:nth-of-type(4) {
  opacity: 1;
}

#nettode{
  margin-top: -30px;
  font-size:23px !important;
}

ul3{
  margin-top: 45px;
  display: flex;
}

#grape{
  margin-right: 15px;
}

#lemon{
  margin-left: 15px;
}

#ouchi{
  margin-top: 35px;
  font-size:17px !important;
}



.spacer {
  height: 2000px; /* ページの長さを2スクロール分にする */
  background: linear-gradient(to bottom, #f4f4f9, #e0e0f5);
}
.marquee-right {
	overflow: hidden;
}
.marquee-right ul {
	animation: marquee-right 20s linear infinite;
	display: flex;
	margin: 0;
	padding: 0;
	width: max-content;
}
.marquee-right ul li {
	list-style: none;
	padding: 0 5px;
	width: calc(100vw / 3 - 10px);
}
.marquee-right img {
	display: block;
	width: 100%;
}
@keyframes marquee-right {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-50%);
	}
}

/* 共通スタイル */
.scrolling-banner {
  position: fixed;
  width: 100%;
  height: 60px; /* 高さ */
  background-color: rgb(161, 95, 172);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1000; /* 他の要素の上に表示 */
}

/* 上部のスクロール帯 */
.scrolling-banner.top {
  top: 0; /* 上端に配置 */
}



/* 横スクロールテキスト */
.scrolling-text {
  font-size: 25px;
  display: inline-block;
  white-space: nowrap; /* テキストを1行にまとめる */
  animation: scrollText 30s linear infinite; /* 無限ループで横スクロール */
}

/* スクロールアニメーション */
@keyframes scrollText {
  from {
      transform: translateX(100%); /* 画面外からスタート */
  }
  to {
      transform: translateX(-100%); /* 画面外に出るまで */
  }
}

#container{ 
  background-image: url(img/back.png);
  margin: 0 auto; /* 上下の空きなし、左右中央に表示せよ */
  width: 100%; /* 横幅は画面いっぱいまで広げてくれ */
  height: 3850px;
  margin-bottom: -30px;
  max-width :390px; 
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center; /* この中にあるものは中央揃えで配置してくれ */
  
}

/* ヘッダーとフッター */
header {
    background: #6c63ff;
    color: white;
    text-align: center;
    padding: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #8d5e94;
    color: white;
    margin-top: 2rem;
}



@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}
.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
}
.scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
    width: calc(100vw / 6);
}
.scroll-infinity__item>img {
    width: 100%;
}




/* フルスクリーン画像 */
.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/roading.png);
    background-size: cover;
    background-position: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    opacity: 1;
    transition: opacity 1s ease;
}



.hidden {
    opacity: 0;
    pointer-events: none;
}

/* 固定ボタン */
.fixed-button {
  padding: 0px;
    background-color: transparent;
    border-radius: 60px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index:3000;
   

}

#shop{
  background-size:cover;
  align-items: flex-end;
}


#nazo{
  margin-top: 510px;
  background-size:cover;
  align-items: flex-end;
}