@charset "utf-8";

input[type="text"].sim-input--text {
	width: 150px;
	border: 1px solid #B0B0B0;
	border-radius: 5px;
	text-align: right;
	font-weight: bold;
}
.sim-select {
	width: 150px;
	height: auto;
	border: 1px solid #B0B0B0;
	border-radius: 5px;
	text-align: right;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
	color: inherit;
}

input[type="text"].sim-input--text::placeholder {
	color: #000;
	opacity: 1;
}

/* IE */
input[type="text"].sim-input--text:-ms-input-placeholder {
	color: #000;
	opacity: 1;
}

/* Edge */
input[type="text"].sim-input--text::-ms-input-placeholder {
	color: #000;
	opacity: 1;
}

input[type="checkbox"].sim-input--head-checkbox + span {
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding: 10px 0 0 42px;
	box-sizing: border-box;
	min-height: 35px;
	line-height: 100%;
	font-weight: bold;
	font-size: 16px;
}

input[type="checkbox"].sim-input--head-checkbox + span:after {
	position: absolute;
	top: 0em;
	left: 0.5em;
	display: block;
	content: '';
	transform : scaleX(0) scaleY(0) rotate(45deg);
	border-right: 8px solid #C4121A;
	border-bottom: 8px solid #C4121A;
	transform-origin: center center;
	width: 18px;
	height: 30px;
	line-height: 100%;
}

input[type="checkbox"].sim-input--head-checkbox + span:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 35px;
	height: 35px;
	border: 3px solid #000;
	background: #fff;
	box-sizing: border-box;
	line-height: 100%;
}

input[type="checkbox"].sim-input--head-checkbox:checked + span:after {
	transform : scaleX(1) scaleY(1) rotate(45deg);
}

input[type="radio"].sim-input--radio {
	display: none;
}

input[type="radio"].sim-input--radio + span {
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding: 0.2em 0 0 35px;
	min-height: 24px;
	line-height: 100%;
	font-weight: normal;
}

input[type="radio"].sim-input--radio + span:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 24px;
	height: 24px;
	border: 2px solid #000;
	border-radius: 12px;
	box-sizing: border-box;
	background: #FFF;
	vertical-align: top;
}

input[type="radio"].sim-input--radio:checked + span:before {
	border-color: #6A2F00;
}

input[type="radio"].sim-input--radio:checked + span:after {
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	display: block;
	content: '';
	width: 16px;
	height: 16px;
	border-radius: 8px;
	box-sizing: border-box;
	background: #6A2F00;
	vertical-align: top;
}

.radio-list {
	margin-top: 10px;
}

.radio-list li {
	display: inline-block;
	margin-right: 35px;
}

.radio-list--vertical li {
	display: block;
	margin: 10px 0 0 0;
}

.radio-list li:last-child {
	margin-right: 0;
}

.icon-attention {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	margin-right: 22px;
	background: #FFFFFF;
	line-height: 40px;
	font-size: 34px;
	font-weight: bold;
	color: #6A2F00;
}

.icon-help {
	display: inline-flex;
	margin-top: -0.2em;
	justify-content: center;
	vertical-align: middle;
	align-items: center;
	width: 26px;
	height: 26px;
	border-radius: 13px;
	background: #B5B5B5;
	margin-left: 22px;
	text-decoration: none;
	text-align: center;
	font-size: 15px;
	cursor: pointer;
	color: #FFF;
}

.icon-help:active {
	color: #FFF;
}

.icon-sim-blank {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-left: 5px;
	background: url(../images/common/icon_blank_sim.svg) no-repeat 0 0;
	vertical-align: middle;
}

.sim-max-donation {
	display: block;
	background: #FFF;
	border: 3px solid #C4121A;
	border-radius: 10px;
	padding: 20px 40px;
	line-height: 200%;
	text-decoration: none;
	text-align: left;
	font-size: 14px;
}

.sim-max-donation .sim-max-donation-title {
	margin-bottom: 1em;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}

.localPage__head .sim-max-donation {
	margin-top: 20px;
}

#sim .sim-result .sim-result-body .sim-max-donation {
	margin: 40px 0;
}

.sim-head-note .sim-max-donation {
	margin: 20px 0;
}


#sim {
	margin-bottom: 70px;
}

#sim.sim-top {
	margin-bottom: 0;
}

#sim h3 {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	line-height: 140%;
	font-size: 28px;
	font-weight: bold;
	color: #6A2F00;
}

#sim h3 span:first-child {
	width: 66px;
}

#sim h4 {
	font-size: 25px;
	font-weight: bold;
	color: #6A2F00;
}

#sim .sim-text-heading {
	margin-bottom: 1em;
	font-weight: bold;
}

/*-----------------------------------------
modal-window
-----------------------------------------*/
.modal-window {
	transition: all 0.3s ease;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	background: rgba(0,0,0,0.8);
}

.modal-window .modal-content-box {
	position: absolute;
	background: #F8F8F8;
	width: 820px;
	box-sizing: border-box;
}

.modal-window .modal-content-box .modal-content-box-title {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: bold;
	line-height: 140%;
	color: #6A2F00;
}

.modal-window .modal-content-box .modal-content-box-title span {
	margin-right: 15px;
}

.modal-window .modal-content-box .modal-content-box-body {
	position: relative;
	padding: 30px 60px 50px 60px;
	box-sizing: border-box;
	line-height: 157%;
	font-size: 14px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}

.modal-window .modal-content-box .modal-content-box-body p {
	margin-bottom: 1em;
}

.modal-window .modal-content-box .modal-content-box-body p:last-child {
	margin-bottom: 0;
}

.modal-window .modal-content-box .modal-content-box-body .modal-content-box-body-figure img {
	width: 100%;
}

.modal-window .modal-content-box .modal-content-box-body .modal-content-box-body-close-button {
	margin-top: 40px;
	text-align: center;
}

.modal-window .modal-content-box .modal-content-box-body .modal-content-box-body-close-button a {
	display: inline-block;
	background: #C4121A;
	padding: 20px;
	width: 335px;
	box-sizing: border-box;
	line-height: 100%;
	border-radius: 8px;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
}

.modal-window-open {
	visibility: visible;
	opacity: 1;
	z-index: 10;
}

.modal-window-open .modal-content-box {
}

.modal-window-current {
	z-index: 20;
}

.modal-window .icon-close {
	display: inline-block;
	position: absolute;
	right: 12px;
	top: 20px;
	z-index: 20;
	font-size: 40px;
	width: 1em;
	height: 1em;
	cursor: pointer;
}

.modal-window .icon-close:before,
.modal-window .icon-close:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	margin-top: -0.25em;
	margin-left: -1px;
	border-radius: 3px;
	height: 0.675em;
	content: "";
	background: #6A2F00;
}

.modal-window .icon-close:before {
	transform: rotate(45deg);
}

.modal-window .icon-close:after {
	transform: rotate(-45deg);
}

.modal-window .calculation-body {
	margin-top: 70px;
}

.modal-window .calculation-body-result {
	display: flex;
	justify-content: space-between;
	width: 490px;
	margin: 60px auto 0 auto;
	font-size: 20px;
	font-weight: bold;
}

.modal-window .calculation-body-result .calculation-body-result-price {
	color: #C4121A;
}

.modal-window#max-donation .modal-content-box-body {
	line-height: 200%;
	font-size: 18px;
}

/*-----------------------------------------
table
-----------------------------------------*/
.sim-table01 .sim-table01-section {
	margin-bottom: 30px;
}

.sim-table01 .sim-table01-section--border {
	padding-bottom: 30px;
	border-bottom: 1px solid #CCC;
}

.sim-table01 .sim-table01-section--total {
	padding-top: 30px;
	border-top: 2px solid #000;
}

.sim-table01 .sim-table01-section--total b {
	font-weight: bold;
	padding-right: 21px;
}

.sim-table01 .sim-table01-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.sim-table01 .sim-table01-note {
	line-height: 133%;
	font-size: 12px;
	font-weight: normal;
	color: #888;
}

.sim-table01 .sim-table01-note--attention {
	color: #C4121A;
}

.sim-table01 .sim-table01-note--right {
	text-align: right;
	margin-top: 10px;
}

.sim-table01 .sim-table01-note--margin,
.sim-table01 table .sim-table01-note {
	margin-top: 10px;
}

.sim-table01 .sim-table01-section table {
	width: 100%;
}

.sim-table01 .sim-table01-section table th {
	padding-top: 10px;
	font-weight: bold;
}

.sim-table01 .sim-table01-section.sim-table01-section--total table th {
	padding-top: 0;
}

.sim-table01 .sim-table01-section table th span {
	font-weight: normal;
}

.sim-table01 .sim-table01-section table th,
.sim-table01 .sim-table01-section table td {
	font-size: 18px;
}

.sim-table01 .sim-table01-section table tr th,
.sim-table01 .sim-table01-section table tr td {
	padding-bottom: 30px;
}

.sim-table01 .sim-table01-section table tr:last-child th,
.sim-table01 .sim-table01-section table tr:last-child td {
	padding-bottom: 0;
}

.sim-table01 .sim-table01-section table .sim-table01--right {
	text-align: right;
}

.sim-table01 .sim-table01-section table .sim-table01--last-width-fixed {
	width: 200px;
}

.sim-table01 .sim-table01-section .sim-table01--fixed {
	table-layout: fixed;
}

.sim-table01 .sim-table01-section .sim-table01--fixed .sim-table01--sp-column2 {
	width: 240px;
}

.sim-table01 .sim-table01-section .sim-table01--fixed .sim-table01--sp-column2.sim-table01--right {
	width: 200px;
}

.calculation-table {
	width: 100%;
	margin-bottom: 50px;
}

.calculation-table b {
	font-weight: bold;
}

.calculation-table:last-child {
	margin-bottom: 0;
}

.calculation-table th,
.calculation-table td {
	border-top: 1px solid #CCC;
	line-height: 160%;
	font-size: 18px;
	padding: 15px 0 15px 15px;
	word-break: break-all;
}

.calculation-table .calculation-table-head {
	margin-right: 40px;
}

.calculation-table tr.calculation-table-total th,
.calculation-table tr.calculation-table-total td {
	border-top: 2px solid #000;
	font-weight: bold;
}

.calculation-table tr.calculation-table-border-none th,
.calculation-table tr.calculation-table-border-none td {
	border-top: none;
	padding-top: 0;
}

.calculation-table tr td:nth-child(2),
.calculation-table tr td:nth-child(3) {
	text-align: right;
	width: 25%;
}

.calculation-table tr:first-child th,
.calculation-table tr:first-child td {
	border-top: none;
}

/*-----------------------------------------
sim-head
-----------------------------------------*/
#sim .sim-head {
	background: #FAF6ED;
	padding: 30px 0 40px 0;
	margin-bottom: 45px;
}

#sim.sim-top .sim-head {
	margin-bottom: 0;
}


#sim .sim-head .sim-head-inner {
	width: 820px;
	margin: 0 auto;
}

#sim .sim-head .sim-head-nav {
	position: relative;
	z-index: 5;
}

#sim .sim-head .sim-head-nav ul {
	display: flex;
	justify-content: space-between;
}

#sim .sim-head .sim-head-nav ul li {
	text-align: center;
}

#sim .sim-head .sim-head-nav ul li a,
#sim .sim-head .sim-head-nav ul li > span {
	display: block;
	background: #FFF;
	height: 100%;
	border-radius: 8px;
	padding: 10px;
	line-height: 100%;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

#sim .sim-head .sim-head-nav ul li > span {
	border: none;
	background-color: #C4121A;
	color: #FFF;
}

#sim .sim-head .sim-head-mv {
	margin-top: 45px;
	border: 3px solid #6A2F00;
	border-radius: 11px;
	background: #FFF;
}

#sim .sim-head .sim-head-mv .sim-head-mv-title {
	position: relative;
	border-bottom: 3px solid #6A2F00;
	padding: 15px 0 15px 228px;
}

#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-figure {
	position: absolute;
	bottom: 0px;
	left: 15px;
}

#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-target {
	display: inline-block;
	border-radius: 30px;
	background: #6A2F00;
	padding: 3px 0;
	width: 443px;
	font-size: 30px;
	font-weight: bold;
	line-height: 140%;
	text-align: center;
	color: #FFF;
}

#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-simulation {
	font-size: 36px;
	font-weight: bold;
	line-height: 140%;
	color: #6A2F00;
}

#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-bg {
	position: absolute;
	top: 20px;
	right: 35px;
}


#sim .sim-head .sim-head-mv .sim-head-mv-description {
	padding: 20px 30px;
}

#sim .sim-head .sim-head-mv .sim-head-mv-description .sim-head-mv-description-text {
	line-height: 144%;
	font-size: 18px;
}

#sim .sim-head .sim-head-mv .sim-head-mv-description .sim-head-mv-description-note {
	line-height: 133%;
	margin-top: 10px;
	font-size: 14px;
	color: #888;
}

#sim .sim-head .sim-head-mv .sim-head-mv-description .sim-head-mv-description-supervisor {
	margin-top: 10px;
	text-align: right;
	font-size: 14px;
}

#sim .sim-head .sim-head-attention {
	margin-top: 17px;
	background: #FFF;
}

#sim .sim-head .sim-head-attention dl {
	display: flex;
}

#sim .sim-head .sim-head-attention dl dt {
	display: flex;
	border-top-left-radius: 11px;
	border-bottom-left-radius: 11px;
	justify-content: center;
	align-items: center;
	background: #6A2F00;
	width: 257px;
	line-height: 140%;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
}

#sim .sim-head .sim-head-attention dl dd {
	flex: 1;
	padding: 15px 35px;
	border: 3px solid #6A2F00;
	border-top-right-radius: 11px;
	border-bottom-right-radius: 11px;
	line-height: 130%;
	font-size: 20px;
	font-weight: bold;
	color: #C4121A;
}

#sim .sim-head .sim-head-note {
	margin-top: 30px;
}

#sim .sim-head .sim-head-note ul li {
	position: relative;
	margin-top: 0.5em;
	padding-left: 15px;
}

#sim .sim-head .sim-head-note ul li:after {
	display: block;
	position: absolute;
	top: 0.6em;
	left: 0.3em;
	width: 4px;
	height: 4px;
	border-radius: 2px;
	background: #000;
	content: '';
}

/*-----------------------------------------
sim-body
-----------------------------------------*/
#sim .sim-body {
	width: 820px;
	margin: 0 auto;
}

#sim .sim-body .sim-body-section {
	margin-bottom: 50px;
}

#sim .sim-body .sim-body-section:last-child {
	margin-bottom: 90px;
}

#sim .sim-body .sim-body-section .sim-body-section-head {
	position: relative;
	background: #FAF6ED;
	border: 1px solid #D0D0D0;
	border-radius: 8px;
	padding: 25px 30px 25px 30px;
}

#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title {
	display: flex;
	justify-content: space-between;
}

#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title h4 {
	width: 560px;
	line-height: 140%;
}

#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title ul {
	display: flex;
}

#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title ul li {
	margin-right: 13px;
}

#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title ul li:last-child {
	margin-right: 0;
}

#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-description {
	margin-top: 25px;
}


#sim .sim-body .sim-body-section-body01 {
	border: 3px solid #6A2F00;
	margin-bottom: 20px;
	border-radius: 19px;
	padding: 25px 25px 30px 25px;
	box-sizing: border-box;
}

#sim .sim-body .sim-body-section .sim-body-section-body01:last-child {
	margin-bottom: 0;
}

#sim .sim-body .sim-body-section-body02 {
	display: none;
	border: 1px solid #D0D0D0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	margin-top: -8px;
	padding: 35px 25px 27px 25px;
	box-sizing: border-box;
}

#sim .sim-body .sim-body-section-body02.sim-body-section-body02--open {
	display: block;
}

/*-----------------------------------------
sim-result
-----------------------------------------*/
#sim .sim-result {
	background: url(../images/sim/icon_arrow.svg) #FAF6ED no-repeat 50% 0;
	padding: 125px 0 60px 0;
}

#sim .sim-result .sim-result-button {
	margin-bottom: 70px;
	text-align: center;
}

#sim .sim-result .sim-result-button a {
	width: 270px;
}

#sim .sim-result .sim-result-inner {
	width: 820px;
	margin: 0 auto;
}

#sim .sim-result .sim-result-head {
	background: #6A2F00;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	padding: 12px 0;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
}

#sim .sim-result .sim-result-body {
	background: #FFF;
	border: 1px solid #D0D0D0;
	border-top: none;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding: 35px 30px;
	text-align: center;
}

#sim .sim-result .sim-result-body .sim-result-body-text {
	line-height: 140%;
	font-size: 24px;
	font-weight: bold;
}

#sim .sim-result .sim-result-body .sim-result-body-text b {
	line-height: 180%;
	font-size: 50px;
	font-weight: bold;
}

#sim .sim-result .sim-result-body .sim-result-body-text span {
	color: #C4121A;
}

#sim .sim-result .sim-result-body .sim-result-body-note {
	background: #F2F2F2;
	border-radius: 20px;
	margin-top: 40px;
	padding: 20px 40px;
	text-align: left;
}

#sim .sim-result .sim-result-body .sim-result-body-note ul li {
	position: relative;
	margin-top: 0.5em;
	padding-left: 15px;
}

#sim .sim-result .sim-result-body .sim-result-body-note ul li:after {
	display: block;
	position: absolute;
	top: 0.6em;
	left: 0.3em;
	width: 4px;
	height: 4px;
	border-radius: 2px;
	background: #000;
	content: '';
}

#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-title {
	margin: 20px 0;
	font-size: 15px;
	font-weight: bold;
}

#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a {
	display: flex;
	border: 1px solid #D0D0D0;
	margin: 0 auto;
	width: 504px;
	background: #FFF;
	padding: 15px;
	align-items: center;
	gap: 15px;
	box-sizing: border-box;
	border-radius: 10px;
	text-decoration: none;
}

#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-figure {
	display: block;
	min-width: 67px;
	width: 67px;
}

#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-figure img {
	width: 100%;
}

#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-description {
	display: block;
	text-align: left;
	line-height: 150%;
	font-size: 14px;
}

#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-description .sim-result-body-recommend-body-description-head {
	display: block;
	font-weight: bold;
}

#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-description .sim-result-body-recommend-body-description-text {
	display: block;
}

/*-----------------------------------------
sim-price
-----------------------------------------*/
#sim .sim-price {
	transition: all ease .3s;
	position: fixed;
	bottom: -100px;
	left: 0;
	width: 100%;
	background: #000;
	padding: 20px 0;
	color: #FFF;
	z-index: 2;
}

#sim .sim-price.sim-price--active {
	bottom: 0;
}

#sim .sim-price .sim-price-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 700px;
	margin: 0 auto;
}

#sim .sim-price .sim-price-head {
	flex: 1;
	font-size: 20px;
	font-weight: bold;
}

#sim .sim-price .sim-price-head span {
	font-size: 17px;
}

#sim .sim-price .sim-price-body {
	padding-right: 30px;
	font-size: 20px;
	font-weight: bold;
}

#sim .sim-price .sim-price-body b{
	font-size: 26px;
}

#sim .sim-price .sim-price-button {
	font-size: 14px;
	font-weight: bold;
}

#sim .sim-price .sim-price-button a {
	color: #FFF;
}

#sim .sim-price .sim-price-button2 {
	margin-left: 30px;
}

#sim .sim-price .sim-price-button2 a {
	display: block;
	background: #C4121A;
	width: 130px;
	padding: 10px 0;
	border-radius: 8px;
	line-height: 100%;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	color: #FFF;
}


/*-----------------------------------------
free_easy
-----------------------------------------*/
.localPage__head--freeeasy {
	margin-bottom: 30px;
}

.head__title--freeeasy {
	display: inline-block;
}

.head__title--freeeasy span {
	display: block;
	margin-bottom: 10px;
	color: #FFF;
	text-align: center;
	font-size: 0.6em;
	border-radius: 60px;
	background: #6A2F00;
}

.simContent--freeeasy {
	padding-bottom: 50px;
}

.simContent--freeeasy .freeeasy-content {
	display: flex;
	align-items: center;
	margin: 0 auto;
	text-align: left;
	font-weight: 700;
	font-size: 18px;
}

.simContent--freeeasy .freeeasy-content label {
	width: 50%;
}

.simContent--freeeasy .freeeasy-content .simulator-income {
	margin-right: 10px;
	border: 2px solid #000;
	border-radius: 8px;
	width: 100%;
	height: 58px;
	padding: 0 45px 0 20px;
	box-sizing: border-box;
	text-align: right;
	font-size: 30px;
	font-weight: 700;
}

.simContent--freeeasy .freeeasy-content .simulator-income::placeholder {
	font-size: 30px;
}

.simContent--freeeasy .freeeasy-content-input {
	display: flex;
	width: 50%;
	align-items: center;
}

.simContent--freeeasy .simContent__note {
	margin-top: 30px;
}

.simContent--freeeasy .simContent__button {
	margin-top: 30px;
}

.freeeasy-error {
	display: block;
	margin-top: 10px;
	color: #FF3300;
	line-height: 120%;
	text-align: right;
}

.simContent-banner {
	width: 820px;
	margin: 100px auto;
}

.simContent-banner img {
	width: 100%;
}


@media all and (max-width: 750px){
	input[type="text"].sim-input--text {
		width: 91%;
		border-width: 2px;
		height: auto;
		line-height: 140%;
		vertical-align: middle;
		border-radius: 10px;
		padding: 10px;
		font-size: 40px;
	}

	.sim-select {
		width: 100px;
		border-width: 2px;
		height: 80px;
		line-height: 140%;
		vertical-align: middle;
		border-radius: 10px;
		padding: 10px;
		font-size: 30px;
		text-align: left;
		background-position: right 5px top 50%;
		background-size: 20px auto;
	}

	input[type="text"].sim-input--text::placeholder {
		font-size: 40px;
	}

	.sim-table01--sp-column2 input[type="text"].sim-input--text {
		width: 100px;
	}

	input[type="checkbox"].sim-input--head-checkbox + span {
		padding: 20px 0 0 74px;
		min-height: 64px;
		font-size: 28px;
	}

	input[type="checkbox"].sim-input--head-checkbox + span:after {
		top: -0.2em;
		left: 0.7em;
		border-width: 18px;
		box-sizing: border-box;
		width: 36px;
		height: 55px;
		line-height: 100%;
	}

	input[type="checkbox"].sim-input--head-checkbox + span:before {
		width: 64px;
		height: 64px;
		border-width: 6px;
	}

	input[type="checkbox"].sim-input--head-checkbox:checked + span:after {
		transform : scaleX(1) scaleY(1) rotate(45deg);
	}

	input[type="radio"].sim-input--radio + span {
		padding: 0.3em 0 0 70px;
		min-height: 58px;
		font-size: 32px;
	}

	input[type="radio"].sim-input--radio + span:before {
		width: 48px;
		height: 48px;
		border-width: 4px;
		border-radius: 24px;
	}

	input[type="radio"].sim-input--radio:checked + span:after {
		top: 8px;
		left: 8px;
		width: 32px;
		height: 32px;
		border-radius: 16px;
	}

	.icon-attention {
		width: 59px;
		height: 59px;
		border-radius: 30px;
		margin-right: 26px;
		line-height: 59px;
		font-size: 50px;
	}

	.icon-help {
		width: 58px;
		height: 58px;
		border-radius: 29px;
		margin-left: 40px;
		font-size: 30px;
	}

	.icon-sim-blank {
		width: 28px;
		height: 28px;
		background-size: 28px auto;
		margin-left: 5px;
	}

	.sim-max-donation {
		border: 6px solid #C4121A;
		border-radius: 20px;
		padding: 30px 40px;
		line-height: 150%;
		font-size: 30px;
	}

	.sim-max-donation .sim-max-donation-title {
		text-align: left;
		font-size: 30px;
	}

	.localPage__head .sim-max-donation {
		margin-top: 40px;
	}

	#sim h3 {
		margin-bottom: 44px;
		line-height: 100%;
		font-size: 46px;
	}

	#sim h3 span:first-child {
		width: 110px;
	}

	#sim h3 span:first-child img {
		transform: scale(1.6);
		transform-origin: center left;
		vertica-align: top;
	}

	#sim h4 {
		font-size: 44px;
	}

	/*-----------------------------------------
	modal
	-----------------------------------------*/
	.modal-window .modal-content-box {
		width: auto;
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
		left: 0!important;
	}

	.modal-window .modal-content-box .modal-content-box-title {
		margin-bottom: 60px;
		width: 600px;
		font-size: 48px;
	}

	.modal-window .modal-content-box .modal-content-box-title span {
		margin-right: 20px;
	}

	.modal-window .modal-content-box .modal-content-box-title span img {
		width: 64px;
	}

	.modal-window .modal-content-box .modal-content-box-body {
		padding: 60px 40px 60px 40px;
		font-size: 28px;
	}

	.modal-window .modal-content-box .modal-content-box-body .modal-content-box-body-close-button {
		margin-top: 60px;
	}

	.modal-window .modal-content-box .modal-content-box-body .modal-content-box-body-close-button a {
		display: block;
		padding: 40px;
		width: auto;
		border-radius: 16px;
		font-size: 28px;
	}

	.modal-window .icon-close {
		right: 20px;
		top: 45px;
		font-size: 80px;
	}

	.modal-window .calculation-body {
		margin-top: 60px;
	}

	.modal-window .calculation-body-result {
		display: block;
		width: auto;
		margin: 100px 80px 0 80px;
		font-size: 32px;
	}

	.modal-window .calculation-body-result .calculation-body-result-title {
		margin-bottom: 40px;
		text-align: center;
	}

	.modal-window .calculation-body-result .calculation-body-result-price {
		text-align: right;
	}

	.modal-window#max-donation .modal-content-box-body {
		font-size: 28px;
	}

	/*-----------------------------------------
	table
	-----------------------------------------*/
	.sim-table01 .sim-table01-section {
		margin-bottom: 50px;
	}

	.sim-table01 .sim-table01-section--border {
		padding-bottom: 50px;
		border-width: 2px;
	}

	.sim-table01 .sim-table01-section--total {
		padding-top: 45px;
		border-width: 4px;
	}

	.sim-table01 .sim-table01-section--total b {
		padding-right: 10px;
		font-size: 40px;
	}

	.sim-table01 .sim-table01-note {
		margin-top: 20px;
		font-size: 24px;
	}

	.sim-table01 .sim-table01-note--right {
		text-align: left;
	}

	.sim-table01 table .sim-table01-note {
		margin-top: 20px;
	}

	.sim-table01 .sim-table01-section table th {
		padding-top: 0;
		padding-bottom: 20px!important;
		font-size: 32px;
	}

	.sim-table01 .sim-table01-section table td {
		padding-bottom: 20px;
		font-size: 28px;
	}

	.sim-table01 .sim-table01-section table th,
	.sim-table01 .sim-table01-section table td {
		display: block;
	}

	.sim-table01 .sim-table01-section table th.sim-table01--sp-column2 {
		float: left;
		padding-top: 15px;
		padding-bottom: 10px!important;
	}

	.sim-table01 .sim-table01-section table td.sim-table01--sp-column2 {
		float: right;
		padding-bottom: 10px!important;
	}

	.sim-table01 .sim-table01-section .sim-table01--fixed {
		table-layout: auto;
	}

	.sim-table01 .sim-table01-section .sim-table01--fixed .sim-table01--sp-column2 {
		width: auto;
	}

	.sim-table01 .sim-table01-section .sim-table01--fixed .sim-table01--sp-column2.sim-table01--right {
		width: auto;
	}

	.sim-table01 .sim-table01-section table .sim-table01--right {
		text-align: left;
	}

	.sim-table01 .sim-table01-section--total table .sim-table01--right {
		text-align: right;
		padding-right: 15px;
	}

	.sim-table01 .sim-table01-section table .sim-table01--last-width-fixed {
		width: auto;
	}

	.calculation-table {
		width: 100%;
		margin-bottom: 60px;
	}

	.calculation-table th,
	.calculation-table td {
		border-width: 2px;
		line-height: 160%;
		font-size: 28px;
		padding: 30px 0 30px 0;
	}

	.calculation-table .calculation-table-head {
		margin-right: 80px;
	}

	.calculation-table tr.calculation-table-total th,
	.calculation-table tr.calculation-table-total td {
		border-width: 4px;
		font-weight: bold;
	}

	.calculation-table tr td:nth-child(2),
	.calculation-table tr td:nth-child(3) {
		text-align: right;
		width: 30%;
	}

	/*-----------------------------------------
	sim-head
	-----------------------------------------*/
	#sim .sim-head {
		padding: 20px 40px 40px 40px;
		margin-bottom: 64px;
	}

	#sim .sim-head .sim-head-inner {
		width: auto;
	}

	#sim .sim-head .sim-head-nav ul {
		display: flex;
		justify-content: start;
		flex-wrap: wrap;
	}

	#sim .sim-head .sim-head-nav ul li {
		margin-top: 20px;
		margin-right: 20px;
	}

	#sim .sim-head .sim-head-nav ul li > span,
	#sim .sim-head .sim-head-nav ul li a {
		border-radius: 16px;
		padding: 20px 40px;
		font-size: 28px;
	}

	#sim .sim-head .sim-head-mv {
		margin-top: 64px;
		border-width: 6px;
		border-radius: 22px;
		background: #FFF;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-title {
		border-width: 6px;
		padding: 24px 0 0 0;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-figure {
		position: absolute;
		top: -93px;
		left: -34px;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-figure img {
		width: 362px;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-target {
		display: block;
		border-radius: 44px;
		margin: 0 14px 22px auto;
		width: 364px;
		padding: 30px 0px;
		font-size: 40px;
		line-height: 150%;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-simulation {
		position: relative;
		display: block;
		border-top: 6px solid #6A2F00;
		padding: 22px 0;
		font-size: 48px;
		text-align: center;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-title .sim-head-mv-title-bg {
		display: none;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-description {
		padding: 40px 32px;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-description .sim-head-mv-description-text {
		line-height: 173%;
		font-size: 30px;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-description .sim-head-mv-description-note {
		line-height: 160%;
		margin-top: 20px;
		font-size: 28px;
	}

	#sim .sim-head .sim-head-mv .sim-head-mv-description .sim-head-mv-description-supervisor {
		margin-top: 80px;
		font-size: 28px;
	}

	#sim .sim-head .sim-head-attention {
		margin-top: 28px;
	}

	#sim .sim-head .sim-head-attention dl {
		display: block;
	}

	#sim .sim-head .sim-head-attention dl dt {
		display: block;
		border-top-left-radius: 22px;
		border-top-right-radius: 22px;
		border-bottom-left-radius: 0;
		background: #6A2F00;
		width: auto;
		padding: 12px 0;
		font-size: 38px;
	}

	#sim .sim-head .sim-head-attention dl dd {
		padding: 30px 22px;
		border-top: none;
		border-width: 6px;
		border-top-right-radius: 0;
		border-bottom-left-radius: 22px;
		border-bottom-right-radius: 22px;
		font-size: 34px;
	}

	#sim .sim-head .sim-head-note {
		margin-top: 40px;
	}

	#sim .sim-head .sim-head-note ul li {
		padding-left: 20px;
	}

	#sim .sim-head .sim-head-note ul li:after {
		top: 0.5em;
		left: 0.1em;
		width: 8px;
		height: 8px;
		border-radius: 4px;
	}

	/*-----------------------------------------
	sim-body
	-----------------------------------------*/
	#sim .sim-body {
		width: auto;
		margin: 0 40px;
	}

	#sim .sim-body .sim-body-section {
		margin-bottom: 60px;
	}

	#sim .sim-body .sim-body-section:last-child {
		margin-bottom: 80px;
	}

	#sim .sim-body .sim-body-section .sim-body-section-head {
		border-width: 2px;
		border-radius: 16px;
		padding: 40px;
	}

	#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title {
		display: block;
	}

	#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title h4 {
		width: auto;
	}

	#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title ul {
		margin-top: 40px;
	}

	#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title ul li {
		margin-right: 70px;
	}

	#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-title ul li:last-child {
		margin-right: 0;
	}

	#sim .sim-body .sim-body-section .sim-body-section-head .sim-body-section-head-description {
		margin-top: 60px;
		font-size: 32px;
		line-height: 150%;
	}

	#sim .sim-body .sim-body-section-body01 {
		border-width: 6px;
		border-radius: 38px;
		padding: 40px 40px 30px 40px;
	}

	#sim .sim-body .sim-body-section-body02 {
		border-width: 2px;
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
		margin-top: -16px;
		padding: 56px 40px 40px 40px;
		box-sizing: border-box;
	}

	/*-----------------------------------------
	sim-result
	-----------------------------------------*/
	#sim .sim-result {
		background-size: 368px auto;
		padding: 150px 0 46px 0;
	}

	#sim .sim-result .sim-result-button {
		margin-bottom: 120px;
	}

	#sim .sim-result .sim-result-button a {
		width: 540px;
	}

	#sim .sim-result .sim-result-inner {
		width: auto;
		margin: 0 40px;
	}

	#sim .sim-result .sim-result-head {
		border-radius: 0;
		padding: 30px 0;
		text-align: center;
		font-size: 44px;
	}

	#sim .sim-result .sim-result-body {
		background: none;
		border: none;
		padding: 50px 0;
		text-align: center;
	}

	#sim .sim-result .sim-result-body .sim-result-body-text {
		font-size: 40px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-text b {
		font-size: 60px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-text span {
		color: #C4121A;
	}

	#sim .sim-result .sim-result-body .sim-result-body-note {
		margin-top: 80px;
		padding: 40px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-note ul li {
		padding-left: 20px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-note ul li:after {
		top: 0.5em;
		left: 0.1em;
		width: 8px;
		height: 8px;
		border-radius: 4px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-recommend {
		margin-bottom: -60px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-title {
		margin: 60px 0 20px 0;
		font-size: 28px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a {
		border: none;
		box-shadow: 0.5px 0.5px 1px 0px #00000040;
		margin: 0 auto;
		width: auto;
		padding: 20px 20px 20px 30px;
		gap: 30px;
		border-radius: 20px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-figure {
		display: block;
		width: 136px;
		min-width: 136px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-description {
		font-size: 28px;
	}

	#sim .sim-result .sim-result-body .sim-result-body-recommend .sim-result-body-recommend-body a .sim-result-body-recommend-body-description .sim-result-body-recommend-body-description-text br {
		display: none;
	}


	/*-----------------------------------------
	sim-price
	-----------------------------------------*/
	#sim .sim-price {
		transition: all ease .3s;
		position: fixed;
		bottom: -300px;
		left: 0;
		width: 100%;
		background: #000;
		padding: 20px 0;
		color: #FFF;
		z-index: 2;
	}

	#sim .sim-price .sim-price-inner {
		display: block;
		width: auto;
	}

	#sim .sim-price .sim-price-head {
		display: block;
		float: left;
		padding: 10px 0 20px 40px;
		font-size: 28px;
	}

	#sim .sim-price .sim-price-head span {
		font-size: 24px;
	}

	#sim .sim-price .sim-price-body {
		display: block;
		float: right;
		padding: 10px 40px 20px 0;
		font-size: 40px;
		font-weight: bold;
	}

	#sim .sim-price .sim-price-body b{
		font-size: 52px;
	}

	#sim .sim-price .sim-price-button {
		clear: both;
		float: left;
		box-sizing: border-box;
		padding-left: 40px;
		width: 50%;
		border-top: 2px solid #FFFFFF;
		padding-top: 40px;
		text-align: left;
		font-size: 28px;
	}

	#sim .sim-price .sim-price-button2 {
		float: right;
		margin-left: 0;
		box-sizing: border-box;
		padding-right: 40px;
		width: 50%;
		border-top: 2px solid #FFFFFF;
		padding-top: 20px;
		text-align: right;
	}

	#sim .sim-price .sim-price-button2 a {
		width: auto;
		padding: 30px 0;
		font-size: 32px;
	}

	/*-----------------------------------------
	free_easy
	-----------------------------------------*/
	.localPage__head--freeeasy {
		margin-bottom: 40px;
	}

	.simContent--freeeasy .freeeasy-content {
		display: block;
		width: 100%;
		font-size: 34px;
	}

	.simContent--freeeasy .freeeasy-content label {
		display: block;
		margin-bottom: 20px;
		width: auto;
	}

	.simContent--freeeasy .freeeasy-content .simulator-income {
		margin-right: 10px;
		border-width: 4px;
		border-radius: 12px;
		height: 100px;
		padding: 0 80px 0 80px;
		font-size: 50px;
	}

	.simContent--freeeasy .freeeasy-content .simulator-income::placeholder {
		font-size: 50px;
	}

	.simContent--freeeasy .freeeasy-content-input {
		width: auto;
	}

	.simContent--freeeasy .simContent__note {
		margin-bottom: 50px;
	}

	.simContent--freeeasy .simContent__button {
		margin-top: 0;
	}

	.freeeasy-error {
		margin-top: 20px;
		font-size: 28px;
	}

	.simContent-banner {
		width: auto;
		margin: 80px 40px;
	}

}