/* Reset */
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&display=swap');

@font-face {
  font-weight: 300;
  font-family: 'Ryumin Pro';
  src: url("../fonts/Ryumin-Pro.otf") ;
}

@font-face {
  font-weight: 300;
  font-family: 'Trajan Pro';
  src: url("../fonts/Trajan_Pro_3_Regular.otf") ;
}

@font-face {
  font-weight: 300;
  font-family: 'KozGoPro';
  src: url("../fonts/KozGoPro-Regular.otf") ;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

@media screen and (max-width: 768px){
    html {
        font-size: 50%;
    }
}

body {
    color: #000;
    line-height: 1.6;
    word-spacing: 0;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    font-family: "Shippori Mincho", serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    position: relative;
    overflow-x: hidden;
}

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

ol,
ul {
    list-style: none;
}

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

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

a.links:hover {
    text-decoration: underline;
    color: #425c49;
}

a:focus {
    outline: 0;
}

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

.container {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0 auto;
}

.disable-event {
    pointer-events: none;
    opacity: 0.5;
}

.flexBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

    .sp {
        display: none !important;
    }
}

@media screen and (max-width: 768px){
    .pc {
        display: none !important;
    }
}

@media print {
    body {
        color-adjust: exact;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}