@charset 'utf8';

/* reset css */
html, body,
header, footer,
div, section, article,
ul, ol, li, p,
h1, h2, h3, h4, h5,
input {
	margin: 0;
	padding: 0;
}


/* font */
body {
	height: 100%;
	width: 100%;
	font: 100%/1.5em
		"Helvetica Neue",
		Arial,
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;
	background: #fff;
	color: #222;
}


/* color setting */

.bg-blue {
	background-color: rgba(71, 195, 218, 1);
	color: #fff;
	transition: background-color 0.3s;
}

.bg-indigo-blue {
	background-color: rgba(1, 117, 170, 1);
	color: #fff;
	transition: background-color 0.3s;
}

.bg-lightblue {
	background-color: rgba(228, 246, 248, 1);
	transition: background-color 0.3s;
}

.bg-darkgray {
	background-color: rgba(34, 34, 34, 1);
	color: #fff;
	transition: background-color 0.3s;
}

.bg-green {
	background-color: rgba(92, 213, 170, 1);
	color: #fff;
	transition: background-color 0.3s;
}

.bg-purple {
	background-color: rgba(71, 156, 218, 1);
	color: #fff;
	transition: background-color 0.3s;
}

.bg-red {
	background-color: rgba(219, 44, 44, 1);
	color: #fff;
	transition: background-color 0.3s;
}

.bg-orange {
	background-color: rgba(255, 112, 48, 1);
	color: #fff;
	transition: background-color 0.3s;
}

.bg-gray {
	background-color: rgba(238, 238, 238, 1);
	transition: background-color 0.3s;
}

.bg-lightgray {
	background-color: rgba(243, 244, 245, 1);
	transition: background-color 0.3s;
}




/* text color */

.text-red {
	color: #DB2C2C;
}

.text-blue {
	color: #47C3DA;
}

.text-gray {
	color: #939393;
}



/* text size */

.text-130per {
	font-size: 130%;
}

.text-large {
	font-size: 200%;
	margin-right: 0.2em;
}


/* text alignment */

.text-left {
	text-align: left;
}

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

.text-right {
	text-align: right;
}

.text-marign-right-1em {
	margin-right: 1em;
}

.text-marign-bottom-1em {
	margin-bottom: 1em;
}

.text-deco-underline {
	text-decoration: underline;
}

.text-deco-required {
	background-color: #DB2C2C;
	border-radius: 4px;
	color: #fff;
}
span.text-deco-required {
	padding: 0em 0.5em;
	display: inline-block;
}
span.text-deco-required.hissu {
	float: right;
	overflow: hidden;
}

.text-deco-optional {
	background-color: #fff;
	border-radius: 4px;
	color: #8E8E8E;
	border: 1px solid #8E8E8E;
}
span.text-deco-optional {
	padding: 0em 0.5em;
	display: inline-block;
}

.text-deco-caution {
	background-color: #FFFFD9;
	border: 1px solid #CCCCCC;
}
span.text-deco-caution {
	padding: 0em 0.5em;
	display: inline-block;
}

/* button setting */

button {
	cursor: pointer;
	min-width: 120px;
	transition: background-color 0.3s;
}

.btn-img-left img {
	vertical-align: text-bottom;
	margin-right: 0.5em;
}
.btn-img-right img {
	margin-left: 0.5em;
}


.img-margin-right-1em {
	margin-right: 1em;
}

img {
	line-height: 0;
}


.btn-blue {
	background-color: rgba(72, 197, 219, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-blue:hover {
	background-color: rgba(72, 197, 219, 0.6);
}

.btn-indigo-blue {
	background-color: rgba(1, 117, 170, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-indigo-blue:hover {
	background-color: rgba(1, 117, 170, 0.6)
}


.btn-gray {
	background-color: rgba(142, 142, 142, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-gray:hover {
	background-color: rgba(142, 142, 142, 0.6);
}


.btn-lightgray {
	background-color: #CCCCCC;
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-lightgray:hover {
	background-color: #8E8E8E;
}

.btn-lightgray-alert {
	background-color: #CCCCCC;
	color: rgba(142, 142, 142, 1);
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
	cursor: not-allowed;
}

.btn-red {
	background-color: rgba(219, 44, 44, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-red:hover {
	background-color: rgba(219, 44, 44, 0.6);
}

.btn-orange {
	background-color: rgba(255, 112, 48, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-orange:hover {
	background-color: rgba(255, 112, 48, 0.6);
}


.btn-green {
	background-color: rgba(92, 213, 170, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-green:hover {
	background-color: rgba(92, 213, 170, 0.6);
}

.btn-darkgreen {
	background-color: rgba(0, 124, 95, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-darkgreen:hover {
	background-color: rgba(0, 124, 95, 0.6);
}

.btn-black {
	background-color: rgba(34, 34, 34, 1);
	color: #fff;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-black:hover {
	background-color: rgba(34, 34, 34, 0.6);
}

.btn-white-no-border {
	background-color: rgba(250, 250, 250, 1);
	color: #222;
	border-radius: 16px;
	border: none;
	padding: 0.3em 1em;
}
.btn-white-no-border:hover {
	background-color: rgba(232, 232, 232, 1);
}


.btn-white {
	background-color: #fff;
	color: #222;
	border-radius: 16px;
	border: 1px solid #ccc;
	padding: 0.3em 1em;
}


.btn-hover-blue:hover {
	background-color: rgba(72, 197, 219, 1);
}


.btn-small {
	min-width: auto;
}

.btn-medium {
	padding: 0.6em;
	border-radius: 18px;
	font-weight: bold;
}

.btn-large {
	padding: 1em;
	border-radius: 24px;
	font-weight: bold;
}

.btn-super-large {
	font-size: 110%;
	font-weight: bold;
	padding: 1em 3em;
	border-radius: 36px;
}

.btn-width-100 {
	width: 100%;
}

.btn-width-50 {
	width: 50%;
}

.btn-width-80 {
	width: 80%;
}

.btn-square-round {
	border-radius: 6px;
	/* padding: 0.5em 1em; */
	height: 100%;
}

.btn-square {
	border-radius: 0px;
}

.btn-no-text {
	padding: 0.5em 1em;
}
.btn-no-text img {
	margin-right:0;
}


.icn-img-line {
	vertical-align: middle;
}
.btn-line {
	background-color: rgb(6, 199, 85, 1);
	color: #fff;
	border-radius: 22px;
	border: none;
	padding: 0.4em 1em;
	opacity: 1;
	transition: opacity 0.3s;
}
.btn-line:hover {
	opacity: 0.6;
}
.hr-newer {
	max-width: 420px;
	margin: auto;
	margin-bottom: 2em;
	position: relative;
	border-top: #ccc 1px solid;
}
.hr-newer::before {
	font-size: 14px;
	content: 'または';
	padding: 0 10px;
	background-color: #fff;
	position: absolute;
	top: -11px;;
	left: 50%;
	margin-left: -26px;
}



ul.btn-marge {
	display: flex;
	list-style: none;
}

ul.btn-marge li.btn-marge-item {
	padding: 0.3em 1em;
	cursor: pointer;
	background-color: #fff;
	transition: background-color 0.3s;
	border: 1px solid #ccc;
}
ul.btn-marge li.btn-marge-item:first-child {
	border-right: none;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
ul.btn-marge li.btn-marge-item:last-child {
	border-left: none;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}


ul.btn-marge li.btn-marge-item:hover {
	background-color: #E4F6F8;
}



/* link setting */
a,
a:visited,
a:hover {
	color: #47C3DA;
}

.bg-blue a,
.bg-blue a:visited,
.bg-blue a:hover,
.bg-indigo-blue a,
.bg-indigo-blue a:visited,
.bg-indigo-blue a:hover,
.bg-darkgray a,
.bg-darkgray a:visited,
.bg-darkgray a:hover,
.bg-green a,
.bg-green a:visited,
.bg-green a:hover,
.bg-red a,
.bg-red a:visited,
.bg-red a:hover,
.bg-purple a,
.bg-purple a:visited,
.bg-purple a:hover,
.bg-gray a,
.bg-gray a:visited,
.bg-gray a:hover,
.bg-lightgray a,
.bg-lightgray a:visited,
.bg-lightgray a:hover  {
	color: #fff;
}




/* headline */

h2 {
	font-size: 140%;
	padding-top: 0.3em;
	padding-bottom: 0.3em;
	padding-left: 1em;
	border-left: 4px solid #47C3DA;
	margin-bottom: 1em;
}


h3 {
	border-bottom: 2px solid #222;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
}


/* headline */
h4:before {
	content: '■';
	color: #47C3DA;
	font-size: 200%;
	position: absolute;
	left: 0;
	bottom: 40%;
}

h4 {
	padding-left: 1.5em;
	position: relative;
	border-bottom: 2px solid #222;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
}



/* layout */

.block-width-100 {
	width: 100%;
}

.container {
	margin: 0 auto;
	max-width: 1000px;
	padding: 0em 2em;
	position: relative;
}

.block {
	margin-bottom: 2em;
	font-size: 85%;
}

.block-border {
	border: 1px solid #ccc;
}

.layout-flex {
	display: flex;
}

.layout-flex--space-between {
	display: flex;
	justify-content: space-between;
}

.flex-item-grow-1 {
	flex-grow: 1;
}


.layout-vertical-horizontal-center {
	display: table;
	width: 100%;
	height: 100%;
}
.layout-vertical-horizontal-center .col {
	display: table-cell;
	vertical-align: middle;
}

.layout-vertical-horizontal-center .col .container {
	max-width: 600px;
	margin: 0 auto;
}


.content {
	padding: 2em 0em;
}




.footer {
	width: 100%;
	position: relative;
	padding: 0.5em 0em;
}

.footer .container {
	text-align: center;
}

.footer .page-to-top {
	position: absolute;
	top: -40px;
	right: 0;
	cursor: pointer;
}


/* form parts */

input, textarea, select, option {
	font-weight: lighter;
}

input[type=text], input[type=number], input[type=password] {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0.5em 1em;
}

input[type=checkbox], input[type=radio]{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: none;
}

input[type=checkbox].btn-checkbox {
    display: block;
		-webkit-appearance:revert;
		-moz-appearance:revert;
    appearance: revert;
    width: 18px;
    height: 18px;
    margin: auto;
    margin-top: 10px;
}

.label-checkbox {
	display: inline-block;
	padding: 5px 30px;
	position: relative;
	cursor: pointer;
}

.label-checkbox:before {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	content: '';
	display: block;
	height: 16px;
	left: 5px;
	margin-top: -8px;
	position: absolute;
	top: 45%;
	width: 16px;
	cursor: pointer;
}

.label-checkbox:after {
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	content: '';
	display: block;
	height: 9px;
	left: 10px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 45%;
	transform: rotate(45deg);
	width: 5px;
}
input[type=checkbox]:checked + .label-checkbox::before {
	background: #47C3DA;
	border: 1px solid #47C3DA;
}

input[type=checkbox]:checked + .label-checkbox::after {
	opacity: 1;
}


.label-radio {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding-left: 2em;
	position: relative;
	width: auto;
}
.label-radio:before {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	content: '';
	display: block;
	height: 16px;
	left: 5px;
	margin-top: -8px;
	position: absolute;
	top: 45%;
	width: 16px;
}
.label-radio:after {
	background: #47C3DA;
	border-radius: 50%;
	content: '';
	display: block;
	height: 10px;
	left: 9px;
	margin-top: -4px;
	opacity: 0;
	position: absolute;
	top: 45%;
	width: 10px;
}
input[type=radio]:checked + .label-radio::after {
    opacity: 1;
}


select {
	-moz-appearance:none; /* Firefox */
	-webkit-appearance:none; /* Safari and Chrome */
	appearance:none;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0.5em 3em 0.5em 1em;
	background: rgb(255,255,255) url('../svg/part_elm_select_triangle.svg') 90% no-repeat;
	text-align: left;
	cursor: pointer;
}

select.select-width-100 {
	width: 100%;
	background: rgb(255,255,255) url('../svg/part_elm_select_triangle.svg') 98% no-repeat;
}

select.select-width-50 {
	width: 100%;
	background: rgb(255,255,255) url('../svg/part_elm_select_triangle.svg') 98% no-repeat;
}

textarea {
	resize: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0.5em 1em;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}


.input-block {
	display: block;
}


/* decoration box */
input.deco-marge-left-box,
.deco-marge-left-box {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

.deco-marge-right-box-gray {
	background-color: #ccc;
	padding: 0.24em 1em;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;

}




.show-only-sp {
	display: none !important;
}

@media (max-width: 720px) {

	.show-only-pc {
		display: none !important;
	}

	.show-only-sp {
		display: block !important;
	}


	.footer {
		font-size: 80%;
	}

	.footer .page-to-top {
		position: absolute;
		top: -40px;
		right: 16px;
		cursor: pointer;
	}

}

.alert-box {
	padding: 50px 0;
}

.bl.error_txt {
	color:#DB2C2C;
}

.t-m10 {
	margin-top:10px;
	display: inline-block;
}
