@charset "utf-8";

html{
	scroll-behavior: smooth;
}

body {
	background-color: #fffff9;
	color: #333;
	font-family: 'M PLUS 1p', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	text-align: center;
}

h2 {
	margin: 0 0 40px;
	font-weight: 500; /* 中太 */
	font-size: 1.8em;
}

h3 {
	margin: 0 0 20px;
	font-size: 1.5em;
}

ul {
	list-style: none;
}

a {
	display: block;
}
p {
	font-weight: 400; /* 標準 */
}

/* header */

header {
	width: 100%;
	height: 650px;
	background-image: url("images/background.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #333;
}
@media screen and (max-width: 760px) {
	header {
		height: 50vh;
	}
}

header nav.globalNavi {
	width: 100%;
	height: 80px;
	padding: 0;
	background-color: #fff225;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
@media screen and (max-width: 760px) {
		header nav.globalNavi {
		height: 60px; /* 高さを少し低くする */
		padding: 0 10px; /* 内側に余白を追加 */
		justify-content: space-between; /* スマホでは左右に配置する例 */
		background-color: rgba(255, 242, 37, 0.9);
		backdrop-filter: blur(5px); 

	}
}
header nav.globalNavi ul {
	width: 800px;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	font-size: 17px;
}
@media screen and (max-width:760px) {
	header nav.globalNavi ul {
		display: none;
	}
}

header nav.globalNavi ul li a {
	padding: 15px 20px;
	font-weight: 500;
}

/*== スマホ用メニュー(ハンバーガーメニュー)==*/
/* PC版では非表示、ブレイクポイント(今回は760px)以下で表示 */
div.hamburgerMenu {
	display: none;
}
@media screen and (max-width: 760px) {
	div.hamburgerMenu {
		display: block;
	}
}

/* 三ボタンの領域を右上に作成、背景色設定、top/rightでボタンの位置を調整、z-indexで最前面に*/
div.hamburgerMenu .menuBtn {			
	width: 60px;
	height: 60px;
	background-color: rgba(0,0,0,0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 90;
	cursor: pointer;
}

/* ボタンの3本線を作成、線の幅、線の太さ、線の色を設定 */
div.hamburgerMenu .menuBtn span,
div.hamburgerMenu .menuBtn span:before,
div.hamburgerMenu .menuBtn span:after {
	content: '';
	width: 35px;
	height: 3px;
	border-radius: 3px;
	background-color: #fff;
	display: block;
	position: absolute;
}

/* 上の線は上方向に10pxずらす */
div.hamburgerMenu .menuBtn span:before {
	bottom: 10px;
}

/* 下の線は下方向に10pxずらす */
div.hamburgerMenu .menuBtn span:after {
	top: 10px;
}

/* ボタンクリック時：真ん中の線は透明に */
div.hamburgerMenu #menuBtnCheck:checked ~ .menuBtn span {
	background-color: rgba(255, 255, 255, 0);
}

/* ボタンクリック時：上の線を斜めに（／） */
div.hamburgerMenu #menuBtnCheck:checked ~ .menuBtn span::before {
	bottom: 0;
	transform: rotate(45deg);
}

/* ボタンクリック時：下の線を斜めに（＼） */
div.hamburgerMenu #menuBtnCheck:checked ~ .menuBtn span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* メニューの状態を保持するチェックボックスは非表示 */
div.hamburgerMenu #menuBtnCheck {
	display: none;
}

/* メニューの領域を作成、背景の大きさ、背景色、表示位置、アニメーション（スピードの調整） */
div.hamburgerMenu .menuContent {
	width: 100%;
	height: auto;/* ★100%にするとコンテンツ領域をウィンドウの下までに */
	padding: 0 10px;/* ★メニュー領域の左右の隙間 */
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 80;
	transition: all 0.5s;
}

/* メニューの領域を作成、横幅を設定。メニューリストの表示位置を×ボタンの大きさぶん下げる */
div.hamburgerMenu .menuContent ul {
	width: 180px;/* ★100%にすると横幅いっぱい */
	padding: 80px 0 0;
	display: block;
}

/* メニュー項目間の線を追加 */
div.hamburgerMenu .menuContent ul li {
	border-top: solid 1px #fff;
}

/* ☆最初のメニュー項目の上線なくす */
div.hamburgerMenu .menuContent ul li:first-child {
	border-top: none; 		
}

/* メニューのリンク実体。クリックできる余白を作る、文字色、表示位置 */
div.hamburgerMenu .menuContent ul li a {
	padding: 10px 0px;
	display: block;
	font-size: 16px;
	color: #fff;
	text-align: center;
}

/* ボタンクリック時：メニュー領域の引き出し位置 */
div.hamburgerMenu #menuBtnCheck:checked ~ .menuContent {
	left: calc(100% - 200px);/* ★0にすると左端まで */
}


header div.mainVisual {
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 700px;
	margin: 0;
	display: flex;               /* ← 追加 */
	justify-content: center;     /* 横方向中央 */
	align-items: center;         /* 縦方向中央 */
	flex-direction: column;      /* タテ並び */
}
@media screen and (max-width: 760px) {
	header div.mainVisual {
		height: 50vh;
	}
}
.gourmet-collage {
	position: absolute;
	top: 0; /* 必要に応じて調整 */
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; 
}

.gourmet-img {
	position: absolute;
	width: 450px;
	max-width: 30vw;
	height: auto;
	z-index: 1;
}
/* 四隅に配置 */
.corner-top-left {
	top: 70px;
	left: 10px;
	width: 400px;
}

.corner-top-right {
	top: 70px;
	right: 15px;
	width: 400px;
}

.corner-bottom-left {
	bottom: 50px;
	left: 0;
	width: 360px;
}

.corner-bottom-right {
	bottom: 60px;
	right: 0;
}
@media screen and (max-width: 760px) {
	.gourmet-img {
		max-width: 35vw;      /* サイズを少し縮小 */
		width: auto;
	}

	.corner-top-left {
		top: 50px;
		left: 5px;
		width: 180px;
	}

	.corner-top-right {
		top: 50px;
		right: 5px;
		width: 180px;
	}

	.corner-bottom-left {
		bottom: 0;
		left: 5px;
		width: 170px;
	}

	.corner-bottom-right {
		bottom: 0;
		right: 0;
		width: 180px;
	}
}
@media screen and (max-width: 480px) {
	.corner-top-left,
	.corner-top-right {
		top: 50px;
		width: 130px;
	}
	.corner-bottom-left,
	.corner-bottom-right {
		bottom: 10px;
		width: 130px;
	}
	.corner-top-left {
		left: 0;
	}
	.corner-top-right {
		right: 0;
	}
	.corner-bottom-left {
		width: 120px;
	}
}

header div p.mainCopy {
	font-size: clamp(17px, 2.4vw, 29px); /* 最小18px, 最大32pxまで可変 */
	font-weight: bold;
	line-height: 1.5;
	color: #333; /* 中を透明にする */
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 480px) {
	header div p.mainCopy {
		font-size: 14px;
		margin: 20px 0 10px;
		line-height: 1.2;
	}
}
	
/* タイトル画像 */
header div h1.mainTitle img {
	width: 90%;
	max-width: 800px;  /* 最大サイズ */
	min-width: 350px;  /* 小さくなりすぎ防止 */
	height: auto;
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 480px) {
	header div h1.mainTitle img {
		width: 330px;
		max-width: 330px;
		min-width: unset; /* 350pxのminを無効にする */
	}
}


/* 入場無料バッジ */
header div img.freeBadge {
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(60%);
	width: clamp(85px, 10vw, 120px); /* 最小80px?最大130pxまで可変 */
	height: auto;
	z-index: 2;
}
@media screen and (max-width: 760px) {
header div img.freeBadge {
		bottom: 20px;
		transform: translateX(30%); /* モバイルでは少しだけずらす */
	}
}
@media screen and (max-width: 600px) {
	header div img.freeBadge {
		transform: translateX(15%); /* モバイルでは少しだけずらす */
		width: 70px;
		bottom: 30px;
	}
}
@media screen and (max-width: 480px) {
	/* バッジをもっと下に＆小さく */
	header div img.freeBadge {
		width: 55px;
		bottom: 15px;
		transform: translateX(10%);
	}
}
/* main */

main {
	max-width: 980px;
	margin: 0 auto;
}
main section {
	text-align: center;            /* テキストを中央に */
}

main section.schedule {
	background-color: #ffffe0;
	padding: 100px 0 100px;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 760px) {
	main section.schedule {
		padding: 10px 0 10px;
	}
}

main section h2.dayAndTime {
	display: inline-block;         /* 横幅に合わせる */
	padding: 0.3em 2.5em;          /* 内側の余白 */
	background-color: #666;        /* 背景グレー */
	color: #fff;                   /* 文字を白に */
	border: 2px solid #666;        /* 枠線（白） */
	border-radius: 9999px;         /* 丸み（pill型） */
	box-shadow: 5px 6px 5px rgba(0, 0, 0, 0.8);
	margin: 0 auto 60px;
	
}

main section img.dayAndTime-image {
	display: block;
	margin: 0 auto;
	width: 80%;
	height: auto;
	max-width: 700px;
	transform: translateX(10px);
}

@media screen and (max-width: 760px) {
	main section img.dayAndTime-image {
		width: 60%;     /* 画面幅の90%に縮小 */
		min-width: 300px;
	}
}
main section h2.place {
	display: inline-block;         /* 横幅に合わせる */
	padding: 0.3em 2.5em;          /* 内側の余白 */
	background-color: #666;        /* 背景グレー */
	color: #fff;                   /* 文字を白に */
	border: 2px solid #666;        /* 枠線（白） */
	border-radius: 9999px;         /* 丸み（pill型） */
	box-shadow: 5px 6px 5px rgba(0, 0, 0, 0.8);
	margin: 70px auto 50px;
}
@media screen and (max-width: 760px) {
	main section h2.dayAndTime,
	main section h2.place {
		font-size: 16px;        /* バッジの文字サイズを小さく */
		padding: 0.2em 2em;   /* バッジ内の余白も調整 */
		box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.6); /* 影も軽めに調整 */
		margin: 30px auto;
	}
}
main section p.place-text {
	font-size: 24px;
	font-weight: bold;
	margin: 0 auto 30px;
}
@media screen and (max-width: 760px) {
	main section p.place-text {
		font-size: 16px;
	}
}
.custom-shape-divider-bottom-1754369347 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1754369347 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1754369347 .shape-fill {
    fill: #FFFFF9;
}
main section img.section-title {
	width: 70%;          /* 画面幅の70%に */
	transform: translateX(30px); /* 移動も軽く調整（任意） */
	margin-top: 70px;     /* 上の余白を縮小（任意） */
	max-width: 450px;
}

@media screen and (max-width: 760px) {
	/* タイトル画像を縮小 */
	main section img.section-title {
		width: 70%;          /* 画面幅の70%に */
		transform: translateX(10px); /* 移動も軽く調整（任意） */
		margin-top: 40px;     /* 上の余白を縮小（任意） */
		max-width: 400px;
	}
}
@media screen and (max-width: 760px) {
	main section h2.gourmet-picks {
		font-size: 23px;
	}
}

main section p.gourmet-text {
	width: 90%;
	max-width: 700px;
	text-align: left;
	margin: 60px auto 40px;
	padding-left: 90px;
}
@media screen and (max-width: 760px) {
	main section p.gourmet-text {
		margin: 0 auto; /* 上下余白も少し縮める */
		width: 85%;            /* スマホでは全体の9割に広げるなども可 */
		font-size: 15px;
		padding: 30px 0 30px;
	}
}
main section ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 3列表示 */
	gap: 20px; /* アイテム間の余白 */
	max-width: 980px; /* 中央に幅制限 */
	width: 90%;
}
@media screen and (max-width: 760px) {
	main section ul {
		grid-template-columns: repeat(2, 1fr); /* スマホでは2列にする */
		gap: 16px; /* 間隔を少し詰める */
		padding: 0 10px; /* 画面の左右に少し余白 */
	}
}
main section ul li {
	text-align: left;
}

main section ul li img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}

main section ul li p {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.5;
}

main section ul li p span.item-title {
	font-weight: bold;
	font-size: 15px;
}

main section p.gourmet-notice {
	width: 90%;
	max-width: 600px;
	text-align: left;
	margin: 60px auto 40px;
	padding-left: 75px;
}
@media screen and (max-width: 760px) {
	main section p.gourmet-notice {
		margin: 0 auto;  /*上下余白も少し縮める */
		width: 90%;            /* スマホでは全体の9割に広げるなども可 */
		font-size: 15px;
		padding: 30px 0 0 50px;
	}
}

main section div.map-banner {
	background-color: #fff225; /* 明るい黄色 */
	padding: 30px 25px;
	border-radius: 40px;
	width: fit-content;
	margin: 80pt auto 110pt;
	box-shadow: 4px 4px 10px #888888;
	text-align: center;
}
@media screen and (max-width: 760px) {
	main section div.map-banner {
		padding: 30px 20px;
		border-radius: 40px;
		margin: 50pt auto 70pt;
		width: 80%;
	}
}
main section div.map-banner p {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
}
@media screen and (max-width: 760px) {
	main section div.map-banner p {
		font-size: 15px;
		line-height: 1.4;
	}
}

main section div.map-banner p a {
	text-decoration: none;
	color: black;
	font-weight: bold;
	font-size: 24px;
}
@media screen and (max-width: 760px) {
	main section div.map-banner p a {
		font-size: 16px;
	}
}

main section div.map-banner p a span {
	color: red;
	font-weight: bold;
}

main section.coupon-section {
	background-color: #ffffe0; /* 薄いクリーム色 */
	padding: 70px 0;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	position: relative;
	overflow: visible;

}
.custom-shape-divider-top-1754369586 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1754369586 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1754369586 .shape-fill {
    fill: #FFFFF9;
}
main section div.coupon-banner {
	background-color: white;
	border: 8px solid #00b900; /* 濃い緑 */
	padding:30px 50px;
	margin: 50px auto 0;
	max-width: 980px;		
	width:90%;
	box-sizing: border-box;
}
@media screen and (max-width: 760px) {
	main section div.coupon-banner {
		padding:20px;
		width: 90%;
	}
}

main section div.coupon-banner h2 {
	text-align: left;
	font-size: 30px;
	color: #00b900;
	font-weight: bold;
	margin:0 auto;
}
@media screen and (max-width: 760px) {
main section div.coupon-banner h2 {
		margin-bottom: 20px;
		text-align: center;
		font-size: 24px;
	}
}
main section div div.coupon-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
@media screen and (max-width: 760px) {
	/* coupon-content を縦並びに */
	main section div div.coupon-content {
		flex-direction: column;
		align-items: flex-start; /* 左寄せに */
	}
}
main section div div div.coupon-text {
	flex: 1;
	font-size: 19px;
	line-height: 2;
	text-align: left;
	margin-top: 20px;
}
@media screen and (max-width: 760px) {
	main section div div div.coupon-text {
		font-size: 16px;
		margin-top: 10px;
	}
}
main section div div div.coupon-text p span {
	font-size: 16px;
	display: inline-block;
	margin-top: 50px; 
}
@media screen and (max-width: 760px) {
	main section div div div.coupon-text p span {
		margin-top: 20px; /* 間隔少し縮める */
		display: block;
	}
}
main section div div div.coupon-qr img {
	width: 260px;
	height: auto;
	margin-top: -50px;
	
}	
@media screen and (max-width: 760px) {
	main section div div.coupon-qr {
		order: -1; /* 順番を最初に */
		width: 100%;
		display: flex;
		justify-content: center; /* 中央寄せ */
	}
	main section div div div.coupon-qr img {
		width: 100%;
		max-width: 260px;
		height: auto;
		margin-top: 0;/* 元の-50pxをリセット */
		margin-right: 30px;
	}
}

main section.sns-section {
	background-color: #fefcdc; /* 薄いクリーム色 */
	padding: 30px 0 70px;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}
@media screen and (max-width: 760px) {
	main section.sns-section {
		padding: 0 0 70px;
	}
}

main section div.sns-banner{
	background-color: white;
	border: 8px solid #f78618; /* 濃い緑 */
	padding:30px 50px;
	margin: 0 auto;
	box-sizing: border-box;
	width:90%;
	max-width: 980px;
}
@media screen and (max-width: 760px) {
	main section div.sns-banner{
		padding:20px;
		width: 90%;
	}
}

main section div.sns-banner h2 {
	text-align: left;
	font-size: 30px;
	color: #f78618;
	font-weight: bold;
	margin:0 auto 30px;
}
@media screen and (max-width: 760px) {
	main section div.sns-banner h2 {
		font-size: 23px;
		text-align: center;
		margin:0 auto 20px;
		line-height: 1.2;
	}
}

main section div.sns-banner h2 span {
	font-size: 20px;
	margin-left: 10px;
}
@media screen and (max-width: 760px) {
	main section div.sns-banner h2 span {
		font-size: 16px;
		margin-left: 0;
		text-align: center;
	}
}

.sp-only-br {
	display: none;
}
@media screen and (max-width: 760px) {
	.sp-only-br {
		display: inline;
	}
}

div.sns-image {
	display: flex;
	justify-content: center;
	align-items: center; /* 高さが揃ってない時に中央揃え */
	gap: 50px;
	flex-wrap: wrap
}
@media screen and (max-width: 760px) {
	/* SNS画像を縦並び＆中央寄せ */
	div.sns-image {
		flex-direction: column;
		align-items: center; /* 中央寄せ */
		gap: 20px;
	}
}
.left-img {
	width: 55%;
	max-width: 400px;
	height: auto;
}
@media screen and (max-width: 760px) {
	.left-img {
		width: 95%;
		max-width: 420px;
	}
}		
.right-img {
	width: 35%;
	max-width: 250px;
	height: auto;
}
@media screen and (max-width: 760px) {
	.right-img {
		width: 80%;
		max-width: 300px;
	}
}		

.sns-description {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
@media screen and (max-width: 760px) {
	.sns-description {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
.sns-description p {
	font-size: 18px;
	line-height: 1.6;
	margin: 10px 0;
	text-align: left;
}
@media screen and (max-width: 760px) {
	.sns-description p {
		font-size: 16px;
		text-align: center;
	}
}
.sns-detail-button a {
	display: inline-block;
	background-color: #fff225;
	padding: 10px 20px;
	border: 2px solid #f78618;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	white-space: nowrap;
	transition: background-color 0.3s;
}
@media screen and (max-width: 760px) {
	.sns-detail-button a {
		margin-top: 20px;
	}
}

.access-section {
	margin-top: 60px;
	overflow: hidden;
}
@media screen and (max-width: 760px) {
	.access-section {
		margin-top: 30px;
	}
}

.access-section h2 {
	font-size: 30px;
	margin-bottom: 40px;
	text-align: center;
	font-weight: 500;
}
@media screen and (max-width: 760px) {
	.access-section h2 {
		font-size: 23px;
		margin-bottom: 30px;
	}
}
.access-list {
	display: grid;
	justify-content: center;
	grid-template-columns: 170px 1fr; /* 左: 駅名（最小必要幅）, 右: 説明 */
	gap: 0.5em 0.5em; /* 行間、列間の余白 */
	max-width: 800px;
	margin: 0 170px 50px 250px;
	font-size: 18px;
	line-height: 1.8;
	text-align: left;
}
@media screen and (max-width: 760px) {
	.access-list {
		grid-template-columns: 1fr; /* 一列に並べる */
		margin: 0 auto 40px; /* 左右マージンも小さく */
		font-size: 16px;
		padding: 0 20px;
		text-align: center;
		gap: 0.2em 0.5em;
	}
}
.access-list dt {
	font-weight: bold;
	padding-right: 10px;
}

.access-list dd {
	margin: 0;
	text-align: left;
	font-size: 15px;
}
@media screen and (max-width: 760px) {
	.access-list dd {
		text-align: center;
	}
}

.access-list dt::before {
	content: "・";
	margin-right: 0.5em;
}

address {
	display: block;
	font-style: normal;
	line-height: 1.8;
	text-align: left;
	margin: 0 auto 30px;
	max-width: 650px;
	padding-left: 7em; /* ← 全体を少し右にずらす（オプション） */
	position: relative;
}
@media screen and (max-width: 760px) {
	address {
		max-width: 90%;
		text-align: left;
		margin:0 auto 20px;
		padding-left: 0;
	}
}
address::before {
	position: absolute;
	left: 0;
	top: 0;
}
address span.zip {
	display: inline-block;
}

.map {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9比率 */
	margin: 0 auto;
	max-width: 800px;
}

.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

footer {
	background-color: #fff225;
	padding: 40px 20px 20px;
	height: 200px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	writing-mode: horizontal-tb;
	margin-top: 100px;
}
@media screen and (max-width: 760px) {
	footer {
		height: auto;
		padding: 30px 15px 20px;
		margin-top: 60px;
	}
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
	gap: 50px;
	padding-left: 5em; /* ← 全体を少し右にずらす（オプション） */
}
@media screen and (max-width: 760px) {
	.footer-top {
		flex-direction: column;
		align-items: center;
		padding-left: 0;
		gap: 20px;
	}
}
.footer-left,
.footer-right {
	width: 45%;
	font-size: 14px;
	line-height: 2;
}
@media screen and (max-width: 760px) {
	.footer-left, .footer-right {
		width: 100%;
		text-align: center;
	}
}
.footer-left a {
	color: inherit;
	text-decoration: none;
}

footer p small {
	display: block;
	text-align: center;
	margin-top: 20px;
	font-size: 12px;
}
@media screen and (max-width: 760px) {
	footer p small {
		margin-top: 30px;
		font-size: 11px;
	}
}

/* 最初の状態（非表示・右にズレた状態） */
#titleImage {
  opacity: 0;
  transform: translateX(200px);
  transition: all 1.0s ease-out;
}

/* アニメーションが起きるときの状態 */
#titleImage.slide-in {
  opacity: 1;
  transform: translateX(0);
}
button {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 80px;
	right: -80px;
	bottom: calc(50% - 40px);
	color: #000;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	border: 0;
	background: #fff225;
	transition: .2s;
	letter-spacing: 3px;
	font-weight: bold;
	border-radius: 10px 0 0 10px;
}

button i{
	position: absolute;
	font-size: 30px;
	color: #000;
	top: 15px;
	font-weight: 300;
}

button p{
	margin: 0;
	font-size: 15px;
	bottom: 13px;
	position: absolute;
}

.is-active {
	opacity: 1;
	visibility: visible;
}

button.is-active {
	right: -2px;
}
