@charset "utf-8";

/* -------------------
共通
------------------- */
/* 調整 */
p,h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
body {
    overflow-x: hidden;
}
ol, ul {
    padding: 0;
    margin: 0;
}
img {
    object-fit: contain;
}
/* コンテンツ幅 */
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* テキスト */
* {
    font-family: "Noto Sans JP", system-ui;
    font-weight: bold;
}
p {
    color: #000;
    font-family: "Noto Sans JP", system-ui;
    font-weight: bold;
    font-size: 16px;
}
/* 見出し */
.h2 {
    font-size: 40px;
    padding-bottom: 10px;
    border-bottom: 5px solid #e60012;
    margin: 0 auto;
    width: fit-content;
    font-weight: bold;
}
h3,h4 {
    font-weight: bold;
}
.t-orange {
    color: #e60012;
}
.t-white {
    color: #fff;
}
/* contact */
.contact-btn {
    width: 100%;
    max-width: 380px;
    /* height: 90px; */
    padding: 27px 0;
    border-radius: 50px;
    background: linear-gradient(30deg, #fa606d, #e60012);
    vertical-align: middle;
    box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.16);
}
.contact-btn p {
    font-size: 25px;
    margin-top: auto;
    margin-bottom: auto;
}
.contact-btn:hover {
    background: linear-gradient(210deg, #fa606d, #e60012) ;
    opacity: 0.8;
    transition: 0.5s;
}
@media screen and (max-width :1280px){
    .h2 {
        font-size: 30px;
    }
    .contact-btn p {
        font-size: 22px;
    }
}
@media screen and (max-width :768px){
    .contact-btn {
        padding: 20px 0;
        max-width: 350px;
    }
    .h2 {
        font-size: 22px;
    }
}
/* -------------------
ヘッダー
------------------- */
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}
.header {
    width: 100%;
    height: auto;
    padding: 20px;
}
.header-logo1 {
    width: 120px;
}
@media screen and (max-width :768px) {
    .header-logo1 {
        width: 80px;
    }
}
/* -------------------
フッター
------------------- */
footer {
    padding-top: 100px;
    width: 100%;
}
.cv-message {
    gap: 20px;
    margin-bottom: 40px;
}
.cv-message h2 {
    font-size: 30px;
    width: 576px;
    margin: 0 20px;
    border-bottom: none;
    color: #027872;
}
.cv-message::before {
    content: "";
    display: block;
    width: 5px;
    height: 125px;
    background-color: #027872;
    transform: rotate(-26deg);
}
.cv-message::after {
    content: "";
    display: block;
    width: 5px;
    height: 125px;
    background-color: #027872;
    transform: rotate(26deg);
}
.footer-copyright {
    width: 100%;
    margin-top: 90px;
    padding: 25px 30px;
}
.ft-link {
    font-size: 18px;
    gap: 30px;
}
.copyright {
    font-size: 14px;
}
@media screen and (max-width :768px){
    footer {
        padding-top: 40px;
    }
    .cv-message {
        gap: 20px;
        margin-bottom: 30px;
    }
    .cv-message h2 {
        font-size: 18px;
        width: 250px;
        margin: 0;
    }
    .cv-message::before,
    .cv-message::after {
        height: 100px;
    }
    .footer-copyright {
        width: 100%;
        margin-top: 50px;
        padding: 15px 20px;
        flex-direction: column;
    }
    .ft-link {
        font-size: 16px;
        justify-content: center;
        margin-bottom: 20px;
    }
    .copyright {
        font-size: 12px;
        text-align: center;
    }
}
/* -------------------
お問い合わせフォーム
------------------- */
.row {
    margin-right: 0;
    margin-left: 0;
}
.row>* {
    padding: 0;
}
.contact-wrapper {
    max-width: 750px;
    min-height: 100vh;
    padding: 50px 5% 80px;
    position: relative;
}
.contact-wrapper .h2 {
    margin-bottom: 70px;
}
.contact-wrapper .contact-btn {
    margin: 70px auto 20px;
    color: #fff;
}
.contact-wrapper .col-12 {
    padding: 0 !important;
}
.col-form-label {
    margin-bottom: 5px;
    margin-bottom: 5px;
}
.contact-footer {
    padding-top: 0;
}
.contact-footer .footer-copyright {
    margin-top: 0;
}

.form-group {
    margin-bottom: 30px;
    padding: 0;
}
.cr-text {
    font-size: 12px;
    color: #dddddd;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.aute-addr {
    background-color: #000000;
    color: #fff;
}
.aute-addr:hover {
    background-color: #585858;
    color: #fff;
}
.alert-warning {
    background-color: transparent;
    border: none;
}
.alert-danger {
    padding: 5px;
    margin-top: 10px;
}
.conform-row {
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}
.conform-row .col-form-label {
    margin-bottom: 10px;
    color: #b7b7b7;
}

.flow-contact {
    position: fixed;
    height: 120px;
    bottom: 77px;
    right: 0;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    width: auto;
    padding: 0 20px;
    z-index: 5;
}

.flow-contact p{
    font-size: 16px;
}
@media screen and (max-width :1080px){
    .flow-contact {
        display: none !important;
    }
}