@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	ファンクラブ共通

//////////////////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------------------

	概要

------------------------------------------------------------------------------*/

/* 冒頭文
------------------------------------------------------------------------------*/

main .beginning > figure {
	width: 30em;
	margin: 0 auto 6.25em;
}

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

main .beginning > figure {
	width: 20em;
	margin-bottom: 4em;
}

}

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

main .beginning > figure {
	margin-top: 1.5em;
}

}

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

main .beginning > figure {
	width: 18em;
	margin-bottom: 3em;
}

}

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

main .beginning > figure {
	width: 18em;
	margin-top: 0;
	margin-bottom: 4em;
}

}


/*------------------------------------------------------------------------------

	フォーム

------------------------------------------------------------------------------*/

/* 公開状態
------------------------------------------------------------------------------*/

.contents {
	position: relative;
}

#divided {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

#divided a {
	display: block;
	padding: 1em;
	background-color: rgba(217,0,0,.1);
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	line-height: 1;
	color: #333;
}

/* フロー
------------------------------------------------------------------------------*/

.form main .site_column .flow {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 4em;
	list-style: none;
	width: 60%;
}

.form main .site_column .flow::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 100%;
	border-bottom: 1px dashed rgba(47,60,69,1);
}

.form main .site_column .flow li {
	position: relative;
	width: 5.5em;
	margin-bottom: 0;
	text-align: center;
	box-shadow: 0 0 0 1.5em #FFF;
	font-weight: bold;
	color: rgba(9,91,165,1);
}

.input.form main .site_column .flow li:nth-child(1),
.check.form main .site_column .flow li:nth-child(2),
.thankyou.form main .site_column .flow li:nth-child(3) {
	background-color: rgba(250,237,0,1);
}

.form main .site_column .flow li::after {
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
}

.form main .site_column .flow li span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}


@media screen and (max-width: 767px){
.form main .site_column .flow {
	width: 100%;
	margin-bottom: 2em;
}	
	
}

/* 確認メッセージ
------------------------------------------------------------------------------*/

.form main .site_column .message {
	margin-bottom: 2em;
}

.form main .site_column .message p {
	text-align: center;
}


/*------------------------------------------------------------------------------

	フォーム 各項目

------------------------------------------------------------------------------*/

/* 共通設定
------------------------------------------------------------------------------*/

.form_contents {
	padding: 0 6em;
}

.input .form_contents,
.check .form_contents {
	font-size: 1.125em;
}

.form_contents textarea,
.form_contents input[type="email"],
.form_contents input[type="text"],
.form_contents select,
.form_contents #sex_radioboxes label {
	border: 1px solid rgba(0,0,0,.4);
	padding: .4em .75em;
	border-radius: 3px;
	font-weight: normal;
	-webkit-appearance: none;
}

.form_contents input {
	padding: .25em .5em;
}

.form_contents .items {
	display: flex;
	justify-content: space-between;
	padding: 1.5em 2em;
	border-bottom: 1px solid #CCC;
}

.form_contents .items:first-of-type {
	border-top: 1px solid #CCC;
}

.form_contents .items:nth-child(odd) {
	background-color: rgba(47,60,69,.04);
}

.form_contents .items .item {
	display: flex;
	width: 30%;
	font-weight: bold;
	color: rgba(47,60,69,1);
}

.form_contents .items .item label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.form_contents .items .field {
	width: 70%;
	margin-left: 4em;
}

main .site_column .message_box,
.form_contents .require,
.form_contents .error-caption-box {
	background-color: rgba(235,103,113,1);
	border-radius: 4px;
	color: #FFF;
}

@media screen and (max-width: 1400px){
.form_contents {
	padding: 0 2em;
}
}

@media screen and (max-width: 867px){
.form_contents {
	padding: 0;
}

.form_contents .items .item {
	width: 40%;
}
}

@media screen and (max-width: 767px){
	
.form_contents .items .item label {
	display: block;
}	
	
.form_contents .items .field {
	width: 100%;
	margin-left: 0;
}
	
.form_contents .items {
	display: block;
    width: 100%;
	padding: 1.5em 1em;
}

.form_contents .items .item {
	display: block;
    width: 100%;
	margin-bottom: 1em;
}
	
.form_contents input[type="email"] {
		width: 100%;
	}

}


/* 必須アイコン
------------------------------------------------------------------------------*/

.form_contents .require {
	padding: .5em .75em;
	line-height: 1;
	font-size: .75em;
}

@media screen and (max-width: 767px){
.form_contents .require {
	margin-left: 1em;
}
}


/* 注釈
------------------------------------------------------------------------------*/

.form_contents .note,
.form_contents .annotation {
	display: block;
	margin-top: .5em;
	line-height: 1.4;
	font-size: .85em;
	opacity: .8;
}

/* エラー
------------------------------------------------------------------------------*/

main .site_column .message_box,
.form_contents .error-caption-box {
	position: relative;
	padding: .5em .75em;
}

main .site_column .message_box ul,
.form_contents .error-caption-box ul {
	margin: 0;
	list-style: none;
}

main .site_column .message_box ul li,
.form_contents .error-caption-box ul li {
	position: relative;
	padding: .25em 0 .25em 1.75em;
	line-height: 1;
	font-size: 1em;
}

main .site_column .message_box ul li::before,
.form_contents .error-caption-box ul li::before {
	position: absolute;
	top: .125em;
	left: 0;;
	content: "";
	background-image: url(../../common/img/icon_exclamation_w.svg);
	background-position: center;
	background-repeat: no-repeat;
	width: 1.25em;
	height: 1.25em;
}

main .site_column .message_box {
	margin: 0 0 2em;
}

.form_contents .error-caption-box::after {
	position: absolute;
	bottom: -.6em;
	left: 3em;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .75em .5em 0 .5em;
	border-color: rgba(235,103,113,1) transparent transparent transparent;
}

.form_contents .error-caption-box {
	margin: 0 0 1em;
}

@media screen and (max-width: 767px){
	
main .site_column .message_box {
	margin: 0;
}

main .site_column .message_box ul li,
.form_contents .error-caption-box ul li {
	font-size: .875em;
}
	
}


/* 名前
------------------------------------------------------------------------------*/

.form_contents .name {
	display: flex;
}

.form_contents .name .label {
	display: inline-block;
	width: 2.5em;
	margin-right: .25em;
	text-align: center;
}

.form_contents .name input {
	margin-right: 1em;
	width:10em;	
}

.form_contents .name label:last-child input {
	margin-right: 0;
}

@media screen and (max-width: 767px){
	
.form_contents .name {
    display: block;
}
	
.form_contents .name label {
	display: block;
	margin-bottom: 0.5em;
}
	
.form_contents .name .label {
	text-align: left;
}
	
.form_contents .name input {
	margin-right: 0;
	width: 100%;	
}

}


/* 住所・ご意見
------------------------------------------------------------------------------*/

.form_contents #address,
.form_contents #comment {
	width: 100%;
	height: 6.5em;
}


/* 年齢
------------------------------------------------------------------------------*/

.form_contents #age {
	width: 8em;
}


/* 性別
------------------------------------------------------------------------------*/

.form_contents #sex_radioboxes {
	display: flex;
}

.form_contents #sex_radioboxes label {
	margin-right: .5em;
	padding-right: 1.5em;
	padding-left: 1.5em;
	background-color: #FFF;
}

.form_contents #sex_radioboxes label:last-child {
	margin-right: 0;
}

.form_contents #sex_radioboxes label:hover {
	cursor: pointer;
}

.form_contents #sex_radioboxes label input {
	margin-right: .25em;
}


/* コメント
------------------------------------------------------------------------------*/

.form_contents #comment {
	height: 10.5em;
}


/* ボタン
------------------------------------------------------------------------------*/

.form_contents .form_button_box {
	display: flex;
	justify-content: center;
}

.form_contents .form_button_box input {
	display: inline-block;
}

.form_contents .form_button_box input[type="submit"] {
	margin: 3em auto 2em;
	padding: 1em 4em;
	background-color: rgba(47,60,69,1);
	border: none;
	border-radius: 0;
	text-decoration: none;
	transition: all .4s;
	font-weight: bold;
	line-height: 1;
	font-size: 1.125em;
	color: #FFF;
	-webkit-appearance: none;
}

.form_contents .form_button_box input[type="submit"]:hover {
	cursor: pointer;
	background-color: rgba(47,60,69,.6);
}

.form_contents .form_button_box form:first-of-type {
	margin-right: 5%;
}

@media screen and (max-width: 767px){
.form_contents .form_button_box input[type="submit"] {
	margin: 2em auto 1em;
	padding: 1em 2em;
}
}


