@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Yuji+Syuku&display=swap");
:root {
  --black: #000;
  --brown: #361810;
  --light-brown: #7b5400;
  --beige: #f2e8dc;
  --font-jp: "Shippori Mincho", serif;
  --font-jp02: "Yuji Syuku", serif;
  --hover-trans: 0.4;
  --sp-mgt: 70px;
  --pc-mgt: 130px;
  --sp-sec: 20px;
  --pc-sec: 30px;
  --cont-width: 1200px;
  --cont-width-lrg: 1440px;
  --hover: 0.7;

  --header: 120px;
	scroll-padding: var(--header);
}
@media screen and (min-width: 1024px){
  :root{
    --header: 150px;
  }
}
@media screen and (min-width: 1200px){
  :root{
    --header: 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(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--black);
  background-image: url(/system_panel/uploads/images/body-bg.png);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

#root {
  position: relative;
}
#root:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 80vw;
  height: min(70vh, 300px);
  content: "";
  background: no-repeat top left/cover;
  background-image: url(/system_panel/uploads/images/content-bg01.png);
  z-index: -1;
}

@media print, screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
  #root {
    position: relative;
  }
  #root:before {
    left: 0;
    width: min(80vw, 1440px);
    height: min(80vh, 430px);
  }
}
@media print, screen and (min-width: 1024px) {
  #root:before {
    height: min(80vh, 650px);
  }
}
@media print, screen and (min-width: 1200px) {
  #root:before {
    height: min(90vh, 800px);
  }
}
/* 表示切り替え
-----------------------------------------------------*/
.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;
}

.dn{
  display: none !important;
}
.gjs-dashed .dn{
    display: block !important;
}

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

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

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