/* =============
PC版
============== */
* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 19px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    /* background-color: aqua; */
}

.title-logo {
    display: flex;
}

.title-logo h2 {
    margin: 30px auto;
    font-size: 2.7vw;
}

.minpo-captal-logos {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 50%;
}

img.ma-minpo-logo {
    width: 30%;
    height: auto;
}

img.ma-capital-logo {
    width: 48%;
    height: auto;
}

.minpo-captal-logos p {
    font-size: 2vmax;
    font-weight: bold;
    margin: 0 7px;

}

.main-image {
    width: 100%;
    margin: 0 auto 30px;
}

.main-explanation {
    text-align: center;
    font-weight: 600;
    font-size: 23px;
    max-width: 600px;
    margin: 0 auto;
}


/* FAQ 始まり*/
.qa-006 {
    max-width: 800px;
    margin: 10px auto;
    border-bottom: 2px solid #d6dde3;
}

.qa-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    cursor: pointer;
}

.qa-006 summary::before,
.qa-006 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-006 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    display: block;
    content: '';
    width: 7px;
    height: 7px;
    margin-left: 12px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    transition: transform .5s;
}

.qa-006[open] summary::after {
    transform: rotate(225deg);
}

.qa-006 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-006[open] p {
    transform: none;
    opacity: 1;
}

.qa-006 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/* FAQ おわり*/

/* お問い合わせ フォーム始まり */
.contact-form {
    margin: 30px 20px;
    text-align: center;
}

.btn-icon {
    display: inline-block;
    max-width: 500px;
    text-align: center;
    background-color: #00008b;
    font-size: 26px;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    padding: 20px 20px;
    border-radius: 4px;
    position: relative;
}

.btn-text1 {
    font-size: 22px;
}

.btn-text2 {
    margin-top: 6px;
    font-size: 14px;
}

.btn-icon:hover {
    opacity: 0.8;
}

/*  お問い合わせ フォームおわり */

/* 会社情報 */
.company-info {
    margin: 50px 0;
}

.company-info h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}
.company-info p {
    text-align: left;
    margin: 10px 20px;
}

.company-info .img-logo {
    text-align: center;
}

.img-logo>.img-logo-Fminpo {
    width: 240px;
    margin-bottom: 10px;
}

.img-logo>.img-logo-capital {
    width: 320px;
    height: auto;
}

/* 会社情報テーブル */
.design03 {
    width: 100%;
    margin: 25px auto;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    border-top: solid 1px #778ca3;
}

.design03 th {
    background: aliceblue;
}

.design03 th,
.design03 td {
    padding: 10px;
    border-bottom: solid 1px #778ca3;
    /* display: block; */
}

.design03 td a {
    color: turquoise;
}

/* 会社情報テーブルおわり */
/* フッター始まり */
footer {
    background-color: cadetblue;
    padding: 20px 12px 10px;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.footer-nav a {
    color: #ffff;
}

footer p {
    color: #ffff;
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
}

/* フッターおわり */

/* ================
モバイル版
=================== */
@media screen and (max-width: 767px) {
    .main-explanation{
        font-size: 18px;
        font-weight: bold;
        margin: 0 20px;
    }

    .design03 th,
    .design03 td {
        padding: 10px;
        border-bottom: solid 1px #778ca3;
        display: block;
    }

    .title-logo {
        text-align: center;
        display: block;
    }

    .title-logo h2 {
        /* margin: 30px auto; */
        font-size: 30px;
        width: 100%;
    }

    .minpo-captal-logos {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }

    img.ma-minpo-logo {
        width: 30%;
        height: auto;
    }

    img.ma-capital-logo {
        width: 48%;
        height: auto;
    }

    .minpo-captal-logos p {
        font-size: 28px;
    }
}