@charset "UTF-8";
/*-------------
アニメーション
---------------*/
.img_animation {
  position: relative;
  overflow: hidden;
}

.img_animation::before {
  content: "";
  background: linear-gradient(75deg, white 0%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0) 55%, white 100%);
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  pointer-events: none;
}

.img_animation::after {
  content: "";
  background-color: #5d5e61;
  display: block;
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: skew(15deg) translateX(-150%);
  transform: skew(15deg) translateX(-150%);
}

.img_animation img {
  opacity: 0;
}

.img_animation.active::after {
  -webkit-animation-name: img_anime;
  animation-name: img_anime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.img_animation.active img {
  -webkit-animation-name: emergence;
  animation-name: emergence;
  -webkit-animation-duration: 0.65s;
  animation-duration: 0.65s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.phrase_animation span {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 104, 183, 0);
  color: rgba(255, 255, 255, 0);
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
  -webkit-transition-duration: 0.01s;
  transition-duration: 0.01s;
  z-index: 10;
}

.phrase_animation span::after {
  content: "";
  display: block;
  height: 100%;
  width: 150%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  color: transparent;
}

.phrase_animation.active span {
  /*background-color: #5d5e61;*/
  color: white;
}

.phrase_animation.active span::after {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: img_anime;
  animation-name: img_anime;
}

@-webkit-keyframes img_anime {
  0% {
    -webkit-transform: skew(15deg) translateX(-150%);
    transform: skew(15deg) translateX(-150%);
  }
  42.5%,
  44.5% {
    -webkit-transform: skew(15deg) translateX(-20%);
    transform: skew(15deg) translateX(-20%);
  }
  100% {
    -webkit-transform: skew(15deg) translateX(150%);
    transform: skew(15deg) translateX(150%);
  }
}

@keyframes img_anime {
  0% {
    -webkit-transform: skew(15deg) translateX(-150%);
    transform: skew(15deg) translateX(-150%);
  }
  42.5%,
  44.5% {
    -webkit-transform: skew(15deg) translateX(-20%);
    transform: skew(15deg) translateX(-20%);
  }
  100% {
    -webkit-transform: skew(15deg) translateX(150%);
    transform: skew(15deg) translateX(150%);
  }
}

@-webkit-keyframes emergence {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes emergence {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*------------------
アニメーション
-------------------*/
.fadeIn {
  opacity: 0;
  -webkit-transition: all 1300ms;
  transition: all 1300ms;
}

.fadeIn-up {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}

.fadeIn.scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein {
  opacity: 0;
  -webkit-animation: fadein 6s ease forwards;
          animation: fadein 6s ease forwards;
}

@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

.fadeIn1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.fadeIn2 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.fadeIn3 {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.fadeIn4 {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

@media screen and (max-width: 768px) {
  .royal-order .firenze .w1000 {
    bottom: 14.42vw;
    top: auto;
  }
}

.navbar {
  margin-bottom: 0;
  background-color: #f6e8f1;
}

.nav1 .container-fluid {
  background-color: #cec7a2;
}

.royal-order {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.royal-order img {
  max-width: 100%;
}

.royal-order .w1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.royal-order .title h2 {
  font-size: clamp(15px, 3.23vw, 62px);
  text-align: center;
  font-weight: 400;
}

.royal-order .fv {
  position: relative;
}

.royal-order .fv h2 {
  font-size: 60px;
  color: #fff;
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  white-space: nowrap;
}

.royal-order .fv img {
  width: 100%;
}

.royal-order .fv p {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}

.royal-order .fv p span {
  line-height: 2;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .royal-order .w1000 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .royal-order .title .w1000 {
    padding: 0;
  }
  .royal-order .title .w1000 h2 {
    font-size: clamp(31px, 8.27vw, 62px);
  }
  .royal-order .fv h2 {
    font-size: clamp(31px, 8.27vw, 62px);
    top: 24%;
  }
  .royal-order .fv p {
    width: 100%;
    text-align: center;
    top: 46%;
    line-height: 1.6;
  }
  .royal-order .fv p span {
    font-size: clamp(15px, 4vw, 30px);
  }
}

/*fv*/
@media screen and (max-width: 1024px) {
  .royal-order .fv p {
    top: 64%;
  }
  .royal-order .fv p span {
    font-size: clamp(18px, 1.25vw, 24px);
  }
}

@media screen and (max-width: 767px) {
  .fv p span {
    font-size: clamp(15px, 4vw, 30px);
  }
}

/**/
/*--------
about
---------*/
.royal-order .about {
  background-color: #f6f6f6;
  padding: 8.33vw 0 7.81vw;
  margin: 0;
}

.royal-order .about h2 {
  text-align: center;
  font-size: 60px;
  line-height: 2.86;
  font-weight: 400;
  margin: 5vw 0;
}

.royal-order .about h2 span {
  display: block;
  font-size: 36px;
  line-height: 1.33;
  font-weight: 500;
  margin: 10vw 0;
}

.royal-order .about .about_text {
  text-align: center;
}

.royal-order .about .about_text span {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
}

.royal-order .about .about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 9.64vw;
}

.royal-order .about .about-list li {
  /*
                &:first-of-type {
                    width: 11vw;
                }

                width: 16.15vw;
                */
  width: 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.royal-order .about .about-list li h3 {
  font-size: 30px;
  margin-bottom: 3.13vw;
  line-height: 1.73;
  text-align: center;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.royal-order .about .about-list li h3 span {
  font-style: italic;
  font-size: 30px;
  line-height: 1.73;
  margin-right: 10px;
}

.royal-order .about .about-list li p {
  font-size: 16px;
  line-height: 1.87;
  margin-bottom: 2.6vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.royal-order .about .about-list .img-wrap {
  text-align: center;
  height: 224px;
  margin-top: auto;
}

.royal-order .about .about-list .img-wrap img {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .royal-order .about h2 {
    font-size: clamp(31px, 8.27vw, 62px);
    margin: 26vw 0;
  }
  .royal-order .about h2 span {
    font-size: clamp(20px, 5.33vw, 40px);
    line-height: 1.2;
  }
  .royal-order .about .about_text span {
    font-size: clamp(20px, 5.33vw, 40px);
    line-height: 1.2;
  }
  .royal-order .about .about-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .royal-order .about .about-list li {
    width: 100%;
  }
  .royal-order .about .about-list li:first-of-type {
    width: 100%;
  }
  .royal-order .about .about-list li:first-of-type img {
    width: 24vw;
  }
  .royal-order .about .about-list li:first-of-type h3 {
    margin-top: 40vw;
  }
  .royal-order .about .about-list li:nth-of-type(2) img {
    width: 26.67vw;
  }
  .royal-order .about .about-list li:nth-of-type(2) h3 {
    margin-top: 40vw;
  }
  .royal-order .about .about-list li:nth-of-type(3) img {
    width: 57.33vw;
  }
  .royal-order .about .about-list li:nth-of-type(3) h3 {
    margin-top: 40vw;
  }
  .royal-order .about .about-list li h3 {
    font-size: clamp(20px, 5.33vw, 40px);
    height: auto;
  }
  .royal-order .about .about-list li h3 span {
    font-size: clamp(20px, 5.33vw, 40px);
    margin-right: 2vw;
  }
  .royal-order .about .about-list li p {
    font-size: clamp(15px, 4vw, 30px);
  }
  .royal-order .about .about-list li .img-wrap {
    height: auto;
  }
  .royal-order .about .about-list li .img-wrap img {
    margin: 10.67vw 0;
  }
}

/*-------------
firenze
--------------*/
.royal-order .firenze {
  position: relative;
  background: url("../img/royal-order/new-royal-order/img3_1.jpg") no-repeat right/100%;
}

.royal-order .firenze .w612 {
  color: white;
  width: 61.2%;
  margin: 0 0 0 auto;
  padding: 190px 0 480px;
}

.royal-order .firenze .top-text {
  font-size: 1.56vw;
  margin: 0;
  text-align: center;
}

.royal-order .firenze .top-text span {
  height: 6.25vw;
  display: block;
  background-color: #fff;
  margin: 2.08vw auto 5vw;
}

.royal-order .firenze h3 {
  font-size: 120px;
  margin-bottom: 40px;
}

.royal-order .firenze .sub-title {
  font-size: 24px;
}

.royal-order .firenze .sub-title span {
  display: block;
  font-size: 36px;
  line-height: 2.16;
}

.royal-order .firenze .text {
  /* text-shadow */
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0);
  margin: 1.04vw 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.royal-order .firenze .more {
  margin-left: auto;
  width: 12.5vw;
  text-align: center;
  border: 1px solid #fff;
}

.royal-order .firenze .more a {
  display: block;
  color: #fff;
  padding: 0.83vw 1.3vw;
  font-size: 20px;
}

.royal-order .firenze2 {
  position: relative;
  background: url("../img/royal-order/new-royal-order/new-firenze-bg.jpg") no-repeat right/100%;
  padding-top: 10.42vw;
  padding-bottom: 18.23vw;
}

.royal-order .firenze2 .text2 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 30px;
  color: #fff;
  text-align: center;
  padding-bottom: 12.32vw;
}

.royal-order .firenze2 .w612 {
  color: white;
  width: 61.2%;
  margin: 0 0 0 auto;
}

.royal-order .firenze2 .top-text {
  font-size: 1.56vw;
  margin: 0;
  text-align: center;
}

.royal-order .firenze2 .top-text span {
  height: 6.25vw;
  display: block;
  background-color: #fff;
  margin: 2.08vw auto 5vw;
}

.royal-order .firenze2 h3 {
  font-size: 120px;
  margin-bottom: 40px;
}

.royal-order .firenze2 .sub-title {
  font-size: 24px;
}

.royal-order .firenze2 .sub-title span {
  display: block;
  font-size: 36px;
  line-height: 2.16;
}

.royal-order .firenze2 .text {
  /* text-shadow */
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0);
  margin: 1.04vw 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.royal-order .firenze2 .more {
  margin-left: auto;
  width: 12.5vw;
  text-align: center;
  border: 1px solid #fff;
}

.royal-order .firenze2 .more a {
  display: block;
  color: #fff;
  padding: 0.83vw 1.3vw;
  font-size: 20px;
}

.royal-order .firenze2 .venezia {
  margin: 0 auto 0 0;
}

.royal-order .firenze2 .venezia h3 {
  margin-top: 19.88vw;
}

.royal-order .firenze2 .venezia .text {
  margin-bottom: 5.21vw;
}

.royal-order .firenze2 .venezia .more {
  margin-left: 0;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .royal-order .firenze .w612 {
    color: white;
    width: 61.2%;
    margin: 0 0 0 auto;
    padding: 80px 0 74px;
  }
}

@media screen and (max-width: 768px) {
  .royal-order .firenze {
    background: url("../img/royal-order/new-royal-order/sp2_1.jpg") no-repeat top center/cover;
  }
  .royal-order .firenze .w612 {
    width: auto;
    padding: 64vw 0 13vw;
  }
  .royal-order .firenze .w1000 {
    padding: 0 4vw;
    width: 100%;
  }
  .royal-order .firenze .w1000 .top-text {
    font-size: clamp(20px, 5.33vw, 40px);
  }
  .royal-order .firenze .w1000 .top-text span {
    height: 16vw;
    margin-bottom: 51vw;
  }
  .royal-order .firenze .w1000 h3 {
    font-size: clamp(60px, 16vw, 120px);
    margin-left: 0;
  }
  .royal-order .firenze .w1000 .sub-title {
    margin-left: 0;
    font-size: clamp(15px, 4vw, 30px);
  }
  .royal-order .firenze .w1000 .sub-title span {
    font-size: clamp(20px, 5.33vw, 40px);
  }
  .royal-order .firenze .w1000 .text {
    margin-left: 0;
    margin-bottom: 9.33vw;
    font-size: clamp(15px, 4vw, 30px);
    margin-top: 8vw;
  }
  .royal-order .firenze .w1000 .more {
    width: 43.33vw;
  }
  .royal-order .firenze .w1000 .more a {
    font-size: clamp(15px, 4vw, 30px);
    padding: 2.67vw 0;
  }
  .royal-order .firenze2 {
    background: url("../img/royal-order/new-royal-order/sp-new-firenze-bg.jpg") no-repeat top center/100%;
  }
  .royal-order .firenze2 .w612 {
    width: auto;
    padding: 60vw 0 0;
  }
  .royal-order .firenze2 .w1000 {
    padding: 0 4vw;
    width: 100%;
  }
  .royal-order .firenze2 .w1000 .text2 {
    font-size: clamp(20px, 5.33vw, 40px);
  }
  .royal-order .firenze2 .w1000 .top-text {
    font-size: clamp(20px, 5.33vw, 40px);
  }
  .royal-order .firenze2 .w1000 .top-text span {
    height: 16vw;
    margin-bottom: 51vw;
  }
  .royal-order .firenze2 .w1000 h3 {
    font-size: clamp(60px, 16vw, 120px);
    margin-left: 0;
  }
  .royal-order .firenze2 .w1000 .sub-title {
    margin-left: 0;
    font-size: clamp(15px, 4vw, 30px);
  }
  .royal-order .firenze2 .w1000 .sub-title span {
    font-size: clamp(20px, 5.33vw, 40px);
  }
  .royal-order .firenze2 .w1000 .text {
    margin-left: 0;
    margin-bottom: 9.33vw;
    font-size: clamp(15px, 4vw, 30px);
    margin-top: 8vw;
  }
  .royal-order .firenze2 .w1000 .more {
    width: 43.33vw;
  }
  .royal-order .firenze2 .w1000 .more a {
    font-size: clamp(15px, 4vw, 30px);
    padding: 2.67vw 0;
  }
  .royal-order .firenze2 .w1000 .venezia {
    padding: 34.5vw 0 0;
  }
}

/*-------------
promise
--------------*/
.royal-order .promise .w1000 {
  padding: 1.04vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.royal-order .promise .w1000 .text-wrap h3 {
  font-size: 36px;
  line-height: 1.33;
  margin-top: 9.11vw;
  margin-bottom: 4.95vw;
}

.royal-order .promise .w1000 .text-wrap p {
  font-size: 16px;
  line-height: 1.87;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 768px) {
  .royal-order .promise .w1000 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4vw;
  }
  .royal-order .promise .w1000 .text-wrap h3 {
    font-size: clamp(20px, 5.33vw, 40px);
    text-align: center;
  }
  .royal-order .promise .w1000 .text-wrap p {
    font-size: clamp(15px, 4vw, 30px);
    position: relative;
    z-index: 2;
  }
  .royal-order .promise .w1000 img {
    width: 24vw;
    margin-left: auto;
    margin-top: -19vw;
    position: relative;
    z-index: 1;
  }
}

/*-------------
service
--------------*/
.royal-order .service {
  position: relative;
  color: #fff;
  background: url("../img/royal-order/new-royal-order/img5.jpg") no-repeat center/cover;
}

.royal-order .service .w1000 {
  padding: 160px 0 160px;
}

.royal-order .service .w1000 .w50 {
  width: 50%;
  margin: 0 0 0 auto;
}

.royal-order .service .w1000 h3 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 5.21vw;
}

.royal-order .service .w1000 p {
  font-size: 16px;
  line-height: 1.87;
  margin-bottom: 3.13vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.royal-order .service .w1000 .more {
  width: 12.5vw;
  margin-left: auto;
  text-align: center;
  border: 1px solid #fff;
}

.royal-order .service .w1000 .more a {
  display: block;
  color: #fff;
  padding: 0.83vw 1.3vw;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .royal-order .service {
    background: url("../img/royal-order/new-royal-order/sp3.jpg") no-repeat center/100%;
  }
  .royal-order .service .w1000 {
    width: 100%;
    padding: 60px 4vw;
  }
  .royal-order .service .w1000 h3 {
    font-size: clamp(20px, 5.33vw, 40px);
    margin: 0 0 50px;
    text-align: center;
  }
  .royal-order .service .w1000 p {
    font-size: clamp(15px, 4vw, 30px);
  }
  .royal-order .service .w1000 .more {
    width: 43.33vw;
  }
  .royal-order .service .w1000 .more a {
    font-size: clamp(15px, 4vw, 30px);
    padding: 2.67vw 0;
  }
  .royal-order .service .w1000 .w50 {
    width: auto;
  }
}

/*-------------
order
--------------*/
.royal-order .order {
  background-image: url(../img/firenze/bg5.jpg);
  background-size: 100% 100%;
  padding: 13vw 0 13vw;
  color: #fff;
}

.royal-order .order .sub-title {
  font-size: 60px;
  line-height: 1.33;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4.43vw;
}

.royal-order .order .sub-title span {
  font-size: 30px;
  line-height: 1;
}

.royal-order .order .order-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.royal-order .order .left-content {
  width: 48%;
  position: relative;
  z-index: 1;
}

.royal-order .order .left-content .user {
  background-color: #e8ddb9;
  color: #43393c;
  font-size: 30px;
  line-height: 0.73;
  padding: 0.94vw 0 0.94vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 23px;
}

.royal-order .order .left-content .user::before {
  content: "";
  width: 63px;
  height: 47px;
  margin-right: 1.56vw;
  background-size: 100% 100%;
  display: inline-block;
}

.royal-order .order .left-content .border-center1 {
  width: 0.36vw;
  height: 26px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .left-content .border-center2 {
  width: 0.36vw;
  height: 162px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .left-content .border-center3 {
  width: 0.36vw;
  height: 510px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .left-content .border-center4 {
  width: 0.36vw;
  height: 86px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .left-content .border-center9 {
  width: 0.36vw;
  height: 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .left-content .border-center10 {
  width: 0.36vw;
  height: 24px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .left-content .absolute {
  width: 0.36vw;
  height: 90%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: -1;
}

.royal-order .order .left-content .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}

.royal-order .order .left-content .step .step-number {
  background-image: url(../img/firenze/step.png);
  background-repeat: no-repeat no-repeat;
  background-size: 100% 101%;
  padding: 2.08vw 2.34vw 2.08vw 0.42vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0.5;
  margin-right: 0.56vw;
}

.royal-order .order .left-content .step .step-number span {
  font-size: clamp(10px, 0.94vw, 18px);
}

.royal-order .order .left-content .step p {
  font-size: 24px;
  line-height: 1.25;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.royal-order .order .left-content .step p span {
  font-size: 0.83vw;
}

.royal-order .order .left-content .step:nth-of-type(3) {
  margin-top: 26px;
  margin-bottom: 162px;
}

.royal-order .order .left-content .step:nth-of-type(5) {
  margin-top: 20px;
  margin-bottom: 591px;
}

.royal-order .order .left-content .step:nth-of-type(7) {
  margin-top: 24px;
  margin-bottom: 86px;
}

.royal-order .order .right-content {
  width: 48%;
  position: relative;
  z-index: 1;
}

.royal-order .order .right-content .alika {
  background-color: #f7efdd;
  color: #43393c;
  font-size: 30px;
  line-height: 0.73;
  padding: 0.94vw 0 0.94vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.royal-order .order .right-content .alika::before {
  content: "";
  width: 63px;
  margin-right: 1.56vw;
  height: 47px;
  background-image: url(../img/firenze/alika.png);
  background-size: 100% 100%;
  display: inline-block;
}

.royal-order .order .right-content .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}

.royal-order .order .right-content .step .step-number {
  background-image: url(../img/firenze/step.png);
  background-repeat: no-repeat no-repeat;
  background-size: 100% 101%;
  padding: 2.08vw 2.34vw 2.08vw 0.42vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0.5;
  margin-right: 0.56vw;
}

.royal-order .order .right-content .step .step-number span {
  font-size: 18px;
}

.royal-order .order .right-content .step p {
  font-size: 24px;
  line-height: 1.25;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.royal-order .order .right-content .step p span {
  font-size: 16px;
}

.royal-order .order .right-content .step:nth-of-type(2) {
  margin-top: 313px;
  margin-bottom: 308px;
}

.royal-order .order .right-content .step:nth-of-type(4) {
  margin-top: 17px;
  margin-bottom: 17px;
}

.royal-order .order .right-content .step:nth-of-type(6) {
  margin-top: 17px;
  margin-bottom: 384px;
}

.royal-order .order .right-content .border-center5 {
  width: 0.36vw;
  height: 282px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .right-content .border-center6 {
  width: 0.36vw;
  height: 280px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .right-content .border-center7 {
  width: 0.36vw;
  height: 17px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .right-content .border-center8 {
  width: 0.36vw;
  height: 338px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.royal-order .order .right-content .absolute {
  width: 0.36vw;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 50%;
  z-index: -1;
}

.royal-order .order .order-complete {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  background-color: #fff;
  color: #000000;
  padding: 1.3vw 0 1.3vw;
  margin-top: 4.43vw;
}

.royal-order .order .order-flow {
  position: relative;
}

.royal-order .order .order-flow .border1 {
  background-color: #fff;
  width: 3px;
  height: 100%;
  bottom: 0;
  left: 25%;
  position: absolute;
}

.royal-order .order .order-flow .border2 {
  background-color: #fff;
  width: 3px;
  height: 100%;
  top: 0;
  left: 75%;
  position: absolute;
}

.royal-order .order .order-flow .order-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.royal-order .order .order-flow .order-title li:first-of-type {
  background-color: #e8ddb9;
  width: 49%;
  z-index: 1;
}

.royal-order .order .order-flow .order-title li:last-of-type {
  background-color: #f7efdd;
  width: 49%;
  z-index: 1;
}

.royal-order .order .order-flow .order-title .user {
  background-color: #e8ddb9;
  color: #43393c;
  font-size: 30px;
  line-height: 0.73;
  padding: 0.94vw 0 0.94vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 23px;
}

.royal-order .order .order-flow .order-title .alika {
  background-color: #f7efdd;
  color: #43393c;
  font-size: 30px;
  line-height: 0.73;
  padding: 0.94vw 0 0.94vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 23px;
}

.royal-order .order .order-flow .order-step .step {
  width: 49%;
  margin-top: 1.04vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  z-index: 1;
  position: relative;
}

.royal-order .order .order-flow .order-step .step .step-number {
  background-image: url(../img/firenze/step.png);
  background-repeat: no-repeat no-repeat;
  background-size: 100% 101%;
  padding: 2.08vw 2.34vw 2.08vw 0.42vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0.5;
  margin-right: 0.56vw;
}

.royal-order .order .order-flow .order-step .step .step-number span {
  font-size: 18px;
}

.royal-order .order .order-flow .order-step .step p {
  font-size: 24px;
  line-height: 1.25;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.royal-order .order .order-flow .order-step .step p span {
  font-size: 0.83vw;
}

.royal-order .order .order-flow .order-step .step:nth-of-type(3) {
  margin-left: auto;
}

.royal-order .order .order-flow .order-step .step:nth-of-type(6) {
  margin-left: auto;
}

.royal-order .order .order-flow .order-step .step:nth-of-type(8) {
  margin-left: auto;
}

.royal-order .order .order-flow .order-step .step:nth-of-type(9) {
  margin-left: auto;
}

.royal-order .order .order-flow .order-step .step:nth-of-type(10) {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .royal-order .order {
    padding: 21.33vw 0 21.33vw;
    background-image: url(../img/royal-order/new-royal-order/sp4.jpg);
  }
  .royal-order .order .sub-title {
    font-size: clamp(20px, 5.33333vw, 40px);
  }
  .royal-order .order .sub-title span {
    font-size: clamp(15px, 4vw, 30px);
  }
  .royal-order .order .order-flow .order-title .alika {
    font-size: clamp(15px, 4vw, 30px);
    line-height: 1.3;
  }
  .royal-order .order .order-flow .order-title .user {
    font-size: clamp(15px, 4vw, 30px);
  }
  .royal-order .order .order-flow .order-step .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 6.27vw;
  }
  .royal-order .order .order-flow .order-step .step .step-number {
    background-image: url(../img/firenze/sp-step.png);
    margin: 0;
    font-size: clamp(15px, 4vw, 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 7px;
    padding-bottom: 15px;
    background-size: 100% 100%;
  }
  .royal-order .order .order-flow .order-step .step .step-number span {
    font-size: clamp(10px, 1.33333vw, 20px);
    padding-right: 6px;
  }
  .royal-order .order .order-flow .order-step .step p {
    font-size: clamp(15px, 4vw, 30px);
    padding: 5px 10px 15px;
  }
  .royal-order .order .order-flow .order-step .step p span {
    font-size: clamp(12px, 3.2vw, 24px);
  }
  .royal-order .order .order-flow .border1 {
    top: auto;
    bottom: 0;
    left: 73%;
  }
  .royal-order .order .order-flow .border2 {
    bottom: 0;
    top: auto;
    left: 26%;
  }
  .royal-order .order .order-complete {
    font-size: clamp(15px, 4vw, 30px);
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 16vw;
  }
}

/*-------------
form
--------------*/
.royal-order .form {
  text-align: center;
}

.royal-order .form a {
  position: relative;
  margin-top: 4.95vw;
  margin-bottom: 8.33vw;
  padding: 20px 80px;
  background-color: #1f2f52;
  font-size: 24px;
  line-height: 1.25;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.royal-order .form a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "\f105";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: FontAwesome;
}

@media screen and (max-width: 768px) {
  .royal-order .form {
    text-align: center;
  }
  .royal-order .form a {
    padding: 10px 40px;
    display: inline-block;
    font-size: clamp(15px, 4vw, 30px);
  }
}
/*# sourceMappingURL=royal-order_val4.css.map */