@charset "UTF-8";
/* CSS Document */

:root {
    --orange: #f39800;
    --orange-dark: #d98200;
    --peach: #f7ad72;
    --coral: #ef8275;
    --cream: #fff2c9;
    --cream-light: #fffaf0;
    --blue: #aed0ee;
    --blue-light: #dcebf7;
    --green: #65be7b;
    --text: #263638;
    --muted: #6e7575;
    --line: #e0b25b;
    --white: #ffffff;
    --shadow: 2px 4px 8px rgba(80, 58, 16, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text);
    background: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: anywhere;
}

body.menu-open {
    overflow: hidden;
}

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

svg {
    display: block;
    width: 1em;
    height: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
label,
input,
select,
textarea,
button,
a {
    font-family: "Zen Maru Gothic", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.08em;
}

ul,
ol {
    list-style: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

iframe {
    width: 100%;
    border: 0;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.narrow-content {
    width: min(900px, calc(100% - 48px));
}

.site-main {
    width: 100%;
    overflow: hidden;
}

.section-title {
    position: relative;
    margin: 0 0 56px;
    font-size: clamp(26px, 2.3vw, 38px);
    line-height: 1.45;
    text-align: center;
}

.section-title--small {
    font-size: clamp(20px, 1.8vw, 28px);
}

.section-title--white {
    color: #fff;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    min-height: 54px;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.button svg {
    width: 18px;
    height: 18px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.button--orange {
    color: #fff;
    background: var(--orange);
}

.button--coral {
    color: #fff;
    background: var(--coral);
}

.button--white {
    min-height: 44px;
    color: var(--orange-dark);
    background: #fff;
}

.button--outline {
    min-width: 150px;
    color: var(--orange-dark);
    border: 2px solid var(--orange);
    background: #fff;
}

.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: #fff;
    border-radius: 50%;
    background: var(--orange);
}

.circle-arrow svg {
    width: 17px;
    height: 17px;
}

.page-hero {
    display: flex;
    align-items: center;
    min-height: 300px;
    background: var(--cream);
}

.page-hero h1 {
    font-size: clamp(30px, 3vw, 46px);
    text-align: center;
}

.section-orange {
    background: var(--peach);
}

.page-free-content {
    padding: 60px 0;
}

.page-free-content > .inner > * + * {
    margin-top: 1.2em;
}

.generic-main {
    padding: 90px 0;
}

.generic-entry {
    padding: 26px 0;
    border-bottom: 1px solid #ddd;
}

.generic-entry h2 {
    margin-bottom: 12px;
}

/*PC*/
@media only screen and (min-width: 1025px) {
    .pc { 
        display: block;
    }
    
    .smp { 
        display: none !important; 
    }
    
    h1 {
        font-size: 48px;
        line-height: 1.4;
    }

    h2 {
        font-size: 36px;
        line-height: 1.45;
    }

    h3 {
        font-size: 30px;
        line-height: 1.5;
    }

    h4 {
        font-size: 22px;
        line-height: 1.55;
    }

    p {
        font-size: 16px;
        font-family: "Zen Maru Gothic", sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
        line-height: 1.9;
        text-align: left;
    }
    
    /*電話番号をクリックしても自動発信しない*/
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/*SMP*/
@media only screen and (max-width: 1024px) {
    .pc { 
        display: none !important; 
    }
    
    .smp { 
        display: block;
    }
    
    p {
        font-size: 15px;
        font-family: "Zen Maru Gothic", sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
        line-height: 1.8;
        text-align: left;
    }

    .inner,
    .narrow-content {
        width: min(100% - 36px, 680px);
    }

    .section-title {
        margin-bottom: 36px;
        font-size: 26px;
    }

    .button {
        min-width: 190px;
        min-height: 48px;
        padding: 10px 22px;
        font-size: 15px;
    }

    .page-hero {
        min-height: 180px;
    }

    .page-hero h1 {
        font-size: 29px;
    }
}
