/* base */
/* * {
	margin: 0;
	padding: 0;
}

html {
	display: flex;
  flex-direction: column;
	height: 100%;
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	font-size: 16px;
}

body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	background: url(../images/bg_main-min.jpg) repeat-x;
	background-size: auto 100%;
}

li {
	list-style: none;
} */
/*
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border: 0;
} */

button {
	transition: opacity 0.2s linear;
}

button:focus {
	outline: none;
}

button:hover {
	opacity: 0.8;
}

input:focus {
	outline: none
}

::placeholder {
	color: #CDCDCD
}

/* common */
.container {
	width: 1016px;
	margin: 0 auto;
	padding: 0 16px;
}

input[type=radio] {
  filter: alpha(opacity=0);
  -moz-opacity:0;
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

.radio-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.radio {
	width: calc(50% - 8px);
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 0 16px 0;
	padding: 12px 12px 12px 42px;
	border-radius: 4px;
	border: 1px solid #3BB3C2;
	background-color: #fff;
	vertical-align: middle;
	cursor: pointer;
}

.radio:hover {
	background-color: #D4F4E7;
}

.radio:hover:after {
	border-color: #3BB3C2;
}

.radio:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 18px;
	height: 18px;
	border: 1px solid #3BB3C2;
	background: #fff;
	content: '';
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 6px;
	height: 11px;
	border-right: 3px solid #070707;
	border-bottom: 3px solid #070707;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 10;
}

input[type=radio]:checked+.radio {
	background-color: #D4F4E7;
}

input[type=radio]:checked+.radio:before {
	opacity: 1;
}

input[type=radio]:focus+.radio {
	background-color: #D4F4E7;
}

/* header */
.page-header {
	width: 100vw;
	min-height: 71px;
	height: 71px;
	background: #fff;
	box-shadow: 0px 0px 10px -2px #333;
	-webkit-box-shadow: 0px 0px 10px -2px #333;
	-moz-box-shadow: 0px 0px 10px -2px #333;
}

.header-logo {
	float: left;
}

.header-tel {
	float: right;
	margin-top: 11px;
}

.header-tel img {
	position: relative;
	right: 42px;
}

/* content */
.main-content-wrapper {
	flex: 1 1 auto;
}

.main-content {
	display: flex;
}

.main-image {
	min-width: 500px;
}

.registration-form {
	width: 454px;
	margin: 24px 0 24px 40px;
}

.form-content-wrapper {
	padding: 21px 42px;
	background: #fff;
	border-radius: 10px;
}

.form-title {
	position: relative;
	background: #167481;
	padding: 8px;
	color: #fff;
	text-align: center;
	font-size: 20px;
}

.form-title:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	position: absolute;
	border-top-color: #167481;
	border-width: 10px;
	margin-left: -10px;
}

.form-content {
	overflow: hidden;
	width: 360px;
	background: #D4F1F4;
	color: #070707;
	margin: 16px 0;
	border-radius: 10px;
}

.horizontal-scroll-wrapper {
	display: flex;
	width: calc(300vw - 32px);
}

.horizontal-scroll-item {
	position: relative;
	width: 360px;
	padding: 16px 16px 4px 16px;
}

.form-label {
	display: block;
	font-size: 18px;
}

.form-label:before {
	position: relative;
	top: -3px;
	content: '■';
	width: 1rem;
	height: 1rem;
	margin-right: 4px;
	font-size: 10px;
}

.require-item:after {
	position: relative;
	top: -1px;
	content: '必須';
	padding: 1px 4px 1px 4px;
	width: 1rem;
	height: 1rem;
	margin-left: 8px;
	background: #FC919F;
	color: #fff;
	font-size: 14px;
}

.any-item:after {
	position: relative;
	top: -1px;
	content: '任意';
	padding: 1px 4px 1px 4px;
	width: 1rem;
	height: 1rem;
	margin-left: 8px;
	background: #3BB3C2;
	color: #fff;
	font-size: 14px;
}

.form-text-box {
	width: 100%;
	margin-bottom: 16px;
	padding: 12px;
	border: 1px solid #3BB3C2;
	font-size: 18px;
}

.form-select-box-wrapper {
	position: relative;
}

.form-select-box-wrapper:before {
	z-index: 1;
    position: absolute;
    right: 15px;
    top: 0;
    content: '▼';
    line-height: 50px;
    color: #3BB3C2;
    pointer-events: none;;
}

.form-select-box {
	width: 100%;
	margin-bottom: 16px;
	padding: 12px;
	border: 1px solid #3BB3C2;
	font-size: 18px;
	border-radius: 0;
	outline: none;
	text-indent: 0.01px;
	text-overflow: '';
	background: none #fff;
	vertical-align: middle;
	font-size: inherit;
	color: #CDCDCD;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}

.form-select-box option {
	background-color: #fff;
	color: #333;
}

.form-select-box::-ms-expand {
	display: none;
}

.form-select-box:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #3BB3C2;
}

.form-text-area {
	width: 100%;
	padding: 12px;
	border: 1px solid #3BB3C2;
	font-size: 18px;
}
.form-text-area:focus {
	outline: none
}

.button-wrapper {
	display: flex;
	justify-content: flex-end;
}

.button-wrapper>:first-child {
	margin-right: auto;
}

.form-button {
	padding: 12px;
	border-radius: 4px;
	border: 0;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
	color: #fff !important;
	cursor: pointer;
}

.form-button.next {
	width: 250px;
	background: #FB6579;
}

.form-button.submit {
	display: none;
	width: 250px;
	background: #FB6579;
}

.form-button.prev {
	display: none;
	width: 75px;
	background: #3B8FCF;
}

.form-button:focus {
	opacity: 0.8;
}

.form-button:disabled {
	opacity: 0.4;
	cursor: default;
}

.form-step {
	display: flex;
	justify-content: flex-end;
	margin-top: 16px
}

.form-step-label {
	font-size: 18px;
	line-height: 30px;
	color: #6DBEC7;
}

.form-step-item {
	transition: background-color 0.4s;
	height: 30px;
	width: 40px;
	text-align: center;
	line-height: 30px;
	background: #D4F1F4;
	color: #fff;
	margin-left: 16px;
	border-radius: 4px;
}

.form-step-item.current {
	background: #6DBEC7;
}

.terms-link-wrapper {
	text-align: center;
	font-size: 14px;
	color: #777777;
	margin-bottom: 2px;
}
.terms-link {
	color: #FB6579;
}
.terms-link:hover {
	color: #FB6579;
}

/* footer */
.page-footer {
	width: 100vw;
	padding: 24px 16px;
	text-align: center;
	background: #43b1c0;
	color: #fff;
	font-size: 14px;
}

.footer-menu li {
	display: inline-block;
	padding: 0 16px;
}

.footer-menu li a {
	color: #fff
}

.thanks-box {
	font-size: 18px;
	margin: 0 auto;
	padding: 12px;
	background: #fff;
	color: #070707;
	border-radius: 4px;
	text-align: center;
}

.thanks-content {
	margin-top: 16px;
	padding: 12px;
	color: #333333;
}

#step4 {
	display: none
}

/* validation */
.tooltip-wrapper {
	position: absolute;
}
.tooltip {
	display: none;
	text-align: center;
	position: absolute;
	z-index: 1;
	min-width: 160px;
	bottom: 125%;
	left: 50%;
	margin-bottom: 10px;
}
.tooltip > .text {
	display: inline-block;
	min-width: 160px;
	background-color: #FB6579;
	color: #fff;
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 12px;
}
.tooltip > .text::after {
	content: " ";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #FB6579 transparent transparent transparent;
}

.ga-tag {
	display:none
}