/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* 共通スタイル */
.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}

.section-title-yellow {
    color: #FFD700;
}

.section-subtitle {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
    line-height: 1.4;
}

.section-text {
    margin-bottom: 40px;
}

.section-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-image {
    position: relative;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.section-image:hover img {
    transform: scale(1.05);
}

/* 共通ボタンスタイル */
.common-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: white;
    padding: 12px 40px;
    transition: background 0.3s;
    font-weight: 500;
}

.common-btn:hover {
    background: #333;
}

.arrow {
    font-size: 20px;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.header-inner {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    display: block;
}

.logo a{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    width: 180px;
    height: 180px;
    padding: 15px;
}
.header.scrolled .header-inner{
    height: 82px;
}
.header.scrolled .logo a {
    width: 82px;
    height: 82px;
    opacity: 0.9;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-item a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
    position: relative;
}

.nav-item a:hover {
    color: #000;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-item a:hover::after {
    width: 100%;
}

.header-contact-btn {
    background: #FFD700;
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    font-size: 14px;
}

.header-contact-btn:hover {
    transform: translateY(-2px);
}

.header-contact-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: #fff;
    border: none;
    cursor: pointer;
    margin: auto;
    position: absolute;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 35px;
    height: 2px;
    background: #008BD5;
    transition: all 0.3s;
    position: absolute;
}

.mobile-menu-btn span:nth-child(1) {
    margin-top: -20px;
}

.mobile-menu-btn span:nth-child(2) {

}

.mobile-menu-btn span:nth-child(3) {
    margin-top: 20px;
}

/* ヒーローセクション */
.hero {
    position: relative;
    width: 100vw;
    height: 900px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 100px;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* NEWSセクション */
.news {
    background: #F5F5F5;
    padding: 65px 0;
    margin-right: 140px;
}

.news-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    padding-right: 140px;
}

.news-list-container {
    padding-top: 10px;
}

.news-list {
    border-top: 1px solid #DDD;
    margin-bottom: 50px;
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px solid #DDD;
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-date {
    font-size: 14px;
    color: #666;
    min-width: 100px;
}

.news-link {
    flex: 1;
    transition: color 0.3s;
}

.news-link:hover {
    color: #2E7CD6;
}

/* ABOUT USセクション */
.about {
    padding: 100px 0;
    background: white;
}

.about-inner {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 60px;
    align-items: center;
}

/* MEMBERセクション */
.member {
    padding: 100px 0;
    background: #F9F9F9;
}

.member-inner {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 60px;
    align-items: center;
}

/* SERVICEセクション */
.service {
    position: relative;
    padding: 100px 0;
    background: white;
    margin-left: 140px;
    margin-bottom: 110px;
}

.service-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(246, 209, 0, 0.5);
    z-index: 0;
}

.service-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0 180px;
}

.service-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.service-subtitle {
    font-size: 24px;
    font-weight: bold;
}

.service-description p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-button-wrapper {
    text-align: center;
}

.service-item {
    position: relative;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 20px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.service-number {
    font-size: 32px;
    font-weight: bold;
}

.service-name {
    font-size: 18px;
    font-weight: bold;
}

/* WORKSセクション */
.works {
    background: #000;
    padding: 100px 0;
    position: relative;
    background-image: url("../img/top/works-bg.png");
}

.works-inner {
    margin: 0 auto;
    padding: 0;
}

.works-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-left: 140px;
}

.works-header {
    color: white;
}

.works-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #CCC;
}

.works-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 1px solid white;
    transition: all 0.3s;
}

.works-more-btn:hover {
    background: white;
    color: #000;
}

.works-slider-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.works-slider-container::-webkit-scrollbar {
    display: none;
}

.works-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: max-content;
}

.works-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.works-card-image {
    height: 200px;
    overflow: hidden;
}

.works-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-card-info {
    padding: 20px;
}

.works-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.works-card-title {
    font-size: 16px;
    font-weight: bold;
}

.works-nav {
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.works-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.works-nav button:hover {
    background: white;
    color: #000;
}

.works-nav button span {
    display: block;
    line-height: 1;
}

/* RECRUITセクション */
.recruit {
    position: relative;
    padding: 100px 0;
    background: white;
}

.recruit-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/top/recruit-bg.png') center/cover;
    z-index: 0;
}

.recruit-inner {
    position: relative;
    z-index: 1;
}

.recruit-container {
    background: rgba(255, 255, 255, 0.7);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.recruit-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    margin-bottom: 40px;
    text-align: left;
}

.recruit-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.recruit-image {
    max-width: 320px;
    overflow: hidden;
}

.recruit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INSTAGRAMセクション */
.instagram {
    padding: 100px 0;
    background: white;
}

.instagram-title {
    text-align: center;
    margin-bottom: 30px;
}

.instagram-account {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 50px;
}

.instagram-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.instagram-handle {
    font-size: 18px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.instagram-item {
    position: relative;
    display: block;
    overflow: hidden;
    transition: transform 0.3s;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-image-wrapper {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.instagram-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACTセクション */
.contact {
    position: relative;
    padding: 0 0 80px 0;
}

.contact-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #E3E3E3;
    z-index: 0;
}

.contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    background: #F6D100;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text {
    text-align: center;
    border-right: 1px solid #000;
    padding-right: 60px;
}

.contact-title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.6;
}

.contact-buttons {
    display: block;
}

.contact-btn-tel,
.contact-btn-form {
    background: white;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s;
    font-weight: bold;
    font-size: 30px;
}

.contact-btn-tel {
    margin-bottom: 30px;
}

.contact-btn-tel:hover,
.contact-btn-form:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 30px;
    height: 30px;
}

/* フッター */
.footer {
    background: #E3E3E3;
    padding: 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 100px 300px 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #DDD;
    margin: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: bold;
    color: #2E7CD6;
}

.footer-company-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

.footer-nav-list a:hover {
    color: #2E7CD6;
}

.footer-social {
    text-align: center;
    padding: 0 0 40px 0;
}

.footer-instagram {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.footer-instagram img{
    margin: 15px;
}


.footer-copyright {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
    /* margin: 0 -40px; */
}

.footer-copyright p {
    font-size: 14px;
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 999;
    overflow-y: auto;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    padding: 20px;
}

.mobile-nav-item {
    padding: 15px 0;
    border-bottom: 1px solid #EEE;
}

.mobile-nav-item a {
    display: block;
    font-size: 16px;
    transition: color 0.3s;
}

.mobile-nav-item a:hover {
    color: #2E7CD6;
}

.u-br--sp{
    display: none;
}

/* レスポンシブ（タブレット・スマホ） */
@media (max-width: 1024px) {
    .logo a{
        width: 60px;
        height: 60px;
        padding: 8px;
    }
    .header.scrolled .logo a{
        width: 60px;
        height: 60px;
        padding: 8px;
    }
    .header.scrolled .header-inner{
        height: 60px;
    }
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    /* 共通スタイル */
    .section-inner {
        padding: 0 20px;
    }

    .section-title {
        font-size: 50px;
    }

    /* NEWSセクション */
    .news {
        margin-right: 0;
    }

    .news-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    /* SERVICEセクション */
    .service {
        padding: 100px 0;
        margin-left: 0;
    }

    .service-inner {
        padding: 0 20px;
    }

    .service-header {
        grid-template-columns: 1fr;
    }

    .service-list {
        display: block;
    }

    .service-item {
        margin-bottom: 20px;
    }

    /* WORKSセクション */
    .works {
        padding: 60px 0;
    }

    .works-content {
        grid-template-columns: 1fr;
        padding: 0 0 0 20px;
        margin-left: 0;
    }

    .works-nav {
        top: 87px;
    }

    /* ABOUT/MEMBERセクション */
    .about-inner,
    .member-inner {
        grid-template-columns: 1fr;
    }

    /* RECRUITセクション */
    .recruit-content {
        grid-template-columns: 1fr;
    }

    /* CONTACTセクション */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-text {
        border: none;
        padding-right: 0;
        margin-bottom: 40px;
    }

    /* フッター */
    .footer-inner {
        padding: 0 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    /* モバイルメニュー */
    .mobile-menu {
        padding-top: 50px;
    }
    .member{
        padding: 50px 0;
    }
    .service{
        padding: 50px 0;
        margin-bottom: 60px;
    }
    .service-header{
        gap: 40px;
    }
    .recruit{
        padding: 60px 0;
    }
    .about{
        padding: 60px 0;
    }
    .about-inner{
        gap: 40px;
    }
    .news{
        padding: 30px 0 50px 0;
    }
}

@media (max-width: 768px){
    .news-item{
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
    .section-subtitle{
        font-size: 24px;
    }
    .u-br--sp{
        display: block;
    }
}

@media (max-width: 480px){
    .hero-title{
        font-size: 26px;
    }
    .hero-subtitle{
        font-size: 14px;
    }
    .hero-inner{
        padding: 0 30px 60px;
    }
    .hero{
        height: 100dvh;
    }
    .works-card{
        flex: 0 0 320px;
    }
    .recruit-container{
        padding: 30px 25px;
    }
    .recruit-container .section-subtitle{
        margin-bottom: 30px;
        font-size: 20px;
    }
    .recruit-content{
        gap: 20px;
        margin-bottom: 30px;
    }
    .recruit-image{
        margin: 0 auto;
    }
    .recruit-text p{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .contact-inner{
        padding: 30px;
    }
    .contact-title{
        font-size: 50px;
        margin-bottom: 10px;
    }
    .contact-text{
        margin-bottom: 25px;
    }
    .contact-btn-tel{
        margin-bottom: 20px;
    }
}