@-webkit-keyframes moveVertical {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@keyframes moveVertical {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@-webkit-keyframes moveBeside {
  0% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  50% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@keyframes moveBeside {
  0% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  50% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  100% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@-webkit-keyframes moveBeside2 {
  0% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  50% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
}
@keyframes moveBeside2 {
  0% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
  50% {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  100% {
    -webkit-transform: translateX(-12px);
            transform: translateX(-12px);
  }
}
.move__vertical {
  -webkit-animation-name: moveVertical;
          animation-name: moveVertical;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.move__beside {
  -webkit-animation-name: moveBeside;
          animation-name: moveBeside;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}

.move__beside_2 {
  -webkit-animation-name: moveBeside2;
          animation-name: moveBeside2;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
}

.js-scroll {
  opacity: 0;
  -webkit-transition: all ease 0.7s;
  transition: all ease 0.7s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.js-scroll.is-active {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.js-slide {
  -webkit-transition: all ease 0.7s;
  transition: all ease 0.7s;
  -webkit-transform: translate(-105%, 50px);
          transform: translate(-105%, 50px);
}
.js-slide.is-active {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.fz-bg {
  width: 100%;
  height: 100vh;
  background-image: url(../jpg/bg.jpg);
  background-size: cover;
  background-position: bottom;
  position: fixed;
  z-index: -1;
}

.fz-contents {
  background-color: #FFC154;
  max-width: 512px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fz-contents {
    border-left: 16px solid #fff;
    border-right: 16px solid #fff;
  }
}

.fz-kv {
  position: relative;
}

.fz-kv__catch {
  margin: 0;
  position: absolute;
  max-width: 60px;
  width: 13vw;
  top: 56px;
  right: 32px;
  z-index: 1;
}

.fz-kv__bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  line-height: 0;
  width: 100%;
  z-index: 1;
}

.fz-kv {
  margin-bottom: 23px;
}

.fz-headline {
  max-width: 346px;
  margin: 0 auto 47px;
  width: 88vw;
}

.fz-suppl {
  margin: 45px auto 84px;
  max-width: 312px;
  width: 80vw;
}

.fz-buy {
  margin: 80px auto 116px;
  max-width: 164px;
  display: block;
}

.fz-txt {
  max-width: 60px;
  margin: 48px auto 32px;
}
.fz-txt--03 {
  margin-top: 0;
}

.fz-illust--01 {
  max-width: 344px;
  width: 88vw;
  margin: 38px auto 31px;
}

.fz-illust--02 {
  max-width: 331px;
  width: 88vw;
  margin: 30px auto 132px;
}

.fz-figure {
  max-width: 136px;
  margin: 100px auto 32px;
  position: relative;
}
.fz-figure.show .fz-figure__serif {
  opacity: 1;
}
.fz-figure:hover {
  cursor: pointer;
}

.fz-figure__serif {
  position: absolute;
  top: -9px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 190px;
  z-index: 1;
  opacity: 1;
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s;
}

.fz-list {
  margin: 52px auto 0;
  padding: 0;
  max-width: 236px;
}

.fz-item {
  margin-bottom: 40px;
  position: relative;
  list-style: none;
}
.fz-item:last-of-type {
  margin-bottom: 0;
}
.fz-item:nth-of-type(2n) .fz-item__txt {
  right: auto;
  left: -30px;
}

.fz-item__txt {
  position: absolute;
  max-width: 130px;
  top: -25px;
  right: -30px;
  z-index: 1;
}

.fz-contents__bg {
  margin: -100px 0 200px;
}

.fz-illust--03 {
  width: 76.9vw;
  max-width: 300px;
  margin: 0 0 -5px auto;
}

.fz-character {
  position: relative;
  margin-bottom: 145px;
}
.fz-character span {
  position: absolute;
  z-index: 1;
  height: 56px;
  width: 100%;
  background-color: #FFB24D;
  top: 80px;
  left: 0;
}
.fz-character span:nth-of-type(2) {
  top: 180px;
}
.fz-character span:nth-of-type(3) {
  top: 280px;
}
.fz-character span:nth-of-type(4) {
  top: 390px;
}
.fz-character span:nth-of-type(5) {
  top: 495px;
}
.fz-character span:nth-of-type(6) {
  top: 590px;
}
.fz-character span:nth-of-type(7) {
  top: 705px;
}
.fz-character span:nth-of-type(8) {
  top: 815px;
}
.fz-character span:last-of-type {
  top: auto;
  bottom: 0;
  background-color: #F19EAE;
}

.fz-character__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10;
  max-width: 420px;
}

.fz-character__item--21 {
  max-width: 72px;
  margin-right: 20px;
}

.fz-character__item--22 {
  max-width: 72px;
  margin-right: 23px;
}

.fz-character__item--23 {
  max-width: 75px;
}

.fz-character__item {
  margin-bottom: 30px;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
}
.fz-character__item--01 {
  max-width: 75px;
  margin-right: 17px;
}
.fz-character__item--02 {
  max-width: 83px;
  margin-right: 14px;
}
.fz-character__item--03 {
  max-width: 83px;
  margin-right: 10px;
}
.fz-character__item--04 {
  max-width: 78px;
}
.fz-character__item--05 {
  max-width: 75px;
  margin-right: 21px;
}
.fz-character__item--06 {
  max-width: 69px;
  margin-right: 20px;
}
.fz-character__item--07 {
  max-width: 77px;
  margin-right: 16px;
}
.fz-character__item--08 {
  max-width: 67px;
  margin-right: 16px;
}
.fz-character__item--09 {
  max-width: 83px;
}
.fz-character__item--10 {
  max-width: 67px;
  margin-right: 18px;
}
.fz-character__item--11 {
  max-width: 86px;
}
.fz-character__item--12 {
  max-width: 74px;
  margin-right: 18px;
}
.fz-character__item--13 {
  max-width: 79px;
  margin-right: 21px;
}
.fz-character__item--14 {
  max-width: 79px;
  margin-right: 18px;
}
.fz-character__item--15 {
  max-width: 75px;
}
.fz-character__item--16 {
  max-width: 78px;
  margin-right: 13px;
}
.fz-character__item--17 {
  max-width: 81px;
  margin-right: 15px;
}
.fz-character__item--18 {
  max-width: 76px;
  margin-right: 15px;
}
.fz-character__item--19 {
  max-width: 90px;
}
.fz-character__item--20 {
  max-width: 90px;
  margin-right: 15px;
}
.fz-character__item--24 {
  max-width: 85px;
  margin-right: 6px;
}
.fz-character__item--25 {
  max-width: 78px;
  margin-right: 6px;
}
.fz-character__item--26 {
  max-width: 86px;
  margin-right: 4px;
}
.fz-character__item--27 {
  max-width: 100px;
  margin-left: 0;
}
.fz-character__item--28 {
  max-width: 108px;
  margin-left: 10px;
}
.fz-character__item.show {
  -webkit-animation: fluffy 2.5s ease forwards;
          animation: fluffy 2.5s ease forwards;
}
.fz-character__item:hover {
  cursor: pointer;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@-webkit-keyframes fluffy {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  40% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  60% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  70% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes fluffy {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  30% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  40% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  60% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  70% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.fz-detail {
  margin: 0 auto 52px;
  padding: 0 10px;
}

.fz-detail__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  max-width: 420px;
  margin: 0 auto;
}
.fz-detail__item.show {
  display: block;
}

.fz-detail__img {
  padding: 0 15px;
  width: calc(100% - 215px);
  max-width: 130px;
}

.fz-detail__desc {
  max-width: 215px;
  text-align: center;
}

.fz-detail__ttl {
  margin: 0 0 6px;
  font-size: 2.2rem;
  line-height: 1;
}

.fz-detail__txt {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.66;
}

.fz-character__txt {
  max-width: 180px;
  margin: 0 auto 20px;
}

.fz-heading {
  text-align: center;
  margin: 0 0 35px;
  line-height: 0;
}

.fz-lineup__contents {
  text-align: center;
  margin-bottom: 64px;
}

.fz-lineup__img {
  max-width: 153px;
  margin: 0 auto 20px;
  position: relative;
}
.fz-lineup__img--01 {
  max-width: 220px;
}
.fz-lineup__img--02 {
  max-width: 170px;
}

.fz-lineup__img__item {
  display: none;
}
.fz-lineup__img__item.show {
  display: block;
}

.mof-suppl {
  position: absolute;
  z-index: 1;
  bottom: -10px;
  right: -20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.fz-lineup__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0 auto 15px;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 240px;
  gap: 8px;
}

.fz-lineup__item {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #EA6B00;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fz-lineup__item img {
  max-width: 65%;
  max-height: 65%;
}
.fz-lineup__item:hover {
  cursor: pointer;
}
.fz-lineup__item--pink {
  background-color: #FFA4B4;
}

.fz-lineup__item--09 img,
.fz-lineup__item--10 img {
  max-height: 100%;
}

.fz-lineup__txt {
  max-width: 300px;
  margin: 0 auto;
}
.fz-lineup__txt--warmer {
  max-width: 320px;
}
.fz-lineup__txt--mof {
  max-width: 180px;
}

.fz-lineup__ttl {
  font-size: 2.4rem;
  line-height: 1.33;
  margin: 6px 0 14px;
  font-weight: bold;
}

.fz-btn {
  margin: 20px auto 0;
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  padding: 25px 0;
  max-width: 250px;
  background-color: #EC6C00;
  border-radius: 5px;
  text-decoration: none;
  -webkit-box-shadow: 3px 3px 5px rgba(136, 128, 101, 0.75);
          box-shadow: 3px 3px 5px rgba(136, 128, 101, 0.75);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.fz-btn span {
  position: relative;
  padding-right: 25px;
}
.fz-btn span:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 15px;
  right: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background-image: url(../png/ico_arrow.png);
  background-size: cover;
}
.fz-btn:hover {
  -webkit-box-shadow: 0px 0px 0px rgba(136, 128, 101, 0.75);
          box-shadow: 0px 0px 0px rgba(136, 128, 101, 0.75);
}
.fz-btn--coming {
  font-size: 1.5rem;
}
.fz-btn--coming:hover {
  -webkit-box-shadow: 3px 3px 5px rgba(136, 128, 101, 0.75);
          box-shadow: 3px 3px 5px rgba(136, 128, 101, 0.75);
}

.fz-lineup__picture {
  max-width: 330px;
  margin: 0 auto 11px;
}

.fz-gallery {
  margin-bottom: 104px;
}

.fz-gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px;
}

.fz-gallery__item {
  width: calc((100% - 6px) / 3);
  line-height: 0;
  overflow: hidden;
}
.fz-gallery__item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.fz-gallery__item img {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.fz-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 0;
}

.fz-sns__btn {
  max-width: 168px;
  margin: 0 8px;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.fz-sns__btn:hover {
  opacity: 0.8;
}

.fz-btn02 {
  margin: 20px auto 104px;
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  padding: 25px 0;
  max-width: 250px;
  background-color: #EC6C00;
  border-radius: 5px;
  text-decoration: none;
  -webkit-box-shadow: 3px 3px 5px rgba(136, 128, 101, 0.75);
          box-shadow: 3px 3px 5px rgba(136, 128, 101, 0.75);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.fz-btn02:hover {
  -webkit-box-shadow: 0px 0px 0px rgba(136, 128, 101, 0.75);
          box-shadow: 0px 0px 0px rgba(136, 128, 101, 0.75);
}

.fz-bottom__txt {
  text-align: center;
  padding: 0 20px;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 2;
  margin: 32px 0 0;
  letter-spacing: 0.16em;
}
.fz-bottom__txt small {
  line-height: 1.5;
  display: inline-block;
  margin-top: 5px;
  font-size: 1rem;
  font-weight: normal;
}

.fz-bottom {
  background-color: #fff;
  padding: 24px 0;
  margin-top: 80px;
}

.fz-bottom__img {
  max-width: 207px;
  margin: 0 auto;
}

.fz-bottom__proof {
  font-weight: normal;
  margin: 10px 0 20px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.lb-nav,
.lb-number {
  display: none !important;
}

.fz-banner {
  width: calc(100% - 40px);
  display: block;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 5px;
}

.fz-modal.remodal {
  width: calc(100% - 16px);
  max-width: 400px;
  height: 90%;
  max-height: 800px;
  padding: 30px 10px;
  overflow: scroll;
}

.modal__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal__nav-link {
  display: block;
  width: calc((100% - 10px) / 2);
  text-decoration: none;
  color: #000;
  border: solid 1px #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.1rem;
  padding: 5px 0;
}

.modal__heading {
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin: 60px 0 20px;
}

.modal__item {
  text-align: left;
  padding: 0 10px 20px;
  border-bottom: 1px dotted #000;
  margin-bottom: 30px;
}

.modal__company {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 5px;
  line-height: 1;
}

.modal__name {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.4;
}

.modal__post {
  font-size: 1.2rem;
  margin: 0 0 5px;
}

.modal__address {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
}

.fz-news .slick-prev {
  left: 30px;
  width: 40px;
  background-color: #fc6504;
  height: auto;
  aspect-ratio: 1;
  z-index: 10;
  border-radius: 50%;
}
.fz-news .slick-prev:before {
  display: none;
}
.fz-news .slick-prev:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 12px;
  height: auto;
  aspect-ratio: 1/1.185;
  background-image: url(../png/ico_arrow.png);
  background-size: cover;
  left: 0;
  right: 2px;
  margin: auto;
  top: 0;
  bottom: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.fz-news .slick-prev:hover {
  background: #fc6504;
  opacity: 0.8;
}
.fz-news .slick-prev:focus {
  background: #fc6504;
}
.fz-news .slick-next {
  right: 30px;
  width: 40px;
  background-color: #fc6504;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 10;
}
.fz-news .slick-next:before {
  display: none;
}
.fz-news .slick-next:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 12px;
  height: auto;
  aspect-ratio: 1/1.185;
  background-image: url(../png/ico_arrow.png);
  background-size: cover;
  left: 2px;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.fz-news .slick-next:hover {
  background: #fc6504;
  opacity: 0.8;
}
.fz-news .slick-next:focus {
  background: #fc6504;
}

.fz-news__headline {
  text-align: center;
  margin: 0 0 30px;
  font-size: 4rem;
  line-height: 1.4;
}

.fz-news__item {
  margin-right: 10px;
  margin-left: 10px;
}

.fz-news__link {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  display: block;
  color: #161616;
  text-decoration: none;
}

.fz-news__img {
  line-height: 0;
}

.fz-news__date {
  margin: 15px 0 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.fz-news__ttl {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.66;
}

.fz-news-head {
  padding: 20px 20px 0;
  max-width: 16rem;
  margin: 0 auto 64px;
}

.fz-news-head__logo {
  display: block;
}

.fz-news-contents {
  width: calc(100% - 40px);
  margin: auto;
  background-color: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 15px;
}
.fz-news-contents h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 16px 0;
  line-height: 1.6;
}
.fz-news-contents p {
  font-size: 1.4rem;
  margin: 16px 0;
  line-height: 1.6;
}
.fz-news-contents img {
  margin-top: 32px;
  display: block;
}
.fz-news-contents p + h3 {
  margin-top: 48px;
}
.fz-news-contents .fz-news-contents__date {
  font-size: 1.1rem;
  text-align: right;
  color: #666;
  margin: 8px 0 32px;
}
.fz-news-contents .fz-news-contents__ttl {
  font-size: 1.8rem;
  margin: 16px 0 8px;
  line-height: 1.64;
}

.fzv-news__headline {
  line-height: 1.45;
  text-align: center;
  font-size: 2.2rem;
  margin: 0;
}

.fzv-mainvisual {
  margin: 30px 0 20px;
  line-height: 0;
}

.fzv-txt {
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2;
}

.fzv-banner {
  line-height: 0;
}

.fzv-info {
  border: 3px solid #000;
  margin: 30px auto 80px;
  width: calc(100% - 40px);
  padding: 15px 15px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fzv-info.is-white {
  border: 3px solid #fff;
}

.fzv-item {
  margin-top: 48px;
  text-align: center;
}

.fzv-item__img {
  border-radius: 50%;
  overflow: hidden;
}

.fzv-item__num {
  font-size: 2rem;
  margin: 16px 0 8px;
  font-weight: 700;
}

.fzv-item__suppl {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
}

.fzv-txt {
  margin: 32px 0;
}

.fzv-info__ttl {
  margin: 20px 0 5px;
  font-size: 1.5rem;
}
.fzv-info__ttl:first-of-type {
  margin-top: 0;
}

.fzv-info__txt {
  margin: 0;
}

.fzv-healine {
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.fzv-healine::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 15px;
  height: 15px;
  border: 2.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
}

.fzv-img {
  padding: 0 20px;
  margin-bottom: 32px;
}

.fzv-contents {
  padding: 0 20px 80px;
}

.fz-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px 16px;
}

.fz-form-select {
  width: calc((100% - 32px) / 3);
  line-height: 1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.fz-form-img img {
  aspect-ratio: 1/1.65;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fz-form-radio {
  width: 100%;
  display: block;
  margin-top: 10px;
  border-radius: 0;
  background-color: #fff;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.fz-form-radio:after {
  content: "";
  width: 22px;
  height: auto;
  aspect-ratio: 1;
  border: solid 1px #777;
  position: absolute;
  background-color: #fff;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.fz-form-radio:before {
  content: "";
  width: 16px;
  height: auto;
  aspect-ratio: 1/0.926;
  background-image: url(../png/ico_heart.png);
  background-size: cover;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  opacity: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.fz-form-radio:checked::before {
  opacity: 1;
}

.fz-form__wrap {
  border: 2px solid #000;
  margin: 80px 0 40px;
  padding: 24px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fz-form__healding {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 32px;
}

.fz-form__box {
  border-bottom: 1px solid #000;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.fz-form__box:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.fz-form__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.fz-form__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.fz-form__sex {
  font-size: 1.6rem;
  font-weight: 500;
}
.fz-form__sex input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 28px;
  position: relative;
}
.fz-form__sex input:before {
  content: "";
  width: 20px;
  height: auto;
  aspect-ratio: 1;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -16px;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fz-form__sex input:after {
  content: "";
  width: 12px;
  height: auto;
  aspect-ratio: 1;
  background-color: #fc6504;
  position: absolute;
  left: 4px;
  top: -12px;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.fz-form__sex input:checked::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fz-form__select {
  width: 100%;
  position: relative;
  font-size: 1.6rem;
}
.fz-form__select select {
  width: 100%;
  padding: 8px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000;
  border-radius: 3px;
  outline: none;
}
.fz-form__select::after {
  content: "";
  position: absolute;
  right: 16px;
  margin: auto;
  bottom: 16px;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.fz-form__input input {
  margin: 0;
  font-size: 1.6rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 8px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fz-form__btn {
  background-color: #f25142;
  border-radius: 40px;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  display: block;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  width: 100%;
  max-width: 240px;
  font-weight: 700;
  padding: 16px;
  letter-spacing: 0.1em;
  margin: auto;
}
.fz-form__btn.is-hide {
  background-color: #808080;
  display: block;
}

.fzv-back {
  padding-bottom: 60px;
  margin: 32px auto 0;
  line-height: 1;
  display: block;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding-right: 20px;
}
.fzv-back:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  left: 0;
  right: 0;
  top: 22px;
  z-index: 1;
}
.fzv-back:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 5px;
  top: 4px;
}
.fzv-back:hover {
  opacity: 0.7;
}