@charset "utf-8";

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
    line-height: 1;
    width: 100%;
    -webkit-text-size-adjust: 100%; /*スマホのブラウザでのフォントサイズの自動調整を無効化*/
    -webkit-font-smoothing: antialiased; /*フォントのスムージング*/
    -moz-osx-font-smoothing: grayscale; /*フォントのスムージング*/
    display: block; /*IE6のインラインブロック要素の余白のバグを解消*/
}
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
* {
    box-sizing: border-box; /*要素の幅と高さにborderとpaddingを含める*/
}
ol, ul {
    list-style: none;
}
/*ブロッククオート(転載・引用元)*/
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
.container-fluid {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
}
.container-sm {
    width: 98%;
    max-width: 540px;
    margin: 0 auto;
}
.container-md {
    width: 98%;
    max-width: 720px;
    margin: 0 auto;
}
.container-lg {
    width: 95%;
    max-width: 960px;
    margin: 0 auto;
}
.container-xl {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

/*画像のフルード化*/
img {
    max-width: 100%;
    height: auto;
}
/*マージン（top）*/
.mt-0 {
    margin-top: 0;
}
.mt-10 {
    margin-top: 0.625rem;
}
.mt-20 {
    margin-top: 1.25rem;
}
.mt-30 {
    margin-top: 1.875rem;
}
.mt-40 {
    margin-top: 2.5rem;
}
.mt-50 {
    margin-top: 3.125rem;
}
.mt-60 {
    margin-top: 3.75rem;
}
.mt-70 {
    margin-top: 4.375rem;
}
.mt-80 {
    margin-top: 5rem;
}
.mt-90 {
    margin-top: 5.625rem;
}
.mt-100 {
    margin-top: 6.25rem;
}
/*マージン（bottom）*/
.mb-0 {
    margin-bottom: 0;
}
.mb-10 {
    margin-bottom: 0.625rem;
}
.mb-20 {
    margin-bottom: 1.25rem;
}
.mb-30 {
    margin-bottom: 1.875rem;
}
.mb-40 {
    margin-bottom: 2.5rem;
}
.mb-50 {
    margin-bottom: 3.125rem;
}
.mb-60 {
    margin-bottom: 3.75rem;
}
.mb-70 {
    margin-bottom: 4.375rem;
}
.mb-80 {
    margin-bottom: 5rem;
}
.mb-90 {
    margin-bottom: 5.625rem;
}
.mb-100 {
    margin-bottom: 6.25rem;
}
/*テキスト*/
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
/*改行*/
.sp-only {
    display: none;
}
@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
}

/*-------------------------------*/
/*------------header-------------*/
/*-------------------------------*/
.header-desc {
    background-color: #0CAC74;
    padding: 0.5em 0;
}
.header-desc > div p {
    color: #fff;
    margin: 0;
    font-size: 0.75rem;
}

.title-logo img {
    max-width: 250px;
    width: 100%;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2em 0;
}
.title-logo {
    flex-shrink: 0;
}
.logo-se {
    flex-shrink: 0;
}
.header-contact {
    margin-left: auto;
}
.header-contact a {
    background-color: #FF9A9A;
    color: #fff;
    position: relative;
    padding: 0.7em 0.7em 0.7em 2em;
    display: inline-block;
    border-radius: 5px;
}
.header-contact a::before {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background: url('../images/mail-icon.png') no-repeat center center / contain;
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
}
.header-tel a {
    font-weight: bold;
    color: #0CAC74;
    font-size: 1.5em;
}
.header-tel p {
    font-size: 0.75rem;
    text-align: center;
    margin: 5px 0 0 0;
}
/*ナビゲーション（PC）*/
.nav-wrap {
    background-color: #0CAC74;
}
nav ul {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    align-items: center;
    padding: 1.2em 2em;
}
nav ul li {
    display: block;
    line-height: 1.5em;
}
nav ul li a {
    color: #fff;
}
@media (max-width: 1105px) {
    .header-desc {
        display: none;
    }
    .header-flex {
        display: block;
        text-align: center;
    }
    .header-flex > div {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
/*スマートフォン（ナビ）*/
    .openbtn1 {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #000000;
        width: 45%;
    }
    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }
    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }
    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }
    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    #g-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        right: -120%;
        width: 100%;
        height: 100vh;
        background-color: #0CAC74;
        transition: all 0.6s;
    }
    #g-nav.panelactive {
        right: 0;
    }
    #g-nav ul {
        position: absolute;
        z-index: 9999;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    nav ul {
        display: block;
        list-style: none;
        text-align: center;
        padding: 0;
    }
    nav ul li {
        display: inline-block;
    }
    nav ul li a {
        display: inline-block;
        text-decoration: none;
        color: #fff;
        padding: 10px;
    }
}

/* ヒーロースライダー */
.hero-wrapper {
    position: relative;
}
.slider {
    position: relative;
    z-index: 1;
    height: 490px;
}
.slider-item01 {
    background: url(../images/hero-image-01.png);
}
.slider-item02 {
    background: url(../images/main-.png);
}
.slider-item03 {
    background: url(../images/hero-image-02.png);
}
.slider-item {
    width: 100%;
    height: 490px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 490px;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
    padding: 0 2em;
}
.hero-container .hero-text01 {
    color: #fff;
    background: linear-gradient(90deg,rgba(255, 162, 0, 1) 0%, rgba(255, 119, 0, 1) 100%);
    font-size: 1.5em;
    margin-bottom: 0.5em;
    padding: 0.5em;
    font-weight: bold;
    margin-left: 10px;
    line-height: 1.2em;
}
.hero-container .hero-text02 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 0.5em;
    padding: 0.5em;
    line-height: 1.5em;
    font-weight: bold;
}
/*アスベストでお困りごとがありましたら、お気軽にご相談ください*/
.pr-wrapper {
    position: relative;
    background-color: #EBEBEB;
    margin: 4.5rem 0 3.4rem 0;
    padding: 2em 0 2em 0;
}
.pr-title h3 {
    background-color: #0CAC74;
    color: #fff;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    position: relative;
    line-height: 1.5em;
}
.pr-title h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #0CAC74;
}
.pr-row-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5em 0;
}
.pr-row-wrapper > div {
    flex: 1;
    background-color: #fff;
    padding: 2em;
    border-radius: 5px;
}
.pr-row-wrapper > div ul li {
    line-height: 1.5em;
    margin-bottom: 0.5em;
    list-style-image: url(../images/pr3-list-style.png);
    margin-left: 1.5rem;
    font-weight: bold;
}
@media (max-width: 767px) {
    .pr-row-wrapper {
        display: block;
    }
    .pr-row-wrapper > div {
        margin-bottom: 2rem;
    }
}
.pr-csv {
    display: block;
    text-align: center;
}
.pr-csv a {
    display: inline-block;
    line-height: 1.5em;
    background-color: #FF7878;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.7em 2em;
    border-radius: 5px;
}
/*株式会社クリーンアップサービスでは、ご希望に応じ3つのコースをご用意しています。
建物内のアスベスト調査から分析まで、ご要望別にご相談ください。*/
.pr-course-wrapper {
    color: #FF7700;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 1.56rem;
}

.pr-three-course-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 2.18rem;
}
.pr-three-course-wrapper > div {
    flex: 1;
    background-color: #0CAC74;
    padding: 1.5em;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .pr-three-course-wrapper {
        display: block;
    }
    .pr-three-course-wrapper > div {
        margin-bottom: 1rem;
    }
}
.pr-three-course-wrapper > div h5 {
    text-align: center;
    color: #FBFF00;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.pr-three-course-wrapper > div h6 {
    color: #FBFF00;
    text-align: center;
    border-top: 1px solid #FBFF00;
    border-bottom: 1px solid #FBFF00;
    padding: 0.5em 0;
    line-height: 1.5em;
    margin-bottom: 1em;
    font-weight: bold;
}
.pr-three-course-wrapper > div p {
    line-height: 1.5em;
    color: #fff;
}
.pr-three-course-btn {
    display: block;
    text-align: center;
    margin-top: auto;
}
.pr-three-course-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    background-color: #fff;
    color: #0CAC74;
    text-decoration: underline;
    padding: 1.2em 2em;
    border-radius: 30px;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}
.pr-three-course-btn a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/arrow-green.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex: 0 0 20px;
}
/*トップメイン*/
.main-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.main-wrapper {
    width: 70%;
}
.iraishitaikata {
    padding: 2em;
    border: 1px solid #0CAC74;
    margin-bottom: 3.6rem;
}
.main-wrapper h3 {
    color: #0CAC74;
    font-size: 1.5rem;
    line-height: 1.5em;
    font-weight: bold;
    margin-bottom: 1.25rem;
}
.main-wrapper p {
    line-height: 1.5em;
}
.side-wrapper {
    width: 30%;
}
@media (max-width: 767px) {
    .main-container {
        display: block;
    }
    .main-wrapper {
        width: 100%;
    }
    .side-wrapper {
        width: 100%;
    }
}
/*依頼書（2カラム）*/
.iraisyo-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.iraisyo-wrapper > div {
    flex: 1;
    text-align: center;
    margin: 1.9em 0;
}
.iraisyo-wrapper > div a {
    display: block;
    color: #FF0000;
    line-height: 1.5em;
    padding: 1em;
    border: 1px solid #FF0000;
    border-radius: 5px;
}
@media (max-width:767px) {
    .iraisyo-wrapper {
        display: block;
    }
}
/* アスベスト分析依頼書（Excel）用アイコン */
.iraisyo-wrapper > div:first-child a {
    position: relative;
    padding-right: 20px; /* icon(22px) + right(16px) + margin(5px) */
}
.iraisyo-wrapper > div:first-child a::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/iraisyo-excel-icon.png) no-repeat center center / contain;
}
/* アスベスト分析依頼書（PDF）用アイコン */
.iraisyo-wrapper > div:nth-child(2) a {
    position: relative;
    padding-right: 20px;
}
.iraisyo-wrapper > div:nth-child(2) a::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: url(../images/iraisyo-pdf-icon.png) no-repeat center center / contain;
}
/*サンプル採取の方法*/
.sample-sisyu-btn a {
    display: block;
    text-align: center;
    background-color: #0CAC74;
    margin: 1.9rem 0 0 0;
    padding: 1em 0;
    color: #fff;
    border-radius: 10px;
}
/*お知らせ（トップページ）*/
.infor-wrapper h3 {
    border-left: 5px solid #0CAC74;
    padding-left: 5px;
    border-bottom: 1px solid #0CAC74;
    padding: 0.5em 0 0.5em 10px;
}
.infor-wrapper dl {
    margin-bottom: 2rem;
}
.infor-wrapper dl dt {
    float: left;
    line-height: 1.5em;
    margin-bottom: 1em;
}
.infor-wrapper dl dd {
    margin-left: 9rem;
    line-height: 1.5em;
    margin-bottom: 1em;
}
.kako-infor-btn {
    display: block;
    text-align: center;
}
.kako-infor-btn a {
    background-color: #0CAC74;
    color: #fff;
    padding: 1em 3em;
    line-height: 1.5em;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 50px;
}
/*お問合せ*/
.cvs-wrapper {
    border: 1px solid #0CAC74;
    margin-bottom: 3.1rem;
}
.cvs-wrapper h4 {
    background-color: #0CAC74;
    color: #fff;
    font-size: 1.25rem;
    padding: 0.7em;
    text-align: center;
}
.cvs-inner {
    padding: 1.5rem;
}
.inner-logo img {
    width: 100%;
    max-width: 350px;
}
.contact-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 1em 1em 1em;
}
.contact-inner > div {
    flex: 1;
}
.tele-btn a {
    display: block;
    text-align: center;
    font-size: 2rem;
    margin: 10px;
}
.tele-btn p {
    text-align: center;
}
@media (max-width: 767px) {
    .contact-inner {
        display: block;
    }
    .contact-inner > div {
        margin-bottom: 1rem;
    }
}
.contact-btn a {
    display: block;
    background-color: #FF0000;
    text-align: center;
    color: #fff;
    padding: 1em;
}
.contact-nagare a {
    display: block;
    background-color: #FFA200;
    text-align: center;
    color: #fff;
    padding: 1em;
}

/*サイドメニュー*/
.side-container h3 {
    background-color: #0CAC74;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    line-height: 1.5em;
}
.side-container ul li {
    border-bottom: 1px solid #c1c1c1;
    padding: 1.5em 0;
    position: relative;
    padding-right: 2em;
}
.side-container ul li a:hover {
    text-decoration: underline;
}
.side-container ul li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url(../images/arrow-black-icon.png) no-repeat center center / contain;
}
.side-logo {
    display: block;
    text-align: center;
}
.side-logo img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
}
.side-tel-btn a {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.5em;
}
.side-tel-btn p {
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    
}
/*footer*/
.footer-wrapper {
    position: relative;
    border-top: 5px solid #0CAC74;
    padding-top: 2rem;
}
.footer-tel-btn a {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}
.footer-inner img {
    width: 100%;
    max-width: 350px;
}
.footer-inner address {
    line-height: 1.5em;
    margin: 1rem 0;
}

/*ページトップ*/
.page-top-btn a img {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*下層ページ（サービス紹介）*/
.title-wrapper {
    background-color: #C5E800;
}
.title-inner {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5em;
    color: #00764D;
    padding: 0.2em 0;
    margin-bottom: 5px;
}
.pankuzu {
    margin: 5px 0 3rem 0;
}
.pankuzu a {
    color: #00764D;
    text-decoration: underline;
    font-size: 0.875rem;
}
.container-inner p {
    line-height: 1.5em;
    margin-bottom: 1rem;
}
.kasou-wrapper h3 {
    background-color: #0CAC74;
    font-size: 2rem;
    color: #fff;
    padding: 0.3em;
    border-radius: 10px;
    line-height: 1.5em;
}
.kasou-wrapper h3 > span {
    font-size: 1rem;
    margin-left: 1rem;
    padding: 3px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.kasou-wrapper-frow h3 > span {
    font-size: 1rem;
    margin-left: 0;
    border-top: none;
    border-bottom: none;
}
.kasou-wrapper h4 {
    font-size: 1.25rem;
    color: #0CAC74;
    line-height: 1.5em;
    font-weight: bold;
    margin: 1rem 0;
}
.kingaku-inner {
    background-color: #EBEBEB;
    padding: 1rem 2rem;
    margin: 2rem 0;
}
.kingaku-inner h5 {
    text-align: center;
    line-height: 1.5em;
    font-size: 1.25rem;
    color: #0CAC74;
    font-weight: bold;
    margin-bottom: 1rem;
}
.kingaku-container {
    display: flex;
}
.taiou-area {
    display: block;
}
.taiou-area dl dt {
    display: inline-block;
    background-color: #0CAC74;
    color: #fff;
    padding: 0.2rem;
    margin-bottom: 10px;
}
.taiou-area dd {
    line-height: 1.5em;
    margin-bottom: 0.5em;
}
.kingaku-youbi {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1.2rem;
}
.kingaku-youbi > span {
    font-size: 1rem;
}
.kingaku-ryoukin {
    color: #FF0000;
    font-size: 2.25rem;
    font-weight: bold;
}
.kingaku-ryoukin > span {
    font-size: 1rem;
}
/*下層ページ（ul,li）*/
.kasou-li ul li {
    line-height: 1.5em;
}
/*分析申込みフォームリンクボタン*/
.kasou-form-btn a {
    display: block;
    background-color: #FFA200;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 1.5em 0;
    font-weight: bold;
    text-decoration: underline;
}
.iraisyo-wrapper-btn {
    margin-bottom: -2rem;
}
.soufusaki-wrapper {
    border: 2px solid #0CAC74;
    padding: 1.5rem;
    margin: 2rem 0 3rem 0;
}
.soufusaki-wrapper p {
    line-height: 1.5em;
    margin: 0 0 0.5rem 0;
}
.soufusaki-wrapper address {
    line-height: 1.5em;
    font-size: 1.25rem;
    font-style: normal;
    margin-bottom: 0.5rem;
}
/*サービスの流れ*/
.step-frow dl dt {
    float: left;
    font-size: 1.25rem;
    background-color: #00764D;
    color: #fff;
    padding: 0.5em;
    font-weight: bold;
    line-height: 1.5em;
}
.step-frow dl dd {
    background-color: #F0F0F0;
    font-size: 1.25rem;
    color: #00764D;
    line-height: 1.5em;
    padding: 0.5em;
    font-weight: bold;
    margin-left: 2rem;
}
/*会社概要*/
.company-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}
.company-wrapper table th,
.company-wrapper table td {
    border: 1px solid #c1c1c1;
    padding: 1em;
    text-align: left;
    vertical-align: top;
    line-height: 1.5em;
}
.company-wrapper table th {
    background-color: #f1ffe1;
    width: 30%;
    font-weight: bold;
    line-height: 1.5em;
}
.company-wrapper table td {
    background-color: #fff;
}




/* フォーム全体のデザイン */
.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
}

.form-group label span {
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: #2c5530;
    outline: none;
    box-shadow: 0 0 5px rgba(44, 85, 48, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* チェックボックスのデザイン */
.form-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.form-group input[type="checkbox"] + label {
    display: inline;
    font-weight: normal;
    cursor: pointer;
}

/* 送信ボタンのデザイン */
.form-btn,
.mw_wp_form input[type="submit"],
.mw_wp_form .mw_wp_form_input[type="submit"],
.mw_wp_form .mw_wp_form_confirm_button,
.mw_wp_form .mw_wp_form_back_button,
.mwform_submitButton,
input[name="mw-wp-form-confirm"],
input[name="mw-wp-form-submit"] {
    background: linear-gradient(135deg, #0CAC74, #388e3c) !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 20px auto !important;
    display: block !important;
    text-decoration: none !important;
    text-align: center !important;
}

.form-btn:hover,
.mw_wp_form input[type="submit"]:hover,
.mw_wp_form .mw_wp_form_input[type="submit"]:hover,
.mw_wp_form .mw_wp_form_confirm_button:hover,
.mw_wp_form .mw_wp_form_back_button:hover,
.mwform_submitButton:hover,
input[name="mw-wp-form-confirm"]:hover,
input[name="mw-wp-form-submit"]:hover {
    background: linear-gradient(135deg, #388e3c, #0CAC74) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(12, 172, 116, 0.3) !important;
}

/* MW WP Form フォーム全体のスタイル調整 */
.mw_wp_form .mw-wp-form-group {
    margin-bottom: 25px;
}

.mw_wp_form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.mw_wp_form input[type="text"],
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form textarea,
.mw_wp_form select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 2px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    transition: border-color 0.3s ease !important;
    box-sizing: border-box !important;
}

.mw_wp_form input[type="text"]:focus,
.mw_wp_form input[type="email"]:focus,
.mw_wp_form input[type="tel"]:focus,
.mw_wp_form textarea:focus,
.mw_wp_form select:focus {
    border-color: #0CAC74 !important;
    outline: none !important;
    box-shadow: 0 0 5px rgba(12, 172, 116, 0.3) !important;
}

/* MW WP Form エラーメッセージのスタイル */
.mw_wp_form .error {
    color: #e74c3c !important;
    font-size: 12px !important;
    margin-top: 5px !important;
}

/* MW WP Form 電話番号フィールドを横一列に表示 */
.mw_wp_form .mw-wp-form-tel-field,
.mw_wp_form .mwform_tel_field,
.mw_wp_form input[name*="tel"] {
    display: inline-block !important;
    width: auto !important;
    margin-right: 10px !important;
}

/* 電話番号フィールドのコンテナ */
.mw_wp_form .mw-wp-form-group.tel-group,
.mw_wp_form .mwform_tel_group {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px !important;
}

/* 電話番号の各入力欄 */
.mw_wp_form .mw-wp-form-tel-field input,
.mw_wp_form .mwform_tel_field input {
    width: 80px !important;
    text-align: center !important;
    margin: 0 5px !important;
}

/* ハイフン（-）の表示調整 */
.mw_wp_form .mw-wp-form-tel-separator,
.mw_wp_form .mwform_tel_separator {
    margin: 0 5px !important;
    font-weight: bold !important;
    color: #333 !important;
}

/* レスポンシブ対応 - スマホでは縦並びに戻す */
@media screen and (max-width: 480px) {
    .mw_wp_form .mw-wp-form-group.tel-group,
    .mw_wp_form .mwform_tel_group {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .mw_wp_form .mw-wp-form-tel-field input,
    .mw_wp_form .mwform_tel_field input {
        width: 100% !important;
        margin: 5px 0 !important;
    }
}


.tel-box {
    font-size: 2rem;
    font-weight: bold;
}
/*アスベスト調査とは？*/
.what-wrapper h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: -0.5rem;
    line-height: 1.5em;
    color: #000000;
    background-color: #fff;
    padding: 0.3em;
}
.what-wrapper h4 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5em;
    color: #EC9142;
}
.what-wrapper h5 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5em;
    color: #fff;
    margin: 4rem 0 1rem 0;
    background-color: #388e3c;
    padding: 0.5em;
}
.what-wrapper h6 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #388e3c;
    margin-bottom: 2rem;
}

/* よくあるご質問（FAQ）のデザイン */
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-question {
    background: #388e3c;
    color: #fff;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
}

.faq-question:before {
    content: "Q";
    background: #fff;
    color: #388e3c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
}


.faq-answer {
    background: #f9f9f9;
    border: 2px solid #388e3c;
    border-top: none;
    padding: 20px;
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #333;
    position: relative;
}

.faq-answer:before {
    content: "A";
    background: #388e3c;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
    float: left;
    margin-top: -2px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    .faq-question:before,
    .faq-answer:before {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin-right: 8px;
    }
}