@charset "utf-8";
/* CSS Document */

/* 一般
-----------------------------------------*/

html{
    font-size: 62.5%;
    /*scroll-behavior: smooth;*/
}

body{
	font-size: 1.6rem; 
	line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
	color: #111;
	-webkit-text-size-adjust: 100%;
	position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
a,
a *{
	color: #111;
	text-decoration: none;
	-webkit-transition: all .3s;
			transition: all .3s;
}
@media screen and (min-width:768px) {
a:hover{
	opacity: .7;
}
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
}
.sponly{
	display: none;
}
}
@media screen and (max-width:767px) {
body{
	font-size: 1.4rem;
}
.pconly{
	display: none;
}
}


/* ヘッダー
-----------------------------------------*/
#header{
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media screen and (max-width:767px) {
#header{
    padding: 0;
}
}


/* コンテンツ
----------------------------------------- */
#contents{
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media screen and (min-width:768px) {
}
@media screen and (max-width:767px) {
}


.form_contents{
    margin-top: 60px;
}

.required{
    margin-left: 10px;
    background: #E61934;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 1.6rem;
}
@media screen and (max-width:767px) {
.required{
    font-size: 1.4rem;
}
}

#upload dt,
#prize dt,
#message dt{
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 15px;
}


#upload input[type="file"] {
    width: 100%;
}
#upload input[type="file"]::file-selector-button{
    font-size: 2rem;
    margin-right: 20px;
    cursor: pointer;
}
#upload .error{
    color: #E61934;
    font-size: 1.6rem;
    font-weight: bold;
}

#u_point,
#u_attention{
    margin-top: 30px;
}
#u_point dt,
#u_attention dt{
    font-size: 1.8rem;
    margin-bottom: 5px;
}
#u_point > dd{
    margin-top: 15px;
    border: solid 1px #E61934;
    padding: 40px;
    border-radius: 10px;
    background: #f9f9f9;
}
#u_point > dd:last-child{
    border-color: #aaa;
}
#u_point > dd dt{
    padding: 2px 10px;
    text-align: center;
    color: #fff;
}
#u_point > dd:nth-child(2) dt{
    background: #E61934;
}
#u_point > dd:last-child dt{
    background: #999;
}
#u_point > dd dd{
    margin-top: 15px;
}

#u_point > dd:last-child dd:nth-child(3){
    margin-top: 30px;
}
#u_point > dd:nth-child(2) dd figure{
    width: 160px;
}
#u_point > dd:last-child dd:nth-child(2) figure{
    text-align: center;
}
#u_point > dd:last-child dd:nth-child(2) figcaption{
    margin-top: 5px;
    font-weight: bold;
}
#u_point > dd:last-child dd:nth-child(2) figcaption span{
    color: #E61934;
    font-weight: bold;
    margin-right: 5px;
}
#u_point > dd:nth-child(2) dd li{
    list-style: disc;
    margin-left: 1.4em;
}
#u_attention dd li{
    list-style: disc;
    margin-left: 1.4em;
}
#u_attention dd li:first-child{
    color: #E61934;
    font-weight: bold;
}
@media screen and (min-width:768px) {
#u_point > dd:nth-child(2) dd,
#u_point > dd:last-child dd:nth-child(2){
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#u_point > dd:nth-child(2) dd ul{
    width: calc(100% - 200px);
}
}
@media screen and (max-width:767px) {
#u_point > dd{
    padding: 20px;
}
#u_point > dd:last-child dd:nth-child(2){
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#u_point > dd:nth-child(2) dd figure{
    margin: 0 auto;
}
#u_point > dd:last-child dd:nth-child(2) figure{
    width: 48%;
}
#u_point > dd:last-child dd:nth-child(2) figure:nth-child(n+3),
#u_point > dd:nth-child(2) dd ul{
    margin-top: 15px;
}
}


.mw_wp_form_input #prize li{
    border: solid 1px #ddd;
    padding: 20px;
    border-radius: 10px;
}
#prize li input[type="radio"]{
    display: none;
}
#prize li input[type="radio"] + span{
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%;
    background: #f6f7f8;
    border-radius: 10px;
    padding: 15px 20px 15px 54px;
}
#prize li .horizontal-item:nth-child(n+2) span{
    margin-top: 15px;
}
#prize li input[type="radio"] + span::before{
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    content: '';
    display: block;
    height: 24px;
    left: 20px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 24px;
}
#prize li input[type="radio"] + span::after{
    background: #fff;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 27px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
#prize li input[type="radio"]:checked + span::before{
    border-color: #fff;
    background: #53b300;
}
#prize li input[type="radio"]:checked + span::after{
    opacity: 1;
}
.mw_wp_form_input #prize li .select{
    margin-top: 15px;
}
#prize li img{
    margin-top: 20px;
}
#prize dd > p{
    margin-top: 20px;
}
#prize .error{
    color: #E61934;
    font-size: 1.6rem;
    font-weight: bold;
}
@media screen and (min-width:768px) {
.mw_wp_form_input #prize ul{
    display: flex;
    flex-wrap: wrap;
}
.mw_wp_form_input #prize li{
    width: calc(50% - 10px);
}
.mw_wp_form_input #prize li:nth-child(2n+1){
    margin-right: 20px;
}
.mw_wp_form_input #prize li:nth-child(n+3){
    margin-top: 20px;
}
}
@media screen and (max-width:767px) {
.mw_wp_form_input #prize li:nth-child(n+2){
    margin-top: 15px;
}
}

#basic table{
    width: 100%;
    border-top: 1px solid #ddd;
}
#basic th,
#basic td{
    vertical-align: middle;
    border-bottom: 1px solid #ddd;
}
#basic th{
    font-weight: bold;
    padding: 20px 0;
    white-space: nowrap;
}
#basic td{
    padding: 20px 0 20px 40px;
}
#basic td .error{
    color: #E61934;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 5px;
}
#basic td ul{
    margin-top: 15px;
    font-size: 93%;
    color: #E61934;
}
#basic td input[type="text"],
#basic td input[type="email"],
#basic td select,
#message textarea,
.mw_wp_form_input #prize li select{
    padding: 8px 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-appearance: none;
	max-width: 100%;
    width: 100%;
	border-radius: 0;
	border: 1px solid #aaa;
    border-radius: 4px;
}
#basic td select,
.mw_wp_form_input #prize li select{
    cursor: pointer;
}
#message textarea{
    height: 300px;
}
#basic td .select,
.mw_wp_form_input #prize li .select{
    position: relative;
}
.mw_wp_form_input #basic td .select::after,
.mw_wp_form_input #prize li .select::after{
    content: "";
    position: absolute;
    top: 18px;
    right: 20px;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 8px solid #111;
    border-bottom: 0;
}
#basic td input[type="radio"],
#agree input[type="checkbox"]{
    display: none;
}
#basic td input[type="radio"] + span{
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: auto;
    background: #f6f7f8;
    border-radius: 10px;
    padding: 15px 20px 15px 54px;
}
#basic td input[type="radio"] + span::before{
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    content: '';
    display: block;
    height: 24px;
    left: 20px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 24px;
}
#basic td input[type="radio"] + span::after{
    background: #fff;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 27px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
#basic td input[type="radio"]:checked + span::before{
    border-color: #fff;
    background: #53b300;
}
#basic td input[type="radio"]:checked + span::after{
    opacity: 1;
}

#agree input[type="checkbox"] + span{
    position: relative;
    display: inline-block;
    padding: 15px 20px 15px 55px;
    cursor: pointer;
    background: #f6f7f8;
    border-radius: 10px;
}
#agree input[type="checkbox"] + span::before{
    position: absolute;
    content: '';
    top: 15px;
    left: 20px;
    width: 24px;
    height: 24px;
    background: #fff;
    border: solid 1px #aaa;
    border-radius: 4px;
}
#agree input[type="checkbox"]:checked + span::before{
    background: #53b300;
    border: none;
}
#agree input[type="checkbox"]:checked + span::after{
    position: absolute;
    content: '';
    top: 16px;
    left: 22px;
    width: 23px;
    height: 10px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



#attention > ul li:nth-child(n+2){
    margin-top: 10px;
}
#attention > ul img{
    vertical-align: middle;
}
#attention dl{
    margin-top: 40px;
}
#attention dt{
    font-size: 2rem;
    font-weight: bold;
}
#attention dd{
    margin-top: 15px;
    border: solid 1px #E61934;
    padding: 40px;
    border-radius: 10px;
}
#attention dd li{
    list-style: disc;
    margin-left: 1.4em;
}
#attention dd li:first-child{
    color: #E61934;
    font-weight: bold;
}

#agree{
    text-align: center;
    margin-top: 40px;
}
#agree input{
    margin-right: 10px;
}
#agree .error{
    color: #E61934;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 10px;
}
@media screen and (min-width:768px) {
#basic th{
    width: 300px;
}
#basic td span.mwform-radio-field:nth-child(n+2){
    margin-left: 20px;
}
}
@media screen and (max-width:767px) {
#basic table{
    margin-top: 60px;
}
#basic th,
#basic td{
    display: block;
}
#basic th{
    padding: 20px 0 0 0;
    border-bottom: none;
}
#basic td{
    padding: 15px 0 20px 0;
}
#basic td input[type="text"],
#basic td input[type="email"],
#basic td select,
#message textarea{
    font-size: 16px;
}
#message textarea{
    height: 200px;
}
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
}
.mw_wp_form .horizontal-item + .horizontal-item span{
    margin-top: 15px;
}
#basic td input[type="radio"] + span{
    width: 100%;
}
#attention dd{
    padding: 20px;
}
}

#button{
    width: 320px;
    margin: 60px auto 0 auto;
}
#button input{
	display: inline-block;
	text-align: center;
	width: 320px;
	background: transparent;
	-webkit-transition: all 0.7s ease-out;
	transition: all 0.7s ease-out;
	box-sizing: border-box;
	cursor: pointer;
    line-height: 80px;
    border-radius: 10px;
    font-size: 2.4rem;
    font-weight: bold;
}
#button input:hover{
    opacity: .7;
}
input[type="submit"]{
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    background: #600 !important;
	color: #fff;
}
input[type="submit"]::-webkit-search-decoration{
  display: none;
}
input[type="submit"]::focus{
  outline-offset: -2px;
}
#button #back_btn input{
    background: #999 !important;
}
@media screen and (min-width:768px) {
#button ul{
    display: flex;
    justify-content: center;
}
#button li:nth-child(n+2){
    margin-left: 40px;
}
}
@media screen and (max-width:767px) {
#button{
    margin: 40px auto 0 auto;
}
#button li:nth-child(n+2){
    margin-top: 20px;
}
#button input{
    line-height: 60px;
    border-radius: 10px;
    font-size: 1.8rem;
}
}


/* 確認画面
----------------------------------------- */
.mw_wp_form_confirm #upload dl:nth-child(n+2),
.mw_wp_form_confirm #prize br,
.mw_wp_form_confirm #prize img,
.mw_wp_form_confirm #prize p,
.mw_wp_form_confirm tr.mail_confirm,
.mw_wp_form_confirm #attention,
.mw_wp_form_confirm #agree{
    display: none;
}



/* フッター
----------------------------------------- */
#footer{
    padding: 40px 20px;
}
#footer p{
    text-align: center;
}
@media screen and (max-width:767px) {
#footer p span{
    display: none;
}
}

