@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;500&display=swap");
:root {
  --black: #303030;
  --red: #843736;
  --brown: #CDC7B4;
  --gold: #7B692A;
  --sp-sec: 20px;
  --hover: 0.7;
  --shippori: "Shippori Mincho B1", serif;
  --zen: "Zen Old Mincho", serif;
  --sp-mgt: 70px;
  --pc-mgt: 180px;
}

/*-----------------------------------------------------
	reset
-----------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

a img {
  border: none;
}

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

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  font-family: var(--shippori);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--black);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

@media print, screen and (min-width: 768px) {
  body {
    font-size: 2rem;
  }
}
/* form
-----------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* 表示切り替え
-----------------------------------------------------*/
.is-pc {
  display: none;
}

.is-sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
a {
  min-height: initial !important;
  min-width: initial !important;
}
a:hover,
a:active {
    text-decoration: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: 0.3s ease-in-out;
    color: inherit;
}

/* テキスト
-----------------------------------------------------*/
.item-center {
  text-align: center;
}

.item-right {
  text-align: right;
}

.item-left {
  text-align: left;
}
