@charset "utf-8";
/* CSS Document */

/* ----------------------------------------
reset
---------------------------------------- */
html {
	font-size: 62.5%;
}
html,body {
	width: 100%;
}
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, ol, ul, 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-weight: normal;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	word-wrap: break-word;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
	max-width: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="text"],
textarea{
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="text"]::-webkit-search-decoration,
textarea::-webkit-search-decoration{
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="text"]::focus,
textarea::focus{
  outline-offset: -2px;
}

/* ----------------------------------------
base
---------------------------------------- */
body {
	font-family: "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #fff;
	color: #000;
	font-size: 1.6rem;
}
#wrapper {
	max-width: 600px;
	margin: 0 auto;
}
#outer {
	width: 100%;
}
.inner {
	padding: 20px;
}
.bg-gray {
	background: #f2f2f2;
}
.text-center {
	text-align: center;
}
.line-gray {
	border-top: 6px solid #ebebeb;
	padding-top: 60px;
}

@media screen and (max-width: 767px){
	.spView {
		display: block!important;
	}
	.pcView {
		display: none!important;
	}
}
@media screen and (min-width: 768px){
	.spView {
		display: none!important;
	}
	.pcView {
		display: block!important;
	}
}

/* ----------------------------------------
font
---------------------------------------- */
a {
	text-decoration: underline;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	color: #000;
}
a:hover {
	color: #000;
}
b {
	font-weight: bold;
}
nav a:hover {
	color: #000;
}
p {
	line-height: 1.5;
}
h2,h3,h4 {
	line-height: 1.5;
	font-weight: bold;
}
button, input, select, textarea {
  font-family : inherit;
  font-size   : 100%;
}
h2 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 20px;
}
h2.topic-h2 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 40px;
	line-height: 1.3;
}
h3 {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 20px;
}
h3.large {
	font-size: 3rem;
	font-weight: normal;
	margin-bottom: 20px;
}

@media screen and (max-width: 479px){
	h2.topic-h2 {
		font-size: 2.6rem;
	}
}

/* ----------------------------------------
margin
---------------------------------------- */
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }

/* ----------------------------------------
header
---------------------------------------- */
header {
	background: #245352;
	padding: 20px;
	display: flex;
	justify-content: space-between;
}
header .h_logo {
	max-width: 201px;
}
header .h_sns {
	text-align: right;
	max-width: 210px;
	margin-left: 20px;
}
header .h_sns .sns_btn {
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-end;
}
header .h_sns .sns_btn img {
	padding-left: 6px;
}

/* ----------------------------------------
layout
---------------------------------------- */
.movie_area {
	text-align: center;
	margin-bottom: 60px;
}

/* feature */
.feature_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.feature_box:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.feature_box .feature_img {
	width: 45%;
}
.feature_box .feature_txt {
	padding-left: 20px;
	width: 55%;
}
.feature_box .feature_txt h3 {
	background: #245352;
	font-size: 1.9rem;
	color: #fff;
	margin-bottom: 10px;
	padding: 5px 10px;
}

/* item-detail */
.item_detail {
	text-align: center;
	margin: 0 auto 20px auto;
}
.item_detail img {
	margin-bottom: 20px;
	display: inline-block;
}
.item_data dl {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	line-height: 1.5;
}
.item_data dt {
	font-weight: bold;
	width: 30%;
}
.item_data dd:before {
	content:":";
	display: inline-block;
	padding-right: 5px;
	font-weight: bold;
}
.item_data dd {
	width: 70%;
	text-indent: -6px;
	padding-left: 20px;
}

/* table */
.camp_detail table {
	border-collapse: collapse;
	width: 100%;
	line-height: 1.5;
	word-break : break-all;
}
.camp_detail table th, .camp_detail table td {
	border: 1px solid #ccc;
	padding: 8px;
}
.camp_detail table th {
	background: #245352;
	color: #fff;
	font-weight: bold;
	vertical-align: middle;
	width: 25%;
}

/* 2019.05特典 */
.bonus_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}
.bonus_box .bonus_img {
	width: 30%;
	text-align: center;
}
.bonus_box .bonus_img img {
	width: 100%;
}
.bonus_box .bonus_txt {
	width: 66.67%;
	padding-right: 20px;
}
.bonus_item ul {
	display: flex;
	flex-wrap: wrap;
}
.bonus_item ul li {
	width: 20%;
	padding: 1%;
}
@media screen and (max-width: 479px){
	.feature_box .feature_img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.feature_box .feature_txt {
		padding-left: 0;
		width: 100%;
	}
	.bonus_box .bonus_img {
		width: 100%;
		text-align: center;
	}
	.bonus_box .bonus_txt {
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}
	.bonus_item ul li {
		width: 33.33%;
		padding: 1%;
		margin-bottom: 10px;
	}
	.bonus_item ul li img {
		width: 100%;
	}
}

/* ----------------------------------------
footer
---------------------------------------- */
footer .footer_info {
	background: #245352;
	color: #fff;
}
footer .footer_address {
	color: #245352;
}
footer .footer_link ul {
	display: flex;
	flex-wrap: wrap;
}
footer .footer_link ul li {
	width: 50%;
	padding: 1%;
}
footer .footer_sns ul {
	display: flex;
}
footer .footer_sns ul li{
	margin-right: 10px;
}
footer .copyright {
	text-align: center;
}

@media screen and (max-width: 479px){
	footer .footer_link ul li {
		width: 100%;
		margin-bottom: 5px;
		text-align: center;
	}
}

/* ----------------------------------------
2019.11 LP
---------------------------------------- */
.point_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.point_box:last-child {
	border: none;
	margin: 0;
}
.point_box .point_txt {
	width: 48.2%;
}
.point_box .point_txt h3 {
	color: #fff;
	background: #245352;
	font-size: 1.9rem;
	padding: 5px 10px;
}
.point_box .point_img {
	width: 48.2%;
}
.bonus_item_col3 ul {
	display: flex;
	flex-wrap: wrap;
}
.bonus_item_col3 ul li {
	width: 31%;
	margin: 0 3% 3% 0;
}
.bonus_item_col3 ul li:nth-child(3n) {
	margin-right: 0;
}
h2.ttl_green {
	background: #245352;
	color: #fff;
	font-size: 1.9rem;
	font-weight: bold;
	margin: 10px 0 20px 0;
	padding: 5px 10px;
	display: inline-block;
}
ul.shop_list {
	margin-bottom: 20px;
}
ul.shop_list li {
	width: 100%;
	border-bottom: 1px solid #999;
	padding: 15px 0;
	text-align: center;
}
ul.shop_list li:first-child {
	border-top: 1px solid #999;
}
ul.shop_list a {
	color: #245352;
	font-weight: bold;
	text-decoration: none;
}

@media screen and (max-width: 479px){
	.point_box .point_txt {
		width: 100%;
	}
	.point_box .point_txt p {
		margin-bottom: 20px;
	}
	.point_box .point_img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.point_box:last-child .point_img {
		margin-bottom: 0;
	}
}

/* ----------------------------------------
2019.12 店舗LP
---------------------------------------- */
h2.shop_lp_ttl {
	background: #245352;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 5px 0;
	text-align: center;
}
.shop_lp h3.name {
	font-size: 3rem;
	text-align: center;
	margin: 0 auto 40px auto;
}
.shop_lp .txt {
	margin-bottom: 40px;
}
.shop_lp .map {
	margin-bottom: 40px;
}
#map {
	width: 100%;
	height: 400px;
}
.access_detail .ttl {
	margin: 20px auto 40px auto;
	text-align: center;
}
.access_detail dl {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: auto;
}
.access_detail dl dt {
	width: 20%;
	max-width: 120px;
	background: #245352;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 10px 5px;
	margin: 0 0 20px 0;
}
.access_detail dl dd {
	width: 80%;
	padding: 5px 0 0 20px;
	margin-bottom: 20px;
	line-height: 1.5;
}
.access_detail dl dd a {
	color: #000;
}
.access_detail .access_cotact {
	text-align: center;
	margin: 20px auto;
}
@media screen and (min-width: 768px){
	a[href^="tel:"]{
		pointer-events: none;
		text-decoration: none;
	}
}