﻿@charset "utf-8";

/* ===================================================================================================
   リセット
 =================================================================================================== */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
fieldset, img {
	border: 0
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: 400
}
ol, ul {
	list-style: none
}
caption, th {
	text-align: left
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: 400
}
q:before, q:after {
	content: ''
}
abbr, acronym {
	border: 0
}
strong, em {
	font-weight: medium
}
figure {
	margin: 0;
	padding: 0
}
input:focus, textarea:focus, select:focus, button:focus {
	outline: none
}
input, button, textarea, select {
	color: #000;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-size: 100%;
	margin: 0;
	padding: 0;
}

/* ===================================================================================================
   共通
 =================================================================================================== */
html.lock, body.lock {
	height: calc(var(--window-inner-height) - 1px);
	overflow: hidden;
	box-sizing: border-box
}
html {
	font-size: 62.5%
}
body {
	font-size: 1.5rem;
	font-family: futura-pt, Futura, "Noto Sans JP", Arial, Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
	color: #000;
	font-weight: 400;
	line-height: 1.5;
	font-feature-settings: "palt";
	background: #fff;
}
* {
	box-sizing: border-box
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom
}
input, button, textarea, select {
	font-family: futura-pt, Futura, "Noto Sans JP", Arial, Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
}
@media print, screen and (min-width:960px){
	body {
		font-size: 1.8rem
	}
}

.yusei-magic-regular {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/*  共通リンク色・別ウィンドウ
-----------------------------------------------------------*/
a,a:link,a:visited{color:#000;text-decoration:underline;transition: opacity .3s,text-decoration .3s}@media print, screen and (min-width:960px){a:hover,a:active{color:#000;text-decoration:none}}

/*  アイコン
-----------------------------------------------------------*/
.m-ico{display:inline-flex;align-items:center;font-style:normal;vertical-align:middle;font-weight:400!important}.m-ico:before{position:relative;top:-1px;font-family:'Material Icons Round';content:attr(data-icon);font-size:100%}


/*  表示・非表示
-----------------------------------------------------------*/
@media screen and (max-width:959px){.pc-only{display:none}.sp-none{display:none;}}.sr-only{display:none;}@media print, screen and (min-width:960px){.sp-only{display:none}.pc-none{display:none;}}

/*  ページ全体
-----------------------------------------------------------*/
.main{position: relative}

/*  フォーム
-----------------------------------------------------------*/
/* input */
.inputBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	text-overflow: ellipsis;
}
.inputBox .m-ico{
	position: absolute;
	right: 8px;
	transition: .2s;
	transform: rotateZ(0) scale(1.5);
	pointer-events: none;
}
.inputBox[aria-expanded=true] .m-ico{
	transform: rotateZ(180deg) scale(1.5);
}
.inputBox .inputSelect{
	cursor: pointer;
}
.inputBox{
	position: relative;
}
.form-label{
	position: absolute;
	left: 1em;
	top: 0;
	z-index: 1;
	transform: translateY(-50%);
	padding: 0 5px;
	line-height: 1;
	font-size: 1.3rem;
	background-image: linear-gradient(transparent 49%, #fff 50%);
}
.inputTxt{
	padding: 8px;
	width: 100%;
	height: 35px;
	text-align: left;
	line-height: 1;
	color: #333;
	outline: 0;
	border-bottom: 1px solid #CBCBCB;
	background: #fff;
}
.inputTxt.is-active{
	border-bottom-color: #5f9cd1;
}
.inputTxt::placeholder{
	color: #ccc;
	font-size: 1.4rem;
}
.inputTxt:focus{
	border-color: #007b95;
	border-radius: 0;
}
.inputTxt:disabled{
	background: #eee;
}

/* pulldown（ボタン） */
.btn-select{
	position: relative;
	display: inline-block;
	width: 100%;
}
.btn-select_input{
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 16px;
	width: 100%;
	height: 48px;
	min-height: calc(1em + 31px);
	text-align: left;
	text-overflow: ellipsis;
	line-height: 1;
	color: #323743!important;
	border: 1px solid #bcbdc2;
	outline: 0;
	background: #fff;
}
@media print, screen and (min-width:960px){
	.btn-select_input{
		padding: 13px 20px;
	}
	.inputTxt{
		padding: 8px 16px;
		width: 100%;
		height: 48px;
	}
}
.btn-select_input .m-ico{
	transition: .2s;
	transform: rotateZ(0) scale(1.5);
}
[aria-dropdown="true"] .btn-select_input .m-ico{
	transform: rotateZ(180deg) scale(1.5);
}
.btn-select_panel{
	position: absolute;
	z-index: 10;
	padding-top: 10px;
	width: 100%;
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}
[aria-dropdown="true"] .btn-select_panel{
	display: block;
	visibility: visible;
	opacity: 1;
}
.btn-selectlist{
	border-radius: 5px;
	border: solid 1px #bcbdc2;
	max-height: 400px;
	height: auto;
	background: #fff;
	overflow-y: auto;
}
.btn-selectlist_item{
	padding: 10px;
	line-height: 1.4;
}
@media print, screen and (min-width:960px){
	.btn-selectlist_item{
		padding: 13px 17px;
	}
}
.btn-selectlist_item{
    cursor: pointer;
}
.btn-selectlist_item.is-active, .btn-selectlist_item:not(.is-active):hover{
	background: #f3fafb;
}

/* pulldown */
.selectBox {
    position: relative;
    border: 1px solid #ccc;
}
.selectBox .selectDown{
    cursor: pointer;
    padding: 0 calc(1em + 8px) 0 16px;
    width: 100%;
    height: 35px;
    background: #fff;
}
@media print, screen and (min-width:960px){
	.selectBox .selectDown{
		height: 48px;
	}
}
.selectBox .selectDown:focus{
	border-color: #007b95;
	border-radius: 0;
}

.selectBox .m-ico{
	pointer-events: none;
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.0rem;
}

/* select */
.form-select_box{
	position: relative;
}
.form-select_box .m-ico{
	position: absolute;
	right: 10px;
	transition: .2s;
	transform: rotateZ(0) scale(1.5);
	pointer-events: none;
}
.select_input{
	position: relative;
	cursor: pointer;
	padding: 13px 20px;
}

[aria-pulldown="true"] .form-select_box .m-ico{
	transform: rotateZ(180deg) scale(1.5);
}
.form-select_panel{
	position: absolute;
	z-index: 10;
	padding-top: 10px;
	width: 100%;
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}
[aria-pulldown="true"] .form-select_panel{
	display: block;
	visibility: visible;
	opacity: 1;
}
.form-selectlist{
	border-radius: 5px;
	border: solid 1px #bcbdc2;
	max-height: 400px;
	height: auto;
	background: #fff;
	overflow-y: auto;
}

.form-selectlist_item{
	padding: 10px;
	line-height: 1.4;
}
@media print, screen and (min-width:960px){
	.form-selectlist_item{
		padding: 13px 17px;
	}
}
.form-selectlist_item{
    cursor: pointer;
}
.form-selectlist_item.is-active, .form-selectlist_item:not(.is-active):hover{
	background: #f3fafb;
}

/* checkbox */
.checkBox{
	cursor: pointer;
	position: relative;
	display: inline-block;
	margin-top: -3px;
}
.checkBoxInput{
	display: none;
}
.checkBox span{
	position: relative;
	display: inline-flex;
	align-items: center;
	line-height: 48px;
}
.checkBox span::before, .checkBox span::after {
	content: "";
	border-radius: 50%;
}
.checkBox span::before {
	display: block;
	margin-right: 8px;
	width: 20px;
	height: 20px;
	border: solid 1px #eee;
	background: #fff;
}
.checkBox span::after {
	position: absolute;
	left: 5px;
	top: 50%;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	background-color: #007b95;
}

.checkBox span::before{
	background: #fff;
}

.checkBox span::after {
	display: none;
}

.checkBoxInput:checked + span::after {
	display: block;
}
.checkBoxInput.is-valid + span::before {
	background-color: #fff;
}

/* radiobutton */
.radioBox{
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.radioBoxInput{
	display: none;
}
.radioBox span{
	position: relative;
	display: inline-flex;
	align-items: center;
	line-height: 35px;
}
.radioBox span::before, .radioBox span::after {
	content: "";
	border-radius: 50%;
}
.radioBox span::before {
	display: block;
	margin-right: 8px;
	width: 20px;
	height: 20px;
	border: solid 1px #eee;
	background: #fff;
}
.radioBox span::after {
	position: absolute;
	left: 5px;
	top: 50%;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	background-color: #007b95;
}

.radioBox span::before{
	background: #fff;
}

.radioBox span::after {
	display: none;
}

.radioBoxInput:checked + span::after {
	display: block;
}
.radioBoxInput.is-valid + span::before {
	background-color: #fff;
}
@media print, screen and (min-width:960px){
	.radioBox span{
		line-height: 48px;
	}
}

/* フォーム内※ */
.form-kome{
	margin-top: 8px;
}
.form-kome:first-child{
	margin-top: 0;
}


/* form size */
.-form-s{
	width: 100%;
	max-width: 100px;
}
.-form-m{
	width: 100%;
	max-width: 200px;
}
.-form-l{
	width: 100%;
	max-width: 300px;
}

/* error */
.is-invalid+.invalid-feedback{
    display: block;
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}
.msg{
	color: #dc3545;
}
.error{
	margin-top: 4px;
	color: #dc3545;
	font-size: 1.4rem;
}
.error + .error{
	margin-top: 0;
}
.textarea{
	padding: 16px;
    width: 100%;
    height: 100px;
    text-align: left;
    line-height: 1.3;
    color: #333;
    outline: 0;
    border: solid 1px #ccc;
    background: #fff;
}


/* button */
.button{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 16px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #1F1F1F;
	text-decoration: none;
	font-weight: 500;
	vertical-align: middle;
	border: solid 2px #000;
	background: #fff;
	cursor: pointer;
	transition: .3s opacity;
}
.button:hover{
	opacity: .6;
}
.button.-submit{
	color: #fff;
	font-weight: bold;
	border: none;
	background: #2a7f89;
}

.button.-blue{
	color: #fff;
	border-color: #2693FF;
	background: #2693FF;
}


/* input Flex */
.inputWp{
	display: flex;
	align-items: center;
}
.inputWp + .inputWp{
	margin-top: 16px;
}

/* ボタン */
.fbtn{
	margin-top: 40px;
}
.fbtnList{
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
}
.fbtnList_item:not(:first-child){
	margin-right: 8px;
}
.fbtnList_item{
	width: 100%;
	max-width: 150px;
}
.fbtnList_item:first-child{
	max-width: 200px;
}
.fbtnList_item .button{
	line-height: 50px;
	height: 50px;
}



/*  パンくず
-----------------------------------------------------------*/
.breadcrumbs {
	width: 100%;
	padding: 4px 10px;
	line-height: 1;
}
.breadcrumbs_wrapper {
	display: flex;
	align-items: center
}
.breadcrumbs_contents {
	display: block;
	width: 100%
}
.breadcrumbs_item {
	display: inline-flex;
	align-items: center;
	font-size: 1.2rem;
	line-height: 1.4;
	vertical-align: middle;
	margin-right: 8px
}
.breadcrumbs_item.-home {
	flex-shrink: 0
}
.breadcrumbs_inner {
	margin-bottom: -4px;
	padding-bottom: 4px;
	overflow-x: auto;
	white-space: nowrap;
	width: 76vw
}
.breadcrumbs_item:not(:last-child):after {
	color: #999;
	font-family: 'Material Icons Round';
	content: "\e5cc";
	margin-left: 8px
}
a.breadcrumbs_anchor {
	font-weight: 600
}



@media print, screen and (min-width:960px){
	.breadcrumbs {
		padding: 4px 0;
	}
	.breadcrumbs_wrapper {
		margin: 0 16px;
	}
	.breadcrumbs_item.-home, .breadcrumbs_item {
		margin-right: 8px
	}
	.breadcrumbs_inner {
		width: inherit
	}
	.breadcrumbs_item {
		font-size: 1.4rem;
		line-height: 2;
	}
	.breadcrumbs.-pos{
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	.breadcrumbs.-pos .breadcrumbs_item,
	.breadcrumbs.-pos .breadcrumbs_item a,
	.breadcrumbs.-pos .breadcrumbs_item:not(:last-child):after{
		color: #fff;
	}
}

/*  ページトップ
-----------------------------------------------------------*/
.page-top {
	position: fixed;
	right: 0;
	bottom: 57px;
	margin: 0 auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s
}
.page-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	padding: 3px;
	color: #fff;
	line-height: 1;
	font-size: 3rem;
	text-decoration: none;
	background-color: rgba(0, 0, 0, .3)
}
.page-top.ac {
	visibility: visible;
	opacity: 1
}
.page-top.absolute {
	position: absolute;
	bottom: 100%
}
@media print, screen and (min-width:960px){
	.page-top {
		right: 0;
		bottom: 0
	}
	.page-top a {
		padding: 10px
	}
	.page-top a:hover {
		opacity: .6
	}
}

/*  レイアウト
-----------------------------------------------------------*/
.sect{
	padding: 32px 0;
}
.inner {
	margin: 0 16px
}
.wideInner{
	margin: 0 16px
}
.br{
	display: block;
}
.allBt{
	margin-top: 80px;
	text-align: center;
}


@media screen and (min-width:1432px) {
	.inner {
		margin: 0 auto;
		width: 100%;
		max-width: 1400px
	}
}
@media print, screen and (min-width:960px){
	.sect{
		padding: 80px 0;
	}
	.wideInner{
		margin: 0 32px
	}
}








.sectWrap {
	margin-top: 30px
}

.ttl{
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	font-feature-settings: "palt"
}
.ttl.-center{
	display: flex;
	flex-direction: column;
	text-align: center;
}
.ttl.-center .fs{
	font-size: 1.8rem;
}
.ttl.-en{
	position: relative;
	display: flex;
	flex-direction: column;
}
.ttl.-en:before {
	content: attr(data-en);
	font-size: 8rem;
	line-height: 1;
	color: #fff;
	-webkit-text-stroke: 1px #000; /* Safari, Chrome */
	text-stroke: 2px #000	; /* 標準のtext-stroke */
}
@media screen and (max-width:959px){
	.ttl .sp-br{
		display: block;
	}
}


.ttl_sub {
	font-size: 1.6rem;
	font-weight: 900
}
@media print, screen and (min-width:960px){
}

@media print, screen and (min-width:960px){
	.ttl {
		font-size: 2.7rem;
	}
	.ttl.-center .fs{
		font-size: 2.1rem;
	}
	.ttl.-en:before {
	}
	.ttl.-en span{
	}
	.ttl_sub {
	}
}
.ttlLine {
	position: relative;
	z-index: 0;
	text-align: center;
	font-size: 2rem;
	line-height: 1.3
}
.ttlLine span {
	position: relative;
	display: inline-block;
	padding-bottom: 8px;
	color: #2196F3;
	font-weight: 700;
	text-shadow: 1px 1px 0 #fff
}
.ttlLine span:before {
	position: absolute;
	left: 2px;
	top: 3px;
	z-index: -1;
	content: attr(data-ttl);
	display: inline-block;
	width: 100%;
	height: 100%;
	color: #BFBFBF;
	text-shadow: none;
	font-weight: 700;
	text-align: center
}
.ttlLine span:last-of-type {
	font-size: 2.7rem
}
@media print, screen and (min-width:960px){
	.ttlLine {
		font-size: 3.2rem
	}
	.ttlLine span {
		padding-bottom: 16px;
		text-shadow: 2px 2px 0 #fff
	}
	.ttlLine span:before {
		left: 3px;
		top: 4px
	}
	.ttlLine span:last-of-type {
		font-size: 5rem
	}
}
.ttlRainbow {
	position: relative;
	display: inline-block
}
.ttlRainbow:after {
	position: absolute;
	left: -24px;
	top: -20px;
	z-index: 1;
	content: "";
	display: inline-block;
	width: 60px;
	height: 29px;
	background: url(/_common/images/illust_rainbow.png) center / 100% auto no-repeat
}
.ttlRainbow.-top0:after {
	top: -10px
}
@media print, screen and (min-width:960px){
	.ttlRainbow:after {
		left: -56px;
		top: -36px;
		width: 96px;
		height: 47px
	}
	.ttlRainbow.-top0:after {
		top: 0
	}
}


.maintxt{
	margin-top: 24px;
}
@media print, screen and (min-width:960px){
	.maintxt{
		margin-top: 40px;
	}
}

/*  HEADER
-----------------------------------------------------------*/



/*.headerWp{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	display: flex;
	flex-direction: column;
	padding: 24px;
	width: 350px;
	height: 100vh;
	background: url('/_common/images/header_bg.png') repeat #000;
}
.headerTtl{
	margin: 0 auto;
	width: 100%;
	max-width: 150px;
}
.headerTxt{
	margin-top: 24px;
	text-align: center;
	color: #fff;
	font-weight: bold;
}

.snsList{
	display: flex;
	justify-content: center;
	margin: 16px 0 0 -8px
}
.snsList_item{
	margin-left: 8px;
}
.snsList_item a{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50vw;
	background: #fff;
}
.navigation{
	margin-top: 24px;
}
.navList{
}

.navList_item{
	border-top: solid 1px #999;
}
.navList_item:last-child{
	border-bottom: solid 1px #999;
}
.navList_item a{
	display: flex;
	padding: 16px;
	min-height: 65px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.navList_box{
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
.navList_txt{
	flex: 1;
	margin-left: 16px;
}
.navList_box img{
	width: 45px;
}


.weather{
	margin-top: auto;
	color: #fff;
}
.weather_area{
	font-size: 2.4rem;
	font-weight: bold;
}
.weatherWp{
	display: flex;
}
.weather_today{
	font-size: 2.1rem;
}
.weather_today span{
	display: block;
	font-size: 1.4rem;
}
.temperature{
	display: flex;
	margin: 8px 0 0 -16px;
}
.temperature_item{
	margin-left: 16px;
	width: calc(100% / 2 - 16px);
}
.temperature_item{
	line-height: 1.3;
}
.temperature_item dt{
	font-size: 1.4rem;
}
.temperature_item dd{
	font-size: 3.0rem;
}
.subheader{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 68px;
	padding: 0 82px 0 366px;
	width: 100%;
	color: #fff;
	background: url('/_common/images/header_bg.png') repeat #000;
    transition: transform 0.3s ease;
}
.nav-hidden .subheader{
    transform: translateY(-100%);
}
.subheader_txt{
}
.navSub{
	margin-left: auto;
}
.navsubList{
	display: flex;
	font-size: 1.6rem;
}
.navsubList_item:not(:first-child){
	margin-left: 32px;
}
.navsubList_item a{
	color: #fff;
}*/

.header{
	text-align: center;
	background: #000;
}
.header-reopenttl{
	margin: 0 auto;
	width: 100%;
	max-width: 150px;
}

.headerWp{
	display: flex;
	width: 100%;
	min-height: 63px;
	background: url('/_common/images/header_bg.png') repeat #000;
}
.headerTtl{
/*	position: fixed;
	top: 0;
	left: 0;
	z-index: 1002;*/
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 0 8px;
	width: 70px;
	background: url('/_common/images/header_bg.png') repeat #000;
	transition: height .2s;
}



.headerHd{
	display: flex;
	flex-direction: column-reverse;
}
.headerCatch{
	position: relative;
	overflow: hidden;
	margin-top: 8px;
	height: 27px;
	text-align: center;
}
.headerTxt{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
}

.snsList{
	display: flex;
	justify-content: center;
	margin-left: -8px;
}
.snsList_item{
	margin-left: 8px;
}
.snsList_item a{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	width: 35px;
	height: 35px;
	border-radius: 50vw;
	background: #fff;
}
.navList{
	border-top: solid 1px #444;
}
.navList_item a{
	display: block;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.navList_box{
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
.navList_box img{
	width: 40px;
}
.navList_txt{
	position: relative;
	flex: 1;
	margin-left: 8px;
}


@media screen and (max-width: 959px){
	.headerBd{
		opacity: 0;
		visibility: hidden;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1001;
		display: flex;
		flex-direction: column-reverse;
		color: #fff;
		padding: 80px 0 16px;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,.8);
		transition: opacity .3s ease, visibility .3s ease;
	}	
   .headerBd.is-open {
        visibility: visible;
        opacity: 1;
    }
	.navigation{
		flex: 1;
		padding: 0 16px;
	}
	.navList{
		height: 100%;
		overflow-y: auto;
	}
	
	.navList_item a{
		padding: 16px 8px;
		border-top: solid 1px #555;
	}
	
	.menu{
	}
}
@media print,screen and (min-width:960px){
	.headerWp, .headerBd{
		height: 100%;
		min-height: 118px;
	}
	
	.headerWp{
		width: 100%;
		background: url('/_common/images/header_bg.png') repeat #000;
	}
	.headerTtl{
		padding: 8px 0;
		width: 140px;
		height: 118px;
	}
	
	.headerBd{
		flex: 1;
		display: flex;
		flex-direction: column;
		padding: 0 16px;
	}
	
	.headerHd{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding-top: 8px;
	}
	.headerCatch{
		flex: 1;
		margin-top: 0;
		text-align: left;
	}
	.headerTxt{
		font-size: 1.6rem;
	}
	.snsList_item a{
		width: 40px;
		height: 40px;
	}
	.snsList_item a:hover{
		opacity: .6;
	}
	.navigation{
		flex: 1;
		display: flex;
	}
	.navList{
		display: flex;
		align-items: center;
	}
	.navList_item:not(:first-child){
		margin-left: 32px;
	}
	.navList_item a .navList_txt:after{
        position: absolute;
        left: 50%;
        bottom: -4px;
        width: 0;
		height: 2px;
        content: "";
		border-radius: 2px;
        transform: translateX(-50%);
        background: #fff600;
        transition: -webkit-width .2s ease;
        transition: width .2s ease;
        transition: width .2s ease, -webkit-width .2s ease;
	}
	.navList_item.-zoomup a .navList_txt:after{ background: #7eacbe; }
	.navList_item.-animals a .navList_txt:after{ background: #7eacbe; }
	.navList_item.-beauty a .navList_txt:after{ background: #ffc3df; }
	.navList_item.-gourmet a .navList_txt:after{ background: #d3a954; }
	.navList_item.-event a .navList_txt:after{ background: #ffff65; }
	.navList_item.-spot a .navList_txt:after{ background: #bde272; }
	.navList_item a:hover .navList_txt:after{
		width: 100%;
	}
	
	.navList_box img{
		width: 35px;
	}
	
	
	
	.weather{
		display: flex;
		margin-top: auto;
	}
	.weather_area{
		font-size: 2.4rem;
		font-weight: bold;
	}
	.weatherWp{
		display: flex;
	}
	.weatherBd{
		display: flex;
	}
	.weather_today{
		font-size: 2.1rem;
	}
	.weather_today span{
		font-size: 1.4rem;
	}
	.temperature{
		display: flex;
		margin: 8px 0 0 -16px;
	}
	.temperature_item{
		margin-left: 16px;
		width: calc(100% / 2 - 16px);
	}
	.temperature_item{
		display: flex;
		line-height: 1.3;
	}
	.temperature_item dt{
		font-size: 1.4rem;
	}
	.temperature_item dd{
		font-size: 3.0rem;
	}
	.subheader{
		display: flex;
		align-items: center;
		padding: 8px 16px;
		width: 100%;
		border-bottom: solid 1px #000;
		transition: transform 0.3s ease;
	}
	.nav-hidden .subheader{
		transform: translateY(-100%);
	}
	.subheader_txt{
		font-size: 1.6rem;
	}
	.navSub{
		margin-left: auto;
	}
	.navsubList{
		display: flex;
		font-size: 1.6rem;
	}
	.navsubList_item:not(:first-child){
		margin-left: 32px;
	}
	.navsubList_item a{
	}
}

/*
@media screen and (min-width:1500px) {
	.headerWp{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 5;
		display: flex;
		flex-direction: column;
		padding: 24px;
		width: 350px;
		height: 100vh;
		background: url('/_common/images/header_bg.png') repeat #000;
	}
	.headerTtl{
		margin: 0 auto;
		width: 100%;
		max-width: 150px;
	}
	.headerTxt{
		margin-top: 24px;
		text-align: center;
		color: #fff;
		font-weight: bold;
	}
	.headerTxt_br{
		display: block;
	}

	.snsList{
		display: flex;
		justify-content: center;
		margin: 16px 0 0 -8px
	}
	.snsList_item{
		margin-left: 8px;
	}
	.snsList_item a{
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px;
		width: 40px;
		height: 40px;
		border-radius: 50vw;
		background: #fff;
	}
	.navigation{
		margin-top: 24px;
	}
	.navList{
	}

	..snsList_item{
		border-top: solid 1px #999;
	}
	.navList_item:last-child{
		border-bottom: solid 1px #999;
	}
	.navList_item a{
		display: flex;
		padding: 16px;
		min-height: 65px;
		color: #fff;
		font-weight: bold;
		text-decoration: none;
	}
	.navList_box{
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
	}
	.navList_txt{
		flex: 1;
		margin-left: 16px;
	}
	.navList_box img{
		width: 45px;
	}


	.weather{
		margin-top: auto;
		color: #fff;
	}
	.weather_area{
		font-size: 2.4rem;
		font-weight: bold;
	}
	.weatherWp{
		display: flex;
	}
	.weather_today{
		font-size: 2.1rem;
	}
	.weather_today span{
		display: block;
		font-size: 1.4rem;
	}
	.temperature{
		display: flex;
		margin: 8px 0 0 -16px;
	}
	.temperature_item{
		margin-left: 16px;
		width: calc(100% / 2 - 16px);
	}
	.temperature_item{
		line-height: 1.3;
	}
	.temperature_item dt{
		font-size: 1.4rem;
	}
	.temperature_item dd{
		font-size: 3.0rem;
	}
	.subheader{
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1;
		display: flex;
		align-items: center;
		min-height: 68px;
		padding: 0 82px 0 366px;
		width: 100%;
		color: #fff;
		background: url('/_common/images/header_bg.png') repeat #000;
		transition: transform 0.3s ease;
	}
	.nav-hidden .subheader{
		transform: translateY(-100%);
	}
	.subheader_txt{
	}
	.navSub{
		margin-left: auto;
	}
	.navsubList{
		display: flex;
		font-size: 1.6rem;
	}
	.navsubList_item:not(:first-child){
		margin-left: 32px;
	}
	.navsubList_item a{
		color: #fff;
	}
}
*/






.menu{
	position: absolute;
	right: 4px;
	top: 4px;
	z-index: 1001;
	background:#fff;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 50px;
	height:50px;
	padding-bottom: 4px;
	font-size: 1.0rem;
	font-weight: 500;
	font-family: Arial, Helvetica, "sans-serif";
	letter-spacing: -.02em;
	border: solid 2px #000;
	overflow: hidden;
	transform: rotateX(0deg);
}
.menu .openbtn-area{
	margin-bottom: auto;
	transition: all .3s;
}
.menu span{
	position: absolute;
	left: 12px;
	z-index: 101;
	display: inline-block;
	width: 45%;
	height: 3px;
	border-radius: 3px;
	background: #000;
	transition: all .4s;/*アニメーションの設定*/
}
.menu span:nth-of-type(1) {
	top: 10px; 
}
.menu span:nth-of-type(2) {
	top: 17px;
}
.menu span:nth-of-type(3) {
	top: 24px;
}

.menu.is-open{
	transform: rotateX(360deg);
	border-color: #fff;
}

.menu.is-open span:nth-of-type(1) {
	top: 18px;
	left: 50%;
	transform: translate(-50%, 0) rotate(-135deg);
	width: 50%;
}

.menu.is-open span:nth-of-type(2) {
  opacity: 0;
}

.menu.is-open span:nth-of-type(3){
	top: 30px;
	left: 50%;
	transform: translate(-50%, -12px) rotate(135deg);
	width: 50%;
}

@media print,screen and (min-width:960px){
	.menu{
		display: none;
	}
}


/*.wrapper{
	margin-top: 68px;	
}*/


/*
.hd{width:100%;border-top:solid 5px #000d44;background-color:#fff}.hdLogo{margin:0 auto;padding:10px 0;width:80px}.hdLogo svg{vertical-align:bottom}.logoClr{fill:#000D44}@media screen and (max-width:959px){.spGnav{position:sticky;left:0;bottom:0;z-index:10001;box-shadow:0 0 1.5rem rgba(0,0,30,.2);background:#fff}.lock .spGnav{left:inherit;right:0;position:fixed;box-shadow:none;background:none}.navLogo{margin:0 auto;width:100%;max-width:200px}.nav{position:fixed;left:0;top:100%;z-index:10000;padding:40px 32px 80px;width:100%;height:100%;background:#2196F3;transition:top .4s ease;overflow:auto}.nav.is-open{top:0}.navItem{margin-top:24px}.navItem>a,.navItemDown{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;color:#fff;font-size:1.8rem;text-decoration:none;font-weight:700}.navItem .m-ico{font-size:3rem;line-height:1}.navItemIco{margin-right:16px}.navItem .-arrow{margin-left:auto}.navItemDown .-arrow{transition:transform .4s ease}.navItem[aria-subnav=true] .-arrow{top:-5px;transform:rotate(180deg)}.navSub{display:none}.navSubList{margin-top:16px}.navSubItem:not(:first-child){border-top:dashed 1px #fff}.navSubItem>a{display:flex;align-items:center;padding:8px;text-decoration:none;transition:opacity .2s}.navSubItem a:hover{opacity:.6}.navSubItemImg{padding:4px;width:60px;border-radius:4px;background:#fff}.navSubItem span{flex:1;margin-left:16px;color:#fff;font-weight:700}.menu{position:relative;z-index:11;cursor:pointer;display:flex;justify-content:center;align-items:center;margin:0 auto;padding-bottom:4px;width:20px;height:25px}.menuBar,.menuBar:before,.menuBar:after{position:absolute;content:'';display:block;height:2px;width:100%;border-radius:2px;background:#0f345d;transition:0.5s}.is-open .menuBar,.is-open .menuBar:before,.is-open .menuBar:after{background:#fff}.menuBar:before{bottom:7px}.menuBar:after{top:7px}.jsMenu.is-open .menuBar{background:rgba(255,255,255,0)}.jsMenu.is-open .menuBar::before{bottom:0;transform:rotate(45deg)}.jsMenu.is-open .menuBar::after{top:0;transform:rotate(-45deg)}.spGnavList{display:flex}.spGnavItem.-home,.spGnavItem.-menu{width:80px}.spGnavItem.-menu{margin-left:auto}.spGnavItem.-ticket{flex:1}.lock .spGnavItem:not(.-menu){display:none}.spGnavItem>a{text-decoration:none}.spGnavItem_txt{font-size:1.2rem;text-align:center;line-height:1.2}.is-open .spGnavItem_txt{color:#fff}.spGnavItem:not(.-ticket) .spGnavItem_link{display:flex;flex-direction:column;justify-content:space-between;text-align:center;padding:8px 4px;height:100%}.spGnavItem.-home .spGnavItem_link{color:#fff;background:#0f345d}.spGnavItem.-ticket .spGnavItem_link{display:flex;justify-content:center;align-items:center;padding:8px 4px;height:100%;color:#fff;font-size:1.6rem;background:#2196F3}.spGnavItem.-ticket .spGnavItem_link .spGnavItem_txt{margin-left:8px;font-size:1.6rem;font-weight:700}.spGnavItem_link .m-ico{justify-content:center;color:#fff;font-size:2.5rem;line-height:1}.spGnavItem.-search span{display:none}}@media print, screen and (min-width:960px){.spGnav{display:none}.navLogo{display:none}.nav{pointer-events:none;position:fixed;left:0;top:0;z-index:1000;width:100%}.nav .inner{display:flex;justify-content:space-between;margin:0 auto}.navigation{pointer-events:visible;margin-left:auto;padding:8px 40px;max-width:1000px;width:100%;height:120px;background:url(/_common/images/nav_bg.png) center / 100% 100% no-repeat}.navList{position:relative;display:flex;justify-content:center;margin:0 auto;width:100%;max-width:850px}.navItem{flex:1}.navItem:not(:first-child){border-left:solid 1px #0f345d}.navItem>a,.navItemDown{cursor:pointer;display:block;padding:0 8px;text-decoration:none;text-align:center;color:#0f345d;font-weight:700;transition:opacity .2s}.navItem>a:hover{opacity:.6}.navItemIco{margin-top:-4px;text-align:center;font-size:3.5rem;font-weight:400;line-height:1}.navSub{position:absolute;left:0;z-index:100;padding-top:16px;width:100%;visibility:hidden;opacity:0;transition:transform 0.3s ease 0s;transform-origin:center top;transform:scaleY(0)}.navItem[aria-subnav=true] .navSub{visibility:visible;opacity:1;transform:scaleY(1)}.navSubInr{padding:24px;border-radius:24px;background:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.2)}.navSubList{display:flex;flex-wrap:wrap;margin:-16px 0 0 -16px}.navSubItem{margin:16px 0 0 16px;width:calc(100% / 3 - 16px)}.navSubItem a{display:flex;flex-direction:column;padding:8px;height:100%;text-align:center;text-decoration:none;border:solid 1px #0f345d;background:#fff;transition:opacity .2s}.navSubItem a:hover{opacity:.6}.navSubItemImg{margin:0 auto;width:70%}.navSubItem span{flex:1;display:flex;justify-content:center;align-items:center;margin-top:8px;min-height:47px;line-height:1.3;font-weight:700}}
*/

/*  section
-----------------------------------------------------------*/


/* TEL */
@media print, screen and (min-width:960px){a[href^="tel:"]{pointer-events:none;cursor:default;color:#352f25;text-decoration:none}}

/* リストマーク */
.list-dot li{position:relative;padding-left:1.2em}.list-dot li:before{position:absolute;left:0;top:0;content:"・"}.list-num li{position:relative;padding-left:1.2em;counter-increment:cnt}.list-num li:before{position:absolute;left:-5px;content:counter(cnt)"）";display:inline-block}ul.kome li,p.kome{position:relative;padding-left:calc(1em + 4px)}ul.kome.-fs li,p.kome.-fs{font-size:1.2rem}ul.kome li:before,p.kome:before{position:absolute;left:0;top:0;content:"※"}@media print, screen and (min-width:960px){ul.kome.-fs li,p.kome.-fs{font-size:1.4rem}}

/*  下層ページMV */
.pagemv{
	position: relative;
	min-height: 200px;	
	display: flex;
	justify-content: center;
	align-items: center;
}
.pagemvBd{
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	width: 100%;
	max-width: 300px;
	text-align: center;
}
.mv_logo{
	width: 100%;
}
.pagemvBd_ttl{
	display: flex;
	flex-direction: column-reverse;
	margin-top: 8px;
	color: #fff;
}
.pagemvBd_ttltop{
	font-size: 2.4rem;
	font-weight: bold;
}
.pagemvBd_ttlbot{
	padding-top: 4px;
	border-top: solid 2px #fff;
	font-size: 2.1rem;
	letter-spacing: .2em;
}
@media print,screen and (min-width:960px){
	.pagemv{
		position: relative;
		min-height: 300px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.pagemvBd{
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		width: 100%;
		max-width: 600px;
		text-align: center;
	}
	.mv_logo{
		width: 100%;
	}
	.pagemvBd_ttl{
		display: flex;
		flex-direction: column-reverse;
		margin-top: 16px;
		color: #fff;
		letter-spacing: .2em;
	}
	.pagemvBd_ttltop{
		font-size: 3.0rem;
		font-weight: bold;
	}
	.pagemvBd_ttlbot{
		padding-top: 8px;
		border-top: solid 2px #fff;
		font-size: 2.1rem;
	}
	
	
	
}





/*  カセット */
.jsSlider{
	height: 0;
	padding-top: calc(450 / 600 * 100%);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
}
.jsSlider.slick-initialized, .jsSlider.slide-one{
	height: inherit;
	padding-top: 0;
	overflow: inherit;
	opacity: 1;
	visibility: visible;
}

.castype01{
	display: flex;
	flex-direction: column-reverse;
	margin: 0 -8px;
	padding: 16px;
	border-radius: 16px;
    background: #fff;
}
.castype01:not(:first-of-type){
	margin-top: 16px;
}

.castype01Bd{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 24px;
}
.casImg{
	position: relative;
}
.casImg figcaption{
	position: absolute;
    right: 0;
    bottom: 3px;
    padding: 0 5px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
	text-shadow: 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%), 0 0 2px rgb(0 0 0 / 80%);
}
@media screen and (min-width: 960px){
	.castype01{
		justify-content: space-between;
		flex-direction: row-reverse;
		padding: 56px;
		border-radius: 30px;

	}
	.castype01:not(:first-of-type){
		margin-top: 40px;
	}
	.castype01Bd{
		margin-top: 0;
		width: calc(60% - 40px);
	}
	.castype01Img{
		width: 40%;
	}
	.castype01 .jsSlider .slick-dots {
		top: calc(100% + 16px);
	}
}
.castype02{
	margin: -16px -8px 0;
}
.castype02_item{
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 16px;
	padding: 16px;
	border-radius: 16px;
	background: #fff;
}
.castype02_img{
	order: -1;
}
.castype02_ttl{
	margin-top: 24px;
	font-size: 2.0rem;
	font-weight: bold;
}
.castype02_ttl span{
	display: inline-block;
	font-size: 1.4rem;
}
.castype02_txt{
	flex: 1;
	margin-top: 8px;
	line-height: 1.7;
}
.castype02_shopinfo{
	display: flex;
	margin-top: 16px;
	padding-top: 8px;
	font-size: 1.4rem;
	border-top: dashed 1px #ccc;
}
.castype02_shopinfo dt{
	font-weight: 800;
}
.castype02_shopinfo dt:after{
	content: "：";
}
.castype02_shopinfo dd{
	margin-left: 16px;
	flex: 1;
}

.castype02_linklist{
	display: flex;
	flex-wrap: wrap;
}
.castype02_linklist_item{
	padding-right: 8px;
}
.castype02_linklist_item:not(:first-child):before{
	content: "/";
	padding-right: 8px;
}
@media screen and (min-width: 960px){
	.castype02{
		display: flex;
		flex-wrap: wrap;
		margin: -40px 0 0 -40px;
	}
	.castype02_item{
		margin: 40px 0 0 40px;
		padding: 24px;
		width: calc(100% / 3 - 40px);
		font-size: 1.6rem;
		border-radius: 24px;
	}
	.castype02_img{
		order: -1;
	}
	.castype02_ttl{
		font-size: 2.4rem;
	}
	.castype02_ttl span{
		font-size: 1.6rem;
	}
	.castype02_shopinfo{
		font-size: 100%;
	}
	
	
}


/* 注意
-----------------------------------------------------------*/
.attention{
	display: flex;
	align-items: flex-start;
	padding: 16px;
}
.attention .m-ico{
	flex: none;
	margin: -2px 8px 0 0;
	font-size: 2.5rem;
	line-height: 1;
}
.attention.-info{
	background: #ecf9ff;
}
.attention.-warning{
	background: #fff8df;
}
.attention.-info .m-ico{
	color: #3498db;
}
.attention.-warning .m-ico{
	color: #e18d52;
}


.attentionBd dt{
	font-weight: bold;
}
.attentionBd dd{
	margin: 8px 0 0 -32px;
}
@media print, screen and (min-width: 1000px) {
	.attention{
		padding: 24px;
	}
	.attention .m-ico{
		margin: 0 16px 0 0;
		margin-right: 16px;
		font-size: 3.0rem;
	}
	.attentionBd{
		flex: 1;
	}
	.attentionBd dd{
		margin: 8px 0 0;
	}
}










/*  マーカー
-----------------------------------------------------------*/
em.red{padding:0 .2em;background:linear-gradient(transparent 70%,#f9c3e3 60%)}em.blue{padding:0 .2em;background:linear-gradient(transparent 70%,#c6ecf5 60%)}em.green{padding:0 .2em;background:linear-gradient(transparent 70%,#dcffe1 0%)}em.yellow{padding:0 .2em;background:linear-gradient(transparent 70%,#ffd906 0%)}

/* ADS
-----------------------------------------------------------*/
.ads{
	margin-top: 30px;
}

/* FOOTER ADS
-----------------------------------------------------------*/
/*.fads{
	margin-top: 48px;
}
.fads .inner{
	max-width: 1000px;
}*/

/* FOOTER
-----------------------------------------------------------*/
.footer{position:relative;margin-top:40px;padding:30px 10px;color:#fff;text-align:center;background:#000}.footer:before{position:absolute;left:0;bottom:100%;z-index:-1;content:"";display:inline-block;width:100%;height:212px;background:url(/_common/images/f_bg_sky.png) center bottom repeat-x}.footerList{display:flex;justify-content:center}.footerItem{line-height:1.3}.footerItem:not(:first-child){margin-left:24px;padding-left:24px;border-left:solid 1px #c7d4ac}.footerItem a{color:#fff;font-size:1.4rem}.f-copy{margin-top:24px;font-size:1.4rem}@media print, screen and (min-width:960px){.footer{margin-top:80px}.footerItem a{font-size:100%}}


/*  SNS follow me!
-----------------------------------------------------------*/
.sns-panel{display:flex;flex-direction:column;padding:5px 0;border-radius:8px 0 0 8px;transition:bottom .3s}.sns-panel dt{margin-right:10px;color:#fff;text-align:center;font-weight:800}.sns-panel li a{position:relative;display:block;width:30px;height:30px;transition:all 0.4s ease}.sns-panel li a:before{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);content:"";display:inline-block;width:100%;height:100%}.sns-panel li.twitter a:before{background:url(/_common/images/sns/x_w.svg) center /100% auto no-repeat}.sns-panel li.insta a:before{background:url(/_common/images/sns/instagram_w.svg) center /100% auto no-repeat}.sns-panel li.youtube a:before{background:url(/_common/images/sns/youtube_w.svg) center /100% auto no-repeat}.sns-panel li.tiktok a:before{background:url(/_common/images/sns/tiktok.svg) center /100% auto no-repeat}.sns-panel li span{display:none}@media screen and (max-width:959px){.sns-panel{margin-top:24px}.sns-panel dd{margin-top:8px}.fixednone .sns-panel{bottom:-100px}.sns-panel ul{display:flex;justify-content:center;margin-left:-16px}.sns-panel li:not(:first-child){margin-left:16px}.sns-panel img{width:100%;height:auto}}@media print, screen and (min-width:960px){.sns-panel{position:fixed;top:50%;right:0;z-index:100;justify-content:center;align-items:center;transform:translateY(-50%);padding:15px 5px;background-color:#fff}.sns-panel dt{margin:0 0 10px;color:#2679cd;font-size:1.3rem;writing-mode:vertical-rl;text-orientation:mixed}.sns-panel li:not(:first-child){margin-top:10px}.sns-panel li a{position:relative;display:block;width:30px;height:30px;border-radius:50%;background:#2679cd}.sns-panel li a:before{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);content:"";display:inline-block;width:18px;height:18px}.sns-panel li a:hover{opacity:.6}}

/* =============================================================================
    JS
============================================================================= */

/*  カセット表示切り替え
-----------------------------------------------------------*/
.cassetteSwich{display:flex;justify-content:flex-end;align-items:center}.cassetteSwich_item{padding:8px;line-height:1;border-top:solid 1px #000d44;border-bottom:solid 1px #000d44;border-right:solid 1px #000d44;background:#fff}.cassetteSwich_item.is-active{color:#fff;background:#000d44}.cassetteSwich_item:first-child{border-radius:8px 0 0 8px;border-left:solid 1px #000d44}.cassetteSwich_item:last-child{border-radius:0 8px 8px 0}@media print, screen and (min-width:960px){.cassetteSwich{display:none}.cassetteSwich_item{padding:16px}}

/*  modal
-----------------------------------------------------------*/
/*@media screen and (max-width:959px){html.lock,body.lock{height:calc(var(--window-inner-height) - 1px);overflow:hidden;box-sizing:border-box}}@media print, screen and (min-width:960px){body.lock{position:fixed;width:100%;height:100%;left:0;overflow-y:scroll;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}}.modal-wrap *{box-sizing:border-box}.modal-wrap{z-index:10001;display:none;position:fixed;top:0;left:0;width:100%;height:100%}.modal-content{display:none;position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);padding:10px 5px;width:90%;background:#fff;transition:opacity 0.5s 0s ease;opacity:0;border-radius:3px}.modal-content.is-animation{opacity:1}.modal-header{display:none}@media screen and (max-width:959px){.modal-content{height:90%;height:calc(100% - 75px)}.modal-content-in{height:100%;overflow-y:auto}.modal-content-in::-webkit-scrollbar{background:#eee;width:3px}.modal-content-in::-webkit-scrollbar-thumb{background:#aaa}}@media print, screen and (min-width:960px){.modal-wrap{overflow-y:auto}.modal-content{display:none;position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);margin:30px auto;padding:30px;width:100%;max-width:1200px;background:#fff;transition:opacity 0.5s 0s ease;opacity:0}.modal-wrap::-webkit-scrollbar{background:#ccc;width:3px}.modal-wrap::-webkit-scrollbar{width:10px;margin-bottom:30px}.modal-wrap::-webkit-scrollbar-thumb{background:#aaa}}.modal-overlay{z-index:10000;display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.6)}.modal-close-bot{text-align:center;padding:20px}.modal-close-bot span{display:inline-block;padding:10px 20px;border:solid 1px #ccc}.modal-close{position:absolute;right:-5px;top:-35px;font-size:2rem;font-weight:700;border-radius:50%;width:30px;height:30px;border:0;text-align:center;text-decoration:none;color:#fff;cursor:pointer;font-family:Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif}@media print, screen and (min-width:960px){.modal-close{right:-30px}}.modal-close:hover{text-decoration:none;color:#fff;opacity:.6;transition:all 0.4s ease}@media screen and (min-width:960px) and (max-width:1246px){.-pc .modal-close{right:0}}*/



@media screen and (max-width:959px){
	html.lock,body.lock{
		height:calc(var(--window-inner-height) - 1px);
		overflow:hidden;
		box-sizing:border-box;
	}
}
@media print, screen and (min-width:960px){
	body.lock{
		position:fixed;
		width:100%;
		height:100%;
		left:0;
		overflow-y:scroll;
		-webkit-font-smoothing:antialiased;
		-moz-osx-font-smoothing:grayscale;
	}
}

.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal-dialog {
	position: relative;
	margin: 10% auto;
	padding: 20px;
	border: 1px solid #333;
	width: 80%;
	max-width: 600px;
	max-height: 90%;
	overflow: auto;
	border-radius: 8px;
	background-color: #fff;
}

.modal-close {
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 2.5rem;
}

/* スクロールバーを隠す */
body.modal-open {
  overflow: hidden;
}



/*  クリップボードにコピー
-----------------------------------------------------------*/
.success-msg {
    display: none;
    position: fixed;
	left: 50%;
	bottom: 30px;
	z-index: 10002;
	transform: translateX(-50%);
    width: 250px;
    height: 40px;
	font-size: 1.4rem;
    line-height: 40px;
    background-color: #29aba4;
    color: #fff;
    margin: auto;
    text-align: center;
    border-radius: 5px;
}
@media screen and (min-width: 960px){
	.success-msg {
		width: 300px;
		font-size: 100%;
	}
}

/*  SHARE
-----------------------------------------------------------*/
.shareTtl{
	text-align: center;
	font-size: 2.1rem;
}

.shareTtl span{
	position: relative;
	display: inline-block;
	padding: 0 16px 4px;
	font-weight: bold;
	border-bottom: 1px solid #000d44;
}
.shareTtl span::before{
	position: absolute;
	left: 50%;
	bottom: -2px;
	content: '';
	margin-left: -8px;
	width: 16px;
	height: 3px;
	background-color: #fff;
}
.shareTtl span::after{
	position: absolute;
	left: 50%;
	bottom: -7px;
	transform: rotate(-55deg);
	content: '';
	margin-left: -5px;
	width: 16px;
	height: 1px;
	background-color: #000d44;
}
.shareBtList{
	display: flex;
	justify-content: center;
	margin: 24px 0 0 -24px;
}
.shareBtList_item{
	margin-left: 24px;
}
.shareBtList_item a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	padding: 16px;
	text-decoration: none;
	border-radius: 8px;
}
.shareBtList_item.-x a{
	background: linear-gradient(135deg, #333 0%,#333 50%,#000 50%,#000 100%);
}
.shareBtList_item.-facebook a{
	background: linear-gradient(135deg, #1c72ff 0%,#1c72ff 50%,#0866ff 50%,#0866ff 100%);
}
.shareBtList_item.-line a{
	background: linear-gradient(135deg, #0ccb57 0%,#0ccb57 50%,#00c34d 50%,#00c34d 100%);
}
.shareBtList_item.-mail a{
	color: #fff;
	font-size: 3.0rem;
	background: linear-gradient(135deg, #111e56 0%,#111e56 50%,#000d44 50%,#000d44 100%);
}
.shareCopy{
	margin: 24px auto 0;
	max-width: 300px;
}

.favorite-button{
	transition: all .3s;
}
.favorite-button.on{
	color: #ec5353;
	font-weight: bold;
	border-color: #ec5353;
	background: #fff;
}


/*  slide
-----------------------------------------------------------*/
.slide{position:relative;overflow:hidden}.slidewrap{position:relative;left:0;display:flex;transition:left 0.4s ease}.slidedot{display:flex;justify-content:center;margin:8px 0 0 -16px}.slidedotItem{cursor:pointer;margin-left:8px;width:40px}.slidedotItem span{display:inline-block;width:100%;height:4px;background:#d2d2d2}.slidedotItem.is-active span{background:#000d44}@media print, screen and (min-width:960px){.slidedot{margin:32px 0 0 -16px}.slidedotItem{margin-left:16px;width:80px}}

/*  Slick
-----------------------------------------------------------*/
@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}

.swiper_arrow{
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	line-height: 1;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	transition: opacity .2s;
}
.swiper_arrow.swiper-button-disabled{
	opacity: 0;
}
.swiper_arrow.-next{
	right: 0;
}
.swiper_arrow.-prev{
	left: 0;
}

.swiper-pagination-bullet{
	width: 8px;
	height: 8px;
	background-color: #ccc;
	border-radius: 50vw;
}

