@charset "UTF-8";

/* 以下、ハンバーガーメニュー */
#hbgbtn {
  position: fixed;
  z-index: 9999999;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background-color: #b18559;
  cursor: pointer;
}
#hbgbtn .btninner {
  position: relative;
}
#hbgbtn .btninner span {
  height: 1px;
  width: 40px;
  background-color: #FFF;
  position: absolute;
  transition: 0.5s;
}
#hbgbtn .btninner span:nth-child(1) {
  top: 12px;
  left: 15px;
}
#hbgbtn .btninner span:nth-child(2) {
  top: 24px;
  left: 15px;
}
#hbgbtn .btninner span:nth-child(3) {
  top: 36px;
  left: 15px;
}
#hbgbtn .btninner span.openbtn:nth-child(1) {
  top: 24px;
  transform: rotate(315deg);
  transition: 0.5s;
}
#hbgbtn .btninner span.openbtn:nth-child(2) {
  top: 24px;
  width: 0px;
  left: 50%;
  transition: 0.5s;
}
#hbgbtn .btninner span.openbtn:nth-child(3) {
  top: 24px;
  transform: rotate(45deg);
  transition: 0.5s;
}
#hbgbtn .btninner p {
  color: #fff;
  font-family: "Yu Mincho", "YuMincho";
  font-weight: lighter;
  font-size: 14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 42px;
}

/* 以下、ハンバーガーメニューを押したときに出るウィンドウ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 0 40px;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.overlay ul {
  list-style-type: none;
  width: 80%;
  margin: 0 auto;
  margin-top: 60px;
}
.overlay ul li {
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.2s, transform 0.2s;
}
.overlay ul li a {
  text-decoration: none;
  color: #000;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 10px;
  display: flex;
  justify-content: space-around;
}
.overlay ul li:nth-child(5) {
  position: relative;
}
.overlay ul li:nth-child(5)::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  pointer-events: none;
}
.overlay ul li:nth-child(1) {
  position: relative;
}
.overlay ul li:nth-child(1)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(1):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay ul li:nth-child(3) {
  position: relative;
}
.overlay ul li:nth-child(3)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(3):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay ul li:nth-child(4) {
  position: relative;
}
.overlay ul li:nth-child(4)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(4):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay ul li:nth-child(2) {
  position: relative;
}
.overlay ul li:nth-child(2)::after {
  content: "";
  height: 1px;
  width: 0px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.overlay ul li:nth-child(2):hover::after {
  width: 100%;
  transition: 0.5s;
  pointer-events: none;
}
.overlay .overlay_btn1 {
  margin-top: 40px;
}
.overlay .overlay_btn1 a {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-decoration: none;
  color: #000;
  border: #000 solid 1px;
  padding: 10px 38px;
}
.overlay .overlay_btn1 a:hover {
  color: #FFF;
  background-color: #000;
}
.overlay .overlay_btn2 {
  margin-top: 40px;
}
.overlay .overlay_btn2 a {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-decoration: none;
  color: #000;
  border: #000 solid 1px;
  padding: 10px 30px;
}
.overlay .overlay_btn2 a:hover {
  color: #FFF;
  background-color: #000;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.overlay.show li {
  opacity: 1;
  transform: none;
}
.overlay.show li:nth-child(1) {
  transition-delay: 50ms;
}
.overlay.show li:nth-child(2) {
  transition-delay: 100ms;
}
.overlay.show li:nth-child(3) {
  transition-delay: 150ms;
}
.overlay.show li:nth-child(4) {
  transition-delay: 200ms;
}
.overlay.show li:nth-child(5) {
  transition-delay: 250ms;
}

.top_img {
  height: 250px;
  width: 100%;
  background-image: url(img/titleback.jpg);
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.top_img h2 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_img .efx {
  background-color: rgba(0, 0, 0, 0.5);
  height: 250px;
  width: 100%;
}

.subpagetitle img{
  max-width: 100%;
  height: auto;
}

.explanation_back{
  display: flex;
}

.explanation_back .white{
  height: 600px;
  width: 70%;
  background-color: #F7F7F5;
}

.explanation_back .winered{
  height: 600px;
  width: 30%;
  background-color: rgba(88,11,24,0.8);
  position:relative;
}

.explanation_back .white p{
  position: absolute;
  left:10%;
  top:70px;
}

.explanation_back .white img{
  width:clamp(3.08rem, 2.344rem + 3.68vw, 4.107rem);
}

.explanation{
  position: relative;
}

.explanation .expic{
  display: block;
  position: absolute;
  top: 60px;
  right: 0;
  width: clamp(12.5rem, -2.713rem + 76.06vw, 33.75rem);
}

.explanation p img{
  max-width: 100%;
  height: auto;
}

.explanation .extextbox{
  width:50%;
  position:absolute;
  bottom: 40px;
  left:10%;
}

.explanation .extextbox p{
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.acbtn1{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn1 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner1{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents1 {
  display:none
}

.accontents1 h4{
  padding-top:10px;
  padding-bottom: 9px;
  border-bottom:1px solid #321e0a;
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents1 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents1 p:last-child{
  padding-bottom:10px;
}

.acbtn2{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn2 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner2{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents2 {
  display:none
}

.accontents2 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents2 p:first-child{
  padding-top:30px;
}

.acbtn3{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn3 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner3{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents3 {
  display:none
}

.accontents3 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents3 p:first-child{
  padding-top:30px;
}
.accontents3 p:last-child{
  padding-bottom:10px;
}

.acbtn4{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn4 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner4{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents4 {
  display:none
}

.accontents4 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents4 p:first-child{
  padding-top:30px;
}
.accontents4 p:last-child{
  padding-bottom:10px;
}

.acbtn5{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn5 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner5{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents5 {
  display:none
}

.accontents5 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents5 p:first-child{
  padding-top:30px;
}
.accontents5 p:last-child{
  padding-bottom:10px;
}

.acbtn6{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn6 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner6{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents6 {
  display:none
}

.accontents6 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents6 p:first-child{
  padding-top:30px;
}
.accontents6 p:last-child{
  padding-bottom:10px;
}

.acbtn7{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn7 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner7{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents7 {
  display:none
}

.accontents7 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents7 p:first-child{
  padding-top:30px;
}
.accontents7 p:last-child{
  padding-bottom:10px;
}

.acbtn8{
  width:90%;
  height: 70px;
  margin:0 auto;
  background-color: #b5a37d;
  display: flex;
  align-items: center;
  margin-top: 70px;
  cursor: pointer;
}

.acbtn8 p{
  font-size: 24px;
  font-family: "Yu Mincho", "YuMincho";
  color: #fff;
}

.btninner8{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.accontents8 {
  display:none
}
.accontents8 p{
  width: 90%;
  margin:0 auto;
  color:#321e0a;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.accontents8 p:first-child{
  padding-top:30px;
}
.accontents8 p:last-child{
  padding-bottom:50px;
}

/* 以下ページ下部の固定配置BOX */
.fixedbox {
  z-index: 3;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}
.fixedbox.appear {
  opacity: 1;
  pointer-events: auto;
}
.fixedbox p {
  width: 49.9%;
}
.fixedbox a {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  background-color: #321e0a;
  text-decoration: none;
}
.fixedbox a span {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  color: #FFF;
}
.fixedbox a img {
  width: 22px;
  height: 22px;
  padding-right: 3px;
}
.fixedbox #border {
  width: 0.2%;
  height: 70px;
  background-color: #FFF;
}

.fixedbox2 {
  z-index: 3;
  position: fixed;
  bottom: 80px;
  right: 10px;
  opacity: 0.4;
  display: none;
}
.fixedbox2.appear {
  display: block;
}
.fixedbox2:hover {
  opacity: 1;
}


/* 以下フッター */
footer {
  margin-top: 70px;
  background-color: #193d04;
  color: #FFF;
}
footer .company {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}
footer .company p {
  font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
  text-align: center;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
footer .copyright {
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 80px;
}
footer .copyright p {
  font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
  text-align: center;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}/*# sourceMappingURL=style.css.map */


@media screen and (max-width:767px) {
  .overlay ul {
    width: 100%;
  }

  .acbtn1 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }

  .acbtn2 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }

  .acbtn3 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }

  .acbtn4 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }

  .acbtn5 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }

  .acbtn6 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }

  .acbtn7 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }

  .acbtn8 p{
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
    font-family: "Yu Mincho", "YuMincho";
    color: #fff;
  }
}

@media screen and (max-width:767px){
  .fixedbox2:active {
    opacity: 1;
  }
  .fixedbox2:hover{
    opacity: 0.4;
  }
}