@charset "UTF-8";
/* ==========================================
   会社概要ページ 共通
========================================== */

.about-page {
    color: #222;
    background: #fff;
	padding-top: 0;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   共通見出し
========================================== */

.section-label {
    color: #0000cd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 12px;
}

.section-label.center {
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 32px;
    letter-spacing: .08em;
    margin-bottom: 46px;
}

/* ==========================================
   代表挨拶セクション
========================================== */

.intro-section {
    padding: 90px 0;
}

/* ==========================================
   メモ帳タイトル
========================================== */

.memo-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.memo-title .section-label {
    margin-bottom: 10px;
}

.memo-title h2 {
    margin: 0;
    font-size: 36px;
    letter-spacing: .08em;
    color: #222;
}

/* ==========================================
   メモ帳デザイン
========================================== */

.intro-card {
    position: relative;
    background:
        repeating-linear-gradient(
            to bottom,
            #fffef8 0,
            #fffef8 39px,
            rgba(0, 0, 205, .18) 40px
        );
    padding: 60px 50px 42px 82px;
    border-radius: 10px;
    line-height: 2.2;
    box-shadow: 0 14px 36px rgba(0,0,0,.08);
    overflow: hidden;
}

/* 左マージン線 */

.intro-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 56px;
    width: 2px;
    height: 100%;
    background: rgba(220,60,60,.8);
}

/* 紙の折り返し */

.intro-card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 120px;
    height: 120px;
    background: linear-gradient(
        135deg,
        transparent 50%,
        rgba(0,0,0,.04) 50%
    );
}

.intro-card p {
    position: relative;
    z-index: 2;
}

.intro-card p + p {
    margin-top: 18px;
}

.signature {
    position: relative;
    z-index: 2;
    text-align: right;
    font-weight: 700;
    margin-top: 40px;
}

/* ==========================================
   会社情報テーブル
========================================== */

.company-section {
    padding: 90px 0;
    background: #f7f7f7;
}

.company-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0,0,0,.07);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 24px 28px;
    border-bottom: 1px solid #e7e7e7;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 230px;
    background: #f8f8f8;
    font-weight: 700;
}

.company-table td {
    line-height: 1.8;
}

/* ==========================================
   アクセスマップ
========================================== */

.access-section {
    padding: 90px 0 110px;
    background: #fff;
}

.access-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
}

.access-info {
    background: #fafafa;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

.access-info h2 {
    font-size: 32px;
    letter-spacing: .08em;
}

.access-info p {
    line-height: 1.9;
    margin-top: 24px;
}

.map-wrap {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0,0,0,.08);
    min-height: 420px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

/* ==========================================
   スクロールアニメーション
========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s ease, transform .8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   タブレット
========================================== */

@media screen and (max-width: 900px) {

    .access-grid {
        grid-template-columns: 1fr;
    }

    .intro-card {
        padding: 45px 30px 35px 64px;
    }

    .intro-card::before {
        left: 42px;
    }

    .access-info {
        padding: 30px;
    }
}

/* ==========================================
   スマホ
========================================== */

@media screen and (max-width: 768px) {

   

    .memo-title h2 {
        font-size: 28px;
    }

    .intro-card {
        padding: 34px 22px 32px 52px;
    }

    .intro-card::before {
        left: 34px;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }
}