@charset "utf-8";
/*
==================================================
見積もりシミュレーション Since 2017.08
==================================================
*/

/*　基本の設定
---------------------------------------------------------- */
html {
	font-size: 87.5%;
	overflow-y: scroll;
}

body {
	background: #fff;
	/*
  font-size:14px;
  font-size: 1rem;
  */
	font-size: 16px;
}

@media screen and (min-width: 40em) {
	body {
		font-size: 14px;
	}
}

body {
	font-family: Lato, 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: inherit;
}

ul {
	list-style-type: none;
	margin-left: 0;
}

ul li {
	list-style: none;
}

a {
	color: #175CAA;
	text-decoration: none;
}

a:hover {
	color: #175CAA;
	text-decoration: underline;
}

.button:hover {
	text-decoration: none;
}

button,
input,
textarea {
	outline: none;
}

[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea {
	border-color: #999;
}

[type=color]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=datetime]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus {
	border-color: #333;
}

@media screen and (min-width: 40em) {

	.button-group.stacked-for-medium .button:not(:last-child),
	.button-group.stacked-for-small .button:not(:last-child),
	.button-group.stacked .button:not(:last-child) {
		border-bottom: none;
	}
}

.required-focus {
	border-color: #fc5454;
	background: #ffeaea;
}

/* ライトグレーの背景色 */
.bg-color {
	padding: 16px;
	margin-top: 3rem;
	background: #f5f5f5;
	border-radius: 4px;
}

.bg-color h3 {
	margin-bottom: 0;
}

@media screen and (max-width: 39.9375em) {
	.bg-color {
		margin-left: 1.425rem;
		margin-right: 1.425rem;
		width: calc(100% - 2.85rem);
	}
}

.bg-white {
	margin-top: 3rem;
	padding: 16px;
	background: #fff;
}

/* ラベルの背景色 */
.label-bg {
	padding: 3px 6px 4px;
	border-radius: 2px;
	background: #f5f5f5;
	font-size: 0.8rem;
}

.sp-only {
	display: none;
}

.bold {
	font-weight: bold;
	padding-left: 0;
}

@media screen and (max-width: 63.9375em) {
	.sp-only {
		display: block;
	}
}

select:hover {
	background-color: #FFF7E7;
}

select:focus {
	border: 2px solid #175CAA;
}

label:hover {
	background-color: #FFF7E7;
}

label:focus {
	border: 2px solid #175CAA;
}

/* ボタン
---------------------------------------------------------- */
/* 通常のボタン（背景ベタ塗り・立体感あり） */
.button {
	position: relative;
	top: 0;
	padding: .6em 1em;
	font-weight: bold;
	color: #fff !important;
}

.button:hover {
	top: 1px;
}

.button {
	box-shadow: 0 3px #000;
}

.button:hover {
	background-color: #5c5c5c;
	box-shadow: 0 2px #000;
}

.button.small,
.button.tiny {
	box-shadow: 0 2px #000;
}

.button.small:hover,
.button.tiny:hover {
	box-shadow: 0 1px #000;
}

.button.large {
	padding: .8em 1em;
}

@media screen and (min-width: 40em) {
	.button.large {
		padding: 1.2em 1em;
	}
}

/* 送信などのボタン */
.button.success {
	background-color: #E60033;
	box-shadow: 0 3px #B80029;
}

.button.success:focus {
	background-color: #B80029;
	box-shadow: 0 3px #B80029;
}

.button.success:hover {
	background-color: #EB335C;
	box-shadow: 0 2px #B80029;
}

.button.success.small,
.button.success.tiny {
	box-shadow: 0 2px #1f6b8f;
}

.button.success.small:hover,
.button.success.tiny:hover {
	box-shadow: 0 1px #1f6b8f;
}

/* その他のボタン（緑色） */
.button.warning {
	box-shadow: 0 3px #1e771c;
}

.button.warning:hover {
	background-color: #30ab2e;
	box-shadow: 0 2px #1e771c;
}

.button.warning.small,
.button.warning.tiny {
	box-shadow: 0 2px #1e771c;
}

.button.warning.small:hover,
.button.warning.tiny:hover {
	box-shadow: 0 1px #1e771c;
}

/* 優先度低めのボタン（灰色） */
.button.secondary {
	box-shadow: 0 3px #787878;
}

.button.secondary:hover {
	background-color: #adadad;
	box-shadow: 0 2px #787878;
}

.button.secondary.small,
.button.secondary.tiny {
	box-shadow: 0 2px #787878;
}

.button.secondary.small:hover,
.button.secondary.tiny:hover {
	box-shadow: 0 1px #787878;
}

/* 枠線あり・立体感なしのボタン */
.button.hollow,
.button.hollow:hover {
	top: 0;
	background-color: #fff;
	box-shadow: none;
}

.button.secondary.hollow {
	padding: .4em 1em;
	background-color: #bababa;
	border: 2px solid #bababa;
	color: #fff !important;
}

.button.secondary.hollow:hover,
.button.secondary.hollow:focus {
	background-color: #cacaca;
	border: 2px solid #cacaca;
}

.button.secondary.hollow.active {
	background-color: #fff;
	color: #bababa !important;
}

.button.secondary.hollow.active:hover,
.button.secondary.hollow.active:focus {
	background-color: #eee !important;
}

.button.hollow.dropdown:after {
	margin-left: .857rem;
	border-color: #fff transparent transparent;
}

.button.hollow.dropdown.active:after {
	border-color: #bababa transparent transparent;
}

/* アコーディオン */
.accordion {
	background-color: transparent;
}

.accordion>hr {
	margin: .857rem 0;
	border-bottom: 2px solid #EEEEEE;
}

.accordion_wrap {
	margin-top: 1rem;
}

.accordion_wrap>h3,
.accordion_wrap>.accordion_btn {
	display: inline;
}

.accordion_wrap>.accordion_btn {
	margin-left: 1rem;
}

.accordion_btn a.active::after,
.multidomain_btn a.active::after {
	transform: rotate(180deg);
	margin-left: .4rem !important;
}

.button-toggle.button::after {
	transform: rotate(180deg);
	margin-left: .4rem !important;
}

.expanded .button-toggle.button::after {
	transform: rotate(45deg);
	top: 1px;
}

.button-toggle.button {
	margin-bottom: 0;
	margin-right: 2rem;
}

.accordion_trigger {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.arrow {
	display: inline-block;
	width: 10px;
	height: 10px;
	border: solid #999999;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	margin-left: 10px;
	/* 矢印とテキストの間の間隔 */
}

.arrow.active {
	transform: rotate(-135deg);
}

.accordion {
	max-height: 3500px;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
	display: none;
}

.accordion.active {
	opacity: 1;
	transition: max-height 0.5s ease-in, opacity 0.5s ease-in, padding 0.5s ease-in;
	padding: 15px;
	display: block;
}

/* エラーテキスト */
.error.alert {
	color: #fc5454;
}

p.error.alert {
	display: block;
	margin-bottom: 0;
}

.error.alert:empty {
	display: none;
}

/* ラベル */
.label.success,
.label.alert {
	margin-left: .5rem;
	padding: .2rem .3rem .3rem;
	color: #fff;
	border-radius: 4px;
	font-size: .714rem;
	font-weight: bold;
}

.label.success {
	background-color: #247ccf;
}

/* 見出し */
h1,
h2 {
	font-size: 1rem;
}

.ttl-h2 {
	font-size: 2.286rem;
}

.ttl-h3 {
	font-size: 2rem;
}

h3 {
	margin-top: 3rem;
	margin-bottom: .857rem;
	font-size: 1.7rem;
	font-weight: bold;
}

h3 small {
	margin-left: 1em;
	color: #666;
	font-weight: normal;
	font-size: .85rem;
}

.bg-color h3:first-child {
	margin-top: 0;
}

.item_sub_title {
	margin-bottom: 0;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 2.3;
	padding-top: 5px;
}

.item_title_otheroption,
.item_title_multi_otheroption {
	font-size: 1.8rem;
}

.ttl-h4 {
	font-size: 1.143rem;
}

@media screen and (max-width: 39.9375em) {
	.ttl-h2 {
		font-size: 1.7rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.item_title_otheroption,
	.item_title_multi_otheroption {
		font-size: 1.5rem;
	}
}

/* item */
.item-line {
	display: block;

}

.plan-name {
	text-align: left;
	margin-left: 50px;
}

.item-line .baseplan-label {
	display: inline-block;
	width: 10em;
	text-align: left;
	text-indent: 0;
}

.item-line .baseplan-label_l {
	display: inline-block;
	width: 11.3em;
	font-size: 1.2rem;
	text-align: left;
	text-indent: 0;
}

.item-line .label-bg {
	margin-right: 1em;
}

/* table */

#menuBar p {
	margin-bottom: .2em;
}

#menuBar p.month {
	padding-left: 3rem;
	text-indent: -4rem;
}

#menuBar p span {
	padding-left: 1em;
}

#menuBar table td {
	font-size: 1rem;
	padding: .5rem 1em;
	vertical-align: top;
	border: 1px solid #e0e0e0;
}

#menuBar table thead td {
	background: #f5f5f5;
	text-align: center;
}

#menuBar table tbody td {
	background: #fff;
}

#menuBar .ttl-td {
	margin-bottom: 0;
	padding: .5rem 1em;
	border-bottom: 1px solid #e0e0e0;
	background-color: #FFC539;
	font-size: 1rem;
	line-height: 1;
	text-align: center;
	font-weight: bold;
}

#menuBar table tbody .block {
	padding: 0 1em;
}

#plan_name {
	font-weight: bold;
	padding: .5rem 1em 0;
}

@media screen and (min-width: 64em) {
	#menuBar table tbody td {
		width: 18%;
		padding: .5rem 0 0;
	}

	#menuBar table tbody td.td-plan {
		width: 28%;
		padding-top: 0;
	}

	#menuBar table tbody td.td-multidomain {
		padding-top: 0;
	}

	#menuBar table tbody td.td-multidomain .block {
		float: left;
		vertical-align: top;
		padding: .5rem 1em;
	}

	#menuBar table tbody td.td-multidomain .block:nth-child(2) {
		min-height: 10em;
	}

	#menuBar table tbody td.td-multidomain .block-inside {
		display: block;
		padding-left: 0;
	}
}

@media screen and (max-width: 63.9375em) {
	#menuBar table {}

	#menuBar table tbody td {
		padding: 0;
	}

	#menuBar .block {
		display: inline-block !important;
		padding: .5rem 1em !important;
		vertical-align: top;
	}

	#menuBar p.month {}

	#menuBar table tbody td.td-plan .block {}

	#menuBar table tbody td.td-plan .block:last-child {}

	#menuBar table tbody td.td-option .block {
		width: 100%;
	}

	#menuBar table tbody td.td-option .block:last-child {
		text-align: left;
	}

	#menuBar table tbody td.td-domain .block {
		width: 100%;
	}

	#menuBar table tbody td.td-domain .block:last-child {}

	#menuBar table tbody td.td-multidomain .block {
		width: 100%;
	}

	#menuBar table tbody td.td-multidomain .block-inside {
		display: inline-block;
		padding-left: 0;
		width: 63%;
	}

	#menuBar table tbody td.td-multidomain .block-inside:nth-child(even) {
		width: 37%;
		text-align: right;
	}

	#menuBar table tbody td.td-multidomain .block:nth-child(3) p {
		display: inline-block;
		width: 49.5%;
	}

	#menuBar table tbody td.td-multidomain .block:nth-child(3) p:first-child {
		width: 100%;
	}

	#menuBar table tbody td.td-multidomain .block:nth-child(3) p:nth-child(3) {
		text-align: right;
	}
}

@media screen and (max-width: 39.9375em) {
	#menuBar table {
		margin-bottom: .5rem;
	}
}

/* テキスト入力・セレクト
---------------------------------------- */
input,
textarea,
select {
	outline: none;
	margin-bottom: 3px !important;
	padding: 8px;
	border: 2px solid #D7D7D7;
	border-radius: 4px;
	background-color: #fff;
}

input,
textarea,
select:hover {
	transition: background-color .25s ease-out, color .25s ease-out;
	border: 2px solid #FFC539;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus {
	border: 2px solid #175CAA;
}

.required input:focus {
	border: 2px solid #fc5454;
}

.domain_type {
	height: 4rem;
}

/* セレクト */
select {
	padding: 0 20px 0 10px;
	-webkit-appearance: button;
	appearance: none;
	text-overflow: clip;
	background: url(../images/ico_arrow1.png) #fff no-repeat calc(100% - 8px) 50%;
	background-size: 12px;
	border-radius: 4px;
}

@media screen and (min-width: 64em) {
	select {
		width: 34.5rem;
	}
}

/* for firefox */
select {
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
}

/* for Safari */
select {
	-webkit-appearance: none;
}

/* for ie */
select::-ms-expand {
	display: none;
	background: none;
}


/* リンク 矢印付き */
.a-link.l-arrow {
	padding-left: 15px;
}

.a-link {
	position: relative;
	padding: 2px;
	display: inline-block;
}

.a-link.l-arrow::before {
	position: absolute;
	content: ">";
	font-weight: 900;
	left: 0;
	top: 2px;
	transition: 0.35s;
}

.a-link.l-arrow:hover::before {
	left: 5px;
	transition: 0.35s;
}

/* ラジオボタン・チェックボックス
---------------------------------------- */
input[type=radio],
input[type=checkbox] {
	display: inline-block;
	margin-right: 6px;
	display: none;
	margin: 0;
}

input[type=radio]+label,
input[type=checkbox]+label {
	position: relative;

	display: inline-block;
	padding: 15px 10px 15px 30px;
	margin: 0;
	font-size: 16px;
	line-height: 1.1;

	cursor: pointer;
}

input[type=radio]+label::before,
input[type=checkbox]+label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;

	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

input[type=radio]+label::before {
	border: 2px solid #d7d7d7;
	border-radius: 50%;
	background: #fff;
}

input[type=checkbox]+label::before {
	border: 2px solid #eee;
	background: #fff;
	border-radius: 4px;
}

input[type=radio]:checked+label::after,
input[type=checkbox]:checked+label::after {
	content: "";
	position: absolute;
	top: 50%;

	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}

input[type=radio]:checked+label::after {
	left: 10px;

	width: 10px;
	height: 10px;
	margin-top: -5px;

	background-color: #FFC539;
	border-radius: 8px;
}

input[type=checkbox]:checked+label::before {
	background: #FFC539;
}

input[type=checkbox]:checked+label::after {
	left: 10px;

	width: 12px;
	height: 6px;
	margin-top: -4px;

	border-left: 3px solid #0A0A0A;
	border-bottom: 3px solid #0A0A0A;

	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

input[type=radio]:disabled+label {
	color: #888;
	cursor: not-allowed;
}

/* 契約プラン */
.field-plan>.row {
	padding-left: 1.425rem;
	padding-right: 1.425rem;
}

@media screen and (max-width: 320px) {
	.field-plan>.row {
		padding-left: .7rem;
		padding-right: .7rem;
	}
}

.field-plan label {
	position: relative;
	border: 2px solid #EEEEEE;
	border-radius: 6px;
	margin-left: -1px;
	margin-bottom: 1rem;
	background: #F5F5F5;
	color: #0A0A0A;
	font-size: 1.429rem;
	line-height: 2.6;
	font-weight: bold;
	text-align: center;
}

@media screen and (min-width: 64em) {

	.field-plan label,
	.field-plan label.active {
		border: 2px solid #e0e0e0;
	}

	.item-line {
		text-wrap: nowrap;
	}

	.item-line .baseplan-label {
		width: 12em;

	}

	.field-plan .item .num {
		font-size: 1.75rem;
		;
	}

	.label-bg {
		font-size: 1rem;
	}
}

.field-plan label.active {
	border: 2px solid #FFC539;
}

.field-plan label.active,
.field-option label.active {
	color: #0a0a0a;
	background: #FFF7E7;
	transition: background-color .25s ease-out, color .25s ease-out;
}

.field-plan label.active .item {
	transition: background-color .25s ease-out, color .25s ease-out;
	border-radius: 6px;
}

.field-plan label.active .item .label-bg {
	background: #FFF7E7;
}

.field-option label:hover .label,
.field-option label.active .label {
	color: #f90;
}

.field-plan .item {
	display: block;
	padding: .857rem 1.714rem;
	line-height: 1.4;
	border-top: 2px solid #e0e0e0;
	font-size: 1.15rem;
	color: #333;
	background: #fff;
	text-align: left;
	font-weight: normal;
	text-wrap: nowrap;
}

.field-plan label.active .item:nth-child(3n-1) {
	border-top: 2px solid #e0e0e0;
	border-radius: 0;
}

.field-plan label:hover {
	color: #0a0a0a;
	background-color: #FEEAC4E7;
	transition: background-color .25s ease-out, color .25s ease-out;
	border: 2px solid #FFC539;
}

.field-option label:hover {
	color: #0a0a0a;
	background-color: #FEEAC4E7;
	transition: background-color .25s ease-out, color .25s ease-out;
	border: 2px solid #FFC539;
}

.field-plan label:hover .item {
	background: #fffbf3;
	transition: background-color .25s ease-out, color .25s ease-out;
}

.field-plan label:not(.active):hover .item .label-bg {
	background: #FEEAC4E7;
}

.field-plan .item:nth-child(3n) {
	/* text-indent:-2rem; */
	padding-top: .5rem;
	border-radius: 0;
}

.field-plan label.active .item:nth-child(3n) {
	border-radius: 0;
}

.field-plan .item:nth-child(3n-2) {
	padding: .857rem 1.714rem;
	border-radius: 0 0 6px 6px;
}

.field-plan label.active .item:nth-child(3n-2) {
	padding: .857rem 1.714rem;
	border-radius: 0 0 6px 6px;
}

.field-plan .item .num {
	font-size: 1.4rem;
	font-weight: bold;
	padding: 0 .4rem;
	width: 5rem;
	display: inline-block;
	text-align: right;
}

.field-plan .item .num_l {
	font-size: 2rem;
	font-weight: bold;
	padding: 0 .4rem;
	vertical-align: -4px;
	text-align: right;
}

.field-plan .item:nth-child(3n-1) .num {
	width: 5rem;
	display: inline-block;
}

.field-plan .item:nth-child(3n-2) .num_l {
	width: 5rem;
	display: inline-block;
}

.field-plan .item:nth-child(3n) .num {
	width: 5rem;
	display: inline-block;
}

.field-plan .item:nth-child(3n) .num_l {
	width: 7rem;
	display: inline-block;
}

.plan-card {
	margin: 0 5px;
}

/* オプション */
.field-option .columns {
	height: 4.5rem;
}

.field-option label {
	position: relative;
	height: 4rem;
	margin-bottom: 1rem;
	padding: .7rem 1rem 0 4rem;
	line-height: 2.5rem;
	border-radius: .3rem;
	border: #D7D7D7 2px solid;
	background: #fff;
	color: #0a0a0a;
	font-size: 1.143rem;
}

.field-option label .float-right {
	font-size: 1rem;
}

.field-plan label::after,
.field-option label::after {
	position: absolute;
	width: 24px;
	height: 24px;
	left: 20px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	border-radius: 3px;
	content: '';
}

.field-plan label::after {
	top: 14px;
	border: #D7D7D7 2px solid;
}

.field-option label::after {
	top: 15px;
	border: #D7D7D7 2px solid;
}

.field-option label.active::after,
.field-plan label.active::after {
	/* width: 23px;
	height: 15px;
	border-left: 5px solid #0a0a0a;
	border-bottom: 5px solid #0a0a0a;
	border-top: none;
	border-right: none;
	border-radius: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg); */
	border: none;
	background-color: #FFC539;
	background: url(../images/ico_check.png) #FFC539 no-repeat 50%;
	background-size: 80%;
	width: 23px;
}


@media screen and (min-width: 64em) {
	.field-option .columns {
		height: 6.5rem;
	}

	.field-option label {
		height: 5rem;
		padding-top: 0;
		line-height: 5rem;
		font-size: 1.143rem;
	}

	.field-option label::after {
		top: 24px;
	}
}

@media screen and (max-width: 39.9375em) {
	.field-option .columns {
		height: 7rem;
	}

	.field-option label {
		height: 6rem;
	}
}

/* その他オプション */
ul.radio_list,
ul.select_list {
	margin-bottom: 0;
	margin-left: 0;
}

ul.select_list {
	margin-top: -.3rem;
	margin-bottom: -.3rem;
}

ul.radio_list select {
	width: 5rem;
}

ul.select_list select {
	width: 6rem;
}

ul.radio_list .price,
ul.select_list .price {
	padding-left: 1em;
	font-size: 1rem;
}

ul.select_list li {
	padding-top: 12px;
	padding-bottom: 12px;
	clear: right;
}

#multidomain_box .bg-white ul.select_list li {
	text-indent: 0;
}

.bg-white ul.select_list li {
	display: flex;
	align-items: center;
	gap: 5px
}

#multidomain_box .bg-white ul.select_list li select {
	margin-left: auto
}

#multidomain_box ul.select_list {
	margin-bottom: .857rem;
}

#multidomain_box ul.select_list li {
	display: flex;
	align-items: center;
	gap: 5px;
	justify-content: space-between;
}

#multidomain_box ul.select_list select {
	margin-left: 1rem;
	margin-right: 1rem;
}

#multidomain_box .select_list.medium-12.columns li {
	justify-content: flex-start
}

@media screen and (min-width: 64em) {
	ul.select_list li {}

	#multidomain_box ul.select_list li {
		padding-right: 0;
	}
}

.item_message {
	margin-bottom: 0;
	font-size: .857rem;
}

.estimate_btn {
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.clear_btn {
	padding-bottom: 2rem;
	font-size: .857rem;
}

.clear_btn>a::before {
	margin-right: .3rem;
	vertical-align: middle;
	content: url(../images/ico_reset.png);
}

.site-seal {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.site-seal .seal {
	margin-right: 1rem;
}

.site-seal .seal:last-child {
	margin-right: 0;
}

.multidomain_btn {
	padding-bottom: 3rem;
}

.multidomain_btn .button {
	vertical-align: 0;
}

li.list-price-info {
	margin-left: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 3px;
	border: 1px solid #cacaca;
	font-size: 14px;
	background-color: #fff;
}

li.list-price-info ul {
	margin-left: 0;
}

li.list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	margin-left: 1em;
}

li.list-item div {
	width: 50%;
}

li.list-item input[type=text] {
	width: 5em;
	display: inline;
}

/* ヘッダー
---------------------------------------------------------- */
.global-header {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.global-header p {
	margin-bottom: 0;
}

.global-header img {
	zoom: .8;
}

.nav_bar {
	text-align: center;
	font-size: 1rem;
	color: #999;
	margin-top: 2rem;
	margin-bottom: 3rem;
	padding-left: 1.425rem;
	padding-right: 1.425rem;
}

.nav_bar .columns {
	position: relative;
	height: 2rem;
	line-height: 2rem;
	margin-bottom: 0;
	background: #f1f1f1;
}

.nav_bar .active {
	background: #414141;
	color: #fff;
}

.nav_bar .columns::before,
.nav_bar .columns::after {
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	border-style: solid;
	border-width: 1rem 0 1rem 8px;
	z-index: 2;
	content: '';
}

.nav_bar .columns::before {
	right: -9px;
	border-color: transparent transparent transparent #fff;
}

.nav_bar .columns::after {
	right: -8px;
}

.nav_bar .columns::after {
	border-color: transparent transparent transparent #f1f1f1;
}

.nav_bar .columns.active::after {
	border-color: transparent transparent transparent #414141;
}

.nav_bar .columns:last-child::after {
	display: none;
}

@media screen and (min-width: 40em) {
	.global-header {
		padding-bottom: 4rem;
	}

	.global-header img {
		zoom: 1;
	}

	.nav_bar .columns {
		height: 2.714rem;
		line-height: 2.714rem;
	}

	.nav_bar .columns::before,
	.nav_bar .columns::after {
		border-width: 1.357rem 0 1.357rem 8px;
	}
}

.campaign {
	margin-bottom: 1rem;
}

/* フッター
---------------------------------------------------------- */
#footer-fixed {
	position: fixed;
	z-index: 9999;
	width: 100%;
}

.footer-price {
	padding: 1rem 0 0;
}

.footer-price small:not(:first-child) {
	margin-left: 2rem;
}

.footer-price .total {
	max-width: 100%;
	background: #FFC539;
}

.footer-price .term {
	display: inline-block;
	margin: 0 1rem;
	white-space: nowrap;
	line-height: 1;
	font-size: 1.15rem;
}

.footer-price .num {
	margin: 0 0 0 .5rem;
	font-size: 1.5rem;
	font-weight: bold;
}

#menuBar {
	background: #fff;
}

.button-toggle {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1rem;
	padding: .85em 1em;
	/*
	-webkit-appearance: none;
	*/
	transition: background-color .25s ease-out, color .25s ease-out;
	font-size: .9rem;
	line-height: 1;
	text-align: center;
	background-color: #FFF7E7;
	border: 2px solid #FFC539;
	border-radius: 4px 4px 0 0;
	box-shadow: none !important;
	top: 0 !important;
	border-bottom: none !important;
	color: #333 !important;
}

.button-toggle:hover {
	text-decoration: none;
	color: #333;
	background-color: #FEEAC4E7;
}

.button-toggle.dropdown:after {
	margin-left: .857rem;
	border-color: #333 transparent transparent;
}

.global-footer {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	background: #414141;
	color: #f5f5f5;
	font-size: .857rem;
	text-align: center;
}

.global-footer p {
	margin-bottom: 0;
}

#bg {
	display: none;
}

@media screen and (min-width: 40em) {
	#footer-fixed {
		bottom: 3rem;
	}

	.footer-price .total {
		padding: 1rem 0;
	}

	.footer-price table {
		margin-bottom: 2rem;
	}

	.global-footer {
		text-align: left;
		padding: .857rem 0;
	}

	.contact {
		text-wrap: nowrap;
	}

	.global-footer .contact>p {
		display: inline;
		margin-right: 1em;

	}

	.global-footer .copyright {
		text-align: right;
		text-wrap: nowrap;
	}
}

#menuBar table thead td {
	background-color: #FFC539;
}

#menuBar {
	display: none;
	padding-top: 16px;
	background-color: #FFF7E7;

}

#menuBar.expanded {
	display: block;
}

@media screen and (max-width: 63.9375em) {
	.footer-price .term {
		margin: 0 .5rem;
		padding-bottom: .5rem;
	}

	.footer-price .term.price-title {
		width: 100%;
	}

}

@media screen and (max-width: 39.9375em) {
	#footer-fixed {
		bottom: 4.4rem;
	}

	#footer-fixed.expanded {
		bottom: 0;
		max-height: 100%;
		overflow-y: auto;
	}

	#term-6,
	#term-1 {}

	#plan_name {
		margin-bottom: -.5em !important;
	}

	.footer-price {}

	.footer-price #total_price36,
	.footer-price #total_price24,
	.footer-price #total_price06,
	.footer-price #total_price12,
	.footer-price #total_price01 {
		font-size: 1.3rem;
		font-weight: bold;
	}

	.footer-price .total {
		padding: .5rem 0;
	}

	.global-footer {
		padding: .5rem 0;
	}

	.global-footer p {
		line-height: 1.4;
	}

	/* クリックで表示切り替え */
	#term-6,
	#term-1 {
		display: none;
	}

	#bg.expanded,
	#term-36.expanded,
	#term-24.expanded,
	#term-6.expanded,
	#term-1.expanded {
		display: inline-block;
	}

	#bg {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 998;
		background: rgba(0, 0, 0, .5);
	}

	#footer-fixed.no-price {
		position: static;
	}
}

#main_wrap {
	padding-bottom: 250px;
}

label {
	cursor: pointer;
}

/* privacy */
.privacy {
	margin-top: 4rem;
	margin-bottom: 4rem;
	font-size: .857rem;
}

.privacy a {
	margin: 0 1rem;
	white-space: nowrap;
}

.button.dropdown:after {
	top: 4px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border: solid #999999;
	border-width: 0 3px 3px 0;
	transform: rotate(-135deg);
	transition: transform 0.3s ease;
	margin-left: 10px;
}

/* 確認画面
---------------------------------------------------------- */
.send_box hr {
	margin-top: 0;
	margin-bottom: .857rem;
}

.radio_list_inline_send {
	margin-bottom: .857rem;
	display: flex;
	justify-content: flex-start;
}

.radio_list_inline_send dt {
	padding: 0 1.425rem;
	width: 15rem;
}

.radio_list_inline_send dd {
	padding: 0 0.5em;
}

.radio_list_inline_send input[type=radio]+label {
	width: 10.5rem;
}

.radio_list_inline_send2 input[type=checkbox]+label {
	padding-top: .857rem;
	padding-bottom: .857rem;
}

.radio_list_inline_send2 p {
	margin-bottom: 0;
}

.radio_list_inline_send2 .item_send_text {
	border: 2px solid #D7D7D7;
	border-radius: 4px;
	box-shadow: none;
}

.send_box dt {
	margin-bottom: 0;
	line-height: 2.3;
}

.send_btn {
	margin-bottom: 10rem;
}

.button.large.custom-cvbtn {
	line-height: 1.5;
	line-height: 1.5;
	padding: 0.2em 1em;
}

.button.large {
	font-size: 1.45rem;
}

.custom-cvbtn .mini {
	font-size: 0.75em;
}

@media screen and (max-width: 39.9375em) {
	.radio_list_inline_send {
		flex-wrap: wrap;
	}

	.radio_list_inline_send dt {
		width: 100%;
	}

	.radio_list_inline_send dd {
		width: 100%;
		padding-left: 1em;
	}

	.radio_list_inline_send2 p {
		margin-left: 1em;
		margin-right: 1em;
	}
}

/* お見積もり完了
---------------------------------------------------------- */
#done,
#alert,
#loading {
	display: inline-block;
	padding: 50px 60px;
	position: relative;
	background: #ffffff;
	border: 2px solid #eeeeee;
}

#done {
	max-width: 40em;
}

#loading {
	text-align: center;
}

#done h2,
#alert h2 {
	margin-bottom: 1em;
	text-align: center;
	font-size: 1.71rem;
	font-weight: bold;
	text-align: center;
}

#loading h2 {
	margin-bottom: 1em;
	font-weight: bold;
}

.close_icon {
	position: absolute;
	top: 20px;
	right: 20px;
}

.close_icon img {
	cursor: pointer;
}

@media screen and (max-width: 39.9375em) {

	#done,
	#alert,
	#loading {
		margin: 5%;
		padding: 20px;
	}

	#done h2,
	#alert h2 {
		font-size: 1.286rem;
	}

	.close_icon {
		zoom: .5;
	}
}

.dialog-link {
	display: flex;
	justify-content: center;
	gap: 30px;
}

/* フローティングバナー  */
.float-banner {
	position: fixed;
	z-index: 1;
}

.float-banner>div {
	position: relative;
	display: none;
}

#side-banner {
	display: block;
	top: 180px;
	left: 0;
}

#side-banner .banner {
	margin-bottom: 1rem;
}

#side-banner .img {
	filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, .3));
	-webkit-filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, .3));
}

#side-banner .close {
	display: block;
	position: absolute;
	width: 13px;
	height: 13px;
	top: 3px;
	right: 3px;
	background: #fff;
	text-align: center;
	font-size: .5rem;
	color: #333;
	cursor: pointer;
}


/* リンクの矢印 */
a.link_arrow {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
}


a.link_arrow:before {
	display: inline-block;
	width: .4em;
	height: .4em;
	margin: 0 .4em 0 0;
	vertical-align: .2em;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	content: '';
	border-top: .2em solid #165caa;
	border-right: .2em solid #165caa;
}