@charset "utf-8";

/* override */
@media screen and (min-width: 768px) {
	.secContentArea {
		padding-bottom: 60px;
	}
	.promomats > span {
		bottom: -50px;
	}
	.attentionWrap {
		/*  display: none;*/
		margin-top: -65px;
	}
}

@media screen and (max-width: 767px) {
	.attentionWrap {
		display: none;
	}
	.attentionWrap_sp {
		display: block !important;
	}
	.promomats_sp {
		display: block;
	}
}

/* 共通 */
.spCon {
	display: none;
}

.tac {}

.tac > span {
	display: block;
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.spCon {
		display: block;
	}
	.tac > span {
		font-size: 13px;
	}
	.secContentArea {
		padding: 10px 0;
	}
}

.anchor {
	position: relative;
}

.anchor .inner_anchor {
	position: absolute;
}

@media screen and (max-width: 767px) {
	.anchor .inner_anchor {
		top: -50px;
	}
}

/* ページレイアウト */
html.modalOpen {
	overflow: hidden;
}

body {
	position: relative;
}

body.modalOpen {
	position: fixed;
	left: 0;
}

.leadArea.wrapper {
	padding-right: 50px;
	padding-left: 50px;
	background: transparent url(../img/bg_lead.png) 114px bottom no-repeat;
	background-size: 292px auto;
}

.leadAreaTxt {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	padding-left: 453px;
	height: 280px;
	color: #222;
	font-size: 16px;
	line-height: 1.625;
}

.boxSkin02 {
	overflow: hidden;
	padding: 78px 0 90px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, .14);
}

.sectContent {
	padding: 0 50px;
}

.sectContent:first-child {
	margin-bottom: 70px;
}

.sectContentTitle {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	padding-top: 25px;
	color: #0005a2;
	font-size: 35px;
	font-weight: 700;
}

.sectContentTitle.know {
	margin-bottom: 30px;
}

.sectContentTitle.careful {
	margin-bottom: 35px;
}

.sectContentTitle::after {
	display: inline-block;
	margin-top: -25px;
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}

.sectContentTitle.know::after {
	margin-left: 10px;
	width: 109px;
	height: 96px;
	background-image: url(../img/bg_know.png);
}

.sectContentTitle.careful::after {
	margin-left: -5px;
	width: 119px;
	height: 95px;
	background-image: url(../img/bg_careful.png);
}

.listQuestion {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	width: 100%;
}

.listQuestion li {
	flex-basis: calc((100% - 26px) / 3 - 0.01px);
	max-width: calc((100% - 26px) / 3 - 0.01px);
	min-height: 121px;
}

.listQuestion li:not(:nth-of-type(-n + 3)) {
	margin-top: 13px;
}

.listQuestion li:not(:nth-of-type(3n + 1)) {
	margin-left: 13px;
}

.listQuestion a {
	display: flex;
	position: relative;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	padding: 31px 38px 30px 13px;
	width: 100%;
	height: 100%;
	border: 2px solid #dee6ff;
	background-color: #fff;
	color: #1d2088;
	font-feature-settings: "palt";
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .025em;
	cursor: pointer;
}

.listQuestion a:hover {
	background-color: #f4f5ff;
	color: #0005a2;
}

.listQuestion a::before,
.listQuestion a::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 13px;
	width: 21px;
	height: 3px;
	background-color: #1d2088;
	content: "";
}

.listQuestion a::before {
	transform: translateY(-50%);
}

.listQuestion a::after {
	transform: translateY(-50%) rotate(90deg);
}

/* モーダル */
.modalContent {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,.3);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
	z-index: -1;
	overflow-y: auto;
}

.scrollWrapper {
	padding: 10px;
}

.modalContent.modalOpen {
	opacity: 1;
	pointer-events: all;
	z-index: 9999;
}

.modalContentInner {
	display: none;
	position: relative;
	padding: 80px 26px 36px;
	width: 860px;
	min-height: 562px;
	border: 4px solid #dee6ff;
	background-color: #fff;
	font-feature-settings: "palt";
}

.modalContentInner.modalOpen {
	display: block;
	z-index: 1;
}

.modalContentNavi {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	position: absolute;
	bottom: 36px;
	left: 26px;
	width: calc(100% - 52px);
}

.modalContentNaviItem {
	flex-basis: auto;
}

.modalContentNaviItem.next {
	margin-left: auto;
}

.modalContentNaviLink {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	height: 100%;
	min-height: 44px;
	color: #1d2088;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3571;
	letter-spacing: .13em;
	cursor: pointer;
}

.prev .modalContentNaviLink {
	padding-left: 50px;
}

.next .modalContentNaviLink {
	padding-right: 50px;
}

.modalContentNaviLink::after {
	display: block;
	position: absolute;
	top: 50%;
	width: 24px;
	height: 44px;
	background: transparent url(../img/icn_arrow_l.svg) 0 0 no-repeat;
	background-size: contain;
	transform: translateY(-50%);
	content: "";
}

.prev .modalContentNaviLink::after {
	left: 0;
	transform: scale(-1,1) translateY(-50%);
}

.next .modalContentNaviLink::after {
	right: 0;
}

.modalContentNaviLink span {
	text-align: left;
}

.next .modalContentNaviLink span {
	align-self: flex-end;
}

.modalClose {
	position: absolute;
	top: 26px;
	right: 26px;
	width: 40px;
	height: 40px;
}

.modalClose a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
	cursor: pointer;
}

.modalClose a::before,
.modalClose a::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #1d2088;
	content: "";
}

.modalClose a::before {
	transform: rotate(-45deg);
}

.modalClose a::after {
	transform: rotate(45deg);
}

/* Q&A */

.question {
	margin-bottom: 54px;
	color: #1d2088;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4285;
	letter-spacing: .13em;
	text-align: center;
}

.answer {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
}

.answerBody {
	padding-left: 60px;
	flex-basis: 460px;
	max-width: 460px;
}

.answerTitle {
	margin-bottom: 20px;
	width: 100%;
	color: #1d2088;
	font-size: 29px;
	font-weight: 700;
	line-height: 1.3793;
}

.answerText {
	width: 100%;
	color: #222;
	font-size: 17px;
	line-height: 1.5882;
}

.answerTextSmall {
	font-size: 14px;
}

.answerTextCaution {
	width: 100%;
	margin-top: 8px;
	color: #1d2088;
	font-size: 15px;
}

.answerTextCaution a {
	position: relative;
}

.answerTextCaution a span {
	display: inline-block;
	margin-right: 20px;
	border-bottom: 1px solid #1d2088;
}

.answerImg {
	flex-grow: 1;
}

#q01-01 .answerImg {
	padding-left: 52px;
}

#q01-01 .answerImg img {
	margin-top: -14px;
	width: 240px;
}

#q01-02 .answerImg {
	padding-left: 67px;
}

#q01-02 .answerImg img {
	margin-top: -8px;
	width: 206px;
}

#q01-03 .answerImg {
	padding-left: 61px;
}

#q01-03 .answerImg img {
	width: 189px;
}

#q01-04 .answerImg {
	padding-left: 38px;
}

#q01-04 .answerImg img {
	margin-top: 7px;
	width: 247px;
}

#q01-05 .answerImg {
	padding-left: 47px;
}

#q01-05 .answerImg img {
	margin-top: 18px;
	width: 243px;
}

#q01-06 .answerImg {
	padding-left: 37px;
}

#q01-06 .answerImg img {
	margin-top: 10px;
	width: 260px;
}

#q02-01 .answerImg {
	padding-left: 30px;
}

#q02-01 .answerImg img {
	margin-top: 11px;
	width: 254px;
}

#q02-02 .answerImg {
	padding-left: 27px;
}

#q02-02 .answerImg img {
	margin-top: 7px;
	width: 276px
}

#q02-03 .answerImg {
	padding-left: 45px;
}

#q02-03 .answerImg img {
	margin-top: 16px;
	width: 257px;
}

.iconExternal::after {
	display: block;
	position: absolute;
	top: 2px;
	right: 0;
	margin-left: 4px;
	width: 15px;
	height: 15px;
	background: transparent url(/eve/common/img/icon_window.svg) 0 0 no-repeat;
	background-size: contain;
	content: "";
}

.borderBox {
	display: inline-block;
	margin-top: 9px;
	padding: 6px 18px 4px;
	border: 3px solid #dee6ff;
}

.listArrow {
	margin-top: 4px;
	width: 100%;
}

.listArrow li {}

.listArrow a {
	color: #1d2088;
	font-size: 15px;
	letter-spacing: .13em;
}

.listArrow a::after {
	display: inline-block;
	position: relative;
	top: -1px;
	margin-left: 8px;
	width: 6px;
	height: 9px;
	background: transparent url(../img/icn_arrow.svg) 0 0 no-repeat;
	background-size: contain;
	vertical-align: middle;
	content: "";
}

@media screen and (max-width: 767px) {
	.leadArea.wrapper {
		padding: calc(40% + 20px) 25px 18px;
		background-position: center top;
		background-size: 45.625% auto;
	}

	.leadAreaTxt {
		display: block;
		padding-left: 0;
		height: auto;
		font-size: 13px;
		font-feature-settings: "palt";
		line-height: 1.3846;
	}

	.boxSkin02 {
		padding-top: 45px;
		padding-bottom: 50px;
	}

	.sectContent {
		padding: 0 15px;
	}

	.sectContent:first-child {
		margin-bottom: 50px;
	}

	.sectContentTitle {
		display: block;
		padding-top: 0;
		font-size: 21px;
		line-height: 1.0476;
		text-align: center;
	}

	.sectContentTitle.know {
		margin-bottom: 25px;
	}

	.sectContentTitle.careful {
		margin-bottom: 30px;
	}

	.sectContentTitle::after {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.sectContentTitle.know::after {
		margin-top: 36px;
		margin-left: auto;
		padding-top: 42.037%;	/* 227 / 540 */
		width: 47.5925%;	/* 257 / 540 */
		height: auto;
	}

	.sectContentTitle.careful::after {
		margin-top: 28px;
		margin-left: auto;
		padding-top: 40.5555%;	/* 219 / 540 */
		width: 51.1111%;	/* 276 / 540 */
		height: auto;
	}

	.listQuestion {
		display: block;
	}

	.listQuestion li {
		display: flex;
		max-width: none;
		min-height: 0;
	}

	.listQuestion li:not(:nth-of-type(-n + 3)) {
		margin-top: 0px;
	}

	.listQuestion li:not(:nth-of-type(3n + 1)) {
		margin-left: 0px;
	}

	.listQuestion li:not(:last-child) {
		margin-bottom: 20px;
	}

	.listQuestion a {
		padding: 10px 36px 8px 13px;
		min-height: 60px;
		font-size: 13px;
		line-height: 1.4615;
		letter-spacing: .045em
	}

	.listQuestion a::before,
	.listQuestion a::after {
		right: 10px;
		width: 15px;
		height: 2px;
	}

	.scrollWrapper {
		width: 100%;
	}

	.modalContentInner {
		padding: 39px 28px 70px;
		width: 100%;
		min-height: 485px;
		border-width: 2px;
	}

	.modalContentNavi {
		bottom: 15px;
		left: 5px;
		width: calc(100% - 10px);
	}

	.modalContentNaviItem {
		flex-basis: 50%;
	}

	.modalContentNaviItem+.modalContentNaviItem {
		border-left: 1px solid #1d2088;
	}

	.modalContentNaviLink {
		min-height: 0;
		font-size: 10px;
		font-weight: 500;
		line-height: 1.25;
		letter-spacing: 0;
	}

	.prev .modalContentNaviLink {
		padding-right: 10px;
		padding-left: 13px;
	}

	.next .modalContentNaviLink {
		padding-right: 13px;
		padding-left: 10px;
	}

	.modalContentNaviLink::after {
		width: 8px;
		height: 14px;
		background-position: 0 center;
	}

	.modalClose {
		top: 13px;
		right: 13px;
		width: 20px;
		height: 20px;
	}

	.modalClose a::before,
	.modalClose a::after {
		height: 2px;
	}

	/* Q&A */
	.question {
		margin-bottom: 0;
		font-size: 13px;
		line-height: 1.497;
		text-align: center;
		letter-spacing: .025em;
	}

	.question span {
		display: inline-block;
		text-align: left;
	}

	.answer {
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.answerBody {
		padding-left: 0;
		flex-basis: auto;
		width: 100%;
		max-width: none;
	}

	.answerTitle {
		margin-bottom: 10px;
		font-size: 17px;
		line-height: 1.2;
	}

	.answerText {
		font-size: 11px;
		line-height: 1.6363;
	}

	.answerTextSmall {
		font-size: 11px;
	}

	.answerTextCaution {
		margin-top: 14px;
		font-size: 10px;
	}

	.answerTextCaution a {
		line-height: 1.5;
	}

	.answerImg {
		margin-bottom: 17px;
		flex-grow: 0;
		flex-basis: auto;
		width: 100%;
		min-height: 1px;
		text-align: center;
	}

	#q01-01 .answerImg,
	#q01-02 .answerImg,
	#q01-03 .answerImg,
	#q01-04 .answerImg,
	#q01-05 .answerImg,
	#q01-06 .answerImg,
	#q02-01 .answerImg,
	#q02-02 .answerImg,
	#q02-03 .answerImg {
		padding-left: 0px;
	}

	#q01-01 .answerImg img,
	#q01-04 .answerImg img {
		margin-top: 32px;
		width: 58.75%;	/* 282 / 480 */
	}

	#q01-02 .answerImg img {
		margin-top: 10px;
		width: 52.9166%;	/* 254 / 480 */
	}

	#q01-03 .answerImg img {
		margin-top: 32px;
		width: 51.25%; /* 246 / 480 */
	}

	#q01-04 .answerImg img {
		margin-top: 32px;
		width: 68.75%;	/* 330 / 480 */
	}

	#q01-05 .answerImg img {
		margin-top: 31px;
		width: 72.2916%;	/* 347 / 480 */
	}

	#q01-06 .answerImg img {
		margin-top: 8px;
		width: 68.3333%;	/* 328 / 480 */
	}

	#q02-01 .answerImg img {
		margin-top: 5px;
		width: 67.9166%;	/* 326 / 480 */
	}

	#q02-02 .answerImg img {
		margin-top: 21px;
		width: 79.7916%;	/* 383 / 480 */
	}

	#q02-03 .answerImg img {
		margin-top: 16px;
		width: 71.25%;	/* 342 / 480 */
	}

	.iconExternal::after {
		width: 11px;
		height: 10px;
	}

	.borderBox {
		display: block;
		margin-top: 7px;
		padding: 2px 6px 1px;
		border-width: 2px;
	}

	.listArrow {
		margin-top: 0;
	}

	.listArrow li {
		line-height: 1.5;
	}

	.listArrow a {
		font-size: 10px;
	}

	/* ボタンリスト */
	.liBtn {
		margin-top: 24px;
	}
}

