@charset "UTF-8";
/*
Template: arkhe
Theme Name: Arkhe Child
Theme URI: https://arkhe-theme.com/ja/
Description: Arkhe用子テーマ
Version: 1.0.0
Text Domain: arkhe
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/

body {
    font-family: "Zen Kaku Gothic New", serif;
}

/* 見出し用フォント設定 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Zen Kaku Gothic New", serif;
    font-optical-sizing: auto;
}

.l-header__logo .c-headLogo {
    font-weight: 700;
}


/* menu start */
.c-gnav__a {
    position: relative;
    text-decoration: none;
    /* 通常は下線なし */
}

.c-gnav__a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* 文字の下に線を出す位置 */
    width: 0;
    height: 2px;
    background: currentColor;
    /* 文字色と同じ色 */
    transition: width 0.3s ease;
}

.c-gnav__a:hover::after {
    width: 100%;
    /* ホバー時に線が伸びる */
}

/* menu end */
#top_title_area {
    display: none;
}

.p_mission {
    font-size: 8rem;
    font-weight: bold;
    /* 	color:#F5F5F5; */
    font-family: "ヒラギノ角ゴシック"
}

.col-number {
    justify-content: center;
}

@media screen and (max-width: 520px) {
    .col-number h3 {
        margin-top: -10rem !important;
    }
}


/* contact */
/* 表 */
table.tb_form {
    border: 1px solid black;
    border-collapse: collapse;

    &>tbody {
        &>tr {

            &>th,
            td {
                border: 1px solid black;
            }

            &>th {
                font-weight: normal;
                text-align: left;
                padding: 0.5rem;

                &>span {
                    white-space: nowrap;
                }
            }

            &>td {
                text-align: left;
                /* padding: 0.7rem; */

                /* &>.mwform-radio-field label {
                    margin-left: 10px;
                } */

                &>input {
                    width: 100%;
                    /* margin-left: 10px; */
                    padding: 10px;
                }

                &>textarea {
                    width: 100%;
                    padding: 10px;
                    /* margin-left: 10px; */
                }
            }
        }
    }
}

@media (max-width: 768px) {
    table.tb_form {
        border-top: none;

        &>tbody {
            &>tr {
                display: flex;
                flex-direction: column;

                &>th,
                td {
                    border: 0;
                }

                &>th {
                    border-top: 1px solid black;
                    padding-bottom: 10px;
                }

                &>td {
                    padding: 10px;

                    &>span {
                        margin-top: 0;
                    }
                }
            }
        }
    }
}

/* 必須 */
.tb_form .required-srt {
    font-size: 1em;
    line-height: 1;
    vertical-align: middle;
    margin-left: 2px;
    color: #42330f;
}

/* 送信ボタン */
.submit-btn {
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
}

.submit-btn input {
    background-color: transparent;
    border: 1px solid #42330f;
    color: #42330f;
    /* font-size: 1.3em; */
    margin: 0 auto;
    padding: 10px 35px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.submit-btn input:hover {
    background-color: #42330f;
    color: #ffffff;
}