@charset "UTF-8";

@-webkit-keyframes modalShow {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes modalShow {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

main {
  font-size: 81.25%;
  font: 13px / 1.231 arial, helvetica, clean, sans-serif;
}

#title {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: bold;
    font-size: 169.2307692308%;
    margin-top: 26px;
    margin-bottom: 15px;
}

a.c-button,
button.c-button {
	background-color: #ca4736;
	color: #fff;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear
}
a.c-button:visited,a.c-button:link{
	color: #fff;
}

.is-shime a.c-button,
.is-shime button.c-button {
	background-color: #2a4d69
}

a.c-button:hover,
button.c-button:hover {
	color: #fff;
	text-decoration: none;
	opacity: .7
}

a.c-button.is-danger,
button.c-button.is-danger {
	background-color: #ca4736
}

a.c-button .icon,
button.c-button .icon {
	margin-right: 7px
}

a.c-button .icon i,
button.c-button .icon i {
	font-size: 1.4rem;
	width: 14px;
	height: 14px;
	line-height: 14px
}

a.c-button span,
button.c-button span {
	display: block
}

.c-header-page__img img {
	display: block;
	width: 100%;
	height: auto
}

.c-header-tab *,
div#main * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.c-header-tab ul,
.c-header-tab ul li {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500
}

.c-header-tab ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 15px;
	border-radius: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.c-header-tab ul li {
	width: calc((100% - 25px)/4 - 15px)
}

.c-header-tab ul li.is-active a,
.c-header-tab ul li.is-index a {
	opacity: 1
}

.c-header-tab ul li.is-active a .icon {
	-webkit-transform: rotateZ(90deg);
	-ms-transform: rotate(90deg);
	transform: rotateZ(90deg)
}

.c-header-tab ul li a,
.c-header-tab__wrap {
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear
}

.c-header-tab ul li a {
	opacity: .4
}

.c-header-tab ul li a.is-disabled {
	opacity: .4 !important;
	pointer-events: none
}

.c-header-tab ul li a img:hover,.c-header-page__img a img:hover {
	opacity: 0.75;
	transition: 0.3s;
}

.c-header-tab__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 50px;
	border: 2px solid transparent;
	border-radius: 10px
}

.md-content>p:not(:first-child),
.md-content>ul:not(:first-child) {
	margin-top: .5em
}

.c-spot-coupon__content li,
.md-content ul li {
	padding-left: 1.2em;
	position: relative
}

.md-content ul li::before {
	content: '※';
	position: absolute;
	left: 0;
	top: 0
}

.c-modal-box {
	display: none;
	z-index: 65000
}

.c-modal-box__overlay,
.is-active .c-modal-box {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	display: block
}

.is-active .c-modal-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-animation-name: modalShow;
	animation-name: modalShow;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	position: fixed
}

.c-modal-box__overlay {
	background-color: rgba(0, 0, 0, .8);
	position: absolute;
	z-index: 10
}

.c-modal-box__content {
	position: relative;
	z-index: 20
}

.c-modal-box__content-body {
	position: relative
}

.c-modal-box__close {
	position: absolute;
	right: -10px;
	top: -12px;
	font-size: 30px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #2a4d69;
	z-index: 40;
	cursor: pointer
}

.c-modal-box__close a {
	color: #2a4d69;
	display: block;
	-webkit-transform: rotateZ(45deg);
	-ms-transform: rotate(45deg);
	transform: rotateZ(45deg)
}
.c-modal-box__close a:hover{
	color: #2a4d69;
}

.c-shime-box {
	margin-top: 40px
}

.c-shime-box__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 15px
}

.c-shime-box__content {
	width: 55%;
	padding-left: 20px;
	font-size: 1rem
}

.c-shime-box__buttons>:not(:last-child),
.c-shime-box__content>:not(:last-child),
.c-shime-box__img dl:not(:last-child) {
	margin-bottom: 20px
}

.c-shime-box__title {
	font-size: 2.5rem;
	margin-top: 15px
}

.c-shime-box__img {
	width: 45%
}

.c-shime-box__img dl,
.c-spot-detail__img dl {
	font-size:13px
}

.c-shime-box__img dl dd {
	margin-top: 10px
}

.c-shime-box__menu {
	font-size: 30px;
	background-image: url(/group/topics/bounenkai-shinnenkai/img/cmn-assets/spot-shime_menu_top.png), url(/group/topics/bounenkai-shinnenkai/img/cmn-assets/spot-shime_menu_bottom.png);
	background-repeat: no-repeat, no-repeat;
	background-position: center top, center bottom;
	background-size: contain, contain;
	padding: 33px 0 20px;
	text-align: center
}

.c-shime-box__info dl:not(:first-child) {
	margin-top: 1em
}

.c-shime-box__info dl dt,
.c-spot-detail__info dl dt {
	font-weight: 700
}

.c-shime-box__info dl dd {
	padding-left: 1em
}

.c-sns-buttons {
	height: 25px;
	min-height: 25px;
	margin: 0 0 7px
}

.c-sns-buttons .div_social ul,
.c-spot-box__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.c-sns-buttons .div_social ul {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.c-sns-buttons .div_social ul>li {
	margin-left: 6px
}

.c-spot-box__link {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.c-spot-box__link:hover {
	text-decoration: none
}

.c-spot-box__link:hover h1,
.c-spot-box__link:hover h2,
.c-spot-box__link:hover h3,
.c-spot-box__link:hover h4,
.c-spot-box__link:hover h5,
.c-spot-box__link:hover h6 {
	text-decoration: underline
}

.c-spot-box__link:hover img {
	opacity: .6
}

.c-spot-box__img {
	width: 45%
}

.c-spot-box__img img {
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear
}

.c-spot-box__texts {
	width: 55%;
	padding-left: 15px
}

.c-spot-box__texts h1,
.c-spot-box__texts h2,
.c-spot-box__texts h3,
.c-spot-box__texts h4,
.c-spot-box__texts h5,
.c-spot-box__texts h6 {
	font-size: 18px;
	font-weight: 500;
	color: #2a4d69;
	line-height: 1.4
}

.c-spot-box__texts p {
	margin-top: 10px;
	color: #2a4d69
}

.c-spot-box__texts .md-content {
	font-size: 1.4rem;
}

.c-spot-coupon__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 2rem;
	background-color: #2a4d69;
	color: #fff;
	border-radius: 8px;
	padding: 10px;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear
}

.c-spot-coupon__button:hover {
	opacity: .6;
	color: #fff;
	text-decoration: none
}

.c-spot-coupon__button span {
	background-color: #fff;
	border-radius: 9999px;
	display: block;
	margin-top: 5px;
	color: #2a4d69;
	padding: 5px 10px;
	font-size: 1.6rem;
	text-align: center
}

.c-spot-coupon__box {
	width: 500px;
	padding-left: 30px;
	background-color: #2a4d69;
	position: relative
}

.c-spot-coupon__box-wrap {
	background-image: url(../img/cmn-assets/spot-coupon_box-wrap_bg.svg);
	background-repeat: repeat;
	background-position: center;
	background-size: cover;
	padding: 15px 15px 15px 0
}

.c-spot-coupon__box-body {
	background-color: #fff;
	padding: 15px 15px 15px 25px;
	border: 2px solid #2a4d69
}

.c-spot-coupon__box-body::after {
	content: "";
	display: block;
	background-image: url(../img/cmn-assets/spot-coupon_title.png);
	background-repeat: repeat-y;
	background-position: right;
	background-size: 15px;
	width: 15px;
	height: 100%;
	position: absolute;
	top: 0;
	margin-left: -30px
}

.c-spot-coupon__title {
	position: absolute;
	left: -25px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #fff;
	font-size: 2rem;
	font-weight: 400
}

.c-spot-coupon__title span {
	display: block;
	-webkit-transform: rotateZ(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotateZ(-90deg)
}

.c-spot-coupon__content {
	color: #2a4d69;
	font-size: 1rem;
	font-weight: 500
}

.c-spot-coupon__content:not(:last-child) {
	margin-bottom: 10px
}

.c-spot-coupon__content .small {
	font-size: .8125rem
}

.c-spot-coupon__content h1,
.c-spot-coupon__content h2,
.c-spot-coupon__content h3,
.c-spot-coupon__content h4,
.c-spot-coupon__content h5,
.c-spot-coupon__content h6 {
	color: #2a4d69;
	display: inline-block;
	margin-bottom: 5px
}

.c-spot-coupon__content .double_circle li::before {
	content: '◎'
}

.c-spot-coupon__content li::before {
	content: '●';
	position: absolute;
	left: 0;
	top: 0
}

.c-spot-coupon__content li li {
	position: relative
}

.c-spot-coupon__content li li::before {
	content: '・';
	position: absolute;
	left: 0;
	top: 0
}

.c-spot-coupon__content .note {
	margin: .2em 0 1em
}

.c-spot-coupon__content .note:last-child {
	margin-bottom: 0
}

.c-spot-coupon__content .note li {
	margin: 0;
	padding: 0 0 0 1em;
	color: #2a4d69;
	font-size: .8rem;
	font-weight: 400
}

.c-spot-coupon__content .note li::before {
	content: '※'
}

.c-spot-coupon__notes {
	font-size: .8125rem
}

.c-spot-detail {
	padding-top: 15px
}

.c-spot-detail.is-shime {
	padding-top: 55px
}

.c-spot-detail__title {
	font-size: 2.5rem
}

.c-spot-detail__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 15px
}

.c-spot-detail__img {
	width: 45%
}

.c-spot-detail__img dl:not(:last-child) {
	margin-bottom: 25px
}

.c-spot-detail__img dl dd {
	margin-top: 5px
}

.c-spot-detail__text {
	width: 55%;
	padding-left: 20px;
	font-size: 1.4rem
}

.c-spot-detail__lead {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(42, 77, 105, .4);
	margin-bottom: 20px
}

.is-shime .c-spot-detail__lead {
	margin-top: 20px
}

.c-spot-detail__info {
	font-size: 1.6rem
}

.c-spot-detail__info dl:not(:first-child) {
	margin-top: 1em
}

.c-spot-detail__info dl dt::before {
	content: '◎';
	display: inline-block;
	margin-right: .2em
}

.c-spot-detail__info dl dt::after {
	display: inline-block;
	content: ':';
	margin-left: .2em
}

.c-spot-detail__info dl dd {
	padding-left: 1.2em
}

.c-spot-detail__notes {
	font-size: 1.3rem;
	text-align: right;
	margin-top: 10px
}

.c-spot-detail__buttons {
	margin-top: 20px
}

.c-spot-detail__buttons>:not(:last-child) {
	margin-bottom: 15px
}

.c-spot-detail__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.c-spot-detail__nav ul {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 15px
}

.c-spot-detail__nav ul li {
	margin-left: 15px
}

.c-spot-detail__nav ul li a {
	font-size: 1.4rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: #2a4d69
}

.c-spot-detail__nav ul li a .icon {
	margin-left: 5px;
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
	font-size: 10px;
	width: 10px;
	height: 10px;
	line-height: 10px
}

.c-spot-section {
	margin-top: 40px
}

.c-spot-section__title {
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.1;
	border-bottom: 3px solid #00344d;
	color: #ca4736;
	border-color: #ca4736
}

.c-spot-section__spots,
.c-spot-section__title-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.c-spot-section__title-wrap {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 8px
}

.c-spot-section__title h2 {
	display: block;
	line-height: 1
}

.c-spot-section__title .icon {
	margin-right: 5px;
	font-size: 40px;
	width: 40px;
	height: 40px;
	line-height: 40px
}

.c-spot-section__spots {
	margin-top: 20px
}

.c-spot-section__notfound {
	margin-top: 40px;
	font-size: 1.25rem
}

.c-spot-special {
	border: 2px solid #dd6a08;
	border-radius: 8px
}

.c-spot-special__title {
	background-color: #dd6a08;
	color: #fff;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 10px
}

.c-spot-special__wrap {
	padding: 15px
}

.c-spot-special__content {
	color: #dd6a08;
	font-size: 1.25rem
}

.c-spot-special__notes {
	margin-top: 10px
}

.c-spot-title {
	font-weight: 500
}

.c-spot-detail__nav ul,
.c-spot-detail__nav ul li a,
.c-spot-title dl,
.c-spot-title dl dt,
.c-station-tag dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.c-spot-title dl {
	border-bottom: 4px solid #ca4736;
	font-size: 1.6rem;
	padding: 5px 0
}

.is-shime .c-spot-title dl {
	border: 0
}

.c-spot-title dl dt,
.c-station-tag dl {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.c-spot-title dl dt {
	margin-right: 16px;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.is-shime .c-spot-title dl dt {
	background: #2a4d69;
	color: #fff;
	margin-right: 0;
	border-radius: 10px 0 0 10px;
	padding: 5px 10px
}

.c-spot-title dl dt .icon {
	margin-right: 5px;
	font-size: 26px;
	width: 26px;
	height: 26px;
	line-height: 18px;
	color: #ca4736
}

.is-shime .c-spot-title dl dt .icon {
	color: #fff
}

.c-spot-title dl dd {
	position: relative;
	padding-left: 30px
}

.is-shime .c-spot-title dl dd {
	background: #d8d6dc;
	color: #2a4d69;
	padding-left: 10px;
	width: 100%;
	border-radius: 0 10px 10px 0;
	padding-top: 5px;
	padding-bottom: 5px
}

.c-spot-title dl dd::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px 22px;
	position: absolute;
	top: .1em;
	left: 0
}

.is-osaka .c-spot-title dl dd::before {
	background-image: url(/group/topics/bounenkai-shinnenkai/img/cmn-assets/spot-title_icon_osaka.png)
}

.is-kyoto .c-spot-title dl dd::before {
	background-image: url(/group/topics/bounenkai-shinnenkai/img/cmn-assets/spot-title_icon_kyoto.png)
}

.is-shiga .c-spot-title dl dd::before {
	background-image: url(/group/topics/bounenkai-shinnenkai/img/cmn-assets/spot-title_icon_shiga.png)
}

.is-shime .c-spot-title dl dd::before {
	display: none
}

.c-spot-title h1 {
	font-size: 2.8rem;
	margin: 5px 0;
	padding: 10px 0;
	border-bottom: 4px solid #ca4736
}

.is-shime .c-spot-title h1 {
	border: 0;
	padding-top: 0
}

.c-station-tag {
	font-size: 1.25rem
}

.c-station-tag dl {
	background-color: #ccd6db
}

.c-station-tag dl dt {
	background-color: #00344d;
	padding: 5px 10px;
	color: #fff
}

.c-station-tag dl dd {
	padding: 5px 10px
}

.c-top-mv__img img {
	display: block;
	width: 100%;
	height: auto
}

.c-top-mv__lead {
	margin-top: 20px;
	font-size: 18px
}

.c-top-table {
	margin-top: 20px
}

.c-top-table__ttl {
	font-size: 18px;
	font-weight: 500
}

.c-top-table__wrap {
	margin-top: 10px
}

.c-top-table__wrap>table {
	border-top: 1px solid #333;
	width: 100%
}

.c-top-table__wrap>table td,
.c-top-table__wrap>table th {
	border-bottom: 1px solid #333;
	font-size: 1.5rem;
	padding: 3px 10px
}

.c-top-table__wrap>table td a,
.c-top-table__wrap>table th a {
	color: #1d3886
}

.c-top-table__wrap>table thead th {
	background-color: #eae4d0;
	text-align: center;
	font-weight: 700
}

.c-top-table__wrap>table thead th:nth-child(1) {
	border-right: 1px solid #333
}

.c-top-table__wrap>table tbody th {
	text-align: center;
	width: 180px;
	border-right: 1px solid #333
}

.c-top-table__wrap>table tbody td {
	padding: 3px 20px
}

@font-face {
	font-family: 'myicon';
	src: url(../fonts/myicon/myicon.eot?1638430968162);
	src: url(../fonts/myicon/myicon.eot?#iefix&1638430968162) format("embedded-opentype"), url(../fonts/myicon/myicon.woff?1638430968162) format("woff"), url(../fonts/myicon/myicon.ttf?1638430968162) format("truetype"), url(../fonts/myicon/myicon.svg?1638430968162) format("svg");
	font-weight: 400;
	font-style: normal
}

.myicon {
	font-family: "myicon";
	speak: none;
	font-style: normal !important;
	text-decoration: none !important;
	font-variant: normal;
	text-transform: none;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	position: relative
}

.myicon.-add:before {
	content: ""
}

.myicon.-arrow-circle:before {
	content: ""
}

.myicon.-arrow:before {
	content: ""
}

.myicon.-close:before {
	content: ""
}

.myicon.-facebook:before {
	content: ""
}

.myicon.-instagram:before {
	content: ""
}

.myicon.-line:before {
	content: ""
}

.myicon.-train:before {
	content: ""
}

.myicon.-twitter:before {
	content: ""
}

div#main {
	font-size: .875rem;
	font-family: 'Noto Sans JP', sans-serif;
	color: #2a4d69
}

div#main dd,
div#main dt,
div#main li,
div#main p,
div#main td,
div#main th {
	line-height: 1.6
}

@media screen and (max-width:768px) {
    #title{
        display: none;
    }
	.c-header-page {
		margin-right: -12px;
		margin-left: -12px
	}

	.c-header-tab ul li {
		width: calc((100% - 25px)/2 - 15px);
		text-align: center
	}

	.c-header-tab__wrap {
		height: 35px
	}

	.c-modal-box__content-body {
		padding: 0 15px
	}

	.c-modal-box__close {
		right: 0;
		top: -15px
	}

	.c-sns-buttons {
		margin: 10px 0
	}

	.c-sns-buttons .div_social ul>li {
		margin: 0 3px
	}

	.c-sns-buttons .div_social ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.c-spot-box:not(:last-child) {
		margin-bottom: 20px
	}

	.c-spot-box__img {
		width: 130px
	}

	.c-spot-box__texts {
		width: calc(100% - 130px)
	}

	.c-spot-coupon__box {
		background-size: 24px 24px;
		width: 100%
	}

	.c-spot-detail__wrap,
	.c-spot-title dl {
		display: block
	}

	.c-spot-detail__img {
		width: auto
	}

	.c-spot-detail__text {
		width: auto;
		padding-left: 0;
		padding-top: 20px;
		margin-top: 20px;
		border-top: 1px solid rgba(42, 77, 105, .4)
	}

	.is-shime .c-spot-detail__text {
		border-top: none
	}

	.c-spot-section {
		margin-top: 30px
	}

	.c-spot-section__title .icon {
		font-size: 32px;
		width: 32px;
		height: 32px;
		line-height: 32px
	}

	.c-spot-section__notfound {
		margin-top: 20px
	}

	.is-shime .c-spot-title dl dt {
		border-radius: 10px 10px 0 0
	}

	.c-spot-title dl dt {
		margin-bottom: 0
	}

	.c-spot-title dl dt .icon {
		font-size: 2.4rem;
		width: 24px;
		height: 24px;
		line-height: 16px
	}

	.is-shime .c-spot-title dl dd {
		border-radius: 0 0 10px 10px
	}

	.c-top-table__wrap>table td,
	.c-top-table__wrap>table th {
		font-size: 12px
	}

	.c-top-table__wrap>table tbody th {
		width: 110px
	}

	.c-top-table__wrap>table tbody td {
		padding: 3px 10px
	}

	.l-container {
		padding: 0 12px 15px
	}

	#contents #title {
		display: none
	}

	div#main {
		padding: 0
	}
}

@media screen and (min-width:769px),
print {
	.c-spot-box {
		width: 49%;
		margin-right: 2%;
		margin-top: 20px
	}

	.c-spot-box:nth-child(2n) {
		margin-right: 0
	}

	.c-spot-box:nth-child(1),
	.c-spot-box:nth-child(2) {
		margin-top: 0
	}

	.c-spot-coupon__content {
		font-size: 2.4rem
	}

	.c-spot-coupon__content .small,
	.c-spot-title dl {
		font-size: 1.7rem
	}

	.c-spot-coupon__notes {
		font-size: 1.5rem
	}

	.c-spot-detail__nav ul li a,
	.c-spot-detail__text {
		font-size: 1.6rem
	}

	.c-spot-section__title {
		font-size: 3.2rem
	}

	.c-spot-section__title .icon {
		font-size: 40px;
		width: 40px;
		height: 40px;
		line-height: 40px
	}

	.c-spot-title dl dt .icon {
		font-size: 26px;
		width: 26px;
		height: 26px;
		line-height: 18px
	}

	.c-spot-title h1 {
		font-size: 3.6rem
	}

	.c-top-table__ttl {
		font-size: 2.4rem
	}
}

/*# sourceMappingURL=base.css.map */