/*基本*/
.btn_box div:not(:last-child) {
  margin-bottom: 20px;
}
.btn {
  text-align: center;
  font-size: var(--size_r);
}
.btn a,
.btn input,
.btn button {
  margin: auto;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.btn a:hover,
.btn input:hover,
.btn button:hover {
}
.btn.size_s a,
.btn.size_s input,
.btn.size_s button {
  width: 240px;
  height: 40px;
}
.btn.size_r a,
.btn.size_r input,
.btn.size_r button {
  width: 300px;
  height: 50px;
}
.btn.size_l a,
.btn.size_l input,
.btn.size_l button {
  width: 360px;
  height: 60px;
}
.btn.size_full a,
.btn.size_full input,
.btn.size_full button {
  width: 100%;
  height: 60px;
}
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  .size_l {
    width: 100%;
  }
  .btn.size_l a,
  .btn.size_l input,
  .btn.size_l button {
    width: 100%;
  }
}

.btn.next a,
.btn.next input,
.btn.next button {
  position: relative;
  color: #fff;
  background: var(--primary);
  transition: 0.4s;
  border-radius: 6px;
}
.btn.next a:after,
.btn.next input:after,
.btn.next button:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 20px;
  margin: auto;
}
.btn.next a:hover,
.btn.next input:hover,
.btn.next button:hover {
  opacity: 0.8;
}

.btn.white a,
.btn.white input,
.btn.white button {
  position: relative;
  color: #000;
  background: #fff;
  transition: 0.4s;
}
.btn.white a:after,
.btn.white input:after,
.btn.white button:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 20px;
  margin: auto;
}
.btn.white a:hover,
.btn.white input:hover,
.btn.white button:hover {
  opacity: 0.8;
}
.btn.gray a,
.btn.gray input,
.btn.gray button {
  position: relative;
  color: #fff;
  background: #666;
  transition: 0.4s;
}
.btn.gray a:hover,
.btn.gray input:hover,
.btn.gray button:hover {
  opacity: 0.8;
}
.btn.gradation a,
.btn.gradation input,
.btn.gradation button {
  position: relative;
  color: #fff;
  background: var(--reservation_gradient);
  transition: 0.4s;
}
.btn.gradation a:after,
.btn.gradation input:after,
.btn.gradation button:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 20px;
  margin: auto;
}
.btn.gradation a:hover,
.btn.gradation input:hover,
.btn.gradation button:hover {
  opacity: 0.8;
}

.btn.back a,
.btn.back input,
.btn.back button {
  position: relative;
  color: #fff;
  background: var(--dark);
  transition: 0.4s;
  background: #e6e6e6;
  border: 1px solid #ccc;
  font-size: 12px;
  color: #333;
}
.btn.back a:after,
.btn.back input:after,
.btn.back button:after {
  font-family: "FontAwesome";
  content: "\f104";
  position: absolute;
  left: 20px;
  margin: auto;
}
.btn.back a:hover,
.btn.back input:hover,
.btn.back button:hover {
  opacity: 0.8;
}

/**/
@keyframes arrow_move {
  0%,
  100% {
    right: 10px;
  }

  50% {
    right: 20px;
  }
}
.slide_btn {
  text-align: center;
}
.slide_btn a {
  display: inline-block;
  width: 320px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #000;
  background-color: none;
  position: relative;
  border: 1px solid #000;
  transition: color 0.5s ease;
}
.slide_btn a:hover {
  color: #fff;
}
.slide_btn a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.slide_btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
li.request .slide_btn a::before {
  background: var(--request_gradient);
}
li.yoyaku .slide_btn a::before {
  background: var(--reservation_gradient);
}
.slide_btn a .text {
  position: relative;
}
.slide_btn a::after {
  content: "";
  background: url(../../images/icn_arrow_black.svg) no-repeat center / contain;
  width: 32px;
  display: block;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s;
}
.slide_btn a:hover::after {
  color: #fff;
  background: url(../../images/icn_arrow_white.svg) no-repeat center / contain;
  transition: all 0.5s;
}

.btn_border a {
  position: relative;
  display: inline-block;
  padding-right: 50px;
  margin: 0 auto 0;
  color: #000;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
}
.btn_border a::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 12px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.btn_border.size_l a {
  padding-right: 60px;
}
.btn_border.size_l a::after {
  width: 40px;
}
.btn_border.btn_border_box a {
  text-align: center;
  padding: 20px;
  width: 100%;
}
.btn_border.btn_border_box.btn_border-black a {
  border: 1px solid var(--key);
}

.btn_border.btn_border_box.btn_border-black a:hover {
  background-color: var(--key);
  color: #fff;
}
.btn_border.btn_border_box.btn_border-white a {
  border: 1px solid #fff;
}

.btn_border.btn_border_box.btn_border-white a:hover {
  background-color: #fff;
  color: #333;
  opacity: 1;
}
.btn_border.btn_border-white a {
  color: #fff;
}

.btn_border.btn_border-black a::after {
  background: url(../../images/icn_arrow_black.svg) no-repeat center/contain;
}

.btn_border.btn_border-black a:hover::after {
  background: url(../../images/icn_arrow_white.svg) no-repeat center/contain;
}
.btn_border.btn_border-white a::after {
  background: url(../../images/icn_arrow_white.svg) no-repeat center/contain;
}
.btn_border.btn_border-white a:hover::after {
  background: url(../../images/icn_arrow_black.svg) no-repeat center/contain;
}
.btn_border a:hover {
  opacity: 0.8;
}
.btn_border a:hover:after {
  right: 5px;
  transition: 0.3s;
}
.btn_position_right {
  text-align: right;
}
.btn_position_center {
  text-align: center;
}

.btn_position_left {
  text-align: left;
}
ul.move_btn.foot_btn {
  display: flex;
  justify-content: center;
}
ul.move_btn.foot_btn li:not(:last-child) .slide_btn {
  margin-right: 24px;
}
/*
.move_btn a:before {
  display: block;
  position: absolute;
  z-index: -1;
  left: -30%;
  top: -50%;
  content: "";
  width: 30px;
  height: 120px;
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) 100%);
  animation: shiny 3s infinite linear;
  -webkit-animation: shiny 3s infinite linear;
  -moz-animation: shiny 3s infinite linear;
  border: 0;
}
@keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@-webkit-keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@-moz-keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
*/
