@charset "UTF-8";

@import url("riset.css");
@import url("anime.css");
@import "/lp/shared/css/modal.css";
@import "/lp/shared/variables/chihousousei.css";

/*========== 定義 ==========*/
:root{
    --maincolor: #8d0f06; /*メインカラー*/
    --contentbg: #f8f7f4; /*ページの背景色*/
    --registbtn1: #8d0f06; /*ボタン*/
    --registbtn2: #a43f38; /*ボタンホバー*/
    --registshadow: rgba(0, 0, 0, 0.15); /*ボタンhoverシャドウ*/
    --photoshadow: rgba(0, 0, 0, 0.09); /*ボタンhoverシャドウ*/
    --linktextColor1: #0026b0; /*テキストリンク*/
    --linktextColor2: #0073ff; /*テキストリンクホバー*/
    --h2english: #8B9494; /*h2の英語*/
    --h2border: #e9ebeb; /*h2の英語・会員登録背景*/
    --contactborder: #b6b6b6; /*入力枠線*/
    --maincolor2: #bc0900; /*必須アイコン*/
    --graycolor1: #949494; /*任意アイコン、規約枠線*/
    --errcolor: #f00; /*エラー*/

    --seliftxt: "游明朝体", YuMincho, "游明朝", "Yu Mincho", serif; /*明朝体*/
    --englishtxt: 'Times New Roman'; /*英語*/
}


/*========== 共通 ==========*/
body {
    background-color: var(--contentbg);
}

/*----- h2見出し -----*/
.blk-head h2 {
    font-family: var(--seliftxt);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 1.8;
}
.blk-head h2 span {
    color: var(--h2english);
    font-family: var(--englishtxt);
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    opacity: 0.5;
}
@media screen and (max-width:1160px) {
    .blk-head h2 {
        font-size: 30px;
    }
    .blk-head h2 span {
        font-size: 18px;
    }
}
@media screen and (max-width:1024px) {
    .blk-head h2 {
        font-size: 24px;
    }
    .blk-head h2 span {
        font-size: 14px;
    }
}
@media screen and (max-width:599px) {
    .blk-head h2 {
        font-size: 20px;
    }
    .blk-head h2 span {
        font-size: 12px;
    }
}

/*----- 注釈 -----*/
small {
    margin-left: 1em;
    font-size: 12px;
    line-height: 1.35;
}
small::before {
    content: "※";
    margin-left: -1em;
}
.randomAnime {
	visibility: hidden;
}
@media screen and (max-width:830px) {
    small {
        font-size: 10px;
    }
}

/*----- 改行 -----*/
br.pc-view {
    display: block;
}
@media screen and (max-width:599px) {
    br.pc-view {
        display: none;
    }
}
br.sp-view {
    display: none;
}
@media screen and (max-width:599px) {
    br.sp-view {
        display: block;
    }
}

/*----- テキストリンク -----*/
a[target="_blank"]::after {
    content: url(../img/ic-open.svg);
    margin-left: 5px;
    transition: .3s;
}
a[target="_blank"]:hover {
    opacity: 0.6;
}

/*----- 会員登録ボタン -----*/
p.btn-area a,
p.btn-area button {
    color: var(--mainwhite);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    background: var(--registbtn1);
    box-shadow: 2px 2px 15px 0px var(--registshadow);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 440px;
    height: 60px;
    transition: .3s;
}
p.btn-area a::after,
p.btn-area button::after {
    content: url(../img/ic-arrow.svg);
    margin-left: 7px;
    position: relative;
    left: 0px;
    transition: .3s;
}
p.btn-area a:hover,
p.btn-area button:hover {
    background: var(--registbtn2);
    box-shadow: 2px 2px 25px 0px var(--registshadow);
}
p.btn-area a:hover::after,
p.btn-area button:hover:after {
    left: 5px;
}
@media screen and (min-width:1600px) {
    p.btn-area a,
    p.btn-area button {
        font-size: 18px;
        border-radius: 40px;
        width: 480px;
        height: 80px;
    }
}
@media screen and (max-width:599px) {
    p.btn-area a,
    p.btn-area button {
        font-size: 14px;
        width: 100%;
        height: 60px;
    }
}


/*========== ヘッダー ==========*/
header {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    height: 80px;
    z-index: 2;
}
header div {
    background-color: var(--mainwhite);
    border-radius: 0 0 5px 5px;
    margin: 0 100px;
    padding: 23px;
}
header div p {
    line-height: 1;
    width: 440px;
    transition: .3s;
}
header div p img {
    width: 100%;
}
header div p {
    border-radius: 0 0 8px 8px;
}
header div p a[target="_blank"]::after {
    display: none;
}
header div p a[target="_blank"]:hover {
    opacity: 0.7;
}
@media screen and (max-width:1024px) {
    header {
        height: 66px;
    }
    header div {
        margin: 0 50px;
        padding: 16px;
    }
    header div p {
        width: 360px;
    }
}
@media screen and (max-width:599px) {
    header {
        height: 50px;
    }
    header div {
        margin: 0 20px;
        padding: 13px;
    }
    header div p {
        width: 270px;
    }
}


/*========== メインビジュアル ==========*/
.main-visual {
    margin: 0 0 120px;
    padding: 0;
    background: url(../img/img_mainvisual.jpg) center bottom no-repeat;
    background-size: cover;
	position: relative;
	width: 100%;
    height: 620px;
	overflow: hidden;
    transition: .1s;
}
.main-visual div {
    margin: 150px 100px;
    max-width: 1400px;
}
.main-visual div h1 {
    margin-bottom: 50px;
    font-family: var(--seliftxt);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    transition: .2s;
}
.main-visual div h1 em {
    padding: 15px 20px;
    color: var(--mainwhite);
    font-family: var(--seliftxt);
    font-size: 48px;
    font-weight: 400;
    background-color: var(--mainblack);
    border: 1px solid var(--mainblack);
    display: inline-block;
    position: relative;
    top: -20px;
    z-index: 2;
    transition: .2s;
}
.main-visual div h1 span {
    padding: 15px 20px;
    color: var(--mainblack);
    font-family: var(--seliftxt);
    font-size: 48px;
    font-weight: 400;
    background-color: var(--contentbg);
    border: 1px solid var(--mainblack);
    display: inline-block;
    position: relative;
    left: -20px;
    transition: .2s;
}
.main-visual div h1 span.position-2 {
    left: 10px;
}
@media screen and (min-width:1600px) {
    .main-visual {
        height: 720px;
    }
    .main-visual div {
        margin: 200px auto;
        max-width: 1400px;
    }
}
@media screen and (max-width:1240px) {
    .main-visual div h1 em {
        font-size: 42px;
    }
    .main-visual div h1 span {
        font-size: 42px;
    }
}
@media screen and (max-width:1140px) {
    .main-visual div h1 em {
        padding: 10px 15px;
        font-size: 34px;
    }
    .main-visual div h1 span {
        padding: 10px 15px;
        font-size: 34px;
    }
}
@media screen and (max-width:1024px) {
    .main-visual div {
        margin: 150px 50px;
    }
}
@media screen and (max-width:830px) {
    .main-visual div h1 {
        display: block;
    }
    .main-visual div h1 em {
        font-size: 28px;
        top: -5px;
        left: 0px;
    }
    .main-visual div h1 span {
        font-size: 28px;
        top: 5px;
        left: -5px;
    }
}
@media screen and (max-width:710px) {
    .main-visual div h1 em {
        font-size: 22px;
    }
    .main-visual div h1 span {
        font-size: 22px;
    }
}
@media screen and (max-width:599px) {
    .main-visual div {
        margin: 100px 20px;
    }
    .main-visual div h1 em {
        top: 1.2rem;
        left: -0.5rem;
    }
    .main-visual div h1 span {
        top: 0;
        left: 0;
    }
    .main-visual div h1 span.position-2 {
        top: 0.5rem;
        left: 0.5rem;
        top: 15px;
    }
}


/*========== 募集 ==========*/
.recruiting-block {
    padding: 0 100px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.recruiting-block .sentence-area {
    padding-left: 340px;
    background: url(../img/img-recruiting.png) left bottom no-repeat;
    background-size: 272px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 366px;
}
.recruiting-block .sentence-area h2 {
    text-align: center;
    font-family: var(--seliftxt);
    font-size: 32px;
    line-height: 1.5;
}
.recruiting-block .sentence-area p {
    text-align: center;
    font-family: YuGothic;
    font-size: 16px;
    line-height: 1.9;
}
.recruiting-block .fcweb-area {
    padding: 50px 0;
    background: var(--mainwhite);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 940px;
}
.recruiting-block .fcweb-area p {
    text-align: center;
    line-height: 1.9;
}
.recruiting-block .fcweb-area p.btn-area {
    margin-top: 15px;
}
@media screen and (max-width:1160px) {
    .recruiting-block .sentence-area {
        padding-left: 280px;
        background-size: 246px;
        min-height: 328px;
    }
    .recruiting-block .sentence-area h2 {
        font-size: 24px;
    }
    .recruiting-block .sentence-area p {
        font-size: 14px;
    }
    .recruiting-block .fcweb-area p img {
        width: 240px;
    }
}
@media screen and (max-width:1024px) {
    .recruiting-block {
        padding: 0 50px 100px;
    }
}
@media screen and (max-width:720px) {
    .recruiting-block .sentence-area {
        padding-bottom: 315px;
        padding-left: 0;
        background-position: center bottom;
        background-size: 225px;
        gap: 15px;
        min-height: auto;
    }
    .recruiting-block .fcweb-area {
        padding: 30px;
        width: auto;
    }
}
@media screen and (max-width:599px) {
    .recruiting-block {
        padding: 0 20px 100px;
    }
    .recruiting-block .sentence-area h2 {
        font-size: 20px;
    }
    .recruiting-block .fcweb-area p.btn-area {
        width: 100%;
    }
}


/*========== 背景＆メッセージ ==========*/
.background-block,
.message-block {
    padding: 120px 100px;
    background-color: var(--mainwhite);
}
.message-block {
    background-color: var(--contentbg);
}
.background-block .blk-head,
.message-block .blk-head {
    margin: 0 auto 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--h2border);
    display: flex;
    gap: 100px;
    max-width: 1400px;
}
.background-block .blk-head h2,
.message-block .blk-head h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 215px;
    min-width: 215px;
}
.blk-head div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blk-head div p,
.blk-body div p {
    line-height: 1.9;
}
.blk-body {
    margin: 0 auto 100px;
    display: flex;
    flex-direction: row;
    gap: 5%;
    max-width: 1400px;
}
.message-block .blk-body {
    flex-direction: row-reverse;
}
.blk-body div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}
.blk-body div ul,
.blk-registratuon div ul {
    margin-left: 2rem;
}
.blk-body div ul li,
.blk-registratuon div ul li {
    margin-bottom: 5px;
    list-style: disc;
}
.blk-body p.blk-photo {
    width: 45%;
    opacity: 0;
}
.blk-body p.blk-photo img {
    width: 100%;
}
.blk-registratuon {
    margin: 0 auto 50px;
    background: var(--contentbg);
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15%;
    max-width: 1400px;
}
.message-block .blk-registratuon {
    background: var(--mainwhite);
    flex-direction: row;
    justify-content: flex-end;
}
.blk-registratuon div {
    padding-bottom: 50px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}
.blk-registratuon div h3 {
    padding-top: 50px;
    color: var(--mainblack);
    font-family: YuMincho;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.message-block .blk-registratuon div h3,
.message-block .blk-registratuon div ul,
.message-block .blk-registratuon p.btn-area {
    padding-left: 50px;
}
.blk-registratuon p.regi-photo {
    position: relative;
    left: 0px;
    width: 400px;
    height: 400px;
    opacity: 0;
}
.message-block .blk-registratuon p.regi-photo {
    left: -50px;
}
.blk-registratuon p.regi-photo span.regi-bg1,
.blk-registratuon p.regi-photo span.regi-bg2 {
    content: "";
    background-color: #d9d9d9;
    box-shadow: 0px 0px 20px 0px var(--photoshadow);
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.blk-registratuon p.regi-photo span.regi-bg2 {
    z-index: 1;
}
.blk-registratuon p.regi-photo img {
    box-shadow: 0px 0px 20px 0px var(--photoshadow);
    width: 100%;
    position: absolute;
    z-index: 3;
}
@media screen and (max-width:1240px) {
    .blk-registratuon div h3 {
        font-size: 24px;
    }
    .blk-registratuon p.regi-photo {
        width: 320px;
        height: 320px;
    }
    .blk-registratuon p.btn-area a {
        width: 330px;
    }
}
@media screen and (max-width:1024px) {
    .background-block,
    .message-block {
        padding: 120px 50px;
    }
    .background-block .blk-head,
    .message-block .blk-head {
        margin-bottom: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .blk-registratuon div h3 {
        font-size: 20px;
    }
    .blk-registratuon p.regi-photo {
        width: 300px;
        height: 300px;
        left: 50px;
    }
    .blk-registratuon p.btn-area a {
        width: 300px;
    }
}
@media screen and (max-width:960px) {
    .background-block .blk-head h2,
    .message-block .blk-head h2 {
        align-items: center;
        width: auto;
        min-width: auto;
    }
    .blk-registratuon p.regi-photo {
        width: 230px;
        height: 230px;
        left: 20px;
    }
    .message-block .blk-registratuon p.regi-photo {
        left: -30px;
    }
    .blk-registratuon div h3 {
        font-size: 18px;
    }
    .blk-registratuon p.btn-area a {
        width: 245px;
    }
}
@media screen and (max-width:720px) {
    .background-block .blk-body,
    .message-block .blk-body {
        margin: 0 auto 50px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .background-block .blk-body div,
    .message-block .blk-body div {
        width: 100%;
    }
    .background-block .blk-body p.blk-photo,
    .message-block .blk-body p.blk-photo {
        width: 90%;
    }
    .background-block .blk-registratuon,
    .message-block .blk-registratuon {
        margin: 0 auto 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15%;
        max-width: 1400px;
    }
    .background-block .blk-registratuon div,
    .message-block .blk-registratuon div {
        padding-bottom: 80px;
        margin: 0 auto;
        align-items: center;
        width: auto;
    }
    .background-block .blk-registratuon div h3,
    .message-block .blk-registratuon div h3 {
        padding-top: 30px;
    }
    .message-block .blk-registratuon div h3,
    .message-block .blk-registratuon div ul,
    .message-block .blk-registratuon p.btn-area {
        padding-left: 0;
    }
    .background-block .blk-registratuon p.regi-photo,
    .message-block .blk-registratuon p.regi-photo {
        left: 0;
    }
}
@media screen and (max-width:599px) {
    .background-block,
    .message-block {
        padding: 100px 20px;
    }
    .blk-registratuon div h3 {
        font-size: 16px;
    }
    .blk-registratuon p.regi-photo {
        width: 210px;
        height: 210px;
    }
}


/*========== 具体例 ==========*/
.example-block {
    padding: 120px 100px;
    background-color: var(--mainwhite);
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.example-block .blk-head {
    margin: 0 auto;
    max-width: 1400px;
}
.example-block .blk-head h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.example-block ul.example-body {
    margin: 0 auto;
    display: flex;
    gap: 4%;
    max-width: 1400px;
}
.example-block ul.example-body li {
    padding: 50px;
    border-radius: 10px;
    background: var(--contentbg);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 48%;
}
.example-block ul.example-body li h3 {
    display: flex;
    align-items: center;
    gap: 20px;
}
.example-block ul.example-body li h3 em {
    color: var(--mainblack);
    font-family: var(--seliftxt);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}
.example-block ul.example-body li h3 span {
    color: var(--mainwhite);
    font-family: var(--seliftxt);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.9px;
    line-height: 1.5;
    background-color: var(--mainblack);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    height: 80px;
}
.example-block ul.example-body li p img {
    width: 100%;
}
.example-block ul.example-body li div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.example-block ul.example-body li div p {
    line-height: 1.9;
}
.example-block .btn-area {
    display: flex;
    justify-content: center;
}
@media screen and (max-width:1024px) {
    .example-block {
        padding: 120px 50px;
    }
    .example-block ul.example-body li {
        padding: 30px;
    }
    .example-block ul.example-body li h3 em {
        font-size: 18px;
    }
    .example-block ul.example-body li h3 span {
        font-size: 16px;
        width: 70px;
        min-width: 70px;
        height: 70px;
    }
}
@media screen and (max-width:720px) {
    .example-block ul.example-body {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .example-block ul.example-body li {
        width: auto;
    }
}
@media screen and (max-width:599px) {
    .example-block {
        padding: 100px 20px;
        gap: 30px;
    }
    .example-block ul.example-body li {
        padding: 30px 20px;
    }
    .example-block ul.example-body li h3 {
        gap: 15px;
    }
    .example-block ul.example-body li h3 em {
        font-size: 16px;
    }
    .example-block ul.example-body li h3 span {
        font-size: 14px;
        width: 60px;
        min-width: 60px;
        height: 60px;
    }
}


/*===== 利用までの流れ =====*/
.flow-block {
    padding: 80px 0 120px;
    margin: 0 auto;
    background: var(--contentbg);
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.flow-block .blk-head h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.flow-block p {
    margin-bottom: 50px;
    line-height: 1.9;
    text-align: center;
}
.flow-block .step-area {
    margin: 0 100px;
    max-width: 1400px;
}
.flow-block .step-area ol {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.flow-block .step-area ol li {
    padding: 0 80px 0 0;
    background: var(--mainwhite);
    border-radius: 90px;
    min-height: 180px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}
.flow-block .step-area ol li p.image-area {
    margin-bottom: 0;
    height: 180px;
}
.flow-block .step-area ol li p.image-area img {
    height: 100%;
}
.flow-block .step-area ol li div h3 {
    margin-bottom: 10px;
    color: var(--mainblack);
    font-family: var(--seliftxt);
    font-weight: 600;
    font-size: 24px;
}
.flow-block .step-area ol li div p {
    margin-bottom: 10px;
    text-align: left;
}
.flow-block .step-area ol li div p small {
    display: block;
}
.flow-block .btn-area {
    display: flex;
    justify-content: center;
}

@media screen and (min-width:1400px) {
    .flow-block p {
        font-size: 16px;
    }
    .flow-block .step-area ol li div h3 {
        font-size: 22px;
    }
    .flow-block .step-area ol li div p {
        font-size: 16px;
    }
}
@media screen and (min-width:1600px) {
    .flow-block .step-area {
        margin: 0 auto;
    }
}
@media screen and (max-width:960px) {
    .flow-block .step-area {
        margin: 0 50px;
    }
    .flow-block .step-area ol {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .flow-block .step-area ol li {
        padding: 0 50px 0 0;
        border-radius: 60px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .flow-block .step-area ol li p.image-area {
        margin-bottom: 0;
        height: 120px;
    }
    .flow-block .step-area ol li div {
        padding: 20px 0;
    }
}
@media screen and (max-width:800px) {
    .flow-block .step-area {
        margin: 0 20px;
    }
    .flow-block p {
        margin-right: 20px;
        margin-left: 20px;
        margin-bottom: 0;
        text-align: left;
    }
    .flow-block .step-area ol li {
        padding: 0 30px 0 0;
        border-radius: 50px;
        gap: 20px;
    }
    .flow-block .step-area ol li p.image-area {
        margin: 0;
        height: 100px;
    }
    .flow-block .step-area ol li div h3 {
        font-size: 18px;
    }
    .flow-block .step-area ol li div p {
        margin-right: 0;
        margin-left: 0;
    }
}
@media screen and (max-width:599px) {
    .flow-block {
        gap: 30px;
    }
}
@media screen and (max-width:428px) {
    .flow-block .step-area ol li {
        padding: 0 20px 0 0;
        border-radius: 40px;
    }
    .flow-block .step-area ol li p.image-area {
        margin: 0;
        height: 80px;
    }
    .flow-block .step-area ol li div h3 {
        font-size: 16px;
    }
}


/*===== 会員登録 =====*/
.contact-block {
    padding: 120px 0;
    margin-bottom: 0;
    background: var(--h2border);
	position: relative;
	z-index: 2;
}
.contact-block h2 {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.contact-block p {
    margin-bottom: 15px;
    line-height: 1.9;
    text-align: center;
}
.contact-block ul.notes {
    margin-bottom: 50px;
}
.contact-block ul.notes li {
    margin-bottom: 3px;
    text-align: center;
}
.contact-block ul.notes li small a {
    font-size: 12px;
    text-decoration: underline;
}
.contact-block ul.notes li small a:hover {
    text-decoration: none;
    opacity: calc(0.6);
}
.contact-block form {
    margin: 0 100px;
    max-width: 1400px;
}
.contact-block table.form_table {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}
.contact-block table.form_table th {
    padding: 0;
    font-weight: 700;
    font-size: 14px;
    text-align: right;
    width: 20%;
    white-space: nowrap;
}
.contact-block table.form_table th span.area {
    opacity: calc(0);
}
.contact-block table.form_table span.required {
    padding: 4px 5px;
    margin: 0 10px;
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    background: var(--maincolor2);
    border-radius: 4px;
    display: inline-block;
}
.contact-block table.form_table span.any {
    background-color: var(--graycolor1);
}
.contact-block table.form_table td {
    padding: 0 0 20px;
}
.contact-block table.form_table td input[type="text"] {
    margin: 0 1% 0 0;
    padding: 12px 0;
    text-indent: 0.5rem;
    background: var(--mainwhite);
    border-radius: 2px;
    width: 48%;
}
.contact-block table.form_table td input#fc_user_phone[type="text"],
.contact-block table.form_table td input#fc_user_email[type="text"] {
    width: 97%;
}
.contact-block table.form_table td table.workplace td input#fc_user_work_area4[type="text"] {
    width: 96.2%;
}
.contact-block table.form_table td table.workplace {
    width: 100%;
}
.contact-block table.form_table td table.workplace th {
    text-align: left;
    width: 20%;
}
.contact-block table.form_table td table.workplace td {
}
.contact-block table.form_table td table.workplace td select {
    margin: 0;
    padding: 12px 0;
    text-indent: 0.5rem;
    background: var(--mainwhite);
    border-radius: 2px;
    width: 96.5%;
}
.contact-block table.form_table td table.workplace td select option::after {
    content: url(../img/ic-arrowdown.svg);
    display: block;
}

.contact-block p.rules-area {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 780px;
}
.contact-block p.personal-data {
}
.contact-block p.personal-data a {
    color: var(--linktextColor1);
    text-decoration: none;
}
.contact-block p.personal-data a::after {
    margin-right: 3px;
    margin-left: 5px;
}
.contact-block p.personal-data a:hover {
    color: var(--linktextColor2);
}
.contact-block p.rules-area textarea {
    padding: 12px 3%;
    border-radius: 2px;
    width: 92%;
    height: 200px;
}
.contact-block p.btn-area {
    margin: 0 auto;
    width: 515px;
    height: 100px;
}
.contact-block p.btn-area button {
    width: 515px;
    height: 100px;
    background-image: url("../img/ic-navinext.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: var(--registbtn1);
}

@media screen and (min-width:1400px) {
    .contact-block p {
        font-size: 16px;
    }
    .contact-block table.form_table th,
    .contact-block table.form_table td,
    .contact-block table.form_table td input[type="text"],
    .contact-block table.form_table td table.workplace td select,
    .contact-block p.rules-area textarea,
    .contact-block p.personal-data a {
        font-size: 16px;
    }
    .contact-block table.form_table {
        max-width: 1000px;
    }
    .contact-block p.rules-area {
        max-width: 980px;
    }
}
@media screen and (min-width:1600px) {
    .contact-block form {
        margin: 0 auto;
    }
}
@media screen and (max-width:960px) {
    .contact-block form {
        margin: 0 50px;
    }
    .contact-block p {
        margin-right: 50px;
        margin-left: 50px;
    }
    .contact-block ul.notes {
        margin-right: 50px;
        margin-left: 50px;
    }
}
@media screen and (max-width:800px) {
    .contact-block form {
        margin: 0 20px;
    }
    .contact-block p {
        text-align: left;
        margin-right: 20px;
        margin-left: 20px;
    }
    .contact-block ul.notes {
        margin-right: 20px;
        margin-left: 20px;
    }
    .contact-block ul.notes li {
        text-align: left;
    }
    .contact-block p.personal-data {
        text-align: center;
    }
}
@media screen and (max-width:620px) {
    .contact-block table.form_table tr {
        display: grid;
        flex-direction: column;
    }
    .contact-block table.form_table th {
        margin-bottom: 7px;
        text-align: left;
        width: 100%;
    }
    .contact-block table.form_table td {
        width: 100%;
    }
    .contact-block p.rules-area {
        width: 100%;
    }
    .contact-block p.rules-area textarea {
        width: 90%;
    }
    .contact-block p.personal-data {
        font-size: 12px;
    }
    .contact-block p.btn-area {
        width: 315px;
        height: 80px;
    }
    .contact-block p.btn-area button {
        width: 315px;
        height: 80px;
    }
}
@media screen and (max-width:599px) {
    .contact-block {
        padding: 100px 0;
    }
    .contact-block h2 {
        margin-bottom: 30px;
    }
}


/*===== フッター =====*/
footer {
    padding: 25px 0 30px;
    background-color: var(--mainblack);
	position: relative;
	z-index: 2;
}
footer div {
    margin: 0 100px 30px;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    position: relative;
}
footer div p.logo-mark {
}
footer div p.jpx {
    width: 48px;
    position: absolute;
    right: 50px;
    top: 0;
}
footer div ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
footer div ul li {
    color: var(--mainwhite);
}
footer div ul li a:link,
footer div ul li a:visited,
footer div ul li a:active {
    color: var(--mainwhite);
    text-decoration: none;
    transition: .3s;
}
footer div ul li a:hover {
    color: var(--mainwhite);
    opacity: calc(0.6);
}
footer div ul li a[target="_blank"]::after {
    content: url(../img/ic-open-white.svg);
}
footer p.copyright {
    color: var(--mainwhite);
    text-align: center;
}
footer p.copyright {
    color: var(--mainwhite);
    text-align: center;
}
footer p.copyright small::before {
    content: "";
}
@media screen and (min-width:1600px) {
    footer div {
        margin: 0 auto 30px;
    }
}
@media screen and (max-width:1180px) {
    footer div {
        margin: 0 50px 30px;
        gap: 30px;
    }
    footer div p.jpx {
        right: 30px;
    }
}
@media screen and (max-width:800px) {
    footer div {
        margin: 0 30px 30px;
        flex-direction: column;
    }
    footer div p.jpx {
        right: 0px;
    }
}
@media screen and (max-width:620px) {
    footer div p.logo-mark img {
        width: 200px;
    }
    footer div p.jpx {
        right: -10px;
        top: -15px;
    }
    footer div ul {
        gap: 15px;
    }
    footer div ul li a:link,
    footer div ul li a:visited,
    footer div ul li a:active {
        font-size: 12px;
    }
}
