/* =====================================================
1.0 - Foundation
===================================================== */

/*
1.1 - Reset
-----------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font: inherit;
	font-size: 100%;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

/*
1.2 - Base
-----------------------------------------------------*/

*,
:before,
:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	height: 100%;
	color: #1a1b1f;
	text-rendering: optimizeLegibility;
	font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	-webkit-font-feature-settings: 'pkna';
	-moz-font-feature-settings: 'pkna';
	font-feature-settings: 'pkna';
	line-height: 1.5;
	background: url(../img/bg_01.png) repeat;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	text-decoration: none;
}

/* =====================================================
2.0 - Layout
===================================================== */

/*
2.2 -footer
-----------------------------------------------------*/

.footer {
	background: #ffffff;
	text-align: center;
	padding: 0.75rem 0;
}

.footer a {
	color: #000000;
}

/*
2.1 - header
-----------------------------------------------------*/

.header {
	background: url(../img/bg_suisai.png) no-repeat;
	background-size: 100% auto;
	background-position: right bottom;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-moz-box-orient: vertical;
	-moz-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.header + * {
	margin-top: 1.875rem;
}

.sitelogo {
	margin-right: 100px;
}

.nav_wrap {
	position: relative;
	margin-top: 1.875rem;
}

.nav_wrap .wrap {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.globalnav_list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.globalnav_list li:not(:last-child) {
	margin-right: 120px;
}

.globalnav_list li a {
	display: block;
	position: relative;
}

.globalnav_list li a::after {
	content: '';
	width: 100%;
	height: 1px;
	background: #000000;
	display: block;
	position: absolute;
	top: -webkit-calc(100% + 10px);
	top: -moz-calc(100% + 10px);
	top: calc(100% + 10px);
	left: 0;
	opacity: 0;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}

.globalnav_list li a:hover::after {
	opacity: 1;
}

.globalnav-sp {
	display: none;
}

/* Button */

.button-hamburger {
	position: absolute;
	top: 0;
	right: 2.5%;
	bottom: 0;
	z-index: 1;
	width: 40px;
	height: 40px;
	margin: auto 0;
	border: 0;
	outline: 0;
	background-color: transparent;
	cursor: pointer;
	-webkit-appearance: none; /* Chrome, Safari, Opera, Android */
	-moz-appearance: none; /* Firefox */
	appearance: none; /* IE非対応 */
}

.hamburger {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 2px;
	margin: auto;
	background-color: #8f82bc;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.hamburger:before,
.hamburger:after {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: inherit;
	content: '';
}

.hamburger:before {
	top: -5px;
}

.hamburger:after {
	top: 5px;
}

.is-open .hamburger {
	background: transparent;
}

.is-open .hamburger::before,
.is-open .hamburger::after {
	background: #8f82bc;
	top: 0;
}

.is-open .hamburger::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.is-open .hamburger::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.button-hamburger {
	display: none;
}

/*
2.3 - main
-----------------------------------------------------*/

.wrap {
	width: 1000px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.breadcrumb + * {
	margin-top: 3.125rem;
}

.breadcrumb_list li {
	display: inline-block;
}

.breadcrumb_list li:not(:last-child)::after {
	content: '>';
	display: inline-block;
	margin-left: 4px;
	margin-right: 2px;
}

.breadcrumb_list a {
	color: #000000;
	text-decoration: underline;
}

/* =====================================================
3.0 - Object
===================================================== */

.c-basetxt {
	font-size: 1.25rem;
	line-height: 2;
}

.c-leftborder {
	padding-left: 0.5625rem;
	border-left: 6px solid #cce198;
}

.c-flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.c-flex.-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-moz-box-orient: horizontal;
	-moz-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.c-flex.-spacebetween {
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.event .lower_subttl + * {
	margin-top: 2.5rem;
}

.event_itemttl {
	position: relative;
	padding-left: 20px;
}

.event_itemttl::before {
	content: '';
	position: absolute;
	display: block;
	width: 18px;
	height: 18px;
	background: url(../img/event/icon_triangle.png) no-repeat;
	background-size: contain;
	top: 11px;
	left: 0;
}

.event-concert .event_img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 4.375rem;
}

.event_table{
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	font-size: 20px;
}
.event_table dt{
	width: 100px;
	text-align: center;
	background: #cce198;
	margin-right: 5px;
	margin-bottom: 5px;
}
.event_table dd{
	width: calc(100% - 105px);
	background: #f8f9e7;
	margin-bottom: 5px;
}

.flower_photolist li:not(:last-child) {
	margin-right: 1.25rem;
}

.flower_photoitem figcaption {
	text-align: right;
	font-size: 1.25rem;
	margin-top: 0.625rem;
}

.flower_box {
	margin-top: 3.75rem;
}

.flower_box + * {
	margin-top: 3.125rem;
}

.flower_ttl {
	position: relative;
	font-size: 1.25rem;
}

.flower_ttl + * {
	margin-top: 1.25rem;
}

.flower_ttl::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10.5px 0 10.5px 13px;
	border-color: transparent transparent transparent #84db20;
	position: relative;
	top: 2px;
	margin-right: 0.5rem;
}

.flower_ttl.summer::before {
	border-color: transparent transparent transparent  #2097db;
}

.flower_ttl.autumn::before {
	border-color: transparent transparent transparent  #db7820;
}

.flower_ttl.winter::before {
	border-color: transparent transparent transparent  #c863d7;
}

.form .lower_ttl + * {
	margin-top: 40px;
}

.form_hr {
	margin-top: 30px;
}

.form_hr + * {
	margin-top: 20px;
}

.form_btn {
	width: 240px;
	font-size: 1.25rem;
}

.form_btn a {
	display: block;
	background: #ce7d7e;
	text-align: center;
	color: #ffffff;
	border-radius: 0.3125rem;
}

.form_btn.dl_btn {
	margin: 1.875rem auto;
}

.form_btn button {
	background: #8f82bc;
	text-align: center;
	color: #ffffff;
	border-radius: 0.3125rem;
	font-size: inherit;
	width: 100%;
}

.form_btn.submit_btn {
	margin: 1.875rem auto;
	text-align: center;
}

.form_label {
	font-size: 1.375rem;
	margin-top: 1.25rem;
}

.form_label .req {
	background: #d9340a;
	border-radius: 4px;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	font-size: 0.81818em;
	margin-left: 1.25rem;
	padding: 2px;
}

.form_input {
	display: inline-block;
	margin-top: 15px;
	font-size: 1.25rem;
	width: -webkit-calc(50% - 10px);
	width: -moz-calc(50% - 10px);
	width: calc(50% - 10px);
}
.form_input.houji {
	width: calc(70% - 10px);
}

.form_input.date {
	display: flex;
	align-items: center;
}

.form_input + .form_input,
.form_input + span {
	margin-left: 10px;
}

.form_input.-full {
	width: 100%;
}

.form_input input[type="text"],
.form_input input[type="email"],
.form_input input[type="tel"] {
	background: #ffffff;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: 30px;
	font-size: inherit;
	width: 100%;
	border: 1px solid #7d7d7d;
	padding: 4px .5em;
}

.form_input input[type="text"]::-webkit-input-placeholder,
.form_input input[type="email"]::-webkit-input-placeholder,
.form_input input[type="tel"]::-webkit-input-placeholder {
	color: #909090;
}

.form_input input[type="text"]::-moz-placeholder,
.form_input input[type="email"]::-moz-placeholder,
.form_input input[type="tel"]::-moz-placeholder {
	color: #909090;
}

.form_input input[type="text"]:-ms-input-placeholder,
.form_input input[type="email"]:-ms-input-placeholder,
.form_input input[type="tel"]:-ms-input-placeholder {
	color: #909090;
}

.form_input input[type="text"]::-ms-input-placeholder,
.form_input input[type="email"]::-ms-input-placeholder,
.form_input input[type="tel"]::-ms-input-placeholder {
	color: #909090;
}

.form_input input[type="text"]::placeholder,
.form_input input[type="email"]::placeholder,
.form_input input[type="tel"]::placeholder {
	color: #909090;
}

.form_input input[type="radio"] {
	/*display: none;*/
}

.form_input input[type="radio"] + label {
	position: relative;
	padding-left: 30px;
	margin-right: 10px;
}

.form_input input[type="radio"] + label::before {
	content: '';
	display: block;
	position: absolute;
	width: 18px;
	height: 18px;
	background: #ffffff;
	border-radius: 50%;
	border: 1px solid #7d7d7d;
	left: 0;
	top: 2px;
}

.form_input input[type="radio"]:checked + label::after {
	content: '';
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ce7d7e;
	left: 3px;
	top: 5px;
}

.form_input.-radio input[type="text"] {
	width: 370px;
	margin-left: 10px;
}

.form_addtext {
	text-align: center;
	cursor: pointer;
	margin-top: 40px;
	font-size: 1.25rem;
}

.form_desp {
	font-size: 1.25rem;
	display: inline-block;
	color: #1a1b1f;
}

.form-hana {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form-hana_item {
	width: 155px;
	font-size: 1.25rem;
}

.form-hana .form_input {
	margin-top: 0;
}

.form_textarea {
	background: #ffffff;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: inherit;
	width: 100%;
	border: 1px solid #7d7d7d;
	padding: 4px .5em;
}

.form_textarea::-webkit-input-placeholder {
	color: #909090;
}

.form_textarea::-moz-placeholder {
	color: #909090;
}

.form_textarea:-ms-input-placeholder {
	color: #909090;
}

.form_textarea::-ms-input-placeholder {
	color: #909090;
}

.form_textarea::placeholder {
	color: #909090;
}

.form_select {
	font-size: 1.25rem;
	margin-right: 40px;
}

.form_select span {
	position: relative;
	padding-left: 30px;
}

.form_select.is-select span::before {
	content: '';
	display: block;
	position: absolute;
	width: 18px;
	height: 18px;
	background: #ffffff;
	border-radius: 50%;
	border: 1px solid #7d7d7d;
	left: 0;
	top: 2px;
}

.form_select.is-select span::after {
	content: '';
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ce7d7e;
	left: 3px;
	top: 5px;
}

.form_wrap.confirm .form_btn.dl_btn button{
	background: #ffffff;
	border: 1px solid #8f82bc;
	color: #8f82bc;
}

.form_wrap.confirm .form_btn.dl_btn,
.form_wrap.confirm .form_btn.submit_btn{
	margin: 0 20px;
}
.form_wrap.confirm .form_btn.submit_btn{
	width: 390px;
}
.form_wrap.confirm .btn_wrap{
	justify-content: center;

}

.form-thanks_tel {
	text-align: center;
	margin-top: 3.75rem;
}

.form-thanks_tel .logo-sodo {
	margin-bottom: 1.25rem;
}

.form-thanks_tel .num-img {
	display: inline-block;
	max-width: -webkit-calc(50% - 15px);
	max-width: -moz-calc(50% - 15px);
	max-width: calc(50% - 15px);
}

.form-thanks_tel .num-img:first-of-type {
	margin-right: 30px;
}

.lower_ttl {
	background: #f9f4eb;
	border-left: 4px solid #cce198;
	padding-left: 1.25rem;
	font-size: 1.875rem;
}

.lower_ttl + * {
	margin-top: 3.375rem;
}

.lower_ttl img {
	vertical-align: text-bottom;
}

.lower_subttl {
	font-size: 1.875rem;
}

.lower_subttl + * {
	margin-top: 3.125rem;
}

.lower_mv img {
	width: 100%;
}

.lower_sec + * {
	margin-top: 4.375rem;
}

.despbox {
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.despbox + * {
	margin-top: 3.75rem;
}

.despbox .textbox {
	max-width: 460px;
}

.despbox .img {
	max-width: 460px;
}

.top_mv img {
	width: 100%;
}

.main_nav:last-of-type {
	margin-bottom: 100px;
}

.main_nav li {
	margin-top: 1.25rem;
}

.main_navitem {
	position: relative;
}

.main_navitem p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 3;
}


.main_navitem p > img{
	max-width: none;
}

.main_navitem .img{
	overflow: hidden;
}

.main_navitem::before {
	content: '';
	display: block;
	position: absolute;
	height: -webkit-calc(100% - 30px);
	height: -moz-calc(100% - 30px);
	height: calc(100% - 30px);
	width: -webkit-calc(100% - 30px);
	width: -moz-calc(100% - 30px);
	width: calc(100% - 30px);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	z-index: 2;
}

.main_navitem::after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(255, 255, 255, 0.5);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.main_navitem:hover::after {
	opacity: 0;
}

.top .globalnav_list {
	margin-top: -70px;
}

.top-message {
	font-size: 1.25rem;
	text-align: center;
	width: -webkit-calc(100% - 250px);
	width: -moz-calc(100% - 250px);
	width: calc(100% - 250px);
	line-height: 2;
	margin: -150px 0 100px auto;
}

.access {
	padding-bottom: 8.125rem;
}

.access p + * {
	margin-top: 2rem;
}

.logo_sp {
	display: none;
}

.map {
	position: relative;
	width: -webkit-calc(50% - 30px);
	width: -moz-calc(50% - 30px);
	width: calc(50% - 30px);
}

.ggmap {
	position: relative;
	padding-bottom: 76%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.screen-reader-text {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}

.u-fc-red {
	color: #ce7d7e;
}

.u-fc-purple {
	color: #8f82bc;
}

.u-sansserif {
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 游ゴシック体, YuGothic, 游ゴシック, 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
}

.sp-db {
	display: none;
}

@media screen and (max-width: 768px) {

.button-hamburger {
	display: block;
}

.header {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 24%;
}

.nav_wrap {
	margin-top: 0;
	padding: 10px 0;
}

.nav_wrap .c-flex.-spBlock > .sitelogo {
	margin-right: 0;
	text-align: center;
	width: 29.6%;
	margin-right: auto;
	margin-left: auto;
}

.globalnav {
	display: none;
}

.globalnav-sp {
	-webkit-transform: translateX(150%);
	-moz-transform: translateX(150%);
	-ms-transform: translateX(150%);
	transform: translateX(150%);
	display: block;
	position: fixed;
	top: 12vw;
	right: 0;
	width: 48vw;
	max-width: 360px;
	z-index: 10;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.globalnav-sp_list li:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.is-open .globalnav-sp {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.header + * {
	margin-top: -15%;
}

.wrap {
	width: 93%;
}

.c-basetxt {
	/* font-size: 1.1rem; */
	font-size: 1.1rem;
}

.c-flex.-spBlock {
	display: block;
}

.c-flex.-spBlock > * {
	width: 100%;
	max-width: 100%;
}

.c-flex.-spflex2 > * {
	max-width: 50%;
}

.event-concert .event_img {
	margin-left: 0;
	margin-top: 1.25rem;
}
.event_table{
	font-size: 15px;
}

.flower_ttl,
.flower_photoitem figcaption {
	font-size: 1.1rem;
}

.flower_box + * {
	margin-top: 1.875rem;
}

.flower_photolist {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flower_photolist li {
	width: -webkit-calc(50% - 10px);
	width: -moz-calc(50% - 10px);
	width: calc(50% - 10px);
}

.flower_photolist li:not(:last-child) {
	margin-right: 0;
}

.flower_photolist li:nth-child(odd) {
	margin-right: 0.625rem;
}

.flower_photolist li:nth-child(n+3) {
	margin-top: 0.625rem;
}

.form_btn {
	width: 200px;
	font-size: 1.1rem;
}

.form_label,
.form-hana_item {
	font-size: 1.1rem;
}

.form_input, .form_input.houji {
	font-size: 1rem;
	margin-top: 0.5rem;
	width: 265px;
}
.form_input.houji {
	width: 100%;
}

.form_desp {
	font-size: 0.75rem;
}

.form_input.-spfull {
	width: 100%;
}

.form-hana {
	display: block;
	margin-top: 0.625rem;
}

.form-hana + * {
	margin-top: 1.25rem;
}

.form_input.-radio input[type="text"] {
	width: 50%;
}

.form_input input[type="radio"] + label {
	margin-top: 10px;
	display: inline-block;
	font-size: 0.875rem;
}

.form_label .req {
	margin-left: 10px;
}

.form-thanks_tel .num-img:first-of-type {
	margin-right: 10px;
}

.lower_ttl {
	font-size: 1.25rem;
}

.lower_ttl + * {
	margin-top: 1.25rem;
}

.lower_subttl {
	font-size: 1.5rem;
}

.lower_subttl + * {
	margin-top: 0.9375rem;
}

.lower_mv {
	height: 21.33333vw;
}

.lower_mv img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.lower_sec + * {
	margin-top: 1.875rem;
}

.despbox + * {
	margin-top: 1.5625rem;
}

.despbox .img {
	margin-top: 1.25rem;
}

.top_mv {
	/*height: 66.66667vw;*/
	height: 40vw;
}

.top_mv img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}


.top .globalnav_list {
	margin-top: 0;
}

.top-message {
	width: 100%;
	margin-top: 0;
	margin-bottom: 70px;
	font-size: 1.1rem;
}

.main_navitem p img {
	height: 5.28571vw;
	width: auto;
	max-width: none;
}

.main_navitem .img {
	height: 25.71429vw;
}

.main_navitem .img > img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.access {
	font-size: 1.1rem;
}

.access .c-flex {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-moz-box-orient: vertical;
	-moz-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.access .logo {
	display: none;
}

.access .logo_sp {
	display: block;
	max-width: 50%;
}

.map {
	width: 100vw;
	margin-left: -webkit-calc(50% - 50vw);
	margin-left: -moz-calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.pc-db {
	display: none;
}

.sp-db {
	display: block;
}

}


.sel{
	display: inline-block;
	width: 50%;
	background-color: transparent;
	position: relative;
	cursor: pointer;
}
.sel__placeholder {
	pointer-events: none;
	/* font-weight: bold; */
	/* font-size: 1.8rem; */
	background: #ffffff;
	border: 1px solid #8f82bc;
	user-select: none;
	visibility: visible;
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.sel__placeholder::before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.2em 0.5em;
	content: attr(data-placeholder);
	visibility: hidden;
}
.sel__placeholder.not-select::after{
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 8.5px 0 8.5px;
	border-color: #8f82bc transparent transparent transparent;
	top: 50%;
	transform: translateY(-50%);
	right: 5%;
}
  .sel__box {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    display: none;
    list-style-type: none;
    text-align: left;
    background-color: #FFF;
		width: 100%;
		max-height: 200px;
    box-sizing: border-box;
		z-index: 1;
		overflow: auto;
  }
  .sel.active .sel__box {
    display: block;
  }
  .sel__box__options {
    display: list-item;
    color: #666666;
    padding: 5px 0;
		text-align: center;
		background: #ffffff;
    user-select: none;
		border-bottom: none;
	}
.sel__box__options.selected::after {
	display: inline;
}

.sel__box__options:hover {
	/* background: rgba(#f1ccbe,.6); */
}
input[type=radio], input[type=checkbox] {

  position: absolute;
  opacity: 0;
  z-index: -1;
}