@charset "UTF-8";
/* Base
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: .1em;
  color: #FFFFFF;
  background-color: #000;
}
body a {
  color: #FFFFFF;
}
h1 {
  font-family: 'Noto Serif JP';
}
.container {
  max-width: 108rem;
  padding: 0 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}
/* フローティングバナー */
.floating-banner {
  position: fixed; /* バナーを追従させる */
  z-index: 1; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */
  right: 0px; /* バナーの左右の位置 */
  width: 300px; /* バナーの横幅 */
}
@media screen and (max-width: 600px) {
  .floating-banner {
    width: 100%;
  }
}
.reserve-box {
  margin: 10px;
}
@media screen and (max-width: 600px) {
  .reserve-box {
    margin: 0;
    display: flex;
    flex-direction: row;
  }
}
.reserve {
  max-width: 25rem;
  text-align: right;
  margin: 0 auto;
  padding: 0 0 10px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .reserve {
    padding: 0;
    text-align: center;
    width: calc(50%);
    max-width: 40rem;
  }
}
.reserve_o {
  background-color: #c81e00;
  display: inline-block;
  text-align: right;
  font-size: 18px;
  padding: 10px 27px;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .reserve_o {
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 600px) {
  .br-sp {
    display: none;
  }
}

.reserve_o a {
  text-decoration: none;
}

.reserve_l a {
  text-decoration: none;
}

.reserve_l {
  flex-wrap: wrap;
  background-color: #14a000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 10px 0px 10px 0px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .reserve_l {
	  padding: 10px 28px 10px 0px;
  }
}

@media screen and (max-width: 768px) {
  .reserve_l span {
	  margin: 0 -0.5rem 0 0;
  }
}

@media screen and (max-width: 600px) {
  .reserve_l .reserve2 {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .reserve_l {
    font-size: 16px;
	 padding: 10px 0;
  }
}
.reserve_l img {
  width: 10%;
  margin: 0 10px -3px 0px;
}
@media screen and (max-width: 600px) {
  .reserve_l img {
    margin: 0 7px 0px 0px;
  }
}




/* マウスオーバー*/
.reserve_o:hover {
  background-color: #a01e00;
  color: #fff;
  cursor: pointer;
}
.reserve_l:hover {
  background-color: #148200;
  color: #fff;
  cursor: pointer;
}
/*ここまで*/


@media screen and (max-width: 768px) {
  .pc-dis {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp-dis {
    display: none;
  }
}




/* ポップアップ */
.popup-box {
  margin: 0 3rem;
}


.open {
  cursor: pointer;
  color: #fff;
}
#popup {
  display: none;
}
.gray {
  display: none;
}
#popup:checked + .gray {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}
.window {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90rem;
  padding: 7rem 7rem;
  max-width: 700px;
  height: auto;
  background-color: #fff;
  border-radius: 2rem;
  align-items: center;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 950px) {
  .window {
	  padding: 3rem;
	  width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .window {
	  padding: 3rem;
	  width: 70%;
  }
}

.title {
  color: #000;
  font-size: 2rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
  .title {
	  font-size: 1.7rem;
  }
}

.close {
  position: absolute;
  color: #000;
  padding: 5px 13px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  .close {
  padding: 5px 13px;
  top: 20px;
  right: 20px;
  }
}

.popup-text {
  color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .popup-text {
	  font-size: 1.6rem;
  }
}

.popup-line {
  text-align: center;
}

.popup-line img {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .popup-line img {
	  width: 180px;
  }
}


/*ここまで*/




/* クッション */
.cushion {
  width: 100%;
  height: 12rem;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .cushion {
    height: 8rem;
  }
}
/* タイトル */
.section-heading {
  padding-bottom: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .section-heading {
    padding-bottom: 0;
  }
}
.section-heading img {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .section-heading img {
    width: 20%;
    height: 20%;
    margin: 0 0 2rem 0;
  }
}
@media screen and (max-width: 550px) {
  .section-heading img {
    width: 25%;
    height: 25%;
    margin: 10px 0 15px 30px;
  }
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  margin: 0;
  font-size: 3.6rem;
  line-height: 1;
  text-align: left;
}
.title a {
  font-family: 'Noto Serif JP', serif;
  font-weight: lighter;
  text-decoration: none;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .title a {
    font-size: 22px;
  }
}