@charset "UTF-8";

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ヘッダー */

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    padding: 16px;
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
}

.header-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 56px);
}

.logo,
.logo img {
    width: auto;
    height: 36px;
}

.tel,
.tel img {
    width: auto;
    height: 36px;
}

.header__nav {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
    padding: 0 4px 4px;
    gap: 4px;
    top: 72px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
}

.header__nav a {
    padding: 16px;
    width: calc(50% - 2px);
    height: auto;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    background: #b1deea;
}

.header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
}

.header__menuInner {
    position: relative;
    width: 40px;
    height: 40px;
    background: url('../img/menu.svg') no-repeat 0 0;
    background-size: 80px 40px;
}

.header__menuInner.open {
    background-position: -40px 0;
}

/* main */

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 72px 0 0;
    width: 100%;
    height: auto;
}

.firstview {
    width: 100%;
    height: auto;
}

.firstview img {
    width: 100%;
    height: auto;
}

.cta {
    display: flex;
    flex-direction: row;
    margin: 32px 0 0;
    gap: 8px;
    width: calc(100% - 40px);
    height: auto;
}

.cta__tel,
.cta__mail {
    width: 50%;
    height: auto;
}

.cta__tel img,
.cta__mail img {
    width: 100%;
    height: auto;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 64px 16px 0;
    gap: 32px;
    width: 100%;
    height: auto;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

h2::after {
    content: '';
    display: block;
    position: relative;
    margin: 8px auto 0;
    width: 80px;
    height: 8px;
    border-radius: 4px;
    background: #46cae1;
}

/* こんなお悩みありませんか？ */

.trouble p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.trouble img {
    width: 100%;
    height: auto;
}

/* くらしのメンテナンスなら… */

.feature {
    margin: 64px 0 0;
    padding: 64px 16px;
    width: 100%;
    height: auto;
    background-color: #c8ecf1;
}

.feature span {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
}

.feature-item h3 {
    width: fit-content;
    background: linear-gradient(transparent 60%, #ffed29 60%);
}

.feature-item img {
    width: 100%;
    height: auto;
}

/* お困りの箇所から探す */

.service-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2px;
    width: 100%;
    height: auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    aspect-ratio: 1/1;
    width: calc(50% - 2px);
    height: auto;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    background-color: #c8ecf1
}

.service-item img {
    width: 100%;
    height: auto;
}

/* 工事例 */

.case {
    margin: 64px 0 0;
    padding: 64px 16px;
    width: 100%;
    height: auto;
    background-color: #c8ecf1;
}

.case-items {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.case-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 0 32px;
    gap: 32px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    background-color: #fff;
}

.case-item h3 {
    font-size: 18px;
}

.case-item img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    background-color: #46cae1;
}

.case-item p {
    font-size: 16px;
}

.case-item-btn {
    padding: 16px 32px;
    border-radius: 48px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background-color: #46cae1;
}

/* ご依頼の流れ */

.process-items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 32px;
    width: 100%;
    height: auto;
}

.process-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding: 16px;
    gap: 16px;
    list-style: none;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px dotted #92d0e1;
}

.process-item h3 {
    font-size: 18px;
    color: #333;
}

.process-item p {
    font-size: 16px;
    color: #333;
}

/* 対応エリア */

.area {
    margin: 64px 0 0;
    padding: 64px 16px;
    width: 100%;
    height: auto;
    background-color: #c8ecf1;
}

.area-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: auto;
}

.area-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    aspect-ratio: 1/1;
    padding: 32px;
    width: 100%;
    height: auto;
    text-align: center;
    border-radius: 16px;
    background-color: #fff;
}

.area-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.area-item img {
    width: 100%;
    height: auto;
}

.area-item p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* よくある質問 */

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: auto;
}

.faq-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding: 16px;
    gap: 16px;
    width: 100%;
    height: auto;
    list-style: none;
    border-radius: 16px;
    border: 2px dotted #92d0e1;
}

.faq-item h3 {
    font-size: 18px;
    color: #333;
}

.faq-item p {
    font-size: 16px;
    color: #333;
}

/* お客様の声 */

.voice {
    margin: 64px 0 0;
    padding: 64px 16px;
    width: 100%;
    height: auto;
    background-color: #c8ecf1;
}

.voice-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: auto;
}

.voice-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
}

.voice-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: auto;
}

.voice-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.voice-title p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.comment {
    padding: 16px;
    width: 100%;
    height: auto;
    border-radius: 0 32px 32px 32px;
    background-color: #fff;
}

.comment p {
    font-size: 16px;
    color: #333;
}

/* 会社情報 */

.google-map {
    width: 100%;
    height: auto;
}

.google-map iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

.company_sec table {
    width: 100%;
    height: auto;
}

.company_sec tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border: 1px solid #92d0e1;
}

.company_sec th {
    padding: 8px;
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #92d0e1;
}

.company_sec td {
    padding: 16px;
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #333;
}

/* ブログ */

.blog-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    height: auto;
}

.blog-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    gap: 16px;
    width: 100%;
    height: auto;
    text-decoration: none;
}

.blog-item img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    background-color: #b1deea;
}

.blog-item h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* 会社情報 */

.company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 64px 0 0;
    gap: 32px;
    width: calc(100% - 32px);
    height: auto;
}

.company table {
    width: 100%;
    height: auto;
}

.company tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border: 1px solid #92d0e1;
}

.company th {
    padding: 8px;
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #92d0e1;
}

.company td {
    padding: 16px;
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #333;
}

/* お問い合わせ */

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 64px 0 0;
    gap: 32px;
    width: calc(100% - 32px);
    height: auto;
}

.contact form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 32px;
    width: 100%;
    height: auto;
}

.cform {
    display: block;
    padding: 32px 16px;
    width: 100%;
    height: auto;
    background-color: #b1deea;
}

.cform tbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
}

.cform tr {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
}

.cform th {
    display: block;
    margin: 0 0 4px;
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.cform td {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 14px;
    color: #333;
}

.cform input {
    padding: 8px;
    width: 100%;
    height: auto;
    font-size: 14px;
    color: #333;
    border: 1px solid lightgray;
    outline: none;
}

.file {
    padding: 0 !important;
}

.cform textarea {
    padding: 8px;
    width: 100%;
    height: auto;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    border: 1px solid lightgray;
    outline: none;
}

.recaptcha {
    font-size: 12px;
    color: #333;
}

.submit-btn input {
    padding: 16px 32px;
    line-height: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 48px;
    border: none;
    outline: none;
    background-color: #46cae1;
}

/* フッター */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 32px;
    margin: 64px 0;
    padding: 0 16px;
    width: 100%;
    height: auto;
}

.footer-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    gap: 2px;
    width: 100%;
    height: auto;
}

.footer-item {
    padding: 16px;
    width: calc(50% - 2px);
    height: auto;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    background: #b1deea;
}

.footer-logo {
    width: 100%;
    height: auto;
}

.footer-logo img {
    display: block;
    margin: 0 auto;
    width: 75%;
    height: auto;
}

small {
    font-size: 12px;
    color: #333;
}