
:root {
    --main-color:#046BBC;
    --base-color:#FFFFFF;
    --font-color:#4B4B4B;
    --font-family-gothic: "Noto Sans JP","Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-family-noto-serif:"Noto Serif JP", serif;
    --font-family-roboto:"Roboto", sans-serif;
    --font-weight-roboto-light: 300;
    --font-weight-roboto-regular: 400;
    --font-weight-noto-san-regular: 400;
    --font-weight-noto-san-medium: 500;
    --font-weight-noto-san-semibold: 600;
    --font-weight-noto-san-bold: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.Fz24 {
    font-size: 24px;
}

.SP_Only {
    display: none;
}

.Hidden {
    overflow: hidden;
}

@media (max-width: 768px) {
    .SP_Only {
        display: block;
    }
}

.PC_Only {
    display: block;
}

@media (max-width: 768px) {
    .PC_Only {
        display: none;
    }
}

/* ヘッダー */
.Header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--base-color);
    padding-left: 1.56%;
    z-index: 99;
    box-shadow: 0px 0px 15px -5px #777;
}

@media (max-width: 768px) {
    .Header {
        height: 50px;
    }
}

.Header_Inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.Header_Logo {
    aspect-ratio: 306 / 48;
}

@media (max-width: 768px) {
    .Header_Logo {
        width: 155px;
    }
}

.Header_Inner span {
    font-family: var(--font-family-noto-serif);
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .Header_Inner span {
        font-size: 14px;
    }
}

.Header_Btn_Box {
    height: 100%;
    display: flex;
}

.Header_Btn_Link {
    background-color: var(--main-color);
    color: var(--base-color);
    font-size: 20px;
    font-weight: var(--font-weight-noto-san-bold);
    font-family: var(--font-family-gothic);
    letter-spacing: 0.05em;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .Header_Btn_Link {
        padding: 0 14px;
    }
}

@media (any-hover: hover) {
    .Header_Btn_Link:hover {
    background-color: #035596;
    }
}

.Header_Btn_Link:first-child {
    border-right: 1px solid var(--base-color);
}

@media (max-width: 768px) {
    .Header_Btn_Link span {
        margin-right: 0;
    }
    .Visually_Hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
        border: 0;
    }
}

.Link_Tel::before {
    content: url(../images/header/header_tel.svg);
    width: 22px;
    height: 22px;
    display: block;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .Link_Tel::before {
        margin-right: 0;
    }
}

.Link_Mail::before {
    content: url(../images/header/header_mail.svg);
    width: 22px;
    height: 22px;
    display: block;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .Link_Mail::before {
        margin-right: 0;
    }
}

/* SP版　ボトムの固定ボタン */
.Bottom_Btn_Container {
    display: none;
}

@media (max-width: 768px) {
    .Bottom_Btn_Container {
        width: 100%;
        height: 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
    }

    .Bottom_Btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--main-color);
        color: var(--base-color);
        font-size: 15px;
        font-weight: var(--font-weight-noto-san-medium);
        font-family: var(--font-family-gothic);
        letter-spacing: 0.05em;
        padding: 13px 0;
        cursor: pointer;
    }
    .Bottom_Btn_Container .Link_Tel::before {
        content: "";
        background-image: url(../images/btn/bottom_tel.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        width: 25px;
        height: 25px;
        display: block;
        margin-right: 8px;
    }

    .Bottom_Btn_Container .Link_Mail::before {
        content: "";
        background-image: url(../images/btn/bottom_mail.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        width: 25px;
        height: 23px;
        display: block;
        margin-right: 8px;
    }

    .Bottom_Btn:first-child{
        border-right: 1px solid var(--base-color);
    }
}

@media (any-hover: hover) {
    .Bottom_Btn:hover {
    background-color: #035596;
    }
}

.Main {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .Main {
        padding-top: 50px;
    }
}

/* ファーストビュー */
.MV {
    width: 100%;
    height: calc(100svh - 80px);
    background-image: url(../images/MV/mv.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (max-width: 768px) {
    .MV {
        height: calc(100svh - 50px);
        background-image: url(../images/MV/mv_sp.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
}

.MV_Inner {
    width: 100%;
    height: 100%;
    background-color: rgb(4 107 188 /.25);
    /* background-color: rgb(0 0 0 /.25); */
    display: grid;
    place-items: center;
}

.MV_Copy {
    color: var(--base-color);
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-regular);
    text-align: center;
    padding-right: 50px;
    padding-left: 50px;
}

@media (max-width: 768px) {
    .MV_Copy {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.MV_Txt {
    font-size: 60px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-shadow: 2px 4px 5px rgb(0 0 0 /.3);
}

@media (max-width: 768px) {
    .MV_Txt {
        font-size: 30px;
    }
}

.MV_Small {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-shadow: 2px 4px 5px rgb(0 0 0 /.3);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .MV_Small {
        font-size: 16px;
        margin-top: 15px;
    }
}
/* イントロダクション */
.Intro {
    padding-right: 20px;
    padding-left: 20px;
}

.Intro_Inner {
    max-width: 1200px;
    margin-inline: auto;
    color: var(--font-color);
    text-align: center;
    padding-top: 120px;
}

@media (max-width: 768px) {
    .Intro_Inner {
        padding-top: 56px;
    }
}

.Intro_Copy {
    font-size: 40px;
    font-family: var(--font-family-noto-serif);
    font-weight: var(--font-weight-noto-san-semibold);
    letter-spacing: 0.05em;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .Intro_Copy {
        font-size: 30px;
    }
}

.Intro_Txt {
    font-size: 18px;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-regular);
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .Intro_Txt {
        font-size: 16px;
        margin-top: 16px;
    }
}

/* サービス内容 */
.Service {
    padding: 88px 20px 0;
}

.Service_Inner {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    gap: 120px;
}

.Service_Row {
    width: 100%;
    min-height: 350px;
    color: var(--base-color);
    padding-right: 20px;
    padding-left: 20px;
}

.Sale {
    background-image: url(../images/service/sale.jpg);
    background-repeat: no-repeat;
}

.Inspection {
    background-image: url(../images/service/inspection.jpg);
    background-repeat: no-repeat;
}

.Repair {
    background-image: url(../images/service/repair.jpg);
    background-repeat: no-repeat;
}

.Txt_Inner {
    width: 50%;
    height: 100%;
}

@media (max-width: 768px) {
    .Txt_Inner {
        width: 100%;
    }
}

.Number {
    font-size: 96px;
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-roboto-light);
    line-height: 1;
    margin-top: 5px;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .Number {
        font-size: 60px;
    }
}

.Service_Headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-medium);
    line-height: 1;
}

@media (max-width: 768px) {
    .Service_Headline {
        font-size: 32px;
        margin-top: 8px;
    }
}

.Service_Headline::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background-color: var(--base-color);
    border-radius: 2px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .Service_Headline::after {
        width: 30px;
    }
}

.Service_Txt {
    display: grid;
    place-items: center;
    font-size: 16px;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-regular);
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 20px;
}

.Service_List {
    display: grid;
    gap: 3px;
    margin-top: 20px;
    margin-inline: auto;
    max-width: 370px;
}

.Service_Item {
    list-style: disc;
    margin-left: 16px;
}

/* 主な修理対応クレーン */
.Crane {
    padding-top: 120px;
    padding-right: 20px;
    padding-left: 20px;
}

.Crane_Inner {
    max-width: 1200px;
    margin-inline: auto;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-regular);
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: right;
}

@media (max-width: 768px) {
    .Crane_Inner {
        text-align: left;
    }
}

.Section_Headline {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--font-color);
    font-size: 32px;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-medium);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .Section_Headline {
        font-size: 24px;
    }
}

.Icon_Crane::before {
    content: url(../images/common/headline_crane.svg);
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .Icon_Crane::before {
        width: 35px;
        height: 35px;
    }
}

.Crane_Contents {
    display: flex;
    gap: 60px;
    margin-top: 32px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .Crane_Contents {
        flex-direction: column;
        gap: 44px;
        margin-top: 30px;
    }
}

.Crane img {
    width: 100%;
    aspect-ratio: 570 / 370;
    object-fit: cover;
}

.Crane figure {
    text-align: center;
}

.Crane figcaption {
    font-size: 20px;
    margin-top: 5px;
}

.Crane small {
    font-size: 15px;
}

/* 施工実績 */
.Works {
    padding-top: 120px;
    padding-right: 20px;
    padding-left: 20px;
}

.Works_Inner {
    max-width: 1200px;
    margin-inline: auto;
}

.Works_ImgBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .Works_ImgBox {
        flex-direction: column;
    }
}

.Works figure {
    text-align: center;
    overflow: hidden;
}

.Works figure img {
    width: 100%;
    aspect-ratio: 365 / 385;
    object-fit: cover;
}

.Works figcaption {
    color: var(--font-color);
    font-size: 20px;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-medium);
    letter-spacing: 0.05em;
    margin-top: 5px;
}

/* サービスの流れ */
.Flow {
    padding-top: 120px;
    padding-right: 20px;
    padding-left: 20px;
}

.Flow_Inner {
    max-width: 1200px;
    margin-inline: auto;
}

.Flow_Container {
    display: flex;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .Flow_Container {
        flex-direction: column;
    }
}

.Flow_Container img {
    aspect-ratio: 600 / 440;
    object-fit: cover;
    flex: 1;
}

@media (max-width: 768px) {
    .Flow img {
        margin-top: 24px;
    }
}

.Stepbar {
    display: grid;
    gap: 24px;
    flex: 1;
    font-family: var(--font-family-gothic);
}

.Stepbar_Item {
    position: relative;
}

.Headline_Box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.Headline_Circle {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.Circle_Color1 {
    background-color: #B2DDFF;
}
.Circle_Color2 {
    background-color: #72B3E6;
}
.Circle_Color3 {
    background-color: #3F92D3;
}
.Circle_Color4 {
    background-color: var(--main-color);
}

.Color1 {
    color: #B2DDFF;
}
.Color2 {
    color: #72B3E6;
}
.Color3 {
    color: #3F92D3;
}
.Color4 {
    color: var(--main-color);
}

.Stepbar .Headline_Number {
    color: var(--base-color);
    font-size: 16px;
    font-weight: var(--font-weight-roboto-regular);
}

.Stepbar_Headline {
    font-size: 20px;
    font-weight: var(--font-weight-noto-san-medium);
    letter-spacing: 0.05em;
}

.Step_Text {
    font-size: 15px;
    font-weight: var(--font-weight-noto-san-regular);
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 8px;
    padding-left: 3.5rem;
}

.Step_Line {
    width: 3px;
    height: calc(100% + 1em);
    position: absolute;
    top: 2em;
    left: 1.2em;
    z-index: -1;
}

.Step_Line.Gradient1 {
    background: linear-gradient(to bottom, #B2DDFF, #72B3E6);
}

.Step_Line.Gradient2 {
    background: linear-gradient(to bottom, #72B3E6, #3F92D3);
}

.Step_Line.Gradient3 {
    background: linear-gradient(to bottom, #3F92D3, var(--main-color));
}

.Stepbar_Item:last-of-type .Step_Line:last-of-type {
    display: none;
}

.Contact_Area {
    width: 70%;
    color: var(--font-color);
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 16px;
    margin-left: 3.5rem;
}

@media screen and (max-width: 768px) {
    .Contact_Area {
        width: 85%;
        font-size: 17px;
        margin-top: 16px;
        margin-left: 3.5rem;
    }
}

.Area_Box {
    border-bottom: 2px solid var(--font-color);
    display: grid;
    place-items: center;
}

.Contact_Area_Small {
    font-size: 18px;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-medium);
}

@media screen and (max-width: 768px) {
    .Contact_Area_Small {
        font-size: 14px;
    }
}

.Contact_Tel {
    display: flex;
    align-items: center;
    /* gap: 16px; */
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-roboto-regular);
}

.Contact_Tel::before {
    content: "";
    background-image: url(../images/flow/contact_tel.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .Contact_Tel::before {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }
}

.Contact_Mail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-family-roboto);
    font-weight: var(--font-weight-roboto-regular);
    /* border-bottom: 2px solid var(--font-color); */
    padding-top: 10px;
    padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
    .Contact_Mail {
        gap: 8px;
    }
}

.Contact_Mail::before {
    display: block;
    content: "";
    background-image: url(../images/flow/contact_mail.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
}

@media screen and (max-width: 768px) {
    .Contact_Mail::before {
        width: 22px;
        height: 22px;
    }
}

.Contact_Comment {
    padding-top: 8px;
}


/* よくあるご質問 */
.FAQ {
    padding: 120px 20px 0;
}

.FAQ_Inner {
    max-width: 1200px;
    margin-inline: auto;
}

.FAQ_Container {
    padding-top: 32px;
}

.Icon_FAQ::before {
    content: url(../images/faq/headline_question.svg);
    width: 40px;
    height: 40px;
}

.FAQ_Area {
    display: grid;
    gap: 30px;
    font-family: var(--font-family-gothic);
    letter-spacing: 0.05em;
    margin-top: 32px;
}

.Js_Details {
    cursor: pointer;
}

.Js_Summary {
    width: 100%;
    display: inline grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    background-color: var(--main-color);
    font-size: 20px;
    color: var(--base-color);
    font-weight: var(--font-weight-noto-san-bold);
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 20px;
}

@media (any-hover: hover) {
    .Js_Summary:hover {
    background-color: #035596;
    }
}

.Js_Summary::before {
    display: block;
    content: "";
    background-image: url(../images/faq/question.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 19px;
    height: 28px;
}

.Js_Summary::-webkit-details-marker {
    /* Safariで表示されるデフォルトの三角形アイコンを消します */
    display: none;
}

.Summary_Inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

/* --------アイコン-------- */
.Icon {
    display: block;
    position: relative;
    width: 16px;
    height: 2px;
    background-color: var(--base-color);
    flex-shrink: 0;
    transform-origin: center 43%;
    transition: transform 0.4s;
}

.Icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
    background: inherit;
    border-radius: inherit;

}

.Icon.Opened::before {
    opacity: 0;
}

.Content {
    overflow: hidden;
}

.Content_Inner {
    font-size: 16px;
    font-weight: var(--font-weight-noto-san-regular);
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding: 20px;
}

.Under_Line {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* お問い合わせ */
.Contact {
    padding-top: 120px;
    padding-bottom: 120px;
}

.Contact_Inner {
    max-width: 1200px;
    margin-inline: auto;
    color: var(--font-color);
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
    /* display: grid;
    place-items: center; */
}

.Box {
    display: grid;
    place-items: center;
    max-width: 800px;
    margin-inline: auto;
    text-align: left;
    border-bottom: 2px solid var(--font-color);
}

.Contact .Tel {
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: var(--font-weight-roboto-regular);
    font-family: var(--font-family-roboto);
}

@media screen and (max-width: 768px) {
    .Contact .Tel {
        font-size: 20px;
    }
}

.Contact .Tel::before {
    content: "";
    background-image: url(../images/contact/contact_tel.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-flex;
    gap: 8px;
    width: 35px;
    height: 35px;
    margin-right: 12px;
}

@media screen and (max-width: 768px) {
    .Contact .Tel::before {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }
}


/* PCからは電話を発信できないようにする */
@media screen and (min-width: 768px) {
    .Link_Tel,
    .Contact .Tel,
    .Flow .Contact_Tel[href^='tel:'] {
    pointer-events: none;
    }
}

.Contact_Small {
    font-size: 24px;
    font-weight: var(--font-weight-noto-san-regular);
    font-family: var(--font-family-gothic);
}

@media screen and (max-width: 768px) {
    .Contact_Small {
        font-size: 16px;
    }
}

.Contact .Mail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 30px;
    font-weight: var(--font-weight-roboto-regular);
    font-family: var(--font-family-roboto);
    padding-top: 10px;
    padding-bottom: 8px;
    margin-left: -4.5rem;
}

@media screen and (max-width: 768px) {
    .Contact .Mail {
        font-size: 20px;
        margin-left: 0;
    }
}

.Contact .Mail::before {
    content: "";
    background-image: url(../images/contact/contact_mail.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-flex;
    gap: 8px;
    width: 35px;
    height: 35px;
}

@media screen and (max-width: 768px) {
    .Contact .Mail::before {
        width: 22px;
        height: 22px;
    }
}

.Flex {
    display: grid;
    place-content: center;
    gap: 16px;
}

.Contact .Reception {
    font-size: 24px;
    font-weight: var(--font-weight-noto-san-regular);
    font-family: var(--font-family-gothic);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

.Office_Name {
    aspect-ratio: 355 / 35;
    object-fit: cover;
}

/* フッター */
.Footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--font-color);
    padding: 40px 20px 50px;
}

@media (max-width: 768px) {
    .Footer {
        flex-direction: column-reverse;
        gap: 20px;
        padding-top: 30px;
        padding-bottom: 80px;
    }
}

.Footer p {
    font-size: 20px;
    font-family: var(--font-family-gothic);
    font-weight: var(--font-weight-noto-san-regular);
    color: var(--font-color);
    line-height: 1.5;
}

