@charset "utf-8";
/* CSS Document */

/* powerandit.co.jp - contact
-----------------------------------------------------*/
main {
    max-width: 900px;
}

.memo {
    margin-bottom: 1em;
}

table {
    width: 100%;
    margin-bottom: 40px;
}
/*th,td {
    padding: 12px 0;
    vertical-align: top;
}
th {
    width: 13em;
    padding-top: 16px;
    
}*/
th {
    width: 18em;
    text-align: left;
}
th .require {
    font-size: 0.875em;
    color: #f00;
}
@media screen and (max-width: 700px) {
    th,td {
        display: block;
        width: auto;
        margin-top: -1px;
    }
    td {
    }
}

#message {
    max-width: 700px;
    margin: 0 auto 40px;
}
#message a {
    color: var(--point-blue);
    text-decoration: underline;
}
#message label {
    display: inline-block;
    margin-top: 1em;
    font-size: 1.125em;
}

#confirm th,
#confirm td {
    display: block;
    padding-bottom: 0;
}
#confirm td {
    padding-bottom: 1em;
}


input[type="text"],
input[type="email"],
textarea,
select {
	outline: none;
    padding: 0.5em;
	border: 1px solid #9ca4a6;
    border-radius: 5px;
    background: #fff;
}
input[type="text"],
input[type="email"] {
    width: 100%;
    max-width: 300px;
}
input[name="add"] {
    width: 100%;
    max-width: 100%;
}
select {
    width: 300px;
}
textarea {
    resize: vertical;
    width: 100%;
    height: 7em;
}
@media screen and (max-width: 370px) {
    select {
        width: 260px;
    }
}

.select_wrapper {
    position: relative;
    display: inline-block;
}
.select_wrapper::after {
    position: absolute;
	content: "";
    top: 50%;
    right: 15px;
    width: 8px;
    height: 7px;
    margin-top: -3px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: #939393;
    pointer-events: none;
}

::placeholder {
    color: #808080;
}

span.error {
    display: block;
    font-size: 14px;
    color: #d00;
}
#input_error {
    display: flex;
    justify-content: center;
    margin: 2em auto;
    padding: 1em 1.5em;
    border: 1px solid #e33131;
    text-align: left;
    color: #e33131;
    font-size: 16px;
}

/* ==============================================
    radio / checkbox
============================================== */
label + label {
    display: inline-block;
    margin-top: 0.3em;
}
input[type="radio"] {
    margin-right: 0.3em;
    transform: scale(1.3, 1.3);
}
/*
.radio,
.checkbox {
    margin-bottom: 1em;
}
.radio label,
.checkbox label {
    font-size: 1.125em;
}
.radio label:not(:first-of-type),
.checkbox label:not(:first-of-type) {
    margin-left: 2em;
}
input[type="radio"],
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    transition: all .4s;
    margin-right: -37px;
}
input[type="radio"]::before,
input[type="radio"]::after,
input[type="checkbox"]::before,
input[type="checkbox"]::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    border: 1px solid #2a2a2a;
}
input[type="radio"]::before,
input[type="checkbox"]::before {
    box-shadow: inset 3px 3px 5px rgba(0,0,0,.1);
}
input[type="radio"]::after,
input[type="checkbox"]::after {
    transform: translateX(-100%) scale(56%);
    background: #252770;
    border-color: #252770;
    visibility: hidden;
}
input[type="radio"]::before,
input[type="radio"]::after {
    border-radius: 23px;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
    border-radius: 2px;
}
input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    visibility: visible;
}
*/

/* ==============================================
    btn
============================================== */
#agreeBtn {
    margin-bottom: 40px;
    font-size: 14px;
}
#agreeBtn a {
    color: #16b2d9;
    text-decoration: none;
    font-weight: 500;
}
#agreeBtn span {
    margin-left: 1.2em;
}

.button {
    text-align: center;
}
span input[type="submit"] {
    outline: none;
    padding-left: 0.8em;
    padding: 0.7em 1.5em 0.7em 3em;
    border-radius: 2em;
    border: 1px solid var(--point-orange);
    background: #fff;
    cursor: pointer;
}
.button span {
    position: relative;
    display: inline-block;
}
.button span::before {
    position: absolute;
    left: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 10px;
    height: 14px;
    clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 0% 100%, 60% 50%, 0% 0%);
    background: var(--point-orange);
}
@media (hover: hover) {
	.button span:hover {
		opacity: 0.6;
	}
}


.button.btn a {
    margin-top: 0.5em;
}
input[type="submit"]:disabled {
    pointer-events: none;
    background-color: #ddd;
    border-color: #aaa;
}
span:has(input[type="submit"]:disabled) {
    pointer-events: none;
}
span:has(input[type="submit"]:disabled)::before {
    background: #aaa;   
}

/* ==============================================
    close
============================================== */
#close {
    text-align: center;
    font-size: 1.125em;
}

/* ==============================================
    thanks
============================================== */
#thanks  {
    text-align: center;
    font-size: 1.125em;
}
