@charset "utf-8";

html {
    scroll-behavior: smooth;
}

@media screen and (max-width: 1366px) {
    html {
        font-size: 14px;
    }
}

/* @media screen and (max-width: 1080px) {
    html {
        font-size: 13px;
    }
} */

body {
    font-family: ’ヒラギノ角ゴ ProN’,'游ゴシック体',YuGothic,"游ゴシック",
    "Yu Gothic",'Noto Sans JP','Noto Sans', sans-serif;
    color: #444;
    letter-spacing: 0.2rem;
    line-height: 2rem;
    background-color: #F6F6F6;
}

.main_wrapper {
    margin: 0 9.25rem 6.25rem 9.25rem;
}

@media screen and (max-width: 768px) {
    .main_wrapper {
        margin: 0 3rem 6.25rem 3rem;
    }
}

@media screen and (max-width: 600px) {
    .main_wrapper {
        margin: 0 1.25rem 6.25rem 1.25rem;
    }
}

.flex_pc {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .flex_pc {
        display: block;
    }
}

.flex_pc_02 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .flex_pc_02 {
        display: block;
    }
}

/* Text Style */

.main-text {
    font-size: 1.16rem;
    letter-spacing: 0.24rem;
    text-align: justify;
}

.font-bold {
    font-family: ’ヒラギノ角ゴ ProN’,'游ゴシック体',YuGothic,"游ゴシック","Yu Gothic",'Noto Sans JP','Noto Sans', sans-serif;
    font-weight: bold;
}

/* Heading */

h1 {
    font-size: 7.75rem;
    font-weight: 800;
    letter-spacing: 1.2rem;
    margin: 0 9.25rem;
    font-family: "inter", sans-serif;
}

@media screen and (max-width: 1000px) {
    h1 {
        font-size: 4rem;
        margin: 0 3rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 2.8rem;
        margin: 0 1.66rem;
        letter-spacing: 0.88rem;
    }
}

h1 .h1_add {
    font-size: 1.5rem;
    letter-spacing: normal;
    display: block;
    margin-bottom: 0.88rem;
    letter-spacing: 0.08rem;
}

@media screen and (max-width: 768px) {
    h1 .h1_add {
        font-size: 0.88rem;
        display: inline-block;
        margin-bottom: auto;
        letter-spacing: 0.03rem;
    }
}

h1 .h1_design {
    font-size: 2.5rem;
}

@media screen and (max-width: 1000px) {
    h1 .h1_design {
        font-size: 4rem;
    }
}

@media screen and (max-width: 500px) {
    h1 .h1_design {
        font-size: 2.8rem;
    }
}

h1 .main_logo_br {
    display: none;
}

@media screen and (max-width: 1000px) {
    h1 .main_logo_br {
        display: block;
    }
}

h2 {
    color: #8EB0B5;
    display: flex;
    align-items: center;
    margin-bottom: 1.88rem;
    font-weight: 800;
}

h2::before {
    content: "";
    display: block;
    width: 2.2rem;
    border-bottom: 1px solid #8EB0B5;
    margin-right: .63rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 3.13rem;
    line-height: 2.2rem;
}

h4 {
    font-size: 1.5rem;
    font-family: ’ヒラギノ角ゴ ProN’,'游ゴシック体',YuGothic,"游ゴシック",
    "Yu Gothic",'Noto Sans JP','Noto Sans',sans-serif;
    font-weight: bold;
    text-align: justify;
}

/* MB */

.mb_01 {
    margin-bottom: 3.13rem;
}

.mb_02 {
    margin-bottom: 1.88rem;
}

.mb_03 {
    margin-bottom: 6.25rem;
}

/* FONT BOLD */

.span_bold {
    font-weight: bold;
}

/* IMG */

.img-box {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.img-box.works-sample {
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.1);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}