@charset "utf-8";


:root {
    --fg-color: #333;
    --bg-color: #f8f8f8;
    --font-alphabet: 'Impact', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-mincho: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
}


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

img {
    display: block;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.3s ease-out;
}

@media ( hover: hover ) {
    a:hover {
        opacity: 0.5;
    }
}

@media ( width < 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( width >= 768px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


html {
    margin: 0;
    padding: 0;
    width: 100%;
    background: var(--bg-color);
    font-size: clamp( 14px, 3.0vw, 18px );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    /* max-width: 750px; */
    color: var(--fg-color);
    background: #fff;
    font-family: var(--font-gothic);
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
}

@keyframes anim-fadein {
    0%   { opacity: 0.0; }
    100% { opacity: 1.0; }
}

main {
    margin: 0 auto;
    background: #fff;
}

section {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.pic {
    margin: 0;
    width: 100%;
}
.pic img {
    width: 100%;
    height: auto;
}

.cta-btn {
    position: absolute;
    top: 50.0%;
    left: 1.5%;
    width: 97.0%;
    display: block;
    translate: 0 -50%;
}
.cta-btn img {
    width: 100%;
    height: auto;
}
.yureru-j {
    animation: yureru-j 2s infinite;
}
@keyframes yureru-j {
    0% {
        transform: translate(0px, 2px);
    }
    5% {
        transform: translate(0px, -2px);
    }
    10% {
        transform: translate(0px, 2px);
    }
    15% {
        transform: translate(0px, -2px);
    }
    20% {
        transform: translate(0px, 2px);
    }
    25% {
        transform: translate(0px, -2px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}

.fixed-btn {
    display: block;
    position: sticky;
    bottom: 0;
    left: calc( 50% - 0.5 * min( 97.0%, 728px ) );
    width: 97.0%;
    max-width: 728px;
    z-index: 10;
}
@media (min-width: 1024px) {
  .fixed-btn {
    display: none;
  }
}


h1 {
    margin: 0 0 2.0em;
    font-size: 200%;
}
h2 {
    margin: 1.5em 0 0.5em;
    font-size: 150%;
}
p {
    margin: 1.0em 0 0;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.indent1 {
    margin: 0.5em 0 0 2.5em;
    text-indent: -1.5em;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.indent2 {
    margin: 0.5em 0 0 3.5em;
    text-indent: -1.5em;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.indent3 {
    margin: 0.5em 0 0 3.5em;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.tokusho-table {
    margin: 80px auto 0;
    width: 100%;
    display: grid;
    grid-template-columns: minmax( 200px, 300px ) 1fr;
}
.tokusho-table :where(dt,dd){
    display: block;
    margin: 0;
    padding: 1.0em 0 1.0em;
    width: 100%;
    border-bottom: 1px solid #ccc;
}
.tokusho-table dt.margin {
    margin-top: 3.0em;
}
.tokusho-table dt.margin + dd {
    margin-top: 3.0em;
}
@media ( max-width: 750px ) {
    .tokusho-table {
        margin: 80px auto 0;
        width: 100%;
        display: block;
    }
    .tokusho-table dt {
        display: block;
        margin: 0;
        padding: 2.0em 0 0;
        width: 100%;
        border-bottom: 0;
    }
    .tokusho-table dd {
        padding: 0.5em 0;
        border-bottom: 1px solid #ccc;
    }
    .tokusho-table dt.margin + dd {
        margin-top: 0;
    }
}

footer {
    margin: 0 auto;
    padding: min(0vw, 40px) 0 min(1vw, 75px);
    text-align: center;
    background: #f2fefe;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 1.0rem;
}
@media screen and (max-width: 750px) { 
    footer {
        margin: 0 auto;
        padding: min( 5vw, 40px ) 0 min( 10vw, 75px );
        text-align: center;
        background: #f2fefe;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0 1.0rem;
    }
}

footer .pic img {
    margin: 0 auto;
    width: 20%;
}
@media screen and (max-width: 750px) { 
    footer .pic img {
        margin: 0 auto;
        width: 40%;
    }
}

.sec-common{
    padding: 100px 0;
}

.cta-right{
    display: inline-block;
    width: 30vw;
}
.cta-flex{
    width: 25vw;
    display: inline-block;
}
.sec-common-flex{
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
}
