@charset "UTF-8";

/* Button */

.BtnBlack {
  display: block;
  text-align: center;
  position: relative;
  background-color: #1F1F1F;
  color: #fff !important;
  font-size: 18px;
  line-height: 1.8;
  text-decoration: none !important;
  padding: 12px 50px;
  font-weight: bold;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}
.BtnBlack::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 5px;
  position: absolute;
  background-image: url("/sr_contents/asset/img/common/arrow_white_right.svg");
  background-repeat: no-repeat;
  background-position: center right;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.BtnBlack:hover::after {
  right: -10px;
  background-image: url("/sr_contents/asset/img/common/arrow_black_half_right.svg");
}

@media screen and (max-width: 640px) {
	.BtnBlack {
	  font-size: 4.0vw;
	  padding: 3vw 4vw;
	}
	.BtnBlack::after {
	  content: "";
	  display: inline-block;
	  width: 7vw;
	  height: 4vw;
	  top: 50%;
	  right: 3vw;
	  transform: translateY(-50%);
	  transition: all 0.4s ease;
	}
	.BtnBlack:hover::after {
	  right: -3vw;
	}
}

.BtnGray {
  display: block;
  text-align: center;
  position: relative;
  background-color: #707070;
  color: #fff !important;
  font-size: 18px;
  line-height: 1.8;
  text-decoration: none !important;
  padding: 12px 50px;
  font-weight: bold;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}
.BtnGray::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 5px;
  position: absolute;
  background-image: url("/sr_contents/asset/img/common/arrow_white_right.svg");
  background-repeat: no-repeat;
  background-position: center right;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.BtnGray:hover::after {
  right: -10px;
  background-image: url("/sr_contents/asset/img/common/arrow_gray_half_right.svg");
}

@media screen and (max-width: 640px) {
	.BtnGray {
	  font-size: 4.0vw;
	  padding: 3vw 4vw;
	}
	.BtnGray::after {
	  content: "";
	  display: inline-block;
	  width: 7vw;
	  height: 4vw;
	  top: 50%;
	  right: 3vw;
	  transform: translateY(-50%);
	  transition: all 0.4s ease;
	}
	.BtnGray:hover::after {
	  right: -3vw;
	}
}

.BtnWhite {
  display: block;
  text-align: center;
  position: relative;
  background-color: #fff;
  color: #1F1F1F !important;
  border: 1px solid #1F1F1F;
  font-size: 18px;
  line-height: 1.8;
  text-decoration: none !important;
  padding: 12px 50px;
  font-weight: bold;
}
.BtnWhite::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 5px;
  position: absolute;
  background-image: url("/sr_contents/asset/img/common/arrow_black_right.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.BtnWhite:hover::after {
  right: -10px;
}

@media screen and (max-width: 640px) {
	.BtnWhite {
	  font-size: 3.8vw;
	  padding: 4vw 4vw;
	}
	.BtnWhite::after {
	  content: "";
	  display: inline-block;
	  width: 5vw;
	  height: 3vw;
	  top: 50%;
	  right: 2vw;
	  transform: translateY(-50%);
	  transition: all 0.4s ease;
	}
	.BtnWhite:hover::after {
	  right: -3vw;
	}
}


.BtnNew {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #0470C1;
	color: #fff !important;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none !important;
	padding: 15px;
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.BtnNew::after {
	content: "";
	display: inline-block;
	width: 26px;
	height: 5px;
	position: absolute;
	background-image: url("/sr_contents/asset/img/common/arrow_white_right.svg");
	background-repeat: no-repeat;
	background-position: center right;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	transition: all 0.4s ease;
}
.BtnNew:hover::after {
  right: -10px;
  background-image: url("/sr_contents/asset/img/common/arrow_blue_half_right.svg");
}
.BtnNew span {
	width: 47px;
	height: 47px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
	font-size: 13px;
	color: #0470C1;
}
@media screen and (max-width: 640px) {
	.BtnNew {
		font-size: 4.0vw;
		line-height: 1.4;
		padding: 3vw;
	}
	.BtnNew::after {
		content: "";
		width: 5vw;
		height: 3vw;
		top: 50%;
		right: 3vw;
		transform: translateY(-50%);
		transition: all 0.4s ease;
	}
	.BtnNew:hover::after {
		right: -3vw;
		background-image: url("/sr_contents/asset/img/common/arrow_blue_half_right.svg");
	}
	.BtnNew span {
		width: 10vw;
		height: 10vw;
		margin-right: 4vw;
		font-size: 2.8vw;
	}
}



.Btn_circle {
	padding-right: 40px;
	display: inline-block;
	position: relative;
	font-size: 20px;
	line-height: 1;
	color: #1F1F1F !important;
}
.Btn_circle::after {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(/sr_contents/asset/img/common/arrow_orange_circle.svg) no-repeat;
	background-position: center center;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 15px);
	right: 0;
	transition: all 0.4s ease;
}
.Btn_circle:hover::after {
	right: -50px;
}
@media screen and (max-width: 640px) {
	.Btn_circle {
		padding-right: 8vw;
		font-size: 3.8vw;
		text-align: center;
		line-height: 1.4;
	}
	.Btn_circle::after {
		content: "";
		display: inline-block;
		width: 6vw;
		height: 6vw;
		background: url(/sr_contents/asset/img/common/arrow_orange_circle.svg) no-repeat;
		background-position: center center;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 3vw);
		right: 0;
		transition: all 0.4s ease;
	}
}

/* Navi */
.Navi01 {
  background-color: #707070;
  padding: 60px 0;
}
.Navi01__block {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .Navi01__block {
    display: block;
  }
}
.Navi01__col {
  width: 280px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .Navi01__col {
    width: auto;
  }
  .Navi01__col:not(:first-child) {
    margin-top: 18px;
  }
}
.Navi01__head {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.Navi01__item:not(:first-child) {
  margin-top: 15px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .Navi01__item:not(:first-child) {
    margin-top: 5px;
  }
}
.Navi01__item a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: bold;
}
.Navi01__item a:hover {
  opacity: 0.8;
}


.Link01 {
	display: inline-block;
	margin-top: 20px;
	color: #1F1F1F !important;
	font-weight: bold;
}
.Link01:hover {
	opacity: .8;
}

.Modal02__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8001;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.Modal02__content {
  z-index: 8002;
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .Modal02__content {
    width: 90%;
  }
}
.Modal02__close {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  top: 10px;
  right: 10px;
  padding: 0;
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  background-color: #000;
  width: 45px;
  height: 45px;
  font-size: 30px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .Modal02__close {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}

.ReserveModal {
  box-sizing: border-box;
  padding: 40px 50px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal {
    padding: 25px 10px;
  }
  .ReserveModal.type01 {
    padding: 40px 10px;
  }
}
.ReserveModal__inner {
  width: 976px;
  min-height: 600px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__inner {
    width: auto;
    min-height: 550px;
  }
}
.ReserveModal__head {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__head {
    font-size: 20px;
  }
}
.ReserveModal__step {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__step {
    width: 280px;
  }
}
.ReserveModal__step img {
  width: 100%;
}
.ReserveModal__about {
  box-sizing: content-box;
  background-color: #F2F2F2;
  height: 300px;
  padding: 25px 50px;
  overflow-y: scroll;
  margin-bottom: 40px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__about {
    padding: 35px 10px;
    margin-bottom: 25px;
    height: 80px;
  }
}
.ReserveModal__list li {
  text-indent: -0.5em;
  padding-left: 1em;
  margin-bottom: 10px;
}
.ReserveModal__list li:before {
  content: "・";
  display: inline-block;
}
.ReserveModal__link {
  color: #1F1F1F !important;
  text-decoration-color: #1F1F1F !important;
}
.ReserveModal__btnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btnArea {
    flex-direction: column;
  }
}
.ReserveModal__btn {
  display: block;
  box-sizing: border-box;
  width: 395px;
  position: relative;
  border: 2px solid #BA5D00;
  padding: 20px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #BA5D00 !important;
  text-decoration: none !important;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn {
    width: 100%;
    box-shadow: none;
    font-size: 18px;
    padding: 16px 0;
  }
}
.ReserveModal__btn::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 5px;
  position: absolute;
  background-image: url("/sr/asset/img/arrow_orange_right.svg");
  background-repeat: no-repeat;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.ReserveModal__btn.type01::after {
  top: 78%;
}
.ReserveModal__btn:hover::after {
  right: -10px;
}
.ReserveModal__btn:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
.ReserveModal__btn.is-left {
  text-align: left;
  padding-left: 20px;
}
.ReserveModal__btn span {
  font-size: 18px;
  color: #1F1F1F;
  font-weight: bold;
  display: inline-block;
  line-height: 1.3;
  vertical-align: middle;
}
.ReserveModal__btn01 {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  border: 2px solid #BA5D00;
  padding: 21px 0;
  text-decoration: none !important;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn01 {
    width: 100%;
    box-shadow: none;
    font-size: 18px;
    padding: 16px 0;
    justify-content: flex-start;
  }
}
.ReserveModal__btn01::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 10px;
  position: absolute;
  background-image: url("/sr/asset/img/arrow_orange_right01.png");
  background-repeat: no-repeat;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn01::after {
    top: 40%;
    right: 10px;
    transform: scale(0.7);
  }
}
.ReserveModal__btn01:hover::after {
  right: -10px;
}
.ReserveModal__btn01.is-left {
  text-align: left;
  padding-left: 20px;
}
.ReserveModal__btn01 .day {
  font-size: 18px;
  color: #1F1F1F;
  font-weight: bold;
  line-height: 1.3;
  padding-right: 20px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn01 .day {
    font-size: 12px;
    text-align: center;
    padding-right: 0;
    width: 33%;
  }
}
.ReserveModal__btn01 .time {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: #BA5D00;
  padding-left: 20px;
  position: relative;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn01 .time {
    font-size: 19px;
    padding-left: 15px;
  }
}
.ReserveModal__btn01 .time::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 0;
  width: 2px;
  height: 30px;
  background-color: #BA5D00;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn01 .time::before {
    height: 25px;
  }
}
.ReserveModal__btn02 {
  display: block;
  box-sizing: border-box;
  width: 395px;
  position: relative;
  border: 2px solid #BA5D00;
  padding: 20px 0;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #BA5D00 !important;
  text-decoration: none !important;
  line-height: 1;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn02 {
    width: 100%;
    box-shadow: none;
    font-size: 15px;
    padding: 16px 0;
  }
}
.ReserveModal__btn02 span {
  font-size: 16px;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn02 span {
    font-size: 11px;
  }
}
.ReserveModal__btn02::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 5px;
  position: absolute;
  background-image: url("/sr/asset/img/arrow_orange_right.svg");
  background-repeat: no-repeat;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.ReserveModal__btn02:hover::after {
  right: -10px;
}
.ReserveModal__btn02:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__btn02:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
.ReserveModal__msg01 {
  width: calc(100% - 395px - 20px);
  margin-left: 20px;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__msg01 {
    width: auto;
    margin-left: 0;
    font-size: 12px;
  }
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__spOrder2 {
    order: 2;
  }
}
.ReserveModal__title01 {
  font-size: 18px;
  font-weight: bold;
  color: #BA5D00;
  text-align: center;
}
.ReserveModal__title02 {
  font-size: 18px;
  font-weight: bold;
  color: #1F1F1F;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (max-width: 640px) and (max-device-width: 1280px) {
  .ReserveModal__title02 {
    text-indent: -0.5em;
  }
}
.ReserveModal__title02::before {
  content: "・";
  display: inline-block;
}