@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*===================================
共通設定
===================================*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
}

img{
    max-width: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    background: url(img/bg_01.jpg)no-repeat center/cover;
    background-attachment: fixed;
}

.container {
    width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgb(101 101 101 / 20%);
}

.center {
    text-align: center;
}

li {
    list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #bf0008;
}

a:hover {
    color: #e50012;
    text-decoration: none;
}

.br {
    display: none;
}

@media screen and (max-width: 428px) {
    body {
        background-color: #f5f5f5;
    }

    .container {
        width: 375px;
        box-shadow: none;
    }

    .br {
        display: block;
    }

    .none {
        display: none;
    }

    .img2 {
        width: 286px;
        margin: 0 auto;
    }
}

/*===================================
文字設定
===================================*/

h2 {
    color: #bf0008;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
}

h3 {
    color: #bf0008;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.bold {
    font-weight: 800;
}

.red {
    color: #bf0008;
}

.marker {
    font-size: 18px;
    font-weight: 800;
    color: #bf0008;
    background: linear-gradient(transparent 50%, #ffee99 50%);
}

.yellow {
    color: #ffee99;
    font-size: 18px;
    font-weight: 500;
}

.letter-spacing {
    letter-spacing: -1px;
}

@media screen and (max-width: 428px) {
    h2 {
        font-size: 28px;
    }
}

/*===================================
FV
===================================*/

.view {
    background-image: url(img/mv_pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 566px;
}

.logo {
    margin: 24px 0 0 20px;
}

.logo:hover {
    opacity: 0.7;
}

.copy {
    background-image: url(img/cv_pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 322px;
    padding: 56px 0;
}

.copy2 {
    display: flex;
    align-items: center;
    grid-gap: 12px;
    margin: 0 200px 24px;
    height: 72px;
}

.copy3 {
    width: 623px;
    margin: 0 auto;
}

.cta_pc:hover,
.cta_sp:hover {
    transform: translateY(4px);
}

.cta_sp {
    display: none;
}

@media screen and (max-width: 428px) {
    .view {
        background-image: url(img/mv_sp.jpg);
        height: 464px;
    }

    .logo {
        margin: 16px;
    }

    .copy {
        background-image: url(img/cv_sp.jpg);
        height: 276px;
        padding: 32px 0 24px;
    }

    .copy2 {
        justify-content: center;
        flex-wrap: wrap;
        grid-gap: 8px;
        margin: 0 auto 24px;
        width: 335px;
        height: 119px;
    }

    .copy3 {
        width: 335px;
        margin: 0 auto;
    }

    .cta_pc {
        display: none;
    }

    .cta_sp {
        display: block;
        margin: 0 auto;
    }
}

/*===================================
固定CTAボタン
===================================*/

/*リンクを下に固定*/
#cta_fix {
    position: fixed;
    left: 0;
    bottom: 0px;
    z-index: 3;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(200px);
}

@media screen and (max-width: 428px) {
    #cta_fix {
        padding: 10px 0;
    }
}

/*　上に上がる動き　*/

#cta_fix.UpMove {
    animation: UpAnime .8s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(200px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#cta_fix.DownMove {
    animation: DownAnime .8s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(200px);
    }
}

/*===================================
ご挨拶
===================================*/

.greeting {
    width: 704px;
    margin: 64px auto 80px;
}

.greeting p {
    margin-bottom: 30px;
}

.introduction {
    background-image: url(img/intro_pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 236px;
    margin-bottom: 40px;
}

.introduction p {
    width: 100%;
    position: absolute;
    top: 80px;
    left: 56px;
    font-size: 20px;
    font-weight: 800;
}

@media screen and (max-width: 428px) {
    .greeting {
        width: 100%;
        margin: 0;
        padding: 48px 20px 18px;
    }

    .introduction {
        background-image: url(img/intro_sp.png);
        height: 318px;
        margin-bottom: 32px;
    }

    .introduction p {
        top: 60%;
        left: 0;
        font-size: 18px;
        line-height: 1.6;
        text-align: center;
    }
}

/*===================================
私たちの想い
===================================*/

.thoughts {
    background-image: url(img/bg_02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 56px 48px;
}

.thoughts h2 {
    color: #fff;
    font-weight: 600;
}

.wrapper {
    color: #fff;
    padding: 48px 40px 18px;
}

.bottom {
    width: 562px;
    margin: 0 auto 40px;
}

.summary {
    font-family: "Noto Serif JP", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    border-bottom: 1px solid #fff;
    width: 510px;
    margin: 0 auto 40px;
}

.thoughts p {
    font-weight: 300;
    width: 720px;
    margin: 0 auto 30px;
}

.thoughts .bold {
    font-weight: 600;
}

@media screen and (max-width: 428px) {
    .thoughts {
        background-image: url(img/bg_03.jpg);
        padding: 48px 20px 18px;
    }

    .wrapper {
        padding: 0;
    }

    .bottom {
        width: 335px;
        margin: 0 auto 40px;
        }

    .summary {
        width: 100%;
        line-height: 1.8;
        border-bottom: none;
        text-decoration: underline;
        text-align: center;
        margin: 0 auto 40px;
    }

    .thoughts p {
        width: 100%;
    }

}

/*===================================
加藤装飾株式会社の特徴
===================================*/

.features {
    padding: 80px 100px;
}

ul {
    margin-top: 48px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 40px;
}

.flex {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.flex p {
    position: absolute;
    z-index: 1;
    top: -2px;
    left: 9px;
    color: #fff;
    font-size: 34px;
    font-family: "Roboto", sans-serif;
}

.flex h3 {
    margin-left: 16px;
}

.item p {
    width: 474px;
}

.border {
    border: #f5f5f5 solid 1px;
    margin: 40px 0;
}

@media screen and (max-width: 428px) {
    .features {
        padding: 48px 20px;
    }

    ul {
        margin-top: 32px;
    }

    .item {
        flex-wrap: wrap-reverse;
    }

    .flex {
        margin-top: 40px;
    }

    .item p {
        width: 100%;
    }

    .border {
        margin: 32px 0;
    }
}

/*===================================
募集職種
===================================*/

.recruit {
    padding: 80px 158px;
    background-color: #f5f5f5;
    text-align: center;
}

.recruit p {
    margin: 40px 0;
}

.recruit h3 {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.table {
    display: flex;
    flex-wrap: wrap;
    column-gap: 36px;
    row-gap: 36px;
    width: 684px;
}

.table div {
    width: 20%;
}

.table img {
    width: 100%;
    margin-bottom: 4px;
}

.small {
    font-size: 12px;
    font-weight: 400;
}

@media screen and (max-width: 428px) {
    .recruit {
        padding: 48px 20px;
    }

    .recruit p {
        text-align: left;
        margin: 32px 0;
    }

    .recruit h3 {
        font-size: 14px;
    }

    .table {
        column-gap: 15px;
        row-gap: 24px;
        width: 100%;
    }

    .table div {
        width: 30%;
    }

    .small {
        font-size: 10px;
    }
}

/*===================================
工事エリア
===================================*/

.area {
    padding: 80px 148px;
    height: 664px;
}

.map {
    position: relative;
}

.map p {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.map img {
    position: absolute;
    width: 656px;
    height: 500px;
    left: 50%;
    transform: translate(-50%, 0);
    object-fit: cover;
}


@media screen and (max-width: 428px) {
    .area {
        padding: 48px 20px;
    }

    .map p {
        top: 0;
        left: 0;
        transform: translate(0, 0);
        text-align: left;
        margin-top: 32px;
    }

    .map img {
        position: absolute;
        width: 375px;
        height: 412px;
        top: 96px;
        left: 50%;
        transform: translate(-50%, 0);
        object-fit: cover;
    }

}

/*===================================
お問い合わせの流れ
===================================*/

.inquiry {
    padding: 80px 100px;
    background-color: #f5f5f5;
}

.inquiry p {
    text-align: center;
    margin: 48px auto;
}

.flex2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 32px 24px;
}

.flex3 {
    display: flex;
    align-items: center;
    column-gap: 24px;
    width: 624px;
}

.detail {
    border-right: #d9d9d9 solid 1px;
    padding-right: 24px;
    font-size: 14px;
    line-height: 1.5;
    width: 551px;
}

.detail h3 {
    color: #333;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 12px;
}

.step {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 37px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    color: #bf0008;
}

.big {
    font-size: 32px;
}

.icon {
    width: 80px;
    margin-left: 24px;
}

.arrow {
    text-align: center;
    padding: 20px 0 16px;
}

@media screen and (max-width: 428px) {
    .inquiry {
        padding: 48px 20px;
    }

    .inquiry p {
        text-align: left;
        margin: 32px auto;
    }

    .flex2 {
        justify-content: center;
        flex-wrap: wrap-reverse;
        padding: 20px 24px 24px;
    }

    .flex3 {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        row-gap: 10px;
        width: 100%;
    }

    .detail {
        border-right: none;
        padding-right: 0px;
        width: 100%;
    }

    .detail h3 {
        font-size: 18px;
        text-align: center;
    }

    .step {
        flex-wrap: nowrap;
        align-items: center;
        width: 69px;
        column-gap: 4px;
    }

    .big {
        font-size: 24px;
    }

    .icon {
        margin-left: 0px;
    }

    .arrow {
        padding: 20px 0 16px;
    }
}

/*===================================
会社概要
===================================*/

.company {
    padding: 80px 100px 56px;
}

dl {
    margin-top: 40px;
}

dt {
    width: 100px;
    font-weight: 700;
}

dl div {
    display: flex;
    border-bottom: #d9d9d9 solid 1px;
    margin-bottom: 24px;
    padding: 0 16px 24px;
}

@media screen and (max-width: 428px) {
    .company {
        padding: 48px 20px 24px;
    }

    dl {
        margin-top: 32px;
    }

    dd {
        width: 100%;
    }

    dl div {
        padding: 0 8px 24px;
        column-gap: 8px;
    }
}

/*===================================
応募フォーム
===================================*/

footer {
    margin-top: 56px;
}

#contact {
    width: 800px;
    margin: 0 auto;
    padding: 64px 96px;
    background-color: #f9f9f9;
}

form {
    margin-top: 35px;
}

input {
    width: 100%;
    height: 48px;
    border: #e5e5e5;
    font-size:16px;
    padding-left: 16px;
    margin-bottom: 24px;
}

::placeholder {
    color: #c1c1c1;
    font-size: 15px;
    line-height: 1.5;
}

.form {
    font-weight: 700;
    margin-bottom: 8px;
    height: 27px;
}

.require {
    display: inline-block;
    vertical-align: middle;
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    background-color: #bf0008;
    padding: 0 4px;
    margin: 0 0 4px 8px;
}

.any {
    display: inline-block;
    vertical-align: middle;
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    background-color: #a9a9a9;
    padding: 0 4px;
    margin: 0 0 4px 8px;
}

textarea {
    resize: none;
    width: 100%;
    height: 192px;
    border: #e5e5e5;
    padding: 16px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.error {
    color: #bf0008;
}

.confirm {
    width: 224px;
    margin: 0 auto;
}

.confirm input {
    height: 59px;
    font-size: 16px;
    color: #fff;
    background-color: #bf0008;
    padding: 14px 56px;
}

.confirm input:hover {
    background-color: #e50012;
}

.corporate {
    width: 310px;
    height: 59px;
    font-size: 16px;
    border: #bf0008 solid 2px;
    padding: 14px 56px;
    margin: 56px auto;
}

.corporate a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

.corporate:hover {
    color: #e50012;
    border: #e50012 solid 2px;
}

.copyright {
    text-align: center;
    padding-bottom: 32px;
    margin: 0 auto;
}

.submit {
    width: 800px;
    margin: 48px auto;
    padding: 64px 96px;
    background-color: #f9f9f9;
}

.confirmation {
    color: #bf0008;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.label {
    margin: 8px 0;
}

.send {
    width: 224px;
    margin: 30px auto 0;
}

.send input {
    height: 59px;
    font-size: 16px;
    color: #fff;
    background-color: #bf0008;
    padding: 14px 56px;
}

.send input:hover {
    background-color: #e50012;
}

@media screen and (max-width: 428px) {
    footer {
        margin-top: 0px;
        padding: 0 20px;
    }

    #contact {
        width: 100%;
        padding: 48px 30px 24px;
    }

    .corporate {
        margin: 40px auto;
    }

    .submit {
        width: 375px;
        padding: 48px 30px;
    }

}