@charset "UTF-8";
/* CSS Document */


* {
	box-sizing: border-box;
}

/*PC・SP表示非表示*/
.pc {
	display: none;
}

@media screen and (min-width:640px) {
	.pc {
		display: inline-block;
	}

	.sp {
		display: none;
	}
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	background: transparent;
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	outline: 0;
	text-align: left;
	vertical-align: baseline;
}

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


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

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

body {
	background: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	color: #111;
	font-weight: 500;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;

	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
}

/*共通*/
a {
	color: #0005dc;
	text-decoration: underline;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

video {
	border: none;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
	outline: none;
}

input {
	background-color: #fff;
}


/*レイアウト*/
.header,
.article,
.footer {
	margin: 0 auto;
	width: 100%;
	max-width: 640px;
}

.article {
	background: #fff;
	padding: 0;
}

.section {
	margin: 50px 0 0;
	padding: 0;
}

@media screen and (min-width:640px) {
	.section {
		margin: 70px 0 0;
	}
}


/*header.header*/
.header {
	background: #12273f;
	position: relative;
}

p.pr {
	color: #000000;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	margin: 0;
	text-align: right;
	position: absolute;
	top: 10px;
	left: 18px;
}

@media screen and (min-width:640px) {
	p.pr {
		font-size: 14px;
	}
}

@media screen and (max-width:375px) {
	p.pr {
		font-size: 11px;
	}
}


/*article.article*/
article {
	background: #fff;
	margin: 0 auto;
	padding: 0 0 50px;
	width: 100%;
	max-width: 640px;
}


/*section.questionnaire*/
.h2 {
	text-align: center;
	font-size: 35px;
	letter-spacing: 5px;
	font-weight: bold;
	color: #dc1b42;
	background-color: #fff;
	padding: 30px 0 0;
	margin-bottom: -20px;
}

section.questionnaire {
	background: #142c48;
	padding: 10px;
}

.questionnaire div.sheet {
	background: #fff;
	padding: 12px 12px 40px;
}

@media screen and (min-width:640px) {
	.questionnaire {
		padding: 15px;
	}

	.questionnaire div.sheet {
		padding: 20px 20px 50px;
	}
}

.que_num {
	margin: 30px 10px 0;
	width: 15%;
	display: inline-block;
	vertical-align: top;
}

.que_num.one {
	margin: 0;
}

.que_tx {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 10px;
}

@media screen and (max-width: 30em) {
	.que_num {
		width: 20%;
	}
}

@media screen and (min-width:640px) {
	.que_tx {
		font-size: 22px;
		margin-top: 10px;
	}
}

.questionnaire li {
	color: #111;
	font-size: 16px;
	line-height: 1.8;
	margin: 10px 0 0;
	align-items: center;
	justify-content: space-between;
}

.graph__short label {
	width: 50%;
}

.graph__long label {
	width: 100%;
}

.questionnaire input {
	display: none;
}

.questionnaire input+span {
	cursor: pointer;
	display: inline-block;
	margin: 0 .2em;
	padding: 0 0 0 2em;
	position: relative;
	line-height: 1.6;
}

.questionnaire input+span::before {
	background: #fff;
	border: 2px solid #969696;
	border-radius: 3px;
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.questionnaire input:checked+span::after {
	border-left: 4px solid #FF0000;
	border-bottom: 4px solid #FF0000;
	content: "";
	display: block;
	margin-top: -.2em;
	width: 1em;
	height: .3em;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width:640px) {
	.questionnaire li {
		font-size: 18px;
		margin: 15px 0 0;
		line-height: 1.8;
	}
}

.questionnaire li div.graph {
	width: 50%;
	text-align: right;
}

div.graph.checked p {
	background: #ffc819;
}

.thanks {
	background-color: #fff;
	padding: 20px 0 50px;
}

.thanks p,
.thanks p span {
	font-weight: bold;
	line-height: 1.6;
}

.thanks p {
	margin-top: 20px;
	text-align: center;
}

p.thanks__txt,
p.thanks__txt span {
	font-size: 20px;
}

p.thanks__txts,
p.thanks__txts span {
	font-size: 18px;
}

div.thanks p span.marker_y {
	background: linear-gradient(transparent 60%, #ffff00 60% 93%, transparent 93%);
	padding: 0 3px 3px;
}

div.thanks p span.green {
	color: #19cd64;
}

@media screen and (min-width:640px) {

	p.thanks__txt,
	p.thanks__txt span {
		font-size: 24px;
	}

	p.thanks__txts,
	p.thanks__txts span {
		font-size: 22px;
	}
}

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

	p.thanks__txts,
	p.thanks__txts span {
		font-size: 17px;
	}
}


/*section.select*/
.select {
	border: solid 2.5vw;
	border-image: linear-gradient(to right, #47499c, #cd3367, #f3bd62) 1;
}

.card {
	max-width: 750px;
	width: 100%;
	background: #fff;
	/*padding: 10px;*/
	padding: 0 2.5vw 0;
}

.card_q5 {
	padding: 0 20px 0;
}

.card .title {
	font-size: 4.6vw;
	/*font-weight: 500;*/
	font-weight: bold;
	line-height: 1.2;
	margin: 10px 0 -15px 0;
}

label.box {
	padding: 20px 10px 20px 60px;
	display: flex;
	border-radius: 5px;
	border: 3px solid #ccc;
	cursor: pointer;
	transition: all 0.25s ease;
	font-size: 4.8vw;
	margin-bottom: -25px;
}

label.box span {
	font-size: 12px;
}

.caution {
	font-size: 12px;
	text-align: right;
	margin-top: 10px;
}

.card_q1 label.box:last-child,
.card_q2 label.box:last-child,
.card_q3 label.box:last-child,
.card_q4 label.box:last-child,
.card_q5 label.box:last-child {
	margin-bottom: 0;
}

input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="radio"] {
	position: relative;
	width: 30px;
	height: 30px;
	border: 4px solid #dc1b42;
	border-radius: 50%;
	vertical-align: -2px;
	top: 48px;
	left: 10px;
}

input[type="radio"]:checked {
	border: 4px solid #dc1b42;
}

input[type="radio"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #dc1b42;
	border: 2px solid #dc1b42;
	content: '';
}

input[type="radio"]:checked+label.box {
	border: 3px solid #dc1b42;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="checkbox"] {
	position: relative;
	width: 30px;
	height: 30px;
	border: 4px solid #dc1b42;
	border-radius: 50%;
	vertical-align: -2px;
	top: 50px;
	left: 10px;
}

input[type="checkbox"]:checked {
	border: 4px solid #dc1b42;
}

input[type="checkbox"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #dc1b42;
	border: 2px solid #dc1b42;
	content: '';
}

input[type="checkbox"]:checked+label.box {
	border: 3px solid #dc1b42;
}

.card__p {
	text-align: right;
	font-size: 12px;
	padding-top: 20px;
	line-height: 1.5;
}

.sp_block {
	display: block;
}

@media screen and (min-width:640px) {
	.select {
		border: solid 20px #0c223c;
	}

	.card {
		padding: 20px 20px 0;
	}

	.sp_block {
		display: none;
	}
}

@media screen and (min-width:520px) {
	.card .title {
		font-size: 21px;
	}

	label.box {
		font-size: 20px;
	}

	label.box:hover {
		border: 3px solid #dc1b42;
	}
}


/*section.btn*/
section.btn {
	background: linear-gradient(to right, #45479b, #d9325e, #f4ac5e);
	padding: 10px 0 0;
}

.btn_img {
	width: 96%;
	margin: 15px auto 0;
}

p.btn_aft {
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	margin: 15px 0 0;
	text-align: center;
	line-height: 1.6;
	margin-bottom: 20px;
}

.green {
	font-weight: bold;
}

@media screen and (min-width:640px) {
	section.btn {
		padding: 10px 0 0;
	}

	.btn_img {
		width: 90%;
		margin: 20px auto 0;
	}

	p.btn_aft {
		font-size: 25px;
		margin: 30px 0 0;
	}
}


/*section.clinic*/
.clinic {
	background: #fff;
	padding-top: 30px;
	padding-bottom: 30px;
}


/*setion.line_dtl 主なリスクについて*/
.line_dtl {
	background: linear-gradient(to right, #45479b, #d9325e, #f4ac5e);
	margin: 0;
	padding: 20px 0 40px 0;
	letter-spacing: 0.3rem;
}

.line_dtl_ttl {
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
}

.line_dtl_txt {
	color: #fff;
	font-size: 12px;
	line-height: 1.4;
	margin: 20px 5px 0;
	text-align: center;
}


/*footer.footer*/
.footer {
	background: #000;
	display: flex;
	justify-content: center;
	padding: 20px 12px 30px;
}

.footer p {
	display: inline-block;
	margin: 0;
	padding: 0 10px;
}

.footer p.b_left {
	border-left: 1px solid #fff;
}

.footer a {
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	text-decoration: none;
}

@media screen and (min-width:640px) {
	.footer a {
		font-size: 16px;
	}
}

@media screen and (max-width:375px) {
	.footer a {
		font-size: 12px;
	}
}

.message {
	text-align: center;
	background: #fff;
	padding-top: 30px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: bold;
}


/******** MAP section ********/
.js-csl_map-btn {
	background-color: #fff;
}

.js-content_map {
	display: none;
}

.sec-map__list {
	padding: 1.5rem;
}

.sec-map__list-item:not(:last-child) {
	margin-bottom: 1.5rem;
}

.sec-map__list-item-header {
	display: block;
	padding: 2rem 1.2rem;
	background-color: #DC1941;
	border-radius: 4px;
	position: relative;
	color: #fff;
	text-align: center;
	font-size: 2rem;
}

@media (hover: hover) {
	.sec-map__list-item-header:hover {
		opacity: 0.8;
		transition: opacity 0.2s;
	}
}

.sec-map__list-item-header::after {
	width: 1.3rem;
	height: 1.3rem;
	content: '';
	mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4gPHN2ZyBpZD0ibWRpLXBsdXMtbWludXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUwIDUwIj4gICA8cGF0aCBkPSJNMjEuNDQsMy42M3YxNy44MUgzLjYzdjcuMTJoMTcuODF2MTcuODFoNy4xMnYtMTcuODFoMTcuODF2LTcuMTJoLTE3LjgxVjMuNjNoLTcuMTIiLz4gPC9zdmc+) center / 100% auto no-repeat;
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translateY(-50%);
}

.sec-map__list-item-header input[type='checkbox'] {
	display: none;
}

.sec-map__list-item-body {
	height: 0;
	padding: 0 1rem;
	overflow: hidden;
	transition: padding 0.3s;
}

/* for when opened */
.sec-map__list-item-header:has(input[type='checkbox']:checked)+.sec-map__list-item-body {
	height: auto;
	padding: 1.5rem 1rem 0.5rem 1rem;
	transition: padding 0.3s;
}

.sec-map__list-item-header:has(input[type='checkbox']:checked)::after {
	mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4gPHN2ZyBpZD0ibWRpLXBsdXMtbWludXMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDUwIDUwIj4gICA8cmVjdCB4PSIzLjYzIiB5PSIyMS40NCIgd2lkdGg9IjQyLjc1IiBoZWlnaHQ9IjcuMTIiLz4gPC9zdmc+) center / 100% auto no-repeat;
}

/* / for when opened */
.sec-map__list-sub-item {
	margin-bottom: 3em;
}

.sec-map__list-sub-item-header {
	padding: 2rem 0;
	margin-bottom: 1rem;
	border-top: 1px solid #222;
	border-bottom: 1px solid #222;
	text-align: center;
	font-size: 2rem;
}

.sec-map__list-sub-item-table {
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

.sec-map__list-sub-item-table th,
.sec-map__list-sub-item-table td {
	padding: 0.3rem 0;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
	line-height: 1.3;
}

.sec-map__list-sub-item-table th {
	width: 70px;
}

.sec-map__list-sub-item-iframe {
	width: 100%;
	border: none;
}


.table_box--btn {
	width: 100%;
	padding: 10px;
	background-color: #c5efc2;
	color: #111;
	font-weight: bold;
	display: block;
	justify-content: center;
	text-decoration: none;
	border-radius: 100vh;
	font-size: 1.9rem;
	letter-spacing: 0;
}

.table_box--btn:hover {
	opacity: .5;
}

.table_box--btn figure {
	display: flex;
	justify-content: center;
	align-items: center;
}

.table_box--btn img {
	width: 25px;
	height: auto;
	margin-right: 10px;
}

.table_box--btn span {
	font-weight: bold;
}

@media screen and (max-width:640px) {
.table_box--btn {
	font-size: 4.5vw;
}
}

/******** / MAP section ********/

.cta_wrap {
	background-color: #c4efc2;
	border-radius: 0px 0px 1.2rem 1.2rem;
}

.features-list {
	list-style: none;
	margin: 1rem 0;
	border-top: 1px dashed #aaa;
}

.features-list__item {
	text-align: left;
	padding: 8px 0;
	font-size: 1.6rem;
	line-height: 1.5;
	border-bottom: 1px dashed #aaa;
}