@charset "UTF-8";
/* START WSYS-11014 【サイト】初心者必見ページの修正 20240520 N.Kita*/

.novice .btn_area {
	padding: 40px 0 0;
	text-align: center;
}

.novice .btn_area.btn_area_second {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn_area_second a:nth-child(1) {
	margin-right: 20px;
	
}

/*Regist Button*/
.novice .btn_area .module-base_btn {
	width: 420px;
	min-width: 300px;
}
.novice .btn_area .module-base_btn {
	background: #e74889;
	border-color: #e74889;
	box-shadow: 0px 3px 0px #920542;
}

.novice .btn_area .module-base_btn:hover {
	background: #920542;
	border-color: #920542;
}

.novice .btn_area .module-base_btn:after {
	content: "\f061";
	right: 25px;
	transition: all 0.3s;
}

.novice .btn_area .module-base_btn:hover:after {
	right: 15px;
}

/*Other Button*/
.novice .btn_area .module-base_btn.theme-second_btn {
	background:#f6921e;
	color:#fff;
	border-color: #f6921e;
	box-shadow: 0px 3px 0px #a3682a;
}

.novice .btn_area .module-base_btn.theme-second_btn:hover {
	background:#a3682a;
	border:solid 1px #a3682a;
	color:#fff;
}

/* stripe_bg */
.stripe_bg {
	background:repeating-linear-gradient(
		-45deg,
		#e5f5fe,
		#e5f5fe 2px,
		#fff 0,
		#fff 6px
	);
}

._inner_m {
	max-width: 1200px;
	width: 95%;
	padding: 40px 0;
	margin: 0 auto;
}

._inner_s {
	max-width: 900px;
	width: 90%;
	padding: 40px 0;
	margin: 0 auto;
}

.text_pink {
	color: #ee2b6c;
	font-weight: 700;
}

/* Heading */
.novice_head {
	text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.novice_head ._title {
	font-size: 3.8rem;
	display: inline-block;
}

.novice_head ._accenttitle {
	font-size: 1.8rem;
	color: #fff;
	padding: 5px 25px;
	background: #3071b8;
	display: inline-block;
	border-radius: 50px;
	margin-bottom: 5px;
}

.novice_head ._title ._marker {
	background: linear-gradient(transparent 70%, #fff844 70%);
}

.novice_head ._text {
	padding-top: 20px;
	display: inline-block;
}

/* novice_mainvisual */
.novice_mainvisual {
	background: #a2dbfb;
}

/* START WSYS-11281 【フロント】初心者ページのMVのテキストをh1タグへ修正 20240806 N.Kita */
.novice_mainvisual_inner {
	width: 80%;
	max-width: 1440px;
	padding: 45px 0 0 0;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
}

.novice_mainvisual_content {
	font-weight: 700;
	width: 42%;
}

.novice_mainvisual_image {
	font-weight: 700;
	width: 58%;
}

/* WSYS-11358 【フロント】初心者ページのMVのテキストをh1タグのサイズを修正 20240829 N.Kita */
.novice_mainvisual_content ._subtitle {
	display: inline-block;
	font-size: 1.4285vw;
	text-align: center;
	position: relative;
	padding: 10px 30px;
	margin-bottom: 25px;
	background-color: #215FA8;
	color: #fff;
	border-radius: 10px;
	box-shadow: 6px 6px 0px 0px #093970;
}

.novice_mainvisual_content ._subtitle::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	right: 120px;
	bottom: -18px;
	border-top: 15px solid #093970;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
}

.novice_mainvisual_content ._subtitle::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	right: 126px;
	bottom: -15px;
	border-top: 15px solid #215FA8;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
}

.novice_mainvisual_content ._title {
	font-size: 3.972vw;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.novice_mainvisual_content ._title span {
	line-height: 1.2;
}

/* 画面幅が1920px時に崩れたため調整 */
/* WSYS-11358 【フロント】初心者ページのMVのテキストをh1タグのサイズを修正 20240829 N.Kita */
@media screen and (min-width: 1441px) {
	.novice_mainvisual_inner {
		width: 85%;
		max-width: 1800px;
	}
	.novice_mainvisual_content {
		width: 45%;
	}
	.novice_mainvisual_image {
		width: 55%;
	}
	.novice_mainvisual_content ._subtitle {
		display: block;
		width: 80%;
		font-size: 1.2285vw;
	}
	.novice_mainvisual_content ._title {
		font-size: 3.472vw;
	}
}

.novice_mainvisual_content ._shadow {
	text-shadow: 4px 3px 0 #1f1f1f;
}

.novice_mainvisual_content ._title ._fs-s {
	font-size: 1.8571vw;
}

.novice_mainvisual_content ._title ._blue {
	color: #215FA8;
}

.novice_mainvisual_content ._title ._white {
	color: #FFF;
}

.novice_mainvisual_content ._title ._yellow {
	color: #FCFF00;
}

.novice_mainvisual_content ._text {
	font-size: 1.25vw;
	padding: 20px 0 40px;
}
/* E N D WSYS-11281 【フロント】初心者ページのMVのテキストをh1タグへ修正 20240806 N.Kita */

/* novice_method */
.novice_method_content {
	width: 80%;
	max-width: 800px;
	margin: 80px auto;
}

.novice_method_list {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

.novice_method_item {
	position: relative;
	padding: 20px;
	width: calc(100% / 3);
	border-radius: 20px;
}

.novice_method_item:nth-child(1),
.novice_method_table th:nth-child(2) {
	background: #c0d9ee;
}

.novice_method_item:nth-child(2),
.novice_method_table th:nth-child(3) {
	background: #f8c2c5;
}

.novice_method_item:nth-child(3),
.novice_method_table th:nth-child(4) {
	background: #cee6b0;
}

.novice_method_item ._choice {
	position: absolute;
	top: -15%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	margin: 20px 0 5px;
	padding: 5px 25px;
	color: #fff;
	background: #ec1e79;
	border-radius: 50px;
	text-align: center;
}

.novice_method_item ._choice:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 10px solid #ec1e79;
}

.novice_method_item ._textarea ._title {
	text-align: center;
	height: 55px;
	font-size: 2.0rem;
}

.novice_method_item ._textarea ._text {
	position: relative;
	padding-top: 180px;
}

.novice_method_item::before {
	content: "";
	width: 213px;
	height: 155px;
	position: absolute;
	top: 90px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.novice_method_item:nth-child(1)::before {
	background: url(../../images/contents/novice/novice_method_item01.png);
	background-size: cover;
}

.novice_method_item:nth-child(2)::before {
	background: url(../../images/contents/novice/novice_method_item02.png);
	background-size: cover;
}

.novice_method_item:nth-child(3)::before {
	background: url(../../images/contents/novice/novice_method_item03.png);
	background-size: cover;
}

.novice_method_item ._image {
	padding: 10px 0 20px;
	width: 100%;
}

.novice_method_table {
	position: relative;
	width: 100%;
}

.novice_method_table::before {
	content: "";
	background: url(../../images/contents/novice/novice_tabifly_image01.png);
	background-size: cover;
	width: 158.4px;
	height: 161.2px;
	position: absolute;
	right: -160.4px;
	bottom: 0;
	z-index: 10;
}

.novice_method_table th,
.novice_method_table td {
	border: 1px solid #fff;
}

.novice_method_table thead th {
	width: calc(100% / 4);
}

.novice_method_table thead th p {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 58px;
	font-weight: 700;
}

.novice_method_table tbody th,
.novice_method_table tbody td {
	text-align: center;
	padding: 10px 5px;
	height: 58px;
}

.novice_method_table tbody th {
	background: #71b8e2;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.novice_method_table tbody td {
	background: #f1f1f1;
	font-size: 2.4rem;
}

.novice_method_table tbody ._double {
	color: #ee2b6c;
}

.novice_method_table tbody ._triangle {
	color: #0e65a3;
}

.novice_method_table tbody ._cross {
	color: #231815;
}

/* novice_doubt */
.novice_doubt_head ._text {
	position: relative;
}

.novice_doubt_head ._text::before {
	content: "";
	background: url(../../images/contents/novice/novice_tabifly_image02.png);
	background-size: cover;
	width: 143.5px;
	height: 131.5px;
	position: absolute;
	left: -160px;
	top: -30px;
	z-index: 10;
}

.novice_doubt_content {
	margin: 40px 0 0 0;
}

.novice_doubt_list {
	display: flex;
	gap: 20px;
}

.novice_doubt_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background: #fff;
	border: 2px solid #008ae1;
	border-radius: 10px;
	width: calc((100% - 40px) / 3);
}

.novice_doubt_item ._title {
	font-size: 1.8rem;
	text-align: center;
	padding-bottom: 15px;
}

.novice_doubt_item ._image {
	height: 120px;
	padding-bottom: 20px;
}

.novice_doubt_answer {
	text-align: center;
	position: relative;
}

.novice_doubt_answer:before,
.novice_doubt_answer:after{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	margin: auto;
	content: "";
	vertical-align: middle;
}

.novice_doubt_answer:before {
	width: 190px;
	height: 120px;
	background: #b4defc;
}

.novice_doubt_answer:after {
	top: 120px;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 120px solid transparent;
	border-left: 120px solid transparent;
	border-top: 60px solid #b4defc;
	border-bottom: 0;
}

.novice_doubt_answer ._head {
	text-align: center;
}

.novice_doubt_answer ._balloon {
	position: relative;
	display: inline-block;
	margin: 20px 0 5px;
	padding: 5px 25px;
	font-size: 2rem;
	color: #fff;
	background: #1b1464;
	border-radius: 50px;
}

.novice_doubt_answer ._balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #1b1464;
}

.novice_doubt_answer ._head ._title {
	position: relative;
	font-size: 2.8rem;
	z-index: 3;
	text-align: center;
	font-weight: bold;
	line-height: 1.3;
}

.novice_doubt_answer ._head ._title:before,
.novice_doubt_answer ._head ._title:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #3071b8;
  width: 3px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}

.novice_doubt_answer ._head ._title:before {
  transform: rotate(-35deg);
}

.novice_doubt_answer ._head ._title:after {
  transform: rotate(35deg);
}

.novice_doubt_answer ._merit {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	margin-top: 50px;
	z-index: 10;
}

.novice_doubt_answer ._merit::before {
	content: "";
	background: url(../../images/contents/novice/novice_doubt_answer_gw01.png);
	background-size: cover;
	width: 264.5px;
	position: absolute;
	height: 412.2px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.novice_doubt_answer ._merit ._item {
	width: calc((100% - 300px) / 2);
	position: relative;
	display: inline-block;
}

.novice_doubt_answer ._merit ._item::before {
	border: 15px solid transparent;
	border-left: 15px solid #008ae1;
}

.novice_doubt_answer ._merit ._item:nth-child(even) {
	margin-left: 150px;
}
.novice_doubt_answer ._merit ._item:nth-child(even):before {
	content: "";
  position: absolute;
  top: 50%;
  margin-top: -15px;
}

.novice_doubt_answer ._merit ._item:nth-child(odd) {
	margin-right: 150px;
}

.novice_doubt_answer ._merit ._item:nth-child(odd):before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -15px;
}

.novice_doubt_answer ._merit ._item:nth-child(1)::before,
.novice_doubt_answer ._merit ._item:nth-child(5)::before {
	border: 10px solid transparent;
	border-left: 10px solid #008ae1;
}

.novice_doubt_answer ._merit ._item:nth-child(2)::before,
.novice_doubt_answer ._merit ._item:nth-child(6)::before {
	border: 10px solid transparent;
	border-right: 10px solid #008ae1;
	left: -20px;
}

.novice_doubt_answer ._merit ._item:nth-child(3)::before {
	border: 10px solid transparent;
	border-left: 10px solid #094aa7;
}

.novice_doubt_answer ._merit ._item:nth-child(4)::before{
	border: 10px solid transparent;
	border-right: 10px solid #094aa7;
}

.novice_doubt_answer ._merit ._item:nth-child(3)::before {
	left: calc(100% + -10px);
}

.novice_doubt_answer ._merit ._item:nth-child(4)::before{
	right: calc(100% + -10px);
}

.novice_doubt_answer ._merit ._item:nth-child(1),
.novice_doubt_answer ._merit ._item:nth-child(5) {
	padding-left: 10px;
}

.novice_doubt_answer ._merit ._item:nth-child(3) {
	padding-right: 10px;
}

.novice_doubt_answer ._merit ._item:nth-child(2),
.novice_doubt_answer ._merit ._item:nth-child(6) {
	padding-right: 10px;
}

.novice_doubt_answer ._merit ._item:nth-child(4) {
	padding-left: 10px;
}

.novice_doubt_answer ._merit ._item ._textarea {
	font-size: 1.5rem;
	text-align: left;
	color: #fff;
	padding: 15px;
	background: #008ae1;
	border-radius: 10px;
	height: 140px;
}

.novice_doubt_answer ._merit ._item:nth-child(3) ._textarea,
.novice_doubt_answer ._merit ._item:nth-child(4) ._textarea {
	background: #094aa7;
}

.novice_doubt_answer ._merit ._item ._textarea ._title {
	font-size: 2rem;
	padding-bottom: 5px;
}

/* novice_about */
.novice_about_head ._title {
	position: relative;
}
.novice_about_head ._title::before {
	content: "";
	background: url(../../images/contents/novice/novice_tabifly_image03.png);
	background-size: cover;
	width: 151.5px;
	height: 132px;
	position: absolute;
	right: -161.5px;
	top: -76px;
	z-index: 10;
}

.novice_about_head ._subtitle {
	color: #29aae1;
	font-size: 2rem;
}

.novice_about {
	content: "";
	background-image: url(../../images/contents/novice/novice_about_bg.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: 900px;
}

.novice_about_content {
	margin: 40px 0 0 0;
}

.novice_about_head ._subtitle:before,
.novice_about_head ._subtitle:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #29aae1;
  width: 2px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}

.novice_about_head ._subtitle:before {
  transform: rotate(-35deg);
}

.novice_about_head ._subtitle:after {
  transform: rotate(35deg);
}

.novice_about_detail {
	padding-bottom: 30px;
}

.novice_about_detail ._warp {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.novice_about_detail ._image {
	width: 28%;
}

.novice_about_detail h3._head {
	font-size: 2.4rem;
	text-align: center;
	color: #0059bc;
}

.novice_about_detail ._medal {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 30px;
	text-align: center;
}

.novice_about_detail ._medal img {
	width: 45%;
}

.novice_about_detail ._note {
	display: flex;
	flex-direction: column;
	padding-top: 10px;
	max-width: 570px;
	margin: 0 auto;
}

	.novice_about_detail ._note p {
	font-size: 1.1rem;
	text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
							-2px 2px 0 #FFF, 2px -2px 0 #FFF,
							0px 2px 0 #FFF,  0 -2px 0 #FFF,
							-2px 0 0 #FFF, 2px 0 0 #FFF;
}

.novice_about_howto ._warp {
	max-width: 570px;
	padding: 25px 20px 20px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	border: 2px solid #1b1464;
	position: relative;
}

.novice_about_howto ._head {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%  , -50%);
	font-size: 2.3rem;
	font-weight: 700;
	color: #1b1464;
	width: 100%;
  text-align: center;
	text-shadow: 4px 4px 0 #FFF,-4px -4px 0 #FFF,
							-4px 4px 0 #FFF, 4px -4px 0 #FFF,
							0px 4px 0 #FFF, 0 -4px 0 #FFF,
							-4px 0 0 #FFF, 4px 0 0 #FFF;
}

.novice_about_howto ._text {
	text-align: center;
	font-size: 1.4rem;
}

/* novice_reason */
.novice_reason_head ._title {
	position: relative;
}

.novice_reason_head ._title::before {
	content: "";
	background: url(../../images/contents/novice/novice_tabifly_image04.png);
	background-size: cover;
	width: 140.5px;
	height: 132px;
	position: absolute;
	left: -150.5px;
	top: -76px;
	z-index: 10;
}

.novice_reason_head ._subtitle {
	font-size: 2rem;
	color: #fff;
	padding: 5px 25px;
	background: #3071b8;
	display: inline-block;
	border-radius: 50px;
}

.novice_reason_content {
	padding: 40px 0 0 0;
}

.novice_reason_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.novice_reason_item {
	position: relative;
	width: calc((100% - 20px ) / 2);
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 15px;
}

.novice_reason_item:nth-child(1),
.novice_reason_item:nth-child(4) {
	border: 2px solid #008ae1;
}

.novice_reason_item:nth-child(2),
.novice_reason_item:nth-child(3) {
	border: 2px solid #00b8bf;
}

.novice_reason_item:before {
	content: "";
	position: absolute;
	top: 0;
	left: -2px;
	width: 0;
	height: 0;
	border-radius: 15px 0;
}

.novice_reason_item:nth-child(1):before,
.novice_reason_item:nth-child(4):before {
	border-top: 90px solid #008ae1;
	border-right: 90px solid transparent;
}

.novice_reason_item:nth-child(2):before,
.novice_reason_item:nth-child(3):before {
	border-top: 90px solid #00b8bf;
	border-right: 90px solid transparent;
}

.novice_reason_item::after {
	position: absolute;
	top: 0px;
	left: 12px;
	width: 0;
	height: 0;
	font-size: 4rem;
	color: #fff;
	font-family: serif;
}

.novice_reason_item:nth-child(1)::after {
	content: "1";
}

.novice_reason_item:nth-child(2)::after {
	content: "2";
}

.novice_reason_item:nth-child(3)::after {
	content: "3";
}

.novice_reason_item:nth-child(4)::after {
	content: "4";
}

.novice_reason_item ._image {
	width: 210px;
	padding-bottom: 20px;
}

.novice_reason_item ._title {
	font-size: 2.4rem;
	text-align: center;
	padding-bottom: 15px;
}

.novice_reason_item:nth-child(1) ._title,
.novice_reason_item:nth-child(4) ._title {
	color: #008ae1;
}

.novice_reason_item:nth-child(2) ._title,
.novice_reason_item:nth-child(3) ._title {
	color: #00b8bf;
}

.novice_reason_item ._text {
	text-align: center;
}

/* novice_plan */
.novice_plan_head ._title {
	position: relative;
}
.novice_plan_head ._title::before {
	content: "";
	background: url(../../images/contents/novice/novice_tabifly_image05.png);
	background-size: cover;
	width: 143px;
	height: 130.5px;
	position: absolute;
	right: -153px;
	top: -25px;
	z-index: 10;
}
.novice_plan_content {
	padding: 40px 0 0;
}

.novice_plan_detail {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 70px;
}

.novice_plan_detail::before {
	font-family: "Font Awesome 5 Free";
	content: "\2b";
	font-size: 7.2rem;
	color: #0071bc;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.novice_plan .novice_plan_detail_item {
	padding: 20px 40px;
	background: #fff;
	border: 2px solid #0071bc;
	border-radius: 25px;
	width: calc((100% - 70px) /2);
}

.novice_plan .novice_plan_detail_item ._image {
	padding-top: 20px;
}

.novice_plan .novice_plan_detail_item ._title {
	text-align: center;
	font-size: 2.2rem;
	color: #0071bc;
}

/* novice_fee */
.novice_fee_content {
	padding: 40px 0 0;
}

.novice_fee_warp {
	margin-bottom: 30px;
}
.novice_fee_warp ._imagearea {
	padding: 30px;
	background: #008ae1;
}
.novice_fee_warp ._textarea {
	padding: 10px;
	color: #fff;
	font-weight: 700;
	font-size: 2.4rem;
	text-align: center;
	background: #08308c;
	margin-bottom: 30px;
}

/* START novice_voice #Simulation */
#Simulation {
	background-color: #FFF;
	position: relative;
	border: 1px solid #a8a8a8;
	padding: 27px 44px 30px;
	margin-top: 30px;
	margin-bottom: 10px;
}

#Simulation form#regist_form {
	padding-top: 10px;
}

#Simulation .price_search02 {
	width: 570px;
	margin: 0 auto;
}

#Simulation .price_search02 .tit_box {
	margin-bottom: 10px;
}

#Simulation .price_search02 .first_view {
	margin-bottom: 20px;
}

#Simulation .price_search02 table.select_box th {
	display: none;
}

#Simulation .price_search02 table.select_box {
	width: 600px;
}

#Simulation .price_search02 table.select_box td {
	width: 300px;
}

#Simulation .price_search02 .box02 img {
	cursor: pointer;
}

.box03 {
	display: inline-block;
}

#Simulation .price_search02 .box03 {
	padding-left: 80px;
}

#Simulation .price_search02 .perday {
	display: inline-block;
	font-size: 18px;
	vertical-align: middle;
	margin-right: 10px;
}

#Simulation .price_search02 dl {
	display: inline-block;
	border: 5px solid #a4a4a4;
	line-height: 1.1em;
	padding: 15px;
	vertical-align: middle;
	min-width: 125px;
	position: relative;
}

#Simulation .price_search02 dl dt {
	display: inline-block;
	color: #000;
	font-weight: bold;
	font-size: 26px;
	padding-right: 5px;
}
#Simulation .price_search02 dl dd {
	display: inline-block;
	font-weight: bold;
	font-size: 18px;
}
#Simulation label.selectTypeA {
	background: url(/common/images/contents/price/simulator_select_bg_01.png) right center no-repeat;
	width: 270px;
}

#Simulation label.selectTypeA select {
	padding-right: 40px;
	width: 100%;
}

#Simulation .addBtn,#Simulation .delBtn,#Simulation .calculateBtn {
	cursor: pointer;
}

.price_plandate_icon_wrap:after {
	content: "";
	display: block;
	clear: both;
}

.price_plandate_icon {
	width: 230px;
}

.price_plandate_icon .ttl {
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
	font-size: 16px;
}

.price_plandate_table th {
	width: 102px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.price_plandate_table th p {
	background-color: #b5e6ff;
	margin: 3px;
	padding: 6px 6px;
	border-radius: 6px;
}

.price_plandate_table .th02 {
background-color: #ffd48f;
}

.price_plandate_table .th03 {
background-color: #f9c4c7;
}

.price_plandate_table .th04 {
background-color: #cab3f8;
}

.price_plandate_table td {
	padding: 0 3px;
	font-weight: bold;
	font-size: 14px;
	vertical-align: middle;
	text-align: right;
}

.price_simu_left {
	float: left;
	margin-top: 10px;
}

.box0203_wrap {
	width: 264px;
	float: right;
	margin-top: 10px;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.box0203_wrap img {
	margin-bottom: 10px;
}

label.selectTypeA{
	position:relative;
	overflow:hidden;
	display:inline-block;
	background-color:#ffffff;
	border:1px solid #CCC;
	color:#555;
	outline: none;
}

label.selectTypeA:after {
	display: block;
	content: " ";
	position: absolute;
	top: 50%;
	right: 8px;
	width: 15px;
	height: 15px;
	margin-top: -8px;
	background: url(/common/images/cmn/select_yaji_01.png) center center no-repeat;
	pointer-events: none;
	outline: none;
}

label.selectTypeA select {
	cursor:pointer;
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	z-index:1;
	display:block;
	width:130%;
	width:-webkit-calc(100% + 5em);
	margin:0;
	padding:8px 35px 8px 11px;
	background:transparent;
	border:0;
	font-size:13px;
	line-height:1.2em;
}

label.selectTypeA select option {
	outline: none;
}

.novice_fee_simulator ._note {
	text-align: right;
	font-size: 1.3rem;
}

/* END novice_voice #Simulation */

/* novice_voice */
.novice_voice_content {
	padding: 40px 0 0;
}

.novice_voice_list {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.novice_voice_item {
	position: relative;
	width: 400px;
}

.novice_voice_item::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 230px;
	z-index: 10;
}

.novice_voice_item:nth-child(1):before {
	background: url(../../images/contents/novice/novice_voice_item01.png);
	background-size: contain;
}

.novice_voice_item:nth-child(2):before {
	background: url(../../images/contents/novice/novice_voice_item02.png);
	background-size: contain;
}

.novice_voice_item:nth-child(3):before {
	background: url(../../images/contents/novice/novice_voice_item03.png);
	background-size: contain;
}

.novice_voice_item:nth-child(4):before {
	background: url(../../images/contents/novice/novice_voice_item04.png);
	background-size: contain;
}

.novice_voice_item ._textarea {
	position: relative;
	z-index: 10;
	width: 400px;
	height: 150px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	font-size: 1.5rem;
}

.novice_voice_item ._others {
	padding-top: 10px;
}

.novice_voice_item ._others ._text {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	font-weight: 700;
}

.novice_voice_item ._others ._text:nth-child(1) {
	padding-bottom: 5px;
}

.novice_voice_item ._others ._text span {
	position: relative;
	padding: 5px 5px 5px 15px;
	background: #333;
	color: #fff;
	font-weight: 500;
	margin-right: 24px;
	height: 30px;
}

.novice_voice_item ._others ._text span::before{
	content: "";
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	border: 15px solid transparent;
	border-left: 15px solid #333;
}

/* novice_step */
.novice_step_content {
	padding: 40px 0 0;
}

.novice_step_list {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}

.novice_step_item {
	position: relative;
	width: calc((100% - 120px)/4);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.novice_step_item:not(:last-child):after {
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	position: absolute;
	font-size: 3rem;
	font-weight: 900;
	right: -27px;
	top: 42%;
	transform: translateY(-50%);
	color: #009fe8;
}

.novice_step_item ._title span {
	padding-right: 10px;
	color: #009fe8;
}

.novice_step_item ._title {
	color: #009fe8;
	font-size: 2rem;
}

.novice_step_item ._image {
	padding: 10px 0 20px;
}


/* END WSYS-11014 【サイト】初心者必見ページの修正 20240520 N.Kita */
