@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

::before,
::after {
    box-sizing: inherit;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    margin: auto;
    letter-spacing: 0.8px;
}

.img {
    display: block;
    margin: auto;
}

/********************************************************************************
*
* 共通
*
********************************************************************************/
#header_low {
    max-width: 1920px;
    background-image: url(../img/head-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 2rem 90px;
    margin: auto;
}

.h_flex {
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 768px) {
    .h_flex {
        flex-wrap: wrap;
    }
}

.h_ttl {
    padding-top: 70px;
    text-align: center;
}

.h_ttl .jp {
    font-size: 48px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .h_ttl .jp {
        font-size: 40px;
    }
}

.h_ttl .en {
    font-size: 18px;
    font-weight: bold;
}

.h_ttl .jp2 {
    font-size: 24px;
    font-weight: bold;
}

.h_logo {
    display: block;
    padding-bottom: 5px;
}

.logo_txt {
    padding-left: 25px;
}

@media screen and (max-width: 768px) {
    .logo_txt {
        padding-top: 10px;
        padding-left: 0;
        width: 100%;
    }

    .logo_txt .sp_none {
        display: none;
    }
}

#footer {
    color: white;
    background: black;
    padding: 20px 1rem;
}

.f-list {
    display: flex;
    margin: auto;
    width: 100%;
    justify-content: center;
}

.f-list > li {
    padding: 0 20px;
    border-left: solid 1px white;
}

.f-list > li:last-child {
    border-right: solid 1px white;
}

.f-list a {
    color: white;
    text-decoration: none;
}

.f-copyright {
    color: #B5B5B6;
    text-align: center;
}

/********************************************************************************
*
* トップページ
*
********************************************************************************/

#header {
    display: flex;
    justify-content: space-between;
    height: 120px;
    padding: 35px 2rem 0;
    margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
    #header {
        display: none;
    }
}

.head-logo {
    width: 80%;
    max-width: 280px;
}

.top-area {
    background-image: url(../img/top-bg.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .top-area {
        background-position: left;
    }
}

.top-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../img/top-bg2.png);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .top-area::before {
        content: none;
    }
}

.top-inner {
    position: relative;
    width: 100%;
    z-index: 2;
}

.top-link {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1100px) {
    .top-link {
        display: none;
    }
}

.top-link > li {
    width: 313px;
    min-height: 80px;
    transition: 0.2s all;
}

.top-link > li a {
    display: flex;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    font-size: 17px;
    padding: 10px;
}

.top-link > li:hover {
    text-decoration: none;
    opacity: 0.7;
}

.top-link > .register {
    background-color: #E05885;
}

.top-link > .login {
    background-color: #14349A;
}

.top-link > .register a::before {
    content: url(../img/icon-01.png);
    margin-top: 5px;
    margin-right: 15px;
}

.top-link > .login a::before {
    content: url(../img/icon-02.png);
    margin-top: 5px;
    margin-right: 15px;
}

.top-center {
    display: block;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .top-center {
        padding-top: 20px;
    }
}

.top-img {
    display: block;
    margin: auto;
}

.top-bnr {
    width: 90%;
    max-width: 500px;
}

.top-logo {
    width: 65%;
    max-width: 568px;
}

@media screen and (max-width: 768px) {
    .top-logo {
        margin-top: 20px;
    }
}


.top-img-sup {
    position: absolute;
    right: 5%;
    top: 180px;
}

@media screen and (max-width: 1100px) {
    .top-img-sup {
        right: 1%;
        top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .top-img-sup {
        display: none;
    }
}

.top-center .register {
    max-width: 400px;
    height: 80px;
    width: 95%;
    margin: auto;
    margin-top: 75px;
    background-color: #E05885;
    border-radius: 50px;
    transition: 0.2s all;
}

@media screen and (max-width: 768px) {
    .top-center .register {
        max-width: none;
        height: auto;
        width: 80%;
    }
}

.top-center .login {
    max-width: 400px;
    height: 80px;
    width: 95%;
    margin: auto;
    margin-top: 33px;
    background-color: #14349A;
    border-radius: 50px;
    transition: 0.2s all;
}

@media screen and (max-width: 768px) {
    .top-center .login {
        max-width: none;
        height: auto;
        width: 80%;
    }
}

.top-center .register a,
.top-center .login a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 10px;
    letter-spacing: 1px;
    text-decoration: none;
}

.top-center .register:hover,
.top-center .login:hover {
    text-decoration: none;
    opacity: 0.7;
}

.top-center .register a::before {
    content: url(../img/icon-01.png);
    margin-top: 5px;
    margin-right: 15px;
}

.top-center .login a::before {
    content: url(../img/icon-02.png);
    margin-top: 5px;
    margin-right: 15px;
}

.top-area .copyright {
    margin: 0 auto;
    padding: 100px 1rem 90px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .top-area .copyright {
        padding: 50px 0;
    }
}


/********************************************************************************
*
* お問い合わせフォーム & 新規登録フォーム
*
********************************************************************************/

.content_wrap {
    max-width: 1920px;
    width: 100%;
    padding: 60px 1rem 100px;
    margin: auto;
    position: relative;
    background-image: radial-gradient(#E5E4E4 5%, transparent 8%), radial-gradient(#E5E4E4 5%, transparent 8%);
    background-size: 14px 14px;
    background-position: 0 0, 7px 7px;
}

.content_inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.contact_lead {
    text-align: center;
    border: solid 6px #F5F517;
    background: white;
    padding: 30px 20px 40px;
}

.contact_lead div {
    font-size: 22px;
    font-weight: bold;
    line-height: 2;
}

.contact_lead p {
    font-size: 18px;
}

.con_lead_txt {
    padding: 40px 0 30px;
    text-align: center;
}

.conimg-01 {
    max-width: 900px;
    width: 100%;
}

.form_wrap {
    width: 100%;
    padding: 15px;
    background: #F7F7F7;
    margin: auto;
    margin-top: 60px;
}

form {
    background: white;
    padding-bottom: 50px;
}

.formTable {
    width: 100%;
}

.formTable tr {
    display: flex;
    flex-wrap: wrap;
    padding-left: 2%;
    padding-right: 2%;
    border-bottom: solid 1px #F7F7F7;
}

.formTable tr td:first-child {
    width: 85px;
    padding: 25px 10px;
    text-align: center;
}

.formTable tr td.hissu {
    position: relative;
    z-index: 2;
    color: white;
}

.formTable tr td.hissu span {
    position: relative;
}

.formTable tr td.hissu span::before {
    position: absolute;
    content: '';
    background: #E05885;
    top: -5px;
    bottom: -5px;
    left: -10px;
    right: -10px;
    margin: auto;
    z-index: -1;
}

.formTable tr th {
    width: 235px;
    padding: 25px 10px;
    text-align: left;
}

.formTable tr td:last-child {
    width: calc(96% - 320px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 10px;
}

.formTable.confirm tr td:last-child {
    width: calc(96% - 235px);
}

.formTable input[type="text"],
.formTable input[type="tel"],
.formTable input[type="email"] {
    width: 100%;
    border: solid 1px #DCDDDD;
    background: #F7F7F7;
    padding: 9px 10px;
    line-height: 1.4;
}

.formTable textarea {
    width: 100%;
    border: solid 1px #DCDDDD;
    background: #F7F7F7;
    padding: 9px 10px;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .formTable tr th {
        font-weight: 700;
        padding-bottom: 0;
        width: auto;
    }

    .formTable tr td.none {
        display: none;
    }

    .formTable tr td:first-child {
        padding-bottom: 0;
    }

    .formTable tr td:last-child {
        display: block;
        margin-left: auto;
        width: 100%;
    }
}

/* input[type="text"].type-1 {
	width: 100%;
}

input[type="text"].type-2 {
	width: calc(100% - 120px);
} */

span.w120 {
    width: 120px;
}

.flex {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F7F7F7;
}

.formTable tr:last-child {
    border-bottom: none;
}

.formTable tr td:last-child .flex:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.flex.type2 input[type="text"] {
    width: calc(100% - 120px);
}

.flex.type3 input[type="text"] {
    width: calc(80% - 120px);
    max-width: 200px;
}

#attachment {
    width: 100%;
    letter-spacing: -1em;
}

#attachment span.filename {
    display: inline-block;
    width: calc(100% - 190px);
    letter-spacing: 0;
    padding: 9px 10px;
    border: solid 1px #DCDDDD;
}

#attachment label {
    width: 190px;
    display: inline-block;
    text-align: center;
    letter-spacing: 0;
    padding: 9px 10px;
    border: solid 1px #DCDDDD;
    border-left: none;
    background: #EFEFEF;
    cursor: pointer;
}

#attachment label input[type="file"] {
    display: none;
}

.pdf-text {
    margin-top: 12px;
}

.submit_box {
    width: 90%;
    max-width: 500px;
    margin: auto;
    height: 90px;
    position: relative;
    margin-top: 40px;
}

.submit_box::before {
    content: url(../img/arrow.png);
    right: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}

.submit_box input[type="submit"] {
    color: white;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    background: #14349A;
    transition: 0.2s all;
}

.submit_box input[type="submit"]:disabled {
    background: #9ab1fc;
    cursor: not-allowed;
}

.privacy_link {
    text-decoration: none;
    color: #14349A;
    transition: 0.2s all;
}

.privacy_link:hover {
    opacity: 0.7;
}

input[type="checkbox"] {
    margin-right: 7px;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

input[type="date"] {
    font-family: 'Noto Sans JP', sans-serif;
    border: solid 1px #DCDDDD;
    background: #F7F7F7;
    padding: 9px 10px;
    line-height: 1.4;
}

.text-center {
    text-align: center;
    margin: 40px auto;
}

.flex.send-area {
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 930px;
    padding: 0 15px;
    margin: auto;
}

.flex.send-area input[type="button"],
.flex.send-area input[type="submit"] {
    color: white;
    display: flex;
    max-width: 400px;
    width: 90%;
    height: 70px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s all;
    position: relative;
    margin-top: 40px;
}


.flex.send-area input[type="button"] {
    background: #9b9b9b;
}

.flex.send-area input[type="submit"] {
    background: #14349A;
}

.flex.send-area > input[type="button"],
.flex.send-area > input[type="submit"] {
    width: 48%;
}

.back_btn {
    color: white;
    display: flex;
    max-width: 300px;
    width: 80%;
    height: 60px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    background: #14349A;
    transition: 0.2s all;
}

.privacy_list {
    margin: auto;
    counter-reset: number 0;
}

.privacy_list > dt {
    margin-top: 30px;
}

.privacy_list > dt::before {
    counter-increment: number 1;
    content: counter(number) ". ";
}

.privacy_list > dd {
    padding: 10px 1.2em;
}

.privacy_list > dd .number_list {
    counter-reset: number 0;
}

.privacy_list > dd .number_list > li {
    text-indent: -2.7em;
    padding-left: 2.7em;
}

.privacy_list > dd .number_list > li::before {
    counter-increment: number 1;
    content: "（"counter(number) "）";
}
