 :root{
    --main-color:#095C44;
 }
 * {
    margin: 0;
    padding: 0;
}
body{
    background: #FFFCF8;
    font-family: 'Noto Sans', sans-serif;
}
html {
    scroll-behavior: smooth;
}
#works-section,
#contact-section {
    scroll-margin-top: 85px;
}  
li{
    list-style: none;
}
/*ヘッダー*/
.head_style {
    margin: 0;
    background: #FFFCF8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    height: 80px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 100;
    position: fixed;
    right: 0;
    left: 0;
}
.name_logo {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
.name_logo a {
    display: flex;
    color: #333;
    text-decoration: none;
    flex-direction: column;
}
.name_logo span {
    font-size: 14px;
    font-weight: normal;
}
ul.head_list {
    display: flex;
    gap: 20px;
    align-items: center;
}
li.list-item {
    list-style: none;
}
li.list-contact {
    list-style: none;
    background: var(--main-color);
    padding: 10px 20px;
    border-radius: 25px;
}
.list-item a {
    text-decoration: none;
    color: var(--main-color);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
li.list-contact a {
    text-decoration: none;
    color: var(--main-color);
    color:#fff;
}
@media screen and (max-width: 768px) {
    .head_style {
        padding: 0 20px;
        height: 70px;
    }
    .name_logo {
        font-size: 18px;
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
    }
    .name_logo span {
        font-size: 12px;
        font-weight: normal;
    }
    ul.head_list {
        gap: 15px;
        font-size: 14px;
        padding-top: 15px;
    }
}

/*TOP*/
.top-img {
    position: relative;
    height: 100vh;
}
.top-img p {
    position: absolute;
    bottom: 10%;
    right: 3%;
    margin: 0 auto;
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    letter-spacing: .1em;
}
.top-img img{
    position:absolute;
    top:0;
    left: 0;
    right: 0;
    margin:0 auto;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1260px) {
    .top-img p {
        font-size: 40px;
    }
}
@media screen and (max-width: 768px) {
    .top-img p {
        font-size: 30px;
        bottom: 30%;
    }
}
@media screen and (max-width: 450px) {
    .top-img {
        height: 90vh;
    }
    .top-img p {
        font-size: 24px;
        right: 0px;
        left: 0;
        margin: 0 auto;
        text-align: center;
        bottom: 43%;
        transform: translateY(50%);
    }
}

/*タイトル*/
h2.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
span.section-maintitle {
    position: relative;
    font-weight: 500;
    font-size: 50px;
    letter-spacing: 0.1em;
    font-family: "Montserrat", sans-serif;
}
.section-maintitle::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--main-color);
    position: absolute;
    border-radius: 50%;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}
.section-maintitle::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--main-color);
    position: absolute;
    border-radius: 50%;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}
span.section-subtitle {
    font-size: 16px;
    font-weight: normal;
}
h3.block-title {
    font-weight: 500;
    gap: 5px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
span.block-title__en {
    color: var(--main-color);
    font-size: 15px;
    padding-left: 20px;
    position: relative;
}
span.block-title__en::after {
    content: "";
    position: absolute;
    left: 5px;
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
span.block-title__ja {
    font-size: 24px;
    position: relative;
    font-weight: 600;
}
span.block-title__ja::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 1px;
    background: var(--main-color);
    bottom: 7px;
    margin-left: 10px;
}
@media screen and (max-width: 1260px) {
    span.section-maintitle {
        font-size: 40px;
    }
    span.section-subtitle {
        font-size: 14px;
    }
}
@media screen and (max-width: 450px) {
    span.section-maintitle {
        font-size: 36px;
        letter-spacing: 0.05em;
    }
}

/*各ページのタイトルTOP*/
section.singlepage_title{
    position: relative;
    height: 350px;
    top: 80px;
}
.singlepage_title h2.section-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}
.singlepage_title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
    position: absolute;
}
@media screen and (max-width: 768px) {
    section.singlepage_title {
        height: 285px;
        top: 70px;
    }
}

/*内容*/
.section-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media screen and (max-width: 1260px) {
    .section-wrap {
        box-sizing: border-box;
        padding: 0 40px;
    }
}
@media screen and (max-width: 768px) {
    .section-wrap {
        padding: 0 20px;
    }
}

/*私たちについて*/
.about_content {
    display: flex;
    align-items: center;
    gap: 50px;
}
img.about-image {
    max-width: 350px;
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}
.about_noice {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
p.about-text {
    line-height: 1.7;
}
a.more_btn {
    background: var(--main-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    width: 190px;
    display: block;
    margin-left: auto;
    position: relative;
}
a.more_btn::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background: #fff;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
a.more_btn::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    right: 25px;
    top: 50%;
}
@media screen and (max-width: 1260px) {
    .about_content {
        flex-direction: column;
    }
}

/*制作したもの*/
ul.works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}
img.works__image {
    width: 100%;
    border-radius: 10px;
}
p.works__title {
    font-size: 18px;
    font-weight: 600;
}
span.works__type {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
a.works__link {
    color: #777;
    font-size: 15px;
}
p.works__description {
    padding: 10px 0;
}
a.view-more {
    font-size: 14px;
    display: block;
    text-align: right;
    color: var(--main-color);
}
@media screen and (max-width: 1260px) {
ul.works__list {
    gap: 30px 20px;
}
p.works__title {
    font-size: 17px;
}
}
@media screen and (max-width: 960px) {
    ul.works__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 680px) {
    ul.works__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*お問い合わせ*/
.contact-info {
    text-align: center;
}
p.contact-info__message {
    font-size: 18px;
    margin-bottom: 30px;
}
.contact-info__item {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
}
img.contact-info__icon {
    width: 30px;
    height: 30px;
}
a.contact-info__link {
    color: #333;
    text-decoration: none;
    font-size: 20px;
}
@media screen and (max-width: 768px) {
    p.contact-info__message {
        font-size: 16px;
    }
    img.contact-info__icon {
        width: 20px;
        height: 20px;
    }
    a.contact-info__link {
        font-size: 16px;
    }
}

/*フッター*/
p.footer__copy {
    text-align: center;
    color: #999;
}