@charset "UTF-8";


/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* ENDリセットCSS */


/* My CSS */

/*----------------
Default Styling
------------------*/
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #FAFAFA;
    color: #2a2a2a;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ───── HEADER ───── */
.site-header {
    padding: 50px 0 30px;
    text-align: center;
}

.site-title {
    font-family: "roboto-flex", sans-serif;
    font-weight: normal;
    font-variation-settings: "YTFI" 738, "YTDE" -203, "YTAS" 750, "YTLC" 514, "YTUC" 712, "XTRA" 468, "YOPQ" 79, "XOPQ" 96, "slnt" 0, "wdth" 100, "GRAD" 0, "wght" 400, "opsz" 14;
    font-size: 3rem;
    letter-spacing: 0.02em;
    color: #2a2a2a;
}


/* ───── PAGE INTRO ───── */
.page-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.intro-text {
    font-size: 1rem;
    line-height: 2;
    color: #4a4a4a;
}


/* ───── SERVICES ───── */
.services {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card {
    border: 1px solid #d8d8d8;
    border-radius: 16px;
    padding: 60px 70px;
    margin-bottom: 80px;
    background: #fff;

    /* Fade-in initial state */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.service-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.service-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.service-desc {
    font-size: 0.875rem;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.service-block {
    margin-bottom: 32px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.block-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.block-content {
    font-size: 0.875rem;
    line-height: 2;
    color: #4a4a4a;
}

.block-content ul {
    list-style: none;
}

.block-content li {
    padding-left: 1em;
    text-indent: -1em;
}

.block-content li::before {
    content: "・";
}

.note {
    font-size: 0.8125rem;
    color: #4a4a4a;
    margin-top: 20px;
}


/* ───── FOOTER ───── */
.site-footer {
    background: #F0ECEC;
    padding: 24px 20px;
    text-align: center;
    margin-top: 100px;
}

.site-footer p {
    font-family: "roboto-flex", sans-serif;
    font-size: 0.75rem;
    color: #4a4a4a;
    letter-spacing: 0.05em;
}


/* ───── RESPONSIVE (SP) ───── */
@media (max-width: 768px) {

    .site-header {
        padding: 32px 0 20px;
    }

    .site-title {
        font-size: 1.375rem;
    }

    .page-intro {
        padding: 0 24px 50px;
    }

    .page-title {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }

    .intro-text {
        font-size: 0.8125rem;
        line-height: 1.9;
    }

    .services {
        padding: 0 20px;
    }

    .service-card {
        padding: 36px 24px;
        margin-bottom: 50px;
        border-radius: 12px;
    }

    .service-name {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .service-desc {
        font-size: 0.8125rem;
        margin-bottom: 28px;
        line-height: 1.9;
    }

    .service-block {
        margin-bottom: 24px;
    }

    .block-label {
        font-size: 0.8125rem;
        margin-bottom: 8px;
    }

    .block-content {
        font-size: 0.8125rem;
        line-height: 1.9;
    }

    .note {
        font-size: 0.75rem;
    }

    .site-footer {
        margin-top: 60px;
        padding: 20px;
    }

    .site-footer p {
        font-size: 0.6875rem;
    }
}
