<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #252525;
	--color_YLW : #fffa63;
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: clamp(16px, 2.2vw, 20px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	background-color: #e3e3e3;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}

#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.pcs4,
.flex.pcs3,
.flex.pcs2 {
	column-gap: 2%;
	justify-content: center;
}
.flex.pcs4 &gt; div {
	width: calc(calc(100% - 2% * 3) / 4);
}
.flex.pcs4 &gt; div:nth-child(n + 5) {
	margin-top: 2%;
}
.flex.pcs3 &gt; div {
	width: calc(calc(100% - 2% * 2) / 3);
}
.flex.pcs3 &gt; div:nth-child(n + 4) {
	margin-top: 2%;
}
.flex.pcs2 &gt; div {
	width: calc(calc(100% - 2% * 1) / 2);
}
.flex.pcs2 &gt; div:nth-child(n + 3) {
	margin-top: 2%;
}
@media screen and (max-width: 999px) {
	.flex.pcs4 &gt; div {
		width: calc(calc(100% - 2% * 2) / 3);
	}
	.flex.pcs4 &gt; div:nth-child(n + 4) {
		margin-top: 2%;
	}
}
@media screen and (max-width: 767px) {
	.flex.pcs4 &gt; div,
	.flex.pcs3 &gt; div {
		width: calc(calc(100% - 2% * 1) / 2);
	}
	.flex.pcs4 &gt; div:nth-child(n + 3),
	.flex.pcs3 &gt; div:nth-child(n + 3) {
		margin-top: 2%;
	}
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1400px;
}
.pd_tb {
	padding-top: var(--gap_64px);
	padding-bottom: var(--gap_64px);
}
.pd_t {
	padding-top: var(--gap_64px);
}
.pd_b {
	padding-bottom: var(--gap_64px);
}
.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}

.block_title {
	font-size: clamp(18px,3.4vw,28px);
	font-weight: bold;
	color: #fff;
	text-align: center;
	padding: 0 0 var(--gap_32px);
}
.block_read p {
	margin: var(--gap_16px) auto;
}
.block_read p:not(.demo_btn) {
	padding-left: 1em;
	text-indent: -1em;
}
.ib {
	font-size: inherit !important;
	display: inline-block;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.4em;
	font-weight: bold;
	padding: 0.8em var(--gap_24px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}
.btn:hover {
	box-shadow: unset !important;
}
#btn_pagetop {
    position: fixed;
	bottom: clamp(4px, 3.4vw, 10px);
	right: clamp(4px, 3.4vw, 10px);
    z-index: 500;
}
#btn_pagetop a img {
  width: clamp(80px, 9vw, 100px);
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    border: #fff 2px solid;
    padding: var(--gap_16px);
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

/* =============================================================
      header
============================================*/
#header {
	position: relative;
	height: min(60vw,700px);
}

/* ===== メイン画像　アニメーション ===== */
.header_anim {
	height: min(60vw,700px);
	position: relative;
}
.header_anim li {
	opacity: 0;
	animation: header_anim 12s linear infinite 0s;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}
.header_anim li:nth-child(1) {
	background: url("../images/kv_slide01.jpg") right center/cover no-repeat;
}
.header_anim li:nth-child(2) {
	background: url("../images/kv_slide02.jpg") center center/cover no-repeat;
	animation-delay: 4s;
}
.header_anim li:nth-child(3) {
	background: url("../images/kv_slide03.jpg") right 25% center/cover no-repeat;
	animation-delay: 8s;
}
@keyframes header_anim {
	0% {
		opacity: 0;
	}
	16.6666666667% {
		opacity: 1;
	}
	33.3333333333% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@-webkit-keyframes header_anim {
	0% {
		opacity: 0;
	}
	16.6666666667% {
		opacity: 1;
	}
	33.3333333333% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 767px) {
	.header_anim li:nth-child(1) {
		background: url("../images/kv_slide01.jpg") right center/cover no-repeat;
	}	
}

/* =============================================================
      main コンテンツ
============================================*/

@media screen and (min-width: 768px) {
	.img_mob {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.img_pc {
		display: none;
	}
}

.ptn_red { 
	background: url("../images/ptn_bgRED.jpg") left top repeat;
}
.ptn_blue { 
	background: url("../images/ptn_bgBLUE.jpg") left top repeat;
}
.ptn_blk { 
	background: url("../images/ptn_bgBLK.jpg") left top repeat;
}

.logo_wrap {
	font-size: 0em;
    width: min(60vw,986px);
	margin: 0 auto;
	padding: 0 var(--gap_48px);
	position: absolute;
	z-index: 200;
    left: 50%;
    bottom: -5vw;
    transform: translateX(-50%);
}
main {
	letter-spacing: 1px;
	position: relative;
    z-index: 150;
}
#date_wrap {
	padding: var(--gap_32px) 0;
	border-top: solid 3px #000;
	position: relative;
}
#date_wrap .inner_wrap {
	position: relative;
	z-index: 200;
}
.img_cast {
	width: min(20vw,327px);
	position: absolute;
	top: -5vw;
}
.img_cast.cast01 {
	left: var(--gap_48px);
}
.img_cast.cast02 {
	right: var(--gap_48px);
}
.date_sub {
	font-size: clamp(18px,3.4vw,32px);
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-shadow: 0 0 0.2em #b22a00,0 0 0.2em #b22a00,0 0 0.2em #b22a00,0 0 0.3em #b22a00,0 0 0.3em #b22a00;
	padding: 4vw 0 var(--gap_16px);
}
.date {
	font-size: clamp(22px, 4.6vw, 56px);
	color: var(--color_YLW);
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	line-height: 1.1;
	width: min(58vw, 1400px);
	text-shadow: 0 0 4px #b22a00, 0 0 4px #b22a00, 0 0 4px #b22a00, 0 0 4px #b22a00, 0 0 4px #b22a00, 3px 4px 2px #000, 3px 4px 2px #000, 3px 4px 2px #000, 3px 4px 2px #000, 3px 4px 2px #000;
}
.date em {
	font-size: 1.5em;
	margin-left: 0.6vw;
}

.logo {
	background: url("../images/kv_logo.png") center bottom/contain no-repeat;
	padding-bottom: calc(473 / 986 * 100%);
}
@media screen and (max-width: 899px) {
	.logo_wrap {
		width: min(90vw, 986px);
		bottom: -7vw;
	}
	.img_cast {
		width: clamp(110px,23vw,327px);
		top: 8vw;
	}
	.date_sub {
		padding-top: 5vw;
	}
	.date {
		width: min(50vw, 1400px);
	}
}
@media screen and (max-width: 479px) {
	.date_sub {
		padding-top: 130px;
	}
	.date {
		width: min(100%, 1400px);
	}
	.img_cast.cast01 {
		left: 10%;
	}
	.img_cast.cast02 {
		right: 10%;
	}
}

/* =============================================================
      present_wrap プレゼント
============================================*/
.present_wrap {
	color: #fff;
	text-align: center;
	font-weight: bold;
	padding: var(--gap_80px) var(--gap_48px);
	letter-spacing: 1px;
}
.present_wrap .inner_wrap {
	max-width: 1200px;
	padding-top: var(--gap_64px);
	padding-bottom: var(--gap_64px);
	border: solid clamp(2px, 0.4vw, 5px) var(--color_YLW);
}
.pre_winner {
	color: var(--color_YLW);
	font-size: clamp(20px,4.6vw,36px);
	line-height: 1.2;
	margin: var(--gap_16px) auto var(--gap_24px);
}
.pre_winner em {
	font-size: 1.4em;
}
.pre_winner em.num {
	font-size: 2em;
}
.pre_deadline {
	font-size: clamp(16px,3.4vw,28px);
	color: var(--color_YLW);
}

.preMAIN .pre_title {
	max-width: 850px;
	margin: 0 auto;
	font-size: 0em;
}
.preMAIN .pre_title span {
	background: url("../images/preJCB_title.png") center top no-repeat;
	background-size: contain;
	padding-bottom: calc(203 / 893 * 100%);
	display: block;
}
.pre_howto {
	font-weight: normal;
	margin-bottom: var(--gap_24px);
}
.preMAIN .pre_deadline {
	margin-top: var(--gap_32px);
}
.pre_stanby .text01 {
	color: var(--color_YLW);
	width: clamp(280px, 70vw, 450px);
    margin: 0 auto var(--gap_24px);
	font-weight: normal;
    line-height: 1;
	transform: rotate(-6deg);
	justify-content: unset;
	align-items: center;
}
.pre_stanby .text01 .arial {
    margin: 0 var(--gap_16px) calc(var(--gap_8px) * -1);
}
.pre_stanby .text02 em {
	font-size: 1.4em;
}
.pre_stanby .text03 {
	font-size: clamp(20px,4.6vw,36px);
	line-height: 1.2;
	padding: var(--gap_16px) var(--gap_16px);
	margin: var(--gap_32px) auto 0;
	background-color: #ff0078;
	display: inline-block;
}
.preMAIN .pre_btn a,
.pre_btn .btn_close {
	padding: var(--gap_16px) var(--gap_32px);
    margin: var(--gap_32px) auto 0;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	display: inline-block;
}
.preMAIN .pre_btn a {
	font-size: clamp(20px,4.6vw,36px);
	color: #fff;
	background-color: #ff2d00;
}
.pre_btn .btn_close {
	font-size: clamp(18px,4.6vw,32px);
	color: #01147a;
	background-color: #8b8b8b;
}
.preMAIN .pre_btn .note {
	font-size: clamp(14px, 2.2vw, 16px);
    font-weight: normal;
    margin-top: var(--gap_16px);
	display: block;
}

@media screen and (max-width: 767px) {
	.preMAIN .pre_title {
		max-width: 450px;
	}
	.preMAIN .pre_title span {
		background: url("../images/preJCB_title_mob.png") center top no-repeat;
		background-size: contain;
		padding-bottom: calc(225 / 596 * 100%);
	}
}

#present .inner_wrap:not(:first-child) {
	margin-top: var(--gap_80px);
}

.pre67 .pre_title {
	font-size: clamp(18px,4.6vw,32px);
	font-weight: bold;
	margin-bottom: var(--gap_48px);
	padding: var(--gap_16px) var(--gap_24px);
	background-color: rgb(37 37 37 / 50%);
    box-shadow: 0 0 var(--gap_16px) var(--color_YLW);
}
.pre67 .pre_title span {
	color: var(--color_YLW);
}
.pre67 .pre_wrap {
	justify-content: space-between;
	align-items: center;
}
.pre67 .pre_image {
	width: 38%;
}
.pre67 .pre_read {
	width: 58%;
}
.pre67 .pre_winner {
	font-size: 1.4em;
}
.pre67 .pre_btn {
	display: inline-block;
}
.pre67 .pre_btn a {
	font-size: 1.8em;
	color: #01147a;
	padding: var(--gap_16px) var(--gap_32px);
    margin: var(--gap_32px) auto 0;
	border-radius: clamp(4px, 1vw, 10px);
	background-color: #fff;
	justify-content: center;
	align-items: center;
}
.pre67 .pre_btn a i {
	font-size: 1.2em;
	margin-right: var(--gap_8px);
}
.anchor_notice67 {
	font-size: clamp(14px, 2.4vw, 18px);
	font-weight: normal;
	margin: var(--gap_24px) auto 0;
}
.anchor_notice67 a {
	color: #fff;
	text-decoration: underline !important;
}

.pre_note {
	font-size: clamp(14px, 2.2vw, 18px);
	width: 100%;
	margin-top: var(--gap_48px);
	padding: var(--gap_24px);
	border: dashed 1px;
}
.pre_note_title {
	font-size: 1.1em;
	padding: 0 0 var(--gap_16px);
}
.pre_note_title.subtitle {
	text-align: left !important;
	padding: var(--gap_16px) 0 var(--gap_8px);
}
.pre_note ul {
	padding-left: 1em;
	font-weight: normal;
	text-align: justify;
}
.pre_note li {
	list-style: disc;
}
.pre_note li:not(:last-child) {
	margin-bottom: var(--gap_8px);
}
.pre_note a {
	color: var(--color_YLW);
	text-decoration: underline !important;
	margin-top: var(--gap_8px);
	display: inline-block;
}
.pre_note em {
	color: var(--color_YLW);
}
.pre67 .pre_deadline {
	text-align: center;
	margin: var(--gap_48px) auto 0;
}

.pre67.flex {
	justify-content: space-between;
}
.pre67.flex .pre67_wrap {
	width: 48%;
}
.pre67.flex .pre_image,
.pre67.flex .pre_read {
	width: 100%;
}

#notice67 {
	width: 100%;
}
#notice67 .pre_note {
	padding: 0;
	border: none;
}
.notice67_title {
	font-size: 1.2em;
	font-weight: bold;
	color: initial;
	text-align: center;
	line-height: 1.2;
	margin: 0 auto var(--gap_32px);
	padding: var(--gap_16px);
	background-color: #fff;
}
@media screen and (max-width: 999px) {
	.pre67_wrap,
	.pre67.flex .pre67_wrap,
	.pre67 .pre_image,
	.pre67 .pre_read {
		width: 100%;
	}
	.pre67.flex .pre67_wrap:not(:first-of-type) {
		margin-top: var(--gap_64px);
	}
	.pre67 .pre_image img {
		max-width: 450px;
	}
}

/* =============================================================
      overview 概要
============================================*/
#overview {
	background-color: #0b0b0b;
	padding: var(--gap_80px) 0;
}
#overview .block_title em {
	color: var(--color_YLW);
	margin: 0 var(--gap_16px);
}
#overview .block_read {
	font-size: 1.1em;
	color: #fff;
	text-align: center;
	line-height: 1.8;
}
#overview .block_read em {
	color: var(--color_YLW);
}

.movie_wrap {
	margin-top: var(--gap_64px);
}
.tver_area {
	margin: var(--gap_64px) auto 0;
	max-width: 800px;
}
.tver_area .limit_text {
	color: #fff;
	margin: var(--gap_16px) auto 0;
	text-align: center;
	line-height: 1.2;
  }
.tver_area .limit_text small {
	font-size: clamp(14px, 2.2vw, 16px);
	font-weight: normal;
}

/* =============================================================
      article01 コンテンツ
============================================*/
#article01 {
	padding: var(--gap_80px) 0;
}
#article01 .article_head {
	max-width: 320px;
	margin: 0 auto;
	position: relative;
    z-index: 100;
}
.article_mainIMG {
    margin: -75px auto 0;
	padding: 0 var(--gap_32px);
	position: relative;
    z-index: 50;
}
.article_wrap {
	border: solid clamp(2px, 0.4vw, 5px) var(--color_YLW);
    padding: 200px var(--gap_48px) var(--gap_64px);
    margin-top: -150px;
}
.article_inner {
	margin: 0 auto;
	max-width: 1000px;
}
.article_title {
	color: var(--color_YLW);
	font-size: clamp(22px,4.6vw,36px);
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	margin-bottom: var(--gap_32px);
}
.article_title small {
	color: #fff;
	font-size: clamp(14px, 2.2vw, 18px);
	font-weight: normal;
	display: block;
	margin-top: var(--gap_16px);
}
.article_subIMG {
	justify-content: space-between;
}
.article_subIMG .img_wrap {
	width: 48%;
	margin: 0 0 var(--gap_32px);
}

.article_subIMG .img_wrap img {
	padding: var(--gap_8px);
	border: solid 2px var(--color_YLW) !important;
}
.article_read {
	color: #fff;
	line-height: 1.3;
	text-shadow: 0 0 0.2em #9c1b01, 0 0 0.2em #9c1b01, 0 0 0.2em #9c1b01, 0 0 0.2em #9c1b01, 0 0 0.2em #9c1b01;
	text-align: justify;
}
.article_read p:not(:last-child) {
	margin: 0 auto var(--gap_16px);
}
.article_read em {
	font-size: 1.2em;
}
.article_wrap .swiper {
	padding-top: var(--gap_48px);
}
@media screen and (max-width: 767px) {
	#article01 .article_head {
		width: 40vw;
	}
	.article_mainIMG {
		margin-top: -8vw;
	}
	.article_wrap {
		margin-top: -20vw;
		padding-top: 30%;
	}
	.article_subIMG {
		justify-content: center;
	}
	.article_subIMG .img_wrap {
		width: 85%;
		max-width: 500px;
		margin: 0 auto var(--gap_32px);
	}
}

/* ========================= ウラスポット用css ===== */
.ura_article {
	position: relative;
	margin: var(--gap_80px) calc(var(--gap_24px) / 2);
}
.ura_article:last-child {
	margin-bottom: 0;
}
.ura_article::before,
.ura_article::after,
.ura_article_inner::before,
.ura_article_inner::after {
	content: "";
	background-color: var(--color_YLW);
    position: absolute;
	width: var(--gap_24px);
	height: var(--gap_24px);
	line-height: 1;
}
.ura_article::before {
	top: calc(var(--gap_24px) / 2 * -1);
    left: calc(var(--gap_24px) / 2 * -1);
}
.ura_article::after {
	top: calc(var(--gap_24px) / 2 * -1);
    right: calc(var(--gap_24px) / 2 * -1);
}
.ura_article_inner::before {
	bottom: calc(var(--gap_24px) / 2 * -1);
    left: calc(var(--gap_24px) / 2 * -1);
}
.ura_article_inner::after {
	bottom: calc(var(--gap_24px) / 2 * -1);
    right: calc(var(--gap_24px) / 2 * -1);
}

.ura_article_wrap {
	padding: var(--gap_48px) 0;
	justify-content: space-between;
	align-items: center;
}
.ura_article_wrap .ura_read {
	width: 46%;
}
.ura_article_wrap .ura_image {
	width: 50%;
}
.ura_title {
	max-width: 496px;
    margin: 0 auto;
}
.ura_read_spot {
	color: #fff;
}
.ura_spot_title {
	font-size: 1.3em;
	font-weight: bold;
	color: #001479;
	text-align: center;
	line-height: 1.2;
	padding: var(--gap_16px) var(--gap_24px);
	margin: calc(var(--gap_16px) * -1) auto var(--gap_32px);
	background-color: #fff;
	border-radius: 50px;
}
.ura_spot_name {
	font-size: clamp(20px,4.6vw,32px);
	font-weight: bold;
	color: var(--color_YLW);
	margin: 0 auto var(--gap_16px);
	line-height: 1.2;
}
.ura_spot_name span {
	font-size: 0.8em;
	padding-bottom: var(--gap_8px);
	display: block;
}
.ura_spot_name p {
	text-align: right;
	font-weight: bold;
	padding-top: var(--gap_8px);
}
.ura_spot_info_head {
	font-weight: bold;
	margin-bottom: var(--gap_8px);
}
.ura_spot_info dl {
	overflow: hidden;
	border-top: dotted 1px #fff;
	padding-top: var(--gap_8px);
}
.ura_spot_info dt,
.ura_spot_info dd {
	float: left;
}
.ura_spot_info dt {
	width: 3.5em;
	clear: both;
}
.ura_spot_info dd {
	width: calc(100% - 4em);
	line-height: 1.4;
}
.ura_spot_info dt:not(:last-of-type),
.ura_spot_info dd:not(:last-of-type) {
	margin-bottom: var(--gap_8px);
}
.ura_powerspot .ura_spot_info dt {
	width: 5.5em;
}
.ura_powerspot .ura_spot_info dd {
	width: calc(100% - 6.5em);
}
.ura_spot_info.long dt {
	width: 5.5em;
}
.ura_spot_info.long dd {
	width: calc(100% - 6.5em);
}
.ura_onsen .ura_spot_info dt {
	width: 4.5em;
}
.ura_onsen .ura_spot_info dd {
	width: calc(100% - 5em);
}
.ura_spot_info dd li {
	text-indent: -1em;
	padding-left: 1em;
}
.ura_spot_info dd li:not(:last-child) {
	margin-bottom: var(--gap_8px);
}
.ura_spot_info a {
	color: #fff;
}
@media screen and (min-width: 768px) {
	.ura_article:nth-of-type(2n + 1) .ura_article_wrap {
		flex-direction: row-reverse;
	}
}
@media screen and (max-width: 999px) {
	.ura_article_wrap .ura_read,
	.ura_article_wrap .ura_image {
		width: 100%;
	}
	.ura_article_wrap .ura_read {
		margin-bottom: var(--gap_32px);
	}
}
/* ========================= ウラスポット用css
 // END ===== */

.cont_close {
	position: relative;
}
.cont_close::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.5;
	z-index: 999;
}

/* =============================================================
    【swiper】ブロック ※スライド
============================================*/
.slide-paused:hover .slideshow {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper-wrapper li {
	list-style: none;
}
.swiper-slide {
	padding: 0 10px;
}
@media screen and (max-width: 479px) {
	.swiper-slide {
		padding: 0 5px;
	}
}








</pre></body></html>