@charset "utf-8";
/* CSS Document */


/*---------------------------------

member-entry

----------------------------------*/
.member-check {
    padding: 50px 0;
}
.member-check__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.member-check__list >li {
    width: 48%;
    padding: 20px;
    text-align: center;
    border: solid 1px #ccc;
    border-radius: 10px;
    background: #fff;
}
.member-check-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.member-check-btn a {
    color: #fff;
    font-weight: 500;
    display: block;
    background: darkred;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}
.member-check-btn a i {
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
    top: calc(50% - 4px);
}
.about-rpj {
    padding-bottom: 50px;
}
.about-rpj p {
    line-height: 2;
}

.agreement-box {
    font-size: 14px;
    padding: 20px;
    margin-top: 50px;
    line-height: 2;
    border: solid 1px #ccc;
    border-radius: 10px;
    background: #f3f3f3;
}
.agreement-box h3 {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: solid 1px;
}
.agreement-text01 {
    margin-top: 20px;
}
.agreement-text01 a {
    font-weight: 500;
    color: var(--main-color);
    border-bottom: solid 1px;
}
.agreement-use__list >li {
    position: relative;
    padding-left: 20px;
}
.agreement-use__list >li span {
    position: absolute;
    left: 0;
    top: 0;
}
.agreement-btn {
    font-size: 16px;
    text-align:center;
    margin-top: 30px
}
.agreement-btn span {
    color: #ccc;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.agreement-btn span:hover,
.agreement-btn.active span {
    color: var(--base-color);
}
.agreement-btn span i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 1000px;
    position: relative;
    vertical-align: middle;
    margin-right: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.agreement-btn span i:after {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    border-top: solid 5px #fff;
    border-left: solid 5px #fff;
    transform: rotate(-135deg);
    position: absolute;
    top: 5px;
    left: 10px;
}
.agreement-btn.active span i {
    background: #2ecc71;
}
.agreement-hidden-btn {
    display: none;
}


@media (max-width: 815px) {

    #entry-form .inner {
        padding: 50px 20px;
    }
    .member-check {
        padding: 0 0 50px;
    }
    .member-check__list {
        display: block;
    }
    .member-check__list >li {
        width: 100%;
        margin-bottom: 20px;
    }

}




/*---------------------------------

entry

----------------------------------*/




#entry-form .inner {
    background: rgba(255, 255, 255, 0.9);
}
#entry-form:after {
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0;
    background: url("../img/home/bg.png") center top no-repeat;
    background-size: 130% auto;
    -webkit-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
    animation-name: fuwafuwa;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: -1;
}
#entry-form.animated:after {
    opacity: 1;
    top: 0;
}
.required {
    color: #dd0000;
}
.entry-caution {
    font-size: 13px;
    text-align: center;
    margin-bottom: 50px;
}
.entry-form {
	max-width: 800px;
	margin: auto;
}

.entry-form-sub {
    margin-top: 60px;
}
.entry-form-sub-title {
    font-size: 18px;
    font-weight: 500;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: solid 4px var(--main-color);
}
.entry-form-sub-text {
    font-size: 15px;
}
.add-entry-form-sub {
    display: none;
    margin-top: 30px;
}
.add-entry-form-sub.active {
    display: block;
}
.add-entry-form-sub h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    background: #666;
    border-radius: 10px 10px 0 0;
}
.add-user {
    text-align: right;
    margin-top: 20px;
}
.add-user-btn {
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    border-bottom: solid 1px;
}
.entry-form-cautions {
    margin-top: 110px;
}
.entry-form-caution {
    margin-bottom: 50px;
}
.entry-form-caution h3 {
    font-size: 16px;
    font-weight: 500;
    background: #f3f3f3;
    padding: 10px;
    margin-bottom: 20px;
}
.entry-form-caution p {
    font-size: 14px;
    line-height: 2;
}
.entry-form-caution__list >li {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 40px;
}
.entry-form-caution__list >li h4 {
    font-size: 14px;
    font-weight: 500;
}
.entry-form-caution__list >li ul >li {
    padding-left:15px;
    position: relative;
}
.entry-form-caution__list >li ul >li:before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
}

/* cmn */
.entry-form table {
    font-size: 15px;
    line-height: 2;
    width: 100%;
    border-collapse: collapse;
    border-top: solid 1px #ccc;
}
.entry-form table th {
    font-weight: 500;
    width: 200px;
    text-align: left;
    padding-left: 20px;
    background: #f3f3f3;
    border-bottom: solid 1px #ccc;
}
.entry-form table td {
    padding: 20px;
    border-bottom: solid 1px #ccc;
}

.entry-form table td .venue-area {
    color: #fff;
    padding: 2px 10px 3px;
    background: var(--main-color);
}
.entry-form table td .limit-over {
    color: #ccc;
}
.entry-form table td .limit-over .icon-limit-over {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    background: #aaa;
    line-height: 1;
    padding: 5px 10px;
    margin-right: 10px;
}
.entry-form table td label {
    margin-right: 10px;
}
.input-caution {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}
#passcheck {
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 10px 5px;
    line-height: 1;
    background: #ccc;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}
#passcheck.on {
    background: #222;
}

.cmn-input,
.cmn-input-s,
.cmn-input-m,
.cmn-select,
.cmn-select-s,
.cmn-textarea {
	font-size: 16px;
}

.cmn-input {
    width: 100%;
    height: 50px;
    border: solid 1px #eee;
	background: #fff;
    text-indent: 10px;
}
.cmn-input-s {
    width: 25%;
    height: 50px;
    border: solid 1px #eee;
	background: #fff;
    text-indent: 10px;
}
.cmn-input-m {
    width: 60%;
    height: 50px;
    border: solid 1px #eee;
	background: #fff;
    text-indent: 10px;
}
.cmn-select {
    width: 50%;
    height: 50px;
    border: solid 1px #eee;
	background: #fff;
}
.cmn-textarea {
    width: 100%;
    height: 100px;
    border: solid 1px #eee;
	background: #fff;
}
.cmn-textarea-l {
    width: 100%;
    height: 200px;
    border: solid 1px #eee;
	background: #fff;
}
.cmn-radio-btn {
	width: 20px;
	height: 20px;
	vertical-align: -4px;
	margin-right: 5px;
}
.contact-form ::placeholder{
  color:#ccc
}

.entry-name-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.entry-name-wrap .entry-name {
    width: 49%;
}
.entry-address-wrap .entry-address:not(:last-child) {
    margin-bottom: 10px;
}

.check-policy {
    font-size: 15px;
    text-align: center;
    margin-top: 50px;
}
.check-policy a {
    color: var(--base-color);
    text-decoration: underline;
}

#btn-send {
    cursor: pointer;
    display: block;
    font-size: 20px;
    font-weight: 500;
    max-width: 320px;
    width: 100%;
    text-align: center;
    line-height: 1;
    padding: 20px 0;
    margin: 50px auto 0;
    color: var(--main-color);
    border: solid 2px;
    background: #fff;
    border-radius: 100px;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#btn-send i {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: var(--main-color);
    border-radius: 10000px;
    position: relative;
    vertical-align: -5px;
    margin-left: 10px;
}
#btn-send i:after {
    content: '';
    color: #fff;
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
    left: 7px;
}
#btn-send:hover {
	color: #fff;
	background: var(--main-color);
}

@media (max-width: 815px) {

    .entry-form-sub {
        margin-top: 30px;
    }
    .entry-form-sub-title {
        font-size: 15px;
    }
    .entry-form-sub-text {
        font-size: 13px;
    }
    .add-entry-form-sub h4 {
        font-size: 14px;
    }
    .entry-form-caution h3 {
        font-size: 14px;
    }
    .entry-form-caution p {
        font-size: 13px;
    }
    .entry-form-caution__list >li {
        margin-bottom: 20px;
    }

    .entry-form table {
        font-size: 14px;
        border-top: none;
    }
    .entry-form table th {
        display: block;
        width: 100%;
        padding: 10px;
        border-bottom: none;
    }
    .entry-form table td {
        display: block;
        width: 100%;
        padding: 20px 0;
        border-bottom: none;
    }

    .check-policy {
        font-size: 13px;
        margin-top: 30px;
    }

}
