@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* ---------------------------------------------------------
 　■ サイト全体のベースCSS
--------------------------------------------------------- */
html{
}
body {
	font-family: Verdana, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #333333;
	margin: 0;
	-webkit-text-size-adjust: 100%;
	/* background: #eee; */
}
body,select,input,button,textarea{
	color: #333333;
	font-size: 15px;
	line-height: 1.5;
}
*,
::before,
::after {
	box-sizing: border-box;
	transition: 0.3s;
}




/* ---------------------------------------------------------
 　■ 共通パーツ
--------------------------------------------------------- */
/* === フロー === */
.flow ol {
	counter-reset: number;
	list-style-type: none;
	display: flex;
	justify-content: space-around;
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%;
}
.flow ol li {
	position: relative;
	width: calc( 100% * 100 / 375 );
	height: 72px;
	text-align: center;
	font-size: 14px;
	font-weight: 300;
}
.flow ol li:nth-child(2) {
	width: calc( 100% * 175 / 375 );
}
.flow ol li a{
	color: var(--main);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	padding-top: 42px;
}
.flow ol li.current{
	background: var(--sub-light);
	color: #fff;
}
.flow ol li.current a{
	color: #fff;
}
.flow ol li:before{
	counter-increment: number;
	content: counter(number);
	display: block;
	font-weight: bold;
	text-align: center;
	font: normal normal normal 24px/50px Times New Roman;
}

/* === タイトルバー === */
.ttl-colorBar{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main);
	color: #fff;
	font-weight: normal;
	padding: 19px 0;
	margin: 0;
}
.ttl-colorBg{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main-bg);
	color: var(--main);
	font-weight: normal;
	padding: 19px 0;
	margin: 0;
}



/* スライダー
--------------------------------------------------------- */
.slider {
	margin: 0 auto;
	padding: 0 0 20px;
	width: 100%;
	position: relative;
	max-width: 768px;
}
.slider img {
	height: auto;
	width: 100%;
}
.slider .slide-img {
	position: relative;
}
/* 下部ドット */
.slider button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.slider .slide-dots {
	display: flex;
	justify-content: center;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.slider .slide-dots li {
	display: flex;
	align-items: flex-end;
	margin: 0 4px;
	padding: 0;
	width: 8px;
	height: 20px;
}
.slider .slide-dots li button {
	position: relative;
	text-indent: -9999px;
	cursor: pointer;
	transition: 0.3s;
	width: 8px;
	height: 8px;
	background: #C7C7C7;
	border-radius: 50%;
}
.slider .slide-dots li.slick-active button {
	background: var(--sub);
}
/* 左右矢印 */
.slider .slick-arrow{
	position: absolute;
	top: 50%;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider .slick-arrow.btn-prev{
	left: 0;
}
.slider .slick-arrow.btn-next{
	right: 0;
}
.slider .slick-arrow span{
	position: relative;
	background: #fff;
	border-radius: 50%;
	width: 32px;
	height: 32px;
}
.slider .slick-arrow span::after{
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	margin-top: -5px;
}
.slider .slick-arrow.btn-prev span::after{
	border-bottom: solid 2px var(--main);
	border-left: solid 2px var(--main);
	left: 12px;
}
.slider .slick-arrow.btn-next span::after{
	border-top: solid 2px var(--main);
	border-right: solid 2px var(--main);
	right: 12px;
}
/* テキストを載せる場合 */
.slider .slide-img p {
	font-size: 24px;
	color: #ffffff;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 40px;
}

/* アコーディオン
--------------------------------------------------------- */
.accordionBox, .accordionBox dt, .accordionBox dd{
	margin: 0;
	padding: 0;
}
.accordionBox dt{
	position: relative;
	background: #ffffff;
	display: block;
	overflow: hidden;
	border: 1px solid var(--form-border);
	border-radius: 4px;
	height: 52px;
	padding: 0 64px 0 16px;
}
.accordionBox dt::before {
	padding: 0;
	position: absolute;
	top: 18px;
	width: 10px;
	height: 10px;
	z-index: 0;
	content: '';
	display: block;
	right: 18px;
	transform: rotate(45deg);
	border-bottom: solid 2px var(--main);
	border-right: solid 2px var(--main);
}
.accordionBox dt::after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	right: 48px;
	width: 1px;
	height: 32px;
	background: var(--form-border);
	z-index: 0;
}
.accordionBox dt span {
	display: flex;
	height: 100%;
	align-items: center;
}
.accordionBox dd{
	display: none;
	background: #ddd;
}

/* ---------------------------------------------------------
 　■ 共通フォームパーツ
--------------------------------------------------------- */
/* note */
.inputText .note,
.radioBox .note,
.checkBox .note,
.selectBox .note,
.selectWrap .note,
.textareaBox .note{
	display: block;
	color: #959595;
	margin-top: 10px;
}

/* text input */
.inputText{
	margin: 24px 0;
}
.inputText input[type="text"] {
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: none;
	padding: 0 8px;
	line-height: 52px;
	box-sizing: border-box;
	width: 100%;
}
/* textarea */
.textareaBox{
	margin: 24px 0;
}
.textareaBox textarea {
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: none;
	padding: 8px;
	box-sizing: border-box;
	width: 100%;
	height: 207px;
}
/* Radio */
.radioBox {
	margin: 24px 0;
}
.radioBox label {
	display: inline-block;
}
.radioBox input {
	display: none;
}
.radioBox input + span {
	padding-left: 40px;
	position: relative;
	margin-right: 30px;
	display: flex;
	align-items: center;
	height: 40px;/* beforeと高さを合わせて中央揃えにする */
}
.radioBox input + span::before ,
.radioBox input:checked + span::after {
	content: "";
	display: block;
	position: absolute;
	border-radius: 50%;
}
.radioBox input + span::before {
	top: 4px;
	left: 0;
	width: 32px;
	height: 32px;
	border: 1px solid #C7C7C7;
}
.radioBox input:checked + span::after {
	top: 8px;
	left: 4px;
	width: 24px;
	height: 24px;
	background: var(--main);
}

/* CheckBox */
.checkBox {
	margin: 24px 0;
}
.checkBox label {
	display: inline-block;
}
.checkBox input {
	display: none;
}
.checkBox input + span {
	padding-left: 40px;
	position: relative;
	margin-right: 30px;
	display: flex;
	align-items: center;
	height: 40px;/* beforeと高さを合わせて中央揃えにする */
}
.checkBox input + span::before ,
.checkBox input:checked + span::after {
	content: "";
	display: block;
	position: absolute;
}
.checkBox input + span::before {
	top: 4px;
	left: 0;
	width: 32px;
	height: 32px;
	background-color: var(--main-light);
	border-radius: 4px;
}
.checkBox input:checked + span::after {
	top: 8px;
	left: 10px;
	width: 11px;
	height: 20px;
	transform: rotate(40deg);
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
}

/* select */
.selectBox {
	position: relative;
	background: #ffffff;
	display: block;
	overflow: hidden;
	border: 1px solid var(--form-border);
	border-radius: 4px;
	margin: 24px 0;
	width: 100%;
}
.selectBox::before {
	content: '';
	display: block;
	position: absolute;
	top: 18px;
	right: 18px;
	width: 10px;
	height: 10px;
	padding: 0;
	transform: rotate(45deg);
	border: solid 2px var(--main);
	border-left: none;
	border-top: none;
	z-index: 0;
}
.selectBox::after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	right: 48px;
	width: 1px;
	height: 32px;
	background: var(--form-border);
	z-index: 0;
}
.selectBox select {
	width: 100%;
	line-height: 52px;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 0 64px 0 16px;
	position: relative;
	z-index: 1;
}
.selectBox select::-ms-expand {
	display: none;
}
/* ▼バージョン */
.selectWrap{
	display: flex;
	align-items: center;
	margin: 24px 0;
}
.selectSmall {
	position: relative;
	background: #ffffff;
	overflow: hidden;
	border: 1px solid var(--form-border);
	border-radius: 4px;
	margin: 0 4px;
}
.selectSmall::before {
	content: '';
	display: block;
	position: absolute;
	top: 18px;
	right: 8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 9px 0 9px;
	border-color: var(--main) transparent transparent transparent;
	z-index: 0;
}
.selectSmall::after {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	right: 32px;
	width: 1px;
	height: 32px;
	background: var(--form-border);
	z-index: 0;
}
.selectSmall select {
	width: 100%;
	line-height: 52px;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 0 40px 0 8px;
	position: relative;
	z-index: 1;
}
.selectSmall select::-ms-expand {
	display: none;
}


/* ボタン類
--------------------------------------------------------- */
/* === 矢印ボタン === */
.btnBox{
	margin: 24px 0;
}
.btnBox.arr-btn input[type="submit"],
.btnBox.arr-btn button,
.btnBox.arr-btn .btn span{
	display: inline-block;
	border: none;
	outline: 0;
	cursor: pointer;
	color: #fff;
	background: var(--sub-light);
	height: 48px;
	line-height: 48px;
	width: 100%;
	border-radius: 4px;
	transition: 0.3s;
	text-align: center;
}
.btnBox.arr-btn .btn{
	display: block;
	color: #fff;
	position: relative;
	transition: 0.5s;
}
.btnBox.arr-btn .btn::after{
	transition: 0.3s;
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 18px;
	margin: auto;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* === blank === */
.btnBox{
	margin: 24px 0;
}
.btnBox.blank-btn .btn span{
	display: inline-block;
	border: none;
	outline: 0;
	cursor: pointer;
	color: var(--main);
	background: #fff;
	height: 48px;
	line-height: 48px;
	width: 100%;
	border: 1px solid var(--main);
	border-radius: 4px;
	transition: 0.3s;
	text-align: center;
}
.btnBox.blank-btn .btn{
	display: block;
	color: var(--main);
	position: relative;
	transition: 0.5s;
}
.btnBox.blank-btn .btn::after{
	background-image: url(../images/icon_blank.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
	position: absolute;
	top: 0px;
	bottom: 0;
	width: 12px;
	height: 12px;
	transition: 0.3s;
	content: "";
	right: 18px;
}










