@charset "utf-8";

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Reset */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: #111111;
    color: #ffffff;
    word-spacing: 0;    
    overflow-x: hidden;
    font-family: "Playfair Display", sans-serif;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.02em;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    line-height: 1.4;
}

ol,
ul {
    list-style: none;
}

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

dt,
th {
    text-align: left;
    font-weight: normal;
}

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

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

input {
    color: #222;
    word-spacing: 0;
    font-size: 1.8rem;
    line-height: 1.6;
    font-family: "Playfair Display", sans-serif;
    font-weight: 400;
}

figure {
    padding: 0;
    margin: 0;
}

@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }

    .only-sp {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .only-pc {
        display: none;
    }

    input {
        font-size: 1.6rem;
    }
}

@media print {
    @page {
        size: portrait;
    }

    body {
        color-adjust: exact;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        min-width: 1080px !important;
    }

    header,
    footer,
    #pageTop {
        display: none !important;
    }

    .only-pc {
        display: block !important;
    }

    .only-sp {
        display: none !important;
    }
}