@charset "UTF-8";

/* 下層ページ共通 */
header {
    top: 0;
}

.header-curve {
    position: absolute;
    top: 0;
    width: 100%;
    height: 15%;
    border-radius: 0 0 0 70%;
    background: var(--themecolor);
    opacity: 0.2;
}

.page-ttl {
    position: relative;
    text-align: left;
    margin-top: 120px;
    padding: 0 25px;
}

.page-ttl h1 {
    font-size: 80px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 2px;
}

.content {
    margin-top: 120px;
    padding: 0 50px;
}

.page-ttl h2 {
    font-weight: normal;
    display: flex;
    align-items: center;
}

.page-ttl h2::before {
    border-top: 2px solid var(--themecolor);
    content: "";
    width: 10%;
    margin-right: 20px;
}

/* recruit */
.requirements {
    display: flex;
    align-items: center;
}

.requirements span {
    border-bottom: 2px solid red;
    margin-left: 20px;
}

.requirements::before{
    margin: 0 20px;
	width: 15px;
	height: 15px;
	content: '';
	border-radius: 100%;
	background: var(--themecolor);
}

#recruit-table {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: rgba(143, 195, 30, 0.1);
    margin: 40px auto 0 auto;
    max-width: 1500px;
}

table {
    position: relative;
    margin: 0 auto;
    font-size: 20px;
    text-align: left;
}

table tr:last-child td{ 
    border-bottom:none;
}

table tr:last-child th{ 
    border-bottom:none;
} 

table tr td {
    word-break: keep-all;
}

table td {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

table th,
table td {
    padding: 60px 20px;
    border: none;
    border-bottom: 1px solid var(--themecolor);
}

.btn-ttl.__entry::after {
    content: "応募はこちら";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 20px;
    font-style: normal;
}

/* contact */
.contact-txt {
    font-weight: 100;
}

#form {
    width: 100%;
    margin: 120px auto 0 auto;
    max-width: 1300px;
    font-size: 16px;
}

.contact-heading {
    margin-bottom: 40px;
}

.contact-label {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.contact-label::before {
    display: inline-block;
    margin: 0 20px;
	width: 10px;
	height: 10px;
	content: '';
	border-radius: 100%;
	background: var(--themecolor);
}

.contact-span {
    color: red;
    margin-left: 20px;
    font-weight: bold;
    font-style: normal;
}

textarea {
    padding: 25px;
}

.contact-textbox {
    margin-bottom: 80px;
    width: 100%;
    height: 65px;
    background: rgba(142, 195, 30, 0.1);
    border-radius: 30px;
    padding: 0 25px;
}

.contact-textarea {
    margin-bottom: 80px;
    width: 100%;
    height: 200px;
    background: rgba(142, 195, 30, 0.1);
    border-radius: 30px;
}

.button {
    display: grid;
    width: 150px;
    height: 50px;
    background: var(--themecolor);
    border-radius: 30px;
    border: 2px solid var(--themecolor);
    margin: auto;
    align-items: center;
}

.submit {
    color: var(--subcolor);
    transition: .3s;
    opacity: 0.2;
}

/* thanks */
.content {
    text-align: center;
}

.thanks-ttl {
    position: relative;
}

.thanks-ttl::after {
    content: '';
    width: 200px;
    height: 1px;
    background-color: var(--themecolor);
    position: absolute;
    bottom: -10px;
    left: calc(50% - 100px);
}

.thanks-txt {
    position: relative;
    margin: 120px 0;
}

@media screen and (max-width: 768px) {
    /* 共通 */
    .page-ttl h1 {
        font-size: 36px;
    }

    .page-ttl h2 {
        font-size: 13px;
    }

    .content {
        margin-top: 80px;
        padding: 0 20px;
    }

    #footer {
        margin-top: 80px;
    }

    /* recruit */
    .requirements {
        font-size: 13px;
    }

    table {
        font-size: 13px;
    }

    table th,
    table td{
        display:block;
        padding: 20px;
    }

    table th {
        border-bottom: none;
    }

    .btn-ttl.__entry::after {
        font-size: 11px;
    }

    /* works */
    .works-flex {
        margin: 0;
    }

    .works-content {
        padding: 0
    }

    /* contact */
    .contact-txt {
        font-size: 13px;
    }

    #form {
        margin-top: 80px;
        font-size: 11px;
    }

    .contact-heading {
        margin-bottom: 15px;
    }

    .contact-textbox {
        margin-bottom: 40px;
        height: 50px;
    }

    .privacy {
        margin-bottom: 40px;
    }

    .button {
        width: 100px;
        height: 30px;
    }

    /* thanks */
    .thanks-txt {
        margin: 80px 0;
    }

    .thanks-ttl {
        font-size: 13px;
        font-weight: bold;
    }
} 