@charset "UTF-8";
/*!*** Base Rules *****/
/*!
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*!*** Base Rules(Custom) *****/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  body {
    background-color: #f1f1f1;
  }
}

li {
  list-style-type: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

#page-top {
  display: block;
  z-index: 10;
  line-height: 1;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #191919;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #page-top {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #page-top {
    right: 20px;
    bottom: 20px;
  }
}

#page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page-top a::before {
  font: var(--fa-font-solid);
  font-weight: 900;
  content: "\f077";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#menu-button {
  width: 32px;
  height: 44px;
  position: relative;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
}
#menu-button .top {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .bottom {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .text {
  position: absolute;
  bottom: 0;
  width: 32px;
  left: 50%;
  margin-left: -16px;
}
#menu-button.open .top {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#menu-button.open .bottom {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.scroll-up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll-up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.delay2s {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay3s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay4s {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay5s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/*!*** Module Rules *****/
.image-map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .image-map {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
}
.image-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Google Mapを囲う要素 */
.map-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
@media screen and (min-width: 768px) {
  .map-embed {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 50%; /* 比率を4:3に固定 */
  }
}

/* Google Map-embedのiframe */
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrap {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}

video {
  width: 100%;
}

footer {
  width: 100%;
}
@media screen and (min-width: 768px) {
  footer {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  background-color: #b1b1b1;
  padding: 1em;
}

/*!*** Helper Rules *****/
.fz10 {
  font-size: 10px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz23 {
  font-size: 23px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz27 {
  font-size: 27px;
}

.fz28 {
  font-size: 28px;
}

.fz30 {
  font-size: 30px;
}

.fz32 {
  font-size: 32px;
}

.fz33 {
  font-size: 33px;
}

.fz34 {
  font-size: 34px;
}

.fz35 {
  font-size: 35px;
}

.fz42 {
  font-size: 42px;
}

.fz49 {
  font-size: 49px;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.lh1 {
  line-height: 1;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh15 {
  line-height: 1.5;
}

.lh2 {
  line-height: 2;
}

.lh47 {
  line-height: 47px;
}

.lh60 {
  line-height: 60px;
}

.va20 {
  letter-spacing: 0.02em;
}

.ltsp100 {
  letter-spacing: 0.1em;
}

.tdu {
  text-decoration: underline;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pt1em {
  padding-top: 1em;
}

.pb1em {
  padding-bottom: 1em;
}

.pr2p {
  padding-right: 2%;
}
@media (min-width: 768px) {
  .pr2p {
    padding-right: 0;
  }
}

.plr2p {
  padding-right: 2%;
  padding-left: 2%;
}

.plr5p {
  padding-right: 5%;
  padding-left: 5%;
}

.plr1em {
  padding-right: 1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml1em {
  margin-left: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.mt1em {
  margin-top: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mt2em {
  margin-top: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.br-sp, .sp {
  display: inherit;
}

.br-tb {
  display: inherit;
}

.br-pc, .pc {
  display: none;
}

.text-sp {
  display: inline;
}

.text-pc {
  display: none;
}

@media (min-width: 600px) {
  .br-sp, .sp {
    display: none;
  }
  .br-tb {
    display: inherit;
  }
  .br-pc, .pc {
    display: inline-block;
  }
  .text-sp {
    display: none;
  }
  .text-pc {
    display: inline;
  }
  .pc-fz14 {
    font-size: 14px;
  }
  .pc-fz18 {
    font-size: 18px;
  }
  .pc-fz26 {
    font-size: 26px;
  }
  .pc-fz27 {
    font-size: 27px;
  }
  .pc-fz30 {
    font-size: 30px;
  }
  .pc-fz36 {
    font-size: 36px;
  }
  .pc-fz38 {
    font-size: 38px;
  }
  .pc-fz40 {
    font-size: 40px;
  }
  .pc-fz49 {
    font-size: 49px;
  }
  .plr2p {
    padding-left: inherit;
    padding-right: inherit;
  }
  .pc-tac {
    text-align: center;
  }
  .pc-lh12 {
    line-height: 1.2;
  }
  .pc-w780 {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w730 {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w265 {
    max-width: 265px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-w410 {
    max-width: 410px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-mb0 {
    margin-bottom: 0;
  }
  .pc-mt0 {
    margin-top: 0;
  }
  .pc-mb2em {
    margin-bottom: 2em;
  }
  .pc-mb3em {
    margin-bottom: 3em;
  }
}
@media (min-width: 1000px) {
  .br-tb {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */