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

body {
    width: 100%;
    font-size: 18px;
    font-family:'Book Antiqua';
    background-color: #ffffff;
    color: #333;

}

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

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

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

}

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

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

h1 {
    text-align: center;
    font-weight: bold;
    font-size:clamp(20px,1.7rem,28px);
    margin-bottom: 50px;
    margin-top: 60px;
    font-family: serif;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(20px, 1.7rem, 28px);
    font-weight: bold;
    font-family: serif;
}
h3{
    font-size: clamp(20px, 1.7rem, 28px);
    font-family: serif;
}


.bdr {
    display: block;
    width: 180px;
    height: 3px;
    background: #2ab1eb;
    margin: 10px auto;
}
.error{
    color: red;
}

/*====================================================
 　　　　　　　　　　　ヘッダーに適応 
 ====================================================*/
header {
    width: 100%;
    margin: 0 auto;
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}



.header-nav {
    font-size: 19px;
    background-image: linear-gradient(#6eb6d5, #6eb6d5);
    background-repeat: no-repeat;
    background-position: bottom right;
    /* 下線の初期位置 */
    background-size: 0 2px;
    /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.3s;
}

.header-nav:hover {
    background-position: bottom left;
    /* 下線のホバー時位置 */
    background-size: 100% 2px;
    /* 下線の横幅を100%にする */
}


.nav-overlay__list{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.logo {
    width: 31%;
}


.contact-btn a {
    display: flex;
    background: #ff9500;
    color: #FFF;
    font-size: 20px;
    border-radius: 8px;
    padding: 27px 27px 27px 60px;
    font-weight: bold;
    background-image: url(../img/icon_email.svg);
    background-repeat: no-repeat;
    background-position: 15px 20px;
    background-size: 36px;
    align-items: center;
    text-decoration: none;
}
.contact-btn a:hover {
    background-color: #00a6ff;
    color: #fff;

}




/* ===========================================
         ホバーしたら背景色が変わる設定
============================================== */
/* ボタンの基本スタイル */
.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;
}



/*====================================================
　　　　　　　　　　　　メインに適応 
 ====================================================*/
/* ===================================================
               　　　 会社説明
====================================================== */
.company_concept {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    
}

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

.company_concept p {
    line-height: 250%;
    order: 1;
}


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

.choice li {
    width: 30%;
}

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

.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;
}

/* =====================================================
                工事のページ
======================================================== */
.service_flex {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #989898;
    box-shadow: 3px 3px #000000b5;
}

.service_flex img{
    width: 35%;
}
h4{
    font-weight: bold;
    font-size: 22px;
    border-left: 5px solid #6eb6d5;
    padding-left: 12px;
    line-height: 1;
}

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

}






.service_flex p {
    margin-top: 10px;
    line-height: 2.3rem;
}

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

/* ===================================================
                 　　 公共工事
====================================================== */
.item02 {
    width: 100%;
}





/* ====================================================
                swiperの設定
======================================================= */
.swiper {
    height:300px;
    position: relative;
    padding-bottom: 40px;
    /* ページネーション分のスペースを確保 */
    margin: 90px 0 80px;
}


.swiper-pagination {
    bottom: 10px !important;
    /* 画像のすぐ下に配置 */
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
    background-color: red;
    height: 12px;
    /* 少し小さめに調整 */
    width: 12px;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background-color: blue;
    /* アクティブ時の色 */
    opacity: 1;
}

/* ページネーションの余白を調整 */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

/* スライド画像サイズ調整 */
.swiper-slide img {
    display: block !important;
    /* vertical-align: top !important; */
    width: 100%;
    height: auto;

}

.swiper-wrapper p{
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}



#strong{
    background-color: #aad9ff5d;
}
.inner4{
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-element.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-element:nth-child(1) { transition-delay: 0s; }
.fade-in-element:nth-child(2) { transition-delay: 0.2s; }
.fade-in-element:nth-child(3) { transition-delay: 0.2s; }
.fade-in-element:nth-child(4) { transition-delay: 0.2s; }
.fade-in-element:nth-child(5) { transition-delay: 0.2s; }




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

.qa-6 {
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/* ====================================================
　　　　　　　　　　募集要項ページ 
====================================================*/
.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: #ff0000;
}

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

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

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



/* 依頼の流れのページ */
.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.flow07 {
  padding-left: 0;
}

.flow07 > li {
  list-style-type: none;
  display: flex;
}

.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}

.flow07 > li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #6eb6d5;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}
.flow07 > li .icon07::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #6eb6d5;
  position: absolute;
  bottom: -20px;
  left: 0;
}


.flow07 > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #6eb6d5;
}

.flow07 > li dl dd {
  margin: 0;
}


/* ====================================================
            プライバシーポリシーのページ設定
==================================================== */
.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 20px;
}


.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: 80px;
}

/* お問い合わせボタン */
.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: #eee;
}

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

footer p {
    margin: 20px;
}


/* ====================================================
　　　　　　　　　　　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;
    /* パディングを含めた幅調整 */
}