@charset "utf-8";

/* ===================================================================
MAIN
=================================================================== */

/* ATTENTION
--------------------*/

.app-attention {
	display: none;
	padding: 5px;
	color: #E60012;
	font-weight: bold;
	border: 2px solid #E60012;
}

/* DESC
--------------------*/

.desc {
	margin: 0 0 20px;
}

.desc img {
    width: 100% !important;
    height: auto !important;
}

.desc ul li {
	position: relative;
	padding: 0 0 0 1.5em;
}

.desc ul li:before {
    content: '';
    position: absolute;
    top: .3em;
    left: 0;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #D64747;
}

/* DESC RESULT HIDE
--------------------*/

.desc .result-hide {
	margin: 15px 0 0;
    padding: 15px 0 0;
    border-top: 1px solid #707070;
}

/* ===================================================================
RED FONT
=================================================================== */

sup {
	order: 2;
	color: transparent;
}

sup:before {
	content: "＊";
	color: #FA3E3E;
	width: 3.5em;
    font-weight: 700;
	margin: 0 0 0 5px;
}

/* ===================================================================
BUTTON
=================================================================== */

/* BUTTON
--------------------*/

.btn {
	display: block;
	width: 50%;
	margin: 0 auto;
	padding: 12px 10px;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	background: #D64747;
	border: 2px solid #D64747;
	border-radius: 6px;
}

.btn.btn-cancel {
	margin: 0 auto 20px;
	color: #D64747;
	background: #FFF;
	border: 2px solid #D64747;
}

/* BUTTON2
--------------------*/

.btn2 {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 12px 10px;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	background: #D64747;
	border: 2px solid #D64747;
}

.btn2.btn-cancel {
	margin: 0 auto 20px;
	color: #D64747;
	background: #FFF;
	border: 2px solid #D64747;
}

/* ===================================================================
FORM
=================================================================== */

.form-content {
	margin: 0 0 20px;
}

/* LABEL
--------------------*/

.form-content > label:not(.file-label) {
	display: block;
	margin: 0 0 5px;
	font-weight: bold;
}

/* FORM ATTENTION
--------------------*/

.form-attention {
    margin: 10px 0 40px;
    color: #EA501D;
}

/* COMMON
--------------------*/

.form-content input:not([type=file]),
.form-content select,
.form-content textarea {
	display: block;
	width: 100%;
	font: unset;
	font-family: 'Noto Sans JP', sans-serif;
	color: #000;
	font-weight: normal;
	background: #FFF;
	border: 1px solid #9F9F9F;
	border-radius: 4px;
}

/* INPUT, SELECT
--------------------*/

.form-content input:not([type=file]),
.form-content select {
	min-height: 40px;
	padding: 5px;
}

/* TEXTAREA
--------------------*/

.form-content textarea {
	min-height: 120px;
	padding: 10px 5px;
}

/* PLACEHOLDER
--------------------*/

:placeholder-shown {
	color: #D6D6D6;
}

::-webkit-input-placeholder {
	color: #D6D6D6;
}

:-moz-placeholder {
	color: #D6D6D6;
	opacity: 1;
}

::-moz-placeholder {
	color: #D6D6D6;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #D6D6D6;
}

/* RADIO
--------------------*/

.form-content input[type="radio"] {
    display: none;
}

/* ENQUETE, QUIZ RADIO LABEL
--------------------*/

.form-content .form-content-radio:not(.form) label {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    margin: 0 0 20px;
    min-height: 40px;
	width: 100%;
	color: #1F1F1F;
    font-weight: bold;
    line-height: 20px;
	background: #FFF;
	border: 2px solid #D64747;
	border-radius: 20px;
}

.form-content .form-content-radio:not(.form) input[type="radio"]:checked + label {
	color: #FFF !important;
	background: #D64747;
	border: 2px solid #D64747 !important;
	box-shadow: none;
}

/* PRESENT RADIO LABEL
--------------------*/

.form-content .form-content-radio.prize {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-content .form-content-radio.prize label {
	display: flex;
	flex-direction: column;
    justify-content: space-between;
    width: 47.5%;
    padding: 12px;
}

.form-content .form-content-radio.prize label > img {
	display: block;
	width: 100%;
	margin: 0 0 12px;
}

.form-content .form-content-radio.prize .radio-prize-label {
	display: block;
	width: 100%;
	text-align: center;
}

/* FORM RADIO LABEL
--------------------*/

.form-content .form-content-radio.form label {
	position: relative;
	display: block;
	width: 100%;
	margin: 10px 0;
	padding: 0 0 0 30px;
}

.form-content .form-content-radio.form label:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 1px solid #9F9F9F;
	border-radius: 50%;
}

.form-content .form-content-radio.form input[type="radio"]:checked + label:before {
	border: 1px solid #D64747;
}

.form-content .form-content-radio.form input[type="radio"]:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background: #D64747;
	border-radius: 50%;
}

/* SELECT
--------------------*/

.form-content-select {
	position: relative;
}

.form-content-select:after {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    transform: translate(0, -50%) rotate(45deg);
    right: 15px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #D64747;
    border-bottom: 2px solid #D64747;
    pointer-events: none;
}

/* CHECK
--------------------*/

.form-content .form-content-check label {
	position: relative;
	display: block;
	width: 100%;
	margin: 10px 0;
	padding: 0 0 0 30px;
}

.form-content .form-content-check label:before {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #9F9F9F;
	background: none;
	border-radius: 4px;
}

.form-content .form-content-check input[type="checkbox"]:checked + label:before {
	border: 1px solid #D64747;
	background: #D64747;
}

.form-content .form-content-check input[type="checkbox"]:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 4px;
    height: 9px;
    transform: rotate(40deg);
    border-bottom: 3px solid #FFF;
    border-right: 3px solid #FFF;
}

/* FILE
--------------------*/x
.form-content .form-content-file {
    width: 1px;
    height: 1px;
}

.form-content .form-content-file input[type=file] {
    opacity: 0;
    width: 1px;
    height: 1px;
    padding: 0;
}

.form-content > label.file-label {
    display: block;
	width: 100%;
	min-height: 40px;
	padding: 5px;
    font: unset;
    font-weight: normal;
    border: 1px solid #9F9F9F;
    border-radius: 4px;
}

/* HR
--------------------*/

.form-content-hr {
	display: block;
    padding: 5px 0 0;
	font-weight: bold;
	border-top: 1px solid #9F9F9F;
}

/* ===================================================================
LOADING ICON
=================================================================== */

#curtain {
	text-align: center;
	padding: 25% 0 0;
}