@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: #fff;
  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: 1s;
          animation-delay: 1s;
}

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

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

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

/*-----------
main共通
------------*/
main {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

main img {
  width: 100%;
  margin: 0 auto;
}

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

main .w730 {
  max-width: 730px;
  margin: 0 auto;
}

main .ttl {
  font-size: clamp(15px, 3.23vw, 62px);
  text-align: center;
  font-weight: 400;
}

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

@media screen and (max-width: 768px) {
  main .w1000 {
    padding: 0 4vw;
  }
  main .ttl {
    font-size: clamp(30px, 8vw, 60px);
  }
  .royal-order .fv p span {
    font-size: clamp(15px, 4vw, 30px);
  }
}

/*-----------
main　firenze
------------*/
main .firenze {
  background-image: url(../img/venezia/fv1.jpg);
  background-repeat: no-repeat no-repeat;
  background-size: contain;
  max-width: 100%;
  background-color: #f4f1ed;
}

main .firenze .sub-ttl {
  font-size: 146px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #275b19;
  padding-top: 35.42vw;
  padding-bottom: 3.13vw;
  font-weight: 400;
}

main .firenze .sub-ttl span {
  font-size: 46px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  main .firenze {
    background-image: url(../img/venezia/sp-img1.jpg);
  }
  main .firenze .sub-ttl {
    font-size: clamp(64px, 17.07vw, 128px);
    padding: 103.33vw 0 18vw;
  }
  main .firenze .sub-ttl span {
    font-size: clamp(20px, 5.33333vw, 40px);
  }
}

/*-----------
main　history
------------*/
main .history {
  background-image: url(../img/venezia/history-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat no-repeat;
}

main .history .text-wrap .sub-ttl {
  color: #d9d9d9;
  font-size: 150px;
  line-height: 1;
  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;
  padding-top: 6.77vw;
  font-weight: 400;
}

main .history .text-wrap .sub-ttl span {
  font-size: 36px;
  color: #000;
  text-align: center;
  margin: 2.08vw 0 5.21vw;
}

main .history .text-wrap .sub-ttl:last-of-type {
  padding: 0;
}

main .history .text-wrap .text {
  font-size: 20px;
  padding-bottom: 6.51vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 768px) {
  main .history {
    background-image: url(../img/venezia/sp-img3.jpg);
  }
  main .history .text-wrap .sub-ttl {
    padding: 14.67vw 0;
    font-size: clamp(65px, 8.67vw, 130px);
  }
  main .history .text-wrap .sub-ttl span {
    font-size: clamp(20px, 5.33vw, 40px);
    margin-bottom: 0;
  }
  main .history .text-wrap .sub-ttl:last-of-type {
    margin-bottom: 3.33vw;
  }
  main .history .text-wrap .text {
    font-size: clamp(15px, 4vw, 30px);
  }
  main .history .text-wrap .w730 {
    padding: 0 4vw 10vw;
  }
}

/*-----------
main　traditional
------------*/
main .traditional {
  background-color: #f4f1ed;
}

main .traditional .text-wrap .sub-ttl {
  color: #c4c1be;
  font-size: 150px;
  line-height: 1;
  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;
  padding-top: 6.77vw;
  font-weight: 400;
}

main .traditional .text-wrap .sub-ttl span {
  font-size: 36px;
  color: #000;
  text-align: center;
  margin: 1.04vw 0 2.6vw;
}

main .traditional .text-wrap h3 {
  font-size: 36px;
  line-height: 1.33;
  margin-bottom: 1.56vw;
}

main .traditional .text-wrap h4 {
  font-size: 36px;
  line-height: 1.33;
  margin: 0 0 1.56vw;
  text-align: center;
}

main .traditional .text-wrap .text {
  font-size: 20px;
  line-height: 1.66;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding-bottom: 9.11vw;
}

main .traditional .text-wrap .text2 {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-top: 3.65vw;
  margin-bottom: 6.25vw;
}

main .traditional .text-wrap .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .traditional .text-wrap .item-list li {
  width: 48%;
}

main .traditional .text-wrap .item-list li dl dt {
  margin: 3.13vw 0 2.6vw;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

main .traditional .text-wrap .item-list li dl dt span {
  font-size: 24px;
}

main .traditional .text-wrap .item-list li dl dd {
  margin-bottom: 4.69vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

main .traditional .text-wrap .chain-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .traditional .text-wrap .chain-wrap dt {
  width: 48%;
}

main .traditional .text-wrap .chain-wrap dd {
  width: 48%;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 4.43vw;
}

@media screen and (max-width: 768px) {
  main .traditional {
    background-color: #f4f1ed;
  }
  main .traditional .text-wrap .sub-ttl {
    padding: 14.67vw 0 8vw;
    font-size: clamp(65px, 17.33vw, 130px);
  }
  main .traditional .text-wrap .sub-ttl span {
    margin-top: 2.33vw;
    font-size: clamp(20px, 5.33vw, 40px);
  }
  main .traditional .text-wrap h3 {
    text-align: center;
    margin: 8.67vw 0 6.67vw;
    font-size: clamp(20px, 5.33vw, 40px);
  }
  main .traditional .text-wrap h4 {
    font-size: clamp(20px, 5.33vw, 40px);
  }
  main .traditional .text-wrap .sub-ttl2 {
    margin: 7.33vw 0 3.33vw;
  }
  main .traditional .text-wrap .text {
    font-size: clamp(15px, 4vw, 30px);
    padding-bottom: 0;
  }
  main .traditional .text-wrap .text2 {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: 15.25vw;
  }
  main .traditional .text-wrap .item-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  main .traditional .text-wrap .item-list li {
    width: 100%;
  }
  main .traditional .text-wrap .item-list li dl dt {
    font-size: clamp(18px, 4.8vw, 36px);
  }
  main .traditional .text-wrap .item-list li dl dd {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: 5vw;
  }
  main .traditional .text-wrap .chain-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .traditional .text-wrap .chain-wrap dt {
    width: 100%;
  }
  main .traditional .text-wrap .chain-wrap dd {
    width: 100%;
    font-size: clamp(15px, 4vw, 30px);
    margin-top: 3.13vw;
    padding-bottom: 10.43vw;
  }
}

/*-----------
main　design-motif
------------*/
main .design-motif {
  background-image: url(../img/firenze/firenze-renewal/img15.jpg);
  background-size: 100% 100%;
}

main .design-motif .text-wrap .sub-ttl {
  color: #d3c6ac;
  font-size: 150px;
  line-height: 1;
  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;
  padding-top: 6.77vw;
  white-space: nowrap;
  font-weight: 400;
}

main .design-motif .text-wrap .sub-ttl span {
  font-size: 36px;
  color: #000;
  text-align: center;
  margin: 1.04vw 0 2.6vw;
}

main .design-motif .text-wrap .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .design-motif .text-wrap .item-list li {
  width: 48%;
  margin: 0 auto;
}

main .design-motif .text-wrap .item-list li:nth-of-type(3) dl dt {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

main .design-motif .text-wrap .item-list li dl dt {
  margin: 3.13vw 0 2.6vw;
  font-size: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main .design-motif .text-wrap .item-list li dl dt span {
  font-size: 24px;
}

main .design-motif .text-wrap .item-list li dl dd {
  margin-bottom: 10.94vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 768px) {
  main .design-motif {
    background-image: url(../img/firenze/firenze-renewal/sp-img5.jpg);
  }
  main .design-motif .text-wrap .sub-ttl {
    font-size: clamp(60px, 16vw, 120px);
  }
  main .design-motif .text-wrap .sub-ttl span {
    margin-top: 6.67vw;
    margin-bottom: 13.33vw;
    font-size: clamp(20px, 5.33333vw, 40px);
  }
  main .design-motif .text-wrap .item-list li {
    width: 100%;
  }
  main .design-motif .text-wrap .item-list li dl dt {
    margin: 6.67vw 0;
    font-size: clamp(18px, 4.8vw, 36px);
  }
  main .design-motif .text-wrap .item-list li dl dt span {
    font-size: clamp(15px, 4vw, 30px);
  }
  main .design-motif .text-wrap .item-list li dl dd {
    margin-bottom: 15.33vw;
    font-size: clamp(15px, 4vw, 30px);
  }
}

/*-----------
main　designer
------------*/
main .movie-wrap {
  background-image: url(../img/venezia/search-bg.jpg);
  background-size: 100% 100%;
  padding: 6.25vw 0;
}

main .movie-wrap .sub-ttl {
  font-size: 48px;
  line-height: 1.08;
  margin-bottom: 6.25vw;
}

main .movie-wrap .text {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 3.13vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

main .movie-wrap .movie {
  text-align: center;
}

main .movie-wrap .movie iframe {
  width: 41.15vw;
  height: 22.4vw;
}

@media screen and (max-width: 768px) {
  main .movie-wrap {
    padding: 10.43vw 0;
    background-image: url(../img/venezia/sp-search-bg.jpg);
  }
  main .movie-wrap .sub-ttl {
    font-size: clamp(20px, 5.33vw, 40px);
    text-align: center;
    line-height: 1.78;
  }
  main .movie-wrap .text {
    font-size: clamp(15px, 4vw, 30px);
  }
  main .movie-wrap .movie iframe {
    width: 100%;
    height: auto;
  }
}

main .designer {
  background-image: url(../img/venezia/designer-bg.jpg);
  background-size: 100% 100%;
  padding-bottom: 11.98vw;
}

main .designer .sub-ttl {
  color: #d2c5ae;
  font-size: 140px;
  line-height: 1;
  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;
  padding-top: 6.77vw;
  font-weight: 400;
}

main .designer .sub-ttl span {
  font-size: 36px;
  color: #000;
  text-align: center;
  margin-top: 1.04vw;
}

main .designer .text-wrap ul li:nth-of-type(2) {
  /*border-bottom: 1px solid #000;*/
}

main .designer .text-wrap ul li h3 {
  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: 36px;
  letter-spacing: 0.1em;
  margin-bottom: 3.65vw;
  margin-top: 8.07vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

main .designer .text-wrap ul li h3 span {
  font-size: 18px;
}

main .designer .text-wrap ul li h4 {
  margin: 5.21vw 0 4.17vw;
  font-size: 36px;
}

main .designer .text-wrap ul li .text {
  margin-bottom: 3.39vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
}

main .designer .text-wrap .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .designer .text-wrap .img-wrap > div {
  width: 48%;
}

main .designer .btn {
  display: block;
  padding: 0;
  margin-bottom: 11.2vw;
}

main .designer .btn a {
  background-color: #000;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 24px;
  padding: 1.56vw 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 768px) {
  main .designer .sub-ttl {
    font-size: clamp(75px, 20vw, 150px);
    margin-top: 0;
  }
  main .designer .sub-ttl span {
    font-size: clamp(20px, 5.33333vw, 40px);
    margin-top: 7vw;
  }
  main .designer .text-wrap ul li h4 {
    font-size: clamp(20px, 5.33vw, 40px);
    margin: 9.33vw 0;
    text-align: center;
  }
  main .designer .text-wrap ul li .text {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: 19.33vw;
  }
  main .designer .text-wrap ul li .text1 {
    margin-bottom: 9.33vw;
  }
  main .designer .text-wrap ul li h3 {
    margin-top: 16.67vw;
    margin-bottom: 9.33vw;
    font-size: clamp(20px, 5.33vw, 40px);
  }
  main .designer .text-wrap ul li .sub-ttl2 {
    margin-top: 0;
  }
  main .designer .text-wrap .img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .designer .text-wrap .img-wrap > div {
    width: 100%;
    margin-bottom: 5vw;
  }
  main .designer .btn {
    font-size: clamp(15px, 4vw, 30px);
    padding: 0 4vw;
  }
  main .designer .btn a {
    padding: 4vw 0;
  }
}

/*-----------
main　service
------------*/
main .service {
  color: #fff;
  background-image: url(../img/royal-order/new-royal-order/img5.jpg);
  background-size: 100% 100%;
}

main .service .w1000 {
  padding-bottom: 4.69vw;
}

main .service .w1000 div {
  width: 50%;
  margin-left: auto;
}

main .service .w1000 div h3 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 5.21vw;
  padding-top: 5.73vw;
}

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

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

main .service .w1000 div .more a {
  display: block;
  color: #fff;
  padding: 0.83vw 1.3vw;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  main .service {
    background-image: url(../img/firenze/firenze-renewal/sp-img18.jpg);
  }
  main .service .w1000 {
    padding-bottom: 23.33vw;
  }
  main .service .w1000 div {
    width: 100%;
  }
  main .service .w1000 div h3 {
    font-size: clamp(20px, 5.33vw, 40px);
    padding-top: 16vw;
    padding-bottom: 10.67vw;
    text-align: center;
  }
  main .service .w1000 div p {
    font-size: clamp(15px, 4vw, 30px);
    margin-bottom: 13.33vw;
  }
  main .service .w1000 div .more {
    width: 44vw;
  }
  main .service .w1000 div .more a {
    font-size: clamp(15px, 4vw, 30px);
    padding: 2vw;
  }
}

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

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

main .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) {
  main .form a {
    padding: 10px 40px;
    display: inline-block;
    font-size: clamp(15px, 4vw, 30px);
  }
}
/*# sourceMappingURL=venezia.css.map */