﻿```css
/* ========================================
   RESET
======================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:
        "Noto Sans JP",
        "Hiragino Sans",
        sans-serif;

    color:#333;
    background:#fff;
    line-height:1.8;
    font-size:16px;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

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

ul{
    list-style:none;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* ========================================
   COLOR
======================================== */

:root{

    --primary:#1f4b66;

    --secondary:#6a8ca3;

    --accent:#d89f2d;

    --light:#f7f9fb;

    --text:#333333;

    --white:#ffffff;
}

/* ========================================
   HEADER
======================================== */

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    z-index:999;

    border-bottom:1px solid #eee;
}

.site-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;
}

.logo a{

    font-size:1.6rem;

    font-weight:700;

    color:var(--primary);

    letter-spacing:.08em;
}

.global-nav ul{

    display:flex;

    gap:30px;
}

.global-nav a{

    font-size:.95rem;

    font-weight:500;

    transition:.3s;
}

.global-nav a:hover{

    color:var(--accent);
}

/* ========================================
   HERO
======================================== */

.hero{

    padding-top:120px;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.35)
    ),
    url("../images/mainvisual.png");

    background-size:cover;

    background-position:center;

    color:#fff;
}

.hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.hero h1{

    font-size:clamp(
        2.5rem,
        6vw,
        5rem
    );

    line-height:1.25;

    margin-bottom:30px;

    font-weight:700;
}

.hero p{

    margin-bottom:25px;

    font-size:1.1rem;
}

.hero a{

    display:inline-block;

    background:var(--accent);

    color:#fff;

    padding:15px 40px;

    border-radius:999px;

    transition:.3s;
}

.hero a:hover{

    transform:translateY(-3px);
}

/* ========================================
   SECTION
======================================== */

section{

    padding:100px 0;
}

section h2{

    text-align:center;

    margin-bottom:60px;

    color:var(--primary);

    font-size:2.2rem;
}

/* ========================================
   ISSUES
======================================== */

#issues{

    background:var(--light);
}

#issues ul{

    max-width:800px;

    margin:0 auto 40px;
}

#issues li{

    background:#fff;

    margin-bottom:15px;

    padding:20px;

    border-radius:12px;

    box-shadow:
    0 5px 20px
    rgba(0,0,0,.05);
}

#issues p{

    text-align:center;

    font-size:1.1rem;

    font-weight:600;
}

/* ========================================
   ABOUT
======================================== */

#about .container{

    max-width:1200px;

    text-align:center;
}

#about p{

    margin-bottom:20px;

    font-size:1.05rem;
}

#about img{

    margin:50px auto 0;

    border-radius:20px;
}

/* ========================================
   SERVICES
======================================== */

.service-list{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.service-list article{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.08);

    transition:.3s;
}

.service-list article:hover{

    transform:
    translateY(-8px);
}

.service-list h3{

    padding:25px;

    color:var(--primary);

    font-size:1.4rem;
}

.service-list ul{

    padding:0 25px 25px;
}

.service-list li{

    padding:8px 0;

    border-bottom:
    1px solid #eee;
}

/* ========================================
   MANDALA
======================================== */

#mandala{

    background:var(--light);

    text-align:center;
}

#mandala p{

    max-width:900px;

    margin:0 auto 20px;
}

#mandala img{

    margin:50px auto;

    border-radius:20px;

    box-shadow:
    0 10px 40px
    rgba(0,0,0,.1);
}

/* ========================================
   FLOW
======================================== */

#flow ol{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:20px;
}

#flow li{

    background:#fff;

    text-align:center;

    padding:30px;

    border-radius:16px;

    box-shadow:
    0 5px 20px
    rgba(0,0,0,.05);
}

#flow h3{

    color:var(--accent);

    margin-bottom:15px;
}

/* ========================================
   CTA
======================================== */

#cta{

    background:var(--primary);

    color:#fff;

    text-align:center;
}

#cta h2{

    color:#fff;
}

#cta p{

    margin-bottom:20px;
}

#cta a{

    display:inline-block;

    padding:18px 50px;

    background:var(--accent);

    color:#fff;

    border-radius:999px;

    font-weight:bold;
}

/* ========================================
   COMPANY
======================================== */

#company table{

    width:100%;

    max-width:900px;

    margin:auto;

    border-collapse:collapse;
}

#company th,
#company td{

    padding:20px;

    border-bottom:
    1px solid #ddd;
}

#company th{

    width:100px;

    text-align:left;

    color:var(--primary);
}

/* ========================================
   CONTACT
======================================== */

#contact{

    background:var(--light);
}

#contact form{

    max-width:700px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.08);
}

#contact label{

    display:block;

    margin-bottom:10px;

    font-weight:600;
}

#contact input,
#contact textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    margin-bottom:25px;
}

#contact textarea{

    min-height:200px;
}

#contact button{

    width:100%;

    padding:18px;

    border:none;

    background:var(--primary);

    color:#fff;

    border-radius:10px;

    cursor:pointer;

    font-size:1rem;
}

/* ========================================
   FOOTER
======================================== */

footer{

    background:#18394d;

    color:#fff;

    text-align:center;

    padding:30px;
}

/* ========================================
   SCROLL ANIMATION READY
======================================== */

.fade-up{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;
}

.fade-up.active{

    opacity:1;

    transform:
    translateY(0);
}

/* ========================================
   MOBILE
======================================== */

@media(max-width:768px){

    .site-header .container{

        flex-direction:column;

        height:auto;

        padding:15px 0;
    }

    .global-nav ul{

        flex-wrap:wrap;

        justify-content:center;

        gap:15px;
    }

    .hero{

        text-align:center;

        padding-top:160px;
    }

    .hero .container{

        grid-template-columns:1fr;
    }

    .hero h1{

        font-size:2.4rem;
    }

    .service-list{

        grid-template-columns:1fr;
    }

    #flow ol{

        grid-template-columns:1fr;
    }

    #company th,
    #company td{

        display:block;

        width:100%;
    }

    #contact form{

        padding:30px;
    }
}
```
