@charset "UTF-8";

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Noto Sans JP",sans-serif;

    color:var(--text);

    background:var(--bg);

    line-height:2;

    letter-spacing:.05em;

}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

section{
    padding:150px 0;
    position:relative;
}

@media(max-width:768px){

section{

    padding:90px 0;

}

}

body.menu-open{

    overflow:hidden;

}

/*==================================================
ROOT
==================================================*/

:root{

    --main:#7D8F55;
    --sub:#D7DEC7;
    --bg:#FCFBF8;

    --accent:#C9A24D;

    --white:#fff;

    --text:#565656;

    --text-light:#7A7A7A;

    --line:#ECE9E2;

    --shadow:
    0 15px 45px rgba(0,0,0,.05);

    --shadow-hover:
    0 20px 55px rgba(0,0,0,.08);

    --radius:26px;

    --transition:.35s;

}

/*=========================
HEADER
=========================*/

header{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    padding:25px 0;

    transition:.4s;

}

header .inner{

    width:min(1200px,92%);
    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo h1{

    color:#fff;

    font-size:28px;

    font-weight:700;

}

.logo span{

    display:block;

    color:rgba(255,255,255,.85);

    font-size:13px;

    margin-top:5px;

}

.nav ul{

    display:flex;

    gap:40px;

}

.nav a{

    color:#fff;

    font-weight:500;

    position:relative;

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:#fff;

    transition:.3s;

}

.nav a:hover::after{

    width:100%;

}

header.scroll{

    position:fixed;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    padding:15px 0;

}

header.scroll .logo h1{

    color:var(--main);

}

header.scroll .logo span{

    color:#666;

}

header.scroll .nav a{

    color:var(--main);

}

header.scroll .nav a::after{

    background:var(--main);

}

/*==================================
HAMBURGER
==================================*/

.hamburger{

    display:none;

    width:48px;
    height:48px;

    border:none;
    background:none;

    cursor:pointer;

    position:relative;

    z-index:1001;

}

.hamburger span{

    position:absolute;

    left:10px;

    width:28px;
    height:2px;

    background:#fff;

    transition:.3s;

}

.hamburger span:nth-child(1){

    top:14px;

}

.hamburger span:nth-child(2){

    top:23px;

}

.hamburger span:nth-child(3){

    top:32px;

}

.hamburger.active span:nth-child(1){

    transform:rotate(45deg);

    top:23px;

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:rotate(-45deg);

    top:23px;

}

header.scroll .hamburger span{

    background:var(--main);

}

.hamburger.active span {
    background:var(--main);
}

@media(max-width:768px){

.nav{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(255,255,255,.98);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1000;

}

.nav.active{

    opacity:1;

    visibility:visible;

}

.nav ul{

    flex-direction:column;

    gap:35px;

    text-align:center;

}

.nav a{

    color:var(--main);

    font-size:22px;

    font-weight:700;

}

.hamburger{

    display:block;

}

}

@media(min-width:769px){

.nav{

    display:block !important;

}

}


/*==================================================
COMMON
==================================================*/

.inner{

    width:min(1180px,90%);

    margin:auto;

}

.title{

    text-align:center;

    margin-bottom:90px;

}

.title span{

    display:block;

    color:var(--accent);

    font-size:14px;

    letter-spacing:.25em;

    font-weight:700;

    margin-bottom:18px;

}

.title h2{

    font-size:48px;

    color:var(--main);

    line-height:1.5;

    font-weight:500;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:250px;

    height:62px;

    border-radius:999px;

    background:var(--main);

    color:#fff;

    font-weight:700;

    font-size:17px;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-3px);

    background:#6C7D49;

}

.btn.line{

    background:#fff;

    color:var(--main);

    border:2px solid var(--main);

}

.btn.line:hover{

    background:#76885F;

    color:#fff;

}

/*==================================================
FV
==================================================*/

.fv{

    position:relative;

    height:100vh;

    min-height:760px;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.fv-bg{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-2;

}

.fv-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.fv::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(50,70,46,.55),
        rgba(50,70,46,.15)
    );

    z-index:-1;

}

.fv-inner{

    position:relative;

    z-index:2;

    width:min(1100px,90%);

    margin:auto;

    color:#fff;

}

.fv-sub{

    display:inline-block;

    letter-spacing:.35em;

    color:#D9DFD3;

    margin-bottom:20px;

}

.fv h1{

    font-size:68px;

    line-height:1.2;

    font-weight:600;

    margin-bottom:35px;

}

.copy{

    font-size:30px;

    margin-bottom:25px;

    font-weight:500;

}

.lead{

    max-width:520px;

    opacity:.92;

    margin-bottom:50px;

}

.fv-btn{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/*==================================================
SCROLL
==================================================*/

.fade{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade.active{

    opacity:1;

    transform:none;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

.title{

    margin-bottom:50px;

}

.title h2{

    font-size:32px;

}


.fv-inner{

    width:min(1180px,90%);

}

.fv h1{

    font-size:72px;

    line-height:1.2;

    margin-bottom:30px;

}

.copy{

    font-size:34px;

    margin-bottom:30px;

}

.lead{

    font-size:18px;

    margin-bottom:55px;

}

.fv-btn{

    flex-direction:column;

}

.btn{

    width:100%;

}

}

/*==================================
ABOUT
==================================*/

.about{

    background:#fff;

}

.about-wrap{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-img{

    overflow:hidden;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.about-img img{

    height:520px;

    object-fit:cover;

    transition:.6s;

}

.about-img:hover img{

    transform:scale(1.05);

}

.about-text h3{

    font-size:38px;

    color:var(--main);

    line-height:1.6;

    margin-bottom:35px;

    font-weight:600;

}

.about-text p{

    font-size:17px;

    line-height:2.1;

    margin-bottom:22px;

    color:#555;

}

.about-text p:last-child{

    margin-bottom:0;

}


/*==================================
PHILOSOPHY
==================================*/

.philosophy{
    padding:100px 0;
    background:var(--bg);
}

.philosophy-wrap{
    max-width:900px;
    margin:0 auto;
}

.philosophy-text{

    background:#fff;

    padding:60px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.philosophy-text h3{

    font-size:36px;
    line-height:1.6;
    color:var(--main);

    margin-bottom:35px;

    font-weight:600;

}

.philosophy-text p{

    font-size:17px;
    line-height:2.2;
    color:var(--text);

    margin-bottom:25px;

}

.philosophy-text p:last-child{
    margin-bottom:0;
}

.philosophy-text .message{
    background:#FCFBF8;
    border-left:5px solid var(--main);
    border-top:none;

    padding:30px;
    border-radius:12px;

    text-align:left;
}

.philosophy-text .message strong{

    display:block;

    font-size:22px;
    line-height:1.8;

    color:var(--main);

    font-weight:700;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:768px){

    .philosophy{
        padding:80px 0;
    }

    .philosophy-text{
        padding:35px 25px;
    }

    .philosophy-text h3{
        font-size:28px;
        margin-bottom:25px;
    }

    .philosophy-text p{
        font-size:15px;
        line-height:2;
    }

    .philosophy-text .message{
        margin-top:30px;
        padding-top:25px;
    }

    .philosophy-text .message strong{
        font-size:18px;
    }

}

/*==================================
WORRY
==================================*/

.worry{

    background:var(--bg);

}

.worry-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.worry-grid article{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.04);

    transition:.3s;

}

.worry-grid article:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.worry-grid img{

    width:70px;

    margin:auto;

    margin-bottom:25px;

}

.worry-grid h3{

    font-size:20px;

    color:var(--main);

    margin-bottom:15px;

    font-weight:600;

    line-height:1.5;

}

.worry-grid p{

    color:#666;

    font-size:15px;

    line-height:1.9;

}

.section-link{
    margin-top:60px;
    text-align:center;
}

.section-link p{
    color:#666;
    margin-bottom:15px;
    line-height:1.8;
}

.section-link a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--accent);
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.section-link a:hover{
    gap:14px;
}

.service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.service-grid article{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.service-grid article:hover{

    transform:translateY(-8px);

}

.service-body{

    padding:35px;

}

.service-body h3{

    color:var(--main);

    margin-bottom:15px;

    font-size:24px;

}

.service-body p{

    color:#666;

    line-height:2;

}


.reason-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.reason-grid article{

    background:#fff;

    border-radius:24px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.reason-grid span{

    display:inline-flex;

    width:60px;
    height:60px;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--sub);

    color:var(--main);

    font-weight:700;

    margin-bottom:20px;

}

.reason-grid h3{

    color:var(--main);

    font-size:20px;

}


/*==================================
SECTION BACKGROUND
==================================*/

.about{
    background:#fff;
}

.philosophy{
    background:var(--bg);
}

.worry{
    background:#fff;
}

.service{
    background:var(--bg);
}

.reason{
    background:#fff;
}

.flow{
    background:var(--bg);
}

.cta{
    background:#fff;
}

/*==================================
CTA
==================================*/

.cta{

    position:relative;

    padding:120px 0;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../img/cta.jpg") center/cover no-repeat;

    z-index:0;

}

.cta::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(53,73,46,.78),
        rgba(53,73,46,.55)
    );

    z-index:1;

}

.cta .inner{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.cta h2{

    font-size:42px;

    font-weight:500;

    line-height:1.6;

    margin-bottom:25px;

}

.cta p{

    font-size:18px;

    opacity:.95;

    margin-bottom:45px;

}

.cta-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}




.cta .btn:hover{

    background:#F7F5F0;

}


.about::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:1px;

    background:#ECEEE8;

}

.worry::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:120px;

    height:4px;

    background:var(--sub);

    border-radius:50px;

}

/*==================================
FLOW
==================================*/

.flow{
    padding:100px 0;
}

.flow-list{
    max-width:900px;
    margin:60px auto 0;
    padding:0;
    list-style:none;
}

.flow-list li{
    position:relative;
    display:flex;
    gap:35px;
    align-items:flex-start;
    padding-bottom:40px;
}

.flow-list li:last-child{
    padding-bottom:0;
}

.flow-list li:not(:last-child)::after{
    content:"";
    position:absolute;
    left:39px;
    top:80px;
    width:2px;
    height:calc(100% - 20px);
    background:#D8E6D4;
}

.flow-step{

    width:80px;
    height:80px;

    flex-shrink:0;

    border-radius:50%;

    background:var(--accent);

    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 8px 20px rgba(229,138,58,.25);

    z-index:2;
}

.flow-step span{
    font-size:11px;
    letter-spacing:.08em;
}

.flow-step strong{
    font-size:26px;
    line-height:1;
    margin-top:3px;
}

.flow-content{

    flex:1;

    background:#fff;

    border:1px solid #E4ECE2;

    border-radius:20px;

    padding:28px 35px;

    transition:.3s;
}

.flow-content:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.flow-content h3{
    color:var(--main);
    font-size:24px;
    margin-bottom:10px;
}

.flow-content p{
    color:#666;
    line-height:1.9;
    margin:0;
}

@media (max-width:768px){

    .flow{
        padding:80px 0;
    }

    .flow-list{
        margin-top:40px;
    }

    .flow-list li{
        gap:16px;
        padding-bottom:24px;
    }

    .flow-list li:not(:last-child)::after{
        left:29px;
        top:60px;
        height:calc(100% - 10px);
    }

    .flow-step{
        width:60px;
        height:60px;
    }

    .flow-step span{
        font-size:10px;
    }

    .flow-step strong{
        font-size:20px;
    }

    .flow-content{
        padding:20px;
    }

    .flow-content h3{
        font-size:18px;
        margin-bottom:8px;
        line-height:1.5;
    }

    .flow-content p{
        font-size:14px;
        line-height:1.8;
    }

}


/*==================================
FOOTER
==================================*/

footer{

    background:#fff;

    border-top:1px solid var(--line);

    padding:80px 0 0;

}

footer .inner{

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    gap:60px;

    align-items:start;

}

.footer-logo{
    text-align:left;
}

.footer-nav{
    text-align:center;
}

.footer-contact{
    text-align:right;
}

.footer-logo h3{

    font-size:30px;

    margin-bottom:12px;

}

.footer-logo span{

    display:block;

    margin-bottom:20px;

    color:rgba(255,255,255,.8);

    font-size:14px;

}

.footer-logo p{

    line-height:2;

    color:rgba(255,255,255,.85);

}

.footer-nav{

    flex:1;

}


.footer-nav ul{

    display:flex;

    justify-content:flex-end;

    flex-wrap:wrap;

    gap:18px 30px;

}

.footer-nav li{

    padding:0;

}

.footer-nav li::after{

    display:none;

}

.footer-nav a{

    transition:.3s;

}

.footer-nav a:hover{

    opacity:.7;

}

.footer-bottom{

    margin-top:70px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

}

.footer-bottom p{

    font-size:14px;

    margin-bottom:8px;

}

.footer-bottom small{

    display:block;

    margin-bottom:10px;

}

.credit{

    margin-top:12px;

}

.credit a{

    color:var(--main);

}

/*==================================
RESPONSIVE
==================================*/

@media (max-width:768px){

html{
    font-size:15px;
}

/* ---------- 共通 ---------- */

.inner{
    width:90%;
    margin:auto;
}

section{
    padding:80px 0;
}

.title{
    margin-bottom:45px;
}

.title span{
    font-size:12px;
    letter-spacing:.18em;
}

.title h2{
    font-size:30px;
    line-height:1.5;
}

/* ---------- Header ---------- */

header{
    padding:15px 0;
}

.logo h1{
    font-size:18px;
}

.logo span{
    font-size:12px;
    margin-top: -6px;
}

/* ---------- FV ---------- */

.fv{
    min-height:720px;
    height:auto;
    padding:140px 0 80px;
}

.fv::before{
    background:linear-gradient(
        rgba(50,70,46,.55),
        rgba(50,70,46,.30)
    );
}

.fv-inner{
    text-align:center;
}

.fv h1{

    font-size:32px;

    line-height:1.4;

    word-break:keep-all;

}

.copy{
    font-size:22px;
    margin-bottom:20px;
}

.lead{
    font-size:15px;
    margin:0 auto 35px;
    max-width:100%;
}

.fv-btn{
    flex-direction:column;
    gap:15px;
}

.btn{

    width:100%;

    min-width:0;

}

/* ---------- ABOUT ---------- */

.about-wrap{
    display:block;
}

.about-img{
    margin-bottom:35px;
}

.about-img img{
    height:260px;
}

.about-text{
    text-align:left;
}

.about-text h3{
    font-size:28px;
    margin-bottom:20px;
}

.about-text p{
    font-size:15px;
    line-height:2;
}

/* ---------- WORRY ---------- */

.worry-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.worry-grid article{
    padding:30px 25px;
}

.worry-grid img{
    width:60px;
}

/* ---------- SERVICE ---------- */

.service-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
}

.service article{
    padding:0;
    overflow:hidden;
}

.service-body{
    padding:25px;
}

.service-body h3{
    font-size:22px;
    margin-bottom:10px;
}

.service-body p{
    font-size:15px;
}

/* ---------- REASON ---------- */

.reason-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.reason article{
    text-align:center;
}

/* ---------- CTA ---------- */

.cta{

    padding:70px 0;

}

.cta .inner{

    width:92%;

    padding:50px 25px;

    border-radius:24px;

}

.cta h2{

    font-size:28px;

}

.cta p{

    font-size:15px;

    margin-bottom:30px;

}

.cta-btn{

    flex-direction:column;

}

.cta-btn .btn{

    width:100%;

    max-width:320px;

}


/* ---------- FOOTER ---------- */

footer{

    padding-top:60px;

}

footer .inner{

    display:flex;

    flex-direction:column;

    gap:40px;

    text-align:center;

}

.footer-logo,
.footer-nav,
.footer-contact{

    text-align:center;
    margin: auto;

}

.footer-logo{

    width:100%;

}

.footer-logo h3{

    font-size:22px;

}

.footer-logo span {
    color: #565656;
    font-size:16px;
    margin-top: -6px;
}
.footer-logo p {
    color: #565656;
    font-size: 20px;
}

.footer-nav{

    width:100%;

}

.footer-nav ul{

    flex-direction:column;

    align-items:center;

    gap:15px;

}

.footer-bottom{

    margin-top:40px;

    padding:20px;

}

.footer-bottom p{

    font-size:13px;

}

.footer-bottom small{

    font-size:12px;

}

.credit{

    font-size:12px;

}

}


/* =========================
   Coming Soon
========================= */

.coming{

    flex:1;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--bg);

    padding:40px 20px;

    box-sizing:border-box;

}


.coming-inner{

    position:relative;

    width:100%;
    max-width:620px;

    padding:60px 40px;

    text-align:center;

    background:var(--white);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    overflow:hidden;

    box-sizing:border-box;

}


/* 上部アクセントライン */

.coming-inner::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--accent);

}



/* ロゴ */

.coming .logo{

    color:var(--main);

    font-size:18px;

    font-weight:500;

    letter-spacing:.18em;

    line-height:1.8;

    margin-bottom:35px;

}



/* タイトル */

.coming h1{

    color:var(--text);

    font-size:32px;

    font-weight:500;

    letter-spacing:.12em;

    margin-bottom:30px;

}



/* メッセージ */

.coming .message{

    color:var(--text-light);

    font-size:15px;

    line-height:2;

    margin-bottom:20px;

}



/* ボタン */

.coming .btn{

    display:inline-block;

    margin-top:25px;

    padding:15px 45px;

    background:var(--main);

    color:var(--white);

    border-radius:50px;

    transition:var(--transition);

}



.coming .btn:hover{

    background:var(--accent);

}



/* =========================
   Layout
========================= */


body{

    min-height:100vh;

    display:flex;

    flex-direction:column;

}



main.coming{

    flex:1;

}



/* =========================
   SP
========================= */

@media(max-width:768px){


    .coming{

        padding:30px 20px;

    }


    .coming-inner{

        padding:45px 25px;

        border-radius:20px;

    }


    .coming h1{

        font-size:24px;

    }


    .coming .message{

        font-size:14px;

    }


}


/* =========================
   私たちにできること
========================= */

.service-page{
    padding:120px 0;
    margin-top: 50px;
    background:var(--white);
}

.service-intro{
    max-width:850px;
    margin:0 auto 100px;
    text-align:center;
}

.service-intro h2{
    font-size:32px;
    line-height:1.6;
    margin-bottom:40px;
    font-weight:500;
    color:var(--main);
}

.service-intro p{
    line-height:2;
    margin-bottom:20px;
    color:var(--text);
}


/* =========================
   サービス一覧
========================= */

.service-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.service-list article{
    padding:45px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.service-list article:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
}

.service-list h3{
    font-size:24px;
    margin-bottom:25px;
    color:var(--main);
}

.service-list p{
    line-height:2;
    margin-bottom:25px;
    color:var(--text);
}

.service-list ul{
    padding-left:20px;
}

.service-list li{
    margin-bottom:10px;
    line-height:1.8;
    color:var(--text-light);
}



/* =========================
   専門家連携
========================= */

.partner{
    /* margin-top:120px; */
    text-align:center;
    background-color:var(--bg);
}

.partner>p{
    max-width:800px;
    margin:0 auto 20px;
    line-height:2;
    color:var(--text);
}

.partner-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.partner-list article{
    padding:35px 25px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.partner-list article:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
}

.partner-list h3{
    font-size:20px;
    margin-bottom:15px;
    color:var(--main);
}

.partner-list p{
    font-size:14px;
    line-height:1.8;
    color:var(--text-light);
}



/* =========================
   タブレット
========================= */

@media(max-width:900px){

    .service-page{
        padding:80px 0;
    }

    .service-list{
        grid-template-columns:1fr;
    }

    .partner-list{
        grid-template-columns:repeat(2,1fr);
    }

    .service-intro h2{
        font-size:26px;
    }

}



/* =========================
   スマホ
========================= */

@media(max-width:600px){

    .service-intro{
        margin-bottom:60px;
    }

    .service-intro h2{
        font-size:22px;
    }

    .service-list article{
        padding:30px 25px;
    }

    .service-list h3{
        font-size:20px;
    }

    .partner{
        margin-top:80px;
    }

    .partner-list{
        grid-template-columns:1fr;
    }

}



/* =========================
   US PAGE
========================= */

.us-page{
    padding:120px 0;
    margin-top:50px;
    background:var(--white);
}


/* =========================
   INTRO
========================= */

.us-intro{
    max-width:850px;
    margin:0 auto 100px;
    text-align:center;
}


.us-lead h3{
    font-size:32px;
    line-height:1.7;
    margin-bottom:40px;
    font-weight:500;
    color:var(--main);
}


.us-lead p{
    line-height:2;
    margin-bottom:20px;
    color:var(--text);
}



/* =========================
   MESSAGE
========================= */

.us-message{

    padding:80px 60px;
    margin-bottom:100px;

    background:var(--bg);

    border-radius:var(--radius);

    text-align:center;

}


.us-message h2,
.us-role h2,
.profile h2{

    font-size:28px;
    margin-bottom:35px;
    font-weight:500;
    color:var(--main);

}


.us-message p{

    max-width:850px;

    margin:0 auto 20px;

    line-height:2;

    color:var(--text);

}



/* =========================
   ROLE
========================= */

.us-role{

    background:var(--white);

    margin:0 auto 120px;

    text-align:center;

}


.us-role p{

    line-height:2;

    margin-bottom:20px;

    color:var(--text);

}



/* =========================
   MEMBER
========================= */

.member{

    padding:100px 0;

    background:var(--bg);

}


.member .title{

    text-align:center;

    margin-bottom:60px;

}



.member-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}



.member-list article{

    background:var(--white);

    border:1px solid var(--line);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}


.member-list article:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-hover);

}



.member-image img{

    width:100%;

    height:280px;

    object-fit:cover;

}



.member-body{

    padding:35px;

}



.member-body h3{

    font-size:22px;

    margin-bottom:10px;

    color:var(--main);

}



.member-body .position{

    font-size:14px;

    color:var(--text-light);

    margin-bottom:20px;

}


.member-body p{

    line-height:1.9;

    color:var(--text);

}



/* =========================
   PROFILE
========================= */


.profile{

    background:var(--white);

    margin:120px auto 0;

    text-align:center;

}



.profile-box{

    padding:45px;

    background:var(--white);

    border:1px solid var(--line);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}



.profile-box h3{

    font-size:22px;

    margin-bottom:25px;

    color:var(--main);

}



.profile-box p{

    line-height:2;

    color:var(--text);

    margin-bottom:20px;

}



/* =========================
   TABLET
========================= */


@media(max-width:900px){


.us-page{

    padding:80px 0;

}


.us-message{

    padding:50px 30px;

}


.member-list{

    grid-template-columns:1fr;

}


.us-lead h3{

    font-size:26px;

}


}



/* =========================
   MOBILE
========================= */


@media(max-width:600px){


.us-message{

    padding:40px 20px;

}


.us-message h2,
.us-role h2,
.profile h2{

    font-size:22px;

}


.member{

    padding:70px 0;

}


.member-body{

    padding:25px;

}


.member-image img{

    height:220px;

}


.profile{

    margin-top:80px;

}


.profile-box{

    padding:30px 20px;

}


}