@charset "utf-8";

:root {
	--common_border: #d1d3e2;
	--table_border: #cccccc;
	--common_text: #212529;
	--form_text: #6e707e;
	--progress_blue: #2589d0;
	--progress_gray: #d6dde3;
	--button_red: #d65353;
	--button_orange: #b2812c;
	--button_green: #64b740;
	--button_blue: #4e73df;
	--button_gray: #858796;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 15px;
}

body {
	background-color: #f8f9fa;
	color: var(--common_text);
	line-height: 100%;
	font-family: sans-serif !important;
}

table {
	border: 0;
	border-collapse: collapse;
	table-layout: fixed;
}
td {
	word-break: break-all;
	word-wrap: break-word;
}

a {
	color: #0d6efd;
	text-decoration: underline;
}

p {
	margin-bottom: 0.5em;
}

img {
	border: 0;
}

hr {
	width: calc(100% - 1rem);
	margin: 0 auto 1.5rem;
	border-style: solid;
	border-color: #ddd;
	border-width: 1px 0 0 0;
}

fieldset {
	width: 100%;
	margin-bottom: 1.5rem;
	padding: 0 0.25rem;
	border: none;
}
legend {
	margin-bottom: 1rem;
	font-size: 1rem;
	text-indent: 0.25rem;
}
fieldset p {
	padding: 0 0.25rem;
	font-size: 0.85rem;
}





input[type='text'],
input[type='number'],
input[type='tel'],
input[type='date'],
input[type='time'],
input[type='email'],
input[type='password'],
select,
textarea {
	padding: 0.75rem;
	background: #fff;
	border: solid 1px var(--common_border);
	border-radius: 0.35rem;
	-webkit-border-radius: 0.35rem;
	-moz-border-radius: 0.35rem;
	color: var(--form_text);
	font-family: sans-serif;
	font-size: 1rem;
	transition: 0.2s;
}
input[type='text'],
input[type='number'],
input[type='tel'],
input[type='date'],
input[type='time'],
input[type='email'],
input[type='password'] {
	line-height: 100%;
}
input[type='text']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='date']:focus,
input[type='time']:focus,
input[type='email']:focus,
input[type='password']:focus,
select:focus,
textarea:focus {
	box-shadow: 0 0 0.15rem 0.25rem rgba(64, 132, 234, 0.5);
}
option {
	font-family: sans-serif;
}
option:disabled {
	color: var(--table_border);
}
label {
	color:#606365;
}
input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}
textarea {
	line-height: 150%;
}
button {
	padding: 1rem 0;
	border: 0 none;
	border-radius: 0.25rem;
	-webkit-border-radius: 0.25rem;
	-moz-border-radius: 0.25rem;
	color: #fff;
	font-size: 1rem !important;
	line-height: 100%;
	font-family: sans-serif !important;
	cursor: pointer;
	transition: 0.2s;
}
button:hover {
	transition: 0.2s;
}
input[type='text']:disabled,
input[type='number']:disabled,
input[type='tel']:disabled,
input[type='date']:disabled,
input[type='time']:disabled,
input[type='email']:disabled,
input[type='password']:disabled,
select:disabled,
textarea:disabled,
button:disabled {
	opacity: 0.5;
}



main {
	display: flex;
	max-width: 960px;
	margin: 0 auto;
}
article {
	display: block;
	width: 100%;
	padding: 1rem 0;
}
article > h1 {
	width: 100%;
	margin-bottom: 1.5rem;
	padding: 0 0.5rem;
	font-size: 1.5rem;
	line-height: 100%;
	font-weight: normal;
}
section {
	margin-bottom: 10px;
}
section h2 {
	margin-bottom: 1rem;
	padding: 0 0.5rem;
	color: rgba(13, 110, 253, 1);
	font-size: 1.2rem;
	line-height: 100%;
	font-weight: normal;
}
section p {
	padding: 0 0.5rem;
	line-height: 150%;
}
section p.bottom_blank {
	margin-bottom: 2rem;
}

ul.progress {
	display: flex;
	justify-content: center;
	list-style-type: none;
	margin: 1rem 0;
	padding: 0;
}
ul.progress li {
	display: flex;
	flex: 1 1;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	color: #969da3;
	font-size: 0.8rem;
}
ul.progress li::before {
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	margin-bottom: 0.55rem;
	background-color: #fff;
	border: 2px solid var(--progress_gray);
	border-radius: 50%;
	content: '';
}
ul.progress li.prev,
ul.progress li.current {
	color: var(--progress_blue);
}
ul.progress li.prev::before,
ul.progress li.current::before {
	border-color: var(--progress_blue);
}
ul.progress li:not(:last-child)::after {
	position: absolute;
	top: 0.6rem;
	left: 50%;
	z-index: -1;
	width: 100%;
	height: 2px;
	background-color: var(--progress_gray);
	content: '';
}
ul.progress li.current::before,
ul.progress li.prev::after {
	background-color: var(--progress_blue);
}

dl.check_text_block {
	width: calc(100% - 1rem);
	margin: 0 auto 1.5rem;
	padding: 0.75rem;
	background: #fff;
	border: solid 1px var(--common_border);
	border-radius: 0.35rem;
	-webkit-border-radius: 0.35rem;
	-moz-border-radius: 0.35rem;
}
dl.check_text_block dt {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	font-weight: normal;
}
dl.check_text_block dd {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	font-weight: normal;
	text-indent: 0.25rem;
	opacity: 0.9;
}
dl.check_text_block dd:last-child {
	margin-bottom: 0;
}

.flex_outer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex_outer:not(:last-child) {
	margin-bottom: 1rem;
}
.designed_input,
.designed_select {
	position: relative;
	width: calc(50% - 0.5rem);
	margin: 0 0.25rem;
}
@media screen and (max-width: 768px) {
	.flex_outer {
		display: block;
	}
	.flex_outer:not(:last-child) {
		margin: 0;
	}
	.designed_input,
	.designed_select {
		width: calc(100% - 0.5rem);
		margin: 0 auto 1rem;
	}
}

.designed_input input,
.designed_select select {
	width: 100%;
	padding: 1.625rem 0 0.625rem;
	color: #1f2327;
	text-indent: 0.25rem;
	height:70px;
	-webkit-appearance: none;
}
.designed_input label,
.designed_select label {
	position: absolute;
	top: 0.35rem;
	left: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.8;
}

.check_caution_block {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #fff3cd;
	border: solid 2px #ffe69c;
	border-radius: 0.25rem;
	-webkit-border-radius: 0.25rem;
	-moz-border-radius: 0.25rem;
}
.check_caution_block:last-child {
	margin-bottom: 0;
}
.check_caution_block ul {
	margin: 0 0 1rem 1rem;
}
.check_caution_block ul li {
	color: #654b01;
	font-size: 0.95rem;
	line-height: 150%;
}
.check_caution_block input[type='checkbox'] {
	display: none;
}
.check_caution_block input[type='checkbox'] + label {
	position: relative;
	display: block;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.75);
	border: solid 1px rgba(0, 0, 0, 0.5);
	font-size: 1.1rem;
	text-indent: 1.5rem;
	cursor: pointer;
}
.check_caution_block input[type='checkbox'] + label:before {
	content: '';
	position: absolute;
	top: 0.8rem;
	left: 0.75rem;
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background: #fff;
	border: solid 2px #9c9ea8;
	transition: 0.1s;
}
.check_caution_block input[type='checkbox']:checked + label:before {
	top: 0.4rem;
	left: 1rem;
	width: 0.6rem;
	background: transparent;
	border-top-color: transparent;
	border-left-color: transparent;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.transfer_detal_block {
	width: 100%;
	margin-bottom: 1.5rem;
	background: #fff3cd;
	border: solid 2px #ffe69c;
	border-radius: 0.25rem;
	-webkit-border-radius: 0.25rem;
	-moz-border-radius: 0.25rem;
}
.transfer_detal_block th,
.transfer_detal_block td {
	padding: 0.8rem;
	font-size: 1rem;
	line-height: 135%;
	vertical-align: top;
}
.transfer_detal_block th {
	width: 9rem;
	font-weight: bold;
	text-align: left;
}
.transfer_detal_block td {
	width: calc(100% - 9rem);
	font-weight: normal;
}











.button_block {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	width: 100%;
	padding: 1rem 0.5rem 0;
}
.button_block_1 {
	display: block;
	text-align: center;
}
.button_block button {
	width: calc(50% - 0.5rem);
}
@media screen and (max-width: 768px) {
	.button_block {
		display: block;
		padding: 0;
		text-align: center;
	}
	.button_block button {
		width: calc(100% - 1rem);
	}
	.button_block button:last-child {
		margin-top: 0.5rem;
	}
}



footer {
	padding: 5rem 0 2rem;
	text-align: center;
}
footer p {
	color: rgba(33, 37, 41, 0.75);
	font-size: 1rem;
}





/* 領収書 */
body#receipt {
	background: transparent;
	font-family: 'BIZ UDPGothic' !important;
	letter-spacing: -0.01em;
	line-height: 100%;
}
body#receipt #container {
	width: 750px;
	margin: 0 auto;
	background: #fff;
}
body#receipt #receipt_header,
body#receipt #receipt_footer {
	width: 750px;
	height: 38px;
}
body#receipt #receipt_header {
	margin-bottom: 20px
}
body#receipt #receipt_footer {
	margin-top: 20px;
}
body#receipt #receipt_main {
	width: 750px;
	padding: 0 40px;
}
body#receipt #receipt_block1 {
	position: relative;
	width: 100%;
	height: 340px;
}
body#receipt #receipt_block1_left {
	position: absolute;
	top: 0;
	left: 0;
	width: 350px;
	height: 100%;
}
body#receipt #receipt_block1_left table {
	width: 100%;
}
body#receipt #receipt_block1_left table.date_box {
	margin: 25px 0 40px;
}
body#receipt #receipt_block1_left table.date_box th,
body#receipt #receipt_block1_left table.date_box td {
	height: 1.5rem;
	font-size: 1rem;
}
body#receipt #receipt_block1_left table.date_box th {
	font-weight: normal;
	text-align: right;
}
body#receipt #receipt_block1_left table.name_box {
	position: relative;
	width: 100%;
}
body#receipt #receipt_block1_left table.name_box th,
body#receipt #receipt_block1_left table.name_box td {
	vertical-align: top;
}
body#receipt #receipt_block1_left table.name_box th {
	padding-top: 0.25rem;
	padding-right: 1rem;
	font-size: 1.1rem;
	font-weight: normal;
	text-align: right;
	vertical-align: top;
}
body#receipt #receipt_block1_left table.name_box tr:first-child th {
	padding-top: 0.4rem;
	height: 6rem;
}
body#receipt #receipt_block1_left table.name_box td {
	font-size: 1.5rem;
	line-height: 100%;
}
body#receipt #receipt_block1_left table.name_box tr:first-child td {
	line-height: 135%;
}
body#receipt #receipt_block1_left table.name_box td address {
	display: inline-block;
	margin-top: 0.35rem;
	font-size: 0.8rem;
	font-style: normal;
}
body#receipt #receipt_block1_left table.name_box td span.stamp {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-block;
}
body#receipt #receipt_block1_left table.name_box td span.stamp img {
	width: 80px;
	height: 80px;
}
body#receipt #receipt_block1_right {
	position: absolute;
	top: 0;
	right: 0;
	width: 275px;
	height: 100%;
}
body#receipt #receipt_block1_right #receipt_stamp_box {
	position: absolute;
	top: 0;
	right: 20px;
	width: 80px;
	height: 80px;
	border: solid 1px #eee;
	color: #eee;
	font-size: 1.1rem;
	line-height: 80px;
	text-align: center;
}
body#receipt #receipt_block1_right #receipt_amount {
	position: absolute;
	top: 100px;
	width: 100%;
	text-align: center;
}
body#receipt #receipt_block1_right #receipt_amount p {
	margin-bottom: 1.2rem;
	line-height: 100%;
}
body#receipt #receipt_block1_right #receipt_amount p.title {
	font-size: 4rem;
	font-weight: bold;
	letter-spacing: -0.03em;
}
body#receipt #receipt_block1_right #receipt_amount p.amount {
	font-size: 3.5rem;
}

body#receipt #receipt_block2 {
	width: 100%;
	margin-bottom: 30px;
}
body#receipt #receipt_block2 table {
	width: 100%;
}
body#receipt #receipt_block2 table th,
body#receipt #receipt_block2 table td {
	padding: 0.4rem 0;
	border-bottom: solid 1px #aaa;
}
body#receipt #receipt_block2 table th {
	font-size: 1.1rem;
	font-weight: normal;
}
body#receipt #receipt_block2 table td {
	font-size: 1rem;
}

body#receipt #receipt_block3 {
	position: relative;
	width: 100%;
	height: 160px;
}
body#receipt #receipt_block3 #receipt_note {
	position: absolute;
	bottom: 0;
	width: 380px;
	border-bottom: solid 1px #aaa;
}
body#receipt #receipt_block3 #receipt_note p {
	font-size: 1.1rem;
	line-height: 150%;
}
body#receipt #receipt_block3 table {
	position: absolute;
	top: 0;
	right: 0;
	width: 280px;
}
body#receipt #receipt_block3 table th {
	width: 50%;
	padding: 1rem 0 0.6rem 0.75rem;
	border-bottom: solid 1px #aaa;
	font-size: 1.2rem;
	font-weight: normal;
	text-align: left;
}
body#receipt #receipt_block3 table th span {
	font-size: 0.9rem;
}
body#receipt #receipt_block3 table td {
	width: 50%;
	padding: 1rem 0.75rem 0.6rem 0;
	border-bottom: solid 1px #aaa;
	font-size: 1.75rem;
	text-align: right;
}





/* その他共通 */
.left {
	text-align: left !important;
}
.center {
	text-align: center !important;
}
.right {
	text-align: right !important;
}

.imeon {
	ime-mode: active;
}
.imeoff {
	ime-mode: inactive;
}
.imenone {
	ime-mode: disabled;
}

.small {
	font-size: 0.9rem;
}

.wid_2em {
	width: 2rem !important;
}
.wid_3em {
	width: 3rem !important;
}
.wid_5em {
	width: 5rem !important;
}
.wid_7em {
	width: 7rem !important;
}
.wid_8em {
	width: 8rem !important;
}
.wid_9em {
	width: 9rem !important;
}
.wid_10em {
	width: 10rem !important;
}
.wid_12em {
	width: 12rem !important;
}
.wid_15em {
	width: 15rem !important;
}
.wid_20em {
	width: 20rem !important;
}
.wid_25em {
	width: 25rem !important;
}
.wid_30em {
	width: 30rem !important;
}
.wid_40em {
	width: 40rem !important;
}
.wid_50em {
	width: 50rem !important;
}
.wid_half {
	width: 50% !important;
}
.wid_33per {
	width: 33% !important;
}
.wid_max {
	width: 100% !important;
}

.hit_5em {
	height: 5rem !important;
}
.hit_10em {
	height: 10rem !important;
}
.hit_15em {
	height: 15rem !important;
}
.hit_20em {
	height: 20rem !important;
}

button.red {
	background: var(--button_red);
}
button.orange {
	background: var(--button_orange);
}
button.green {
	background: var(--button_green);
}
button.blue {
	background: var(--button_blue);
}
button.gray {
	background: var(--button_gray);
}

.form_required {
	color: #ff849d;
}

.info_emphasis {
	color: #f05e7c;
}


