@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
 html {
    font-size: 62.5%;
}

html {
    visibility: hidden;
}

html.wf-active,
html.loading-delay {
    visibility: visible;
}

body {
    background-color: #fff;
    color: #222;
    font-family: 'Roboto', 'Noto Sans JP', serif, sans-serif;
    counter-reset: number 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-appearance: none;
}

picture {
    font-size: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

}

@media screen and (max-width: 767px) {
}

.flex_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    html {
      font-size: 3.125vw;
      /*
        計算式：　10(px) / 320(px) * 100 = 3.125
        画面幅320pxの時に "font-size: 10px" 相当になる
      */
    }
  
    body {
      font-size: 1.4rem;
      /*
        html要素で指定されたfont-sizeの1.6倍になる
      */
    }
  }

/* --------------------------------
 * aタグ
 * -------------------------------- */
a {
    cursor: pointer;
}

/* --------------------------------
 * container
 * -------------------------------- */
/* pc */
.container {
    margin: 150px auto 0;
    width: 780px;
}

.heading_area {
    text-align: center;
}

.heading_area h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    color: #FFB331;
    font-size: 40px;
    font-weight: 700;
}

.heading_area h2::after{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FFB331;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 100px auto 0;
        padding: 0 50px;
        width: 740px;
    }
    
    .heading_area {
        text-align: center;
    }
}

/* sp */
@media screen and (max-width: 767px) {
    .container {
        margin: 80px auto 0;
        width: calc(100vw - 40px);
    }
    
    .heading_area h2 {
        padding-bottom: 10px;
        font-size: 2.4rem;
    }
}

/* --------------------------------
 * 汎用ボタン
 * -------------------------------- */

/* pc */
.btn_area {
    margin: 0 auto;
    width: 450px;
    border-radius: 5px;
    background-color: #38D63E;
    text-align: center;
}

.btn_area a,
.btn_area input[type=submit] {
    display: block;
    padding: 16px 40px;
    width: 100%;
    height: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}

/* sp */
@media screen and (max-width: 767px) {
    .btn_area {
        width: 280px;
    }
    
    .btn_area a,
    .btn_area input[type=submit] {
        padding: 12px 30px;
        font-size: 20px;
    }
}


/* --------------------------------
 * header
 * -------------------------------- */
/* pc */
.header_container {
    align-items: center;
    justify-content: space-between;
    background-color: #FFB331;
}

.header_container .logo_area {
    margin-left: 40px;
}

.logo_area h1 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.logo_area img {
    margin-top: 5px;
    width: 400px;
    object-fit: cover;
}

.header_btn {
    background-color: #38D63E;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.header_btn a {
    display: block;
    padding: 16px 40px;
    line-height: 1.2;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1120px) {
    .header_container .logo_area {
        margin-left: 30px;
    }
    
    .logo_area h1 {
        font-size: 14px;
    }
    
    .logo_area img {
        width: 300px;
    }
    
    .header_btn {
        font-size: 30px;
    }
}

/* sp */
@media screen and (max-width:767px) {
    .header_container .logo_area {
        margin-left: 15px;
    }
    
    .logo_area h1 {
        font-size: 10px;
    }
    
    .logo_area img {
        margin-top: 2px;
        width: 200px;
    }
    
    .header_btn {
        font-size: 18px;
    }
    
    .header_btn a {
        padding: 10px 12px;
    }
}

/* --------------------------------
 * fv
 * -------------------------------- */
/* pc */
.fv_area {
    width: 100vw;
}

.fv_area img {
    width: 100%;
    object-fit: cover;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    
}

/* sp */
@media screen and (max-width:767px) {

}

/* --------------------------------
 * about_area
 * -------------------------------- */
/* pc */
.about_area {
    margin-top: 150px;
    padding: 0 20px;
    text-align: center;
}

.about_area_tx {
    margin-top: 30px;
    font-size: 2.0rem;
    line-height: 1.2;
    color: #707070;
}

.about_area img {
    margin-top: 40px;
    width: 240px;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .about_area {
        margin-top: 100px;
    }
}

/* sp */
@media screen and (max-width:767px) {
    .about_area {
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .about_area_tx {
        margin-top: 20px;
        font-size: 1.365rem;
        text-align: left;
    }
    
    .about_area img {
        margin-top: 40px;
        width: 240px;
    }
}

/* --------------------------------
 * value_area
 * -------------------------------- */
/* pc */
.value_icon_area {
    justify-content: center;
    margin-top: 40px;
}

.icon_area_item {
    margin-left: 50px;
    width: calc((100% - 160px) / 3);
}

.icon_area_item:first-of-type {
    margin-left: 0;
}

.icon_area_item img {
    display: block;
    margin: 0 auto;
    width: 150px;
    object-fit: cover;
}

.icon_name {
    display: block;
    margin-top: 30px;
    color: #FFB331;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.icon_tx {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
    color: #707070;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    
}

/* sp */
@media screen and (max-width:767px) {
    .value_icon_area {
        display: block;
        margin-top: 40px;
        text-align: center;
    }
    
    .icon_area_item {
        margin: 40px auto 0;
        width: calc(100vw - 160px);
    }
    
    .icon_area_item:first-of-type {
        margin: 40px auto 0;
    }

    .icon_area_item img {
        width: 100px;
    }
    
    .icon_name {
        margin-top: 10px;
        font-size: 1.8rem;
    }
    
    .icon_tx {
        margin-top: 10px;
        font-size: 1.375rem;
    }
}

/* --------------------------------
 * liver_area
 * -------------------------------- */
/* pc */
.liver_area {
    margin-top: 150px;
    padding: 50px;
    background-color: #FDE0E9;
}

.liver_area .heading_area h2 {
    color: #fff;
}

.liver_area .heading_area h2::after{
    background-color: #fff;
}

.liver_content {
    margin-top: 40px;
    justify-content: center;
}

.liver_content_item {
    margin-left: 40px;
    padding: 20px;
    width: 340px;
    border: 4px solid #FBB2C9;
    background-color: #fff;
}

.liver_content_item:first-of-type {
    margin-left: 0;
}

.liver_content_item img {
    width: 100%;
}

.liber_name {
    display: block;
    margin-top: 15px;
    font-size: 2.0rem;
    font-weight: 700;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .liver_area {
        margin-top: 100px;
    }
}

/* sp */
@media screen and (max-width:767px) {
    .liver_area {
        margin-top: 80px;
        padding: 30px 20px 50px;
    }
    
    .liver_content {
        margin-top: 0;
        display: block;
    }
    
    .liver_content_item {
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
    }
    
    .liver_content_item:first-of-type {
        margin-left: 0;
    }
    
    .liver_content_item img {
        width: 100%;
    }

    .liber_name {
        font-size: 1.7rem;
    }
}

/* --------------------------------
 * application_area
 * -------------------------------- */
/* pc */
.application_content {
    position: relative;
    margin-top: 30px;
}

.application_content img {
    display: block;
    margin-left: 100px;
    width: 360px;
    object-fit: cover;
}

.application_flow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.application_flow_item {
    margin-top: 20px;
    align-items: center;
}

.application_flow_item:first-of-type {
    margin-top: 0;
}

.flow_number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: 700;
    line-height: 50px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background-color: #FFB331;
}

.application_flow_item p {
    margin-left: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #FFB331;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .application_content img {
        margin-left: 40px;
    }
}

/* sp */
@media screen and (max-width:767px) {
    .application_content {
        margin-top: 10px;
    }
    
    .application_content img {
        margin-left: 4vw;
        width: 180px;
    }

    .application_flow {
        left: 42%;
    }
    
    .application_flow_item {
        margin-top: 10px;
    }
    
    .flow_number {
        width: 24px;
        height: 24px;
        font-size: 12px;
        line-height: 24px;
    }
    
    .application_flow_item p {
        margin-left: 8px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width:360px) {
    .application_content img {
        margin-left: -5px;
    }
}

/* --------------------------------
 * contact_area
 * -------------------------------- */
/* pc */
.contact_content {
    padding-top: 20px;
}

.form_item {
    margin-top: 40px;
    align-items: center;
    justify-content: space-between;
}

.form_item_left {
    align-items: center;
}

.form_label {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
}

.required {
    display: block;
    margin-left: 20px;
    padding: 4px 10px;
    font-size: 1.2rem;
    font-weight: 700;
    background-color: #FFB331;
    color: #fff;
}

.form_item_right {
    width: 60%;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
    padding: 20px;
    width: 100%;
    font-size: 1.6rem;
    background-color: #FAFAFA;
    border: 1px solid #FAFAFA;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
    border: 1px solid #FFB331;s
}

textarea {
    height: 200px;
    padding: 20px;
    font-size: 1.6rem;
}

.contact_area .btn_area {
    margin-top: 60px;
}

div.wpcf7 .ajax-loader {
    display: none !important;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    
}

/* sp */
@media screen and (max-width:767px) {
    .form_item {
        display: block;
        margin-top: 20px;
    }
    
    .form_label {
        font-size: 1.375rem;
    }
    
    .required {
        padding: 4px 10px;
        font-size: 1.05rem;
    }
    
    .form_item_right {
        margin-top: 10px;
        width: 100%;
    }
    
    input[type=text],
    input[type=tel],
    input[type=email] {
        padding: 20px 12px;
        font-size: 1.375rem;
    }
    
    textarea {
        height: 120px;
        padding: 12px 12px;
        font-size: 1.375rem;
    }
    
    .contact_area .btn_area {
        margin-top: 30px;
    }
}

/* --------------------------------
 * company_area
 * -------------------------------- */
/* pc */
.company_list_area {
    margin-top: 60px;
}

.company_list {
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #E6E6E6;
}

.company_list_item {
    padding: 40px 0;
    border-bottom: 1px solid #E6E6E6;
}

.company_list_item_ttl {
    display: flex;
    align-items: center;
    width: 30%;
    font-size: 1.6em;
    font-weight: 700;
}

.company_list_item_tx {
    display: block;
    margin-top: 10px;
    width: 70%;
    font-size: 1.6em;
}

.company_list_item_ttl::before {
    content: "";
    width: 15px;
    margin-right: 25px;
    height: 2px;
    background-color: #FFB331;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    
}

/* sp */
@media screen and (max-width:767px) {
    .company_list_area {
        margin-top: 30px;
    }
    
    .company_list_item {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid #E6E6E6;
    }
    
    .company_list_item_ttl {
        display: flex;
        width: 100%;
        font-size: 1.375rem;
    }
    
    .company_list_item_tx {
        width: 100%;
        font-size: 1.375rem;
    }
}

/* --------------------------------
 * footer
 * -------------------------------- */
/* pc */
.footer {
    margin-top: 150px;
    padding-top: 100px;
    background-color: #FFB331;
    text-align: right;
}

.footer .logo_area {
    display: inline-block;
    margin-right: 6.25vw;
    text-align: left;
}

.copyright_area {
    margin-top: 10px;
    padding-bottom: 20px;
    text-align: center;
}

.copyright {
    font-size: 1.6rem;
    color: #707070;
}

/* tab */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .footer {
        margin-top: 100px;
        padding-top: 60px;
        text-align: center;
    }

    .footer .logo_area {
        margin-right: 0;
        text-align: center;
    }

    .copyright_area {
        margin-top: 20px;
    }
}

/* sp */
@media screen and (max-width:767px) {
    .footer {
        margin-top: 80px;
        padding-top: 40px;
        text-align: center;
    }
    
    .footer .logo_area {
        margin-right: 0;
        text-align: center;
    }
    
    .copyright_area {
        margin-top: 20px;
    }
    
    .copyright {
        font-size: 1.2rem;
    }
}

/* --------------------------------
 * footer
 * -------------------------------- */
/* pc */
.title_404 {
    margin-top: 120px;
    text-align: center;
}

.title_404 h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
}

.sub_title_404 {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.tx_404 {
    margin: 80px 20vw 0;
    color: #707070;
}

.tx_404 h3 {
    font-size: 20px;
}

.tx_404 p {
    font-size: 16px;
    line-height: 1.2;
}

/* sp */
@media screen and (max-width:767px) {
    .title_404 {
        margin-top: 80px;
    }
    
    .title_404 h2 {
        font-size: 30px;
    }
    
    .sub_title_404 {
        margin-top: 20px;
        font-size: 20px;
    }
    
    .tx_404 {
        margin: 60px 20px 0;
    }
    
    .tx_404 h3 {
        font-size: 16px;
    }
    
    .tx_404 p {
        font-size: 14px;
    }
}

/* pc sp
------------------------------------------ */
.pc {
    display: block;
}

.pcInline {
    display: inline-block;
}

.spInline,
.sp {
    display: none;
}

@media screen and (max-width: 767px) {

    .pcInline,
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .spInline {
        display: inline-block;
    }

    .flex-box.pc {
        display: none;
    }
}