@charset "UTF-8";
/* ====================================================
　　　　　　　　　　　　　　共通設定 
====================================================*/

body {
    width: 100%;
    font-size: 16px;
    font-family: sans-serif;
    /* background-image: url(../img/block_bg.jpg);
    background-size: cover; */
    background: linear-gradient(180deg, #fff, #a3d9f9);
    color: #333;
}


/* 幅いっぱいに広げるとき */
.inner {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #016fad;
    box-shadow: 4px 4px 0 #30a3e6;
    border-radius: 6px;
    margin-bottom: 50px;
    padding: 3% 5%;
    margin-top: 30px;
}

/* 幅を少し狭めているとき */
.inner2 {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #016fad;
    box-shadow: 4px 4px 0 #30a3e6;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* サービスのところだけ */
.inner3 {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #016fad;
    box-shadow: 4px 4px 0 #30a3e6;
    border-radius: 6px;
    margin-bottom: 50px;
    padding: 4% 5%;
    margin-top: 30px;

}

/* ここは固定 */
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.underline {
    border-bottom: #62adea 3px solid;
    margin-top: 10px;
}

.underline2 {
    background: linear-gradient(transparent 80%,
            #fff06f 60%);
}

h1 {
    text-align: center;
    font-weight: bold;
    font-size: clamp(20px, 1.8rem, 32px);
    margin:  20px 0 50px;
    background-color: #016fad;
    color: #fff;
    padding: 10px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(20px, 1.6rem, 32px);
    font-weight: bold;
    margin: 50px 30px 20px;
}

h3 {
    font-size: clamp(18px, 1.3rem, 24px);
}


/*====================================================
 　　　　　　　　　　　ヘッダーに適応 
 ====================================================*/





/* 共通スタイル */
header {
    width: 100%;
    background-color: #a3d9f9;
    padding: 10px 0;
    box-sizing: border-box;
    position: relative;
}

#hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

#hdr_logo img {
    width: 250px;
    height: auto;
    position: absolute;
    top: 6%;
    left: 2%;

}

/* 説明文 */
#hdr_description {
    font-size: clamp(18px, 1.5rem, 28px);
    font-weight: bold;
    color: #fff;
    margin-left: 20px;
    flex-grow: 1;
    min-width: 200px;
    position: absolute;
    top: 42%;
    left: 20%;
}

/* 連絡先エリア */
#hdr_contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#hdr_tel {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #000;
}

#hdr_tel img {
    width: 35px;
    height: auto;
    margin-right: 10px;
}

#hdr_tel .tel-number {
    font-size: clamp(16px, 1.2rem, 20px);
    font-weight: bold;
}

#hdr_tel .tel-hours {
    font-size: 16px;
    display: block;
    margin-top: 2px;
}

/* 応募ボタン */
#hdr_entry {
    display: flex;
    align-items: center;
    background: #c80000;
    color: #fff;
    padding: 6px 9px;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    padding: 24px;
    max-width: 190px;
    text-align: center;
}

#hdr_entry img {
    width: 30px;
    height: auto;
    margin-right: 8px;
}

.hdr-bnr {
    background-color: #35b0ed;
}

.bnr {
    width: 590px;
    margin: 0 auto;
}




.error {
    color: #ff0000;
}




/* ===========================================
         ホバーしたら背景色が変わる設定
============================================== */
/* ボタンの基本スタイル */
.apply_btn a {
    position: relative;
    display: block;
    max-width: 280px;
    margin: 50px auto;
    padding: 15px 0;
    background-color: #079fea;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    text-decoration: none;
    text-align: center;
    transition: .2s;
    box-sizing: border-box;
}

.apply_btn a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: .2s;
    box-sizing: border-box;
}

/* スライドする背景色のスタイル */
.btn-slide-horizontal a {
    border: 3px solid #079fea;
    z-index: 1;
}

.btn-slide-horizontal a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    transform-origin: right top;
    transform: scaleX(0);
    transition: transform .2s ease;
    z-index: -1;
}

/* ホバー時のスタイル */
.btn-slide-horizontal a:hover {
    color: #079fea;
}

.btn-slide-horizontal a:hover::before {
    transform-origin: left top;
    transform: scaleX(1);
}

.btn-slide-horizontal a:hover::after {
    border-color: #079fea;
}



/*====================================================
　　　　　　　　　　　　メインに適応 
 ====================================================*/



/*===================================================
                悩みのページの設定
 ===================================================== */
.nayami {
    background-image: url(../img/nayami_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0 50px 0;
}

.nayami_flex {
    display: flex;
    position: relative;
    padding: 2% 0 2% 35%;
}

.nayami_flex img {
    width: 25%;
    position: absolute;
    top: -55%;
    left: 4%;
}

.nayami_flex ul {
    list-style: none;
    /* デフォルトのリストスタイルを削除 */
    padding-left: 0;
}

.nayami_flex li {
    display: flex;
    align-items: center;
    font-size: clamp(18px, 1.4rem, 24px);
    font-weight: bold;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.nayami_flex li::before {
    content: "";
    background-image: url('../img/icn_check.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ==================================================
                解決のページの設定
=====================================================*/
.choice-flex {
    display: flex;
    gap: 3%;
}

.item01 {
    width: 40%;
}

.txt {
    width: 60%;
    line-height: 1.8rem;

}

.list {
    font-size: clamp(18px, 1.3rem, 25px);
    font-weight: 600;
    margin: 15px 0;
    line-height: 2.3rem;

}

/* ===================================================
               　　　 会社説明
====================================================== */
.company_concept {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.company_concept img {
    width: 50%;
    order: 2;
}

.company_concept p {
    line-height: 1.9rem;
    order: 1;
}


/* ====================================================
        　　　　　 選ばれる理由のページ
=======================================================*/
.choice {
    display: flex;
    justify-content: space-between;
}

.choice li {
    width: 32%;
}

.choice li p {
    margin-top: 10px;
    line-height: 1.6rem;
}

.choice-title {
    text-align: center;
    margin-bottom: 30px;
}

h5 {
    text-align: center;
    font-size: 18px;
    color: #016fad;
    padding: 8px 0;
    font-weight: bold;
    margin: 10px 0 0;
}

/* =====================================================
                工事のページ
======================================================== */
.item02 {
    display: flex;
    align-items: flex-start;
    /* 上揃え */
    gap: 16px;
    /* 画像とテキストの間に余白 */
    margin-bottom: 60px;
}

.item02 img {
    width: 40%;
    /* 任意のサイズ */
    height: auto;
    object-fit: cover;
}

.text_block {
    display: flex;
    flex-direction: column;
}

.text_block p {
    line-height: 1.7rem;
}


h3 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;

}

.item02 h4 {
    padding: 0 0 10px;
    font-size: clamp(18px, 1.3rem, 23px);
    font-weight: bold;
    text-align: left;
    border-bottom: 3px #016fad solid;
    margin-bottom: 5px;
}





.service_flex p {
    margin-top: 5px;
    line-height: 1.8rem;
}

.example {
    font-size: clamp(18px, 1.3rem, 24px);
    text-align: center;
    margin-top: 50px;
    font-weight: bold;
}

/* ===================================================
                 　ブロックの設定
====================================================== */
.item02 {
    width: 100%;
}

/* サービスのページの設定 */
.service h2 {
    margin: 20px 0 50px;
    background-color: #016fad;
    color: #fff;
    padding: 10px;

}


/* PRポイントの設定 */
.pr h2 {
    margin: 20px 0 50px;
    background-color: #016fad;
    color: #fff;
    padding: 10px;

}








/* ====================================================
                よくある質問のページ 
====================================================*/
.question_title {
    text-align: center;
    align-items: center;
    margin-bottom: 30px;

}

.qbox {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
}


.q_contents {
    font-size: clamp(18px, 1.2rem, 22px);
    vertical-align: center;
    padding-left: 20px;
    font-weight: bold;
}


.qbox {
    position: relative;
    margin-top: 20px;
}

/*クエスチョンのマーク */
.q {
    font-size: 20px;
    font-family: Arial, Helvetica, "sans-serif";
    color: #FFF;
    border-radius: 100px;
    background: #252B38;
    display: inline-block;
    font-weight: bold;
    padding: 8px 0 0 0;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: 0px;
    left: 0px;
}

.qbox p {
    margin-left: 30px;
}

.abox {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    vertical-align: bottom;
}

.abox p {
    margin-left: 35px;
}

.block {
    border-bottom: #a4a0a0 dashed 2px;
    margin-top: px;
}

.block:last-child {
    border: none;
}

/* アンサーのアイコン設定 */
.a {
    font-size: 20px;
    font-family: Arial, Helvetica, "sans-serif";
    color: #FFF;
    border-radius: 100px;
    background: #26a4d4;
    display: inline-block;
    font-weight: bold;
    padding: 8px 0 0 0;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: 0px;
    left: 0px;
}



.a_contents {
    padding-left: 20px;
}

/* ====================================================
　　　　　　　　　　募集要項ページ 
====================================================*/
.staff {
    color: #0C9E91;
    padding: 10px;
    border: 2px solid #0C9E91;
    text-align: center;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.boshu_p {
    text-align: center;
    margin-bottom: 10px;
}

/* table設定 */
tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
}

table {
    display: table;
    width: 100%;
}

tr {
    border-bottom: 1px solid #a4a0a0;
}

.ta1 th {
    background-color: #eee;
    width: 25%;
    text-align: center;
    padding: 20px;
}

.ta1 td {
    width: 75%;
    align-items: center;
    padding: 20px;
}

.ta2 th {
    background-color: #eee;
    width: 25%;
    text-align: center;
    padding: 20px;
}

.ta2 td {
    width: 75%;
    align-items: center;
    padding: 20px;
}

.official {
    color: #26a4d4;
    border-bottom: 1px solid #26a4d4
}

.official:hover {
    color: #016fad;
    border: none
}



/*====================================================
 　　　　　　　　　応募フォームページ
 ====================================================*/
.apply {
    width: 100%;
}

.apply th {
    font-size: 18px;
    background-color: #eee;
    width: 25%;
    text-align: center;
    padding: 20px;
}

.apply td {
    padding: 10px;
}

.apply_p {
    text-align: center;
    margin-bottom: 20px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    outline: none;
    font-size: 1.6rem;
}

/* 送信ボタンを中央寄せするためのもの */
.submit-btn {
    display: flex;
    background-color: #62adea;
    text-align: center;
    justify-content: center;
    border-radius: 20px;
    width: 265px;
    margin: 30px auto;
    line-height: 1;
    position: relative;
    font-size: 20px;
    font-weight: 500;
}

.btn01 {
    width: 100%;
    padding: 20px 10px 18px 10px;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    border-radius: 20px;
}

.bold {
    font-weight: 700;
    color: #002256;
    font-size: clamp(20px, 1.8rem, 32px);
    text-align: center;
    margin-bottom: 10px;
}



/* フォーム送信ボタン */

.submit-btn:hover {
    opacity: 0.8;
}

label {
    font-size: 20px;
    line-height: 2.5rem;
}

/* ====================================================
            プライバシーポリシーのページ設定
==================================================== */
.privacy {
    width: 90%;
    height: 300px;
    margin: 0 auto;
    overflow-y: scroll;
    border: #595959 0.5px solid;
    padding: 20px;
    margin-bottom: 30px;

}

.privacy h3 {
    margin-bottom: 10px;
    font-size: 16px;

}

.privacy h4 {
    font-weight: bold;
    font-size: 14px;
}

.privacy p {
    margin-bottom: 20px;
}

/* マップ設定 */
.map {
    text-align: center;
}

/* マップ設定 */
/* =====================================================
　　　　YOUTUBEの設定、mapの埋め込みの際したのとセットで
======================================================== */
.responsive-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9比率 */
    height: 0;
    overflow: hidden;
    max-width: 80%;
    margin: 30px auto 2rem;
    /* 上下左右中央寄せ */
    display: block;
    /* 念のため */
    text-align: center;
    /* 親の text-align の影響を防ぐ */
}

/* ===================================================
 　　　　　　　　グーグルマップの設定
====================================================== */

.responsive-embed iframe {
    position: absolute;
    top: 0;
    left: 50%;
    /* 親の中央を基準に配置 */
    transform: translateX(-50%);
    /* 中央に寄せる */
    width: 100%;
    height: 100%;
    border: 0;
}

/* フッターの上の部分の設定 */
.footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    padding: 20px 0 100px;
}

.contact_contents:first-child {
    float: left;
    border-right: 3px solid #eee;
}


.line {
    width: 200px;
    border-bottom: #62adea solid 3px;
    margin-top: 20px;
}

.small {
    font-size: 16px;
    margin-top: 10px;
}

.contact_contents {
    text-align: center;
    padding: 50px;
}

/* お問い合わせボタン */
.contact_btn {
    color: #FFF;
    background-color: #62adea;
    text-align: center;
    padding: 21px 10px 18px 10px;
    border-radius: 20px;
    max-width: 265px;
    margin: 20px auto 0;
    /* 親要素内で中央揃え */
    line-height: 1;
    position: relative;
}

.contact_btn:hover {
    opacity: 0.8;
    cursor: pointer;
}

/* ====================================================
                      フッターに適応
==================================================== */
footer {
    padding: 50px 0;
    text-align: center;
    background-color: #b7c3cb;
}

footer img {
    max-width: 300px;
    margin: 0 auto;
}

footer p {
    margin: 20px;
    font-weight: 600;
    color: #fff;
}


/* ====================================================
　　　　　　　　　　　confirm.php
======================================================= */
.center {
    display: flex;
    justify-content: center;
    /* 横方向中央 */
    align-items: center;
    /* 縦方向中央（必要に応じて） */
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
    /* 幅が足りないときに折り返し */
    text-align: center;
}

.btn1,
.edit_btn {
    background-color: #016fad;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    width: 220px;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
}

.btn1 {
    background-color: #c0392b;
    /* 送信ボタンだけ色を変える */
}

.check-title {
    font-weight: bolder;
    font-size: clamp(26px, 1.8rem, 34px);
}

.btn1:hover,
.edit_btn:hover {
    opacity: 0.8;
}

/* ======================================================
               thanksページ
========================================================*/
.txt1 {
    display: block;
    width: 100%;
    /* 横幅100%にして */
    text-align: center;
    /* テキスト中央寄せ */
    padding: 50px 0 100px 0;
    color: #333;
}

.entry-title {
    font-size: clamp(26px, 1.8rem, 34px);
    font-weight: bolder;
}

.center01 {
    display: block;
    width: 100%;
    /* 横幅100%にして */
    text-align: center;
    /* テキスト中央寄せ */
    color: #333;
}

.center02 {
    display: block;
    width: 100%;
    /* 横幅100%にして */
    text-align: center;
    /* テキスト中央寄せ */
    color: #333;
}

.entry-title {
    font-weight: bolder;
    font-size: 30px;
    margin-top: 30px;
}


.btn2 {
    color: #FFF;
    background-color: #B0161C;
    text-align: center;
    border-radius: 20px;
    max-width: 250px;
    /* 最大幅を300pxに変更 */
    width: 100%;
    /* 親要素に合わせて伸縮 */
    line-height: 1.5;
    /* 高さを少し余裕持たせる */
    padding: 10px 20px;
    /* ボタン内の余白 */
    display: inline-block;
    box-sizing: border-box;
    /* パディングを含めた幅調整 */
}