@charset "utf-8";

header .logo img:first-child {
	display: none;
}

header .logo img:last-child {
	display: block;
}

header.scroll .logo img:first-child {
	display: block;
}

header.scroll .logo img:last-child {
	display: none;
}


/* -----------------------------------------------------------------------------
 Contents
----------------------------------------------------------------------------- */
main {
	border-bottom: 1px solid #ccc;
}

main #container {
	max-width: none;
	padding: 0 0 0;
}

main .title {
	background: url("../images/title_bg.jpg") center no-repeat;
	background-size: cover;
}


section.form {
	font-size: 15px;
	max-width: 780px;
	margin: 0 auto;
	padding: 50px 30px 100px;
}

section.form.confirm {
	max-width: none;
	padding: 90px 0 0;
}

section.form.thanks {
	font-size: 16px;
	max-width: none;
}

section.form h2 {
	font-size: 35px;
	margin: 0 auto 40px;
	text-align: center;
}

section.form.confirm h2 {
	font-size: 35px;
	max-width: 780px;
	margin: 0 auto 40px;
	text-align: center;
}

section.form.confirm h2 + p {
	max-width: 780px;
	margin: 0 auto 50px;
}

section.form.confirm .inner {
	padding: 50px 30px 90px;
	background-color: #E1EBEF;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.form.confirm .inner dl {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
}

section.form dl dt {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 10px;
}

section.form dl dt.required::before {
	color: #fff;
	font-size: 12px;
	content: "必須";
	margin-right: 0.5em;
	padding: 0 0.5em;
	background-color: #54A6C5;
	display: inline-block;
}

section.form dl dd {
	font-size: 15px;
	margin-bottom: 30px;
}

section.form.confirm .inner dl dt {
	width: 26%;
	margin-bottom: 0;
	border-right: 1px solid #54A6C5;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.form.confirm .inner dl dt.required::before {
	display: none;
}

section.form.confirm .inner dl dd {
	width: 74%;
	padding-left: 35px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

::placeholder {
  color: #ccc;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: orange;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #ccc;
}

section.form input[type="text"],
section.form input[type="tel"],
section.form input[type="email"],
section.form textarea {
	font-size: 15px;
	width: 100%;
	padding: 0.8em 1em;
	border: 1px solid #CCCCCC;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section.form input[type="radio"] {
	position:relative;
	display: none;
}
section.form input[type="radio"] + span{
	position: relative;
	padding-left: 25px;
	display: inline-block;
}
section.form input[type="radio"] + span:before{
	content: "";
	display: inline-block;
	position: absolute;
    top: 4px;
	left: 0px;
	width: 15px;
	height: 15px;
	border: 1px solid #ccc;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
section.form input[type="radio"]:checked + span{
	color: #393939;
}
section.form input[type="radio"]:checked + span:after{
	content: "";
	display: block;
	position: absolute;
    top: 8px;
    left: 4px;
    width: 9px;
    height: 9px;
	background-color: #54A6C5;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}


section.form input[type="checkbox"] {
	position:relative;
	display: none;
}
section.form input[type="checkbox"] + span{
	position: relative;
	margin: 0;
	padding-left: 30px;
	display: inline-block;
}
section.form input[type="checkbox"] + span:before{
	content: "";
	display: inline-block;
	position: absolute;
    top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border: 1px solid #ccc;
}
section.form input[type="checkbox"]:checked + span{
	color: #000;
}
section.form input[type="checkbox"]:checked + span:after{
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 7px;
	width: 6px;
	height: 12px;
	transform: rotate(40deg);
	border-bottom: 3px solid #54A6C5;
	border-right: 3px solid #54A6C5;
}




section.form label {
	margin-right: 2em;
	white-space: nowrap;
	display: inline-block;
	cursor: pointer;
}

/** Custom Select **/
.custom-select-wrapper {
	position: relative;
	width: 100%;
	display: inline-block;
	user-select: none;
}
.custom-select-wrapper select {
	display: none;
}
.custom-select {
	position: relative;
	width: 100%;
	display: inline-block;
}
.custom-select-trigger {
	color: #000;
	position: relative;
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 0.8em 1em;
	font-weight: 300;
	background: #fff;
	border: 1px solid #ccc;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.custom-select-trigger[data-text="選択してください"] {
	color: #ccc;
}
.custom-select-trigger:after {
	position: absolute;
	color: #54A6C5;
	font-size: 12px;
	display: block;
	content: '▼';
	top: calc(50% - 7px);
	right: 25px;
	margin-top: 0;
	transition: .3s;
}
.custom-select {
	overflow: hidden;
}
.custom-select.opened {
	overflow: visible;
}
.custom-select.opened .custom-select-trigger:after {
	margin-top: -3px;
	transform: rotate(180deg);
	transition: .3s;
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%; left: 0; right: 0;
	max-width: 300px;
	margin: 5px 0;
	box-sizing: border-box;
	background: #fff;
	transition: all .4s ease-in-out;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-15px);
	z-index: 10;
}
.custom-select.opened .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateY(0);
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.custom-options:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 100%; right: 25px;
	width: 7px; height: 7px;
	margin-bottom: -4px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background: #fff;
	transform: rotate(45deg);
	transition: all .4s ease-in-out;
	display: none;
}
.option-hover:before {
	background: #f9f9f9;
}
.custom-option {
	position: relative;
	color: #ccc;
	display: block;
	padding: 0 20px;
	border-bottom: 1px solid #ccc;
	font-size: 13px;
	color: #000;
	line-height: 30px;
	cursor: pointer;
	transition: all .4s ease-in-out;
}
.custom-option:hover,
.custom-option.selection {
	color: #fff;
	background: #00A65A;
}


.note {
	font-size: 12px;
	display: flex;
	border-left: 1px solid #000;
	align-items: center;
	letter-spacing: 0;
}

.note h3 {
	font-size: 12px;
	margin: 0 1.5em;
	white-space: nowrap;
}

.note p {
	padding-left: 1.5em;
	border-left: 1px solid #000;
}



section.form.confirm .inner .btn {
	width: 100%;
	max-width: 296px;
	padding: 0;
}

section.form.confirm .inner .btn-w {
	width: 100%;
	max-width: 296px;
	padding: 0;
	border: 1px solid #54A6C5;
}


section.form.confirm .inner .btn-w:hover {
	border: 1px solid #00A65A;
}



/* *****************************************************************************
   スマートフォン用のスタイル記述
***************************************************************************** */
@media screen and (max-width: 769px) {
	main .title {
		background: url("../images/title_bg_sp.jpg") center no-repeat;
		background-size: cover;
	}

	/* -----------------------------------------------------------------------------
	 Contents
	----------------------------------------------------------------------------- */
	main #container {
		padding-bottom: 60px;
	}
	
	section.form {
		padding-top: 35px;
	}
	
	section.form.thanks {
		font-size: 15px;
	}
	
	section.form h2 {
		font-size: 24px;
	}

	section.form label {
		min-width: 19%;
	}
	
	
	section.form.confirm .inner dl {
		max-width: none;
		padding-left: 20px;
		border-left: 1px solid #54A6C5;
		display: block;
	}

	section.form.confirm .inner dl dt {
		width: auto;
		border-right: none;
	}

	section.form.confirm .inner dl dd {
		width: auto;
		margin-bottom: 1em;
		padding-left: 0;
	}
	
	

	.note {
		font-size: 12px;
		border: none;
		display: block;
		letter-spacing: 0;
	}

	.note h3 {
		font-size: 12px;
		margin: 0;
		padding: 0 1em;
		border-left: 1px solid #000;
		border-right: 1px solid #000;
		display: inline-block;
		white-space: nowrap;
	}

	.note p {
		padding: 1em 0 0 0;
		border: none;
	}

}

@media screen and (min-width: 769px) {
	.sp{
	display: none;
	}
	.btn-w.blue_line {
		border: solid 2px #00B2D3;
		margin-bottom: 3em;
		height: auto;
		padding: 10px 2rem 10px 25px;
		text-align: right;
		line-height: 1.3em;
	}
}

@media screen and (max-width: 769px) {
	.btn-w.blue_line {
		border: solid 2px #00B2D3;
		margin-bottom: 3em;
		height: auto;
		padding: 10px 2rem 10px 25px;
		display: block;
		text-align: center;
		line-height: 1.3em;
	}
}





section.form .online_info {
	font-size: 16px;
	padding: 18px;
	margin-top: 40px;
	margin-bottom: 60px;
	border: 1px solid #00B2D3;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	 box-shadow: 0px 0px 5px 3px rgba(0, 178, 211, 0.25);
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
}

section.form .online_info .img {
	width: 328px;
}

section.form .online_info .img img {
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

section.form .online_info .inner {
	width: calc(100% - 358px);
	text-align: left;
}

section.form .online_info .inner h2 {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px;
    margin-bottom: 20px;
	line-height: 1.4em;
	text-align: left;
}

section.form .online_info .inner ul {
	line-height: 1.6em;
}

section.form .online_info .inner ul li {
	margin-left: 1.8em;
	text-indent: -0.8em;
}

section.form .online_info .inner ul li::before {
	color: #00b2d3;
	content: "●";
	margin-right: 0.5em;
	display: inline-block;
}

@media screen and (max-width: 769px) {

	section.form .online_info {
		font-size: 15px;
		padding: 20px;
		margin-top: 15px;
		margin-bottom: 35px;
		display: block;
	}

	section.form .online_info .img {
		width: 100%;
	}
	section.form .online_info .inner {
		width: auto;
	}

	section.form .online_info .inner h2 {
		font-size: 20px;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	section.form .online_info .inner ul li::before {
		color: #00b2d3;
		content: "●";
		margin-right: 0.5em;
		display: inline-block;
	}
	
}

