/* PCファースト方式
   PC用のCSSはメディアクエリの外に記述する */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;;
}

body {
	width: 100%;
	height: 100%;
	color: #55392D;
	font-size: 100%;
	font-family: "Noto Sans CJK Japanese", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	word-wrap: break-word;
	text-align: center;
	background-color: #FFF8E6;
	/*background-color: #FFCA00;*/
}

header#header > .inner{
	background-color: #FFCA00;
	width: 100%;
	/*max-width: 1280px;*/
	margin: 0 auto;
    position: relative;
	display: block;
	justify-content: center;
}

@media (max-width: 480px) {
	header#header > .inner{
		background-color: #FFCA00;
		width: 100%;
		/*max-width: 1280px;*/
		margin: 0 auto;
		position: fixed;
		display: block;
		justify-content: center;
		height: 150px;
	}
}

header#header > .inner .banner {
	position: relative;
	width: 80%;
	margin: auto;
	/*z-index: 992;*/
}

header#header > .inner .banner img {
	padding-top: 15px;
	padding-bottom: 15px;
}

@media (max-width: 480px) {
	header#header > .inner .banner {
		position: relative;
		width: 80%;
		height: 150px;
		margin: auto;
	}

	header#header > .inner .banner img {
		max-height: 135px;
		padding-top: 7.5px;
		padding-bottom: 7.5px;
	}

	.character img {
		width: 30%;
	}
}

header#header > .inner #icon {
	position: absolute;
	top: 30px;
	left: 100px;
	/*z-index: 993;*/
}

header#header > .inner #icon img {
	display: block;
}

header#header > .inner #logo {
	position: absolute;
	top: 30px;
}

header#header > .inner .nav_toggle {
	position: absolute;
	top: 30px;
	right: 100px;
	/*z-index: 993;*/
}

.util_sp {
	display: none !important;
}

@media (max-width: 480px) {
	.util_sp {
		display: block !important;
	}
}

.util_pc {
	display: block !important;
}

@media (max-width: 480px) {
	.util_pc {
		display: none !important;
	}
}

#instagram {
	display: none;
}
@media (max-width: 480px) {
	#instagram {
		position: fixed;
		top: 50px;
		right: 10px;
		display: flex;
		height: 30px;
		width: 30px;
		justify-content: center;
		align-items: center;
	}
}

/* ▼ スマホ用メニューボタン ▼  */
.menu-btn {
	position: fixed;
	top: 10px;
	right: 10px;
	display: flex;
	height: 30px;
	width: 30px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #FFCA00;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 30px;
	border-radius: 3px;
	background-color: #55392D;
	position: absolute;
}

.menu-btn span:before {
	bottom: 7px;
}

.menu-btn span:after {
	top: 7px;
}

#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}

#menu-btn-check {
	display: none;
}

.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 80;
	background-color: #FFCA00;
	transition: all 0.5s;
}

#menu-btn-check:checked ~ .menu-content {
	left: 0;/*メニューを画面内へ*/
}

.menu-content ul {
	padding: 70px 10px 0;
}
.menu-content ul li {
	border-bottom: solid 1px #55392D;
	list-style: none;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 15px;
	box-sizing: border-box;
	color:#55392D;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
}
.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #55392D;
	border-right: solid 2px #55392D;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
}
/* ▲ スマホ用メニューボタン ▲  */

#info {
	background-color: #ffffff;
	min-width: 300px;
	margin: auto;
	border: 3px solid #FFCA00;
	border-radius: 10px;
}

#address {
	width: 20%;
	min-width: 150px;
	margin: auto;
	text-align: left;
	font-size: 1.5vw;
}

@media (max-width: 480px) {
	#address {
		width: 50%;
		min-width: 150px;
		margin: auto;
		text-align: left;
		font-size: 4vw;
	}
}

.sub_title {
	font-size: 3vw;
	color: #FFCA00;
}

div.heading {
	width: 80%;
	margin: auto;
	text-align: left;
}

div.heading > .title {
	font-size: 3vw;
	color: #55392D;
	font-weight: bold;
}

div.heading > .content {
	font-size: 1.5vw;
}

@media (max-width: 480px) {
	div.heading > .title {
		font-size: 6vw;
		color: #55392D;
		font-weight: bold;
	}

	div.heading > .content {
		font-size: 4vw;
	}
}

p.content > span {
	display: inline-block;
}

.item {
	display: inline-block;
	padding: 10px;
}

#menu {
	width: 80%;
	margin: auto;
}

img.item {
	width: 350px;
	height: 350px;
}

@media (max-width: 480px) {
	img.item {
		width: 110px;
		height: 110px;
	}
}

.price {
	font-size: 2vw;
}

@media (max-width: 480px) {
	.price {
		font-size: 4vw;
	}
}

#price_table {
	margin: auto;
}

/* common */
img {
	width: auto;
	height: auto;
	max-width: 100%;
	-webkit-touch-callout: none;
}

ul, ol {
	list-style: none;
}

nav.util_pc {
	display: block;
}

nav.util_pc ul {
	width: 100%;
	padding-left: 0px;
	display: flex;
}
  
nav.util_pc li {
	width: 25%;
	text-align: center;
	font-size: 2.5vw;
}

nav.util_pc li a {
	text-decoration: none;
	color: #55392D;
}

header#header > .inner nav.nav .inner {
	margin: 0 auto;
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.space {
	display: none;
}

@media (max-width: 480px) {
	.space {
		display: block;
		height: 150px;
	}
}

.footer {
	font-size: 1.5vw;
}

@media (max-width: 480px) {
	.footer {
		/* text-align: left; */
		font-size: 4vw;
	}
}

@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
}

/* ポップアップウインドウの設定 */
.pu {
	background-color: #ffffff;
	box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 80%;
	height: 50%;
	border: 5px solid #FFCA00;
	/*overflow-y: scroll;*/
  }
  /* チェックボックスの初期設定 */
  #pu-on1{
	display: none;
  }
  /* チェックされたらポップアップウインドウを開く */
  #pu-on1:checked + .pu{
	display: block;
  }
  
  /* チェックボックスの初期設定 */
  #pu-on2{
	display: none;
  }
  /* チェックされたらポップアップウインドウを開く */
  #pu-on2:checked + .pu{
	display: block;
  }
  
  /* チェックボックスの初期設定 */
  #pu-on3{
	display: none;
  }
  /* チェックされたらポップアップウインドウを開く */
  #pu-on3:checked + .pu{
	display: block;
  }

  /* チェックボックスの初期設定 */
  #pu-on4{
	display: none;
  }
  /* チェックされたらポップアップウインドウを開く */
  #pu-on4:checked + .pu{
	display: block;
  }

  /* チェックボックスの初期設定 */
  #pu-on5{
	display: none;
  }
  /* チェックされたらポップアップウインドウを開く */
  #pu-on5:checked + .pu{
	display: block;
  }
  
  /* 閉じるアイコン（右上） */
  .icon-close{
	background: #ffffff;
	color: #FFCA00;
	font-size: 30px;
	padding: 0 10px;
	position: absolute;
	right: 0;
  }
  
  /* 開くボタン */
  .btn-open{
	background: #fff;
	border-radius: 10px;
	color: #fff;
	padding: 0px;
	cursor: pointer;
	margin: 10px auto;
	width: 95%;
	text-align: center;
	display: flex;
  }
  
  /* ポップアップの内容 */
  .pu-content{
	margin: 40px auto 40px auto;
	width: 90%;
  }

  #non_info {
	  text-align: center;
	  color: gray;
  }

  .info_date {
	  color: black;
	  width: 40%;
  }

  .info_title {
	  color: black;
	  text-align: left;
	  width: 60%;
  }

  #access_info {
	font-size: 1.5vw;  
  }

  @media (max-width: 480px) {
	#access_info {
		font-size: 4vw;
	}
}

#right {
	text-align: right;
}

#map_img {
	width: 90%;
}


.explanation {
	width: 50%;
	margin: auto;
	text-align: left;
	font-size: 1.5vw;
}

@media (max-width: 480px) {
	.explanation {
		width: 70%;
		min-width: 150px;
		margin: auto;
		text-align: left;
		font-size: 4vw;
	}
}

.explanation li {
	list-style-type: none;
	margin-left: 1rem;
	text-indent: -1rem;
}
  
.explanation li::before {
	display: inline;
	content: "※";
}


#price_explanation {
	width: 45%;
	min-width: 150px;
	margin: auto;
	text-align: left;
	font-size: 1.5vw;
}

@media (max-width: 480px) {
	#price_explanation {
		width: 70%;
		min-width: 150px;
		margin: auto;
		text-align: left;
		font-size: 4vw;
	}
}

.explanation_sp {
	display: none !important;
}

@media (max-width: 480px) {
	.explanation_sp {
		display: block !important;
	}
}

.explanation_pc {
	display: block !important;
}

@media (max-width: 480px) {
	.explanation_pc {
		display: none !important;
	}
}