@charset "utf-8";

/************************************
 * Reset
************************************/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
	line-height: 1.1;
}

a:not([class]) {
	color: currentColor;
}

img,
picture {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

textarea:not([rows]) {
	min-height: 10em;
}

:target {
	scroll-margin-block: 5ex;
}

em {
	font-style: normal;
}

/************************************
 * Base
 ************************************/

:root {
	--base-width: 375;
	/* 基準幅 */
	--max-width: 640;
	/* 最大幅 */
	--base-font-size: 10;
	/* 基準フォントサイズ (10px) */
	/* 最大横幅サイズ時の最大フォントサイズ */
	--max-font-size: calc((var(--base-font-size) / var(--base-width)) * var(--max-width) * 1px);
}

html {
	/** 以下指定により「1rem = 横幅が --base-width 時の 10px」となる */
	font-size: min(calc((var(--base-font-size) / var(--base-width)) * 100vw), var(--max-font-size));
	scroll-behavior: smooth;
}

body {
	background: #e4fef4;
	color: #242424;
	font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 1.4rem;
}

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

a {
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s;
}

@media (hover: hover) {
	a:hover {
		opacity: 0.6;
		transition: opacity 0.2s;
	}

	button:hover {
		cursor: pointer;
	}

	label:hover {
		cursor: pointer;
	}
}

input,
textarea,
select,
button {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	font-size: 1.4rem;
}

section {
	position: relative;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: auto;
}

button {
	border: none;
	border-radius: 0.7rem;
	cursor: pointer;
}


/* SP：コンテンツの長さが短い場合でもフッター下に空白を入れないように調整 */
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.page-wrap {
	min-height: 100vh;
	/* 画面全体の高さを確保 */
	display: flex;
	flex-direction: column;
	background-color: #fff;
}

main {
	flex: 1;
	/* 残りのスペースを埋める */
}

.p5 {
	background-color: #ddf4f4;
}

/* /SP：コンテンツの長さが短い場合でもフッター下に空白を入れないように調整 */

/*Page*/
.page-wrap {
	width: 100%;
	flex-direction: column;
	max-width: calc(var(--max-width) * 1px);
	margin: 0 auto;
	overflow-x: hidden;
}


/******** slide-box ********/
.slide-box__inner {
	width: calc(100% - (1.5rem * 2));
	margin: 1.5rem auto 0 auto;
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 0.7rem;
}

.slide-box__head {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: flex-start;
	-moz-column-gap: 2%;
	column-gap: 2%;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.3;
	align-items: center;
}

.slide-box__head-number {
	width: 12%;
}

.slide-box__btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.slide-box__btn-wrap.column-one .slide-box__select-btn {
	width: 100%;
}

.slide-box__btn-wrap.column-two .slide-box__select-btn {
	width: 48.5%;
}

.slide-box__select-btn {
	padding: 1rem;
	margin-bottom: calc(3% + 6px);
	background-color: #e02860;
	box-shadow: 0 6px 0 #bd1b4c;
	color: #fff;
	line-height: 1.3;
	transition: all 0.2s;
	font-weight: bold;
}

@media (hover: hover) {
	.slide-box__select-btn:hover {
		transform: translateY(6px);
		box-shadow: none;
		transition: all 0.2s;
	}
}

.slide-box__prev-btn {
	margin-top: 0.5rem;
	padding: 0.5rem 0;
	width: 42%;
	background-color: transparent;
	font-size: 1.2rem;
	text-align: left;
}

.slide-title {
	margin: 0 auto;
}

.slider-wrapper {
	padding: 0 40px;
	overflow-x: hidden;
}

.slider-wrapper ul {
	margin: 0 auto;
}

.slider-wrapper ul li img {
	width: 100%;
}

.slick-next:before {
	background-image: url('../img/lr_right.webp') !important;
	background-size: contain !important;
	content: '' !important;
	width: 30px !important;
	height: 30px !important;
	position: absolute;
	top: 20px;
	left: 0;
	opacity: 1;
}

.slick-prev:before {
	background-image: url('../img/lr_left.webp') !important;
	background-size: contain !important;
	content: '' !important;
	width: 30px !important;
	height: 30px !important;
	position: absolute;
	top: 20px;
	left: 0;
	opacity: 1;
}

.slick-prev {
	left: -40px;
}

.slick-next {
	right: -60px;
}

.slick-prev,
.slick-next {
	top: 40%;
	width: 50px;
	height: 50px;
	z-index: 10;
}

.slide-items__textbox {
	padding-top: 5px;
	color: #000;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 11px;
}

.slide-items__textbox p {
	line-height: 1.4;
	font-size: 10px;
	letter-spacing: 0.5px !important;
}

.slide-items__textbox p:first-child {
	font-weight: bold;
}

.slide-items__textbox p:last-child {
	text-align: right;
}

@media screen and (min-width: 640px) {
	.slide-items__textbox p {
		font-size: 13px;
	}
}

@media screen and (max-width: 375px) {
	.slide-items__textbox p {
		font-size: 9px;
	}
}

.thanks_txt {
	font-size: 26px;
	font-weight: bold;
	font-family: sans-serif;
	text-align: center;
	padding: 30px 0 20px;
	color: #000;
	line-height: 1.3;
	background: #F5DAE3;
}

.sp {
	display: none;
}

@media screen and (max-width: 540px) {
	.thanks_txt {
		font-size: 16px;
	}

	.sp {
		display: block;
	}
}

.img.btn {
	margin: 0 10px 1.5em;
}

.q_bottom {
	padding: 1rem 2rem;
}


.js-csl {
	opacity: 0;
}



/************************************
   * animation
  ************************************/
.animate__vibration {
	-webkit-animation: vibration 0.15s infinite;
	animation: vibration 0.15s infinite;
}

@-webkit-keyframes vibration {

	0%,
	75%,
	100% {
		transform: translateY(0);
	}

	25%,
	50% {
		transform: translateY(2px);
	}
}

@keyframes vibration {

	0%,
	75%,
	100% {
		transform: translateY(0);
	}

	25%,
	50% {
		transform: translateY(2px);
	}
}

.animate__pudding {
	-webkit-animation: pudding 1.5s ease-in infinite;
	animation: pudding 1.5s ease-in infinite;
}

@-webkit-keyframes pudding {
	0% {
		transform: scale(1, 0.95);
	}

	45% {
		transform: scale(1, 1);
	}

	65% {
		transform: scale(1, 0.93);
	}

	100% {
		transform: scale(1, 0.95);
	}
}

@keyframes pudding {
	0% {
		transform: scale(1, 0.95);
	}

	45% {
		transform: scale(1, 1);
	}

	65% {
		transform: scale(1, 0.93);
	}

	100% {
		transform: scale(1, 0.95);
	}
}

.animate__sceneToTop {
	-webkit-animation: clipPathToTop 1.5s ease-in-out forwards;
	animation: clipPathToTop 1.5s ease-in-out forwards;
}

.animate__sceneToBottom {
	-webkit-animation: clipPathToBottom 1.5s ease-in-out forwards;
	animation: clipPathToBottom 1.5s ease-in-out forwards;
}

.animate__sceneToRight {
	-webkit-animation: clipPathToRight 1.5s ease-in-out forwards;
	animation: clipPathToRight 1.5s ease-in-out forwards;
}

.animate__sceneToLeft {
	-webkit-animation: clipPathToLeft 1.5s ease-in-out forwards;
	animation: clipPathToLeft 1.5s ease-in-out forwards;
}

.animate__sceneToBottomRight {
	-webkit-animation: clipPathToBottomRight 1.5s ease-in-out forwards;
	animation: clipPathToBottomRight 1.5s ease-in-out forwards;
}

@-webkit-keyframes clipPathToTop {
	0% {
		-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToTop {
	0% {
		-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToBottom {
	0% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToBottom {
	0% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToLeft {
	0% {
		-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@keyframes clipPathToLeft {
	0% {
		-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		opacity: 1;
	}
}

@-webkit-keyframes clipPathToBottomRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		opacity: 1;
	}
}

@keyframes clipPathToBottomRight {
	0% {
		-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		opacity: 0;
	}

	100% {
		-webkit-clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		clip-path: polygon(0 0, 100% 0, 200% 0, 0 200%);
		opacity: 1;
	}
}

/* Delay */
.animate__delay-100ms {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	transition-delay: 0.1s;
}

.animate__delay-200ms {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
	transition-delay: 0.2s;
}

.animate__delay-300ms {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	transition-delay: 0.3s;
}

.animate__delay-400ms {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	transition-delay: 0.4s;
}

.animate__delay-500ms {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	transition-delay: 0.5s;
}

.animate__delay-600ms {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	transition-delay: 0.6s;
}

.animate__delay-700ms {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
	transition-delay: 0.7s;
}

.animate__delay-800ms {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	transition-delay: 0.8s;
}

.animate__delay-900ms {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	transition-delay: 0.9s;
}

.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	transition-delay: 1s;
}


/******** Carousel ********/
.csl__box {
	padding: 1.5rem;
	background-color: #fff;
}

.csl__head {
	width: 100%;
	margin-bottom: 1.5rem;
	-moz-column-gap: 2%;
	column-gap: 2%;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3;
}

.csl__head h2 {
	margin: 1.5rem 0 0;
	font-size: 1.7rem;
	font-weight: normal;
	text-align: center;
}

.csl__head__img {
	width: 90%;
	margin: 0 auto;
}

.count_nam {
	width: 20%;
	padding: 1.5% 2%;
	text-align: center;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: #FDE5E5;
	border-radius: 50px;
}

.csl__head-number {
	width: 20%;
}

.csl__btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 300px;
}

.csl__btn-wrap>* {
	width: calc((100% - 2rem) / 3);
	/* gapが1rem×2＝2rem */
}

.p5 {
	display: block;
}

.csl__checkbox {
	transition: all .2s;
	display: block;
	border: none;
	cursor: pointer;
}

.csl__checkbox input[type='checkbox'] {
	display: none;
}

.csl__btn-inner:has(.csl__checkbox img:hover) {
	border: #E02961 solid 2px;
	border-radius: .7rem;
	padding: .1rem;
}

.csl__prev-btn {
	margin-top: 0.5rem;
	padding: 0.5rem;
	width: 20%;
	background-color: #efefef;
	font-size: 1.2rem;
}

@media screen and (max-width:640px) {
	.csl__btn-wrap {
		height: 45vw;
	}
}

/******** / Carousel ********/

/******** Warning contents ********/
.warning-contents {
	padding: 4rem 0 2rem;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
}

.warning-contents__title {
	margin-bottom: 1rem;
	font-weight: bold;
}

/******** / Warning contents ********/

/************************************
 * JS
************************************/
/******** Carousel ********/
.js-csl {
	opacity: 0;
}

.js-csl__dynamic-box-finished {
	display: none;
}

/******** / Carousel ********/


/*section.line_dtl*/
.line_dtl_txt {
	color: #333;
	font-size: 14px;
	line-height: 1.5;
	margin: 10px 10px 0;
	padding: 0 20px 20px 20px;
	text-align: center;
}

@media screen and (max-width:540px) {
	.line_dtl_txt {
		font-size: 12px 12px 0;
	}
}


/*footer.page-footer*/
.page-footer {
	padding: 2rem 1rem;
	text-align: center;
	font-size: 1rem;
	color: #fff;
	background-color: #41544d;
}

.page-footer a {
	margin: 0 0.5rem;
}


/******** カード ********/
.sec-worries__row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	-moz-column-gap: 1rem;
	     column-gap: 1rem;
	margin-bottom: 1.7rem;
}

.sec-worries__item {
	min-height: 10rem;
	position: relative;
	cursor: pointer;
}

.sec-worries__item .flip-card {
	top: 0;
}

.flip-card {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	background-color: transparent;
	perspective: 500px;
	/* 奥行き */
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	top: 0;
	left: 0;
}

.flip-card-front img,
.flip-card-back img {
	width: 100%;
	height: auto;
}

.js-flip-card.js-active .flip-card-inner {
	transform: rotateY(180deg);
}

.js-flip-card .flip-card-inner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}

.js-flip-card .flip-card-inner:hover::after {
	opacity: 1;
}

.flip-card-back {
	transform: rotateY(180deg);
	/* 裏面は初期状態で180度回転 */
}

/* ホバー時に白をかぶせる */
.flip-card-front::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.flip-card-front:hover::after {
	opacity: 1;
	border: solid 2px #be3244;
	border-radius: 5px;
}

/******** / カード ********/

/******** to_next_btn ********/
.to_next_btn {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 240px;
	padding: 10px 25px;
	color: #FFF;
	font-size: 20px;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	background: #ff5067;
	border-radius: 100px;
	border-bottom: solid 5px #be3244;
	width: 230px;
}

.to_next_btn:hover {
	border-bottom: solid 2px #be3244;
	transform: translateY(3px);
}

@media screen and (min-width: 768px) {
	.to_next_btn {
		width: 300px;
		max-width: 100%;
		font-size: 24px;
		padding: 15px 30px;
	}
}

/******** /to_next_btn ********/


/* ポップアップ */
.js-fixed {
	position: fixed;
	position: -webkit-fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	left: 0%;
	right: 0%;
	margin: auto;
}

.js-bg_color {
	background-color: #FBD3D8;
	margin-top: -1px;
	padding: 0px 20px 20px;
	border-radius: 0px 0px 10px 10px;
	text-align: center;
}

.js-overlay {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	position: fixed;
	z-index: 1000;
	left: 0;
}


.js-modal_innner {
	width: 90%;
	max-width: 600px;
	display: block;
	position: fixed;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	z-index: 2000;

}

.js-modal img.js-modal_popup-img {
	width: 100%;
	border-radius: 10px 10px 0px 0px;
}

.js-modal_close {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #333;
	border: 2px solid #ffffff;
	z-index: 1000;
	right: 0;
	top: 0;
	margin-top: -15px;
	margin-right: -15px;
}


.js-modal_close:before,
.js-modal_close:after {
	content: "";
	display: block;
	position: absolute;
	background: #fff;
	z-index: 3000;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 25px;
}

.js-modal_close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.js-modal_close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.is-animated {
	-webkit-animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	        animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	position: fixed;
	inset: 0;
	margin: auto;
	top: 12.5%;
}

@media screen and (max-width: 30em) {
	.is-animated {
		top: 25%;
	}
}

@-webkit-keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}


/************************************
 * JS
************************************/
/******** Modal ********/
.js-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
}

.js-modal__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100dvh;
	background-color: rgb(0, 0, 0, .75);
	padding: 2rem;
}

.js-modal__content {
	width: 100%;
	max-width: 640px;
	border-radius: 1rem;
	position: relative;
	-webkit-animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	position: relative;

}

.js-modal__content--container {
	border: 5px solid rgb(0, 0, 0, .50);
	border-radius: 3%;
	overflow: hidden;
}

.js-modal__content .js-modal__main-img {
	border-radius: 1rem;
}

.js-modal__close-btn {
	cursor: pointer;
}

.js-modal__content--btnbox {
	background: #fff;
	;
	text-align: center;
	padding-bottom: 20px;
}

.js-modal__age-btn {
	width: 45%;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
}



/************************************
 * JS コンテンツ切り替え（yang or adult）
************************************/
.js-page-wrap {
	display: none;
}


.js-yang-page {
	display: block !important;
}

.js-adult-page {
	display: block !important;
}

.personals p {
	margin: 0 20px 0 0;
	text-align: right;
	font-size: 12px;
}
