/* ===================================================================
CSS information
 file name  :  style.css
 date :  2023-23-10
=================================================================== */

@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  vertical-align: bottom;
  border: none;
}

button,
input,
select,
textarea {
  vertical-align: middle;
}

button,
input {
  overflow: visible;
  line-height: normal;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

/* Common */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.wrapper {
  overflow: hidden;
}

@media (min-width: 751px) and (max-width: 1440px) {
  html {
    font-size: calc(100vw / 144);
  }
}

@media (max-width: 750px) {
  html {
    font-size: calc(100vw / 75);
  }
}

body {
  font-family: fot-tsukuardgothic-std, "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
}

.font-esukuar {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

#loading.fadeOut {
  opacity: 0;
}

.container {
  max-width: 144rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

figure {
  margin: 0;
}

.txt_left {
  text-align: left;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.pink_line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 75%, #ffe2df 0%) repeat scroll 0 0;
}

@media (max-width: 750px) {
  .pink_line_sp {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 75%, #ffe2df 0%) repeat scroll 0 0;
  }
}

/* Footer */
#footer {
  position: relative;
  background-color: #f6f1ea;
  overflow: hidden;
}

#footer .footer_wrapper {
  max-width: 112rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#footer .deco span {
  position: absolute;
  z-index: 0;
}

#footer .footer_snsList {
  display: flex;
  justify-content: center;
}

#footer .footer_snsItem:nth-child(1) {
  animation-delay: 0ms;
}

#footer .footer_snsItem:nth-child(2) {
  animation-delay: 250ms;
}

#footer .footer_snsItem:nth-child(3) {
  animation-delay: 500ms;
}

#footer .footer_snsItem:nth-child(4) {
  animation-delay: 750ms;
}

#footer .footer_snsItem:nth-child(5) {
  animation-delay: 1000ms;
}

#footer .footer_snsItem:nth-child(6) {
  animation-delay: 1250ms;
}

#footer .footer_snsItem > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  box-shadow: 0px 5px 4px 0px rgba(87, 61, 37, 0.2);
}

#footer .footer_snsItem > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

#footer .footer_snsItem > a:hover::before {
  opacity: 0.3;
}

#footer .footer_logo {
  text-align: center;
}

#footer .footer_logo > a {
  display: inline-block;
  margin: 0 auto;
}

#footer .footer_navi {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

#footer .footer_navi_item > a {
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #221815;
  transition: opacity 0.3s ease-in-out;
}

#footer .footer_navi_item > a:hover {
  opacity: 0.7;
}

@media (min-width: 751px) {
  #footer .footer_wrapper {
    padding: 6.5rem 0;
  }

  #footer .deco span:nth-child(1) {
    width: 14.9rem;
    top: 21rem;
    left: -3rem;
  }

  #footer .deco span:nth-child(2) {
    width: 14rem;
    top: -5rem;
    right: 0;
  }

  #footer .footer_snsList {
    margin-bottom: 2.8rem;
  }

  #footer .footer_snsItem {
    margin: 0 1rem;
  }

  #footer .footer_snsItem > a {
    width: 5.6rem;
    height: 5.6rem;
  }

  #footer .footer_logo > a {
    width: 15rem;
  }

  #footer .footer_navi_item > a {
    font-size: 1.6rem;
    line-height: 1;
  }

  #footer .footer_navi_item {
    padding: 0 1rem;
    background: url(../img/img_border_dotted.png) no-repeat top 0.5rem right;
  }

  #footer .footer_navi_item:last-child {
    background: none;
  }
}

@media (max-width: 750px) {
  #footer .footer_wrapper {
    padding: 6rem 0;
  }

  #footer .deco span:nth-child(1) {
    width: 24.4rem;
    top: 4rem;
    left: 4.5rem;
  }

  #footer .deco span:nth-child(2) {
    width: 32.2rem;
    top: 31rem;
    right: 6rem;
  }

  #footer .footer_snsList {
    margin-bottom: 4.5rem;
  }

  #footer .footer_snsItem {
    margin: 0 1.6rem;
  }

  #footer .footer_snsItem > a {
    width: 8.4rem;
    height: 8.4rem;
  }

  #footer .footer_snsItem > a img {
    width: 100%;
  }

  #footer .footer_logo > a {
    width: 32rem;
  }

  #footer .footer_navi {
    flex-direction: column;
    align-items: center;
  }

  #footer .footer_navi_item > a {
    font-size: 2.8rem;
    line-height: calc(30 / 14);
  }
}

.contentBox {
  position: relative;
}
@media (min-width: 751px) {
  .contentBox::before {
    content: "";
    position: absolute;
    background-image: url(../img/line_dashed.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 108.6rem;
    height: 222.6rem;
    top: 68.5rem;
    left: calc(50% - 59rem);
    z-index: 0;
  }
}

@media (max-width: 750px) {
  .contentBox::before {
    content: "";
    position: absolute;
    background-image: url(../img/line_dashed_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 71.8rem;
    height: 408.6rem;
    top: 91rem;
    left: calc(50% - 40rem);
    z-index: 0;
  }
}

/* ==================================================
	MainVisual
======================================================================= */
#fv {
  position: relative;
  z-index: 2;
}

#fv .fv-inner {
  max-width: 112rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#fv .fv-title {
  z-index: 100;
  position: absolute;
  right: -1.2rem;
  top: 0;
  /* width: max-content; */
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#fv .fv-title > span {
  color: #64a1fa;
  letter-spacing: 0.01em;
  font-weight: 400;

}

#fv .fv-title .fs_larg {
  font-weight: bold;
  /* text-shadow: 2px 2px 0px #fff;
  -webkit-text-stroke: 1px #fff; */
}

#fv .swiper-container {
  width: 100%;
  height: 100%;
}

#fv .pic {
  position: relative;
}

#fv .pic-item img.fadeZoom {
  opacity: 0;
  transform: scale(0.8) translate3d(0, 50px, 0);
  visibility: hidden;
  transition-property: visibility;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

#fv .pic-item img.fadeZoom.show {
  visibility: visible;
  animation-name: fadeZoom;
}

@media (min-width: 751px) {
  #fv .container {
    padding-top: 9.6rem;
  }

  #fv .fv-title > span {
    font-size: 4rem;
    line-height: 1.3;
  }

  #fv .fv-title .fs_larg {
    font-size: 5.3rem;
    text-shadow: 2px 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff, 2px 0px 0 #fff, 0px 2px 0 #fff, -2px 0px 0 #fff, 0px -2px 0 #fff;
  }

  #fv .pic-item:nth-child(1) {
    width: 98.5rem;
    padding-top: 6rem;
  }
  #fv .pic-item:nth-child(2) {
    width: 41.6rem;
    position: absolute;
    top: 51.2rem;
    right: 0;
    z-index: 1;
  }
}

@media (max-width: 750px) {
  #fv .fv-title {
    top: 10rem;
    right: 1.2rem;
  }

  #fv .deco span:nth-child(1) {
    width: 32.4rem;
    top: -4rem;
    left: -5rem;
  }

  #fv .deco span:nth-child(2) {
    width: 21.9rem;
    top: 24.5rem;
    right: -2rem;
  }

  #fv .fv-title > span {
    font-size: 4rem;
    letter-spacing: 0;
    line-height: 1.8;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px 0px 0 #fff, 0px 1px 0 #fff, -1px 0px 0 #fff, 0px -1px 0 #fff;
  }

  #fv .fv-title > span .fs-sp {
    font-size: 6.6rem;
    margin-bottom: 3.5rem;
    display: inline-block;
    letter-spacing: 0px;
  }

  #fv .fv-title .fs_larg {
    font-size: 5.8rem;
    line-height: calc(68 / 64);
    display: inline-block;
  }

  #fv .pic-item:nth-child(1) {
    width: 122.5rem;
    padding-top: 16.5rem;
    position: relative;
    left: 44%;
    transform: translateX(-50%);
  }
  #fv .pic-item:nth-child(2) {
    width: 41.7rem;
    position: relative;
    top: 4rem;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
  }
}

/* =====================================================
	Concept 
======================================================*/
#concept {
  position: relative;
}

#concept .deco {
  position: absolute;
  pointer-events: none;
  max-width: 1120px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#concept .deco span {
  position: absolute;
  z-index: 0;
}

#concept > .container {
  max-width: 100%;
}

#concept .text-intro {
  text-align: center;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* #concept .swiper-slide:nth-child(even) {
  margin-top: 8rem;
} */

#concept .swiper-slide_pic {
  display: inline-block;
  cursor: pointer;
}

#concept .swiper-slide_pic img {
  transition: 0.4s ease-in-out;
}

#concept .swiper-slide_pic:hover img {
  filter: brightness(70%);
  animation: poyopoyo 0.5s ease-out forwards;
}

#concept .mySwiper {
  margin: 0 auto;
  width: 100%;
}

#concept .swiper-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 auto;
  max-width: calc(100%);
}

#concept .swiper-wrapper {
  transition-timing-function: linear !important;
  padding: 20px 0px;
}

#concept .swiper-slide {
  perspective: 2000px;
  box-sizing: content-box;
  cursor: pointer;
}

#concept .swiper-slide span {
  display: flex;
  backface-visibility: hidden;
  width: 100%;
  height: auto;
}

/* Model popup */
.modal--wrapper {
  align-items: center;
  background: rgba(0, 0, 0, 0);
  display: none;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 3;
}

.modal {
  position: relative;
  /* width: 70rem; */
}

.modal .modal-item {
  display: none;
  max-width: 63.4rem;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
}

.face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.modal img {
  transition: 0.5s;
}

.modal .modal-item:hover {
  animation: poyopoyo 0.5s ease-out forwards;
}

.modal .modal-item img.on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.modal .modal-item.active img.on {
  opacity: 1;
}

.modal .modal-item.active img.off {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

@media (min-width: 751px) {
  #concept {
    margin-top: 18.3rem;
  }

  #concept .concept-inner {
    margin-top: 8rem;
    position: relative;
    z-index: 1;
  }

  #concept .text-intro {
    font-size: 3.3rem;
    line-height: calc(55 / 33);
    position: relative;
    z-index: 1;
  }

  #concept .swiper-slide {
    width: 31.8rem !important;
    margin-right: 1.2rem !important;
  }

  #concept .swiper-slide:last-child {
    margin-right: 0 !important;
  }
}

@media (max-width: 750px) {
  .wrapper {
    overflow: hidden;
  }
  #concept {
    margin-top: 10rem;
  }

  #concept .concept-inner {
    margin-top: 4.6rem;
  }

  #concept .text-intro {
    font-size: 4rem;
    line-height: calc(32 / 20);
    padding: 0 2rem;
    position: relative;
    letter-spacing: 0;
    z-index: 2;
  }

  #concept .swiper-slide {
    width: 32.6rem !important;
    margin-right: 4rem !important;
  }

  #concept .swiper-slide:nth-child(even) {
    margin-top: 8rem;
  }

  #concept .swiper-slide_pic {
    display: block;
  }

  #concept .swiper-slide img {
    width: 100%;
  }

  .modal .modal-item {
    max-width: 65rem;
  }
}

@keyframes poyopoyo {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(0.98);
  }

  40% {
    transform: scale(1.04);
  }

  60% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.06);
  }

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

/* ==============================================
  features
  =============================================== */
#features {
  position: relative;
  padding-bottom: 10rem;
}

#features .features-inner {
  max-width: 112rem;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

#features .features-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 9.2rem;
}

#features .features-item {
  position: relative;
}

#features .features-item > .text {
  position: absolute;
  font-weight: bold;
  color: #64a1fa;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#features .features-item > .deco {
  position: absolute;
  z-index: 1;
}

#features .textContent {
  text-align: center;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.08em;
}

@media (min-width: 751px) {
  #features {
    margin-top: 14.5rem;
  }

  #features .features-item > .text {
    font-size: 2.5rem;
    line-height: calc(32 / 25);
    letter-spacing: 0.06em;
  }

  #features .features-item:nth-child(1) {
    width: 37rem;
    margin-left: 21.4rem;
    margin-top: 3rem;
  }

  #features .features-item:nth-child(1) > .text {
    top: -12%;
    right: -18%;
  }

  #features .features-item:nth-child(1) > .deco {
    top: -22%;
    right: -34%;
    width: 5.8rem;
  }

  #features .features-item:nth-child(2) {
    width: 42.5rem;
    margin-left: -47rem;
    margin-top: -7rem;
  }

  #features .features-item:nth-child(2) > .text {
    top: -14%;
    left: -22.5%;
  }

  #features .features-item:nth-child(2) > .deco {
    top: -25%;
    left: 10.5%;
    width: 5.1rem;
  }

  #features .features-item:nth-child(3) {
    width: 39.6rem;
    margin-top: -23rem;
    margin-left: 47.8rem;
  }

  #features .features-item:nth-child(3) > .text {
    top: -6%;
    left: 86%;
  }

  #features .features-item:nth-child(3) > .deco {
    top: -9%;
    right: -10.5rem;
    width: 5.3rem;
  }

  #features .textContent {
    font-size: 3.3rem;
    line-height: calc(55 / 33);
  }
}

@media (max-width: 750px) {
  #features {
    margin-top: 5.5rem;
    padding-bottom: 10rem;
  }

  #features .container {
    padding: 0 3rem;
    box-sizing: border-box;
  }

  #features .features-item > .text {
    font-size: 3.4rem;
    line-height: calc(23 / 17);
    letter-spacing: 0.12em;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px 0px 0 #fff, 0px 1px 0 #fff, -1px 0px 0 #fff, 0px -1px 0 #fff;
  }

  #features .features-list {
    margin-bottom: 8.2rem;
  }

  #features .features-item {
    padding-top: 13.5rem;
  }

  #features .features-item:nth-child(2) {
    padding-top: 16.4rem;
  }

  #features .features-item:nth-child(3) {
    padding-top: 13.8rem;
    padding-right: 2.5rem;
  }

  #features .features-item:nth-child(1) .pic img {
    width: 70.5rem;
    max-width: 71rem;
  }

  #features .features-item:nth-child(1) .deco {
    top: 3.8rem;
    right: 4.8rem;
    width: 9rem;
  }

  #features .features-item:nth-child(2) .deco {
    width: 9rem;
    left: 18.5rem;
    top: 2.5rem;
  }

  #features .features-item:nth-child(3) .deco {
    width: 7.8rem;
    right: 3.4rem;
    top: 3.2rem;
  }

  #features .features-item:nth-child(2) .pic img {
    width: 71.4rem;
    max-width: 80rem;
  }

  #features .features-item:nth-child(3) .pic img {
    width: 67rem;
  }

  #features .features-item:nth-child(1) > .text {
    right: 19%;
    z-index: 1;
    top: 7.6rem;
  }

  #features .features-item:nth-child(2) > .text {
    left: 6%;
    top: 4.8rem;
    z-index: 1;
  }

  #features .features-item:nth-child(3) > .text {
    right: 17.5%;
    top: 6rem;
    z-index: 1;
  }

  #features .textContent {
    font-size: 4rem;
    line-height: calc(32 / 20);
  }
}

/* ============================
  Distribution schedule 
  ======================================== */
#dis_schedule {
  position: relative;
  background-color: #f6f1ea;
}

#dis_schedule .title > span {
  color: #000;
  font-weight: bold;
  position: relative;
}

#dis_schedule .content {
  max-width: 74rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 751px) {
  #dis_schedule {
    padding-top: 10.2rem;
    padding-bottom: 6rem;
  }

  #dis_schedule .container {
    max-width: 115rem;
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 5.5rem;
  }

  #dis_schedule .title {
    margin-top: 0.5rem;
  }

  #dis_schedule .title{
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  #dis_schedule .title > span {
    line-height: calc(50 / 40);
    font-size: 4rem;
    letter-spacing: 0.04em;
    display: inline-block;
  }
  #dis_schedule .title > span .small {
    font-weight: 400;
    font-size: 2.5rem;
  }
}

@media (max-width: 750px) {
  #dis_schedule {
    padding-top: 3.5rem;
    padding-bottom: 8.2rem;
  }

  #dis_schedule .container {
    padding: 0 6rem;
    box-sizing: border-box;
  }

  #dis_schedule .title > span {
    line-height: 1.36;
    font-size: 4.4rem;
    text-align: center;
    display: block;
  }

  #dis_schedule .title > span .small {
    font-size: 3.6rem;
    font-weight: 400;
  }

  #dis_schedule .title {
    margin-bottom: 4rem;
  }

  #dis_schedule .content .pic {
    width: 62.8rem;
  }

  #dis_schedule .content .pic img {
    width: 100%;
  }

  #dis_schedule .content .txt_note {
    font-size: 2.8rem;
    line-height: calc(20 / 14);
    letter-spacing: -0.4px;
    margin-top: 3rem;
  }
}

/* ========================================= 
  	order
	=======================================*/

#order {
  position: relative;
  overflow: hidden;
}

#order .title {
  position: relative;
}

#order .title{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#order .title > span {
  color: #000;
  font-weight: bold;
  position: relative;
}

#order .content {
  max-width: max-content;
  display: flex;
  justify-content: flex-end;
  position: relative;
  gap: 6.5rem;
  padding-top: 1.5rem;
}

#order .content_item {
  display: flex;
  gap: 7rem;
}

#order .content_item-btn > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 18rem;
  background-color: #efcc3e;
  border-radius: 50%;
  border: 0.3rem solid #000;
  color: #000;
  font-weight: bold;
  line-height: calc(35 / 27);
  text-decoration: none;
  padding: 1.5rem;
  text-align: center;
}

#order .content_item-btn > a:hover{
  opacity: .7 !important;
}

#order .content_item-btn > a::before {
  content: "";
  position: absolute;
  width: 4.6rem;
  height: 0.5rem;
  background-image: url(../img/line.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

#order .content_item-text {
  font-weight: 400;
}

@media (min-width: 751px) {
  #order {
    padding: 10.5rem 0 5.5rem;
  }

  #order .container {
    max-width: 105rem;
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 7.8rem;
  }

  #order .title {
    margin-bottom: 8.5rem;
  }

  #order .title > span {
    line-height: calc(50 / 40);
    font-size: 4rem;
    letter-spacing: 0.04em;
  }

  #order .content_item-btn > a {
    font-size: 2.7rem;
  }
  #order .content_item-text {
    font-size: 2.3rem;
    line-height: calc(30 / 23);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  #order .content_item:nth-child(1) .content_item-btn > a::before {
    right: 110%;
  }
  #order .content_item:nth-child(2) .content_item-btn > a::before {
    left: 110%;
  }
}

@media (max-width: 750px) {
  #order {
    margin-top: 3rem;
  }

  #order .container {
    padding: 12.8rem 0 12.2rem;
  }

  #order .title {
    position: absolute;
    /* width: max-content; */
    right: 4.2rem;
    top: 6.9rem;
    width: 100%;
    text-align: right;
  }

  #order .title > span {
    font-size: 5.8rem;
  }

  #order .title-inner > span {
    background-image: url(../img/bg_title01_sp.png);
    background-size: 51.4rem 13.8rem;
    line-height: calc(48 / 30);
    font-size: 6rem;
    padding: 1rem 6rem 3.2rem;
  }

  #order .content_item-text {
    font-size: 3.6rem;
    line-height: 1.3;
  }
  #order .content_item-btn > a::before {
    background-image: url(../img/line_sp.png);
    width: .7rem;
    height: 6.8rem;
    top: -25%;
  transform: translateY(0%);
  }
  #order .content {
    padding: 0 3rem;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    max-width: 100%;
    gap: 4rem;
  }

  #order .content_item {
    flex-direction: column;
    text-align: center;
    gap: 10rem;
  }

  #order .order-list {
    flex-direction: column;
    align-items: center;
    row-gap: 8rem;
  }

  #order .order-item {
    align-items: center;
  }

  #order .content_item-btn > a {
    font-size: 5.4rem;
    width: 36rem;
    height: 36rem;
    margin: 0 auto;
    border: 0.6rem solid #000;
  }
}

/* ==============================================
	calendar_order
	=========================================== */
#calendar_order {
  position: relative;
  background-color: #f6f1ea;
}

#calendar_order .calendar_order-inner {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
#calendar_order .order-text {
  text-align: center;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.01em;
}

#calendar_order .pic-title {
  z-index: 1;
  color: #fff;
  font-weight: bold;
}

#calendar_order .pic-title span {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

#calendar_order .pic {
  position: relative;
}

#calendar_order .pic-item {
  width: 100%;
  height: 100%;
  position: relative;
}

#calendar_order .calendar_order-inner .content{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#calendar_order .content-title > span {
  color: #64a1fa;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

#calendar_order .content-price {
  z-index: 1;
  color: #000;
  font-weight: 400;
  display: inline-block;
  background-color: #fff;
  padding: 0.4rem 1rem;
}

#calendar_order .btn {
  text-align: center;
}

#calendar_order .btn > .popup {
  background-color: #efcc3e;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
  border-width: 0.3rem;
  border-style: solid;
  border-color: #221815;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

#calendar_order .btn > .popup:hover {
  opacity: 0.7;
}

#calendar_order .pic-title > span:nth-child(1) {
  font-weight: bold;
}

@media (min-width: 751px) {
  #calendar_order .container {
    padding: 6.5rem 0 6rem;
    max-width: 116rem;
  }

  #calendar_order .order-text {
    font-size: 3.3rem;
    line-height: calc(55 / 33);
  }

  #calendar_order .pic-title {
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    font-size: 2.4rem;
    line-height: calc(34 / 24);
    top: 14rem;
    right: 10rem;
    gap: 2.6rem;
    letter-spacing: 0.1em;
  }

  #calendar_order .pic-title > span {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  #calendar_order .pic-title > span > span {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  #calendar_order .pic-title > span > span > span {
    font-size: 2.3rem;
    font-weight: 400;
    padding: 1rem 0 1.5rem;
    color: #000;
    background-color: #fff;
    letter-spacing: 0;
    line-height: 1.3;
  }

  #calendar_order .pic-title > span:nth-child(1) {
    font-size: 2.5rem;
  }
  #calendar_order .calendar_order-inner {
    margin-top: 4.5rem;
    gap: 3rem;
  }
  #calendar_order .pic-item {
    width: 90rem;
  }

  #calendar_order .content-title > span {
    line-height: calc(53 / 50);
    font-size: 5rem;
    letter-spacing: 0.03em;
  }
  #calendar_order .content-title {
    margin-top: 2.8rem;
  }

  #calendar_order .content-title > span > .small {
    font-weight: 400;
    font-size: 2.5rem;
  }

  #calendar_order .content-price {
    position: absolute;
    line-height: calc(46 / 30);
    font-size: 3rem;
    top: 49.2rem;
    left: 58.5rem;
    width: max-content;
  }

  #calendar_order .content-price .txtMed {
    line-height: calc(47 / 44);
    font-size: 4.4rem;
    font-weight: bold;
  }

  #calendar_order .btn {
    margin-top: 3.8rem;
  }

  #calendar_order .btn > .popup {
    width: 36.2rem;
    height: 6rem;
    border-radius: 4rem;
    font-size: 2.7rem;
    line-height: calc(42 / 27);
  }
}

@media (max-width: 750px) {
  #calendar_order .container {
    padding: 9.8rem 0;
  }

  #calendar_order .calendar_order-inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  #calendar_order .content-title > span {
    font-size: 5.8rem;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px 0px 0 #fff, 0px 1px 0 #fff, -1px 0px 0 #fff, 0px -1px 0 #fff;
    line-height: 1.1;
    text-align: left;
  }

  #calendar_order .content-title > span > .small {
    font-size: 4rem;
    font-weight: 400;
  }

  #calendar_order .pic-item {
    padding: 9.4rem 0 7rem;
    order: 1;
  }

  #calendar_order .pic {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  #calendar_order .pic-title {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7rem;
  }
  #calendar_order .pic-title > span:nth-child(1) {
    background-color: transparent;
  }
  #calendar_order .pic-title span {
    font-size: 3.6rem;
    color: #000;
  }

  #calendar_order .pic-title > span {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0.6rem;
  }

  #calendar_order .pic-title > span > span {
    background-color: #fff;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  #calendar_order .pic-item > img {
    width: 109rem;
    margin: 0 auto;
    max-width: unset;
    position: relative;
    left: 47.2%;
    transform: translateX(-50%);
  }

  #calendar_order .order-text {
    font-size: 4rem;
    line-height: 1.58;
  }

  #calendar_order .content {
    position: absolute;
    top: 9rem;
    right: 1.5rem;
    width: 100%;
    text-align: right;
  }

  #calendar_order .content-title {
    margin-bottom: 5rem;
    padding-right: 0rem;
    width: 100%;
  }

  #calendar_order .content-price {
    margin-top: 6rem;
    line-height: 1;
    font-size: 4rem;
    padding-right: 0;
    order: 3;
    text-align: center;
    background-color: transparent;
  }

  #calendar_order .content-price .txtMed {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 2.2rem;
    display: inline-block;
  }

  #calendar_order .btn {
    margin-top: 8.8rem;
  }

  #calendar_order .btn > .popup {
    width: 62rem;
    height: 13rem;
    border-radius: 6rem;
    font-size: 6rem;
    line-height: 1;
    border-width: 0.6rem;
    font-size: 5.4rem;
  }
}

/* c-modal */
.c-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.c-modal__bg {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10001;
}

.c-modal__main {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 700px;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  z-index: 10002;
}

.c-modal__body {
  position: relative;
  background: #fbf9e6;
  width: 100%;
  padding: 40px;
  border-radius: 30px;
  box-sizing: border-box;
}

.c-modal__body li {
  font-family: Noto Sans JP, Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  margin-top: 4px;
  padding-left: 17px;
  text-indent: -17px;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
}

.c-modal__body li a {
  position: relative;
  text-decoration: none;
  color: #91541c;
}

.c-modal__body li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  transform-origin: left;
  background-color: #ff3938;
  z-index: 1;
}

.c-modal__body li a:hover {
  color: #ff3938;
}

.c-modal__body li a:hover::before {
  transform: scaleX(0);
  transform-origin: right;
}

.c-modal__body li .text:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  margin-right: 10px;
  background: #e95757;
  vertical-align: 2px;
}

.c-modal__body li.is-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-modal__body li.is-img .text {
  width: 390px;
}

.c-modal__body li.is-img .img {
  width: 180px;
}

.c-modal__body .btn {
  text-align: center;
}

.c-modal__body .btn a {
  display: flex;
  position: relative;
  margin: 20px auto 0;
  text-decoration: none;
  background: #64a1fa;
  border: 2px solid #64a1fa;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease-out;
}

.c-modal__body .btn a:hover {
  color: #64a1fa;
  background-color: #fff;
}

.c-modal__body .btn a:hover:before {
  border-color: #64a1fa;
}

.c-modal__body .btn a:hover:after {
  border-color: #64a1fa;
}

.c-modal__body .btn a:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  margin-top: -9px;
  border-radius: 16px;
  border: 2px solid #fffae2;
  transition: 0.2s ease-out;
}

.c-modal__body .btn a:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 24px;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-right: 2px solid #fffae2;
  border-bottom: 2px solid #fffae2;
  transform: rotate(-45deg);
  transition: 0.2s ease-out;
}

.c-modal__close {
  position: absolute;
  top: -26px;
  right: -26px;
  background: #64a1fa;
  width: 52px;
  height: 52px;
  border-radius: 52px;
  border: 3px solid #fffae2;
  cursor: pointer;
}

.c-modal__close a {
  position: relative;
  display: block;
}

.c-modal__close a:before {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  top: 21px;
  left: 14px;
  background: #fffae2;
  transform: rotate(45deg);
}

.c-modal__close a:after {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  top: 21px;
  left: 14px;
  background: #fffae2;
  transform: rotate(-45deg);
}

/* ==============================================
	NOTES
================================================== */
#notes {
  position: relative;
  overflow: hidden;
}

#notes .title > span {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  color: #000;
  letter-spacing: 0.04em;
  font-weight: bold;
  position: relative;
}

#notes .title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#notes .content {
  max-width: 81rem;
}

#notes .content .tit {
  position: relative;
  color: #000;
  font-weight: bold;
}

#notes .content .tit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background-color: #000;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

#notes .content .tit > span {
  background-color: #fff;
  padding-right: 1rem;
}

#notes .content ul li {
  color: #000;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  text-align: justify;
  position: relative;
}

#notes .content ul li::before {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  top: 1.7rem;
  left: 1rem;
  background-color: #221815;
}

#notes .content ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #221815;
}

#notes .content ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  transform-origin: left;
  background-color: #ff3938;
  z-index: 1;
}

#notes .content ul li a:hover {
  color: #ff3938;
}

#notes .content ul li a:hover::before {
  transform: scaleX(0);
  transform-origin: right;
}
#notes .content .tit:nth-child(1) {
  margin-top: 0;
}

@media (min-width: 751px) {
  #notes .container {
    padding: 12rem 0;
    display: flex;
    flex-direction: row-reverse;
    max-width: 105.8rem;
    gap: 6.3rem;
  }

  #notes .title > span {
    font-size: 4rem;
  }

  #notes .content .tit {
    font-size: 2.2rem;
    line-height: calc(36 / 25);
    margin-bottom: 2.2rem;
    margin-top: 5.5rem;
  }

  #notes .content ul li {
    font-size: 2.3rem;
    line-height: 1.56;
    margin-bottom: 0.5rem;
    padding-left: 2.2rem;
  }

  #notes .content ul li a::before {
    height: 0.3rem;
  }
}

@media (max-width: 750px) {
  #notes .container {
    padding: 11.2rem 0;
  }

  #notes .title {
    text-align: right;
    padding: 0 4.5rem;
    margin-left: auto;
  }

  #notes .title > span {
    font-size: 5.8rem;
  }

  #notes .content {
    padding: 0 6rem;
    box-sizing: border-box;
    margin-top: -2rem;
  }

  #notes .content .tit {
    font-size: 3.3rem;
    line-height: calc(36 / 23);
    padding-bottom: 3rem;
    margin-top: 4rem;
  }
  #notes .content .tit > span {
    background-color: transparent;
  }
  #notes .content .tit::before {
    top: auto;
    bottom: 0;
    height: 0.6rem;
  }

  #notes .content ul {
    padding-left: 2.2rem;
  }

  #notes .content ul li {
    font-size: 3.4rem;
    line-height: calc(22 / 17);
    margin-bottom: 1rem;
    letter-spacing: -1px;
  }
  #notes .content ul li a::before {
    height: 0.5rem;
    bottom: -.2rem;
  }
  #notes .content ul li::before {
    width: 0.6rem;
    height: 0.6rem;
    top: 2.2rem;
    left: -1.5rem;
  }
}

/* Section banner */
.section-banner {
  position: relative;
}

.section-banner-inner {
  position: relative;
}

.section-banner-inner > .bg {
  position: absolute;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.section-banner .container {
  position: relative;
}

.section-banner .title {
  text-align: center;
}

.section-banner .title > span {
  font-weight: bold;
  color: #ff3938;
  position: relative;
  display: inline-block;
  text-align: center;
}

.section-banner .title > span::before,
.section-banner .title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

.section-banner .title > span::before {
  left: 0;
}

.section-banner .title > span::after {
  right: 0;
}

.section-banner .container .pic {
  margin: 0 auto;
}

.section-banner .btnWrap {
  text-align: center;
}

.section-banner .btnWrap > a {
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  background-color: #91541c;
}

/* Back to top */
.back-to-top {
  position: fixed;
  z-index: 999;
  display: none;
}

.back-to-top-img {
  cursor: pointer;
}

@media (min-width: 751px) {
  /* Section banner */
  .section-banner {
    margin-top: 3.2rem;
  }

  .section-banner-inner > .bg {
    background-image: url(../img/bg_banner.png);
  }

  .section-banner .container {
    min-height: 63.5rem;
  }

  .section-banner .title {
    margin-bottom: 3rem;
  }

  .section-banner .title > span {
    font-size: 3.2rem;
    line-height: calc(42 / 32);
    padding: 0 4rem;
  }

  .section-banner .title > span::before,
  .section-banner .title > span::after {
    width: 3.7rem;
    height: 7.3rem;
  }

  .section-banner .title > span::before {
    background-image: url(../img/line_title01.png);
  }

  .section-banner .title > span::after {
    background-image: url(../img/line_title02.png);
  }

  .section-banner .container .pic {
    padding-top: 5rem;
    width: 126.9rem;
  }

  .section-banner .btnWrap {
    margin-top: 2rem;
  }

  .section-banner .btnWrap > a {
    width: 31rem;
    height: 6rem;
    border-radius: 5rem;
    font-size: 3rem;
    border-color: transparent;
    border-style: solid;
    border-width: 0.2rem;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .section-banner .btnWrap > a:hover {
    color: #91541c;
    background-color: #fff;
    border-color: #91541c;
  }

  /* Back to top */
  .back-to-top {
    bottom: 3.2rem;
    right: 2.5rem;
  }

  .back-to-top-img {
    width: 9rem;
  }

  .only-sp {
    display: none;
  }
}

@media (max-width: 750px) {
  /* C-modal */
  .c-modal__main {
    width: 95%;
  }

  .c-modal__body {
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
  }

  .c-modal__body li {
    margin-top: 3px;
    font-size: 15px;
  }

  .c-modal__body li.is-img .text {
    width: 100%;
  }

  .c-modal__body li.is-img .img {
    width: 100%;
    margin: 10px 0 10px 17px;
  }

  .c-modal__body .btn {
    display: block;
  }

  .c-modal__body .btn a {
    width: 100%;
    margin-top: 13px;
    height: 56px;
  }

  /* Banner
	======================================================== */
  .section-banner {
    margin-top: 5rem;
  }

  .section-banner-inner > .bg {
    background-image: url(../img/bg_banner_sp.png);
  }

  .section-banner .container {
    min-height: 185.6rem;
  }

  .section-banner .title {
    margin-bottom: 6rem;
  }

  .section-banner .title > span {
    font-size: 3.4rem;
    line-height: calc(25 / 17);
    padding: 0 4rem;
  }

  .section-banner .title > span::before,
  .section-banner .title > span::after {
    width: 4.8rem;
    height: 9rem;
  }

  .section-banner .title > span::before {
    background-image: url(../img/line_title01_sp.png);
  }

  .section-banner .title > span::after {
    background-image: url(../img/line_title02_sp.png);
  }

  .section-banner .container .pic {
    padding-top: 11.5rem;
    width: 100%;
    padding-left: 1.2rem;
    box-sizing: border-box;
  }

  .section-banner .container .pic img {
    width: 100%;
  }

  .section-banner .btnWrap {
    margin-top: 4rem;
  }

  .section-banner .btnWrap > a {
    width: calc(100% - 12rem);
    height: 13rem;
    border-radius: 6rem;
    font-size: 6rem;
  }

  /* Back to top */
  .back-to-top {
    bottom: 1.5rem;
    right: 1rem;
  }

  .back-to-top-img {
    width: 14.6rem;
  }

  .only-pc {
    display: none;
  }
}

/* Animation
============================================================ */
.scrollEffect .slideUp {
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
  transition-property: visibility;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.scrollEffect.show .slideUp {
  visibility: visible;
  animation-name: slideUp;
}

.scrollEffect .fadeZoom,
.scrollEffect.fadeZoom {
  opacity: 0;
  transform: scale(0.8) translate3d(0, 50px, 0);
  visibility: hidden;
  transition-property: visibility;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.scrollEffect.show .fadeZoom,
.scrollEffect.show.fadeZoom {
  visibility: visible;
  animation-name: fadeZoom;
  display: inline-block;
}

.scrollEffect.fadeInUp,
.scrollEffect .fadeInUp,
.scrollEffectParent > * {
  transition-property: visibility;
  visibility: hidden;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translate3d(0, 280%, 0) scaleY(1.5);
}

.scrollEffect.show.fadeInUp,
.scrollEffect.show .fadeInUp,
.scrollEffectParent.show,
.scrollEffectParent.show > *,
.scrollEffectParent > *.show {
  visibility: visible;
  animation-name: fadeInUp;
}

.scrollEffectParent > *:nth-child(1) {
  animation-delay: 0ms;
}

.scrollEffectParent > *:nth-child(2) {
  animation-delay: 300ms;
}

.scrollEffectParent > *:nth-child(3) {
  animation-delay: 600ms;
}

.delay01 {
  animation-delay: 500ms !important;
}

.delay02 {
  animation-delay: 1000ms !important;
}
.delay03 {
  animation-delay: 1500ms !important;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.8) translate3d(0, 50px, 0);
  }

  40% {
    opacity: 1;
    transform: scale(1.15);
  }

  60% {
    opacity: 1;
    transform: scale(0.95) translate3d(0, 0, 0);
  }

  80% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 280%, 0) scaleY(1.5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    opacity: 1;
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    opacity: 1;
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes fadeInUpFT {
  0% {
    opacity: 0;
    transform: scale(0.8) translate3d(0, 50px, 0);
  }

  40% {
    opacity: 1;
    transform: scale(1.2);
  }

  60% {
    opacity: 1;
    transform: scale(0.95) translate3d(0, 0, 0);
  }

  80% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
