@charset "UTF-8";

/***************************

_mixin.scss

***************************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoomImg {
  overflow: hidden;
  display: block;
  transition: 0.75s;
}

.zoomImg img {
  transform: scale(1);
  transition: 1.5s;
}

.zoomImg:hover {
  opacity: 1;
}

.zoomImg:hover img {
  transform: scale(1.2);
}

/***************************

_variables.scss

***************************/
.flex {
  display: flex;
}

.flexbox {
  display: flex;
}

.txtleft {
  text-align: left;
}

.center {
  text-align: center;
}

.line1 {
  line-height: 1;
}

.wrap {
  flex-wrap: wrap;
}

.spacebet {
  justify-content: space-between;
}

.bold {
  font-weight: bold;
}

.mt05e {
  margin-top: 0.5em;
}

.mt1e {
  margin-top: 1em;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt130 {
  margin-top: 130px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.pt0 {
  padding-top: 0;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb170 {
  padding-bottom: 170px;
}

.inter {
  font-family: "Inter", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.kotsuka {
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
}

.normal {
  font-weight: normal;
}

.small {
  font-size: 14px;
  font-weight: normal;
}

.pink {
  font-weight: bold;
  color: #e5406a;
}

.upper {
  text-transform: uppercase;
}

.shuei {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}

/***************************

_layout.scss

***************************/
.layout-gray {
  background-color: #f3f3f3;
  padding-bottom: 30px;
  margin: 185px auto 0;
  max-width: 1450px;
  border-radius: 20px;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .layout-gray {
    width: 100%;
    padding: 0 20px 30px;
  }
}

@media screen and (max-width: 550px) {
  .layout-gray {
    padding: 0 10px 30px;
  }
}

.layout-form-white {
  background-color: #fff;
  border-radius: 15px;
  padding: 75px 20px 100px;
  margin: 44px auto 0;
  max-width: 1340px;
  width: 100%;
  position: relative;
  top: -50px;
}

@media screen and (max-width: 550px) {
  .layout-form-white {
    padding: 30px 20px 100px;
  }
}

@media screen and (max-width: 428px) {
  .layout-form-white {
    padding: 30px 10px 100px;
  }
}

.layout-form-section {
  margin-bottom: 85px;
}

.layout-not-email {
  border: #cccccc solid 2px;
  border-radius: 16px;
  margin-top: 75px;
}

.layout-rese-req-top {
  padding-bottom: 130px;
}

.bkg-skyblue,
.layout-reservation-merit {
  background-color: #f6f6f6;
  padding: 110px 0;
}

/***************************

_common.scss

***************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    sans-serif;
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width: 550px) {
  body {
    font-size: 14px;
  }
}

.subfont {
  font-family: "subfont";
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover,
button:hover {
  opacity: 0.5;
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.wrap1340 {
  max-width: 1340px;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .wrap1340 {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .wrap1340 {
    max-width: calc(100% - 20px);
    margin: 0 10px;
  }
}

.wrap1200 {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .wrap1200 {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .wrap1200 {
    max-width: calc(100% - 20px);
    margin: 0 10px;
  }
}

.wrap1080 {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .wrap1080 {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .wrap1080 {
    max-width: calc(100% - 20px);
    margin: 0 10px;
  }
}

.wrap995 {
  max-width: 995px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .wrap995 {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .wrap995 {
    max-width: calc(100% - 20px);
    margin: 0 10px;
  }
}

.wrap960 {
  max-width: 995px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .wrap960 {
    max-width: calc(100% - 40px);
    margin: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .wrap960 {
    max-width: calc(100% - 20px);
    margin: 0 10px;
  }
}

.pc-img {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc-img {
    display: block;
  }
}

.mid-img {
  display: none;
}

@media screen and (max-width: 600px) {
  .mid-img {
    display: block;
  }
}

.sp-img {
  display: none;
}

@media screen and (max-width: 428px) {
  .sp-img {
    display: block;
  }
}

.wrapper {
  width: 1480px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    width: 95%;
  }
}

.wrapperL {
  width: 1300px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

@media screen and (max-width: 1024px) {
  .wrapperL {
    width: 95%;
  }
}

.tab-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-br {
    display: block;
  }
}

.mid-br {
  display: none;
}

@media screen and (max-width: 600px) {
  .mid-br {
    display: block;
  }
}

.sp-br {
  display: none;
}

@media screen and (max-width: 428px) {
  .sp-br {
    display: block;
  }
}

/*フェードインアニメ*/
/*左から右にフェードイン*/
.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 1s;
}

.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0.1;
  transform: translateY(10px);
  transition: all 1s;
}

@media screen and (max-width: 768px) {
  .down-to-top {
    opacity: 0.3;
    transform: translateY(5px);
    transition: all 0.5s;
  }
}

.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* 共通 */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: bold;
}

main {
  margin-bottom: 100px;
}

img {
  vertical-align: bottom;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}

/* top-resev */
.top-resev {
  text-align: center;
  background-image: url(img/reservation/top-yellow.png);
  background-size: cover;
  max-width: 100%;
  /* min-height: 175px; */
  /* padding: 85px 0 60px; */
  padding: 50px 0 20px;
  margin-top: 90px;
  margin-bottom: 106px;
}

@media screen and (max-width: 550px) {
  .top-resev {
    margin-top: 65px;
  }
}

.top-resev .ja {
  font-size: 46px;
  background: #fff;
  border: 2px solid #000;
  padding: 22px 34px;
  box-shadow: 4px 4px rgba(204, 204, 204, 0.6);
  display: inline-block;
  margin-bottom: 14px;
  line-height: 1;
}

@media screen and (max-width: 550px) {
  .top-resev .ja {
    font-size: 32px;
  }
}

@media screen and (max-width: 550px) {
  .top-resev .ja span {
    display: inline-block;
    line-height: 1.2;
  }
}

.top-resev .en {
  font-size: 13px;
  display: block;
  text-transform: uppercase;
}

/* ---------------------------
form.html
---------------------------*/
/* select-resev */
.select-resev {
  text-align: center;
}

.select-resev-text {
  margin-bottom: 65px;
  font-size: 20px;
}

.select-resev ul {
  max-width: 995px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  margin: 0 auto;
  gap: 30px;
}

.select-item {
  border: #000 solid 2px;
  width: 480px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto;
  border-radius: 100px;
  box-shadow: 4px 4px rgba(204, 204, 204, 0.6);
}

.select-item span {
  font-size: 22px;
  margin-right: 30px;
}

.select-resev img {
  vertical-align: middle;
}

/***************************

_header.scss

***************************/
#headerSec {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 50;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.97);
  opacity: 0;
}

#headerSec.show {
  opacity: 1;
  -webkit-animation: fadeIn 1s forwards;
  animation: fadeIn 1s forwards;
}

@media screen and (max-width: 1024px) {
  #gnavi {
    display: none;
  }
}

#gnavi.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  font-size: 27px;
  font-weight: bold;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@media screen and (max-width: 428px) {
  #gnavi.open {
    font-size: 20px;
  }
}

#gnavi a:hover {
  opacity: 0.5;
}

.gnavi__item {
  margin-bottom: 14px;
  color: #333;
}

.gnavi__item a {
  color: #333;
}

.sp-onlineBtn {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sp-onlineBtn {
    display: block;
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 80px;
    background: url(../img/sp-online.png) no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
    position: fixed;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 25;
    text-align: center;
  }

  .sp-onlineBtn a {
    display: block;
  }

  .sp-onlineBtn a img {
    width: 30px;
    height: auto;
    padding-top: 25px;
  }
}

#menu-btn {
  display: none;
}

@media screen and (max-width: 1024px) {
  #menu-btn {
    display: block;
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 0;
    background: #fff;
    width: 80px;
    height: 80px;
    position: fixed;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 25;
  }
}

@media screen and (max-width: 1024px) {
  #menu-btn span {
    display: block;
    position: absolute;
    width: 46px;
    height: 3px;
    background-color: #333;
    transition: all 0.5s;
  }

  #menu-btn span:nth-child(1) {
    top: 25px;
    right: 17px;
  }

  #menu-btn span:nth-child(2) {
    top: 40px;
    right: 17px;
  }

  #menu-btn span:nth-child(3) {
    top: 55px;
    right: 17px;
  }

  #menu-btn.open span {
    background-color: #333;
  }

  #menu-btn.open span:nth-child(1) {
    transform: translateY(14px) rotate(-45deg);
  }

  #menu-btn.open span:nth-child(2) {
    display: none;
  }

  #menu-btn.open span:nth-child(3) {
    transform: translateY(-16px) rotate(45deg);
  }
}

/***************************

_variables.scss

***************************/
.flex {
  display: flex;
}

.flexbox {
  display: flex;
}

.txtleft {
  text-align: left;
}

.center {
  text-align: center;
}

.line1 {
  line-height: 1;
}

.wrap {
  flex-wrap: wrap;
}

.spacebet {
  justify-content: space-between;
}

.bold {
  font-weight: bold;
}

.mt05e {
  margin-top: 0.5em;
}

.mt1e {
  margin-top: 1em;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.inter {
  font-family: "Inter", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.kotsuka {
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
}

.normal {
  font-weight: normal;
}

.small {
  font-size: 14px;
  font-weight: normal;
}

.pink {
  font-weight: bold;
  color: #e5406a;
}

/***************************

_header.scss

***************************/
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -46px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  content: url(../img/slide-dot.png);
  display: inline-block;
  vertical-align: middle;
  padding-top: 2px;
}

/***************************

_reservation_form01.scss

***************************/
.reservation p {
  font-size: 20px;
}

@media screen and (max-width: 550px) {
  .reservation p {
    text-align: left;
    font-size: 18px;
  }
}

.b-reservation-link-list {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 65px;
  gap: 35px;
  width: 100%;
}

@media screen and (max-width: 550px) {
  .b-reservation-link-list {
    margin-top: 40px;
    gap: 0;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-link-list__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

a.b-next-button {
  display: inline-block;
}

a.b-next-button .small {
  font-size: 16px;
}

@media screen and (max-width: 550px) {
  a.b-next-button {
    width: 100%;
  }
}

.date-green {
  background-image: url(img/reservation/green.png);
  background-repeat: no-repeat;
  max-width: 1200px;
  height: 125px;
  margin: 0 auto;
  position: relative;
  top: -85px;
  background-size: 100% 115px;
}

.date-green.date-blue {
  background-image: url(img/reservation/blue.png);
}

.date-green.date-orange {
  background-image: url(img/reservation/orange.png);
}

.date-green.date-water {
  background-image: url(img/reservation/water.png);
}

@media screen and (max-width: 1024px) {
  .date-green {
    padding: 20px 0;
    background-size: 100% 100%;
    height: auto;
  }
}

.date-green p {
  font-size: 32px;
  color: #fff;
  text-align: center;
  line-height: 115px;
}

@media screen and (max-width: 1024px) {
  .date-green p {
    line-height: 1.5;
  }
}

@media screen and (max-width: 550px) {
  .date-green p {
    font-size: 24px;
  }
}

.date-green p span {
  position: relative;
  top: -7px;
}

@media screen and (max-width: 1024px) {
  .date-green p span {
    display: inline-block;
  }
}

.num-list {
  display: flex;
  justify-content: center;
  position: relative;
  top: -50px;
}

@media screen and (max-width: 768px) {
  .num-list {
    flex-direction: column;
    align-items: center;
  }
}

.num-list li.done {
  opacity: 0.3;
}

.num-list img {
  vertical-align: middle;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .num-list li:not(:last-child) {
    position: relative;
    margin-bottom: 60px;
  }
}

.num-list li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 47px;
  height: 8px;
  background-image: url(img/reservation/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 15px;
}

@media screen and (max-width: 768px) {
  .num-list li:not(:last-child):after {
    position: absolute;
    transform: rotate(90deg);
    top: calc(100% + 20px);
    left: 27%;
  }
}

@media screen and (max-width: 768px) {
  .num-list li:last-child {
    padding-right: 1em;
  }
}

.fade {
  opacity: 0.5;
  transform: translateY(50px);
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 550px) {
  .fade {
    transform: translateY(30px);
  }
}

.fade.display {
  opacity: 1;
  transform: translateY(0);
}

.b-form-title {
  box-shadow: 2px 2px 0 #ccc;
  align-items: center;
  display: flex;
  border-radius: 15px;
  position: relative;
  margin-bottom: 38px;
  align-items: stretch;
}

.b-form-title .num {
  background-color: #f9f82d;
  font-weight: bold;
  display: inline-block;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border: 2px solid #333;
  border-right: 1px solid #333;
  line-height: 86px;
  width: 88px;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .b-form-title .num {
    line-height: 60px;
    width: 60px;
  }
}

.b-form-title .black {
  font-weight: bold;
  display: inline-block;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border: 2px solid #333;
  border-left: none;
  width: calc(100% - 88px);
  line-height: 86px;
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 550px) {
  .b-form-title .black {
    line-height: 60px;
    padding-left: 10px;
    width: calc(100% - 60px);
    font-size: 15px;
  }
}

.b-form-title .black::after {
  content: "必須";
  position: relative;
  font-size: 14px;
  border: #e6436b 2px solid;
  color: #e6436b;
  border-radius: 5px;
  width: 41px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  left: 20px;
}

@media screen and (max-width: 550px) {
  .b-form-title .black::after {
    left: 10px;
  }
}

.b-form-title .black--any::after {
  content: "任意";
  border: #bbb 2px solid;
  color: #bbb;
}

.b-form-title+p {
  margin-bottom: 45px;
  font-weight: normal;
}

.b-form-title+p.bold {
  font-weight: bold;
}

@media screen and (max-width: 550px) {
  .b-form-title+p {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 428px) {
  .b-form-title+p {
    margin-bottom: 1em;
  }
}

.b-calender {
  border: #e6e6e6 3px solid;
}

@media screen and (max-width: 768px) {
  .b-calender {
    max-width: 100%;
  }
}

.b-calender-month {
  justify-content: space-between;
  color: #59ac2c;
  font-weight: bold;
  align-items: center;
  margin-bottom: 24px;
  max-width: 1280px;
  margin: 0 auto 8px;
  padding: 25px 30px;
}

@media screen and (max-width: 1024px) {
  .b-calender-month {
    max-width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .b-calender-month {
    width: 100%;
  }
}

@media screen and (max-width: 428px) {
  .b-calender-month {
    margin-bottom: 0;
    padding: 10px;
  }
}

.b-calender-month__last,
.b-calender-month__next {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media screen and (max-width: 768px) {

  .b-calender-month__last,
  .b-calender-month__next {
    font-size: 15px;
  }
}

.b-calender-month__last i,
.b-calender-month__next i {
  background-color: #e74169;
  color: #fff;
  display: inline-block;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 10px;
  margin-right: 14px;
}

@media screen and (max-width: 428px) {

  .b-calender-month__last i,
  .b-calender-month__next i {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}

.b-calender-month__last i {
  margin-right: 14px;
}

@media screen and (max-width: 428px) {
  .b-calender-month__last i {
    margin-right: 0;
  }
}

.b-calender-month__next i {
  margin-left: 14px;
}

@media screen and (max-width: 768px) {
  .b-calender-month__next i {
    margin-right: 0;
  }
}

@media screen and (max-width: 428px) {
  .b-calender-month__next i {
    margin-left: 0;
  }
}

.b-calender-month__now {
  color: #333;
  font-weight: bold;
}

.b-calender-month__now .num {
  font-size: 26px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

@media screen and (max-width: 768px) {
  .b-calender-month__now .num {
    font-size: 20px;
  }
}

.b-calender-month__now .ja {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .b-calender-month__now .ja {
    font-size: 14px;
  }
}

.b-calender-day {
  width: 100%;
}

.b-calender-day li {
  width: 14.2857142857%;
  display: inline-block;
  text-align: center;
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  height: 54px;
  line-height: 54px;
  font-size: 15px;
}

.b-calender-day li:first-child {
  border-left: none;
}

.b-calender-date {
  width: 100%;
  flex-wrap: wrap;
}

.b-calender-date li {
  width: 14.2857142857%;
  display: block;
  border-left: 1px solid #e4e7e2;
  border-bottom: 1px solid #e4e7e2;
  height: 108px;
  /* padding-top: 20px; */
  text-align: center;
  background-color: #fff;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  color: #666;
}

.b-calender-date li.ok:hover {
  background-color: #fcffe3;
  cursor: pointer;
}

.b-calender-date li.not-now {
  background-color: #f8f8f8;
  border-color: #e6e6e6;
  color: #bbbbbb;
  cursor: auto;
  padding-top: 20px;
}

@media screen and (max-width: 425px) {
  .b-calender-date li.not-now {
    padding-top: 10px;
  }
}

.b-calender-date li.not-now:hover {
  background-color: #f8f8f8;
  pointer-events: none;
}

.b-calender-date li.ok {
  position: relative;
}

.b-calender-date li.ok::after {
  content: "";
  display: inline-block;
  height: 25px;
  width: 25px;
  border: 3px solid #e74169;
  border-radius: 50%;
  position: absolute;
  top: 60px;
  left: calc(50% - 12px);
}

@media screen and (max-width: 768px) {
  .b-calender-date li.ok::after {
    top: 40px;
  }
}

@media screen and (max-width: 428px) {
  .b-calender-date li.ok::after {
    top: 30px;
    width: 20px;
    height: 20px;
    left: calc(50% - 9px);
  }
}

.b-calender-date li.no {
  position: relative;
  padding-top: 20px;
}

@media screen and (max-width: 428px) {
  .b-calender-date li.no {
    padding-top: 10px;
  }
}

.b-calender-date li.no:hover {
  pointer-events: none;
}

.b-calender-date li.no::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 22px;
  background-color: #bbb;
  position: absolute;
  top: 70px;
  left: calc(50% - 11px);
}

@media screen and (max-width: 768px) {
  .b-calender-date li.no::after {
    top: 50px;
  }
}

@media screen and (max-width: 428px) {
  .b-calender-date li.no::after {
    top: 40px;
    width: 20px;
    left: calc(50% - 10px);
  }
}

.b-calender-date li.yellow {
  background-color: #fcffe3;
}

@media screen and (max-width: 1024px) {
  .b-calender-date li {
    padding: 0 10px 0;
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .b-calender-date li {
    height: 80px;
    padding: 0 5px 0;
  }
}

@media screen and (max-width: 428px) {
  .b-calender-date li {
    height: 60px;
  }
}

.b-calender-date li a {
  display: block;
  text-align: center;
  /* background-color: #feb410;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 5px; */
  transition: all 0.3s;
  padding-top: 20px;
  height: 108px;
}

/* .b-calender-date li a:first-of-type {
  margin-top: 0.5em;
} */
.b-calender-date li a:hover {
  background-color: #fcffe3;
}

@media screen and (max-width: 1024px) {
  .b-calender-date li a {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .b-calender-date li a {
    height: 80px;
  }
}

@media screen and (max-width: 428px) {
  .b-calender-date li a {
    padding-top: 10px;
    height: 60px;
  }
}

.b-schedule-head {
  border: 4px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .b-schedule-head {
    display: none;
  }
}

.b-schedule-head__item {
  text-align: center;
  line-height: 50px;
  border-right: 1px solid #e6e6e6;
}

.b-schedule-head__item:first-child {
  width: 160px;
}

.b-schedule-head__item:nth-child(2) {
  width: 280px;
}

.b-schedule-head__item:nth-child(3) {
  width: calc(100% - 160px - 280px - 150px);
}

.b-schedule-head__item:nth-child(4) {
  width: 150px;
  border-right: none;
}

.b-schedule-row {
  width: 100%;
  border-left: 4px solid #e6e6e6;
  border-right: 4px solid #e6e6e6;
}

@media screen and (max-width: 1024px) {
  .b-schedule-row {
    flex-wrap: wrap;
  }

  .b-schedule-row:first-of-type {
    border-top: 5px solid #e6e6e6;
  }
}

.b-schedule-row.gray {
  background-color: #f8f8f8;
}

.b-schedule-row.gray .b-schedule-row__start,
.b-schedule-row.gray .b-schedule-row__residue,
.b-schedule-row.gray .b-schedule-row__time {
  color: #bbbbbb;
}

.b-schedule-row.gray select,
.b-schedule-row.gray label {
  pointer-events: none;
  color: #bbb;
}

@media screen and (max-width: 1024px) {

  .b-schedule-row.gray .b-schedule-row__time::before,
  .b-schedule-row.gray .b-schedule-row__model-house::before {
    color: #bbb;
  }
}

.b-schedule-row:last-child {
  border-bottom: 4px solid #e6e6e6;
}

.b-schedule-row dt {
  border-bottom: 1px solid #e6e6e6;
}

.b-schedule-row__start {
  border-right: 1px solid #e6e6e6;
  width: 160px;
  text-align: center;
  line-height: 86px;
  font-size: 16px;
  border-bottom: 1px solid #e6e6e6;
}

@media screen and (max-width: 1024px) {
  .b-schedule-row__start {
    order: 1;
    width: 30%;
    line-height: 50px;
  }

  .b-schedule-row__start::before {
    content: "見学開始時刻";
    display: block;
    font-size: 16px;
    line-height: 32px;
    border-bottom: 1px solid #e6e6e6;
    font-weight: normal;
    background-color: #f8f8f8;
  }
}

@media screen and (max-width: 768px) {
  .b-schedule-row__start {
    width: 50%;
    line-height: 32px;
  }
}

@media screen and (max-width: 550px) {
  .b-schedule-row__start {
    width: 100%;
  }
}

.b-schedule-row__time {
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  width: 280px;
  display: flex;
  justify-content: space-evenly;
  line-height: 86px;
}

@media screen and (max-width: 1024px) {
  .b-schedule-row__time {
    order: 2;
    width: 40%;
    line-height: 50px;
    position: relative;
    padding-top: 32px;
  }

  .b-schedule-row__time::before {
    content: "見学時間";
    display: block;
    font-size: 16px;
    line-height: 32px;
    border-bottom: 1px solid #e6e6e6;
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    font-weight: normal;
    background-color: #f8f8f8;
  }
}

@media screen and (max-width: 768px) {
  .b-schedule-row__time {
    order: 3;
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .b-schedule-row__time {
    order: 2;
  }
}

.b-schedule-row__time label {
  position: relative;
  cursor: pointer;
  padding-left: 44px;
}

@media screen and (max-width: 550px) {
  .b-schedule-row__time label {
    font-size: 16px;
  }
}

.b-schedule-row__time label:hover::before {
  border-color: #1f1f1f;
}

.b-schedule-row__time label::before,
.b-schedule-row__time label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.b-schedule-row__time label::before {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  left: 5px;
}

.b-schedule-row__time label::after {
  background-color: #1f1f1f;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 12px;
}

.b-schedule-row__time input:checked+label::after {
  opacity: 1;
}

.b-schedule-row__time .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.b-schedule-row__model-house {
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  width: calc(100% - 160px - 280px - 150px);
  padding: 18px 20px;
  line-height: 52px;
}

@media screen and (max-width: 1024px) {
  .b-schedule-row__model-house {
    order: 4;
    width: 100%;
    border-right: none;
    border-bottom: 4px solid #e6e6e6;
    padding-top: 0;
    position: relative;
    padding-top: 42px;
    padding-bottom: 10px;
  }

  .b-schedule-row__model-house::before {
    content: "希望モデルハウス（未定可）";
    display: block;
    font-size: 16px;
    line-height: 32px;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: normal;
    background-color: #f8f8f8;
  }
}

@media screen and (max-width: 768px) {
  .b-schedule-row__model-house {
    padding: 42px 10px 10px;
  }
}

@media screen and (max-width: 768px) {
  .b-schedule-row__model-house {
    order: 3;
    border-bottom: 1px solid #e6e6e6;
  }
}

.b-schedule-row__model-house select {
  width: 100%;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  line-height: 1.6;
  background-color: #fff;
  height: 52px;
  font-weight: normal;
  padding: 15px 44px 15px 14px;
  position: relative;
  white-space: normal;
  font-size: 16px;
  cursor: pointer;
}

.b-schedule-row__model-house select:hover {
  border: 1px solid #1f1f1f;
}

.b-schedule-row__residue {
  border-bottom: 1px solid #e6e6e6;
  width: 150px;
  text-align: center;
  line-height: 86px;
}

@media screen and (max-width: 1024px) {
  .b-schedule-row__residue {
    order: 3;
    width: 30%;
    line-height: 50px;
  }

  .b-schedule-row__residue::before {
    content: "空き枠数";
    display: block;
    font-size: 16px;
    line-height: 32px;
    border-bottom: 1px solid #e6e6e6;
    font-weight: normal;
    background-color: #f8f8f8;
  }
}

@media screen and (max-width: 768px) {
  .b-schedule-row__residue {
    order: 2;
    width: 50%;
    line-height: 32px;
  }
}

@media screen and (max-width: 550px) {
  .b-schedule-row__residue {
    order: 4;
    width: 100%;
    border-bottom: 5px solid #e6e6e6;
  }
}

.b-select-wrap {
  display: flex;
  align-items: center;
}

.b-select-arrow {
  position: relative;
}

.b-select-arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid #666;
  border-bottom: 2px solid #666;
  display: block;
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  z-index: 2;
  transform: rotate(-45deg);
}

.b-select-arrow.active::after {
  transform: rotate(135deg);
}

.b-select-arrow select,
.b-select-arrow option,
.b-select-wrap select,
.b-select-wrap option {
  color: #333;
}

.b-checkbox-list {
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (max-width: 550px) {
  .b-checkbox-list {
    margin-bottom: 20px;
  }
}

.b-checkbox-list__item {
  width: 33.3%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .b-checkbox-list__item {
    width: 50%;
  }
}

@media screen and (max-width: 550px) {
  .b-checkbox-list__item {
    width: 100%;
    margin-bottom: 0;
  }
}

.b-checkbox-list__item input[type="checkbox"] {
  opacity: 0;
}

.b-checkbox-list__item label {
  cursor: pointer;
  padding-left: 45px;
  position: relative;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  display: inline-block;
  white-space: normal;
  width: 100%;
}

@media screen and (max-width: 550px) {
  .b-checkbox-list__item label {
    font-size: 14px;
  }
}

.b-checkbox-list__item label:hover::before {
  border-color: #666;
}

.b-checkbox-list__item label::before,
.b-checkbox-list__item label::after {
  content: "";
  display: block;
  position: absolute;
}

.b-checkbox-list__item label::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid #d4d4d4;
  width: 30px;
  height: 30px;
  top: -3px;
  left: 0px;
}

.b-checkbox-list__item label::after {
  border-bottom: 2px solid #1f1f1f;
  border-left: 2px solid #1f1f1f;
  opacity: 0;
  height: 10px;
  width: 20px;
  transform: rotate(-45deg);
  top: 5px;
  left: 5px;
}

.b-checkbox-list__item input:checked+label::after {
  opacity: 1;
}

.b-land__text {
  font-weight: normal;
}

.required {
  position: relative;
  font-size: 14px;
  border: #e6436b 2px solid;
  color: #e6436b;
  border-radius: 5px;
  width: 43px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  left: 20px;
}

.any {
  position: relative;
  font-size: 14px;
  border: #bbb 2px solid;
  color: #bbb;
  border-radius: 5px;
  width: 43px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  left: 20px;
}

.b-textarea {
  width: 100%;
  height: 150px;
  max-height: 300px;
  min-height: 150px;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  margin-top: 1em;
}

.b-next-button {
  width: 480px;
  border: #333 2px solid;
  color: #333;
  line-height: 100px;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 4px 4px 0 #cccccc;
  top: 0;
  transition: all 0.1s;
  max-width: 100%;
}

@media screen and (max-width: 550px) {
  .b-next-button {
    line-height: 70px;
    /* padding: 10px 35px; */
    padding: 10px 60px;
    border-radius: 40px;
    font-size: 20px;
    line-height: 1.5;
  }

  .b-next-button span {
    display: block;
  }
}

.b-next-button::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-image: url(../img/document_request/next-btn.png);
  position: absolute;
  right: 34px;
  top: calc(50% - 24px);
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .b-next-button::after {
    width: 36px;
    height: 36px;
    top: calc(50% - 18px);
    right: 24px;
  }
}

.b-next-button:hover {
  opacity: 1;
  box-shadow: 0 0 0 #fff;
  top: 3px;
  letter-spacing: 0.1em;
}

.b-next-button:hover::after {
  right: 30px;
}

/***************************

_form02.scss

***************************/
.b-form-title+p.mb05e {
  margin-bottom: 0.5em;
}

.b-black-dot-list {
  margin-left: 1em;
  display: inline-block;
  margin-bottom: 56px;
}

.b-black-dot-list li {
  position: relative;
  font-weight: normal;
  line-height: 2;
  font-size: 16px;
}

@media screen and (max-width: 550px) {
  .b-black-dot-list li {
    font-size: 14px;
  }
}

.b-black-dot-list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -0.9em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1f1f1f;
  top: 0.7em;
}

.b-black-dot-list a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.b-black-dot-list a:hover {
  opacity: 1;
  text-decoration: none;
}

.form02-list {
  flex-wrap: wrap;
  border: 4px solid #e6e6e6;
  margin-bottom: 45px;
}

.form02-list dt {
  width: 250px;
  padding-left: 34px;
  padding-right: 20px;
  border-bottom: 1px solid #e6e6e6;
  border-right: #e6e6e6 1px solid;
  vertical-align: top;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .form02-list dt {
    width: 100%;
    background-color: #f6f6f6;
  }
}

@media screen and (max-width: 550px) {
  .form02-list dt {
    padding-left: 10px;
  }
}

.form02-list dt .required {
  left: 0;
}

.form02-list dt>span {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 26px;
  width: calc(100% - 54px);
}

@media screen and (max-width: 1024px) {
  .form02-list dt>span {
    position: relative;
    top: 0;
    justify-content: flex-start;
    gap: 1em;
    line-height: 48px;
  }
}

.form02-list dd {
  width: calc(100% - 250px);
  border-bottom: 1px solid #e6e6e6;
  padding: 16px;
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  .form02-list dd {
    width: 100%;
    border-bottom: 4px solid #e6e6e6;
  }
}

@media screen and (max-width: 550px) {
  .form02-list dd {
    padding: 10px;
  }
}

.form02-list dd.name {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .form02-list dd.name {
    flex-wrap: wrap;
    gap: 0;
  }

  .form02-list dd.name input:first-child {
    margin-bottom: 16px;
  }
}

.form02-list dd.birth {
  align-items: center;
}

@media screen and (max-width: 550px) {
  .form02-list dd.birth {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form02-list input {
  border: #bbbbbb 1px solid;
  border-radius: 5px;
  line-height: 52px;
  height: 52px;
  border-radius: 3px;
  padding: 15px;
  font-size: 16px;
}

.form02-list input::-moz-placeholder {
  font-weight: light;
  color: #bababa;
  letter-spacing: 0.07em;
}

.form02-list input:-ms-input-placeholder {
  font-weight: light;
  color: #bababa;
  letter-spacing: 0.07em;
}

.form02-list input::placeholder {
  font-weight: light;
  color: #bababa;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 550px) {
  .form02-list input::-moz-placeholder {
    font-size: 14px;
  }

  .form02-list input:-ms-input-placeholder {
    font-size: 14px;
  }

  .form02-list input::placeholder {
    font-size: 14px;
  }
}

.form02-list input:hover {
  border-color: #333;
}

.form02-list .w50p {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .form02-list .w50p {
    width: 100%;
  }
}

.form02-list .w100p {
  width: 100%;
}

.form02-list select {
  width: 100%;
  border: 1px solid #bbbbbb;
  border-radius: 3px;
  line-height: 1.6;
  background-color: #fff;
  font-weight: normal;
  padding: 15px 44px 15px 14px;
  position: relative;
  white-space: normal;
  height: 52px;
  cursor: pointer;
  font-size: 16px;
}

@media screen and (max-width: 550px) {
  .form02-list select {
    padding: 15px 20px 15px 10px;
  }
}

.form02-list select:hover {
  border: 1px solid #1f1f1f;
}

.form02-list option {
  line-height: 1.5;
  font-size: 16px;
}

.form02-list input[name="zip1"],
.form02-list input[name="zip2"] {
  width: 72px;
}

.form02-list input[name="building-year"] {
  width: 80px;
}

.form02-list .b-checkbox-list--plan {
  flex-wrap: wrap;
}

/* @media screen and (max-width: 550px) {
  .form02-list .b-checkbox-list--plan {
    margin-bottom: 50px;
  }
} */
.form02-list .b-checkbox-list--plan li {
  margin-bottom: 0;
}

@media screen and (max-width: 550px) {
  .form02-list .b-checkbox-list--plan li {
    height: 45px;
    font-size: 14px;
  }
}

.form02-list .b-checkbox-list--plan li:last-child {
  width: 66%;
}

@media screen and (max-width: 768px) {
  .form02-list .b-checkbox-list--plan li:last-child {
    width: 100%;
    height: auto;
  }
}

.form02-list .b-checkbox-list--plan input {
  height: 1px;
  width: 1px;
}

.b-radio-box {
  align-items: center;
}

.b-radio-box label {
  position: relative;
  cursor: pointer;
  padding-left: 44px;
  font-weight: normal;
}

@media screen and (max-width: 550px) {
  .b-radio-box label {
    font-size: 14px;
  }
}

.b-radio-box label:hover::before {
  border-color: #1f1f1f;
}

.b-radio-box label::before,
.b-radio-box label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.b-radio-box label::before {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  left: 5px;
}

.b-radio-box label::after {
  background-color: #1f1f1f;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 12px;
}

.b-radio-box input:checked+label::after {
  opacity: 1;
}

.b-radio-box .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.b-radio-box--gender label {
  margin-right: 50px;
  line-height: 3;
}

@media screen and (max-width: 700px) {
  .b-radio-box--year label {
    display: block;
  }
}

@media screen and (max-width: 550px) {
  .b-radio-box--gender label {
    display: block;
  }
}

.b-radio-box--house {
  flex-wrap: wrap;
}

.b-radio-box--house label {
  margin: 20px 40px 20px 0;
}

@media screen and (max-width: 550px) {
  .b-radio-box--house label {
    margin: 10px 40px 10px 0;
  }
}

input[type="radio"]:disabled+label {
  color: #bbb;
  pointer-events: none;
}

.b-select {
  position: relative;
}

.b-select::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid #666;
  border-bottom: 2px solid #666;
  display: block;
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
  z-index: 2;
  transform: rotate(-45deg);
}

@media screen and (max-width: 550px) {
  .b-select::after {
    right: 5px;
    width: 6px;
    height: 6px;
  }
}

.b-select.active::after {
  transform: rotate(135deg);
}

.b-addr-btn {
  width: 150px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background-color: #333;
  line-height: 40px;
  height: 40px;
  margin-left: 30px;
  font-weight: normal;
  font-size: 16px;
  border-radius: 3px;
  letter-spacing: 0;
  position: relative;
  top: 0;
}

@media screen and (max-width: 550px) {
  .b-addr-btn {
    margin-top: 10px;
  }
}

.b-addr-btn:hover {
  opacity: 1;
  top: 3px;
  color: #fff;
}

.b-radio-text {
  width: 66%;
}

@media screen and (max-width: 768px) {
  .b-radio-text {
    width: 100%;
    display: flex;
  }
}

@media screen and (max-width: 550px) {
  .b-radio-text {
    flex-direction: column;
  }
}

.b-radio-text label {
  margin-right: 20px;
  width: 106px;
}

.b-radio-text input[type="text"] {
  max-width: 450px;
  width: calc(100% - 120px);
}

@media screen and (max-width: 428px) {
  .b-radio-text input[type="text"] {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
}

.b-radio-text:hover input[type="text"],
.b-radio-text:hover label::before {
  border-color: #333;
}

.b-privacy-box {
  width: 100%;
  border: 1px solid #e6e6e6;
  text-align: center;
  padding: 35px 0;
  margin-bottom: 50px;
}

@media screen and (max-width: 550px) {
  .b-privacy-box {
    padding: 10px 20px 20px;
  }
}

@media screen and (max-width: 428px) {
  .b-privacy-box {
    padding-top: 0;
  }
}

.b-privacy-box input {
  opacity: 0;
}

.b-privacy-box label {
  cursor: pointer;
  padding-left: 45px;
  position: relative;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
  display: inline-block;
  white-space: normal;
}

.b-privacy-box label:hover::before {
  border-color: #666;
}

.b-privacy-box label::before,
.b-privacy-box label::after {
  content: "";
  display: block;
  position: absolute;
}

.b-privacy-box label::before {
  background-color: #fff;
  border-radius: 0%;
  border: 2px solid #d4d4d4;
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  left: 0;
}

.b-privacy-box label::after {
  border-bottom: 2px solid #1f1f1f;
  border-left: 2px solid #1f1f1f;
  opacity: 0;
  height: 10px;
  width: 20px;
  transform: rotate(-45deg);
  top: calc(50% - 7px);
  left: 5px;
}

.b-privacy-box input:checked+label::after {
  opacity: 1;
}

@media screen and (max-width: 550px) {
  .b-privacy-box span {
    display: inline-block;
  }
}

.b-privacy-box .required {
  left: 10px;
  font-weight: bold;
  text-align: center;
}

.b-check-text {
  align-items: center;
  margin-top: 1.5em;
}

@media screen and (max-width: 550px) {
  .b-check-text {
    flex-direction: column;
    align-items: flex-start;
  }
}

.b-check-text label {
  width: 106px;
}

.b-check-text input[type="text"] {
  height: 52px;
  max-width: 450px;
  width: calc(100% - 106px);
}

@media screen and (max-width: 550px) {
  .b-check-text input[type="text"] {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
}

.b-back-btn {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 2px solid #222;
  gap: 12px;
  font-size: 16px;
  line-height: 2;
  align-items: center;
  padding-bottom: 0.5em;
  margin-top: 75px;
  transition: all 0.3s;
}

.b-back-btn:hover {
  opacity: 1;
  letter-spacing: 0.1em;
}

.b-confirm-list {
  flex-wrap: wrap;
  border: 4px solid #e6e6e6;
  margin-bottom: 85px;
}

.b-confirm-list dt {
  width: 250px;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 16px 30px;
  line-height: 3;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .b-confirm-list dt {
    width: 200px;
    padding: 16px;
    line-height: 2;
  }
}

@media screen and (max-width: 550px) {
  .b-confirm-list dt {
    width: 100%;
    background-color: #f6f6f6;
    padding: 5px 14px;
  }
}

.b-confirm-list dd {
  width: calc(100% - 250px);
  border-bottom: 1px solid #e6e6e6;
  padding: 16px 30px;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .b-confirm-list dd {
    width: calc(100% - 200px);
    padding: 16px;
    line-height: 2;
  }
}

@media screen and (max-width: 550px) {
  .b-confirm-list dd {
    width: 100%;
    padding: 14px;
  }
}

.b-confirm-list dd.p0 {
  padding: 0;
}

.b-confirm-list li {
  border-bottom: 1px solid #e6e6e6;
  padding: 16px 30px;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .b-confirm-list li {
    padding: 16px;
    line-height: 2;
  }
}

@media screen and (max-width: 550px) {
  .b-confirm-list li {
    padding: 14px;
  }
}

/***************************

_thanks.scss

***************************/
.thanks h2 {
  font-size: 26px;
  margin-bottom: 32px;
}

@media screen and (max-width: 550px) {
  .thanks h2 {
    text-align: left;
    font-size: 22px;
  }
}

.thanks p {
  font-weight: normal;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .thanks p {
    text-align: left;
    line-height: 2;
  }
}

@media screen and (max-width: 550px) {
  .thanks p {
    font-size: 14px;
  }
}

.b-not-email h3 {
  background-color: #f6f6f6;
  padding: 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin: 0 0 32px;
  font-size: 16px;
  border-bottom: #cccccc solid 1px;
}

.b-not-email p.center {
  font-weight: normal;
  line-height: 2.4;
  margin-bottom: 40px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .b-not-email p.center {
    text-align: left;
    padding: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .b-not-email p.center {
    padding: 0 10px;
    font-size: 14px;
  }
}

.b-not-email a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.b-shop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  margin: 0 40px;
}

@media screen and (max-width: 768px) {
  .b-shop-list {
    margin: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .b-shop-list {
    margin: 0 10px;
  }
}

.b-shop-list__item {
  width: calc(50% - 15px);
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .b-shop-list__item {
    width: 100%;
  }
}

.b-shop-list__item-title {
  color: #fff;
  padding: 10px 1em;
  border-radius: 5px;
  margin-bottom: 1em;
}

.b-shop-list__item:first-of-type h4 {
  background-color: #45b035;
}

.b-shop-list__item:nth-of-type(2) h4 {
  background-color: #006db7;
}

.b-shop-list__item:nth-of-type(3) h4 {
  background-color: #ff9700;
}

.b-shop-list__item:nth-of-type(4) h4 {
  background-color: #0ea8c7;
}

.b-shop-list__item p {
  padding-left: 0.8em;
}

/***************************

_reservation_request.scss

***************************/
br.br-tab {
  display: none;
}

@media screen and (max-width: 768px) {
  br.br-tab {
    display: inline;
  }
}

br.br-sp {
  display: none;
}

@media screen and (max-width: 428px) {
  br.br-sp {
    display: inline;
  }
}

.b-rese-req-top__text {
  font-size: 20px;
  line-height: 2.5;
  margin-bottom: 1em;
}

@media screen and (max-width: 550px) {
  .b-rese-req-top__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 428px) {
  .b-rese-req-top__text {
    font-size: 16px;
    line-height: 2;
  }
}

.b-rese-req-top__text .under-dotted {
  border-bottom: 2px dotted #222;
  padding-bottom: 0.2em;
}

@media screen and (max-width: 428px) {
  .b-rese-req-top__text .under-dotted {
    padding-bottom: 0.1em;
  }
}

@media screen and (max-width: 768px) {
  .b-rese-req-top__text span {
    display: inline-block;
  }
}

.b-rese-req-top__text+p {
  font-weight: normal;
  line-height: 2;
  margin-bottom: 70px;
}

.b-next-button {
  background-color: #fff;
}

.b-next-button--under {
  left: 0;
  transform: translateX(0);
}

.b-next-button--under::after {
  background-image: url(img/reservation-request/arrow-under.png);
}

@-webkit-keyframes bound-anim {
  0% {
    top: 0%;
    transform: scale(1);
  }

  20% {
    top: 5%;
    transform: scale(1.1, 0.9);
  }

  60% {
    top: -20%;
    transform: scale(1);
  }

  95% {
    top: 2%;
    transform: scale(1.05, 0.95);
  }

  100% {
    top: 0;
    transform: scale(1);
  }
}

@keyframes bound-anim {
  0% {
    top: 0%;
    transform: scale(1);
  }

  20% {
    top: 5%;
    transform: scale(1.1, 0.9);
  }

  60% {
    top: -20%;
    transform: scale(1);
  }

  95% {
    top: 2%;
    transform: scale(1.05, 0.95);
  }

  100% {
    top: 0;
    transform: scale(1);
  }
}

.b-next-button--under.fadeInBottom::before {
  -webkit-animation-name: bound-anim;
  animation-name: bound-anim;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

@media screen and (max-width: 550px) {
  .b-next-button--under--reservation {
    display: block;
    line-height: 50px;
  }
}

.b-next-button--under--reservation::before {
  content: "";
  background-image: url(img/reservation-request/visit-reservation-link.png);
  display: block;
  width: 147px;
  height: 110px;
  background-size: contain;
  position: absolute;
  left: 10px;
  bottom: -2px;
}

@media screen and (max-width: 550px) {
  .b-next-button--under--reservation::before {
    height: 80px;
    width: 106px;
  }
}

@media screen and (max-width: 428px) {
  .b-next-button--under--reservation::before {
    height: 72px;
    width: 95px;
  }
}

@media screen and (max-width: 550px) {
  .b-next-button--under--request {
    display: block;
    margin-top: 40px;
    line-height: 50px;
  }
}

.b-next-button--under--request::before {
  content: "";
  background-image: url(img/reservation-request/document-request-link.png);
  display: block;
  width: 111px;
  height: 108px;
  background-size: contain;
  position: absolute;
  left: 42px;
  bottom: 0;
}

@media screen and (max-width: 550px) {
  .b-next-button--under--request::before {
    height: 80px;
    width: 82px;
    left: 30px;
  }
}

@media screen and (max-width: 428px) {
  .b-next-button--under--request::before {
    height: 72px;
    width: 73px;
  }
}

.b-next-button--low {
  font-size: 16px;
  line-height: 58px;
  width: 360px;
}

@media screen and (max-width: 550px) {
  .b-next-button--low {
    width: 100%;
  }
}

.b-next-button--low::after {
  width: 34px;
  height: 34px;
  top: calc(50% - 17px);
  right: 13px;
}

.b-next-button--low:hover::after {
  right: 8px;
}

.b-next-button--long {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .b-next-button--long::after {
    right: 10px;
  }
}

.b-concierge {
  margin-top: 100px;
  border-radius: 15px;
  background-image: url(img/reservation-request/concierge-bg.jpg);
  background-size: cover;
  padding: 56px 64px;
  position: relative;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .b-concierge {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .b-concierge {
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .b-concierge {
    padding: 36px 36px 60px;
  }
}

@media screen and (max-width: 550px) {
  .b-concierge {
    padding-bottom: 150px;
  }
}

@media screen and (max-width: 428px) {
  .b-concierge {
    padding: 36px 20px 150px;
  }
}

.b-concierge::after {
  content: "";
  width: 160px;
  height: 220px;
  background-image: url(img/reservation-request/concierge.png);
  background-size: contain;
  display: block;
  position: absolute;
  bottom: -8px;
  right: -50px;
}

@media screen and (max-width: 768px) {
  .b-concierge::after {
    height: 176px;
    width: 130px;
    bottom: -4px;
  }
}

@media screen and (max-width: 550px) {
  .b-concierge::after {
    height: 141px;
    width: 104px;
    right: -10px;
  }
}

@-webkit-keyframes slide-anim {
  0% {
    right: -50px;
  }

  100% {
    right: -20px;
  }
}

@keyframes slide-anim {
  0% {
    right: -50px;
  }

  100% {
    right: -20px;
  }
}

/* @media screen and (max-width: 550px) {
  .b-concierge.display {
    right: -10px;
  }
} */
.b-concierge.display::after {
  -webkit-animation-name: slide-anim;
  animation-name: slide-anim;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  right: -20px;
}

@media screen and (max-width: 550px) {
  .b-concierge.display::after {
    -webkit-animation: none;
    animation: none;
    right: -10px;
  }
}

@-webkit-keyframes text-slide-in {
  0% {
    top: 0;
  }

  50% {
    top: -10px;
  }

  100% {
    top: 0;
  }
}

@keyframes text-slide-in {
  0% {
    top: 0;
  }

  50% {
    top: -10px;
  }

  100% {
    top: 0;
  }
}

.b-concierge.display .b-concierge__link p {
  -webkit-animation-name: text-slide-in;
  animation-name: text-slide-in;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  position: relative;
}

.b-concierge__text {
  width: calc(50% - 32px);
  margin-right: 100px;
}

@media screen and (max-width: 1200px) {
  .b-concierge__text {
    margin-right: 0;
    margin-bottom: 50px;
    width: 100%;
  }
}

.b-concierge__text-title {
  color: #ff4c73;
  font-size: 24px;
  border-bottom: 4px dotted #ff4c73;
  padding-bottom: 0.15em;
  display: inline-block;
  margin-bottom: 1em;
}

@media screen and (max-width: 550px) {
  .b-concierge__text-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 428px) {
  .b-concierge__text-title {
    font-size: 18px;
  }
}

.b-concierge__text p {
  font-size: 15px;
}

.b-concierge__link {
  text-align: center;
}

@media screen and (max-width: 550px) {
  .b-concierge__link {
    width: 100%;
  }
}

.b-concierge__link p {
  font-weight: bold;
  position: relative;
  margin-bottom: 24px;
}

.b-concierge__link p::before {
  content: url(img/reservation-request/check-before.png);
  margin-right: 15px;
  position: relative;
  top: 3px;
}

@media screen and (max-width: 550px) {
  .b-concierge__link p::before {
    position: absolute;
    left: 0;
    top: calc(100% - 20px);
    height: 20px;
    margin-right: 0;
  }
}

.b-concierge__link p::after {
  content: url(img/reservation-request/check-after.png);
  margin-left: 15px;
  position: relative;
  top: 3px;
}

@media screen and (max-width: 550px) {
  .b-concierge__link p::after {
    position: absolute;
    right: 0;
    top: calc(100% - 20px);
    height: 20px;
    margin-left: 0;
  }
}

.b-concierge__link p br {
  display: none;
}

@media screen and (max-width: 550px) {
  .b-concierge__link p br {
    display: inline;
  }
}

@media screen and (max-width: 428px) {
  .b-concierge__link a.b-next-button {
    line-height: 1.5;
  }
}

.b-concierge__link a.b-next-button br {
  display: none;
}

@media screen and (max-width: 428px) {
  .b-concierge__link a.b-next-button br {
    display: inline;
  }
}

.b-fukidashi-box {
  border: #222 2px solid;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
  padding: 60px 0 32px;
  margin-bottom: 100px;
  box-shadow: 4px 4px rgba(204, 204, 204, 0.6);
}

@-webkit-keyframes card-up {
  0% {
    opacity: 0.2;
    bottom: -30px;
  }

  100% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes card-up {
  0% {
    opacity: 0.2;
    bottom: -30px;
  }

  100% {
    opacity: 1;
    bottom: 0;
  }
}

.b-fukidashi-box.display .b-reservation-merit-list__item {
  -webkit-animation-name: card-up;
  animation-name: card-up;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  position: relative;
}

.b-fukidashi-box.display .b-reservation-merit-list__item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.b-fukidashi-box.display .b-reservation-merit-list__item:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.b-fukidashi-box.display .b-reservation-merit-list__item:nth-child(4) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.b-fukidashi-box--present {
  padding: 80px 0 50px;
  margin-bottom: 0;
}

.b-fukidashi-box--present.display .b-enquete-present__text {
  filter: blur(0);
}

.b-fukidashi-box--gray {
  background-color: #f6f6f6;
  padding: 85px 0 75px;
  border: #cccccc 2px solid;
  border-radius: 15px;
  box-shadow: 0 0 rgba(204, 204, 204, 0.6);
}

@media screen and (max-width: 550px) {
  .b-fukidashi-box--gray {
    padding: 85px 10px 75px;
  }
}

.b-fukidashi-box--orange {
  margin-top: 100px;
  padding-bottom: 54px;
}

.b-fukidashi-box__title {
  line-height: 82px;
  border: #222 2px solid;
  border-radius: 41px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: -41px;
  font-size: 24px;
  padding: 0 55px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(4px 4px rgba(204, 204, 204, 0.6));
}

@media screen and (max-width: 428px) {
  .b-fukidashi-box__title {
    font-size: 22px;
  }
}

.b-fukidashi-box__title::after {
  position: absolute;
  bottom: -42px;
  left: calc(50% - 8px);
}

.b-fukidashi-box__title--yellow {
  background-color: #f9f82d;
}

@media screen and (max-width: 428px) {
  .b-fukidashi-box__title--yellow {
    width: 100%;
    white-space: normal;
    line-height: 1.4;
    padding: 10px 0;
  }

  .b-fukidashi-box__title--yellow span {
    white-space: nowrap;
    display: block;
  }
}

.b-fukidashi-box__title--yellow::after {
  content: url(../img/document_request/yellow-fukidashi.png);
}

@media screen and (max-width: 428px) {
  .b-fukidashi-box__title--yellow::after {
    bottom: -18px;
  }
}

.b-fukidashi-box__title--blue {
  background-color: #a3dffa;
  line-height: 73px;
}

@media screen and (max-width: 550px) {
  .b-fukidashi-box__title--blue {
    width: 100%;
    white-space: normal;
    line-height: 1.4;
    padding: 10px 0;
  }

  .b-fukidashi-box__title--blue span {
    white-space: nowrap;
    display: block;
  }
}

.b-fukidashi-box__title--blue::after {
  content: url(img/reservation-request/blue-fukidashi.png);
  bottom: -35px;
}

@media screen and (max-width: 550px) {
  .b-fukidashi-box__title--blue::after {
    bottom: -15px;
  }
}

.b-fukidashi-box__title--blue-wrap .small {
  display: inline-block;
  position: absolute;
  font-weight: bold;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0px 0px rgba(204, 204, 204, 0.6));
}

.b-fukidashi-box__title--blue-wrap .small::before {
  content: url(img/reservation-request/check-before.png);
  margin-right: 15px;
  position: relative;
  top: 4px;
}

.b-fukidashi-box__title--blue-wrap .small::after {
  content: url(img/reservation-request/check-after.png);
  margin-left: 15px;
  position: relative;
  top: 4px;
}

.b-fukidashi-box__title--orange {
  background-color: #ffc895;
}

@media screen and (max-width: 550px) {
  .b-fukidashi-box__title--orange {
    padding: 0 20px;
    font-size: 22px;
  }
}

@media screen and (max-width: 428px) {
  .b-fukidashi-box__title--orange {
    line-height: 1.4;
    padding: 10px 20px;
  }
}

.b-fukidashi-box__title--orange::after {
  content: url(img/reservation-request/orange-fukidashi.png);
  bottom: -40px;
}

@media screen and (max-width: 428px) {
  .b-fukidashi-box__title--orange::after {
    bottom: -15px;
  }
}

.b-reservation-merit-list {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .b-reservation-merit-list {
    flex-wrap: wrap;
  }
}

.b-reservation-merit-list__item {
  width: 25%;
  padding: 22px 3%;
  border-right: #222 dotted 2px;
}

@media screen and (max-width: 1024px) {
  .b-reservation-merit-list__item {
    width: 50%;
    padding: 22px 4%;
  }
}

@media screen and (max-width: 600px) {
  .b-reservation-merit-list__item {
    width: 100%;
    padding: 22px 6%;
  }
}

@media screen and (max-width: 1024px) {
  .b-reservation-merit-list__item:nth-child(1) {
    padding-left: 0;
    margin-left: 4%;
    width: 46%;
    border-bottom: #222 dotted 2px;
  }
}

@media screen and (max-width: 768px) {
  .b-reservation-merit-list__item:nth-child(1) {
    width: 88%;
    margin-left: 6%;
    margin-right: 6%;
    border-right: none;
    padding-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .b-reservation-merit-list__item:nth-child(2) {
    padding-right: 0;
    margin-right: 4%;
    width: 46%;
    border-bottom: #222 dotted 2px;
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  .b-reservation-merit-list__item:nth-child(2) {
    width: 88%;
    margin-right: 6%;
    margin-left: 6%;
    padding-left: 0;
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  .b-reservation-merit-list__item:nth-child(3) {
    width: 88%;
    margin-left: 6%;
    margin-right: 6%;
    border-right: none;
    border-bottom: #222 dotted 2px;
    padding-left: 0;
    padding-right: 0;
  }
}

.b-reservation-merit-list__item:last-child {
  border-right: none;
}

@media screen and (max-width: 768px) {
  .b-reservation-merit-list__item:last-child {
    width: 88%;
    margin-left: 6%;
    margin-right: 6%;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.b-reservation-merit__num {
  display: inline-block;
  border-radius: 11px;
  border: #222 1px solid;
  text-align: center;
  line-height: 22px;
  width: 72px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f9f82d;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}

.b-reservation-merit__title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}

.b-reservation-merit__title--1line {
  line-height: 60px;
}

.b-reservation-merit__img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 32px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

.b-reservation-merit__p {
  font-size: 15px;
  font-weight: normal;
}

@media screen and (max-width: 428px) {
  .b-reservation-merit__p {
    font-size: 14px;
  }
}

.b-enquete-present {
  justify-content: center;
  margin-bottom: 24px;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .b-enquete-present {
    flex-direction: column;
    padding: 0 20px;
  }
}

@media screen and (max-width: 428px) {
  .b-enquete-present {
    padding: 0 10px;
  }
}

.b-enquete-present__text {
  filter: blur(5px);
  transition: all 0.8s;
}

.b-enquete-present__text h4 {
  /*background-color: #51075a;*/
  background-color: #d11e3e;
  color: #fff;
  text-align: center;
  font-size: 26px;
  line-height: 58px;
  border-radius: 26px;
  margin-bottom: 1em;
}

@media screen and (max-width: 550px) {
  .b-enquete-present__text h4 {
    line-height: 1.5;
    font-size: 22px;
    padding: 5px 0;
    border-radius: 50px;
  }
}

@media screen and (max-width: 428px) {
  .b-enquete-present__text h4 {
    font-size: 20px;
  }
}

@media screen and (max-width: 550px) {
  .b-enquete-present__text h4 span {
    display: block;
  }
}

.b-enquete-present__text p:not(.small) {
  font-size: 40px;
  color: #51075a;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .b-enquete-present__text p:not(.small) {
    font-size: 28px;
  }
}

@media screen and (max-width: 550px) {
  .b-enquete-present__text p:not(.small) {
    font-size: 22px;
  }
}

@media screen and (max-width: 428px) {
  .b-enquete-present__text p:not(.small) {
    font-size: 18px;
  }
}

.b-enquete-present__text .big {
  font-size: 69px;
}

@media screen and (max-width: 768px) {
  .b-enquete-present__text .big {
    font-size: 50px;
  }
}

@media screen and (max-width: 550px) {
  .b-enquete-present__text .big {
    font-size: 36px;
  }
}

@media screen and (max-width: 428px) {
  .b-enquete-present__text .big {
    font-size: 29px;
  }
}

@media screen and (max-width: 428px) {
  .b-enquete-present .small {
    padding: 0 10px;
  }
}

/*.b-enquete-present .small br {
  display: none;
}
@media screen and (max-width: 428px) {
  .b-enquete-present .small br {
    display: inline;
  }
}*/
.b-enquete-present+.center br {
  display: none;
}

@media screen and (max-width: 428px) {
  .b-enquete-present+.center br {
    display: inline;
  }
}

.b-reservation-request-title {
  background-image: url(../img/document_request/title-bg-blue.jpg);
  background-size: cover;
  position: relative;
  padding-top: 40px;
  margin-bottom: 135px;
}

@media screen and (max-width: 550px) {
  .b-reservation-request-title {
    padding-top: 20px;
    margin-bottom: 60px;
  }
}

.b-reservation-request-title img {
  position: absolute;
  bottom: 0;
  left: 104px;
}

@-webkit-keyframes bound-anim-img {
  0% {
    bottom: 0;
    transform: scale(1);
  }

  20% {
    bottom: -5%;
    transform: scale(1.1, 0.9);
  }

  60% {
    bottom: 20%;
    transform: scale(1);
  }

  95% {
    bottom: -5%;
    transform: scale(1.05, 0.95);
  }

  100% {
    bottom: 0;
    transform: scale(1);
  }
}

@keyframes bound-anim-img {
  0% {
    bottom: 0;
    transform: scale(1);
  }

  20% {
    bottom: -5%;
    transform: scale(1.1, 0.9);
  }

  60% {
    bottom: 20%;
    transform: scale(1);
  }

  95% {
    bottom: -5%;
    transform: scale(1.05, 0.95);
  }

  100% {
    bottom: 0;
    transform: scale(1);
  }
}

.b-reservation-request-title img.fade {
  transform: translateY(0);
  opacity: 1;
}

.b-reservation-request-title img.display {
  -webkit-animation-name: bound-anim-img;
  animation-name: bound-anim-img;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

@media screen and (max-width: 768px) {
  .b-reservation-request-title img {
    left: 30px;
    height: 100px;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-request-title img {
    left: 10px;
    height: 80px;
  }
}

@media screen and (max-width: 428px) {
  .b-reservation-request-title img {
    height: 60px;
  }
}

.b-reservation-request-title img.request {
  height: 150px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .b-reservation-request-title img.request {
    height: 100px;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-request-title img.request {
    height: 80px;
  }
}

@media screen and (max-width: 428px) {
  .b-reservation-request-title img.request {
    height: 60px;
  }
}

.b-reservation-request-title__text {
  margin: 0 20px;
  background-image: url(../img/document_request/title-bg-pink.png);
  background-size: 100% 100%;
  background-position: center bottom;
  text-align: center;
  height: 240px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .b-reservation-request-title__text {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .b-reservation-request-title__text {
    height: 160px;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-request-title__text {
    height: 120px;
  }
}

@media screen and (max-width: 428px) {
  .b-reservation-request-title__text {
    height: 80px;
    margin: 0 10px;
  }
}

.b-reservation-request-title__text span {
  display: block;
  line-height: 1;
}

.b-reservation-request-title__text span.big {
  font-size: 48px;
  padding: 106px 0 20px;
}

@media screen and (max-width: 1024px) {
  .b-reservation-request-title__text span.big {
    padding: 86px 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .b-reservation-request-title__text span.big {
    padding: 66px 0 16px;
    font-size: 40px;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-request-title__text span.big {
    padding: 46px 0 8px;
    font-size: 32px;
  }
}

@media screen and (max-width: 428px) {
  .b-reservation-request-title__text span.big {
    padding: 26px 0 4px;
    font-size: 26px;
  }
}

.b-reservation-request-title__text span.en {
  font-size: 13px;
  text-transform: uppercase;
}

@media screen and (max-width: 428px) {
  .b-reservation-request-title__text span.en {
    font-size: 11px;
  }
}

.b-bor-bot-title {
  text-align: center;
  font-size: 40px;
  border-bottom: 4px solid #202020;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .b-bor-bot-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .b-bor-bot-title {
    font-size: 24px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 428px) {
  .b-bor-bot-title {
    font-size: 20px;
    border-bottom: 3px solid #202020;
  }
}

.b-reservation-flow-list {
  position: relative;
  margin-bottom: 143px;
}

.b-reservation-flow-list::before {
  content: "";
  background-color: #eeeeee;
  width: 11px;
  height: calc(100% - 200px);
  position: absolute;
  top: 100px;
  left: 26px;
}

@media screen and (max-width: 550px) {
  .b-reservation-flow-list::before {
    height: calc(100% - 150px);
    left: 22px;
    top: 50px;
  }
}

@media screen and (max-width: 428px) {
  .b-reservation-flow-list::before {
    height: calc(100% - 180px);
    left: 22px;
    top: 50px;
  }
}

.b-reservation-flow-list__item {
  border-top: #dddddd 2px dotted;
  padding: 50px 12px 50px 0;
}

@media screen and (max-width: 1024px) {
  .b-reservation-flow-list__item {
    padding: 36px 12px 36px 0;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-flow-list__item {
    padding: 16px 0 24px;
  }
}

.b-reservation-flow-list__item:last-child {
  border-bottom: 2px dotted #ddd;
}

.b-reservation-flow {
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .b-reservation-flow {
    flex-wrap: wrap;
  }
}

.b-reservation-flow__num {
  display: inline-block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  background-color: #f9f82d;
  margin-right: 35px;
  border: #222 2px solid;
  box-shadow: 4px 4px rgba(204, 204, 204, 0.6);
  z-index: 2;
}

@media screen and (max-width: 550px) {
  .b-reservation-flow__num {
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 48px;
    margin-right: 20px;
  }
}

.b-reservation-flow__num--blue {
  background-color: #77c6e8;
}

.b-reservation-flow__title {
  width: 380px;
  color: #202020;
  font-size: 22px;
}

@media screen and (max-width: 550px) {
  .b-reservation-flow__title {
    width: auto;
    display: inline-block;
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

@media screen and (max-width: 428px) {
  .b-reservation-flow__title {
    font-size: 18px;
  }
}

.b-reservation-flow .text {
  width: calc(100% - 480px);
  font-weight: normal;
  font-size: 15px;
}

@media screen and (max-width: 1024px) {
  .b-reservation-flow .text {
    width: calc(100% - 95px);
    margin-left: 95px;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-flow .text {
    width: calc(100% - 70px);
    margin-left: 70px;
  }
}

@media screen and (max-width: 428px) {
  .b-reservation-flow .text {
    font-size: 14px;
  }
}

.b-reservation-flow .text .bold,
.b-reservation-flow .text .small {
  font-size: 14px;
  display: block;
  margin-top: 1em;
}

@media screen and (max-width: 428px) {

  .b-reservation-flow .text .bold,
  .b-reservation-flow .text .small {
    font-size: 13px;
  }
}

.b-doc-req-top-text {
  margin-bottom: 120px;
}

@media screen and (max-width: 1024px) {
  .b-document-box {
    flex-direction: column;
  }
}

.b-document-box__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .b-document-box__item {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}

.b-document-box__item img {
  margin-bottom: 32px;
}

.b-document-box__item h4 {
  margin-bottom: 1em;
  font-size: 18px;
}

@media screen and (max-width: 550px) {
  .b-document-box__item h4 span {
    display: inline-block;
  }
}

.b-document-box__item p {
  max-width: 450px;
  width: 100%;
  font-weight: normal;
  font-size: 15px;
}

.b-document-box__item:first-child {
  border-right: 2px dotted #222;
}

@media screen and (max-width: 1024px) {
  .b-document-box__item:first-child {
    border-right: none;
    border-bottom: 2px dotted #222;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}

.b-reservation-link-list--request {
  margin-top: 45px;
}

.b-request-text br {
  display: none;
}

@media screen and (max-width: 768px) {
  .b-request-text br {
    display: inline;
  }
}

.b-login-btn-box {
  justify-content: space-between;
  width: 500px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .b-login-btn-box {
    flex-direction: column;
    align-items: center;
  }
}

.b-login-btn-box .b-back-btn {
  left: 0;
  transform: translateX(0);
}

.b-login-btn-box .b-back-btn img {
  transform: rotate(180deg);
}

.b-login-links {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}

.b-login-links .b-next-button {
  line-height: 1.2;
  padding: 25px 0;
  margin-bottom: 30px;
  left: 0;
  transform: translateX(0);
}

.b-login-links .b-next-button.first {
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-login-links .b-next-button::after {
  width: 36px;
  height: 36px;
  top: calc(50% - 18px);
  right: 24px;
}

.b-login-links .b-next-button span {
  display: inline-block;
}

.reservation .center--login {
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .b-login-links {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 50px;
  }

  .b-login-links .b-next-button {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .b-login-links .b-next-button {
    padding-left: 20px;
    padding-right: 70px;
    border-radius: 60px;
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {
  .b-login-links .b-next-button {
    padding-left: 10px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 60px;
    font-size: 16px;
  }

  .b-login-links .b-next-button::after {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    right: 10px;
  }
}

.b-login-links.type02 {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.b-login-links.type02 .b-next-button{
  margin-bottom: 0;
}

.b-login-links.type02 a {
  width: calc(100% / 2 - 20px);

}

@media screen and (max-width: 1100px) {
  .b-login-links.type02 a {
    width: 100%;
  }
}


input[type="button"].b-next-button {
  background-image: url(../img/document_request/next-btn.png);
  background-position: calc(100% - 30px) center;
  background-repeat: no-repeat;
}

input[type="button"].b-back-btn {
  background-image: url(img/reservation/back-arrow.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 30px;
}

@media screen and (max-width: 550px) {
  input[type="button"].b-next-button {
    background-size: 36px;
  }
}

/* -----------------eventここから-------------------- */
.event__list {
  margin-bottom: 85px;
}

.event__cat-title {
  gap: 24px;
  display: flex;
  margin-bottom: 45px;
}

.event__cat-title span {
  font-size: 28px;
  border-bottom: 4px dotted #232323;
  display: inline-block;
  padding-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .event__cat-title span {
    font-size: 22px;
  }
}

@media screen and (max-width: 400px) {
  .event__cat-title span {
    font-size: 18px;
  }
}

/* -----------------event詳細ここから-------------------- */
.article__detail_post_date {
  color: #999;
  font-weight: normal;
}

.event-detail p {
  font-weight: normal;
}

.event-detail .box-border-gray .btn-round::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  background-color: #e74169;
  text-align: center;
  color: #fff;
  border-radius: 100%;
  transition: 0.3s;
  width: 34px;
  height: 34px;
  line-height: 33px;
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

.event-detail .box-border-gray div {
  border-bottom: 2px dotted #ddd;
}

.event-detail .box-border-gray div:nth-child(2) {
  padding-bottom: 40px;
  font-weight: normal;
}

.event-detail .box-border-gray div:nth-child(3) {
  padding: 30px 0;
}

.event-detail .box-border-gray div:nth-child(3) .f-14 {
  font-weight: normal;
}

.event-detail .box-border-gray .flex-justify-center {
  gap: 30px;
  border-bottom: none;
  padding-top: 50px;
}

.event-detail .box-border-gray {
  padding-bottom: 64px;
}

.article__detail_editor_block a.img-link {
  max-width: 100%;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
  display: inline-block;
  width: auto;
}

.article__detail_editor_block a.img-link::after {
  width: 0;
  height: 0;
}

.article__detail_editor_block a.img-link:hover {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .event-detail .box-border-gray .flex-justify-center {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 600px) {
  .article__detail_editor_block {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 400px) {
  .event-detail .box-border-gray {
    padding-left: 20px;
    padding-right: 20px;
  }

  .article__detail_note_box,
  .event-detail .box-border-gray div:nth-child(2) p {
    text-align: left;
  }
}

.b-select-arrow.disabled {
  pointer-events: none;
}

select:disabled,
option:disabled {
  color: #bbb;
  pointer-events: none;
}

.back-text {
  margin-top: 1em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

/*# sourceMappingURL=reservation.css.map */

/************ 20230522 ADDED *************/
.reservation__request_present_step_block {
  padding: 80px 5% 50px;
}

.reservation__request_present_step_intro {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2rem);
  line-height: 2.2;
  margin-bottom: 40px;
}

.reservation__request_present_step_item {
  margin-bottom: 50px;
}

.reservation__request_present_step_ttl {
  text-align: center;
  margin-bottom: 40px;
}

.lp__concierge_block .layout-reservation-merit {
  margin-top: 90px;
}

@media screen and (max-width: 550px) {
  .reservation__request_present_step_item .small.center {
    text-align: left;
  }

  .reservation__request_present_step_item .b-enquete-present {
    padding: 0 !important;
  }
}

/*-------------------------------------------
231027追加
--------------------------------------------- */
.demo.b-fukidashi-box--present {
  padding: 0;
}

.reservation__request_present-midorimachi {
  background: #ebf4f5;
  position: relative;
  margin-top: 36px;
  border-top: #222 2px solid;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.reservation__request_present-midorimachi_ttl {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  transform: translateY(-70%);
}

.reservation__request_present-midorimachi__list {
  margin-top: 56px;
  counter-reset: number;
  margin-bottom: 33px;
}

.reservation__request_present-midorimachi__item {
  background: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 21px 35px;
  border-radius: 101vw;
}

.reservation__request_present-midorimachi__item-text {
  position: relative;
  --deco-size: 87px;
  padding-right: calc(51px + var(--deco-size));
  display: inline-block;
}

.reservation__request_present-midorimachi__item-text::before {
  content: "";
  position: absolute;
  top: 80%;
  right: 0;
  width: var(--deco-size);
  height: 72px;
  background: url(img/reservation-request/present-midorimachi_list_deco.png) no-repeat center / contain;
  background-image: image-set(url(img/reservation-request/present-midorimachi_list_deco.png) 2x);
}

.reservation__request_present-midorimachi__item:last-of-type .reservation__request_present-midorimachi__item-text::before {
  position: static;
}

.reservation__request_present-midorimachi__item+.reservation__request_present-midorimachi__item {
  margin-top: 11px;
}

.reservation__request_present-midorimachi__item-title {
  position: relative;
}

.reservation__request_present-midorimachi__item-title::before {
  counter-increment: number;
  content: counter(number);
  font-size: 26px;
}

.reservation__request_present-midorimachi__item-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #1f1f1f;
  bottom: -0.3em;
}

.reservation__request_present-midorimachi__item-fee {
  color: #dc2513;
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  .reservation__request_present-midorimachi {
    margin-top: 18%;
    padding-top: 18%;
  }

  .reservation__request_present-midorimachi__item {
    padding: 21px 6%;
  }

  .reservation__request_present-midorimachi__item-text {
    padding-right: 0;
  }

  .reservation__request_present-midorimachi__item-text::before {
    top: auto;
    bottom: -55px;
    left: 50%;
    height: 52px;
  }
}

@media screen and (max-width: 600px) {
  .reservation__request_present-midorimachi__item {
    border-radius: 16px;
  }

  .reservation__request_present-midorimachi_ttl,
  .reservation__request_present-midorimachi__list {
    margin-bottom: 30px;
  }
}

/* 231204 */
input[type="button"].b-next-button--pink {
  background-color: #e74169;
  background-image: url(img/reservation/next-btn-black.png);
  color: #fff;
}

.form-top-button {
  margin: 24px 0 -40px;
}

/*-------------------------------------------
240226追加
--------------------------------------------- */
.reservation_request-mv {
  height: auto;
}

.b-fukidashi-box--campaign {
  padding: 0;
}

.f-skyblue {
  color: #33c5d7;
}

.lp__concierge_date_block {
  padding: 30px 20px;
  gap: 40px;
}

.-is-lp-202307 .lp__concierge_stripe_block:not(.stripe-pink) {
  background-color: #eef3f6;
  background-image: repeating-linear-gradient(135deg,
      transparent,
      transparent 13px,
      #e9f1f3 13px,
      #e9f1f3 26px);
  padding-bottom: 0;
  margin: 330px 0 230px;
}

.-is-lp-202307 .lp__concierge_stripe_block .hdg-balloon {
  position: relative;
  bottom: 0;
}

.lp__concierge_stripe_hdg_wrapper {
  position: absolute;
  top: -170px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 15px;
}

.lp__concierge_stripe_reason_list {
  position: relative;
  top: 150px;
  padding-top: 90px;
  gap: 60px;
}

.lp__concierge_stripe_reason_item {
  width: min(100%, 300px);
}

.lp__concierge_stripe_block .hdg-round_shadow {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.lp__concierge_stripe_reason_img {
  text-align: center;
}

.lp__anxiety_intro_block {
  padding: 0 15px;
  background: url(../img/reservation-request/202307_lp/anxiety_shape_bkg.svg) no-repeat center bottom;
}

.lp__anxiety_fukidashi_block {
  padding: 90px 40px 70px;
  position: relative;
}

.lp__anxiety_fukidashi_block::before,
.lp__anxiety_fukidashi_block::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.lp__anxiety_fukidashi_block::before {
  background: url(../img/reservation-request/202307_lp/anxiety_img02.png) no-repeat center / 100% auto;
  left: -15px;
  width: min(13vw, 228px);
  height: min(18.2vw, 320px);
}

.lp__anxiety_fukidashi_block::after {
  background: url(../img/reservation-request/202307_lp/anxiety_img03.png) no-repeat center / 100% auto;
  right: 40px;
  bottom: 25px;
  width: min(15vw, 174px);
  height: min(16.5vw, 196px);
}

.lp__chance_block .hdg-waveline_wrapper {
  margin-top: 100px;
}

.lp__anxiety_block {
  margin-top: 97px;
}

.lp__anxiety_block .box-border-shadow {
  margin-top: 0;
}

@media screen and (max-width: 768px) {

  .lp__concierge_date_block,
  .lp__concierge_stripe_reason_list {
    flex-wrap: wrap;
  }

  .lp__concierge_stripe_reason_item {
    width: 100%;
  }

  .lp__anxiety_fukidashi_block::after {
    right: 20px;
    bottom: 5px;
  }
}

@media screen and (min-width: 551px) {
  .lp__concierge_stripe_reason_img {
    height: 213px;
  }
}

@media screen and (max-width: 550px) {
  .lp__concierge_stripe_hdg_wrapper {
    top: -235px;
  }

  .lp__concierge_stripe_reason_img .mt-40 {
    margin-top: 0;
  }

  .lp__anxiety_fukidashi_block {
    padding: 60px 20px 80px;
  }

  .layout-reservation-merit {
    padding-bottom: 5px;
  }

  .lp__chance_block .hdg-waveline_wrapper {
    margin-top: 60px;
  }

  .lp__anxiety_block {
    margin-top: 60px;
  }
}

.b-reservation-rakuraku {
  padding: 60px 150px 50px;
  background-image: url(../img/reservation-request/202403_lp/reservation-left.png),
    url(../img/reservation-request/202403_lp/reservation-right.png);
  background-repeat: no-repeat;
  background-position: left 43px bottom, right 11px bottom;
  background-size: min(6.9vw, 103px), min(7.8vw, 117px);
}

.br-tab-none {
  display: inline;
}

.br-sp-none {
  display: inline;
}

.lp__money_hdg {
  margin-top: 106px;
}

@media screen and (max-width: 768px) {
  .b-reservation-rakuraku {
    padding: 60px 40px 50px;
  }

  .br-tab-none {
    display: none;
  }

  .lp__money_hdg {
    margin-top: 60px;
  }
}

@media screen and (max-width: 550px) {
  .b-reservation-rakuraku {
    padding: 60px 20px 50px;
  }

  .br-sp-none {
    display: none;
  }
}

.b-next-button--pdf {
  transform: translateX(0);
  left: 0;
}

.b-next-button--pdf::after {
  background-image: url(../img/reservation-request/arrow-pdf.png);
}

.b-next-button--pdf::before {
  content: "";
  background-image: url(../img/reservation-request/202403_lp/document-request-link.png);
  display: block;
  width: 92px;
  height: 116px;
  background-size: contain;
  position: absolute;
  left: 42px;
  bottom: 0;
}

@media screen and (max-width: 550px) {
  .b-next-button--pdf {
    font-size: 1.6rem;
    line-height: 50px;
    margin-top: 40px;
  }

  .b-next-button--pdf::before {
    height: 100%;
    width: 45px;
    left: 27px;
    background-position: bottom;
  }
}

.lp__money_block {
  overflow-x: hidden;
}


/*-------------------------------------------

20240722 ADDED

--------------------------------------------- */
.t-filled_radius_inner {
  display: inline-block;
  color: #fff;
  background-color: #E53F66;
  font-size: 2rem;
  border-radius: 50px;
  padding: 10px 30px;
}

.f-red {
  color: #DC2513;
}

.main.-is-202408 .b-enquete-present {
  gap: 50px;
}

.reservation-request-intro .bkg-skyblue {
  padding-bottom: 15%;
}

.reservation-request-intro-second {
  padding: 50px 0 15%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(235, 242, 243, 1) 100%);
}

.reservation-request-intro-second .b-fukidashi-box {
  margin: 100px 0 50px;
}

.reservation-request-intro-second .b-reservation-merit-list__item {
  width: 100%;
}

.reservation-request-present_second {
  padding: 100px 0;
}

.reservation-request-merit-wrapper {
  padding: 110px 0 4vw;
}

.reservation-request-merit-wrapper .layout-reservation-merit {
  padding: 0;
}

.reservation-request-merit-wrapper .b-fukidashi-box {
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .reservation-request-intro-second .b-reservation-merit-list__item {
    width: 33%;
  }
}


@media screen and (max-width: 1024px) {
  .reservation-request-intro-second .b-reservation-merit-list__item {
    margin: 0 6%;
    border-right: none;
  }

  .reservation-request-intro-second .b-reservation-merit-list__item:last-child {
    border-bottom: none;
  }
}

@media screen and (min-width: 769px) {
  .main.-is-202408 .reservation__request_present_step_block {
    padding-top: 50px;
  }
}

/* 250128 */
.p-0 {
  padding: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.reservation-202501 .top-resev img {
  width: 100%;
}

.wave-white {
  background-color: #fff;
  position: relative;
}

.wave-white::before {
  content: "";
  background-image: url(../img/reservation-request/202501/wave.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 70px;
  display: block;
  position: absolute;
  top: -69px;
  left: 0;
}

.bkg-linear {
  background: linear-gradient(#FFFFFF, #EBF2F3);
}

.bkg-w {
  background: #FFFFFF;
}

@media screen and (min-width: 1025px) {
  .b-reservation-merit-list__item.column-3 {
    width: 34%;
  }
}

@media screen and (max-width: 1024px) {
  .b-reservation-merit-list__item.column-3 {
    width: 100%;
  }
}

.hdg-yellowline {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 2;
  margin-bottom: 15px;

  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #FFFF99;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

.reservation-202501 .layout-reservation-merit {
  padding-bottom: 150px;
}

@media screen and (min-width:550px) {
  .b-reservation_campaign01 .lp__anxiety_fukidashi_block {
    padding-bottom: 110px;
  }
}

@media screen and (min-width:700px) {
  .b-reservation_campaign01 .lp__anxiety_fukidashi_block {
    padding-bottom: 180px;
  }
}

@media screen and (min-width:1230px) {
  .b-reservation_campaign01 .lp__anxiety_fukidashi_block {
    padding-bottom: 60px;
  }
}

.b-reservation_campaign03 .lp__money_hdg {
  margin-top: 0;
}


.b-reservation_campaign03_img {
  width: 100%;
}

.b-reservation_campaign03_img img {
  width: 100%;
  object-fit: cover;
}

.b-fukidashi-box--present.pt0 {
  padding-top: 0;
}

.reservation-202501 .lp__voice_list.-money {
  margin-bottom: 60px;
}


@media screen and (min-width:960px) {
  .reservation__request_present_step_list {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .reservation__request_present_step_list .b-enquete-present__text {
    width: 80%;
  }
}

/* 250714 */
.t-yellow {
  background-image: linear-gradient(transparent 50%, #ffff00 50%);
}

.b-next-button--under--reservation:has(span) {
  line-height: 1.5 !important;
  padding: 20px 13px;
}

@media screen and (min-width:550px) {
  .b-next-button--under--reservation:has(span) {
    padding: 20px 35px;
  }
}

.b-next-button--under--reservation span {
  font-size: 14px;
}

@media screen and (min-width:960px) {
  .b-next-button--under--reservation span {
    font-size: 18px;
  }
}

.b-fukidashi-box__title.lines-2 {
  line-height: 1;
}

@media screen and (min-width:540px) {
  .b-fukidashi-box__title.lines-2 {
    line-height: 1.8;
  }
}

@media screen and (min-width:768px) {
  .b-fukidashi-box__title.lines-2 {
    line-height: 88px;
  }
}

.b-fukidashi-box__title.lines-2::after {
  bottom: -12px;
}

@media screen and (min-width:540px) {
  .b-fukidashi-box__title.lines-2::after {
    bottom: -23px;
  }
}

@media screen and (min-width:768px) {
  .b-fukidashi-box__title.lines-2::after {
    bottom: -45px;
  }
}

.campaign_img img {
  width: 100%;
}

.reservation_250714_concierge {
  background: url(../img/reservation-request/250714/bg_campaign.jpg);
  padding: 30px;
  border-radius: 15px;
  background-repeat: repeat-x;
  background-size: contain;
  position: relative;
  padding-bottom: 230px;
  margin-top: 70px;
}

@media screen and (min-width:1024px) {
  .reservation_250714_concierge {
    padding-bottom: 30px;
  }
}

.reservation_250714_concierge::after {
  content: "";
  width: 160px;
  height: 215px;
  display: block;
  background: url(../img/reservation-request/concierge.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media screen and (min-width:1024px) {
  .reservation_250714_concierge::after {
    bottom: 0;
    left: auto;
    right: -10px;
  }
}

.reservation_250714_concierge_item {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

@media screen and (min-width:1024px) {
  .reservation_250714_concierge_item {
    flex-direction: row;
  }
}


.reservation_250714_concierge_dt {
  font-size: 18px;
  font-weight: bold;
  color: #FF4C72;
  border-bottom: 4px dotted #FF4C72;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.reservation_250714_concierge_dt br {
  display: none;
}

@media screen and (min-width:768px) {
  .reservation_250714_concierge_dt {
    font-size: 24px;
  }

  .reservation_250714_concierge_dt br {
    display: block;
  }
}

.reservation_250714_concierge_dd {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.reservation_250714_concierge_textbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  /* max-width: 630px; */
  max-width: 800px;
}

@media screen and (min-width:1300px) {
  .reservation_250714_concierge_textbox {
    max-width: 1000px;
  }
}

.reservation_250714_concierge_btn-wrap {
  width: 100%;
  max-width: 360px;
}

.reservation_250714_concierge_btn-wrap .b-next-button {
  font-size: 16px;
  line-height: normal;
  padding: 20px;
  padding-right: 60px;
}

.reservation_250714_concierge_btn-wrap .b-next-button::after {
  right: 18px;
}

.pt180 {
  padding-top: 160px;
}

@media screen and (min-width:768px) {
  .pt180 {
    padding-top: 180px;
  }
}

.fz-18 {
  font-size: 18px;
}

.layout-rese-req-top_250714 {
  padding-top: 80px;
  padding-bottom: 130px;
}

.bg_wave {
  position: relative;
}

.bg_wave::before {
  content: "";
  background-image: url(../img/reservation-request/202501/wave-gray.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 70px;
  display: block;
  position: absolute;
  top: -69px;
  left: 0;
}

.bg_wave::after {
  content: "";
  background-image: url(../img/reservation-request/202501/wave-gray.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 70px;
  display: block;
  position: absolute;
  bottom: -69px;
  left: 0;
  transform: scale(1, -1);
}

.top-resev_250714 {
  margin-bottom: 0;
}

.b-next-button_250714 {
  margin-top: 20px !important;
}

/* 250723 */
.visually_hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.b-jiyuukengaku-qanda {
  margin-top: 100px;
}

.b-jiyuukengaku-qanda__q {
  width: calc(100% - 30px);
  filter: drop-shadow(4px 4px rgba(204, 204, 204, 0.6));
  border: 2px solid #222;
  background-color: #46CDD3;
  background-image: repeating-linear-gradient(-45deg,
      #1ac8cf,
      #1ac8cf 1px,
      transparent 0,
      transparent 10px),
    repeating-linear-gradient(45deg,
      #1ac8cf,
      #1ac8cf 1px,
      transparent 0,
      transparent 10px);
  padding: 15px 23px 15px 113px;
  border-radius: 9999px;
  position: relative;
  font-size: 2.6rem;
  font-weight: bold;
  z-index: 1;
  color: #fff;
}

.b-jiyuukengaku-qanda__q::before {
  content: "Q.";
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
}

.b-jiyuukengaku-qanda__q::after {
  content: url(../img/reservation-request/250714/blue-qanda-fukidashi.png);
  position: absolute;
  bottom: -22px;
  left: calc(50% - 8px);
}

.b-jiyuukengaku-qanda__a {
  border: 2px solid #222;
  border-radius: 20px;
  margin-top: -11px;
  margin-left: 30px;
  position: relative;
  padding: 26px 20px 24px 135px;
}

.b-jiyuukengaku-qanda__a::before {
  content: "A.";
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  font-weight: 700;
  padding: 26px 20px 15px 26px;
  border-right: 2px dotted #222;
  font-size: 4rem;
  color: rgba(231, 65, 105, 1);
}

.t-dottedline {
  border-bottom: 2px dotted #000;
}

.b-jiyuukengaku-qanda__item+.b-jiyuukengaku-qanda__item {
  margin-top: 54px;
}

@media screen and (max-width: 768px) {
  .b-jiyuukengaku-qanda__q {
    width: 100%;
    padding-left: 90px;
    /* font-size: 2rem; */
    font-size: 18px;
  }

  .b-jiyuukengaku-qanda__q::after {
    bottom: -18px;
  }
}

@media screen and (max-width: 550px) {
  .b-jiyuukengaku-qanda__q {
    width: 100%;
    padding-left: 48px;
    /* font-size: 2rem; */
    font-size: 14px;
  }

  .b-jiyuukengaku-qanda__q::before {
    font-size: 2rem;
    left: 20px;
  }

  .b-jiyuukengaku-qanda__q::after {
    bottom: -15px;
  }

  .b-jiyuukengaku-qanda__a {
    padding-left: 68px;
    margin-left: 0;
  }

  .b-jiyuukengaku-qanda__a::before {
    font-size: 2rem;
    padding-left: 16px;
    padding-right: 10px;
  }
}