@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Yuji+Syuku&display=swap');* {
  box-sizing: border-box;
}
html {
  background-color: #34251F;
}
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  background-color: #EBE9EA;
  color: #34251F;
  font-size: 16px;
}
.container {
  margin: 0 auto;
  padding: 0;
}
.container:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
img {
  max-width: 100%;
}
@media (max-width: 599px) {
  body {}
  .hidden_sp {
    display: none;
  }
  .container {
    padding: 0px;
    box-sizing: border-box;
  }
}
@media (min-width: 600px) {
  body {
    font-size: 18px;
  }
  .hidden_tb {
    display: none;
  }
}
#header {
  background-color: #D5BDAE;
  display: flex;
  flex-direction: column;
  justify-content: center;
	align-items: center;
}
#header h1 {
  text-align: left;
  font-family: "Yuji Syuku", serif;
}
@media (max-width: 599px) {
#header {
  height: 50px;
}
}
@media (min-width: 1025px) {
#header {
  height: 100px;
}
#header h1 {
}
  .container {
    width: 1200px;
  }
  .hidden_tb {
    display: inherit;
  }
  .hidden_pc {
    display: none;
  }
}
#spBtn,
#spBtn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#spBtn {
  position: fixed;
  top: 0;
  right: 0px;
  width: 50px;
  height: 50px;
  background: #34251F;
  border: none;
  appearance: none;
  cursor: pointer;
  z-index: 999;
}
#spBtn span {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
}
#spBtn span:nth-of-type(1) {
  top: 11px;
}
#spBtn span:nth-of-type(2) {
  top: 24px;
}
#spBtn span:nth-of-type(3) {
  bottom: 10px;
}
#spBtn.active span:nth-of-type(1) {
  top: 7px;
  transform: translateY(16px) rotate(-45deg);
}
#spBtn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu05-bar02 .8s forwards;
}
@keyframes active-menu05-bar02 {
  100% {
    height: 0;
  }
}
#spBtn.active span:nth-of-type(3) {
  bottom: 7px;
  transform: translateY(-16px) rotate(45deg);
}
@media (max-width: 599px) {
  .open {
    right: -100%;
  }
  .open.on {
    right: 0px;
  }
.gNavi_wrap {
    margin: 0;
    padding: 0;
    top: 0;
    z-index: 998;
    height: 100%;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    overflow-y: scroll;
    position: fixed;
  }
  .gNavi_wrap .gNavi {
    width: 100vw; /*スライドで出てくる幅*/
    height: 100vh;
    box-sizing: border-box;
    color: #FFF;
    padding: 0px 0 15px;
    background-color: rgba(213,189,174,0.9);
    padding-top: 50px;
  }
  .gNavi_wrap .gNavi ul {
	  margin: 15px;
	  background-color: #FFF;
	  border-radius: 8px;
	  overflow: hidden;
  }
  .gNavi_wrap .gNavi ul li {
	  border-bottom: 1px solid #CCC;
  }
  .gNavi_wrap .gNavi ul li:last-child {
	  border-bottom: none;
  }
  .gNavi_wrap .gNavi ul li a {
	  display: block;
	  padding: 8px 0;
  }
}

@media (min-width: 600px) {
#spBtn {
	display: none;
}
.gNavi {
  background-color: #F2F2F2;
  margin-bottom: 15px;
  font-weight: 700;
}
.gNavi ul {
  display: flex;
  justify-content: space-around;
}
.gNavi ul li {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
}
.gNavi ul li + li {
  border-left: 1px solid #CCC;
}
.gNavi ul li a {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 15px 0;
}
.gNavi ul li a:hover {
  background-color: rgba(213,189,174,0.5);
}
}
@media (min-width: 1025px) {
}
#footer {
  background-color: #34251F;
  color: #FFF;
}

/* modal window */

/* 閉じるボタン */
.button-close {
  width: 200px;
  padding: 1em;
  background-color: #c96931;
  color: #eaeaea;
  border-radius: 20rem;
  cursor: pointer;
}
.modal-window {
　display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 50vh;
  background-color: #dfdddd;
  border-radius: 5px;
  z-index: 11;
}
.modal-window > div {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.8);
  width: 100vw;
  height: 100vh;
  z-index: 10;
}
@media (min-width: 1025px) {
.modal-window {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
}
}
.flex {
	display: flex;
}
.flex.imgc {
	flex-direction: column;
}
.flex.imgc.reverse {
	flex-direction: column-reverse;
}
.flex.flexImg {
	flex-direction: row
}
.flex.flexImg.reverse {
	flex-direction: row-reverse;
}
@media (max-width: 599px) {
}
@media (min-width: 600px) {
}
@media (min-width: 1025px) {
}

