﻿@charset "UTF-8";
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    color: #333333;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}


/* --- Typography & Layout --- */

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: #333333;
    margin: 25px auto 0;
    transition: width 0.6s ease;
}

.section-subtitle {
    text-align: center;
    font-size: 0.8rem;
    color: #666666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    display: block;
}

.text2 {
    font-size: 0.95rem;
    line-height: 2.1;
    color: #666666;
    text-align: justify;
}

.head-text {
    font-size: 1.4rem;
}


/* --- Hero Section --- */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    min-height: 700px;
    text-align: center;
    position: relative;
    background-color: #111;
    background-image: url(../images/company/img01.png);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.hero .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    letter-spacing: 0.3em;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.hero-lead {
    text-align-last: left;
    font-size: 1rem;
}


/* --- Technology / Split Section --- */

.technology-section {
    background-color: #f4f5f7;
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 140px;
}

.split-section:last-child {
    margin-bottom: 0;
}

.split-image {
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.text-mr {
    margin-right: 20px;
}

.text-ml {
    margin-left: 20px;
}

.split-image img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-image:hover img {
    transform: scale(1.06);
}

.split-content {
    width: 65%;
}

.split-content .section-subtitle {
    text-align: left;
    margin-bottom: 20px;
    color: #b91c1c;
}

.split-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}


/* Zig-Zag Layout */

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

@media (min-width: 900px) {
    .img-r {
        margin-right: calc((50vw - 50%) * -1);
    }
    .img-l {
        margin-left: calc((50vw - 50%) * -1);
    }
}

@media (max-width: 900px) {
    .split-section,
    .split-section:nth-child(even) {
        flex-direction: column;
        margin-bottom: 80px;
    }
    .split-image,
    .split-content {
        width: 100%;
    }
    .split-image {
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-lead {
        font-size: 0.85rem;
    }
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}


/* --- Every Style Section --- */

.every-style {
    --parallax-bg-image: url(../images/company/img03.jpg);
    background-color: #ffffff;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: var(--parallax-bg-image);
    height: 65vh;
    min-height: 600px;
}

.every-style .bg {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 65vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.every-style .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 30px;
    letter-spacing: 0.3em;
}

.every-style .head-text {
    color: #fff;
}

.every-style .text2 {
    color: #fff;
    text-align: center;
}

.every-style .container {
    position: relative;
    z-index: 1;
}

.every-style .split-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.every-style .section-subtitle,
.every-style h3 {
    text-align: center;
}

.every-style .split-image {
    margin: 50px auto 0;
    width: 80%;
    box-shadow: none;
}

.every-style .split-image img {
    border-radius: 8px;
}


/* film */


/* .film .text {
    width: 85%;
}

.fenix-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.film img {
    width: 80%;
    margin-top: 30px;
    text-align: center;
}

.flim-type-box1 {
    padding: 40px;
    background-color: #f8f8f8;
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
} */


/* film-type */

.film-type {
    background-color: #fff;
    margin-top: 20px;
}

.flim-type-box1 {
    padding: 40px;
    background-color: #f8f8f8;
}

.flim-type-box2 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 40px;
    background-color: #f8f8f8;
}

.film-type .split-image2 {
    width: 48%;
}

.film-type .split-content {
    width: 48%;
}

@media (max-width: 900px) {
    .flim-type-box1 {
        padding: 17px;
    }
    .flim-type-box2 {
        padding: 17px;
    }
}

@media (max-width: 900px) {
    .split-section2 {
        flex-direction: column-reverse;
    }
    .film-type .split-image2 {
        margin-top: 20px;
        width: 85%;
    }
    .film-type .split-content {
        width: 85%;
    }
    .text2 {
        font-size: 0.85rem;
    }
}

.split-image2 {
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-image2 img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-image2:hover img {
    transform: scale(1.06);
}

.section-padding2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.split-section2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}


/* --- Guard Image Area --- */

.guard-img-text {
    background-color: #333333;
    color: #fff;
}

.guard-img-text .section-title {
    opacity: 1;
}

.guard-img-text .section-title,
.guard-img-text .section-subtitle,
.guard-img-text .text2 {
    color: #fff;
}

.guard-img-text .section-title::after {
    background-color: #fff;
}

@media (max-width: 768px) {
    .guard-img {
        grid-template-columns: 1fr;
    }
}

.guard-img-text ul {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}

.guard-img-text li {
    background-color: #ffffff;
    width: 10%;
    border: 1px solid #000;
    padding: 4px;
}

@media (max-width: 700px) {
    .guard-img-text li {
        width: 20%;
    }
}

@media (max-width: 500px) {
    .guard-img-text ul {
        margin-top: 20px;
        padding: 0;
    }
    .guard-img-text li {
        width: 25%;
    }
}

.guard-img-text li:hover {
    transition: .5s;
    background-color: rgb(202, 202, 202);
}

.guard-img-text li img {
    width: 100%;
    height: auto;
}

.guard-img-text li p {
    text-align: center;
    color: #000;
}


/* --- Animation Classes --- */

.fade-up-trigger {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-trigger.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.company-table {
  border-top: 1px solid #e6e6e6;
}

/* 1行 */
.company-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px 0;
  margin: 0;
  border-bottom: 1px solid #e6e6e6;
}

.company-row dt,
.company-row__head {
  font-weight: 600;
  padding-left: 6px;
}

.company-row dd,
.company-row__body {
  line-height: 1.9;
  margin: 0;
}

/* MAP row is not dl */
.company-row--map {
  align-items: start;
}

.company-row--map .company-row__head {
  align-self: start;
}

/* Google Map */
.company-map {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f7f7;
}

.company-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* 業務内容 */
.company-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-list li {
  position: relative;
  padding-left: 18px;
  margin: 6px 0;
}

.company-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
  font-size: 12px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 768px) {
  .company {
    padding: 48px 16px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .company-row dt,
  .company-row__head {
    padding-left: 0;
  }

  .company-map iframe {
    height: 260px;
  }
}

/* アクセス */

.access-section {
    padding: 90px 0 100px;
    background: #111;
    color: #fff;
}

.access-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.access-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    color: #fff;
}

.access-lead {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.92rem;
    line-height: 1.9;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.access-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.access-map {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #1a1a1a;
}

.access-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(0.15) contrast(1.05);
}

.access-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.access-landmark {
    padding: 28px 26px;
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
    border-left: 3px solid #fff;
}

.access-landmark__label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.access-landmark__text {
    font-size: 1.05rem;
    line-height: 1.85;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: #fff;
}

.access-address {
    padding: 8px 4px 0;
}

.access-address__name {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    color: #fff;
}

.access-address__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    line-height: 1.95;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
}

.access-address__text a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.access-address__text a:hover {
    border-bottom-color: #fff;
}

.access-ways {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.access-way {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.access-way__num {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 2px;
}

.access-way__title {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.access-way__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.84rem;
    line-height: 1.85;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
}

.access-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 220px;
    height: 48px;
    padding: 0 28px;
    margin-top: 4px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: background 0.25s ease, color 0.25s ease;
}

.access-map-btn:hover {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}

@media (max-width: 900px) {
    .access-section {
        padding: 70px 0 80px;
    }

    .access-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .access-map {
        min-height: 300px;
        order: 2;
    }

    .access-panel {
        order: 1;
    }

    .access-lead {
        margin-bottom: 36px;
    }

    .access-map-btn {
        width: 100%;
    }
}

/* アクセス */
