@charset "UTF-8";
/* CSS Document */

#wrapper{
	max-width: 1280px;
    width: 100%;
	background-color: #ffffff;
	margin: 0 auto;
	text-align: center;
}

body {
	font-family:
		"游明朝体",
		"Yu Mincho",
		"YuMincho",
		"ヒラギノ明朝 ProN",
		"Hiragino Mincho ProN",
		"MS P明朝",
		serif;
	color: #4F4540;
}

.carousel {
    position: relative;
    width: 100%;
	max-width: 1200px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
	margin: 0 auto;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides img.top {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  animation: fadeZoom 20s infinite ease-in-out;
}

.slides img.top:nth-of-type(1) {
  animation-delay: 0s;
  opacity: 1; /* 初期表示を保証 */
}

.slides img.top:nth-of-type(2) { animation-delay: 4s; }
.slides img.top:nth-of-type(3) { animation-delay: 8s; }
.slides img.top:nth-of-type(4) { animation-delay: 12s; }

.slides img.top:nth-of-type(5) {
  animation-delay: 16s;
  animation-duration: 14s; /* ← 少し短くする */
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  10% {
    opacity: 1;
  }

  35% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.top-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 55%;
	max-width: 52px;
    height: auto;
    z-index: 10;
    pointer-events: none;
	filter: drop-shadow(0 0 8px #4D4D4D);
}

.top-logo {
  width: 100%;
  max-width: 750px;
  margin: 65px auto 0;
}

.top-logo img {
  width: 100%;
  height: auto;
}

.menu-wrapper {
	position: static;
	padding: 30px 0;
	display: flex;
	justify-content: center;
}

.main-menu {
	display: flex;
	justify-content: center;
	padding: 30px 0;
	list-style: none;
	white-space: nowrap;
		
}

.main-menu li::after {
  content: "｜";
  margin: 0 12px;
  color: #999;
}

.main-menu li:last-child::after {
  content: "";
}

.main-menu a {
	text-decoration: none;
	font-weight: bold;
	color: #4F4540;
	font-size: 22px;
}

.menu-top {
	margin-bottom: 50px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.info-wrapper {
	text-align: center;
}

.contents-title {
	width: 100%;
	max-width: 420px;
	margin-top: 80px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.info-list {
	list-style: none;
	display: inline-block;
	text-align: left;
	margin-top: 40px;
}

.info-list a {
	font-size: 14px;
	text-decoration: none;
	color: #4F4540;
}

.sp-point-info {
	display: none;
}

.sp-br,.s-br {
	display: none;
}

.about-wrapper img {
	margin-top: 100px;
}

.about-wrapper p {
	font-size: 16px;
	line-height: 2;
	margin-top: 40px;
}

.text1 {
	color: #3F873F;
	font-size: 20px;
}

.text3 {
	color: #3F873F;
}

.text4 {
	color: #3F873F;
}

.text5 {
	font-size: 25px;
	color: #3F873F;
}

.title p {
	font-size: 20px;
	border-bottom: solid 4px #3F873F;
	display: inline-block;
	margin: 0;
	line-height: 1.2;
}


.point {
	font-size: 50px;
	color: #3F873F;
}

.point-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 右側テキスト（③の右） */
.point-text {
  display: grid;
  place-items: center;
}

/* フレーム＋テキスト重ね */
.frame-img,
.point-info {
  grid-area: 1 / 1;
}

.frame-img {
	max-width: 100%;
	width: 900px;
}

.point-info {
  box-sizing: border-box;
  text-align: left;
  place-self: end end; 
  padding: 40px 80px;
	transform: translateX(-100px);
}

.detail-text4 {
    color: #C13E1C;
    font-weight: bold;
	line-height: 1.4 !important;
    margin: 0;
	font-size: 20px;
}

.emphasis {
	font-size: 35px;
}

.detail-text5 {
    margin-top: 40px;
	line-height: 1.4 !important;
    margin: 0;
	font-size: 16px
}

.t5_company {
	font-size: 20px;
}

.lineup-wrapper {
	margin-top: 150px;
	display: block;
}

.lineup-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	align-items: flex-end;
}

.iframe-wrapper {
	width: 100%;
	max-width: 560px;
	margin: 40px auto;
}

.iframe-wrapper iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	display: block;
	border: 0;
}

/* キッシーズオリジナル屋台 */
.original-text {
	font-size: 25px;
	color: #f7931e;
	font-weight: bold;
	text-decoration: underline;
	text-underline-offset: 10px;
}

.original {
	width: 1020px;
	height: 700px;
	background: #fff8f3;
	border-radius: 10px;
	margin: 0 auto;
}

.detail-check1 {
	font-size: 16px;
	color: #f7931e;
	padding-top: 20px;
}

h3 {
	font-size: 20px;
}

.open img {
	transition: transform 0.2s ease;
	max-width: 100%;
	height: 190px;
	width: auto;
}

.open img:hover {
	transform: scale(1.05);
}

/* ラインナップポップアップ */
.gift_show_img {
    display: flex;
    justify-content: center;
}

.gift_show {
    max-width: 100%;
    width: 550px;
    height: auto;
    margin: 0 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lineup01,
#lineup02,
#lineup03,
#lineup04,
#lineup05,
#lineup06,
#lineup07,
#lineup08,
#lineup09,
#lineup10,
#lineup11,
#lineup12,
#lineup13,
#lineup14,
#lineup15,
#lineup16,
#lineup17,
#lineup18,
#lineup19,
#lineup2_01,
#lineup2_02,
#lineup2_03,
#lineup2_04,
#lineup2_05,
#lineup2_06{
	display: none;
}

#lineup01:checked + .overlay, 
#lineup02:checked + .overlay,
#lineup03:checked + .overlay,
#lineup04:checked + .overlay,
#lineup05:checked + .overlay,
#lineup06:checked + .overlay,
#lineup07:checked + .overlay,
#lineup08:checked + .overlay,
#lineup09:checked + .overlay,
#lineup10:checked + .overlay,
#lineup11:checked + .overlay,
#lineup12:checked + .overlay,
#lineup13:checked + .overlay,
#lineup14:checked + .overlay,
#lineup15:checked + .overlay,
#lineup16:checked + .overlay,
#lineup17:checked + .overlay,
#lineup18:checked + .overlay,
#lineup19:checked + .overlay,
#lineup2_01:checked + .overlay,
#lineup2_02:checked + .overlay,
#lineup2_03:checked + .overlay,
#lineup2_04:checked + .overlay,
#lineup2_05:checked + .overlay,
#lineup2_06:checked + .overlay{
  display: flex;
}

.popup-window {
    display: flex;
    flex-direction: column;
    background-color: #fff8f3;
	border: 5px solid #fbb03b;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
	height: 700px;
    position: relative;
	
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 50px;
	color: #fbb03b;
    cursor: pointer;
} 

input[name="sy-popup-page"],
input[name="wa-popup-page"],
input[name="ta-popup-page"],
input[name="om-popup-page"],
input[name="ba-popup-page"],
input[name="je-popup-page"],
input[name="yo-popup-page"],
input[name="sa-popup-page"],
input[name="se-popup-page"],
input[name="su-popup-page"],
input[name="me-popup-page"],
input[name="hi-popup-page"],
input[name="ku-popup-page"],
input[name="sk-popup-page"],
input[name="si-popup-page"],
input[name="ki-popup-page"],
input[name="sg-popup-page"],
input[name="ch-popup-page"],
input[name="hw-popup-page"],
input[name="um-popup-page"],
input[name="iw-popup-page"],
input[name="mr-popup-page"],
input[name="ra-popup-page"],
input[name="sm-popup-page"],
input[name="or-popup-page"]{
  display: none;
}


.detail-img li{
	list-style: none;
	display: inline-block;
}

.linup-text {
	text-align: center;
}

.linup-text h2 {
	font-size: 20px;
}

.linup-text p {
	font-size: 16px;
}

.link {
    display: inline-block;
    margin: 0 3px;
    background: #f7931e;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.detail2-img a {
		padding-bottom: 5px;
	}

.detail2 {
	text-align: center;
}

.detail2-title {
	display: inline-block;
	justify-content: center;
	font-size: 20px;
	color: #f7931e;
	border-bottom: 2px solid #f7931e;
}

.detail2-img {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding-left: 0;
	
}

.detail2-img li {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.detail2-img h2 {
	font-size: 18px;
}

.detail2-img p {
	font-size: 14px;
    margin-top: auto;
}

.popup-page {
	display: none;
}

/* ＜ ＞ ナビ */
.popup-next {
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
}

.popup-next2 {
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
}

.popup-next label {
  position: absolute;
  font-size: 32px;
  font-weight: bold;
  color: #fbb03b;
  cursor: pointer;
  display: none;
}

.popup-next2 label {
  position: absolute;
  font-size: 32px;
  font-weight: bold;
  color: #29ABE2;
  cursor: pointer;
  display: none;
}

/* 位置 */
.popup-next .next {
  right: 20px;
}

.popup-next .prev {
  left: 20px;
}

.popup-next2 .next {
  right: 20px;
}

.popup-next2 .prev {
  left: 20px;
}

/* page1 表示 */
.popup-window #sy-page1:checked ~ .sy-page1,
.popup-window #wa-page1:checked ~ .wa-page1,
.popup-window #ta-page1:checked ~ .ta-page1,
.popup-window #om-page1:checked ~ .om-page1,
.popup-window #ba-page1:checked ~ .ba-page1,
.popup-window #je-page1:checked ~ .je-page1,
.popup-window #yo-page1:checked ~ .yo-page1,
.popup-window #sa-page1:checked ~ .sa-page1,
.popup-window #se-page1:checked ~ .se-page1,
.popup-window #su-page1:checked ~ .su-page1,
.popup-window #me-page1:checked ~ .me-page1,
.popup-window #hi-page1:checked ~ .hi-page1,
.popup-window #ku-page1:checked ~ .ku-page1,
.popup-window #sk-page1:checked ~ .sk-page1,
.popup-window #si-page1:checked ~ .si-page1,
.popup-window #ki-page1:checked ~ .ki-page1,
.popup-window #sg-page1:checked ~ .sg-page1,
.popup-window #ch-page1:checked ~ .ch-page1,
.popup-window #hw-page1:checked ~ .hw-page1,
.popup-window2 #um-page1:checked ~ .um-page1,
.popup-window2 #iw-page1:checked ~ .iw-page1,
.popup-window2 #mr-page1:checked ~ .mr-page1,
.popup-window2 #ra-page1:checked ~ .ra-page1,
.popup-window2 #sm-page1:checked ~ .sm-page1,
.popup-window2 #or-page1:checked ~ .or-page1{
  display: block;
}

/* page2 表示 */
.popup-window #sy-page2:checked ~ .sy-page2, 
.popup-window #wa-page2:checked ~ .wa-page2,
.popup-window #ta-page2:checked ~ .ta-page2,
.popup-window #om-page2:checked ~ .om-page2,
.popup-window #ba-page2:checked ~ .ba-page2,
.popup-window #je-page2:checked ~ .je-page2,
.popup-window #yo-page2:checked ~ .yo-page2,
.popup-window #sa-page2:checked ~ .sa-page2,
.popup-window #se-page2:checked ~ .se-page2,
.popup-window #su-page2:checked ~ .su-page2,
.popup-window #me-page2:checked ~ .me-page2,
.popup-window #hi-page2:checked ~ .hi-page2,
.popup-window #ku-page2:checked ~ .ku-page2,
.popup-window #sk-page2:checked ~ .sk-page2,
.popup-window #si-page2:checked ~ .si-page2,
.popup-window #ki-page2:checked ~ .ki-page2,
.popup-window #sg-page2:checked ~ .sg-page2,
.popup-window #ch-page2:checked ~ .ch-page2,
.popup-window #hw-page2:checked ~ .hw-page2,
.popup-window2 #um-page2:checked ~ .um-page2,
.popup-window2 #iw-page2:checked ~ .iw-page2,
.popup-window2 #mr-page2:checked ~ .mr-page2,
.popup-window2 #ra-page2:checked ~ .ra-page2,
.popup-window2 #sm-page2:checked ~ .sm-page2,
.popup-window2 #or-page2:checked ~ .or-page2{
  display: block;
}

/* page1 → ＞ */
.popup-window #sy-page1:checked ~ .popup-next .next,
.popup-window #wa-page1:checked ~ .popup-next .next,
.popup-window #ta-page1:checked ~ .popup-next .next,
.popup-window #om-page1:checked ~ .popup-next .next,
.popup-window #ba-page1:checked ~ .popup-next .next,
.popup-window #je-page1:checked ~ .popup-next .next,
.popup-window #yo-page1:checked ~ .popup-next .next,
.popup-window #sa-page1:checked ~ .popup-next .next,
.popup-window #se-page1:checked ~ .popup-next .next,
.popup-window #su-page1:checked ~ .popup-next .next,
.popup-window #me-page1:checked ~ .popup-next .next,
.popup-window #hi-page1:checked ~ .popup-next .next,
.popup-window #ku-page1:checked ~ .popup-next .next,
.popup-window #sk-page1:checked ~ .popup-next .next,
.popup-window #si-page1:checked ~ .popup-next .next,
.popup-window #ki-page1:checked ~ .popup-next .next,
.popup-window #sg-page1:checked ~ .popup-next .next,
.popup-window #ch-page1:checked ~ .popup-next .next,
.popup-window #hw-page1:checked ~ .popup-next .next,
.popup-window2 #um-page1:checked ~ .popup-next2 .next,
.popup-window2 #iw-page1:checked ~ .popup-next2 .next,
.popup-window2 #mr-page1:checked ~ .popup-next2 .next,
.popup-window2 #ra-page1:checked ~ .popup-next2 .next,
.popup-window2 #sm-page1:checked ~ .popup-next2 .next,
.popup-window2 #or-page1:checked ~ .popup-next2 .next{
  display: block;
}

/* page2 → ＜ */
.popup-window #sy-page2:checked ~ .popup-next .prev, 
.popup-window #wa-page2:checked ~ .popup-next .prev,
.popup-window #ta-page2:checked ~ .popup-next .prev,
.popup-window #om-page2:checked ~ .popup-next .prev,
.popup-window #ba-page2:checked ~ .popup-next .prev,
.popup-window #je-page2:checked ~ .popup-next .prev,
.popup-window #yo-page2:checked ~ .popup-next .prev,
.popup-window #sa-page2:checked ~ .popup-next .prev,
.popup-window #se-page2:checked ~ .popup-next .prev,
.popup-window #su-page2:checked ~ .popup-next .prev,
.popup-window #me-page2:checked ~ .popup-next .prev,
.popup-window #hi-page2:checked ~ .popup-next .prev,
.popup-window #ku-page2:checked ~ .popup-next .prev,
.popup-window #sk-page2:checked ~ .popup-next .prev,
.popup-window #si-page2:checked ~ .popup-next .prev,
.popup-window #ki-page2:checked ~ .popup-next .prev,
.popup-window #sg-page2:checked ~ .popup-next .prev,
.popup-window #ch-page2:checked ~ .popup-next .prev,
.popup-window #hw-page2:checked ~ .popup-next .prev,
.popup-window2 #um-page2:checked ~ .popup-next2 .prev,
.popup-window2 #iw-page2:checked ~ .popup-next2 .prev,
.popup-window2 #mr-page2:checked ~ .popup-next2 .prev,
.popup-window2 #ra-page2:checked ~ .popup-next2 .prev,
.popup-window2 #sm-page2:checked ~ .popup-next2 .prev,
.popup-window2 #or-page2:checked ~ .popup-next2 .prev{
  display: block;
}




/* 公式コラボ屋台 */

.collaboration {
	width: 1020px;
	height: 300px;
	background: #EEFBFF;
	border-radius: 10px;
	margin: 2px auto 0;
}

.collaboration-text {
	margin-top: 90px;
	font-size: 25px;
	color: #29ABE2;
	font-weight: bold;
	text-decoration: underline;
	text-underline-offset: 10px;
}

.detail-check2 {
	font-size: 16px;
	color: #29ABE2;
	padding-top: 20px;
}

.list2 {
	font-size: 20px;
	color: #FFFFFF;
	background-color: #29ABE2;
	display: inline-block;
	padding: 3px 30px;
	border-radius: 999px;
	bottom: 10px;
}

.popup-window2 {
    display: flex;
    flex-direction: column;
    background-color: #eefbff;
	border: 5px solid #29abe2;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
	height: 700px;
    position: relative;
}

.popup-close2 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 50px;
	color: #29abe2;
    cursor: pointer;
}

.link2 {
    display: inline-block;
    margin: 0 3px;
    background: #29abe2;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.only_img {
  width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.detail2-title_c {
	display: inline-block;
	justify-content: center;
	font-size: 20px;
	color: #29abe2;
	border-bottom: 2px solid #29abe2;
}

.m-detail {
	font-size: 16px !important;
	padding-top: 30px;
	}


/* オーダーメイド屋台 */
.ordermade {
	margin-top: 80px;
}

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

.naire p {
	text-align: left;
	line-height: 40px;
	font-size: 20px;
}

.ordermade-text {
	font-size: 25px;
	color: #4F4540;
	font-weight: bold;
	border-bottom: 2px solid #4F4540;
	display: inline-block;
}

.logo-text {
	font-size: 24px;
	color: #FF5611;
	margin: 0;
	font-weight: bold;
}

.logo-box {
    margin-top: 20px;
    width: 400px;
    border: 2px solid #ff5a1f;
    border-radius: 10px;
    padding: 20px;
	display: inline-block;
	cursor: pointer;
}

.logo-link {
    display: inline-block;
    text-decoration: none; 
}

.example-wrapper {
	margin-top: 140px;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.s-img {
	width: 100%;
	max-width: 720px;
}

.s-img2 {
	width: 100%;
	max-width: 770px;
}

.example1-img3 {
	display: none;
}

.example1 {
	margin-top: 50px;
}

.example1-text {
	display: flex;
	text-align: left;
	justify-content: center;
	font-weight: bold;
	margin-bottom: 40px;
}

.example1-title {
	writing-mode: vertical-rl;
	font-size: 35px;
	color: #3D823E;
	line-height: 2;
}

.place {
	writing-mode: vertical-rl;
	font-size: 20px;
	color: #3D823E;
	margin-top: 30px;
}


.event-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
	margin-top: 40px;
}


.event-image {
    display: block;
    width: 100%;
	max-width: 340px;
    height: auto;
}


.event-body {
    flex: 1;
}


.event-text1 {
    font-size: 18px;
    text-align: left;
    margin-bottom: 30px;
	line-height: 1.8;
	margin-left: 40px;
}

/* 吹き出し */
.event-comment1 {
	font-family:
		"游ゴシック体",
		"Yu Gothic",
		"YuGothic",
		"ヒラギノ角ゴ ProN",
		"Hiragino Kaku Gothic ProN",
		"メイリオ",
		sans-serif;
}

.event-comment1 {
	margin-top: 85px;
    padding-top: 40px;
	padding-bottom: 40px;
	max-width: 450px;
    list-style: none;
    text-align: left;
	font-weight: bold;
    color: #3F813F;
    font-size: 16px;
    background: #fff;
    border: 5px solid #FFF1E3;
    border-radius: 20px;
    position: relative; /* しっぽ用 */
}

/* 吹き出しのしっぽ（外枠） */
.event-comment1::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 14px 18px 14px 0;
  border-style: solid;
  border-color: transparent #FFF1E3 transparent transparent;
}

/* 吹き出しのしっぽ（中） */
.event-comment1::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 11px 15px 11px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.event-comment1 li {
    padding-bottom: 30px;
}

.event-comment1 li:last-child {
    padding-bottom: 0;
}

.y-comment {
    margin-top: 100px;
}

.c-comment {
    font-size: 20px;
}


.section-line {
  max-width: 936px;
  width: 100%;
  height: 3px; /* 線の太さ */
  margin: 90px 0; /* 上下の余白 */
  background-image: repeating-linear-gradient(to right,#3F813F 0 16px,transparent 10px 25px);
}


/* テキスト全体 */
.sumo-text {
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
}

/* 箇条書き */
.event-list {
	list-style: none;
	margin-left: -50px;
	padding: 0;
	text-align: left;
}

.event-list li {
	padding-bottom: 35px;
}

.event-text2 {
	font-size: 18px;
}

.event-text3 {
	font-size: 16px;
}

.green {
	color: #3F813F;
}

/* 画像（右寄せ） */
.sumo-img {
	align-self: flex-end;
	margin-top: -280px; /* デザイン調整 */
}

/* 吹き出し */
.event-comment2 {
	font-family:
		"游ゴシック体",
		"Yu Gothic",
		"YuGothic",
		"ヒラギノ角ゴ ProN",
		"Hiragino Kaku Gothic ProN",
		"メイリオ",
		sans-serif;
}

.event-comment2 {
	margin: 0 auto;          /* 中央配置 */
	padding: 30px ;
	max-width: 690px;

	text-align: left;
	font-weight: bold;
	color: #3F813F;
	font-size: 16px;
	line-height: 1.6;

	background: #fff;
	border: 5px solid #FFF1E3;
	border-radius: 20px;

	position: relative;     /* ← しっぽ用のみ */
	box-sizing: border-box;
}

/* 吹き出しのしっぽ（外） */
.event-comment2::before {
	content: "";
	position: absolute;
	top: -22px;
	right: 80px;
	border-width: 0 20px 26px 20px;
	border-style: solid;
	border-color: transparent transparent #FFF1E3 transparent;
}

/* 吹き出しのしっぽ（中） */
.event-comment2::after {
	content: "";
	position: absolute;
	top: -16px;
	right: 84px;
	border-width: 0 16px 22px 16px;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
}

.close-words {
	margin-top: 180px;
}

.c-words1 {
	font-size: 18px;
}

.c-words2 {
	font-size: 25px;
	color: #3F813F;
}

/* 周遊イベント */
.stamprally-wrapper {
    display: flex;
    margin-top: 100px;
	justify-content: center;
}

.sr-contents {
    width: 660px;
	height: 850px;
	background: #fff8f3;
	border-radius: 10px;
	margin: 0 auto;
    color: #4f453f;
}

.sr-frame {
    position: relative;
	align-items: center;
}

.sr-frame img {
    max-width: 660px;
    height: auto;
}

.c-title {
    max-width: 100%;
    padding-top: 20px;
}

.sr-title {
	font-weight: bold;
	font-size: 18px!important;
    margin: 0;
}

.sr-text p{
	font-size: 16px;
}

.c-download p{
	margin: 0;
	padding-top: 10px;
}

.download-button {
	display: flex;
    justify-content: center;
    align-items: center;
	gap: 45px;
}

.download-button a {
	background: #604c3f;
	color: #fff;
	padding: 10px 25px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
	text-align: center;
	text-decoration: none;
}

.download-button a:hover {
	background-color: #a59389;
}


/* フッター */
.company {
  margin-top: 350px;
  margin-bottom: 30px;
}

.kishis {
  padding-left: 0;
}

.kishis li {
  font-size: 14px;
  list-style: none;
}

.copyrlight {
  font-family: "小塚ゴシック Pr6N";
}

/* トップボタン */
html {
	scroll-behavior: smooth;
}

.topbutton {
  position: fixed;
  right: 100px;
  bottom: 20px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.topbutton.show {
  opacity: 1;
  visibility: visible;
}



@media screen and (max-width: 767px) {
	.top-text {
		width: 50%;
		max-width: 30px; 
	}
	
	.top-logo {
		max-width: 320px;
		margin-top: 30px;
	}
	
	.main-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0;
    width: 150px;
    padding: 20px;
	background: rgba(247, 147, 30, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
	text-align: left;
  }

  /* 開いたとき */
  .main-menu.active {
    display: flex;
  }

  /* 区切り線を消す */
  .main-menu li::after {
    content: none;
  }

  /* 項目の間隔 */
  .main-menu li {
    margin-bottom: 10px;
  }

  .main-menu li:last-child {
    margin-bottom: 0;
  }

  /* リンク */
  .main-menu a {
    font-size: 18px;
    color: #fff;
    padding: 10px 0 5px;
    border-bottom: 1px solid #fff;
    text-decoration: none;
  }

  /* ハンバーガー右寄せ */
  .menu-wrapper {
	  position: absolute;
	  top: 0;
	  right: 0;
	  display: block;
	  z-index: 20;
  }

  .hamburger {
	  position: absolute;
	  top: 10px;
	  right: 10px;
	  z-index: 30;
	  display: block;
  }
	
	.contents-title {
		max-width: 300px;
		margin-top: 50px;
	}
	
	.info-list {
    display: block; 
    width: 100%; 
    padding: 0 16px; 
    box-sizing: border-box;
  }
	
	.info-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
  }

  .info-list .date {
    margin-right: 0;
  }
	
	.sp-br {
		display: block;
	}
	
	.s-br {
		display: none;
	}
	
	.about-wrapper p {
		font-size: 14px;
		margin-top: 30px;
	}
	
	.about-text1,
	.about-text2,
	.about-text3,
	.about-text4{
		font-size: 14px;
	}
	
	.text1,
	.text3 {
		font-size: 16px;
	}
	
	.text5 {
		font-size: 18px;
	}
	
	.title p {
		font-size: 18px;
	}
	
	.point {
		font-size: 40px;
	}
	
	.frame-img {
		display: none;
	}
	
	.point-text {
		display: block;
	}
	
	.point-info {
		transform: none;
		text-align: left;
		padding: 20px 50px;
	}
	
	.sp-point-info {
		display: block;
		max-width: 400px;
		margin: 0 auto; 
	}
	
	.sp-point-info img {
		width: 80%;
		margin: 0 auto;
		padding-top: 30px;
	}
	
	.point-info p {
		font-size: 14px;
	}
	
	.emphasis {
		font-size: 25px;
	}
	
	.lineup-container {
		gap: 10px;
	}
	
	.original-text,.collaboration-text,.ordermade-text {
		font-size: 18px;
	}
	
	.detail-check1,.detail-check2 {
		font-size: 14px;
		padding-top: 20px;
	}
	
	.open img {
		max-height: 90px;
	}
	
	.original{
	    width: 380px;
	    height: 490px;
	    border-radius: 10px;
}
	.collaboration {
		width: 380px;
		height: 200px;
	}
	
	h3 {
		font-size: 13px;
	}
	
	/* ポップアップウィンドウ */
	.gift_show_img {
        flex-direction: column; /* 縦並び */
        align-items: center;    /* 中央寄せ */
    }

    .gift_show {
        margin: 16px 0;        /* 縦の隙間 */
        width: 100%;           /* 画面幅に合わせる */
        max-width: 500px;      /* 大きくなりすぎ防止（任意） */
    }
    
	.popup-window {
      display: flex;
      flex-direction: column;
      background-color: #fff8f3;
	  border: 5px solid #fbb03b;
      padding: 20px;
      border-radius: 10px;
      width: 300px;
	  height: 400px;
      position: relative;
    }
	
	.popup-window2{
      width: 300px;
	  height: 400px;
		
	}
	
	.popup-close,.popup-close2 {
      top: 5px;
      right: 10px;
      font-size: 30px;
    }
	
	 .detail2-title,.detail2-title_c {
		font-size: 14px;
	}
	
	.detail-img {
		padding-left: 0px;
		display: flex;
		justify-content: center;
	}
	
	.detail-img li:first-child img {
		width: 110px;
		padding-top: 15px;
	}
	
	.detail-img li:nth-child(2) img {
		width: 140px;
	}
	
	.linup-text h2 {
		font-size: 16px;
	}
	
	.linup-text p {
		font-size: 12px;
	}
	
	.p2 {
		font-size: 14px;
	} 
	
	.detail2-img img {
		height: 150px;
		width: auto;
	} 
	
	.detail2-img h2 {
		font-size: 12px;
		padding-top: 10px;
	} 
	
	.detail2-img p {
		font-size: 11px;
	}
	
	.detail2-img {
		margin: 0 auto;
		 margin-top: 10px;
		padding-left: 10px;
		display: flex; 
		align-items: flex-start;
	}
	
	.detail2-img li {
		padding-right: 10px;
	}
	
	.m-detail {
		font-size: 14px!important;
	}
	
	
	.link {
        display: inline-block;
		font-size: 16px;
        margin: 0 3px;
        background: #f7931e;
        color: #fff;
        padding: 3px 6px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
}
	
	.detail2-img a {
		padding-bottom: 3px;
	}
	
	.only_img {
		width: 200px !important;
		height: auto !important;
		display: block;
		margin: 0 auto;
	}
	
	/* ＜ ＞ ナビ */
    .popup-next,.popup-next2 {
		position: absolute;
		bottom: 250px;
		left: 0;
		right: 0;
	}

    .popup-next label,.popup-next2 label{
		font-size: 25px;
	}
	
    .popup-next .next {
      right: 10px;
    }

    .popup-next .prev {
      left: 10px;
    }
	
	.naire-text p{
		font-size: 14px;
		line-height: 25px;
		text-align: center;
	}
	
	.naire-text img {
		width: 100px;
	}
	
	.naire-img img {
		width: 120px;
		padding-top: 20px;
	}
	
	.logo-text {
		font-size: 18px;
	}
	
	.logo-img {
		width: 150px;
	}
	
	.logo-box {
    margin-top: 20px;
    width: 200px;
    border-radius: 10px;
    padding: 10px;
}
	
	.example1-title {
		font-size: 25px!important;
	}
	
	.example1-text p {
		font-size: 18px;
	}
	
	.event-main {
		flex-direction: column;
		align-items: center;
	}
	
	.s-img {
		max-width: 350px;
	}
	
	.s-img2 {
		max-width: 350px;
	}
	
	.example1-img2 {
		display: none;
	}
	
	.example1-img3 {
		display: block;
		max-width: 350px;
		margin: 0 auto;
	}
	
	.event-image img {
		max-width: 180px;
		width: 80%;
		margin: 0 auto;
		display: block;
	}
	
	.event-text1,.event-text2 {
		font-size: 14px;
		margin-left: 20px;
	}
	
	.event-comment1,.event-comment2 {
        position: relative;
        margin: 0 auto;
		max-width: 350px;
		font-size: 13px;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 15px;
  }

  /* しっぽ（外側） */
  .event-comment1::before {
    top: -20px;           /* 吹き出し上に配置 */
    left: 50%;            /* 中央 */
    transform: translateX(-50%); /* 中央にずらす */
    border-width: 0 14px 20px 14px; /* 上から下向き三角形 */
    border-style: solid;
    border-color: transparent transparent #FFF1E3 transparent; /* 下向きの色 */
  }

  /* しっぽ（内側） */
  .event-comment1::after {
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 11px 16px 11px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
  }
	
	.event-comment2::before {
    right: auto;          /* PC指定を解除 */
    left: 50%;
    transform: translateX(-50%);
  }

  /* しっぽ（中） */
  .event-comment2::after {
    right: auto;          /* PC指定を解除 */
    left: 50%;
    transform: translateX(-50%);
  }
	
	.c-comment {
		font-size: 16px;
	}
	
	.y-comment img {
		max-width: 380px;
	}
	
	.event-list li {
		font-size: 14px;
	}
	
	.sumo-img {
		max-width: 300px;
		margin: 0 auto;
}
	
	.section-line {
		max-width: 350px;
	}
	
	.event-list {
		margin: 0;
		margin-top: 20px;
		text-align: center;
	}
	
	.event-list li {
		padding-bottom: 25px;
}
	
	.c-words1 {
		font-size: 15px;
	}
	
	.c-words2 {
		font-size: 18px;
	}
	
	.iframe-wrapper {
		width: 100%;
		max-width: 360px;
	}
	
	.iframe-wrapper　iframe {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
	
	.topbutton {
		right: 0;
	}
	
	.topbutton img {
		width: 90px;
		height: auto;
		filter:
		drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
		drop-shadow(0 0 14px rgba(255, 255, 255, 0.6));
	}
	
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
	.main-menu {
		margin-top: 0;
		padding-top: 10px;
	}
	
	.main-menu a {
		font-size: 18px;
		padding: 0;
		justify-content: center;
	}
	
	.contents-title {
		max-width: 350px;
	}
	
	.top-logo {
		max-width: 500px;
		margin-top: 50px;
	}
	
	.sp-br {
		display: block;
	}
	
	.s-br {
		display: none;
	}
	
	.detail {
		margin-top: 100px;
	}

	.point-info {
        padding: 0px 10px;
        transform: translateX(-10px);
  }
	
	.emphasis {
		font-size: 30px;
	}
	
	.original {
	    width: 650px;
	    height: 530px;
	    border-radius: 10px;
    } 
	
	.collaboration {
		width: 650px;
		height: 250px;
	}
	
	.lineup-container {
		gap: 20px;
	} 
	
	.open img {
		max-height: 130px;
	}
	
	h3 {
		font-size: 16px;
	}
	
	.list2 {
		font-size: 18px;
		margin-top: 10px;
	}
	
	.naire-text p {
		font-size: 18px;
		text-align: center;
	}
	
	.naire-img img {
		width: 180px;
		padding-top: 20px;
		padding-left: 30px;
	}
	
	.example1-img2 {
		max-width: 250px;
	}
	
	.event-text1 {
		font-size: 16px;
	}
	
	.event-comment1,.event-comment2 {
		font-size: 14px;
	}
	
	.c-comment {
		font-size: 18px;
	}
	
	.y-comment img {
		max-width: 600px;
	}
	
	.example1-title {
		font-size: 30px;
	}
	
	.place {
		font-size: 15px;
	}
	
	.event-list {
		margin: 0;
	}
	
	.c-words1 {
		font-size: 16px;
	}
	
	.c-words2 {
		font-size: 20px;
	}
	
	.topbutton {
		right: 0;
	}
	
	.topbutton img {
		width: 100px;
		height: auto;
		filter:
		drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
		drop-shadow(0 0 14px rgba(255, 255, 255, 0.6));
	}
	
	.section-line {
		max-width: 600px;
	}
	
	.detail-check1,.detail-check2 {
		font-size: 14px;
		padding-top: 30px;
	}
    
    .gift_show_img {
        flex-direction: column; /* 縦並び */
        align-items: center;    /* 中央寄せ */
    }

    .gift_show {
        margin: 16px 0;        /* 縦の隙間 */
        width: 100%;           /* 画面幅に合わせる */
        max-width: 500px;      /* 大きくなりすぎ防止（任意） */
    }
	
}

@media screen and (max-width: 400px) {
	.info-list a {
		font-size: 12px;
	}
	
	.contents-title {
		max-width: 250px;
	}
	
	.about-wrapper p {
		font-size: 13px;
		margin-top: 20px;
	}
	
	.text3 {
		font-size: 14px;
	}
	
	.text5 {
		font-size: 15px;
	}
	
	.s-br {
		display: block;
	}
	
	.naire-text p{
		font-size: 13px;
		line-height: 25px;
		text-align: center;
	}
	
	.original{
	    width: 320px;
	    height: 500px;
	    border-radius: 10px;
    }
	
	.collaboration{
		width: 320px;
		height: 300px;
	}
	
	.open img {
		max-height: 90px;
	}
	
	.event-text2,.event-text1 {
		font-size: 13px;
	}
	
	.c-comment {
		font-size: 14px;
	}
	
	.y-comment img {
		max-width: 350px;
	}
	
	.c-words1 {
		font-size: 14px;
	}
	
	.c-words2 {
		font-size: 16px;
	}
	
	.point-info p {
		font-size: 12px;
	}
}



