@import url("../fonts/Satoshi/css/satoshi.css");
@import url("../fonts/ClashDisplay/css/clash-display.css");
@import url("../fonts/Magnita/Magnita.css");
@import url("../fonts/bootstrap-icons-1.10.2/font.css");
::-webkit-scrollbar {
  width: 5px;
}



/* CSSファイルの先頭に追加 */
:root {
  /* メインカラー */
  --primary-color: #FF6B9D; /* ビビッドピンク - アクセントカラー */
  --secondary-color: #FFC2D6; /* ライトピンク - セカンダリカラー */
  --tertiary-color: #9C4F96; /* 深い紫 - ポイントカラー */
  
  /* バックグラウンドカラー */
  --bg-light: #FFF5F8; /* 超薄いピンク - 背景色 */
  --bg-medium: #FFDEE9; /* 薄いピンク - アクセント背景 */
  --bg-dark: #F4ABD2; /* ミディアムピンク - 濃い背景 */
  
  /* テキストカラー */
  --text-dark: #5A2D5F; /* ダークパープル - メインテキスト */
  --text-medium: #B9529E; /* ミディアムパープル - サブテキスト */
  --text-light: #FFE7EE; /* 薄いピンク - 明るい背景上のテキスト */
  
  /* アクセントカラー */
  --accent-bright: #FF4D8B; /* ブライトピンク - ホバー、強調用 */
  --accent-coral: #FF8E7F; /* コーラル - アクセント色 */
  --accent-lavender: #D7A9E3; /* ラベンダー - ソフトアクセント */
}



::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: var(--tertiary-color);
  border-radius: 0;
}

body {
  font-family: "Kiwi Maru", serif;
  font-weight: normal;
  font-size: 20px;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
}

.main-page-wrapper {
  overflow-x: hidden;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-weight: 500;
  color: var(--tertiary-color);
  font-family: "Kiwi Maru", serif;
}

.h1, h1 {
  font-size: 85px;
  line-height: 1.023em;
}

.h2, h2 {
  font-size: 64px;
  line-height: 1.1em;
}

.h4, h4 {
  font-size: 24px;
}

p {
  line-height: 1.7em;
}

.text-xl {
  font-size: 28px;
  line-height: 1.5em;
}

.text-lg {
  font-size: 24px;
  line-height: 1.583em;
}

.text-md {
  font-size: 22px;
}

hr {
  opacity: 0.09;
  margin: 5px 0;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.border-30 {
  border-radius: 30px;
}

.border-40 {
  border-radius: 40px;
}

.border-100 {
  border-radius: 100px;
}

.shapes {
  position: absolute;
  z-index: -1;
}

.light-bg {
  background-color: var(--bg-light);
}

.light-bg-deep {
  background-color: var(--bg-light);
}

.font-magnita {
  font-family: "mizolet";
}

.light-bg-page-wrapper {
  background: #EDF8EB;
}

.color-deep {
  color: var(--text-medium);
}

.box-layout {
  margin: 30px;
}

.ctn-preloader {
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ctn-preloader .icon {
  animation: rotated 8s infinite linear;
}
.ctn-preloader .txt-loading {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 30px;
}
.ctn-preloader .txt-loading .letters-loading {
  font-family: "ClashDisplay";
  font-weight: 500;
  letter-spacing: 8px;
  display: inline-block;
  color: rgba(12, 58, 48, 0.12);
  position: relative;
  font-size: 40px;
  line-height: 30px;
}
.ctn-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--tertiary-color);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 30px;
  position: absolute;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.scroll-top {
  width: 35px;
  height: 35px;
  line-height: 32px;
  font-weight: 900;
  position: fixed;
  bottom: 20px;
  right: 5px;
  z-index: 99;
  text-align: center;
  color: var(--tertiary-color);
  font-size: 25px;
  cursor: pointer;
  border-radius: 50%;
  background: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.tran3s {
  transition: all 0.3s ease-in-out;
}

.tran4s {
  transition: all 0.4s ease-in-out;
}

.tran5s {
  transition: all 0.5s ease-in-out;
}

.tran6s {
  transition: all 0.6s ease-in-out;
}

.btn-one {
  font-weight: 700;
  font-size: 18px;
  line-height: 48px;
  padding: 0 30px;
  text-align: center;
  border-radius: 40px;
  color: #fff;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out 0s;
}
.btn-one:hover {
  background-color: var(--tertiary-color);
  color: #fff;
}

.btn-two {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 52px;
  text-align: center;
  padding: 0 35px;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
}
.btn-two .icon {
  width: 1.35em;
}
.btn-two:hover {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.btn-three {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.btn-three img {
  width: 22px;
  margin-top: 3px;
}
.btn-three:hover span {
  text-decoration: underline;
}
.btn-three.border-style {
  border: 1px solid #000;
  border-radius: 40px;
  padding: 12px 25px;
  transition: all 0.3s ease-in-out 0s;
}
.btn-three.border-style:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-three.border-style:hover span {
  text-decoration: none;
}

.btn-four {
  font-weight: 700;
  font-size: 18px;
  line-height: 50px;
  padding: 0 38px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  background-color: var(--tertiary-color);
  transition: all 0.3s ease-in-out 0s;
}
.btn-four:hover {
  background-color: var(--primary-color);
  color: #000;
}

.btn-five .text {
  font-weight: 500;
  font-style: italic;
  color: var(--tertiary-color);
  text-decoration: underline;
}
.btn-five .icon {
  width: 48px;
  height: 48px;
  background: var(--tertiary-color);
  color: #fff;
  font-size: 22px;
  margin-left: 12px;
}
.btn-five:hover .icon {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.btn-six {
  font-weight: 700;
  font-size: 18px;
  line-height: 48px;
  padding: 0 38px;
  text-align: center;
  border-radius: 50px;
  color: var(--tertiary-color);
  border: 1px solid var(--tertiary-color);
  transition: all 0.3s ease-in-out 0s;
}
.btn-six:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

.btn-seven .text {
  font-weight: 500;
  font-style: italic;
  color: var(--tertiary-color);
}
.btn-seven .icon {
  width: 50px;
  height: 50px;
  background: var(--tertiary-color);
  margin-left: 45px;
  position: relative;
}
.btn-seven .icon:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--tertiary-color);
  left: -30px;
  top: 50%;
}
.btn-seven:hover .text {
  text-decoration: underline;
}

.btn-eight .text {
  font-weight: 700;
  font-size: 18px;
  color: var(--tertiary-color);
}
.btn-eight .icon {
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  font-size: 20px;
  background: var(--tertiary-color);
  color: #fff;
  margin-left: 10px;
  transition: all 0.3s ease-in-out 0s;
}
.btn-eight:hover .text {
  text-decoration: underline;
}
.btn-eight:hover .icon {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.btn-nine {
  font-size: 40px;
  width: 105px;
  height: 105px;
  color: var(--tertiary-color);
  border: 1px solid var(--tertiary-color);
}
.btn-nine:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-ten {
  font-size: 18px;
  font-weight: 700;
  padding: 0 35px;
  min-width: 160px;
  text-align: center;
  background: #101010;
  color: #fff;
  line-height: 50px;
}
.btn-ten:hover {
  background: var(--tertiary-color);
}

.btn-eleven .text {
  font-weight: 700;
  font-size: 18px;
  color: #000;
}
.btn-eleven .icon {
  width: 45px;
  height: 45px;
  background: #000;
  margin-left: 38px;
  position: relative;
}
.btn-eleven .icon img {
  width: 30px;
}
.btn-eleven .icon:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: #000;
  left: -26px;
  top: 50%;
}
.btn-eleven:hover .text {
  text-decoration: underline;
}
.btn-eleven:hover .icon {
  background: var(--tertiary-color);
}

.btn-twelve {
  font-family: "ClashDisplay";
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 50px;
  padding: 0 30px;
  text-align: center;
  border-radius: 40px;
  color: #000;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out 0s;
}
.btn-twelve:hover {
  background-color: #000;
  color: #fff;
}

.btn-thirteen {
  font-family: "ClashDisplay";
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 50px;
  padding: 0 30px;
  text-align: center;
  border-radius: 40px;
  color: #fff;
  min-width: 175px;
  background-color: #202020;
  transition: all 0.3s ease-in-out 0s;
}
.btn-thirteen:hover {
  background-color: var(--secondary-color);
  color: #000;
}

.btn-fourteen {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  background-color: #202020;
  transition: all 0.3s ease-in-out 0s;
}
.btn-fourteen:hover {
  background-color: var(--secondary-color);
  color: #000;
}

.btn-fifteen {
  line-height: 46px;
  border: 2px solid #000;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  min-width: 135px;
  padding: 0 30px;
  text-align: center;
  color: #000;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out 0s;
}
.btn-fifteen:hover {
  background-color: #000;
  color: #fff;
}

.btn-sixteen {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  padding: 0 35px;
  line-height: 50px;
  border: 1px solid #000;
  position: relative;
  display: inline-block;
  background: #fff;
}
.btn-sixteen:before {
  position: absolute;
  content: "";
  top: -14px;
  height: 14px;
  width: calc(100% + 3px);
  left: 6px;
  transform: skewX(-45deg);
  background: #000;
  transition: all 0.3s ease-in-out 0s;
}
.btn-sixteen:after {
  position: absolute;
  content: "";
  right: -16px;
  height: calc(100% + 1px);
  width: 15px;
  top: -7px;
  transform: skewY(-45deg);
  background: #000;
  transition: all 0.3s ease-in-out 0s;
}
.btn-sixteen:hover {
  background: var(--secondary-color);
}

.btn-seventeen {
  color: #000;
  font-weight: 500;
  padding: 0 30px;
  line-height: 55px;
  border-radius: 40px;
  background: #FFE86B;
}
.btn-seventeen i {
  margin-left: 8px;
}
.btn-seventeen:hover {
  background: var(--secondary-color);
}

.btn-eighteen {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  padding: 0 38px;
  line-height: 52px;
  border-radius: 10px;
  background: #1F5E59;
  text-align: center;
}
.btn-eighteen:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.btn-nineteen {
  font-size: 18px;
  color: #1F5E59;
  font-weight: 700;
  padding: 0 30px;
  line-height: 50px;
  border: 1px solid #1F5E59;
  border-radius: 10px;
  text-align: center;
}
.btn-nineteen:hover {
  background: #1F5E59;
  color: #fff;
}

.btn-twenty {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 55px;
  padding: 0 45px;
  text-align: center;
  border-radius: 40px;
  color: #000;
  min-width: 175px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out 0s;
}
.btn-twenty:hover {
  background-color: var(--secondary-color);
  color: #000;
}

.title-one .upper-title {
  font-weight: 500;
  margin-bottom: 14px;
  color: #46846A;
}
.title-one h2 {
  font-weight: 700;
}

.title-two .upper-title {
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--accent-bright);
}
.title-two h2 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.027em;
  color: var(--primary-color);
}
.title-two h2 span {
  color: var(--secondary-color);
}
.title-two .upper-title-two {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.4);
}

.title-three .upper-title {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--accent-bright);
}
.title-three h2 {
  font-weight: 700;
  line-height: 1.03em;
  color: var(--primary-color);
}

.title-four h2 {
  font-family: "mizolet";
  font-size: 68px;
  line-height: 1.323em;
  color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--text-medium);
}
a:hover, a:focus, a:visited {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
}

button:focus {
  outline: none;
}

input, textarea {
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

audio, video, canvas {
  max-width: 100%;
}

iframe {
  border: none !important;
}

.style-none {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.p0 {
  padding: 0 !important;
}

.m0 {
  margin: 0 !important;
}

.theme-mb-0 {
  margin-bottom: 0;
}

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

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-225 {
  padding-top: 225px;
}

.pt-250 {
  padding-top: 250px;
}

.pt-300 {
  padding-top: 300px;
}

.pt-350 {
  padding-top: 350px;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pb-350 {
  padding-bottom: 350px;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

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

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-225 {
  margin-top: 225px;
}

.mt-250 {
  margin-top: 250px;
}

.mt-300 {
  margin-top: 300px;
}

.mt-350 {
  margin-top: 350px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-225 {
  margin-bottom: 225px;
}

.mb-250 {
  margin-bottom: 250px;
}

.mb-300 {
  margin-bottom: 300px;
}

.mb-350 {
  margin-bottom: 350px;
}

@media (max-width: 1399px) {
  .xl-p0 {
    padding: 0 !important;
  }
  .xl-m0 {
    margin: 0 !important;
  }
  .xl-pt-10 {
    padding-top: 10px !important;
  }
  .xl-pt-20 {
    padding-top: 20px !important;
  }
  .xl-pt-30 {
    padding-top: 30px !important;
  }
  .xl-pt-40 {
    padding-top: 40px !important;
  }
  .xl-pt-50 {
    padding-top: 50px !important;
  }
  .xl-pt-60 {
    padding-top: 60px !important;
  }
  .xl-pt-70 {
    padding-top: 70px !important;
  }
  .xl-pt-80 {
    padding-top: 80px !important;
  }
  .xl-pt-90 {
    padding-top: 90px !important;
  }
  .xl-pt-100 {
    padding-top: 100px !important;
  }
  .xl-pt-110 {
    padding-top: 110px !important;
  }
  .xl-pt-120 {
    padding-top: 120px !important;
  }
  .xl-pt-130 {
    padding-top: 130px !important;
  }
  .xl-pt-140 {
    padding-top: 140px !important;
  }
  .xl-pt-150 {
    padding-top: 150px !important;
  }
  .xl-pt-200 {
    padding-top: 200px !important;
  }
  .xl-pb-10 {
    padding-bottom: 10px !important;
  }
  .xl-pb-20 {
    padding-bottom: 20px !important;
  }
  .xl-pb-30 {
    padding-bottom: 30px !important;
  }
  .xl-pb-40 {
    padding-bottom: 40px !important;
  }
  .xl-pb-50 {
    padding-bottom: 50px !important;
  }
  .xl-pb-60 {
    padding-bottom: 60px !important;
  }
  .xl-pb-70 {
    padding-bottom: 70px !important;
  }
  .xl-pb-80 {
    padding-bottom: 80px !important;
  }
  .xl-pb-90 {
    padding-bottom: 90px !important;
  }
  .xl-pb-100 {
    padding-bottom: 100px !important;
  }
  .xl-pb-110 {
    padding-bottom: 110px !important;
  }
  .xl-pb-120 {
    padding-bottom: 120px !important;
  }
  .xl-pb-130 {
    padding-bottom: 130px !important;
  }
  .xl-pb-140 {
    padding-bottom: 140px !important;
  }
  .xl-pb-150 {
    padding-bottom: 150px !important;
  }
  .xl-pb-200 {
    padding-bottom: 200px !important;
  }
  .xl-mt-10 {
    margin-top: 10px !important;
  }
  .xl-mt-20 {
    margin-top: 20px !important;
  }
  .xl-mt-30 {
    margin-top: 30px !important;
  }
  .xl-mt-40 {
    margin-top: 40px !important;
  }
  .xl-mt-50 {
    margin-top: 50px !important;
  }
  .xl-mt-60 {
    margin-top: 60px !important;
  }
  .xl-mt-70 {
    margin-top: 70px !important;
  }
  .xl-mt-80 {
    margin-top: 80px !important;
  }
  .xl-mt-90 {
    margin-top: 90px !important;
  }
  .xl-mt-100 {
    margin-top: 100px !important;
  }
  .xl-mt-110 {
    margin-top: 110px !important;
  }
  .xl-mt-120 {
    margin-top: 120px !important;
  }
  .xl-mt-130 {
    margin-top: 130px !important;
  }
  .xl-mt-140 {
    margin-top: 140px !important;
  }
  .xl-mt-150 {
    margin-top: 150px !important;
  }
  .xl-mt-200 {
    margin-top: 200px !important;
  }
  .xl-mb-10 {
    margin-bottom: 10px !important;
  }
  .xl-mb-20 {
    margin-bottom: 20px !important;
  }
  .xl-mb-30 {
    margin-bottom: 30px !important;
  }
  .xl-mb-40 {
    margin-bottom: 40px !important;
  }
  .xl-mb-50 {
    margin-bottom: 50px !important;
  }
  .xl-mb-60 {
    margin-bottom: 60px !important;
  }
  .xl-mb-70 {
    margin-bottom: 70px !important;
  }
  .xl-mb-80 {
    margin-bottom: 80px !important;
  }
  .xl-mb-90 {
    margin-bottom: 90px !important;
  }
  .xl-mb-100 {
    margin-bottom: 100px !important;
  }
  .xl-mb-110 {
    margin-bottom: 110px !important;
  }
  .xl-mb-120 {
    margin-bottom: 120px !important;
  }
  .xl-mb-130 {
    margin-bottom: 130px !important;
  }
  .xl-mb-140 {
    margin-bottom: 140px !important;
  }
  .xl-mb-150 {
    margin-bottom: 150px !important;
  }
  .xl-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 1399px)*/
@media (max-width: 1199px) {
  .lg-p0 {
    padding: 0 !important;
  }
  .lg-m0 {
    margin: 0 !important;
  }
  .lg-pt-10 {
    padding-top: 10px !important;
  }
  .lg-pt-20 {
    padding-top: 20px !important;
  }
  .lg-pt-30 {
    padding-top: 30px !important;
  }
  .lg-pt-40 {
    padding-top: 40px !important;
  }
  .lg-pt-50 {
    padding-top: 50px !important;
  }
  .lg-pt-60 {
    padding-top: 60px !important;
  }
  .lg-pt-70 {
    padding-top: 70px !important;
  }
  .lg-pt-80 {
    padding-top: 80px !important;
  }
  .lg-pt-90 {
    padding-top: 90px !important;
  }
  .lg-pt-100 {
    padding-top: 100px !important;
  }
  .lg-pt-110 {
    padding-top: 110px !important;
  }
  .lg-pt-120 {
    padding-top: 120px !important;
  }
  .lg-pt-130 {
    padding-top: 130px !important;
  }
  .lg-pt-140 {
    padding-top: 140px !important;
  }
  .lg-pt-150 {
    padding-top: 150px !important;
  }
  .lg-pt-200 {
    padding-top: 200px !important;
  }
  .lg-pb-10 {
    padding-bottom: 10px !important;
  }
  .lg-pb-20 {
    padding-bottom: 20px !important;
  }
  .lg-pb-30 {
    padding-bottom: 30px !important;
  }
  .lg-pb-40 {
    padding-bottom: 40px !important;
  }
  .lg-pb-50 {
    padding-bottom: 50px !important;
  }
  .lg-pb-60 {
    padding-bottom: 60px !important;
  }
  .lg-pb-70 {
    padding-bottom: 70px !important;
  }
  .lg-pb-80 {
    padding-bottom: 80px !important;
  }
  .lg-pb-90 {
    padding-bottom: 90px !important;
  }
  .lg-pb-100 {
    padding-bottom: 100px !important;
  }
  .lg-pb-110 {
    padding-bottom: 110px !important;
  }
  .lg-pb-120 {
    padding-bottom: 120px !important;
  }
  .lg-pb-130 {
    padding-bottom: 130px !important;
  }
  .lg-pb-140 {
    padding-bottom: 140px !important;
  }
  .lg-pb-150 {
    padding-bottom: 150px !important;
  }
  .lg-pb-200 {
    padding-bottom: 200px !important;
  }
  .lg-mt-10 {
    margin-top: 10px !important;
  }
  .lg-mt-20 {
    margin-top: 20px !important;
  }
  .lg-mt-30 {
    margin-top: 30px !important;
  }
  .lg-mt-40 {
    margin-top: 40px !important;
  }
  .lg-mt-50 {
    margin-top: 50px !important;
  }
  .lg-mt-60 {
    margin-top: 60px !important;
  }
  .lg-mt-70 {
    margin-top: 70px !important;
  }
  .lg-mt-80 {
    margin-top: 80px !important;
  }
  .lg-mt-90 {
    margin-top: 90px !important;
  }
  .lg-mt-100 {
    margin-top: 100px !important;
  }
  .lg-mt-110 {
    margin-top: 110px !important;
  }
  .lg-mt-120 {
    margin-top: 120px !important;
  }
  .lg-mt-130 {
    margin-top: 130px !important;
  }
  .lg-mt-140 {
    margin-top: 140px !important;
  }
  .lg-mt-150 {
    margin-top: 150px !important;
  }
  .lg-mt-200 {
    margin-top: 200px !important;
  }
  .lg-mb-10 {
    margin-bottom: 10px !important;
  }
  .lg-mb-20 {
    margin-bottom: 20px !important;
  }
  .lg-mb-30 {
    margin-bottom: 30px !important;
  }
  .lg-mb-40 {
    margin-bottom: 40px !important;
  }
  .lg-mb-50 {
    margin-bottom: 50px !important;
  }
  .lg-mb-60 {
    margin-bottom: 60px !important;
  }
  .lg-mb-70 {
    margin-bottom: 70px !important;
  }
  .lg-mb-80 {
    margin-bottom: 80px !important;
  }
  .lg-mb-90 {
    margin-bottom: 90px !important;
  }
  .lg-mb-100 {
    margin-bottom: 100px !important;
  }
  .lg-mb-110 {
    margin-bottom: 110px !important;
  }
  .lg-mb-120 {
    margin-bottom: 120px !important;
  }
  .lg-mb-130 {
    margin-bottom: 130px !important;
  }
  .lg-mb-140 {
    margin-bottom: 140px !important;
  }
  .lg-mb-150 {
    margin-bottom: 150px !important;
  }
  .lg-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 1199px)*/
@media (max-width: 991px) {
  .md-p0 {
    padding: 0 !important;
  }
  .md-m0 {
    margin: 0 !important;
  }
  .md-pt-10 {
    padding-top: 10px !important;
  }
  .md-pt-20 {
    padding-top: 20px !important;
  }
  .md-pt-30 {
    padding-top: 30px !important;
  }
  .md-pt-40 {
    padding-top: 40px !important;
  }
  .md-pt-50 {
    padding-top: 50px !important;
  }
  .md-pt-60 {
    padding-top: 60px !important;
  }
  .md-pt-70 {
    padding-top: 70px !important;
  }
  .md-pt-80 {
    padding-top: 80px !important;
  }
  .md-pt-90 {
    padding-top: 90px !important;
  }
  .md-pt-100 {
    padding-top: 100px !important;
  }
  .md-pt-110 {
    padding-top: 110px !important;
  }
  .md-pt-120 {
    padding-top: 120px !important;
  }
  .md-pt-130 {
    padding-top: 130px !important;
  }
  .md-pt-140 {
    padding-top: 140px !important;
  }
  .md-pt-150 {
    padding-top: 150px !important;
  }
  .md-pt-200 {
    padding-top: 200px !important;
  }
  .md-pb-10 {
    padding-bottom: 10px !important;
  }
  .md-pb-20 {
    padding-bottom: 20px !important;
  }
  .md-pb-30 {
    padding-bottom: 30px !important;
  }
  .md-pb-40 {
    padding-bottom: 40px !important;
  }
  .md-pb-50 {
    padding-bottom: 50px !important;
  }
  .md-pb-60 {
    padding-bottom: 60px !important;
  }
  .md-pb-70 {
    padding-bottom: 70px !important;
  }
  .md-pb-80 {
    padding-bottom: 80px !important;
  }
  .md-pb-90 {
    padding-bottom: 90px !important;
  }
  .md-pb-100 {
    padding-bottom: 100px !important;
  }
  .md-pb-110 {
    padding-bottom: 110px !important;
  }
  .md-pb-120 {
    padding-bottom: 120px !important;
  }
  .md-pb-130 {
    padding-bottom: 130px !important;
  }
  .md-pb-140 {
    padding-bottom: 140px !important;
  }
  .md-pb-150 {
    padding-bottom: 150px !important;
  }
  .md-pb-200 {
    padding-bottom: 200px !important;
  }
  .md-mt-10 {
    margin-top: 10px !important;
  }
  .md-mt-20 {
    margin-top: 20px !important;
  }
  .md-mt-30 {
    margin-top: 30px !important;
  }
  .md-mt-40 {
    margin-top: 40px !important;
  }
  .md-mt-50 {
    margin-top: 50px !important;
  }
  .md-mt-60 {
    margin-top: 60px !important;
  }
  .md-mt-70 {
    margin-top: 70px !important;
  }
  .md-mt-80 {
    margin-top: 80px !important;
  }
  .md-mt-90 {
    margin-top: 90px !important;
  }
  .md-mt-100 {
    margin-top: 100px !important;
  }
  .md-mt-110 {
    margin-top: 110px !important;
  }
  .md-mt-120 {
    margin-top: 120px !important;
  }
  .md-mt-130 {
    margin-top: 130px !important;
  }
  .md-mt-140 {
    margin-top: 140px !important;
  }
  .md-mt-150 {
    margin-top: 150px !important;
  }
  .md-mt-200 {
    margin-top: 200px !important;
  }
  .md-mb-10 {
    margin-bottom: 10px !important;
  }
  .md-mb-20 {
    margin-bottom: 20px !important;
  }
  .md-mb-30 {
    margin-bottom: 30px !important;
  }
  .md-mb-40 {
    margin-bottom: 40px !important;
  }
  .md-mb-50 {
    margin-bottom: 50px !important;
  }
  .md-mb-60 {
    margin-bottom: 60px !important;
  }
  .md-mb-70 {
    margin-bottom: 70px !important;
  }
  .md-mb-80 {
    margin-bottom: 80px !important;
  }
  .md-mb-90 {
    margin-bottom: 90px !important;
  }
  .md-mb-100 {
    margin-bottom: 100px !important;
  }
  .md-mb-110 {
    margin-bottom: 110px !important;
  }
  .md-mb-120 {
    margin-bottom: 120px !important;
  }
  .md-mb-130 {
    margin-bottom: 130px !important;
  }
  .md-mb-140 {
    margin-bottom: 140px !important;
  }
  .md-mb-150 {
    margin-bottom: 150px !important;
  }
  .md-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 991px)*/
@media (max-width: 767px) {
  .sm-p0 {
    padding: 0 !important;
  }
  .sm-m0 {
    margin: 0 !important;
  }
  .sm-pt-10 {
    padding-top: 10px !important;
  }
  .sm-pt-20 {
    padding-top: 20px !important;
  }
  .sm-pt-30 {
    padding-top: 30px !important;
  }
  .sm-pt-40 {
    padding-top: 40px !important;
  }
  .sm-pt-50 {
    padding-top: 50px !important;
  }
  .sm-pt-60 {
    padding-top: 60px !important;
  }
  .sm-pt-70 {
    padding-top: 70px !important;
  }
  .sm-pt-80 {
    padding-top: 80px !important;
  }
  .sm-pt-90 {
    padding-top: 90px !important;
  }
  .sm-pt-100 {
    padding-top: 100px !important;
  }
  .sm-pt-110 {
    padding-top: 110px !important;
  }
  .sm-pt-120 {
    padding-top: 120px !important;
  }
  .sm-pt-130 {
    padding-top: 130px !important;
  }
  .sm-pt-140 {
    padding-top: 140px !important;
  }
  .sm-pt-150 {
    padding-top: 150px !important;
  }
  .sm-pt-200 {
    padding-top: 200px !important;
  }
  .sm-pb-10 {
    padding-bottom: 10px !important;
  }
  .sm-pb-20 {
    padding-bottom: 20px !important;
  }
  .sm-pb-30 {
    padding-bottom: 30px !important;
  }
  .sm-pb-40 {
    padding-bottom: 40px !important;
  }
  .sm-pb-50 {
    padding-bottom: 50px !important;
  }
  .sm-pb-60 {
    padding-bottom: 60px !important;
  }
  .sm-pb-70 {
    padding-bottom: 70px !important;
  }
  .sm-pb-80 {
    padding-bottom: 80px !important;
  }
  .sm-pb-90 {
    padding-bottom: 90px !important;
  }
  .sm-pb-100 {
    padding-bottom: 100px !important;
  }
  .sm-pb-110 {
    padding-bottom: 110px !important;
  }
  .sm-pb-120 {
    padding-bottom: 120px !important;
  }
  .sm-pb-130 {
    padding-bottom: 130px !important;
  }
  .sm-pb-140 {
    padding-bottom: 140px !important;
  }
  .sm-pb-150 {
    padding-bottom: 150px !important;
  }
  .sm-pb-200 {
    padding-bottom: 200px !important;
  }
  .sm-mt-10 {
    margin-top: 10px !important;
  }
  .sm-mt-20 {
    margin-top: 20px !important;
  }
  .sm-mt-30 {
    margin-top: 30px !important;
  }
  .sm-mt-40 {
    margin-top: 40px !important;
  }
  .sm-mt-50 {
    margin-top: 50px !important;
  }
  .sm-mt-60 {
    margin-top: 60px !important;
  }
  .sm-mt-70 {
    margin-top: 70px !important;
  }
  .sm-mt-80 {
    margin-top: 80px !important;
  }
  .sm-mt-90 {
    margin-top: 90px !important;
  }
  .sm-mt-100 {
    margin-top: 100px !important;
  }
  .sm-mt-110 {
    margin-top: 110px !important;
  }
  .sm-mt-120 {
    margin-top: 120px !important;
  }
  .sm-mt-130 {
    margin-top: 130px !important;
  }
  .sm-mt-140 {
    margin-top: 140px !important;
  }
  .sm-mt-150 {
    margin-top: 150px !important;
  }
  .sm-mt-200 {
    margin-top: 200px !important;
  }
  .sm-mb-10 {
    margin-bottom: 10px !important;
  }
  .sm-mb-20 {
    margin-bottom: 20px !important;
  }
  .sm-mb-30 {
    margin-bottom: 30px !important;
  }
  .sm-mb-40 {
    margin-bottom: 40px !important;
  }
  .sm-mb-50 {
    margin-bottom: 50px !important;
  }
  .sm-mb-60 {
    margin-bottom: 60px !important;
  }
  .sm-mb-70 {
    margin-bottom: 70px !important;
  }
  .sm-mb-80 {
    margin-bottom: 80px !important;
  }
  .sm-mb-90 {
    margin-bottom: 90px !important;
  }
  .sm-mb-100 {
    margin-bottom: 100px !important;
  }
  .sm-mb-110 {
    margin-bottom: 110px !important;
  }
  .sm-mb-120 {
    margin-bottom: 120px !important;
  }
  .sm-mb-130 {
    margin-bottom: 130px !important;
  }
  .sm-mb-140 {
    margin-bottom: 140px !important;
  }
  .sm-mb-150 {
    margin-bottom: 150px !important;
  }
  .sm-mb-200 {
    margin-bottom: 200px !important;
  }





}
/*(max-width: 767px)*/
@media (max-width: 575px) {
  .xs-p0 {
    padding: 0 !important;
  }
  .xs-m0 {
    margin: 0 !important;
  }
  .xs-pt-10 {
    padding-top: 10px !important;
  }
  .xs-pt-20 {
    padding-top: 20px !important;
  }
  .xs-pt-30 {
    padding-top: 30px !important;
  }
  .xs-pt-40 {
    padding-top: 40px !important;
  }
  .xs-pt-50 {
    padding-top: 50px !important;
  }
  .xs-pt-60 {
    padding-top: 60px !important;
  }
  .xs-pt-70 {
    padding-top: 70px !important;
  }
  .xs-pt-80 {
    padding-top: 80px !important;
  }
  .xs-pt-90 {
    padding-top: 90px !important;
  }
  .xs-pt-100 {
    padding-top: 100px !important;
  }
  .xs-pt-110 {
    padding-top: 110px !important;
  }
  .xs-pt-120 {
    padding-top: 120px !important;
  }
  .xs-pt-130 {
    padding-top: 130px !important;
  }
  .xs-pt-140 {
    padding-top: 140px !important;
  }
  .xs-pt-150 {
    padding-top: 150px !important;
  }
  .xs-pt-200 {
    padding-top: 200px !important;
  }
  .xs-pb-10 {
    padding-bottom: 10px !important;
  }
  .xs-pb-20 {
    padding-bottom: 20px !important;
  }
  .xs-pb-30 {
    padding-bottom: 30px !important;
  }
  .xs-pb-40 {
    padding-bottom: 40px !important;
  }
  .xs-pb-50 {
    padding-bottom: 50px !important;
  }
  .xs-pb-60 {
    padding-bottom: 60px !important;
  }
  .xs-pb-70 {
    padding-bottom: 70px !important;
  }
  .xs-pb-80 {
    padding-bottom: 80px !important;
  }
  .xs-pb-90 {
    padding-bottom: 90px !important;
  }
  .xs-pb-100 {
    padding-bottom: 100px !important;
  }
  .xs-pb-110 {
    padding-bottom: 110px !important;
  }
  .xs-pb-120 {
    padding-bottom: 120px !important;
  }
  .xs-pb-130 {
    padding-bottom: 130px !important;
  }
  .xs-pb-140 {
    padding-bottom: 140px !important;
  }
  .xs-pb-150 {
    padding-bottom: 150px !important;
  }
  .xs-pb-200 {
    padding-bottom: 200px !important;
  }
  .xs-mt-10 {
    margin-top: 10px !important;
  }
  .xs-mt-20 {
    margin-top: 20px !important;
  }
  .xs-mt-30 {
    margin-top: 30px !important;
  }
  .xs-mt-40 {
    margin-top: 40px !important;
  }
  .xs-mt-50 {
    margin-top: 50px !important;
  }
  .xs-mt-60 {
    margin-top: 60px !important;
  }
  .xs-mt-70 {
    margin-top: 70px !important;
  }
  .xs-mt-80 {
    margin-top: 80px !important;
  }
  .xs-mt-90 {
    margin-top: 90px !important;
  }
  .xs-mt-100 {
    margin-top: 100px !important;
  }
  .xs-mt-110 {
    margin-top: 110px !important;
  }
  .xs-mt-120 {
    margin-top: 120px !important;
  }
  .xs-mt-130 {
    margin-top: 130px !important;
  }
  .xs-mt-140 {
    margin-top: 140px !important;
  }
  .xs-mt-150 {
    margin-top: 150px !important;
  }
  .xs-mt-200 {
    margin-top: 200px !important;
  }
  .xs-mb-10 {
    margin-bottom: 10px !important;
  }
  .xs-mb-20 {
    margin-bottom: 20px !important;
  }
  .xs-mb-30 {
    margin-bottom: 30px !important;
  }
  .xs-mb-40 {
    margin-bottom: 40px !important;
  }
  .xs-mb-50 {
    margin-bottom: 50px !important;
  }
  .xs-mb-60 {
    margin-bottom: 60px !important;
  }
  .xs-mb-70 {
    margin-bottom: 70px !important;
  }
  .xs-mb-80 {
    margin-bottom: 80px !important;
  }
  .xs-mb-90 {
    margin-bottom: 90px !important;
  }
  .xs-mb-100 {
    margin-bottom: 100px !important;
  }
  .xs-mb-110 {
    margin-bottom: 110px !important;
  }
  .xs-mb-120 {
    margin-bottom: 120px !important;
  }
  .xs-mb-130 {
    margin-bottom: 130px !important;
  }
  .xs-mb-140 {
    margin-bottom: 140px !important;
  }
  .xs-mb-150 {
    margin-bottom: 150px !important;
  }
  .xs-mb-200 {
    margin-bottom: 200px !important;
  }




}
/*(max-width: 575px)*/
.theme-main-menu {
  background: #fff;
  position: relative;
  z-index: 999;
  padding: 18px 40px;
  transition: all 0.4s ease-in-out 0s;
}
.theme-main-menu.menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
}
.theme-main-menu.fixed {
  position: fixed;
  left: 0;
  right: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #fff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.theme-main-menu .navbar-toggler {
  width: 48px;
  height: 44px;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 99;
  border: none;
  background: var(--primary-color);
}
.theme-main-menu.menu-style-three .navbar-toggler {
  background: #000;
}
.theme-main-menu.menu-style-four .navbar-toggler {
  background: var(--secondary-color);
}
.theme-main-menu.menu-style-five .navbar-toggler {
  background: var(--secondary-color);
}
.theme-main-menu .navbar-toggler:focus {
  box-shadow: none;
}
.theme-main-menu .navbar-toggler::before,
.theme-main-menu .navbar-toggler::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  width: 26px;
  height: 2px;
  pointer-events: none;
  transition: transform 0.25s;
  transform-origin: 50% 50%;
  background: var(--tertiary-color);
}
.theme-main-menu .navbar-toggler span {
  position: absolute;
  left: 11px;
  overflow: hidden;
  width: 26px;
  height: 2px;
  margin-top: -1px;
  text-indent: 200%;
  transition: opacity 0.25s;
  background: var(--tertiary-color);
}
.theme-main-menu.menu-style-three .navbar-toggler:before, .theme-main-menu.menu-style-three .navbar-toggler:after, .theme-main-menu.menu-style-three .navbar-toggler span {
  background: #fff;
}
.theme-main-menu .navbar-toggler::before {
  transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
}
.theme-main-menu .navbar-toggler::after {
  transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
}
.theme-main-menu .navbar-toggler[aria-expanded=true] span {
  opacity: 0;
}
.theme-main-menu .navbar-toggler[aria-expanded=true]::before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.theme-main-menu .navbar-toggler[aria-expanded=true]::after {
  transform: rotate3d(0, 0, 1, -45deg);
}
.theme-main-menu .nav-item .nav-link {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  color: #000;
  padding: 20px 0;
  margin: 0 30px;
  position: relative;
  transition: all 0.2s ease-in-out 0s;
}
.theme-main-menu .nav-item:hover .nav-link {
  color: var(--tertiary-color);
}
.theme-main-menu.white-vr .nav-item .nav-link {
  color: #fff;
}
.theme-main-menu.white-vr .nav-item:hover .nav-link {
  color: var(--primary-color);
}
.theme-main-menu.white-vr.fixed {
  background: var(--tertiary-color);
  border: none;
}
.theme-main-menu.menu-style-one {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.theme-main-menu.menu-style-two {
  padding: 0;
  background: var(--bg-light);
}
.theme-main-menu.menu-style-two .info-row {
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: hidden;
}
.theme-main-menu.menu-style-two .gap-fix {
  padding-left: 40px;
  padding-right: 40px;
}
.theme-main-menu.menu-style-two .greetings {
  font-size: 18px;
  color: var(--tertiary-color);
}
.theme-main-menu.menu-style-two .contact-info {
  margin: 0 -15px;
}
.theme-main-menu.menu-style-two .contact-info li {
  padding: 0 15px;
}
.theme-main-menu.menu-style-two .contact-info li a {
  font-size: 18px;
  color: var(--tertiary-color);
}
.theme-main-menu.menu-style-two .contact-info li a:hover {
  text-decoration: underline;
}
.theme-main-menu.menu-style-two .inner-content {
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
.theme-main-menu.menu-style-two.fixed .info-row {
  display: none;
}
.theme-main-menu.menu-style-five {
  background: #000;
  padding: 0;
}
.theme-main-menu.menu-style-five .inner-content {
  background: #fff;
  border-radius: 30px;
  padding: 18px 40px;
}
.theme-main-menu.menu-style-six .nav-item .nav-link {
  color: var(--bg-dark);
}
.theme-main-menu.menu-style-six .nav-item:hover .nav-link {
  color: var(--tertiary-color);
}

.navbar .dropdown-menu .dropdown-item {
  text-transform: capitalize;
  line-height: 35px;
  color: var(--tertiary-color);
  font-size: 18px;
  background: transparent;
  position: relative;
  transition: all 0.2s ease-in-out 0s;
}
.navbar .dropdown-menu .dropdown-item span {
  position: relative;
}
.navbar .dropdown-menu .dropdown-item span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--tertiary-color);
  transform: scale(0, 1);
  transform-origin: 0 0;
  transition: all 0.2s ease-in-out 0s;
}
.navbar .dropdown-menu .dropdown-item:hover span:before, .navbar .dropdown-menu .dropdown-item.active span:before {
  transform: scale(1);
}

.theme-main-menu .navbar {
  position: static;
}

.navbar [class*=mega-dropdown] .dropdown-menu {
  padding: 0 0 15px;
  margin: 0;
  right: 0;
}

.navbar .mega-dropdown-sm .dropdown-menu {
  min-width: 600px;
  left: 0;
  padding: 10px;
}

.navbar [class*=mega-dropdown] .menu-column {
  padding: 5px 0;
}
.navbar [class*=mega-dropdown] .menu-column .mega-menu-title {
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  display: inline-block;
  position: relative;
  margin: 0 0 5px;
  padding-left: 15px;
}

.theme-main-menu .login-btn-one a {
  color: #000;
}
.theme-main-menu .login-btn-one a:hover {
  text-decoration: underline;
}
.theme-main-menu .login-btn-two a {
  color: var(--bg-dark);
}
.theme-main-menu .login-btn-two a:hover {
  text-decoration: underline;
}
.theme-main-menu .signup-btn-one span {
  display: inline-block;
  font-weight: 500;
  color: var(--tertiary-color);
  padding: 0 30px;
  line-height: 45px;
  border: 2px solid var(--tertiary-color);
  border-radius: 30px;
  background: #fff;
  transition: all 0.2s ease-in-out 0s;
}
.theme-main-menu .signup-btn-one .icon {
  width: 49px;
  height: 49px;
  background: var(--tertiary-color);
  color: #fff;
  font-size: 22px;
  margin-left: -12px;
  transition: all 0.2s ease-in-out 0s;
}
.theme-main-menu .signup-btn-one:hover span {
  background: var(--tertiary-color);
  color: #fff;
}
.theme-main-menu .signup-btn-one:hover .icon {
  background: var(--primary-color);
  color: var(--tertiary-color);
}
.theme-main-menu .signup-btn-two {
  color: var(--bg-dark);
  line-height: 50px;
  border: 1px solid var(--bg-dark);
  border-radius: 40px;
  background: var(--primary-color);
  padding: 0 32px;
  text-align: center;
}
.theme-main-menu .signup-btn-two:hover {
  background: var(--tertiary-color);
  color: #fff;
}
.theme-main-menu .quote-one {
  line-height: 48px;
  color: #fff;
  font-size: 18px;
  padding: 0 26px;
  border: 1px solid #fff;
  border-radius: 40px;
}
.theme-main-menu .quote-one:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.category-menu {
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
  padding: 0 40px;
}
.category-menu li {
  position: relative;
  padding: 0 15px;
}
.category-menu li a {
  font-size: 15px;
  font-weight: 500;
  color: #536159;
  padding: 13px 0;
  transition: all 0.2s ease-in-out 0s;
}
.category-menu li a:hover {
  color: var(--tertiary-color);
}
.category-menu .dropdown-menu {
  padding: 0;
}
.category-menu .dropdown-menu li {
  padding: 0;
}
.category-menu .dropdown-menu li a {
  padding: 8px 15px;
  font-size: 14px;
}

/*----- For Desktop -------*/
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu {
    font-size: 1em;
    z-index: 5;
    background-color: #fff;
    border-radius: 10px;
    display: block;
    right: auto;
    left: 0;
    padding: 10px 5px;
    border: none;
    top: 100%;
    visibility: hidden;
    transform: translateY(5px);
    opacity: 0;
    min-width: 200px;
    box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
    margin: 0;
    transform-origin: 0 0;
    transition: all 0.3s ease-out;
  }
  .navbar .dropdown-menu:before {
    content: "";
    position: absolute;
    left: 30px;
    top: -17px;
  }
  .navbar .dropdown-menu .dropdown-menu {
    left: calc(100% + 5px);
    top: 0;
    right: auto;
    min-width: 240px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
  }
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .dropdown-toggle::after {
    display: none;
  }
  .navbar .show.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
/*----- For Mobile ----*/
@media screen and (max-width: 991px) {
  .navbar {
    padding: 0;
  }
  .navbar-collapse .logo {
    margin-bottom: 10vh;
    padding-left: 12px;
  }
  .white-vr .navbar-collapse {
    background-color: var(--tertiary-color);
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    background-color: var(--bg-light);
    left: 0;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    clear: both;
    width: 320px;
    max-width: calc(100vw - 60px);
    z-index: 9999;
    transform: translateX(-100%);
    display: block !important;
    padding: 16px 0 20px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-collapse.show {
    transform: translateX(0);
    box-shadow: 15px 0 25px rgba(35, 35, 35, 0.09);
  }
  .theme-main-menu .navbar .mega-dropdown {
    position: relative;
  }
  .navbar .navbar-nav .nav-link {
    margin: 0;
    padding: 15px 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
  }
  .white-vr .navbar .navbar-nav .nav-link {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
  }
  .navbar .dropdown-menu .dropdown-item {
    padding: 0 10px;
    line-height: 46px;
  }
  .navbar .dropdown-menu {
    border: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    background: #fff;
  }
  .navbar [class*=mega-dropdown] .dropdown-menu {
    padding: 0;
    min-width: 100%;
  }
  .navbar [class*=mega-dropdown] .menu-column {
    padding: 0;
  }
  .navbar .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: calc(50% - 2px);
  }
  .dashboard-menu .nav-link::before {
    right: auto;
    left: 0;
    top: -2px;
  }
}
/*(max-width: 991px)*/
.hero-banner-one {
  background: var(--tertiary-color);
  z-index: 9;
}
.hero-banner-one::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero-banner-one .hero-slider-one {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;

}
.hero-banner-one .hero-slider-one .hero-img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

}
.hero-banner-one .hero-slider-one .slick-list, .hero-banner-one .hero-slider-one .slick-track, .hero-banner-one .hero-slider-one .item {
  height: 100%;
}
.hero-banner-one .hero-heading {
  font-weight: 700;
  color: #000;
  background: url(../images/shape_01.png) no-repeat left top;
  background-size: cover;
  padding: 11px 31px 25px 25px;
}
.hero-banner-one .more-btn {
  position: absolute;
  font-size: 40px;
  color: #fff;
  width: 105px;
  height: 105px;
  border: 2px solid #fff;
  top: 20%;
  left: 4%;
  z-index: 1;
}
.hero-banner-one .more-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--tertiary-color);
}

.hero-banner-two {
  z-index: 1;
}
.hero-banner-two .hero-heading {
  font-size: 100px;
  line-height: 1em;
}
.hero-banner-two .hero-heading span {
  z-index: 1;
}
.hero-banner-two .hero-heading span img {
  position: absolute;
  width: 100%;
  bottom: -18%;
  left: 0;
  z-index: -1;
}
.hero-banner-two form {
  max-width: 588px;
  height: 70px;
  box-shadow: 0px 10px 20px rgba(8, 32, 26, 0.04);
  border-radius: 50px;
}
.hero-banner-two form input {
  font-size: 18px;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #fff;
  border: none;
  padding: 0 150px 0 35px;
}
.hero-banner-two form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50px;
}
.hero-banner-two .shape_01 {
  top: 22%;
  left: 7%;
  width: 3.1%;
  min-width: 30px;
  animation: rotated 50s infinite linear;
}
.hero-banner-two .shape_02 {
  top: 40%;
  right: 7%;
  width: 1.8%;
  min-width: 22px;
  animation: rotated 48s infinite linear;
}
.hero-banner-two .shape_03 {
  top: 36%;
  left: 0;
  width: 15.57%;
}
.hero-banner-two .shape_04 {
  top: 49%;
  right: 0;
  width: 15%;
}

.hero-banner-three {
  z-index: 1;
}
.hero-banner-three .hero-heading {
  font-size: 100px;
  letter-spacing: 1px;
  line-height: 1.3em;
  color: #000;
}
.hero-banner-three .right-widget .main-count {
  font-size: 58px;
  margin: -17px 0 -4px;
}
.hero-banner-three .img-wrapper {
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 33.53%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-banner-three .img-wrapper .round-bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;
  transform: translate(-50%, -7%);
}

.hero-banner-four {
  background: url(../images/assets_bg_01.svg) no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}
.hero-banner-four .hero-heading {
  font-family: "ClashDisplay";
  font-size: 130px;
  font-weight: 600;
  line-height: 0.884em;
}
.hero-banner-four .hero-heading span {
  color: var(--secondary-color);
  display: block;
}
.hero-banner-four .media-wrapper {
  position: absolute;
  right: 3%;
  bottom: -6%;
  width: 42.56%;
  z-index: -1;
}
.hero-banner-four .shape_01 {
  bottom: -5%;
  right: 41%;
}
.hero-banner-four .shape_02 {
  bottom: 0;
  left: 14%;
  width: 30%;
}

.hero-banner-five {
  background: #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.hero-banner-five .bg-wrapper {
  background: #fff;
  border-radius: 30px;
  z-index: 1;
}
.hero-banner-five .hero-heading {
  font-size: 75px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.176em;
  color: #000;
}
.hero-banner-five .rating h3 {
  font-size: 42px;
  margin-bottom: 0px;
}
.hero-banner-five .rating p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
}
.hero-banner-five .media-wrapper {
  position: absolute;
  background: url(../images/assets_bg_05.png) no-repeat left top;
  background-size: cover;
  border-radius: 0 30px 30px 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 39.43%;
}
.hero-banner-five .media-wrapper .shape_01 {
  right: 0;
  bottom: 14%;
  width: 41.1%;
  z-index: 1;
}
.hero-banner-five .media-wrapper .shape_02 {
  top: 34%;
  left: 0;
  transform: translateX(-50%);
  width: 19.34%;
}

.hero-banner-six .hero-heading {
  font-size: 100px;
  line-height: 1.05em;
  color: var(--bg-dark);
}
.hero-banner-six .media-wrapper {
  background: url(../images/media_img_48.jpg) no-repeat center;
  background-size: cover;
  border-radius: 20px;
  max-width: 536px;
  width: 100%;
  height: 100%;
}
.hero-banner-six .media-wrapper .screen_01 {
  right: 4%;
  top: 4%;
  width: 41.1%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
  z-index: 1;
}
.hero-banner-six .media-wrapper .screen_02 {
  bottom: 9%;
  left: -28%;
  border-radius: 10px;
  width: 48.51%;
  box-shadow: -10px 30px 50px rgba(0, 0, 0, 0.07);
  z-index: 1;
  animation: jumpTwo 10s infinite linear;
}
.hero-banner-six .media-wrapper .bg-shape {
  max-width: 130%;
  left: 47%;
  bottom: -12%;
  transform: translateX(-50%);
}
.hero-banner-six .shape_01 {
  bottom: 9%;
  left: 40%;
  width: 6.53%;
}

.hero-banner-seven {
  padding: 500px 0 70px;
  background: var(--tertiary-color);
  z-index: 9;
}
.hero-banner-seven::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 100%);
  z-index: -1;
}
.hero-banner-seven::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20%;
  left: 0px;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.99) 100%);
  mix-blend-mode: overlay;
  transform: rotate(-180deg);
  z-index: -1;
}
.hero-banner-seven .hero-slider-one {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
}
.hero-banner-seven .hero-slider-one .hero-img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-banner-seven .hero-slider-one .slick-list, .hero-banner-seven .hero-slider-one .slick-track, .hero-banner-seven .hero-slider-one .item {
  height: 100%;
}
.hero-banner-seven .hero-heading {
  font-weight: 700;
  font-size: 110px;
  letter-spacing: -1px;
  line-height: 1em;
}
.hero-banner-seven .lead-form {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 35px 50px 50px;
}
.hero-banner-seven .lead-form h3 {
  font-size: 32px;
}
.hero-banner-seven .lead-form label {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.3);
}
.hero-banner-seven .lead-form input {
  height: 65px;
  padding: 0 20px;
  border: 1px solid #000;
  border-radius: 10px;
}
.hero-banner-seven .lead-form button {
  height: 60px;
  border-radius: 10px;
  font-size: 17px;
  background: var(--secondary-color);
}
.hero-banner-seven .lead-form button:hover {
  background: var(--tertiary-color);
  color: #fff;
}

.fancy-banner-one {
  z-index: 1;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
}
.fancy-banner-one:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 50%;
/*  background: var(--primary-color);*/
  z-index: -1;
}
.fancy-banner-one h2 {
  font-size: 68px;
  font-weight: normal;
  margin: 0;
}
.fancy-banner-one h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
}

.fancy-banner-one h2 a {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
}

.fancy-banner-one h3 {
  font-size: 48px;
  margin-bottom: -5px;
}
.fancy-banner-one p {
  color: rgba(25, 53, 45, 0.6);
}

.fancy-banner-three {
/*  background: url(../images/media_img_17.jpg) no-repeat center;*/
  background-size: cover;
  padding: 80px 0;
  z-index: 1;
}
.fancy-banner-three:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--bg-dark);
  mix-blend-mode: darken;
}
.fancy-banner-three .title-one h2 {
  font-size: 58px;
}
.fancy-banner-three .quote-btn {
  width: 200px;
  height: 200px;
  padding: 16px;
  background: #FFE86B;
}
.fancy-banner-three .quote-btn:hover {
  transform: rotate(15deg);
}
.fancy-banner-three .quote-btn.color-two {
  background: var(--primary-color);
}

.fancy-banner-four {
  background: var(--bg-light);
  z-index: 1;
}
.fancy-banner-four:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: url(../images/shape_10.svg) no-repeat left bottom;
  background-size: cover;
}
.fancy-banner-four ul li {
  font-size: 28px;
  color: #000;
  position: relative;
  padding-left: 42px;
  margin-bottom: 13px;
}
.fancy-banner-four ul li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  font-size: 0.95em;
  top: 3px;
  left: 0;
  color: #000;
}
.fancy-banner-four .platform-button-group a {
  width: 190px;
  height: 58px;
  padding: 0 5px 0 25px;
  margin: 10px 20px 0 0;
  background: #1B1B1B;
  color: #fff;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.fancy-banner-four .platform-button-group a:hover {
  transform: translateY(-5px);
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.05);
}
.fancy-banner-four .platform-button-group a .icon {
  margin-right: 14px;
}
.fancy-banner-four .platform-button-group a span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  line-height: initial;
  margin-bottom: -3px;
}
.fancy-banner-four .platform-button-group a strong {
  font-weight: 500;
  display: block;
}
.fancy-banner-four .platform-button-group a.ios-button {
  background: #fff;
  border-color: #DADADA;
}
.fancy-banner-four .platform-button-group a.ios-button span {
  color: #999999;
}
.fancy-banner-four .platform-button-group a.ios-button strong {
  color: #000;
}

.fancy-banner-five {
  background: url(../images/media_img_31.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.fancy-banner-five.no-bg {
  background: none;
}
.fancy-banner-five.no-bg:before {
  display: none;
}
.fancy-banner-five.no-bg .bg-wrapper {
  background: url(../images/media_img_33.jpg) no-repeat center;
  background-size: cover;
}
.fancy-banner-five.no-bg .bg-wrapper .video-icon {
  width: 185px;
  height: 185px;
  background: var(--secondary-color);
}
.fancy-banner-five:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--tertiary-color);
  mix-blend-mode: hard-light;
}
.fancy-banner-five h2 {
  font-size: 100px;
  line-height: 1.1em;
}
.fancy-banner-five .video-icon {
  width: 200px;
  height: 200px;
  padding: 22px;
  background: #FFE86B;
}
.fancy-banner-five .video-icon:hover {
  transform: rotate(15deg);
}

.fancy-banner-six {
  background: url(../images/media_img_34.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.fancy-banner-six h2 {
  font-size: 85px;
  line-height: 1.117em;
}
.fancy-banner-six .video-icon {
  width: 200px;
  height: 200px;
  padding: 22px;
  background: #FFE86B;
}
.fancy-banner-six .video-icon:hover {
  transform: rotate(15deg);
}

.fancy-banner-seven .bg-wrapper {
  background: url(../images/media_img_50.jpg) no-repeat center;
  background-size: cover;
}
.fancy-banner-seven .bg-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 14.17%, rgba(0, 0, 0, 0.8) 101.25%);
  transform: rotate(-180deg);
  z-index: -1;
}
.fancy-banner-seven .bg-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 47.84%, rgba(0, 0, 0, 0.87) 100%);
  z-index: -1;
}
.fancy-banner-seven .bg-wrapper li {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5em;
  color: #000;
  padding: 18px 80px 25px 68px;
  border-radius: 20px;
  background: #fff;
  margin: 12px 0;
  position: relative;
}
.fancy-banner-seven .bg-wrapper li:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tertiary-color);
  left: 27px;
  top: 27px;
  transition: all 0.2s ease-in-out 0s;
}
.fancy-banner-seven .bg-wrapper li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 21px;
  left: 31px;
  color: #fff;
  font-size: 16px;
  transition: all 0.2s ease-in-out 0s;
}
.fancy-banner-seven .bg-wrapper li:hover:before {
  background: var(--primary-color);
}
.fancy-banner-seven .bg-wrapper li:hover:after {
  color: #000;
}
.fancy-banner-seven .bg-wrapper .shape_01 {
  bottom: 17%;
  left: 36%;
  max-width: 11%;
  z-index: 0;
}

.fancy-banner-eight .bg-wrapper {
  background: var(--bg-light);
  padding: 30px 75px 0;
}
.fancy-banner-eight .media-wrapper {
  padding: 0 38px;
  margin-bottom: -6px;
}
.fancy-banner-eight .media-wrapper .shape_01 {
  width: 100%;
  bottom: 0;
  left: 0;
}
.fancy-banner-eight .shape_02 {
  right: -123px;
  bottom: -5px;
}

.newsletter-banner .main-wrapper {
  padding: 50px 0 45px;
}
.newsletter-banner .main-wrapper.top-border {
  border-top: 1px solid #E2E2E2;
}
.newsletter-banner .main-wrapper.bottom-border {
  border-bottom: 1px solid #E2E2E2;
}
.newsletter-banner h2 {
  font-size: 50px;
}
.newsletter-banner form {
  max-width: 510px;
}
.newsletter-banner form input {
  width: calc(100% - 75px);
  font-size: 18px;
  padding: 0 30px;
  height: 60px;
  background: #F6F6F6;
  border: none;
  border-radius: 35px;
}
.newsletter-banner form button {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 28px;
  color: #fff;
  background: #101010;
}
.newsletter-banner form button:hover, .newsletter-banner form button:focus {
  background: var(--tertiary-color);
}
.newsletter-banner form button.color-two {
  background: var(--tertiary-color);
}
.newsletter-banner form button.color-two:hover, .newsletter-banner form button.color-two:focus {
  background: #000;
}
.newsletter-banner form p {
  font-size: 18px;
}
.newsletter-banner form p a:hover {
  text-decoration: underline;
}
.newsletter-banner.white-vr .main-wrapper {
  padding-top: 100px;
}
.newsletter-banner.white-vr .bottom-border {
  border-bottom: 1px dashed #37665c;
}
.newsletter-banner.white-vr form button {
  background: var(--secondary-color);
  color: var(--tertiary-color);
}
.newsletter-banner.white-vr form p {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-banner.white-vr form p a {
  color: var(--secondary-color);
}

.inner-banner-one {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: 1;
}
.inner-banner-one::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 35%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0) 100%);
}
.inner-banner-one::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(121.31deg, rgba(0, 0, 0, 0) 0.55%, rgba(0, 0, 0, 0.3) 98.35%);


}
.inner-banner-one .hero-heading {
  font-weight: 700;
  font-size: 55px;
  line-height: 1.023em;
  z-index: 1;
  padding: 10px 10px 23px 22px;
}
.inner-banner-one .hero-heading img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  min-width: 330px;
  min-height: 150px;
  max-height: 100%;
  width: 100%;

}
.inner-banner-one .pager {
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}
.inner-banner-one .pager li {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 5px;
}
.inner-banner-one .pager li:last-child {
  margin: 0;
  color: #fff;
}
.inner-banner-one .pager li a {
  transition: all 0.2s ease-in-out 0s;
}
.inner-banner-one .pager li a:hover {
  color: #fff;
}
.inner-banner-one .tag {
  display: inline-block;
  line-height: 25px;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

.inner-banner-two {
  z-index: 1;
}
.inner-banner-two .pager {
  border-bottom: 1px solid #0A4020;
  padding-bottom: 2px;
}
.inner-banner-two .pager li {
  color: #000;
}
.inner-banner-two .pager li:nth-child(even) {
  padding: 0 5px;
}
.inner-banner-two .pager li a {
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-in-out 0s;
}
.inner-banner-two .pager li a:hover {
  color: #000;
}
.inner-banner-two .hero-heading {
  font-weight: 700;
  font-size: 85px;
  line-height: 1.023em;
  margin: 22px 0 40px;
}
.inner-banner-two .tag {
  display: inline-block;
  line-height: 25px;
  border: 1px solid var(--tertiary-color);
  border-radius: 30px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--tertiary-color);
  text-transform: uppercase;
}
.inner-banner-two .shape_01 {
  left: 0%;
  bottom: 16%;
  width: 18.23%;
  animation: jumpTwo 6s infinite linear;
}
.inner-banner-two .shape_02 {
  right: 2%;
  bottom: 14%;
  width: 14.52%;
  animation: jumpThree 6s infinite linear;
}
.inner-banner-two .shape_03 {
  left: 24%;
  top: 33%;
  width: 2.2%;
  animation: rotated 50s infinite linear;
}
.inner-banner-two .shape_04 {
  right: 21%;
  bottom: 30%;
  width: 1.65%;
  animation: rotated 50s infinite linear;
}

.block-feature-one {
  z-index: 1;
}
.block-feature-one:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 17%;
  background: var(--bg-light);
  z-index: -1;
}
.block-feature-one .upper-wrapper {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
}
.block-feature-one .section-subheading {
  position: absolute;
  right: 0;
  top: 0;
  width: 37%;
}
.block-feature-one .shape_01 {
  width: 2.3%;
  top: 10%;
  left: 10%;
}
.block-feature-one .shape_02 {
  width: 1.5%;
  bottom: 6%;
  right: 9%;
}

.block-feature-two .wrapper {
  border-top: 1px dashed #CACACA;
  border-bottom: 1px dashed #CACACA;
}
.block-feature-two .border-line {
  border-left: 1px dashed #CACACA;
  border-right: 1px dashed #CACACA;
}
.block-feature-two .numb {
  display: inline-block;
  font-size: 90px;
  letter-spacing: -1px;
  color: var(--tertiary-color);
  position: relative;
}
.block-feature-two .numb::before {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--primary-color);
  right: 8px;
  top: 27px;
  z-index: -1;
}

.block-feature-three {
  z-index: 1;
}
.block-feature-three:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 34%;
  bottom: 0;
  background: var(--bg-light);
  z-index: -1;
}
.block-feature-three.no-bg:before {
  display: none;
}
.block-feature-three .section-btn {
  position: absolute;
  right: 0;
  top: 68px;
}
.block-feature-three .block-title a {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25em;
  color: var(--tertiary-color);
}
.block-feature-three .block-title a:hover {
  text-decoration: underline;
}
.block-feature-three .round-btn {
  font-size: 18px;
  font-weight: 900;
  color: var(--tertiary-color);
  width: 38px;
  height: 38px;
  border: 1px solid var(--tertiary-color);
}
.block-feature-three .round-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--tertiary-color);
}
.block-feature-three .block-one {
  background: url(../images/media_img_05.jpg) no-repeat center;
  background-size: cover;
  height: 470px;
}
.block-feature-three .block-one .tag {
  font-size: 14px;
  letter-spacing: 1px;
  color: #000;
  line-height: 25px;
  border: 1px solid #000;
  padding: 0 10px;
}
.block-feature-three .block-one .block-title {
  background: url(../images/shape_02.png) no-repeat right top;
  background-size: cover;
  border-radius: 25px;
  padding: 12px 0 18px 18px;
}
.block-feature-three .block-two {
  overflow: hidden;
}
.block-feature-three .block-two .img-wrapper {
  background: url(../images/media_img_06.jpg) no-repeat center;
  background-size: cover;
  width: 42%;
}
.block-feature-three .block-two .text-wrapper {
  width: 58%;
  padding: 30px 30px 35px 60px;
}
.block-feature-three .block-two .tag {
  font-size: 13px;
  letter-spacing: 1px;
  color: white;
  line-height: 27px;
  border-radius: 17px;
  background: var(--tertiary-color);
  padding: 0 17px;
}
.block-feature-three .block-three {
  background: var(--bg-medium);
}
.block-feature-three .block-three .tag {
  font-size: 13px;
  letter-spacing: 1px;
  color: white;
  line-height: 27px;
  border-radius: 17px;
  background: var(--tertiary-color);
  padding: 0 17px;
}
.block-feature-three .block-three .round-btn {
  background: #fff;
  border-color: #fff;
}
.block-feature-three .block-three .round-btn:hover {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: #fff;
}
.block-feature-three .block-four {
  background: url(../images/media_img_07.jpg) no-repeat center;
  background-size: cover;
}
.block-feature-three .block-four .block-title {
  background: url(../images/shape_03.png) no-repeat right top;
  background-size: cover;
  border-radius: 18px;
  padding: 12px 16px 12px 18px;
}
.block-feature-three .block-four .block-title a {
  font-size: 28px;
}
.block-feature-three .block-four .tag {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--tertiary-color);
  line-height: 27px;
  border-radius: 17px;
  background: #fff;
  padding: 0 17px;
}
.block-feature-three .block-four .round-btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.block-feature-three .block-four .round-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}
.block-feature-three .block-five {
  background: url(../images/blog_blog_img_05.jpg) no-repeat center;
  background-size: cover;
  height: 358px;
}
.block-feature-three .block-five .tag {
  font-size: 14px;
  letter-spacing: 1px;
  color: #000;
  line-height: 25px;
  border: 1px solid #000;
  padding: 0 10px;
}
.block-feature-three .block-five .block-title {
  background: url(../images/shape_29.png) no-repeat right top;
  background-size: cover;
  border-radius: 15px;
  padding: 12px 10px 18px 18px;
}

.block-feature-four {
  z-index: 1;
}
.block-feature-four .shape_01 {
  top: 0;
  left: 7%;
  width: 2.52%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}
.block-feature-four .shape_02 {
  bottom: 2%;
  right: 7%;
  width: 1.8%;
  min-width: 22px;
  animation: rotated 48s infinite linear;
}

.block-feature-five {
  z-index: 1;
}
.block-feature-five:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: url(../images/shape_09.svg) no-repeat right bottom;
  background-size: cover;
  z-index: -1;
}
.block-feature-five .section-btn {
  position: absolute;
  right: 0;
  top: 75px;
}
.block-feature-five .shape_01 {
  right: 6%;
  bottom: 5%;
  width: 1%;
  animation: rotated 50s infinite linear;
}

.block-feature-six {
  background: var(--bg-light);
  z-index: 1;
}
.block-feature-six:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: url(../images/shape_10.svg) no-repeat center;
  background-size: cover;
}
.block-feature-six.bg-two {
  background: var(--bg-light);
}
.block-feature-six.bg-two:before {
  display: none;
}
.block-feature-six .shape_01 {
  bottom: 12%;
  left: 8%;
  width: 10%;
}
.block-feature-six .shape_02 {
  bottom: 39%;
  left: 30%;
  width: 2.5%;
}

.block-feature-seven {
  z-index: 1;
}
.block-feature-seven .shape_01 {
  top: 2%;
  right: 0;
  animation: rotated 50s infinite linear;
}

.block-feature-eight {
  background: url(../images/assets_bg_02.svg) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.block-feature-eight .section-btn {
  position: absolute;
  right: 0;
  top: 72px;
}
.block-feature-eight .shape_01 {
  width: 40px;
  bottom: -20px;
  left: 25%;
  animation: rotated 50s infinite linear;
}

.block-feature-nine {
  z-index: 1;
  background: #000;
  border-radius: 30px 30px 100px 100px;
}
.block-feature-nine:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 39%;
  left: 0;
  top: 0;
  background: #EDF8EB;
  border-radius: 30px 30px 0 0;
  z-index: -1;
}
.block-feature-nine:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  left: 0;
  top: 0;
  background: #000;
  z-index: -1;
}
.block-feature-nine .heading {
  font-size: 85px;
  line-height: 1.411em;
}
.block-feature-nine .heading span {
  color: var(--secondary-color);
  text-decoration-line: underline;
  text-decoration-thickness: 4px;
}
.block-feature-nine .heading a {
  width: 110px;
  height: 110px;
  display: inline-flex;
  align-items: center;
  background: var(--secondary-color);
  border-radius: 50%;
  position: relative;
  margin-left: 100px;
  transition: all 0.2s ease-in-out 0s;
}
.block-feature-nine .heading a:before {
  content: "";
  position: absolute;
  width: 85px;
  height: 3px;
  left: -85px;
  top: calc(50% - 3px);
  background: #fff;
}
.block-feature-nine .heading a:hover {
  background: var(--secondary-color);
}
.block-feature-nine .shape_01 {
  right: 0;
  top: 5%;
  width: 4%;
}
.block-feature-nine .shape_02 {
  left: 7%;
  bottom: 0;
  width: 8.4%;
}
.block-feature-nine .shape_03 {
  right: 5%;
  bottom: 5%;
}

.block-feature-ten .shape_01 {
  top: 1%;
  right: 5%;
  width: 2%;
}
.block-feature-ten .line-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #e5e5e5;
  left: 0;
  top: 50%;
}

.block-feature-eleven {
  z-index: 1;
}
.block-feature-eleven .slider-wrapper {
  width: 78vw;
}
.block-feature-eleven .slider-wrapper .slick-dots {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  left: -140px;
}
.block-feature-eleven .slider-wrapper .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #1F5E59;
}
.block-feature-eleven .slider-wrapper .slick-dots .slick-active button {
  background: #1F5E59;
}
.block-feature-eleven .shape_01 {
  left: 0;
  bottom: 0;
  max-width: 13.4%;
}

.block-feature-twelve {
  background: var(--bg-light);
  z-index: 1;
}
.block-feature-twelve .shape_01 {
  right: 0;
  top: 12%;
  max-width: 13.4%;
}

.block-feature-thirteen .upper-wrapper {
  border-bottom: 1px solid #E6E6E6;
}
.block-feature-thirteen .upper-wrapper .shape_01 {
  right: 6%;
  bottom: 16%;
}
.block-feature-thirteen .line-loop:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 130%;
  right: 0;
  top: 57%;
  background: #E6E6E6;
  z-index: -1;
}
.block-feature-thirteen .graph-panel {
  border-right: 1px solid #E6E6E6;
}
.block-feature-thirteen .graph-panel .main-count {
  font-size: 120px;
}
.block-feature-thirteen .graph-panel .chart-box {
  padding: 0 15px;
}
.block-feature-thirteen .graph-panel .chart-box .chart-inner {
  width: 120px;
  background: #FF6B9D;
}

.block-feature-fourteen .section-subheading {
  position: absolute;
  right: 0;
  top: 0;
  width: 37%;
}
.block-feature-fourteen .shape_01 {
  max-width: 4%;
  top: 13%;
  left: 48%;
  animation: rotated 48s infinite linear;
}

.block-feature-fifteen .shape_01 {
  max-width: 4%;
  top: 3%;
  left: 2%;
  animation: rotated 48s infinite linear;
}
.block-feature-fifteen .line-btn:before, .block-feature-fifteen .line-btn:after {
  content: "";
  position: absolute;
  width: calc(50% - 150px);
  height: 1px;
  background: #E3E3E3;
  top: 32px;
  left: 0;
}
.block-feature-fifteen .line-btn:after {
  left: auto;
  right: 0;
}



/*編集点*/


.text-feature-one .line-wrapper {
  border-top: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
}
.text-feature-one .line-wrapper .shape_01 {
  width: 48px;
  bottom: 12%;
  left: 32%;
  animation: rotated 48s infinite linear;
}
.text-feature-one .card-style-three {
  border-left: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
  padding-left: 100px;
}
.text-feature-one .card-style-three:last-child {
  border-bottom: none;
}
.text-feature-one .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_dress_shirt_1.jpg) no-repeat center;
  background-size: cover;
/*  border-radius: 30px;*/
  position: relative;
  z-index: 1;
}





.text-feature-three-knit .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_knit_1.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}


.text-feature-three-kimono .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-kimono_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}


.text-feature-three-leather .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_highclass_down_1.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}


.text-feature-three-option .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_64_aqua.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.text-feature-three-repair .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_repair_1.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.text-feature-three-stain-removal .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_stain_removal_1.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.text-feature-three-bedding .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_dress_shirt_4.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}



.text-feature-three-irazu .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/service-option_irazu.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}



.text-feature-three-history .media-list-item {
  height: 400px;
  width: 590px;
  background: url(../images/history_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}







.text-feature-one .media-list-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: -1;
/*  border-radius: 0 0 30px 30px;*/
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.1%, #000000 100%);
  mix-blend-mode: overlay;
}
.text-feature-one .media-list-item li {
  display: inline-block;
  font-weight: 500;
  color: #000;
  padding: 6px 50px 6px 50px;
  border-radius: 45px;
  background: #fff;
  margin: 7px 0;
  position: relative;
}
.text-feature-one .media-list-item li:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-color);
  left: 10px;
  top: 7px;
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-one .media-list-item li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 6px;
  left: 14px;
  color: var(--tertiary-color);
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-one .media-list-item li:hover:before {
  background: var(--tertiary-color);
}
.text-feature-one .media-list-item li:hover:after {
  color: #fff;
}









.text-feature-akita .line-wrapper {
  border-top: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
}
.text-feature-akita .line-wrapper .shape_01 {
  width: 48px;
  bottom: 12%;
  left: 32%;
  animation: rotated 48s infinite linear;
}
.text-feature-akita .card-style-three {
  border-left: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
  padding-left: 100px;
}
.text-feature-akita .card-style-three:last-child {
  border-bottom: none;
}
.text-feature-akita .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/media_img_akita.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}


.text-feature-akita .media-list-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.1%, #000000 100%);
  mix-blend-mode: overlay;
}
.text-feature-akita .media-list-item li {
  display: inline-block;
  font-weight: 500;
  color: #000;
  padding: 6px 50px 6px 50px;
  border-radius: 45px;
  background: #fff;
  margin: 7px 0;
  position: relative;
}
.text-feature-akita .media-list-item li:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-color);
  left: 10px;
  top: 7px;
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-akita .media-list-item li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 6px;
  left: 14px;
  color: var(--tertiary-color);
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-akita .media-list-item li:hover:before {
  background: var(--tertiary-color);
}
.text-feature-akita .media-list-item li:hover:after {
  color: #fff;
}




.text-feature-odate .line-wrapper {
  border-top: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
}
.text-feature-odate .line-wrapper .shape_01 {
  width: 48px;
  bottom: 12%;
  left: 32%;
  animation: rotated 48s infinite linear;
}
.text-feature-odate .card-style-three {
  border-left: 1px dashed #d7d7d7;
  border-bottom: 1px dashed #d7d7d7;
  padding-left: 100px;
}
.text-feature-odate .card-style-three:last-child {
  border-bottom: none;
}
.text-feature-odate .media-list-item {
  height: 600px;
  width: 590px;
  background: url(../images/media_img_odate.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}


.text-feature-odate .media-list-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.1%, #000000 100%);
  mix-blend-mode: overlay;
}
.text-feature-odate .media-list-item li {
  display: inline-block;
  font-weight: 500;
  color: #000;
  padding: 6px 50px 6px 50px;
  border-radius: 45px;
  background: #fff;
  margin: 7px 0;
  position: relative;
}
.text-feature-odate .media-list-item li:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-color);
  left: 10px;
  top: 7px;
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-odate .media-list-item li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 6px;
  left: 14px;
  color: var(--tertiary-color);
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-odate .media-list-item li:hover:before {
  background: var(--tertiary-color);
}
.text-feature-odate .media-list-item li:hover:after {
  color: #fff;
}








.text-feature-two {
  background: var(--tertiary-color);
  z-index: 1;
}
.text-feature-two .shape_01 {
  top: 16%;
  left: 3%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}
.text-feature-two .shape_02 {
  bottom: 5%;
  right: 2%;
  width: 1.5%;
  min-width: 22px;
  animation: rotated 48s infinite linear;
}





.text-feature-three-bedding {
  z-index: 1;
}
.text-feature-three-bedding .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-bedding .media-wrapper {
  background: url(../images/service-option_dress_shirt_4.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-bedding .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-bedding .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-bedding .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-bedding .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}



.text-feature-three-irazu {
  z-index: 1;
}
.text-feature-three-irazu .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-irazu .media-wrapper {
  background: url(../images/service-option_irazu.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-irazu .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-irazu .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-irazu .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-irazu .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}


.text-feature-three-em {
  z-index: 1;
}
.text-feature-three-em .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-em .media-wrapper {
  background: url(../images/service-em_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-em .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-em .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-em .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-em .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}

.text-feature-three-kimono {
  z-index: 1;
}
.text-feature-three-kimono .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-kimono .media-wrapper {
  background: url(../images/service-kimono_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-kimono .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-kimono .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-kimono .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-kimono .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}

.text-feature-three-leather {
  z-index: 1;
}
.text-feature-three-leather .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-leather .media-wrapper {
  background: url(../images/service-leather_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-leather .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-leather .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-leather .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-leather .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}

.text-feature-three-option {
  z-index: 1;
}
.text-feature-three-option .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-option .media-wrapper {
  background: url(../images/service-option_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-option .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-option .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-option .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-option .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}

.text-feature-three-repair {
  z-index: 1;
}
.text-feature-three-repair .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-repair .media-wrapper {
  background: url(../images/service-repair_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-repair .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-repair .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-repair .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-repair .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}




.text-feature-three-stain-removal {
  z-index: 1;
}
.text-feature-three-stain-removal .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three-stain-removal .media-wrapper {
  background: url(../images/service-stain-removal_64.jpg) no-repeat center;
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}
.text-feature-three-stain-removal .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three-stain-removal .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three-stain-removal .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three-stain-removal .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}






.text-feature-three-sdgs .media-list-item {
  height: 650px;
  width: 500px;
  background: url(../images/service-sdgs_64.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 1;
}






.text-feature-three {
  z-index: 1;
}
.text-feature-three .counter-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.text-feature-three .media-wrapper {
  /*background: url(../images/media_img_13.jpg) no-repeat center;*/
  background-size: cover;
  border-radius: 30px;
  z-index: 1;
  max-width: 590px;
}

.text-feature-three .media-wrapper .screen_01 {
  right: -9%;
  top: 12%;
  width: 37.3%;
  border-radius: 10px;
  box-shadow: 10px 30px 50px rgba(0, 0, 0, 0.06);
}
.text-feature-three .media-wrapper .screen_02 {
  left: -11%;
  bottom: -9%;
  width: 65.5%;
}
.text-feature-three .media-wrapper .screen_03 {
  left: -13%;
  bottom: -11%;
  width: 50.85%;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}
.text-feature-three .shape_01 {
  bottom: 2%;
  left: 39%;
  width: 2.3%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}

.text-feature-four {
  z-index: 1;
}
.text-feature-four .avatar {
  width: 65px;
  height: 65px;
}
.text-feature-four .name {
  font-size: 28px;
}
.text-feature-four .quote-text {
  font-size: 50px;
  line-height: 1.4em;
}
.text-feature-four .shape_01 {
  top: 56%;
  left: 22%;
  animation: rotated 60s infinite linear;
}
.text-feature-four .shape_02 {
  top: 12%;
  right: 9%;
  width: 16px;
  animation: rotated 50s infinite linear;
}

.text-feature-five .bg-wrapper {
  background: #FFF2AC;
}
.text-feature-five li {
  display: inline-block;
  font-weight: 500;
  color: #000;
  padding: 6px 50px 6px 50px;
  border-radius: 45px;
  background: #fff;
  margin: 7px 0;
  position: relative;
}
.text-feature-five li:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFF2AC;
  left: 10px;
  top: 7px;
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-five li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 6px;
  left: 14px;
  color: var(--tertiary-color);
  transition: all 0.2s ease-in-out 0s;
}
.text-feature-five li:hover:before {
  background: var(--tertiary-color);
}
.text-feature-five li:hover:after {
  color: #fff;
}
.text-feature-five .media-wrapper {
  background: url(../images/media_img_20.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.text-feature-five .media-wrapper .video-icon {
  width: 90px;
  height: 90px;
  background: #fff;
}
.text-feature-five .media-wrapper .video-icon:hover {
  background: var(--primary-color);
}
.text-feature-five .media-wrapper .screen_01 {
  left: -9%;
  bottom: -9%;
  width: 46.3%;
  animation: jumpThree 5s infinite linear;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.06);
}

.text-feature-six {
  z-index: 1;
}
.text-feature-six .media-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 63.64%;
  z-index: -1;
}
.text-feature-six .media-wrapper .screen_01 {
  width: 61.1%;
  bottom: 32%;
  right: -4%;
  z-index: 1;
  animation: jumpThree 5s infinite linear;
}
.text-feature-six .shape_01 {
  left: 0;
  bottom: 23%;
  width: 12.3%;
}
.text-feature-six .shape_02 {
  top: 1%;
  right: 39%;
}

.text-feature-seven ul li {
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
.text-feature-seven ul li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 1px;
  left: 0;
}

.text-feature-nine {
  background: url(../images/assets_bg_03.svg) no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}
.text-feature-nine .block .icon {
  height: 50px;
}
.text-feature-nine .vertical-text-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  border-left: 1px solid rgba(254, 255, 252, 0.17);
}
.text-feature-nine .vertical-text-wrapper .text-list {
  padding: 0 35px;
  font-weight: 700;
  font-size: 125px;
  letter-spacing: -2px;
  height: 20%;
  width: 100%;
  border-top: 1px solid rgba(254, 255, 252, 0.17);
  display: flex;
  align-items: center;
  justify-content: end;
  color: #FFFFFF;
  mix-blend-mode: overlay;
  opacity: 0.8;
}



.text-feature-nine .vertical-text-wrapper .text-list:hover {
  color: #C5FF4A;
  opacity: 1;
  mix-blend-mode: normal;
}
.text-feature-nine .vertical-text-wrapper .shape_01 {
  left: -83px;
  bottom: 21%;
  animation: jumpThree 6s infinite linear;
}
.text-feature-nine .vertical-text-wrapper .shape_02 {
  left: 10%;
  top: 25%;
  animation: jumpFour 6s infinite linear;
}
.text-feature-nine .shape_03 {
  left: 5%;
  top: 10%;
  animation: jumpFour 6s infinite linear;
}
.text-feature-nine .shape_04 {
  bottom: 0;
  left: 13%;
  width: 29%;
}

.team-section-one .section-btn {
  position: absolute;
  right: 0;
  top: 25px;
}

.team-section-two {
  background: #fff;
  border: 1px solid #000;
}
.team-section-two .section-btn {
  position: absolute;
  right: 0;
  top: 30px;
}

.team-section-three {
  z-index: 1;
}
.team-section-three:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: url(../images/shape_09.svg) no-repeat right bottom;
  background-size: cover;
  z-index: -1;
}
.team-section-three .section-btn {
  position: absolute;
  right: 0;
  top: 15px;
}
.team-section-three .shape_01 {
  width: 2.3%;
  top: 17%;
  left: 39%;
}
.team-section-three .shape_02 {
  width: 1.5%;
  bottom: 6%;
  right: 9%;
}
.team-section-three .shape_03 {
  max-width: 22%;
  bottom: 0;
  right: 0;
}

.team-details .bg-wrapper {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.team-details .bg-wrapper .border-right {
  border-right: 1px solid #e9e9e9;
}
.team-details .bg-wrapper .member-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.team-details .bg-wrapper .name {
  font-size: 32px;
}
.team-details .bg-wrapper .post {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.3);
}
.team-details .bg-wrapper h6 {
  font-size: 20px;
  padding: 42px 0 10px;
}
.team-details .bg-wrapper p {
  font-size: 18px;
}
.team-details .bg-wrapper .social-share li a {
  font-size: 20px;
  color: var(--tertiary-color);
  margin-right: 20px;
}
.team-details .bg-wrapper .social-share li a:hover {
  color: var(--tertiary-color);
}
.team-details .bg-wrapper h3 {
  font-size: 28px;
}
.team-details .bg-wrapper table {
  font-size: 18px;
}
.team-details .bg-wrapper table tr td:first-child {
  color: rgba(36, 64, 52, 0.6);
  padding: 13px 0;
}
.team-details .bg-wrapper table tr td:last-child {
  font-weight: 500;
  color: var(--tertiary-color);
}

.faq-section-two {
  z-index: 1;
}
.faq-section-two .section-btn {
  position: absolute;
  right: 0;
  top: 13px;
}
.faq-section-two .shape_01 {
  top: 1%;
  right: 33%;
  width: 2.1%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}
.faq-section-two .shape_02 {
  bottom: 3%;
  left: 5%;
  width: 2.1%;
  min-width: 28px;
  animation: rotated 50s infinite linear;
}

.faq-section-three .tab-content {
  background: #fff;
  border-radius: 30px;
  padding: 0 60px;
}
.faq-section-three .tab-content .accordion-style-one .accordion-item:last-child {
  border-bottom: none;
}
.faq-section-three .tab-content .accordion-style-one .accordion-item:first-child {
  border-top: none;
}
.faq-section-three nav .nav {
  border: none;
}
.faq-section-three nav .nav .nav-link {
  background: transparent;
  border: 0;
  border-radius: 30px;
  height: 36px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  margin: 0 2px 10px;
}
.faq-section-three nav .nav .nav-link.active {
  background: var(--tertiary-color);
  color: #fff;
}

.pricing-section .contact-banner {
  background: #fff;
  border-radius: 30px;
  z-index: 1;
  padding: 48px 45px;
}
.pricing-section .contact-banner h2 {
  font-size: 42px;
  line-height: 1.238em;
  margin: 0;
}
.pricing-section .contact-banner h2 span {
  font-weight: 700;
  font-style: italic;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
}
.pricing-section .contact-banner .screen_01 {
  left: 3%;
  top: 13%;
  width: 12.4%;
}

.pricing-nav .nav {
  border: 2px solid #186560;
  border-radius: 10px;
  overflow: hidden;
}
.pricing-nav .nav .nav-link {
  width: 150px;
  height: 61px;
  font-weight: 500;
  color: #186560;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}
.pricing-nav .nav .nav-link.active {
  background: #186560;
  color: #fff;
}

.error-page {
  min-height: 100vh;
  padding: 200px 12px 50px;
  z-index: 1;
}
.error-page h1 {
  font-size: 140px;
  line-height: 1em;
}
.error-page h2 {
  font-size: 85px;
  padding: 32px 0 36px;
}
.error-page .shape_01 {
  right: 1%;
  bottom: 20%;
  width: 14.52%;
}
.error-page .shape_02 {
  left: 1%;
  bottom: 30%;
  width: 18.64%;
}

.accordion-style-one .accordion-item {
  border: none;
  border-top: 1px solid #E0E0E0;
  border-radius: 0;
}
.accordion-style-one .accordion-item .accordion-button {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.55em;
  color: var(--tertiary-color);
  padding: 33px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.accordion-style-one .accordion-item .accordion-button:not(.collapsed) {
  padding-bottom: 20px;
}
.accordion-style-one .accordion-item .accordion-button:not(.collapsed):after {
  content: "-";
  font-size: 40px;
}
.accordion-style-one .accordion-item .accordion-button:after {
  content: "+";
  font-weight: 300;
  font-size: 32px;
  background: none;
  width: auto;
  height: auto;
}
.accordion-style-one .accordion-item .accordion-body {
  padding: 0 35px 20px 0;
}
.accordion-style-one .accordion-item .accordion-body p {
  margin: 0;
}
.accordion-style-one .accordion-item:last-child {
  border-bottom: 1px solid #E0E0E0;
}

.accordion-style-two .accordion-item {
  border: none;
  background: #FFFAEB;
  border-radius: 0;
}
.accordion-style-two .accordion-item .accordion-button {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.55em;
  color: #AEA78F;
  padding: 28px 50px;
  background: transparent;
  border-radius: 40px 40px 0 0;
  box-shadow: none;
}
.accordion-style-two .accordion-item .accordion-button:not(.collapsed) {
  color: #000;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.accordion-style-two .accordion-item .accordion-button:not(.collapsed):after {
  content: "-";
  font-size: 1.5em;
  line-height: 36px;
}
.accordion-style-two .accordion-item .accordion-button:after {
  content: "+";
  font-weight: 400;
  text-align: center;
  color: #000;
  line-height: 48px;
  font-size: 32px;
  background: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
}
.accordion-style-two .accordion-item .accordion-body {
  padding: 20px 50px 55px;
}
.accordion-style-two .accordion-item .accordion-body h6 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.96px;
  margin-bottom: 15px;
  font-weight: 700;
}
.accordion-style-two .accordion-item .accordion-body ul li {
  display: inline-block;
  color: #272727;
  font-weight: 500;
  background: #fff;
  border-radius: 45px;
  padding: 6px 16px 6px 40px;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.accordion-style-two .accordion-item .accordion-body ul li:before {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  font-size: 18px;
  top: 6px;
  left: 14px;
  color: #212121;
}
.accordion-style-two .accordion-item .accordion-body .media-wrapper {
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  max-width: 610px;
}
.accordion-style-two .accordion-item .accordion-body .media-wrapper .video-icon {
  width: 90px;
  height: 90px;
  background: #fff;
}
.accordion-style-two .accordion-item .accordion-body .media-wrapper .video-icon:hover {
  background: var(--primary-color);
}
.accordion-style-two .accordion-item:nth-child(1) {
  border-radius: 40px 40px 0 0;
}
.accordion-style-two .accordion-item:nth-child(2) {
  background: #FFFAEB;
}
.accordion-style-two .accordion-item:nth-child(2) .accordion-button {
  background: #FBF4DC;
}
.accordion-style-two .accordion-item:nth-child(2) .accordion-body {
  background: #FBF4DC;
}
.accordion-style-two .accordion-item:nth-child(3) {
  background: #f9efcf;
  border-radius: 0 0 40px 40px;
}
.accordion-style-two .accordion-item:nth-child(3) .accordion-button {
  background: #F9EFCF;
  border-radius: 0 0 40px 40px;
}
.accordion-style-two .accordion-item:nth-child(3) .accordion-body {
  background: #F9EFCF;
  border-radius: 0 0 40px 40px;
}

.accordion-style-three .accordion-item {
  border: none;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 0;
}
.accordion-style-three .accordion-item .accordion-button {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.55em;
  color: var(--primary-color);
  padding: 24px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.accordion-style-three .accordion-item .accordion-button:after {
  content: "\f286";
  font-family: "bootstrap-icons";
  font-size: 20px;
  background: none;
  width: auto;
  height: auto;
}
.accordion-style-three .accordion-item .accordion-body {
  padding: 0 35px 8px 0;
}

.partner-logo-two {
  background: #000;
  border-bottom: 2px solid #000;
}
.partner-logo-two .bg-wrapper {
  background: var(--secondary-color);
  border-radius: 30px;
}
.partner-logo-two .bg-wrapper .wrapper {
  max-width: 1660px;
  padding: 22px 12px;
}
.partner-logo-two .bg-wrapper .title {
  color: #000;
  font-size: 30px;
}
.partner-logo-two .bg-wrapper .logo-wrapper {
  font-weight: 700;
  color: #000;
  font-size: 30px;
  letter-spacing: -0.5px;
}
.partner-logo-two .bg-wrapper .logo-wrapper .br-name {
  margin: 0 10px;
}
.partner-logo-two .bg-wrapper .logo-wrapper .br-name img {
  width: 15px;
}

.partner-logo-one .logo {
  width: 100%;
  height: 60px;
}

.modal .modal-dialog {
  height: auto;
}
.modal .modal-dialog .modal-content {
  margin: 40px auto;
}

.user-data-form {
  background: #fff;
  margin: 0 auto;
  max-width: 720px;
  border-radius: 20px !important;
  padding: 50px 15px 40px;
}
.user-data-form h2 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 10px;
}
.user-data-form p a {
  color: #31795A;
}
.user-data-form p a:hover {
  text-decoration: underline;
}
.user-data-form .form-wrapper {
  max-width: 565px;
}
.user-data-form .form-wrapper .input-group-meta input {
  width: 100%;
  height: 55px;
  font-size: 16px;
  border: 1px solid rgba(37, 64, 53, 0.06);
  border-radius: 8px;
  padding: 0 52px 0 20px;
  color: #000;
  background: rgba(0, 0, 0, 0.04);
}
.user-data-form .form-wrapper .input-group-meta label {
  font-size: 16px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  margin-bottom: 6px;
}
.user-data-form .form-wrapper .input-group-meta .placeholder_icon {
  position: absolute;
  height: 55px;
  top: 30px;
  right: 0;
  bottom: 0;
  width: 50px;
  text-align: center;
  z-index: 1;
  color: rgba(0, 0, 0, 0.45);
  font-size: 17px;
}
.user-data-form .form-wrapper .input-group-meta .placeholder_icon img {
  position: relative;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
}
.user-data-form .form-wrapper .input-group-meta .placeholder_icon span {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
  position: relative;
}
.user-data-form .form-wrapper .input-group-meta .placeholder_icon span:before {
  content: "";
  width: 2px;
  height: 26px;
  background: #000;
  position: absolute;
  top: 14px;
  left: 24px;
  transform: rotate(45deg);
  z-index: 5;
  transition: all 0.2s ease-in-out;
}
.user-data-form .form-wrapper .input-group-meta .placeholder_icon span.eye-slash:before {
  opacity: 0;
}
.user-data-form .agreement-checkbox label {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--tertiary-color);
  cursor: pointer;
  padding-left: 22px;
  transition: all 0.1s ease-in-out;
}
.user-data-form .agreement-checkbox label a {
  color: var(--primary-color);
  text-decoration: underline;
}
.user-data-form .agreement-checkbox input[type=checkbox] {
  display: none;
}
.user-data-form .agreement-checkbox label:before {
  content: "";
  width: 14px;
  height: 14px;
  line-height: 11px;
  border-radius: 2px;
  border: 2px solid #B3B3B3;
  font-size: 12px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 4px;
  transition: all 0.1s ease-in-out;
}
.user-data-form .agreement-checkbox input[type=checkbox]:checked + label:before {
  content: "\f633";
  font-family: bootstrap-icons !important;
  background: #000;
  color: #fff;
  border-color: #000;
}
.user-data-form .agreement-checkbox a {
  position: relative;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}
.user-data-form .agreement-checkbox a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
.user-data-form .line {
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.user-data-form .social-use-btn {
  font-size: 16px;
  color: #000;
  height: 55px;
  border: 1px solid #E5E5E5;
  border-radius: 7px;
}
.user-data-form .social-use-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
.user-data-form .social-use-btn img {
  width: 20px;
}
.user-data-form .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  box-shadow: none;
  z-index: 1;
}
.user-data-form .nav {
  background: #F0F5F3;
  border-radius: 40px;
}
.user-data-form .nav .nav-item {
  width: 50%;
}
.user-data-form .nav .nav-item .nav-link {
  font-weight: 500;
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 40px;
  font-size: 20px;
  color: #839B8F;
}
.user-data-form .nav .nav-item .nav-link.active {
  color: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.counter-block-one .main-count {
  font-size: 64px;
  color: var(--tertiary-color);
}

.counter-block-two .main-count {
  font-size: 68px;
  color: var(--tertiary-color);
  margin-bottom: -5px;
}

.counter-block-three .main-count {
  font-size: 70px;
  color: #1F5E59;
  margin-bottom: -5px;
}

.pagination-one ul {
  margin: 0 -5;
}
.pagination-one ul li {
  padding: 0 5px;
  font-size: 20px;
  font-weight: 500;
  color: var(--tertiary-color);
}
.pagination-one ul li:not(:last-child) a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
}
.pagination-one ul li:not(:last-child) a.active, .pagination-one ul li:not(:last-child) a:hover, .pagination-one ul li:not(:last-child) a:focus {
  background: var(--tertiary-color);
  color: #fff;
}

.pagination-two {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding: 60px 0;
}
.pagination-two .pr-dir {
  font-size: 16px;
  letter-spacing: 0.89px;
  color: #979797;
}
.pagination-two .pr-name {
  font-size: 32px;
  color: var(--tertiary-color);
  margin-top: 4px;
}
.pagination-two i {
  font-size: 30px;
  width: 75px;
  height: 75px;
  border: 1px solid #000;
  color: #000;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 66px;
  transition: all 0.2s ease-in-out 0s;
}
.pagination-two a:hover i {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.pagination-two.border-0 i {
  border: none;
}
.pagination-two.border-0 a:hover i {
  background: #FFE86B;
}

.card-style-one .icon {
  background: #fff;
  width: 62px;
  height: 62px;
}
.card-style-one .text {
  width: calc(100% - 62px);
}
.card-style-one:hover .icon {
  background: var(--primary-color);
}

.card-style-two {
  position: relative;
  padding: 50px 40px 48px;
  background: #fff;
  border: 1px solid var(--bg-light);
  border-radius: 20px;
}
.card-style-two .icon {
  height: 50px;
}
.card-style-two .icon2 {
  height: 42px;
}
.card-style-two .arrow-btn {
  opacity: 0.3;
  width: 34px;
}
.card-style-two:hover {
  background: var(--secondary-color);
  border-color: var(--primary-color);
}
.card-style-two:hover .arrow-btn {
  opacity: 1;
}

.card-style-three .icon {
  height: 38px;
}


/* [change] index,shop-all,mamago,yotsuya 店舗一覧変更*/

/*

.card-style-four .media:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(41, 89, 75, 0.7);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}


.card-style-four .media:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  right: -25px;
  bottom: -25px;
  background: #fff;
}


.card-style-four .round-btn {
  position: absolute;
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: #fff;
  color: var(--tertiary-color);
  opacity: 0;
}


.card-style-four .round-btn:hover {
  background: var(--primary-color);
}

.card-style-four:hover .media::before, .card-style-four:hover .round-btn {
  opacity: 1;
}

*/



.card-style-four .media:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(197, 255, 74, 0.2);
  opacity: 1; 
  transition: all 0.3s ease-in-out 0s;
}

.card-style-four .media:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  right: -25px;
  bottom: -25px;
  background: #fff;
}




/*
.card-style-four .round-btn {
  position: absolute;
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--tertiary-color);
  opacity: 1; 
}
*/


.card-style-four .round-btn {
  position: absolute;
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  color: var(--tertiary-color);
  opacity: 1; /* 変更: hoverでなく常時透明度を1に設定 */
  right: 15%; /* 親要素の右から25%の位置に配置 */
  bottom: 15%; /* 親要素の下から25%の位置に配置 */
}


.card-style-four .round-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}





.card-style-five .icon {
  height: 42px;
}
.card-style-five .main-count {
  font-size: 68px;
  color: #FFDB1E;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  margin-top: 42px;
  padding-top: 25px;
}
.card-style-five p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6em;
}

.card-style-six {
  position: relative;
  padding: 50px 40px 48px;
  background: #fff;
  border-radius: 30px;
}
.card-style-six:hover, .card-style-six.active {
  background: var(--bg-light);
}
.card-style-six:hover .arrow-btn, .card-style-six.active .arrow-btn {
  opacity: 1;
}
.card-style-six .icon {
  width: 70px;
  height: 70px;
  background: var(--tertiary-color);
}
.card-style-six .arrow-btn {
  opacity: 0.3;
  width: 34px;
}

.card-style-seven {
  position: relative;
  padding: 40px 30px 45px;
  background: #fff;
  border-radius: 30px;
}
.card-style-seven .icon {
  width: 70px;
  height: 70px;
  background: #FFE86B;
}
.card-style-seven p {
  font-size: 18px;
  line-height: 1.666em;
}
.card-style-seven .arrow-btn {
  opacity: 0.3;
  width: 34px;
}
.card-style-seven:hover, .card-style-seven.active {
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.04);
}
.card-style-seven:hover .arrow-btn, .card-style-seven.active .arrow-btn {
  opacity: 1;
}
.card-style-seven:hover .icon, .card-style-seven.active .icon {
  background: var(--primary-color);
}

.card-style-eight {
  padding: 40px 35px 30px;
  background: #fff;
  position: relative;
}
.card-style-eight:hover {
  box-shadow: 0px 10px 20px rgba(8, 32, 26, 0.04);
}
.card-style-eight .icon {
  height: 55px;
}
.card-style-eight .icon img {
  max-height: 100%;
}

.card-style-nine {
  background: #F6F6F6;
  padding: 50px 55px ;
  border-radius: 30px;
}
.card-style-nine .icon {
  width: 60px;
  height: 60px;
  background: #FFE86B;
}
.card-style-nine h3 {
  font-size: 32px;
}

.card-style-ten {
  padding-bottom: 60px;
}
.card-style-ten h4 {
  color: var(--primary-color);
}
.card-style-ten .main-count {
  font-size: 80px;
  color: var(--primary-color);
  z-index: 1;
  margin-bottom: -16px;
}
.card-style-ten .main-count:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 13px;
  background: #C5FF4A;
  left: 0;
  bottom: 19%;
  z-index: -1;
}

.card-style-eleven {
  position: relative;
  padding: 45px 40px 48px;
  background: #fff;
  border-radius: 20px;
}
.card-style-eleven h4 {
  font-family: "ClashDisplay";
  color: var(--primary-color);
}
.card-style-eleven .icon {
  height: 58px;
}
.card-style-eleven .arrow-btn {
  opacity: 0.3;
  width: 34px;
}
.card-style-eleven:hover {
  background: #f3f3f3;
}
.card-style-eleven:hover .arrow-btn {
  opacity: 1;
}

.card-style-twelve h4 {
  color: var(--primary-color);
}
.card-style-twelve .icon {
  width: 55px;
  height: 55px;
  border: 1px solid #E0E0E0;
}
.card-style-twelve .arrow-btn {
  opacity: 0.3;
  width: 34px;
}
.card-style-twelve:hover .icon {
  background: #E0E0E0;
}

.card-style-thirteen {
  background: #fff;
  border-radius: 200px;
  border: 1px solid #fff;
  padding: 110px 45px 120px;
  position: relative;
  z-index: 1;
}
.card-style-thirteen:before {
  content: "";
  position: absolute;
  width: 48px;
  height: 2px;
  background: #000;
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
}
.card-style-thirteen .icon {
  height: 75px;
}
.card-style-thirteen .icon img {
  max-height: 100%;
}
.card-style-thirteen p {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.4);
}
.card-style-thirteen h3 {
  font-size: 30px;
  line-height: 1.266em;
  color: #000;
}
.card-style-thirteen:hover {
  background: var(--secondary-color);
  border-color: #000;
}

.card-style-fourteen .media:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(223, 255, 94, 0.3);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
.card-style-fourteen .round-btn {
  position: absolute;
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: var(--tertiary-color);
  color: #fff;
  opacity: 0;
}
.card-style-fourteen .round-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}
.card-style-fourteen:hover .media::before, .card-style-fourteen:hover .round-btn {
  opacity: 1;
}
.card-style-fourteen p {
  color: #B6B6B6;
}

/* [change] index,shop-all,mamago,yotsuya 店舗一覧変更*/

/*

.card-style-fifteen {
  background: #fff;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.02);
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}
.card-style-fifteen .media:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(41, 89, 75, 0.3);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
.card-style-fifteen .round-btn {
  position: absolute;
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: var(--tertiary-color);
  color: #fff;
  opacity: 0;
}
.card-style-fifteen .round-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}
.card-style-fifteen:hover .media::before, .card-style-fifteen:hover .round-btn {
  opacity: 1;
}
.card-style-fifteen h4 {
  font-size: 22px;
}
.card-style-fifteen p {
  color: #B6B6B6;
}

*/



.card-style-fifteen {
  background: #fff;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.02);
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.card-style-fifteen .media:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background: rgba(41, 89, 75, 0.3);*/
  opacity: 1; /* 常時表示されるように変更 */
  transition: all 0.3s ease-in-out 0s;
}

.card-style-fifteen .round-btn {
  position: absolute;
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  color: var(--tertiary-color);
/*  background: var(--tertiary-color);
  color: #fff;*/
  opacity: 1; /* 常時表示されるように変更 */
  right: 15%; /* 親要素の右から25%の位置に配置 */
  bottom: 15%; /* 親要素の下から25%の位置に配置 */
}

.card-style-fifteen .round-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--tertiary-color);

}

.card-style-fifteen h4 {
  font-size: 22px;
}

.card-style-fifteen p {
  color: #B6B6B6;
}




.card-style-sixteen {
  position: relative;
}
.card-style-sixteen .icon {
  width: 60px;
  height: 60px;
  background: #FFE86B;
}
.card-style-sixteen .text {
  width: calc(100% - 60px);
  padding-left: 30px;
}
.card-style-sixteen:hover .icon, .card-style-sixteen.active .icon {
  background: var(--primary-color);
}
.card-style-sixteen.arrow:before, .card-style-sixteen.arrow:after {
  content: url(../images/shape_30.svg);
  position: absolute;
  top: 11px;
  left: -99px;
}
.card-style-sixteen.arrow:after {
  left: auto;
  right: -99px;
}

.card-style-seventeen {
  padding: 30px 30px 40px;
  border-radius: 15px;
  border: 1px solid #E6E6E6;
}
.card-style-seventeen .icon {
  width: 70px;
  height: 70px;
  padding: 15px;
  background: #F6F6F6;
}
.card-style-seventeen .text {
  width: calc(100% - 70px);
  padding-left: 25px;
}
.card-style-seventeen .text .btn-three {
  color: #1F5E59;
}
.card-style-seventeen .text .btn-three i {
  font-size: 0.8em;
}
.card-style-seventeen:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.card-style-seventeen:hover .icon {
  background: #fff;
}

.card-style-eighteen {
  padding: 5px 35px 0;
  border-radius: 20px;
  background: #1F5E59;
  z-index: 1;
}
.card-style-eighteen:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(../images/assets_bg_08.svg) no-repeat right bottom;
  background-size: cover;
  z-index: -1;
}
.card-style-eighteen .icon {
  width: 70px;
  height: 70px;
  padding: 15px;
  background: var(--primary-color);
}
.card-style-eighteen blockquote {
  font-size: 36px;
  color: #fff;
  line-height: 1.555em;
  letter-spacing: -0.5px;
  margin: 30px 0 35px;
}
.card-style-eighteen h6 {
  font-size: 20px;
  color: #fff;
  margin: 0;
}
.card-style-eighteen h6 span {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.4);
}

.card-style-nineteen {
  padding: 30px 50px 50px;
  border-radius: 20px;
  background: #fff;
}
.card-style-nineteen h2 {
  font-size: 48px;
}
.card-style-nineteen .counter-block-one .main-count {
  font-size: 58px;
  color: #1F5E59;
}

.card-style-twenty {
  background: #fff;
  border-radius: 20px;
  padding: 35px 35px 40px;
}
.card-style-twenty .icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
}
.card-style-twenty .text {
  width: calc(100% - 60px);
  padding-left: 35px;
}
.card-style-twenty .text .arrow-btn {
  position: absolute;
  right: 50px;
  top: 40px;
}
.card-style-twenty:hover {
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.04);
}

.card-style-twentyOne .icon {
  width: 320px;
  height: 320px;
  padding: 13%;
  border: 1px solid rgba(25, 97, 100, 0.15);
}
.card-style-twentyOne .icon .numb {
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  font-size: 24px;
  color: #000;
  bottom: -23px;
  left: calc(50% - 23px);
  z-index: 1;
  background: #fff;
}

.pricing-card-one {
  background: #fff;
  border-radius: 20px;
  padding: 45px 70px 50px;
}
.pricing-card-one h2 {
  font-size: 36px;
}
.pricing-card-one p {
  line-height: 1.5em;
  color: #878787;
  padding: 17px 0 20px;
}
.pricing-card-one p span {
  color: #000;
}
.pricing-card-one .price-banner {
  padding: 8px 10px;
  border-radius: 15px;
  background: #F4F4F4;
  margin-bottom: 30px;
}
.pricing-card-one .price-banner .price {
  font-size: 52px;
  font-weight: 500;
  color: var(--tertiary-color);
  line-height: initial;
}
.pricing-card-one .price-banner .price sup {
  font-size: 0.461em;
  top: -18px;
  left: 6px;
}
.pricing-card-one .price-banner strong {
  color: var(--tertiary-color);
  display: block;
  margin-bottom: -9px;
}
.pricing-card-one .price-banner span {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}
.pricing-card-one ul li {
  color: #000;
  margin-top: 10px;
}
.pricing-card-one .action-btn {
  max-width: 335px;
  margin: auto auto 0;
  border: 1px solid #DCDCDC;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 18px;
  color: #8B8B8B;
}
.pricing-card-one .action-btn a {
  font-weight: 500;
  color: var(--tertiary-color);
}
.pricing-card-one .action-btn a i {
  display: inline-block;
  width: 20px;
  line-height: 15px;
  background: var(--tertiary-color);
  color: #fff;
  font-size: 10px;
  border-radius: 50px;
  font-weight: 900;
  vertical-align: 3px;
  margin-left: 4px;
}
.pricing-card-one .action-btn a:hover {
  text-decoration: underline;
}

.service-details .details-meta h2 {
  font-size: 64px;
  line-height: 1.1875em;
  font-weight: 700;
  margin-bottom: 42px;
}
.service-details .details-meta p {
  margin-bottom: 35px;
}
.service-details .details-meta h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}
.service-details .details-meta .line-wrapper {
  border-top: 1px dashed #e5e5e5;
  border-bottom: 1px dashed #e5e5e5;
}
.service-details .details-meta .quote-wrapper {
  padding: 50px 80px 60px;
  border-radius: 30px;
  z-index: 1;
}
.service-details .details-meta .quote-wrapper .icon {
  margin-top: 7px;
}
.service-details .details-meta .quote-wrapper blockquote {
  font-size: 48px;
  line-height: 1.354em;
  font-weight: 500;
  color: var(--tertiary-color);
  margin-bottom: 30px;
}
.service-details .details-meta .quote-wrapper .shape_01 {
  bottom: 0;
  right: 1%;
  width: 37.2%;
}
.service-details .details-meta .list-item li {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  padding-left: 45px;
  margin-bottom: 24px;
  position: relative;
}
.service-details .details-meta .list-item li:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFF2AC;
  left: 0;
  top: 3px;
}
.service-details .details-meta .list-item li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  font-size: 18px;
  top: 3px;
  left: 5px;
  color: #000;
}
.service-details .service-nav-item {
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  padding: 0 25px;
}
.service-details .service-nav-item a {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  padding: 24px 0;
  line-height: 20px;
  border-bottom: 1px dashed rgba(10, 64, 32, 0.2);
  transition: all 0.3s ease-in-out 0s;
}
.service-details .service-nav-item a img {
  width: 20px;
  margin-right: 22px;
  opacity: 0.3;
  transition: all 0.3s ease-in-out 0s;
}
.service-details .service-nav-item a.active, .service-details .service-nav-item a:hover {
  color: #0A4020;
}
.service-details .service-nav-item a.active img, .service-details .service-nav-item a:hover img {
  opacity: 1;
}
.service-details .service-nav-item li:last-child a {
  border: none;
}
.service-details .contact-banner {
  padding: 35px 3% 50px;
  background: #FFE86B;
  border-radius: 20px;
}
.service-details .contact-banner h3 {
  font-size: 32px;
  line-height: 1.25em;
  color: #000;
}
.service-details .contact-banner a {
  line-height: 36px;
  border: 2px solid #000;
  border-radius: 30px;
  color: #000;
  padding: 0 30px;
}
.service-details .contact-banner a:hover {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: #fff;
}

#isotop-gallery-wrapper {
  margin: 0 -20px;
}
#isotop-gallery-wrapper .grid-sizer, #isotop-gallery-wrapper .isotop-item {
  padding: 0 20px;
}
#isotop-gallery-wrapper.column-two .grid-sizer, #isotop-gallery-wrapper.column-two .isotop-item {
  width: 50%;
}

.portfolio-one {
  background: #fff;
  border: 1px solid #000;
}
.portfolio-one .section-btn {
  position: absolute;
  right: 0;
  top: 50px;
}

.portfolio-block-one .img-holder {
  position: relative;
  overflow: hidden;
}
.portfolio-block-one .img-holder.round-border {
  border-radius: 30px;
}
.portfolio-block-one .img-holder .expend {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  font-size: 35px;
  opacity: 0;
}
.portfolio-block-one .img-holder i {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 44px;
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out 0s;
}
.portfolio-block-one .img-holder i:hover {
  background: var(--secondary-color);
}
.portfolio-block-one:hover .expend {
  opacity: 1;
}
.portfolio-block-one:hover .img-meta {
  transform: scale(1.1) rotate(5deg);
}
.portfolio-block-one:hover .pj-title {
  text-decoration: underline;
}
.portfolio-block-one .caption {
  margin-top: 35px;
}
.portfolio-block-one .caption .tag {
  margin: 0 -3px;
}
.portfolio-block-one .caption .tag li {
  margin: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  color: #B8B8B8;
  padding: 0 14px;
  line-height: 21px;
  border: 1px solid #B8B8B8;
  border-radius: 15px;
}
.portfolio-block-one .caption .pj-title {
  font-size: 32px;
  color: #000;
  margin-top: 15px;
}
.portfolio-block-one .caption .arrow {
  font-size: 26px;
  color: #000;
}
.portfolio-block-one .caption .arrow:hover {
  color: var(--tertiary-color);
}

.portfolio-two {
  z-index: 1;
}
.portfolio-two .slider-wrapper {
  width: 126vw;
  transform: translateX(-13vw);
}
.portfolio-two .slider-wrapper .slick-slider {
  margin: 0 -25px;
}
.portfolio-two .slider-wrapper .slick-slider .slick-slide {
  margin: 0 25px 5px;
}
.portfolio-two .slick-arrow-one {
  margin-left: -2px;
  margin-right: -2px;
}
.portfolio-two .slick-arrow-one li {
  cursor: pointer;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #1F5E59;
  text-align: center;
  line-height: 57px;
  font-size: 24px;
  margin: 0 2px;
  transition: all 0.2s ease-in-out 0s;
}
.portfolio-two .slick-arrow-one li:hover {
  background: #1F5E59;
  color: #fff;
}

.portfolio-block-two .img-wrapper {
  border-radius: 30px;
  overflow: hidden;
}
.portfolio-block-two .caption {
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--bg-dark);
}
.portfolio-block-two .caption span {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: rgba(0, 0, 0, 0.3);
}
.portfolio-block-two .caption h3 a {
  font-size: 40px;
  letter-spacing: -1px;
  color: #1F5E59;
}
.portfolio-block-two .caption h3 a:hover {
  text-decoration: underline;
}
.portfolio-block-two .caption .round-btn {
  font-size: 30px;
  width: 70px;
  height: 70px;
  border: 1px solid #1F5E59;
  color: #1F5E59;
}
.portfolio-block-two .caption .round-btn:hover {
  background: var(--primary-color);
}

.project-details-one {
  z-index: 2;
}
.project-details-one .project-info {
  border-bottom: 1px solid #E4E4E4;
}
.project-details-one .project-info:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  z-index: -1;
  background: var(--primary-color);
}
.project-details-one .project-info .inner-wrapper {
  max-width: 1600px;
  padding: 0 12px;
}
.project-details-one .project-info h3 {
  font-size: 48px;
  font-weight: normal;
  margin: 0;
}
.project-details-one .project-info h3 span {
  font-style: italic;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
}
.project-details-one .project-info li {
  width: 33.333%;
  padding: 35px 3%;
  border-right: 1px dashed rgba(0, 0, 0, 0.25);
  background: var(--primary-color);
  margin-bottom: -1px;
}
.project-details-one .project-info li:last-child {
  border: none;
}
.project-details-one .project-info li .icon {
  max-width: 40px;
}
.project-details-one .project-info li .text1 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
}
.project-details-one .project-info li span {
  color: rgba(0, 0, 0, 0.5);
}
.project-details-one .upper-title {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.project-details-one h2 {
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 35px;
}
.project-details-one p {
  font-size: 24px;
  line-height: 1.83em;
  margin-bottom: 40px;
}
.project-details-one .img-gallery img {
  border-radius: 30px;
  width: 100%;
  margin-bottom: 15px;
}
.project-details-one .social-share li {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
}
.project-details-one .social-share li a {
  font-size: 20px;
  color: var(--tertiary-color);
  margin-left: 20px;
}

.project-details-two .bg-wrapper {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.project-details-two .slider-wrapper {
  height: 100%;
}
.project-details-two .slider-wrapper .carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.project-details-two .slider-wrapper .carousel-control-next, .project-details-two .slider-wrapper .carousel-control-prev {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--tertiary-color);
  opacity: 1;
  right: 0;
  bottom: 0;
  top: auto;
  transition: all 0.2s ease-in-out 0s;
}
.project-details-two .slider-wrapper .carousel-control-next:hover, .project-details-two .slider-wrapper .carousel-control-prev:hover {
  background: var(--tertiary-color);
  color: #fff;
}
.project-details-two .slider-wrapper .carousel-control-prev {
  left: auto;
  right: 45px;
}
.project-details-two .info-wrapper {
  padding: 55px 50px 85px 70px;
}
.project-details-two .info-wrapper h3 {
  font-size: 36px;
}
.project-details-two .info-wrapper .list-meta li {
  padding: 22px 0;
}
.project-details-two .info-wrapper .list-meta .icon {
  width: 40px;
}
.project-details-two .info-wrapper .list-meta .text1 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}
.project-details-two .info-wrapper .list-meta span {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.project-details-two .info-wrapper .social-share li {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
}
.project-details-two .info-wrapper .social-share li a {
  font-size: 20px;
  color: var(--tertiary-color);
  margin-left: 20px;
}

.feedback-section-one {
  border-bottom: 1px dashed #CACACA;
}
.feedback-section-one.top-border {
  border-top: 1px dashed #CACACA;
}
.feedback-section-one .title-one {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.feedback-section-one .icon {
  position: absolute;
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--primary-color);
  right: 0;
  bottom: -1%;
}

.feedback-block-one blockquote {
  font-size: 32px;
  line-height: 1.531em;
  color: #000;
  margin-bottom: 40px;
}
.feedback-block-one .avatar {
  width: 60px;
  height: 60px;
}
.feedback-block-one .line {
  width: 70%;
  height: 1px;
  background: #000;
}
.feedback-block-one .count {
  width: 30%;
  text-align: right;
  padding-left: 15px;
  color: rgba(0, 0, 0, 0.3);
}

.feedback-section-two {
  z-index: 1;
}
.feedback-section-two .slider-wrapper {
  width: calc(100vw + 210px);
  transform: translateX(-105px);
}
.feedback-section-two .shape_01 {
  top: 0;
  left: 11%;
  width: 2.65%;
  min-width: 30px;
  animation: rotated 48s infinite linear;
}

.feedback-block-two {
  border: 1px solid #E1E2E2;
  border-radius: 20px;
  padding: 34px 48px 30px;
}
.feedback-block-two .avatar {
  width: 55px;
  height: 55px;
}
.feedback-block-two .name {
  color: var(--tertiary-color);
}
.feedback-block-two blockquote {
  color: #0E3F30;
  margin: 24px 0 43px;
}
.feedback-block-two .bottom-line {
  border-top: 1px solid #E1E2E2;
  padding-top: 24px;
}
.feedback-block-two .bottom-line .rating li {
  color: #FFCC4A;
  margin-right: 5px;
  font-size: 18px;
}

.slick-center .feedback-block-two {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}
.slick-center .feedback-block-two .name, .slick-center .feedback-block-two blockquote {
  color: #fff;
}
.slick-center .feedback-block-two p {
  color: rgba(255, 255, 255, 0.5);
}
.slick-center .feedback-block-two .bottom-line {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.slick-center .feedback-block-two .bottom-line .icon {
  filter: brightness(0) invert(1);
}

.feedback-section-three .slider-wrapper {
  padding-left: 100px;
}
.feedback-section-three .slider-wrapper .icon {
  left: 0;
  top: 18px;
}
.feedback-section-three .slick-dots {
  margin: 50px 0 0 15px;
  padding: 0;
}
.feedback-section-three .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #000;
  padding: 0;
  margin-right: 3px;
}
.feedback-section-three .slick-dots .slick-active button {
  background: #000;
}
.feedback-section-three .rating-box {
  position: absolute;
  padding: 50px 37px 35px;
  left: -75px;
  bottom: -65px;
  z-index: 1;
  background: #000;
}
.feedback-section-three .rating-box .rating {
  font-size: 58px;
  letter-spacing: -1px;
  line-height: 25px;
  margin-bottom: 20px;
}
.feedback-section-three .shape_01 {
  width: 15px;
  top: 7%;
  right: 52%;
}
.feedback-section-three .shape_02 {
  width: 20px;
  bottom: 17%;
  right: 17%;
}

.feedback-block-three blockquote {
  font-size: 36px;
  line-height: 1.611em;
  color: #000;
}

.feedback-section-four .slider-arrows {
  position: absolute;
  right: 0;
  top: 80px;
  width: 125px;
  border: 1px solid #000;
  border-radius: 50px;
  overflow: hidden;
}
.feedback-section-four .slider-arrows li {
  width: 50%;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  font-weight: 900;
  color: #000;
  transition: all 0.2s ease-in-out 0s;
}
.feedback-section-four .slider-arrows li:hover {
  background: #000;
  color: #fff;
}
.feedback-section-four .partner-logo-one {
  border-bottom: 2px dashed #e3e3e3;
}

.feedback-block-four {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 35px 48px 35px;
}
.feedback-block-four .rating li {
  color: #FFCC4A;
  margin-right: 6px;
  font-size: 18px;
}
.feedback-block-four .icon {
  width: 30px;
}
.feedback-block-four .avatar {
  width: 55px;
  height: 55px;
}
.feedback-block-four blockquote {
  font-size: 28px;
  line-height: 1.571em;
  color: #0E3F30;
  margin: 37px 0 52px;
}
.feedback-block-four:hover {
  background: #F8FCF4;
  border-color: #F8FCF4;
}

.feedback-section-five {
  background: var(--secondary-color);
  border: 1px solid #000;
  z-index: 1;
  overflow: hidden;
}
.feedback-section-five:before {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  right: 0;
  top: 0;
  /*background: url(../images/assets_bg_06.svg) no-repeat right bottom;*/
  background-size: cover;
  z-index: -1;
}
.feedback-section-five .slick-dots {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: -85px;
}
.feedback-section-five .slick-dots li button {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid #000;
  padding: 0;
  margin-right: 3px;
}
.feedback-section-five .slick-dots .slick-active button {
  background: #000;
}
.feedback-section-five .shape_01 {
  bottom: 1%;
  left: 19%;
  width: 34%;
}
.feedback-section-five .shape_02 {
  bottom: 3%;
  right: 8%;
  width: 24%;
}

.feedback-block-five h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.166em;
  color: #000;
  margin-bottom: 40px;
}
.feedback-block-five .name {
  font-size: 28px;
  color: #000;
}

.feedback-section-six {
  z-index: 1;
}
.feedback-section-six .icon-container {
  width: 90%;
  margin: 0 auto;
}
.feedback-section-six .icon-container:before, .feedback-section-six .icon-container:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #000;
  width: calc(50% - 65px);
  top: 50%;
  left: 0;
}
.feedback-section-six .icon-container:after {
  left: auto;
  right: 0;
}
.feedback-section-six .icon-container .icon {
  width: 70px;
  height: 70px;
  padding: 15px;
  background: var(--primary-color);
}
.feedback-section-six .slick-dots {
  margin: 95px 0 0;
  padding: 0;
  justify-content: center;
}
.feedback-section-six .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #1F5E59;
}
.feedback-section-six .slick-dots .slick-active button {
  background: #1F5E59;
}
.feedback-section-six .shape_01 {
  right: 5%;
  bottom: 0;
  max-width: 16%;
}
.feedback-section-six .shape_02 {
  left: 5%;
  bottom: 0;
  max-width: 16%;
}
.feedback-section-six .shape_03 {
  left: 0;
  top: 0;
  max-width: 16%;
}

.feedback-block-six p {
  font-size: 42px;
  line-height: 1.666em;
  color: #171717;
  margin-bottom: 45px;
}
.feedback-block-six h6 {
  display: inline-block;
}
.feedback-block-six h6:before, .feedback-block-six h6:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #000;
  width: 140px;
  top: 20px;
  left: -175px;
}
.feedback-block-six h6:after {
  left: auto;
  right: -175px;
}

.feedback-section-seven .slider-arrows {
  position: absolute;
  top: 35%;
  width: 100%;
  max-width: 1600px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.feedback-section-seven .slider-arrows li {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #000;
  cursor: pointer;
}
.feedback-section-seven .slider-arrows li:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.feedback-block-seven {
  text-align: center;
}
.feedback-block-seven blockquote {
  font-size: 48px;
  line-height: 1.3125em;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.5px;
}
.feedback-block-seven .name {
  font-size: 22px;
}

.blog-section-one {
  z-index: 1;
}
.blog-section-one:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 17%;
  background: var(--bg-light);
  z-index: -1;
}
.blog-section-one .section-btn {
  position: absolute;
  right: 0;
  top: 65px;
  z-index: 1;
}

.blog-meta-one {
  background: #fff;
  border-radius: 30px;
}
.blog-meta-one .post-data {
  padding: 30px 35px 25px;
}
.blog-meta-one .post-data .post-info {
  font-size: 18px;
  color: #AAAAAA;
}
.blog-meta-one .post-data .blog-title {
  font-size: 32px;
  line-height: 1.281em;
}
.blog-meta-one .post-data .blog-title:hover {
  text-decoration: underline;
}
.blog-meta-one .post-img {
  height: 350px;
  border-radius: 0 0 30px 30px;
  padding: 0 25px 25px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blog-meta-one .post-img .round-btn {
  font-size: 25px;
  width: 55px;
  height: 55px;
  background: #fff;
  color: var(--tertiary-color);
}
.blog-meta-one:hover .round-btn {
  background: var(--primary-color);
}
.blog-meta-one.style-two {
  background: #F6F6F6;
  border-radius: 0;
}
.blog-meta-one.style-two .post-img {
  border-radius: 0;
}
.blog-meta-one.style-two .blog-title {
  font-weight: 700;
  font-size: 28px;
  color: #000;
}

.blog-section-two {
  z-index: 1;
}
.blog-section-two .section-btn {
  position: absolute;
  right: 0;
  top: 25px;
}
.blog-section-two .shape_01 {
  bottom: 7%;
  right: 15%;
  width: 1.1%;
  animation: rotated 50s infinite linear;
}

.blog-meta-two {
  background: #fff;
}
.blog-meta-two .post-data {
  padding-top: 30px;
}
.blog-meta-two .post-data .blog-title {
  width: 70%;
}
.blog-meta-two .post-data .blog-title h4 {
  font-size: 32px;
  line-height: 1.281em;
}
.blog-meta-two .post-data .blog-title:hover h4 {
  text-decoration: underline;
}
.blog-meta-two .post-data .round-btn {
  font-size: 25px;
  width: 60px;
  height: 60px;
  border: 1px solid var(--tertiary-color);
  background: #fff;
  color: var(--tertiary-color);
}
.blog-meta-two .post-data .round-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.blog-meta-two .post-data .post-info {
  border-top: 1px solid #D1D1D1;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}
.blog-meta-two .post-img {
  height: 350px;
  padding: 0 0 20px 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blog-meta-two .post-img .date {
  line-height: 38px;
  font-size: 16px;
  padding: 0 18px;
  text-transform: uppercase;
  background: #fff;
  color: var(--tertiary-color);
}
.blog-meta-two.style-two {
  background: #F4F4F4;
  border-radius: 30px;
  overflow: hidden;
}
.blog-meta-two.style-two .post-img {
  height: 460px;
}
.blog-meta-two.style-two .post-data {
  padding: 26px 35px;
}
.blog-meta-two.style-two .post-data .post-info {
  border: none;
  padding: 0;
  margin: 0 0 12px;
}
.blog-meta-two.style-two .post-data .round-btn {
  border: none;
}

.blog-section-three {
  z-index: 1;
}
.blog-section-three .section-btn {
  position: absolute;
  right: 0;
  top: 80px;
  z-index: 1;
}

.blog-section-four {
  z-index: 5;
}
.blog-section-four.block-feature-three:before {
  display: none;
}
.blog-section-four.block-feature-three .block-one {
  background: url(../images/blog_blog_img_05.jpg) no-repeat center;
  height: 666px;
}

.blog-section-five {
  background: #EDF8EB;
  border: 1px solid #000;
  z-index: 5;
}
.blog-section-five .section-btn {
  position: absolute;
  right: 0;
  top: 50px;
}
.blog-section-five .wrapper {
  border-top: 2px solid #000;
}
.blog-section-five .wrapper:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #000;
  top: 0;
  right: 50%;
}

.blog-meta-three .tag {
  line-height: 27px;
  border-radius: 20px;
  background: #000;
  font-size: 14px;
  padding: 0 16px;
  letter-spacing: 1px;
  color: #fff;
}
.blog-meta-three .blog-title {
  font-size: 50px;
  line-height: 1.16em;
  color: #000;
  margin: 37px 0 24px;
}
.blog-meta-three .round-btn {
  font-size: 25px;
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  color: var(--tertiary-color);
}
.blog-meta-three .round-btn:hover {
  background: #000;
  color: #fff;
}

.blog-meta-four {
  border: 1px solid #DFDFDF;
  border-radius: 30px;
  padding: 75px 35px 52px;
  text-align: center;
}
.blog-meta-four .post-data {
  position: relative;
  padding: 42px 12px 28px;
  border-top: 1px dashed #CBCBCB;
  border-bottom: 1px dashed #CBCBCB;
}
.blog-meta-four .post-data .icon {
  width: 55px;
  height: 55px;
  background: var(--tertiary-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-meta-four .post-data .blog-title h4 {
  font-size: 43px;
  line-height: 1.302em;
  margin: 0;
}
.blog-meta-four .post-data .blog-title h4:hover {
  text-decoration: underline;
}
.blog-meta-four .post-info {
  font-size: 20px;
  margin: 35px 0 0;
}
.blog-meta-four .post-info span {
  color: rgba(0, 0, 0, 0.5);
}

.blog-sidebar .sidebar-title {
  font-size: 32px;
  margin-bottom: 18px;
}
.blog-sidebar .sidebar-search {
  height: 65px;
  background: #F3F3F3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.blog-sidebar .sidebar-search input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 50px 0 20px;
  font-size: 18px;
}
.blog-sidebar .sidebar-search button {
  position: absolute;
  width: 65px;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--tertiary-color);
  color: #fff;
}
.blog-sidebar .sidebar-search button:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}
.blog-sidebar .blog-category li a {
  line-height: 54px;
  color: var(--tertiary-color);
  transition: all 0.2s ease-in-out 0s;
}
.blog-sidebar .blog-category li a span {
  color: rgba(0, 0, 0, 0.4);
}
.blog-sidebar .blog-category li a:hover {
  text-decoration: underline;
}
.blog-sidebar .blog-recent-news .recent-news {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.blog-sidebar .blog-recent-news .recent-news:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
.blog-sidebar .blog-recent-news .recent-news .post-img {
  height: 222px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  margin-bottom: 15px;
}
.blog-sidebar .blog-recent-news .recent-news .date {
  font-size: 16px;
  color: #AAAAAA;
  margin-bottom: 5px;
}
.blog-sidebar .blog-recent-news .recent-news .blog-title h3 {
  font-size: 24px;
  line-height: 1.291em;
  max-width: 85%;
}
.blog-sidebar .blog-recent-news .recent-news .blog-title h3:hover {
  text-decoration: underline;
}
.blog-sidebar .blog-keyword ul {
  margin: 0 -4px;
}
.blog-sidebar .blog-keyword ul li {
  margin: 0 4px 10px;
}
.blog-sidebar .blog-keyword ul li a {
  line-height: 35px;
  background: var(--bg-light);
  border-radius: 30px;
  padding: 0 18px;
  font-size: 16px;
  color: #244034;
  transition: all 0.2s ease-in-out 0s;
}
.blog-sidebar .blog-keyword ul li a:hover {
  background: var(--tertiary-color);
  color: #fff;
}
.blog-sidebar .contact-banner {
  padding: 35px 3% 50px;
  background: var(--primary-color);
  border-radius: 20px;
}
.blog-sidebar .contact-banner h3 {
  font-size: 32px;
  line-height: 1.25em;
  color: #000;
}
.blog-sidebar .contact-banner a {
  line-height: 36px;
  border: 2px solid #000;
  border-radius: 30px;
  color: #000;
  padding: 0 30px;
}
.blog-sidebar .contact-banner a:hover {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: #fff;
}

.blog-details .post-details-meta {
  border-top: 1px dashed #BEBEBE;
  border-bottom: 1px dashed #BEBEBE;
  margin-top: 30px;
  padding: 36px 0 18px;
}
.blog-details .post-details-meta p {
  line-height: 1.8em;
  margin-bottom: 30px;
}
.blog-details .post-details-meta .quote-wrapper {
  text-align: center;
  margin: 62px 0 35px;
}
.blog-details .post-details-meta .quote-wrapper .wrapper {
  position: relative;
  padding: 38px 12px 40px;
  border-top: 1px dashed #CBCBCB;
  border-bottom: 1px dashed #CBCBCB;
}
.blog-details .post-details-meta .quote-wrapper .wrapper .icon {
  width: 55px;
  height: 55px;
  background: var(--tertiary-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-details .post-details-meta .quote-wrapper .wrapper h3 {
  font-size: 36px;
  line-height: 1.444em;
  margin: 0;
}
.blog-details .post-details-meta .quote-wrapper h6 {
  font-size: 20px;
  margin: 24px 0 0;
}
.blog-details .post-details-meta .quote-wrapper h6 span {
  color: rgba(0, 0, 0, 0.5);
}
.blog-details .post-details-meta .img-gallery {
  margin-bottom: 50px;
}
.blog-details .post-details-meta .img-gallery img {
  border-radius: 20px;
  margin-top: 15px;
}
.blog-details .post-details-meta h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.blog-details .post-details-meta .list-item li {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  position: relative;
  padding-left: 33px;
  margin-bottom: 23px;
}
.blog-details .post-details-meta .list-item li:after {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  font-size: 0.95em;
  top: 3px;
  left: 0;
  color: #000;
}
.blog-details .bottom-widget {
  padding: 10px 0 5px;
}
.blog-details .bottom-widget .tags li:first-child {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  margin-right: 7px;
}
.blog-details .bottom-widget .tags a {
  line-height: 26px;
  border-radius: 16px;
  background: #fff;
  padding: 0 10px;
  color: var(--tertiary-color);
  font-size: 16px;
  margin-right: 5px;
}
.blog-details .bottom-widget .tags a:hover {
  color: #000;
  text-decoration: underline;
}
.blog-details .bottom-widget .share-icon li:first-child {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
}
.blog-details .bottom-widget .share-icon a {
  color: var(--tertiary-color);
  font-size: 18px;
  margin-left: 17px;
}
.blog-details .grey-bg {
  background: #f4f4f4;
  border-radius: 30px;
  padding: 40px 35px;
}
.blog-details .blog-inner-title {
  font-size: 42px;
  margin-bottom: 10px;
}
.blog-details .blog-comment-area {
  margin: 60px 0;
}
.blog-details .blog-comment-area .comment {
  border-top: 1px dashed #CBCBCB;
  padding: 38px 0 20px;
}
.blog-details .blog-comment-area .comment:last-child {
  padding-bottom: 5px;
}
.blog-details .blog-comment-area .comment .reply-comment {
  border: none;
  padding: 40px 0 30px;
}
.blog-details .blog-comment-area .comment .user-avatar {
  width: 60px;
  height: 60px;
}
.blog-details .blog-comment-area .comment .comment-text {
  width: calc(100% - 60px);
  padding-left: 25px;
  position: relative;
}
.blog-details .blog-comment-area .comment .comment-text .name {
  font-size: 20px;
  color: var(--tertiary-color);
}
.blog-details .blog-comment-area .comment .comment-text .date {
  font-size: 16px;
  color: #ADADAD;
}
.blog-details .blog-comment-area .comment .comment-text p {
  font-size: 18px;
  line-height: 32px;
  margin: 7px 0 10px 0px;
}
.blog-details .blog-comment-area .comment .comment-text .reply-btn {
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: center;
  width: 60px;
  line-height: 25px;
  background: var(--tertiary-color);
  border-radius: 3px;
}
.blog-details .blog-comment-area .comment .comment-text .reply-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}
.blog-details .blog-comment-form p a {
  color: var(--tertiary-color);
}
.blog-details .blog-comment-form form label {
  font-size: 16px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  padding-bottom: 5px;
}
.blog-details .blog-comment-form form input {
  display: block;
  font-size: 18px;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 8px;
  padding: 0 25px;
  background: #fff;
}
.blog-details .blog-comment-form form textarea {
  display: block;
  font-size: 17px;
  width: 100%;
  max-width: 100%;
  height: 145px;
  border: none;
  border-radius: 8px;
  padding: 20px 25px;
  background: #fff;
}

.map-banner {
  height: 600px;
}

.address-block-one .icon {
  width: 80px;
  height: 80px;
  background: var(--tertiary-color);
}
.address-block-one .title {
  font-family: "Kiwi Maru", serif;
  font-size: 24px;
  padding: 20px 0 5px;
}
.address-block-one p {
  line-height: 1.6em;
  color: #878787;
}
.address-block-one p .call {
  color: var(--tertiary-color);
}
.address-block-one p .call:hover {
  text-decoration: underline;
}
.address-block-one p .webaddress {
  color: var(--tertiary-color);
  text-decoration: underline;
}

.contact-us-section .bg-wrapper {
  border-radius: 40px;
  padding: 55px 55px 60px;
}

.form-style-one .input-group-meta {
  position: relative;
}
.form-style-one .input-group-meta label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
}
.form-style-one .input-group-meta input, .form-style-one .input-group-meta textarea {
  width: 100%;
  max-width: 100%;
  border: none;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
}
.form-style-one .input-group-meta input {
  height: 60px;
  padding: 0 20px;
}
.form-style-one .input-group-meta textarea {
  height: 165px;
  padding: 15px 20px;
}
.form-style-one .btn-four {
  font-weight: 500;
  line-height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
}

#contact-form .help-block {
  position: absolute;
  left: 0;
  bottom: -18px;
  font-size: 13px;
  line-height: 20px;
  color: #ff4d44;
}
#contact-form .help-block ul {
  margin: 0;
}

.footer-one {
  background: var(--tertiary-color);
  padding-top: 95px;
}
.footer-one .bottom-footer {
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  margin-top: 32px;
  padding: 40px 0 25px;
}
.footer-one .social-icon a {
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease-in-out 0s;
}
.footer-one .social-icon a:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}
.footer-one .footer-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
.footer-one .footer-nav-link a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 46px;
  transition: all 0.2s ease-in-out 0s;
}
.footer-one .footer-nav-link a:hover {
  color: #fff;
}
.footer-one .footer-newsletter form {
  width: 410px;
  height: 54px;
  position: relative;
}
.footer-one .footer-newsletter form input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 80px 0 30px;
  border: none;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.1);
}
.footer-one .footer-newsletter form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-one .footer-newsletter form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-one .footer-newsletter form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-one .footer-newsletter form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-one .footer-newsletter form button {
  width: 50px;
  height: 50px;
  font-weight: 900;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--tertiary-color);
  position: absolute;
  right: 0;
  top: 2px;
  transition: all 0.2s ease-in-out 0s;
}
.footer-one .footer-newsletter form button:hover {
  background: #fff;
}
.footer-one .copyright {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-one .bottom-nav {
  margin: 0 -12px;
}
.footer-one .bottom-nav a {
  font-size: 18px;
  font-weight: 500;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-one .bottom-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-two {
  background: url(../images/media_img_18.jpg) no-repeat center bottom;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 110px 15px 135px;
}
.footer-two.no-bg {
  background: none;
  padding: 0;
  position: statics;
}
.footer-two.no-bg:before {
  display: none;
}
.footer-two.no-bg .bg-wrapper {
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
.footer-two.no-bg .bg-wrapper .copyright {
  left: 0;
}
.footer-two:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, #F5F8F7 0%, rgba(240, 243, 242, 0.58) 69.88%, rgba(238, 241, 240, 0.15) 100%);
}
.footer-two .bg-wrapper {
  background: #FFFFFF;
  box-shadow: 0px 35px 70px rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  z-index: 1;
  padding: 70px 40px 40px;
}
.footer-two .bg-wrapper .shape_01 {
  bottom: 12%;
  right: 33%;
  width: 2.3%;
  min-width: 28px;
}
.footer-two .bg-wrapper .shape_02 {
  bottom: 38%;
  left: 25%;
  width: 3.8%;
  min-width: 28px;
}
.footer-two .social-icon a {
  color: var(--tertiary-color);
  font-size: 17px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--tertiary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
}
.footer-two .social-icon a:hover {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: #fff;
}
.footer-two .footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-two .footer-nav-link a {
  color: rgba(0, 0, 0, 0.8);
  line-height: 42px;
  transition: all 0.2s ease-in-out 0s;
}
.footer-two .footer-nav-link a:hover {
  color: var(--tertiary-color);
  text-decoration: underline;
}
.footer-two .copyright {
  font-size: 18px;
  color: var(--tertiary-color);
  position: absolute;
  left: 40px;
  bottom: 64px;
}

.footer-three {
  padding: 75px 0 0;
  position: relative;
  z-index: 1;
}
.footer-three .round-bg {
  width: 350px;
  height: 350px;
  padding: 15px 15px;
  background: #FFF6C6;
}
.footer-three .round-bg.color-two {
  background: #FFDEE9;
}
.footer-three .footer-intro p a {
  font-weight: 500;
  font-size: 24px;
  color: #000;
}
.footer-three .footer-intro p a:hover {
  color: var(--tertiary-color);
  text-decoration: underline;
}
.footer-three .footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-three .footer-nav-link a {
  color: rgba(0, 0, 0, 0.5);
  line-height: 46px;
  transition: all 0.2s ease-in-out 0s;
}
.footer-three .footer-nav-link a:hover {
  color: var(--tertiary-color);
  text-decoration: underline;
}
.footer-three .bottom-footer {
  border-top: 1px solid #e2e2e2;
  margin-top: 40px;
  padding: 40px 0 25px;
}
.footer-three .bottom-footer .copyright {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}
.footer-three .bottom-footer .bottom-nav {
  margin: 0 -12px;
}
.footer-three .bottom-footer .bottom-nav a {
  font-size: 18px;
  font-weight: 500;
  margin: 0 12px;
  color: #000;
}
.footer-three .bottom-footer .bottom-nav a:hover {
  text-decoration: underline;
}
.footer-three .bottom-footer .social-icon {
  margin: 0 -10px;
}
.footer-three .bottom-footer .social-icon a {
  margin: 0 10px;
}
.footer-three .bottom-footer .social-icon a:hover {
  color: var(--tertiary-color);
}
.footer-three .shape_01 {
  top: -3%;
  left: -3%;
}
.footer-three .shape_02 {
  bottom: 8%;
  right: 33%;
  animation: rotated 48s infinite linear;
}

.footer-large-wrapper {
  z-index: 1;
}
.footer-large-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  top: -20%;
  background: url(../images/assets_bg_04.svg) no-repeat center bottom;
  background-size: cover;
  z-index: -1;
}

.footer-four {
  padding: 75px 0 0;
}
.footer-four .footer-intro p {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-four .footer-intro li {
  margin-top: 15px;
}
.footer-four .footer-intro li .icon {
  width: 20px;
}
.footer-four .footer-intro li a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.footer-four .footer-intro li a:hover {
  text-decoration: underline;
}
.footer-four .footer-title {
  display: inline-block;
  position: relative;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer-four .footer-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: var(--bg-medium);
}
.footer-four .footer-nav-link a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 44px;
  font-weight: 300;
  transition: all 0.2s ease-in-out 0s;
}
.footer-four .footer-nav-link a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-four .bottom-footer {
  border-top: 1px dashed #37665c;
  margin-top: 40px;
  padding: 40px 0 25px;
}
.footer-four .bottom-footer .copyright {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-four .bottom-footer .bottom-nav {
  margin: 0 -12px;
}
.footer-four .bottom-footer .bottom-nav a {
  font-size: 18px;
  margin: 0 12px;
  color: #fff;
}
.footer-four .bottom-footer .bottom-nav a:hover {
  text-decoration: underline;
}
.footer-four .bottom-footer .social-icon {
  margin: 0 -10px;
}
.footer-four .bottom-footer .social-icon a {
  margin: 0 10px;
  color: #fff;
}
.footer-four .bottom-footer .social-icon a:hover {
  color: var(--secondary-color);
}

.footer-five {
  background: #000;
  padding: 105px 0 20px;
  z-index: 1;
  overflow: hidden;
}
.footer-five:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: url(../images/assets_bg_07.svg) no-repeat center bottom;
  background-size: cover;
  z-index: -1;
}
.footer-five h2 {
  font-size: 132px;
  line-height: 1.185em;
}
.footer-five .btn-group {
  padding: 15px 15px 15px 55px;
  border-radius: 80px;
  background: var(--secondary-color);
  margin: 85px 0 110px;
}
.footer-five .btn-group h3 {
  font-size: 70px;
  color: #000;
  margin: 0;
}
.footer-five .btn-group h3 span {
  font-weight: 700;
  font-style: italic;
  text-decoration-line: underline;
  text-decoration-thickness: 4px;
}
.footer-five .btn-group .round-btn {
  width: 125px;
  height: 125px;
  text-align: center;
  font-size: 55px;
  color: var(--secondary-color);
  background: #101010;
}
.footer-five .btn-group .round-btn:hover, .footer-five .btn-group .round-btn:focus {
  background: var(--tertiary-color);
  color: #fff;
}
.footer-five .social-icon {
  margin: 0 -20px;
}
.footer-five .social-icon a {
  color: #fff;
  margin: 0 20px;
}
.footer-five .social-icon a:hover {
  color: var(--secondary-color);
}
.footer-five .bottom-nav {
  margin: 0 -12px;
}
.footer-five .bottom-nav a {
  font-size: 18px;
  font-weight: 500;
  margin: 0 12px;
  color: #fff;
}
.footer-five .bottom-nav a:hover {
  text-decoration: underline;
}
.footer-five .shape_01 {
  top: 11%;
  right: 10%;
  width: 3.4%;
  animation: rotated 48s infinite linear;
}
.footer-five .shape_02 {
  bottom: 41%;
  left: 13%;
  width: 1.7%;
  animation: rotated 48s infinite linear;
}

/* Custome Animation */
@keyframes jump {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpThree {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFour {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFive {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes prXOne {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes prXTwo {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotatedTwo {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotatedHalf {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes scale-right {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
  }
  50% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0.8;
  }
  100% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    opacity: 1;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  100% {
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    opacity: 0;
  }
}
@keyframes scale-up-one {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-up-two {
  0% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes scale-up-three {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes jump {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpThree {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFour {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFive {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes prXOne {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes prXTwo {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotatedTwo {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotatedHalf {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes scale-right {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
  }
  50% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0.8;
  }
  100% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    opacity: 1;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  100% {
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    opacity: 0;
  }
}
@keyframes scale-up-one {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scale-up-two {
  0% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes scale-up-three {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
.shop-filter-one .theme-select-menu {
  width: 100%;
  min-width: 145px;
  height: 45px;
  font-size: 17px;
  padding: 0 12px;
  box-shadow: none;
  outline: none;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-block-one {
  overflow: hidden;
}
.product-block-one .img-holder {
  position: relative;
  background: #F5F5F5;
  z-index: 5;
  margin-bottom: 22px;
}
.product-block-one .img-holder .cart-icon {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  background: #fff;
  color: #000;
  text-align: center;
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease-in-out 0s;
}
.product-block-one .img-holder .cart-icon:hover {
  color: var(--tertiary-color);
  background: var(--primary-color);
}
.product-block-one .img-holder .cart-button {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  line-height: 48px;
  background: var(--tertiary-color);
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease-in-out 0s;
}
.product-block-one .img-holder .cart-button:hover {
  color: var(--tertiary-color);
  background: var(--primary-color);
}
.product-block-one .product-title {
  font-weight: 500;
  color: var(--tertiary-color);
  font-size: 20px;
  text-transform: capitalize;
}
.product-block-one .rating {
  margin: 0 -3px;
}
.product-block-one .rating li {
  font-size: 15px;
  margin: 0 3px;
  color: #B3B3B3;
}
.product-block-one .rating li .bi-star-fill {
  color: #FFCB65;
}
.product-block-one .price {
  font-weight: 500;
  font-size: 22px;
  color: var(--primary-color);
  margin-top: 10px;
}
.product-block-one:hover .cart-button {
  opacity: 1;
  transform: translateY(0);
}
.product-block-one:hover .product-img {
  transform: scale(0.95);
}
.product-block-one:hover .cart-icon {
  opacity: 1;
  transform: scale(1);
}
.product-block-one:hover .product-title {
  text-decoration: underline;
}

.product-details-one .product-img-tab {
  border: none;
}
.product-details-one .product-img-tab .nav-link {
  width: 100%;
  background: #F6F6F6;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 5px 0;
  height: 88px;
  margin-bottom: 12px;
}
.product-details-one .product-img-tab .nav-link img {
  max-height: 100%;
}
.product-details-one .product-img-tab .nav-link.active {
  background: #fff;
  border-color: #000;
}
.product-details-one .product-img-tab-content {
  background: #F6F6F6;
  padding: 20px;
}
.product-details-one .product-img-tab-content img {
  margin: auto;
}
.product-details-one .product-info .stock-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: #EAEAEA;
  border-radius: 3px;
  line-height: 25px;
  padding: 0 10px;
}
.product-details-one .product-info .product-name {
  text-transform: capitalize;
  font-size: 32px;
  margin: 25px 0 15px;
}
.product-details-one .product-info .rating li {
  font-size: 15px;
  margin-right: 6px;
  color: #B3B3B3;
}
.product-details-one .product-info .rating li .bi-star-fill {
  color: #FFCB65;
}
.product-details-one .product-info .rating li a {
  font-size: 17px;
  color: #000;
  margin-left: 12px;
}
.product-details-one .product-info .rating li a:hover {
  text-decoration: underline;
}
.product-details-one .product-info .price {
  font-size: 26px;
  font-weight: 700;
  color: var(--tertiary-color);
  padding: 25px 0 5px;
}
.product-details-one .product-info .price del {
  font-size: 0.7em;
  opacity: 0.6;
}
.product-details-one .product-info .availability {
  color: #989CA2;
  font-size: 17px;
}
.product-details-one .product-info .description-text {
  padding: 10px 0 15px;
}
.product-details-one .product-info .product-feature {
  margin-bottom: 20px;
}
.product-details-one .product-info .product-feature li {
  color: #000;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.product-details-one .product-info .product-feature li:before {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 2px;
  left: 0;
  color: var(--tertiary-color);
}
.product-details-one .product-info .customize-order h6 {
  font-size: 18px;
  margin: 0 15px 0 0;
}
.product-details-one .product-info .customize-order .quantity .button-group {
  border: 1px solid #e3e3e3;
  display: inline-block;
}
.product-details-one .product-info .customize-order .quantity .button-group li {
  line-height: 40px;
  max-height: 40px;
}
.product-details-one .product-info .customize-order .quantity .button-group li button {
  font-size: 25px;
  color: #C9C9C9;
  background: transparent;
  width: 32px;
}
.product-details-one .product-info .customize-order .quantity .button-group li .product-value {
  font-size: 18px;
  font-weight: 500;
  height: 40px;
  color: #000;
  max-width: 45px;
  background: transparent;
  border: none;
  text-align: center;
  padding-left: 5px;
}
.product-details-one .product-review-tab .nav-tabs {
  border-bottom: 1px solid #EBEBEB;
}
.product-details-one .product-review-tab .nav-tabs .nav-link {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tertiary-color);
  letter-spacing: 1px;
  padding: 0 0 12px 0;
  position: relative;
  margin: 0 50px 0 0;
  border: none;
  border-radius: 0;
}
.product-details-one .product-review-tab .nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -1px;
  z-index: 1;
  background: #000;
  transform: scale(0, 1);
  transition: all 0.3s ease-in-out 0s;
}
.product-details-one .product-review-tab .nav-tabs .nav-link.active:before {
  transform: scale(1);
}
.product-details-one .product-review-tab .nav-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}
.product-details-one .product-review-tab .tab-content h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}
.product-details-one .product-review-tab .tab-content .product-feature li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
}
.product-details-one .product-review-tab .tab-content .product-feature li:before {
  content: "\f633";
  position: absolute;
  font-family: "bootstrap-icons";
  top: 2px;
  left: 0;
  color: var(--tertiary-color);
}
.product-details-one .product-review-tab .user-comment-area .single-comment {
  padding-bottom: 40px;
}
.product-details-one .product-review-tab .user-comment-area .single-comment:last-child {
  padding-bottom: 0;
}
.product-details-one .product-review-tab .user-comment-area .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.product-details-one .product-review-tab .user-comment-area .user-comment-data {
  padding-left: 30px;
  position: relative;
}
.product-details-one .product-review-tab .user-comment-area .user-comment-data .name {
  font-size: 18px;
  margin-bottom: 4px;
}
.product-details-one .product-review-tab .user-comment-area .user-comment-data .rating li {
  font-size: 14px;
  margin: 0 3px;
  color: #B3B3B3;
}
.product-details-one .product-review-tab .user-comment-area .user-comment-data .rating li .bi-star-fill {
  color: #FFCB65;
}
.product-details-one .product-review-tab .user-comment-area .user-comment-data p {
  padding-top: 8px;
}

.cart-list-form {
  position: relative;
}
.cart-list-form .table {
  margin: 0;
  background: transparent;
}
.cart-list-form .table th {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  border-bottom: 2px solid #000;
  padding: 0 0 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--tertiary-color);
  background: transparent;
}
.cart-list-form .table th:first-child {
  text-align: left;
}
.cart-list-form .table tbody td {
  padding: 0 0 70px;
  border: none;
  vertical-align: middle;
  text-align: center;
  background: transparent;
}
.cart-list-form .table tbody tr:first-child td {
  padding-top: 60px;
}
.cart-list-form .table tbody tr:last-child td {
  padding-bottom: 40px;
}
.cart-list-form .table tbody .product-thumbnails {
  width: 85px;
}
.cart-list-form .table tbody .product-thumbnails img {
  max-height: 100%;
  max-width: none;
}
.cart-list-form .table tbody .product-thumbnails .product-img {
  display: block;
  max-width: 85px;
  max-height: 85px;
  overflow: hidden;
}
.cart-list-form .table tbody .product-info {
  padding-left: 30px;
  text-align: left;
}
.cart-list-form .table tbody .product-info .product-name {
  font-weight: 700;
  font-size: 20px;
  color: var(--tertiary-color);
}
.cart-list-form .table tbody .product-info .serial {
  font-size: 15px;
  color: rgba(31, 31, 31, 0.5);
  padding-bottom: 6px;
}
.cart-list-form .table tbody .product-info ul li {
  display: inline-block;
  font-size: 16px;
  color: #000;
  padding-right: 15px;
}
.cart-list-form .table tbody .price {
  font-weight: 500;
  font-size: 18px;
  color: var(--tertiary-color);
}
.cart-list-form .table tbody .quantity li {
  display: inline-block;
  line-height: 40px;
  max-height: 40px;
}
.cart-list-form .table tbody .quantity li .btn {
  font-size: 24px;
  padding: 0;
  border: none;
  vertical-align: inherit;
  color: #1d1d1d;
  background: transparent;
}
.cart-list-form .table tbody .quantity li .product-value {
  font-size: 18px;
  font-weight: 500;
  color: #1d1d1d;
  max-width: 55px;
  background: transparent;
  border: none;
  text-align: center;
  padding-left: 12px;
}
.cart-list-form .table tbody .remove-product {
  color: #000;
  font-size: 22px;
}
.cart-list-form .table tbody .remove-product:hover {
  color: #ff2759;
}
.cart-list-form .cart-footer {
  border-top: 2px solid #545454;
  margin-top: 28px;
  padding-top: 40px;
}
.cart-list-form .cart-footer .coupon-form input {
  width: 240px;
  height: 50px;
  border: none;
  border-bottom: 2px solid #545454;
  font-size: 18px;
  margin-right: 30px;
  background: transparent;
}
.cart-list-form .cart-footer .cart-total-section {
  text-align: right;
  padding-right: 82px;
}
.cart-list-form .cart-footer .cart-total-section .cart-total-table tr th {
  font-size: 18px;
  font-weight: 500;
  color: rgba(29, 29, 29, 0.5);
  font-weight: normal;
  padding-right: 26px;
  padding-bottom: 16px;
}
.cart-list-form .cart-footer .cart-total-section .cart-total-table tr td {
  font-size: 18px;
  font-weight: 500;
  color: var(--tertiary-color);
  padding-bottom: 16px;
}

.checkout-toggle-area p {
  margin-bottom: 10px;
}
.checkout-toggle-area p button {
  font-weight: 500;
  letter-spacing: 0px;
  color: var(--tertiary-color);
  background: transparent;
  display: inline-block;
  text-decoration: underline;
}
.checkout-toggle-area form input {
  width: 100%;
  height: 60px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  padding: 0 30px;
  margin-bottom: 20px;
}
.checkout-toggle-area form input:focus {
  border-color: #777;
}
.checkout-toggle-area form .lost-passw {
  color: #636067;
  font-size: 0.8em;
  margin: 12px 0 35px;
}
.checkout-toggle-area form .lost-passw:hover {
  text-decoration: underline;
}
.checkout-toggle-area form button {
  line-height: 50px;
}
.checkout-toggle-area form p {
  font-size: 0.9em;
  padding-top: 15px;
}

.checkout-form .main-title {
  font-size: 28px;
  padding-bottom: 55px;
}
.checkout-form .single-input-wrapper {
  display: block;
  width: 100%;
  height: 60px;
  font-size: 18px;
  border: none;
  padding: 0 15px;
  border: none;
  border-radius: 8px;
  margin-bottom: 55px;
}
.checkout-form .theme-select-menu {
  display: block;
  width: 100%;
  height: 60px;
  font-size: 18px;
  border: none;
  padding: 0 15px;
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 8px;
  margin-bottom: 55px;
}
.checkout-form .theme-select-menu option {
  font-size: 0.85em;
}
.checkout-form .checkbox-list {
  padding-bottom: 44px;
}
.checkout-form .checkbox-list li label {
  position: relative;
  font-weight: 500;
  font-size: 17px;
  line-height: 15px;
  padding-left: 28px;
  color: var(--tertiary-color);
  cursor: pointer;
  margin: 0 0 24px;
}
.checkout-form .checkbox-list li label:before {
  content: "";
  width: 15px;
  height: 15px;
  line-height: 15px;
  border-radius: 2px;
  border: 1px solid #000;
  font-size: 12px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.checkout-form .checkbox-list li input[type=checkbox] {
  display: none;
}
.checkout-form .checkbox-list li input[type=checkbox]:checked + label:before {
  content: "\f272";
  font-family: bootstrap-icons !important;
  background: #373737;
  color: #fff;
  border-color: #373737;
}
.checkout-form .other-note-area p {
  font-weight: 500;
  font-size: 16px;
  color: var(--tertiary-color);
  margin-bottom: 6px;
}
.checkout-form .other-note-area textarea {
  width: 100%;
  border: none;
  padding: 15px;
  resize: none;
  height: 145px;
}
.checkout-form .order-confirm-sheet .order-review {
  background: #fff;
  padding: 50px 40px;
}
.checkout-form .order-confirm-sheet .order-review .product-review {
  width: 100%;
}
.checkout-form .order-confirm-sheet .order-review .product-review tbody {
  color: var(--tertiary-color);
}
.checkout-form .order-confirm-sheet .order-review .product-review tbody th {
  padding-bottom: 15px;
}
.checkout-form .order-confirm-sheet .order-review .product-review tbody th span {
  font-weight: 500;
  font-size: 18px;
}
.checkout-form .order-confirm-sheet .order-review .product-review tbody td {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}
.checkout-form .order-confirm-sheet .order-review .product-review tfoot th {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  border-top: 1px solid #e9e9e9;
  padding-top: 15px;
}
.checkout-form .order-confirm-sheet .order-review .product-review tfoot td {
  text-align: right;
  font-weight: 500;
  font-size: 18px;
  border-top: 1px solid #e9e9e9;
  padding-top: 15px;
}
.checkout-form .order-confirm-sheet .order-review .payment-list {
  padding: 30px 0 15px;
  border-bottom: 1px solid #e9e9e9;
}
.checkout-form .order-confirm-sheet .order-review .payment-list li {
  padding: 0 0 12px 30px;
  position: relative;
}
.checkout-form .order-confirm-sheet .order-review .payment-list li p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 12px;
}
.checkout-form .order-confirm-sheet .order-review .payment-list li label {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 15px;
  color: var(--tertiary-color);
  cursor: pointer;
  margin: 0 0 13px;
}
.checkout-form .order-confirm-sheet .order-review .payment-list li label:before {
  content: "";
  width: 15px;
  height: 15px;
  line-height: 14px;
  font-weight: 700;
  border-radius: 50%;
  border: 1px solid #d5d5d5;
  font-size: 10px;
  text-align: center;
  position: absolute;
  left: -30px;
  top: 0;
}
.checkout-form .order-confirm-sheet .order-review .payment-list li input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.checkout-form .order-confirm-sheet .order-review .payment-list li input:checked + label:before {
  content: "\f272";
  font-family: bootstrap-icons !important;
  background: #373737;
  color: #fff;
  border-color: #373737;
}
.checkout-form .order-confirm-sheet .policy-text {
  font-size: 16px;
  line-height: 22px;
  color: #979797;
  padding: 25px 0 5px;
}
.checkout-form .order-confirm-sheet .agreement-checkbox label {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: var(--tertiary-color);
  cursor: pointer;
  padding-left: 33px;
  margin-bottom: 35px;
}
.checkout-form .order-confirm-sheet .agreement-checkbox label:before {
  content: "";
  width: 15px;
  height: 15px;
  line-height: 14px;
  border-radius: 2px;
  border: 1px solid #d5d5d5;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
.checkout-form .order-confirm-sheet .agreement-checkbox input[type=checkbox] {
  display: none;
}
.checkout-form .order-confirm-sheet .agreement-checkbox input[type=checkbox]:checked + label:before {
  content: "\f272";
  font-family: bootstrap-icons !important;
  background: #373737;
  color: #fff;
  border-color: #373737;
}
.checkout-form .credit-card-form {
  margin-top: 12px;
  display: none;
}
.checkout-form .credit-card-form h6 {
  font-size: 15px;
  margin-bottom: 5px;
}
.checkout-form .credit-card-form input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 0 10px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.checkout-form .credit-card-form span {
  padding: 0 5px;
  margin-bottom: 18px;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s, visibility 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0;
}

.fancybox-slide--iframe {
  padding: 44px 44px 0;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
  cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  vertical-align: top;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  transition: color 0.2s;
  vertical-align: top;
  width: 44px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:focus, .fancybox-button:hover {
  color: #fff;
}

.fancybox-button.disabled, .fancybox-button.disabled:hover, .fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--pause svg path:nth-child(1), .fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--play svg path, .fancybox-button--share svg path, .fancybox-button--thumbs svg path {
  fill: currentColor;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button:after {
  content: "";
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}

.fancybox-close-small svg {
  fill: transparent;
  opacity: 0.8;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: stroke 0.1s;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:hover svg {
  opacity: 1;
}

.fancybox-slide--iframe .fancybox-close-small, .fancybox-slide--image .fancybox-close-small, .fancybox-slide--video .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}

.fancybox-slide--iframe .fancybox-close-small:hover svg, .fancybox-slide--image .fancybox-close-small:hover svg, .fancybox-slide--video .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px;
  right: 0;
}

.fancybox-caption:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption:after {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 0.8s infinite linear;
  background: transparent;
  border: 6px solid hsla(0, 0%, 39%, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}
@keyframes a {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  margin: 0 -15px;
}

.slick-dots {
  list-style-type: none;
  display: flex;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  text-indent: -50000px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px;
  background: #E4E4E4;
  transition: all 0.3s ease-in-out;
}

.slick-dots .slick-active button {
  background: var(--tertiary-color);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none !important;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  margin: 0 15px;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */




.company {
 width: 100%;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
 border-top: solid 1px #FFE7EE;
}
.company tr:nth-child(2n+1) {
 background: #fff;
}
.company th,
.company td {
 padding: 10px;
 border-bottom: solid 1px #FFE7EE;
}



@media (max-width: 767px) {

  .inner-banner-two .shape_01 {
  left: 0%;
  bottom: 10%;
  width: 36%;
  animation: jumpTwo 6s infinite linear;
}


.inner-banner-two .shape_02 {
  right: 2%;
  bottom: 12%;
  width: 28%;
  animation: jumpThree 6s infinite linear;
}


.text-feature-six .media-wrapper .screen_01 {
  width: 100%;
  bottom: 10%;
  right: -4%;
  z-index: 1;
  animation: jumpThree 5s infinite linear;
}

.text-feature-nine .shape_04 {
  bottom: 0;
  left: 6%;
  width: 50%;
}

}










/* =================================
   新着情報セクション専用CSS
   既存のCSSファイル（style.css）の末尾に追加してください
   ================================= */

/* News section styles */
.miyuki-news-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 50%, var(--bg-medium) 100%);
    overflow: hidden;
}

.miyuki-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FF6B9D" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23FFC2D6" opacity="0.15"/><circle cx="60" cy="80" r="2.5" fill="%239C4F96" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.miyuki-news-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.miyuki-news-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--tertiary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: "Kiwi Maru", serif;
}

.miyuki-news-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.miyuki-news-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    font-family: "Kiwi Maru", serif;
}

/* News cards grid */
.miyuki-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.miyuki-news-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(156, 79, 150, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.miyuki-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(156, 79, 150, 0.2);
}

.miyuki-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-bright), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.miyuki-news-card:hover::before {
    opacity: 1;
}

.miyuki-news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 194, 214, 0.3), rgba(255, 107, 157, 0.2));
}

.miyuki-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.miyuki-news-card:hover .miyuki-news-image img {
    transform: scale(1.05);
}

.miyuki-news-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

.miyuki-news-content {
    padding: 25px;
}

.miyuki-news-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(255, 107, 157, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: "Kiwi Maru", serif;
}

.miyuki-news-card-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Kiwi Maru", serif;
}

.miyuki-news-excerpt {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Kiwi Maru", serif;
}

.miyuki-news-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Kiwi Maru", serif;
}

.miyuki-news-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.miyuki-news-link:hover {
    color: var(--tertiary-color);
    text-decoration: none;
}

.miyuki-news-link:hover::after {
    transform: translateX(4px);
}

/* CTA section */
.miyuki-news-cta {
    text-align: center;
    margin-top: 50px;
}

.miyuki-btn-more {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    font-family: "Kiwi Maru", serif;
}

.miyuki-btn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.miyuki-btn-more:hover::before {
    left: 100%;
}

.miyuki-btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    text-decoration: none;
    color: white;
}

.miyuki-btn-more svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.miyuki-btn-more:hover svg {
    transform: translateX(4px);
}

/* Floating elements */
.miyuki-floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.miyuki-floating-1 {
    top: 10%;
    left: 5%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: miyuki-float 6s ease-in-out infinite;
}

.miyuki-floating-2 {
    top: 20%;
    right: 10%;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: miyuki-float 8s ease-in-out infinite reverse;
}

.miyuki-floating-3 {
    bottom: 15%;
    left: 8%;
    width: 25px;
    height: 25px;
    background: var(--tertiary-color);
    border-radius: 50%;
    animation: miyuki-float 7s ease-in-out infinite;
}

@keyframes miyuki-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive design */
@media (max-width: 1199px) {
    .miyuki-news-section {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .miyuki-news-section {
        padding: 80px 0;
    }
    
    .miyuki-news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .miyuki-news-section {
        padding: 60px 0;
    }

    .miyuki-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .miyuki-news-card {
        margin: 0;
    }

    .miyuki-news-header {
        margin-bottom: 40px;
    }

    .miyuki-news-title {
        font-size: 2.5rem;
    }

    /* スマホ用カード調整 */
    .miyuki-news-content {
        padding: 18px;
    }

    .miyuki-news-image {
        height: 140px;
    }

    .miyuki-news-card-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }

    .miyuki-news-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
    }

    .miyuki-news-date {
        font-size: 0.75rem;
        padding: 4px 8px;
        margin-bottom: 12px;
    }

    .miyuki-news-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .miyuki-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 0 5px;
    }

    .miyuki-news-content {
        padding: 15px;
    }

    .miyuki-news-image {
        height: 120px;
    }

    .miyuki-btn-more {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .miyuki-news-card-title {
        font-size: 0.95rem;
    }

    .miyuki-news-excerpt {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .miyuki-news-date {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

/* 極小画面（iPhone SE等）対応 */
@media (max-width: 375px) {
    .miyuki-news-grid {
        gap: 10px;
    }

    .miyuki-news-content {
        padding: 12px;
    }

    .miyuki-news-image {
        height: 100px;
    }

    .miyuki-news-card-title {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

    .miyuki-news-excerpt {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
}


.img-radius {
  border-radius: 30px;
}


.hero-heading small{
  font-size: 0.5em;
}


.bubbles {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}
.bubble {
  position: absolute;
  bottom: 25%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 211, 169, 0.2);
  border: 0px solid #fff;
  border-radius: 50%;
  animation: bubble 10s ease-in infinite;
}
.bubble:nth-child(1) {
  width: 20px;
  height: 20px;
  left: 30%;
  animation-duration: 6s;
}
.bubble:nth-child(2) {
  left: 20%;
  animation-duration: 3.5s;
}
.bubble:nth-child(3) {
  width: 30px;
  height: 30px;
  left: 30%;
  animation-duration: 7s;
}
.bubble:nth-child(4) {
  width: 50px;
  height: 50px;
  left: 67%;
  animation-duration: 6s;
}
.bubble:nth-child(5) {
  width: 20px;
  height: 20px;
  left: 70%;
  animation-duration: 4.5s;
}
@keyframes bubble {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    bottom: 1000px;
  }
}


.opening-times {
 width: 100%;
/* text-align: center;*/
 border-collapse: collapse;
 border-spacing: 0;
}
.opening-times th {
 font-size: 15px;
 padding: 10px;
 border-bottom: solid 4px #B9529E;
 color: #B9529E
}
.opening-times td {
 font-size: 15px;
 padding: 10px;
 border-bottom: solid 1px #B9529E;
}





/* 料金表スタイル */
.pricing-section {
  background: var(--bg-light);
  position: relative;
  z-index: 1;
}

.pricing-accordion {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #E8E8E8;
  border-radius: 0;
}

.pricing-accordion .accordion-item:last-child {
  border-bottom: none;
}

.pricing-accordion .accordion-header {
  border: none;
}

.pricing-accordion .accordion-button {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4em;
  color: var(--tertiary-color);
  padding: 25px 30px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.pricing-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: var(--bg-light);
}

.pricing-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.pricing-accordion .accordion-button::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  background: none;
  width: auto;
  height: auto;
  color: var(--tertiary-color);
}

.pricing-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: var(--primary-color);
}

.pricing-accordion .accordion-body {
  padding: 0 30px 30px;
  background: var(--bg-light);
}

.pricing-accordion .course-description {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.03);
}

.pricing-table th {
  background: var(--tertiary-color);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 12px;
  text-align: center;
  border: none;
  vertical-align: middle;
}

.pricing-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #F0F0F0;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .item-name {
  background: var(--bg-medium);
  color: var(--text-dark);
  font-weight: 600;
  text-align: left;
  padding-left: 20px;
}

.pricing-table .price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 17px;
}

.pricing-table .not-available {
  color: #CCCCCC;
  font-style: italic;
}

.pricing-course-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}

.pricing-note {
  margin-top: 20px;
  padding: 15px;
  background: #FFF9E6;
  border-radius: 10px;
  border-left: 4px solid #FFD700;
  font-size: 14px;
  color: #666;
}

.pricing-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.pricing-highlight h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
}

.pricing-highlight p {
  margin: 0;
  opacity: 0.9;
  font-size: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .pricing-accordion .accordion-button {
    font-size: 18px;
    padding: 20px 20px;
  }
  
  .pricing-accordion .accordion-body {
    padding: 0 20px 25px;
  }
  
  .pricing-table {
    font-size: 14px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
    font-size: 14px;
  }
  
  .pricing-table .item-name {
    padding-left: 12px;
  }
  
  .pricing-course-badge {
    font-size: 12px;
    padding: 3px 8px;
  }
}




/* 会員特典カード専用スタイル */
.member-benefits-card {
    background: linear-gradient(135deg, #fff 0%, #fef7ff 100%);
    border: 1px solid rgba(255, 107, 157, 0.1);
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.08);
    transition: all 0.3s ease;
}

.member-benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
}

/* 背景装飾 */
.benefits-bg-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-bright));
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

/* ヘッダー部分 */
.benefits-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 157, 0.1);
}

.benefits-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.benefits-header h4 {
    color: var(--tertiary-color);
    font-size: 22px;
    margin: 0;
}

.benefits-sparkle {
    margin-left: auto;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6B9D'%3E%3Cpath d='M12 2l1.09 3.26L16 6.27l-2.91 2.83L14.18 13L12 11.27 9.82 13l1.09-3.9L8 6.27l2.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

/* 特典リスト */
.benefits-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    background: rgba(255, 107, 157, 0.03);
    border-radius: 10px;
    padding-left: 10px;
    margin: 0 -10px;
}

.benefit-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.premium-benefit .benefit-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.point-benefit .benefit-icon {
    background: linear-gradient(135deg, var(--accent-bright), var(--primary-color));
    color: white;
}

.eco-benefit .benefit-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.line-benefit .benefit-icon {
    background: linear-gradient(135deg, #00C300, #00B300);
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--tertiary-color);
    margin-bottom: 3px;
}

.benefit-desc {
    font-size: 14px;
    color: var(--text-medium);
    opacity: 0.8;
}

.benefit-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.benefit-badge.point {
    background: linear-gradient(135deg, var(--accent-bright), var(--primary-color));
    color: white;
}

.benefit-badge.eco {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.benefit-badge.line {
    background: linear-gradient(135deg, #00C300, #00B300);
    color: white;
}

/* CTAボタン */
.benefits-cta {
    text-align: center;
    margin-top: 10px;
}

.benefits-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.benefits-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    color: white;
    text-decoration: none;
}

.benefits-btn span {
    margin-right: 8px;
}

.benefits-btn svg {
    transition: transform 0.3s ease;
}

.benefits-btn:hover svg {
    transform: translateX(3px);
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .member-benefits-card {
        padding: 25px 20px;
    }
    
    .benefits-header h4 {
        font-size: 20px;
    }
    
    .benefit-item {
        padding: 12px 0;
    }
    
    .benefit-title {
        font-size: 15px;
    }
    
    .benefit-desc {
        font-size: 13px;
    }
}












/* =================================
   選べる3つのクリーニングコース - 絵文字で親しみやすく
   ================================= */

/* セクション全体の基本スタイル */
.text-feature-three {
    background: linear-gradient(180deg, #FEFEFF 0%, #FFF9FB 100%);
    position: relative;
    overflow: hidden;
}

/* 控えめな背景装飾 */
.text-feature-three::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 194, 214, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* タイトルスタイル - シンプルで読みやすく */
.text-feature-three .title-one h2 {
    color: var(--tertiary-color);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
}

/* タイトルの絵文字スタイル */
.emoji-sparkle {
    display: inline-block;
    font-size: 0.8em;
    margin-left: 10px;
    animation: sparkle-rotate 3s ease-in-out infinite;
}

@keyframes sparkle-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

/* 小さなアクセントライン */
.text-feature-three .title-one::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 20px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.text-feature-three .title-one:hover::after {
    width: 60px;
}

/* 説明文 - 読みやすさ重視 */
.text-feature-three .text-lg {
    color: #5A6C7D;
    line-height: 1.75;
    font-weight: 400;
}

/* 小さな絵文字スタイル */
.emoji-small {
    font-size: 1.1em;
    vertical-align: middle;
    margin-left: 5px;
}

/* コースリスト - 絵文字付きで可愛らしく */
.text-feature-three ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list-with-emoji li {
    position: relative;
    padding: 20px 24px;
    margin-bottom: 14px;
    background: #FFFFFF;
    border: 1px solid #E8EAED;
    border-radius: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.04);
}

/* コース絵文字 */
.course-emoji {
    font-size: 1.8em;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 194, 214, 0.1);
    border-radius: 12px;
    transition: all 0.2s ease;
}

/* コース内容 */
.course-content {
    flex: 1;
}

.course-content strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05em;
    display: block;
    margin-bottom: 4px;
}

.course-desc {
    color: #5A6C7D;
    font-size: 0.92em;
    line-height: 1.5;
    display: block;
}

/* 各コースの色分け - 絵文字背景 */
.course-list-with-emoji li:nth-child(1) .course-emoji { background: rgba(156, 79, 150, 0.1); }
.course-list-with-emoji li:nth-child(2) .course-emoji { background: rgba(255, 107, 157, 0.1); }
.course-list-with-emoji li:nth-child(3) .course-emoji { background: rgba(255, 142, 127, 0.1); }
.course-list-with-emoji li:nth-child(4) .course-emoji { 
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
}

/* ホバー効果 - 楽しく弾むように */
.course-list-with-emoji li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.08);
    border-color: rgba(255, 107, 157, 0.2);
}

.course-list-with-emoji li:hover .course-emoji {
    transform: scale(1.1) rotate(-5deg);
}

/* 左側のアクセントバー - 削除（絵文字で代替） */
.text-feature-three ul li::before {
    display: none;
}

/* 価格表示エリア - 絵文字で楽しく */
.text-feature-three .counter-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.06);
    position: relative;
    overflow: hidden;
}

.text-feature-three .counter-wrapper::before {
    content: '💫';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 80px;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.text-feature-three .counter-block-one {
    text-align: center;
}

.price-emoji-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price-emoji {
    font-size: 2em;
    animation: bounce-light 2s ease-in-out infinite;
}

@keyframes bounce-light {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.text-feature-three .counter-block-one .main-count {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-feature-three .counter-block-one p {
    color: #5A6C7D;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.emoji-tiny {
    font-size: 0.8em;
    margin-left: 5px;
}

/* 画像エリア - 浮遊する絵文字付き */
.text-feature-three .media-wrapper {
    position: relative;
    padding: 20px 0;
}

.text-feature-three .media-wrapper img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.text-feature-three .media-wrapper:hover img {
    transform: translateY(-5px);
}

/* 浮遊する絵文字 */
.floating-emoji {
    position: absolute;
    font-size: 1.5em;
    opacity: 0.7;
    animation: float-emoji 6s ease-in-out infinite;
}

.emoji-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.emoji-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.emoji-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-emoji {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-15px) rotate(-10deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-5px) rotate(5deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-10px) rotate(-5deg);
        opacity: 0.9;
    }
}

/* モバイル最適化 */
@media (max-width: 1199px) {
    .text-feature-three .counter-block-one .main-count {
        font-size: 34px;
    }
    
    .floating-emoji {
        font-size: 1.2em;
    }
}

@media (max-width: 767px) {
    .text-feature-three {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    .course-list-with-emoji li {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .course-emoji {
        font-size: 1.5em;
        width: 40px;
        height: 40px;
    }
    
    .course-content strong {
        font-size: 0.95em;
    }
    
    .course-desc {
        font-size: 0.85em;
    }
    
    .text-feature-three .counter-wrapper {
        padding: 20px;
        margin-top: 30px;
    }
    
    .price-emoji {
        font-size: 1.5em;
    }
    
    .text-feature-three .counter-block-one .main-count {
        font-size: 28px;
    }
    
    .text-feature-three .counter-block-one p {
        font-size: 13px;
    }
    
    .floating-emoji {
        font-size: 1em;
        opacity: 0.5;
    }
    
    .emoji-sparkle {
        font-size: 0.7em;
    }
}

/* アクセシビリティ向上 */
@media (prefers-reduced-motion: reduce) {
    .text-feature-three ul li,
    .text-feature-three .media-wrapper img {
        transition: none;
    }
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: high) {
    .text-feature-three ul li {
        border: 2px solid #000;
    }
    
    .text-feature-three ul li strong {
        color: #000;
    }
}

/* 印刷時の最適化 */
@media print {
    .text-feature-three {
        background: none;
        padding: 20px 0;
    }
    
    .text-feature-three ul li {
        border: 1px solid #000;
        margin-bottom: 8px;
        page-break-inside: avoid;
    }
}









/* =================================
   オプション加工セクション - プレミアムデザイン
   ================================= */

/* セクション全体のスタイル */
.block-feature-three {
    background: linear-gradient(180deg, #FAFBFD 0%, #FFF9FC 100%);
    position: relative;
    overflow: visible;
}

/* タイトルエリア */
.block-feature-three .title-one h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--tertiary-color);
    position: relative;
}

.emoji-rainbow {
    display: inline-block;
    font-size: 0.9em;
    margin-left: 10px;
    animation: rainbow-bounce 3s ease-in-out infinite;
}

@keyframes rainbow-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.subtitle-emoji {
    display: block;
    font-size: 0.8em;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 10px;
}

/* 共通カードスタイル */
[class*="option-card"] {
    background: #FFFFFF;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

[class*="option-card"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.12);
}

/* アクアトリートメントカード */
.aqua-card {
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FAFF 100%);
    border: 1px solid rgba(77, 192, 255, 0.1);
}

.option-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(77, 192, 255, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
}

.badge-emoji {
    font-size: 1.2em;
}

.badge-text {
    font-size: 0.85em;
    font-weight: 600;
    color: #0A7CFF;
}

.option-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 10px;
}

.option-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.option-title a:hover {
    color: var(--primary-color);
}

.option-subtitle {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    color: var(--text-medium);
    margin-top: 5px;
}

.option-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(77, 192, 255, 0.08);
    border-radius: 20px;
    font-size: 0.85em;
    color: #0A7CFF;
}

.feature-tag i {
    font-size: 0.9em;
}

.option-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.option-link:hover {
    gap: 12px;
    color: var(--accent-bright);
}

.arrow-icon {
    transition: transform 0.2s ease;
}

.option-link:hover .arrow-icon {
    transform: translateX(3px);
}

/* 水滴アニメーション */
.option-visual {
    position: absolute;
    top: 20px;
    left: 20px;
    pointer-events: none;
}

.water-drops {
    position: relative;
    width: 100px;
    height: 100px;
}

.drop {
    position: absolute;
    font-size: 1.5em;
    opacity: 0;
    animation: water-fall 3s ease-in-out infinite;
}

.drop-1 { top: 0; left: 20%; animation-delay: 0s; }
.drop-2 { top: 0; left: 50%; animation-delay: 1s; }
.drop-3 { top: 0; left: 80%; animation-delay: 2s; }

@keyframes water-fall {
    0% { transform: translateY(0); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
}

/* Wウォッシュカード */
.double-wash-card {
    display: flex;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid #E8EAED;
}

.option-image-wrapper {
    width: 200px;
    background: linear-gradient(135deg, #FFE7EE 0%, #FFDEE9 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-image-overlay {
    font-size: 4em;
    opacity: 0.3;
    animation: bubble-float 4s ease-in-out infinite;
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.option-text-wrapper {
    flex: 1;
    padding: 30px 40px;
}

.option-label {
    font-size: 0.85em;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.option-benefits {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: var(--text-medium);
}

.benefit-icon {
    font-size: 1.2em;
}

.option-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.option-cta:hover {
    background: var(--accent-bright);
    transform: translateX(3px);
}

.cta-icon {
    font-size: 1.2em;
    transition: transform 0.2s ease;
}

.option-cta:hover .cta-icon {
    transform: translateX(3px);
}

/* 撥水加工カード - 完全リデザイン */
.option-card-compact {
    padding: 35px 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F5FF 100%);
    border: 1px solid rgba(156, 79, 150, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

/* 水滴アニメーション背景 */
.water-drops-animation {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.water-drop {
    position: absolute;
    font-size: 1.5em;
    animation: rain-fall 4s linear infinite;
}

.water-drop.wd-1 { right: 20%; animation-delay: 0s; }
.water-drop.wd-2 { right: 50%; animation-delay: 1.3s; }
.water-drop.wd-3 { right: 80%; animation-delay: 2.6s; }

@keyframes rain-fall {
    0% { transform: translateY(-20px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(320px); opacity: 0; }
}

.card-content-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ヘッダーエリア */
.card-header-area {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.option-emoji-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(156, 79, 150, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(156, 79, 150, 0.1);
}

.option-header-text {
    flex: 1;
}

.option-label {
    font-size: 0.8em;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

.option-title-compact {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--tertiary-color);
    margin: 0;
    line-height: 1.2;
}

/* 機能リスト */
.feature-list-pretty {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item-pretty {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(156, 79, 150, 0.03);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.feature-item-pretty:hover {
    background: rgba(156, 79, 150, 0.06);
    transform: translateX(5px);
}

.feature-check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
}

/* ボタンスタイル */
.option-btn-pretty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-btn-pretty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.option-btn-pretty:hover::before {
    width: 300px;
    height: 300px;
}

.option-btn-pretty:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(156, 79, 150, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.option-btn-pretty:hover .btn-arrow {
    transform: translateX(3px);
}

/* クリスタルトーン - 豪華版リデザイン */
.option-card-horizontal.crystal-tone-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF0 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* 背景パターン */
.crystal-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.crystal-content-main {
    display: flex;
    min-height: 350px;
    position: relative;
}

/* 左側コンテンツ */
.crystal-left-content {
    flex: 1;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ヘッダー部分 */
.crystal-header-pretty {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.crystal-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.crystal-emoji {
    font-size: 2.2em;
    z-index: 1;
}

.shine-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: shine-pulse 2s ease-in-out infinite;
}

@keyframes shine-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.crystal-title-area {
    flex: 1;
}

.crystal-label {
    font-size: 0.85em;
    color: #FFA500;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.crystal-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--tertiary-color);
    margin: 0;
    position: relative;
}

.crystal-title a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.title-sparkle {
    font-size: 0.8em;
    animation: sparkle-bounce 2s ease-in-out infinite;
}

@keyframes sparkle-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(15deg); }
}

/* 説明文 */
.crystal-description {
    font-size: 1.15em;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 特徴グリッド */
.crystal-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.crystal-feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.crystal-feature-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon-wrap {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.feature-main-icon {
    font-size: 1.3em;
}

.feature-text-wrap strong {
    display: block;
    font-size: 0.95em;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text-wrap span {
    font-size: 0.8em;
    color: var(--text-medium);
}

/* CTAボタン */
.crystal-cta-area {
    margin-top: auto;
}

.crystal-premium-btn {
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.crystal-premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transition: left 0.5s ease;
    z-index: 0;
}

.crystal-premium-btn:hover::before {
    left: 0;
}

.crystal-premium-btn:hover .btn-inner {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 右側ビジュアル */
.crystal-right-visual {
    width: 350px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 3Dクリスタル */
.crystal-3d-wrapper {
    width: 150px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    animation: crystal-rotate-3d 10s linear infinite;
}

@keyframes crystal-rotate-3d {
    from { transform: rotateY(0deg) rotateX(10deg); }
    to { transform: rotateY(360deg) rotateX(10deg); }
}

.crystal-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.crystal-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    opacity: 0.8;
}

.crystal-face.front { transform: translateZ(75px); }
.crystal-face.back { transform: rotateY(180deg) translateZ(75px); }
.crystal-face.left { transform: rotateY(-90deg) translateZ(75px); }
.crystal-face.right { transform: rotateY(90deg) translateZ(75px); }

/* 軌道アニメーション */
.orbit-container {
    position: absolute;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-item {
    position: absolute;
    font-size: 1.5em;
    animation: orbit-motion 6s linear infinite;
}

.orbit-item.o1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-item.o2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.5s; }
.orbit-item.o3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.orbit-item.o4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 4.5s; }

@keyframes orbit-motion {
    0% { opacity: 0; transform: scale(0.5) translate(-50%, -50%); }
    20% { opacity: 1; transform: scale(1) translate(-50%, -50%); }
    80% { opacity: 1; transform: scale(1) translate(-50%, -50%); }
    100% { opacity: 0; transform: scale(0.5) translate(-50%, -50%); }
}

/* グロー効果 */
.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

/* セクションボタンの改良 */
.block-feature-three .btn-five {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    border: none;
    padding: 15px 30px;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2);
}

.block-feature-three .btn-five:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.3);
}

.block-feature-three .btn-five .text {
    color: white;
    font-weight: 600;
}

.block-feature-three .btn-five .icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* レスポンシブデザイン */
@media (max-width: 1199px) {
    .crystal-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .crystal-right-visual {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .double-wash-card {
        flex-direction: column;
    }
    
    .option-image-wrapper {
        width: 100%;
        height: 150px;
    }
    
    .option-text-wrapper {
        padding: 25px;
    }
    
    .option-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .crystal-content-main {
        flex-direction: column;
    }
    
    .crystal-right-visual {
        width: 100%;
        height: 250px;
        order: -1;
    }
    
    .crystal-left-content {
        padding: 35px 30px;
    }
    
    .crystal-3d-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .crystal-face {
        font-size: 2.5em;
    }
}

@media (max-width: 767px) {
    .aqua-card {
        padding: 25px;
    }
    
    .option-title {
        font-size: 1.4em;
    }
    
    .option-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 15px;
    }
    
    .option-features {
        flex-direction: column;
    }
    
    .feature-tag {
        width: fit-content;
    }
    
    /* 撥水加工モバイル対応 */
    .option-card-compact {
        min-height: auto;
        padding: 25px 20px;
    }
    
    .card-header-area {
        flex-direction: column;
        gap: 10px;
    }
    
    .option-emoji-circle {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }
    
    .feature-list-pretty {
        gap: 10px;
    }
    
    .feature-item-pretty {
        padding: 8px 12px;
        font-size: 0.9em;
    }
    
    /* クリスタルトーンモバイル対応 */
    .crystal-left-content {
        padding: 25px 20px;
    }
    
    .crystal-header-pretty {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .crystal-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .crystal-emoji {
        font-size: 1.8em;
    }
    
    .crystal-title {
        font-size: 1.8em;
    }
    
    .crystal-description {
        font-size: 1em;
    }
    
    .crystal-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .crystal-feature-card {
        padding: 12px;
    }
    
    .crystal-right-visual {
        height: 200px;
    }
    
    .crystal-3d-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .crystal-face {
        font-size: 2em;
    }
    
    .orbit-item {
        font-size: 1.2em;
    }
    
    .btn-inner {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}













/* =================================
   不入流しみ抜きセクション - 洗練されたプレミアムデザイン
   ================================= */

.irazu-technique-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FC 50%, #F8F5FF 100%);
    overflow: hidden;
}

/* 背景の微細なパターン */
.irazu-technique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(156, 79, 150, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* 左側コンテンツエリア */
.irazu-title-wrapper {
    margin-bottom: 35px;
    position: relative;
}

/* 伝統技術バッジ - 色を修正 */
.craft-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #9C4F96 0%, #B9529E 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(156, 79, 150, 0.3);
    animation: gentle-glow 3s ease-in-out infinite;
}

.badge-text {
    color: white !important; /* 白色に変更 */
}

@keyframes gentle-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(156, 79, 150, 0.3); }
    50% { box-shadow: 0 6px 20px rgba(156, 79, 150, 0.4); }
}

.badge-icon {
    font-size: 1.2em;
}

/* メインタイトル */
.irazu-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--tertiary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.furigana {
    display: inline-block;
    position: relative;
    font-size: 0.35em;
    font-weight: 400;
    color: var(--text-medium);
    vertical-align: super;
    margin-left: 10px;
    padding: 2px 8px;
    background: rgba(156, 79, 150, 0.05);
    border-radius: 10px;
}

.title-accent {
    display: block;
    font-size: 1.1em;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkle-icon {
    font-size: 0.7em;
    position: absolute;
    top: -10px;
    right: -30px;
    animation: sparkle-rotate 4s ease-in-out infinite;
}

@keyframes sparkle-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

/* タイトル下線装飾 */
.title-underline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.line-segment {
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.line-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-bright);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* 説明文 */
.irazu-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.highlight-text {
    color: var(--tertiary-color);
    font-weight: 600;
    position: relative;
    padding: 0 3px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 194, 214, 0.3);
    z-index: -1;
}

/* 技術特徴カード */
.technique-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(156, 79, 150, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(156, 79, 150, 0.1);
}

.feature-icon {
    font-size: 2em;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(156, 79, 150, 0.05);
    border-radius: 12px;
}

.feature-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95em;
    margin-bottom: 3px;
}

.feature-text span {
    font-size: 0.85em;
    color: var(--text-medium);
}

/* CTAボタン */
.irazu-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.irazu-primary-btn {
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.irazu-primary-btn .btn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.irazu-primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    transition: left 0.5s ease;
    z-index: 0;
    border-radius: 50px;
}

.irazu-primary-btn:hover::before {
    left: 0;
}

.irazu-primary-btn:hover .btn-inner {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(156, 79, 150, 0.3);
}

.btn-icon svg {
    transition: transform 0.3s ease;
}

.irazu-primary-btn:hover .btn-icon svg {
    transform: translateX(3px);
}

.irazu-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    color: var(--tertiary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.irazu-secondary-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 194, 214, 0.3);
}

.secondary-icon {
    font-size: 1.2em;
}

.arrow {
    transition: transform 0.3s ease;
}

.irazu-secondary-btn:hover .arrow {
    transform: translateX(3px);
}

/* 右側ビジュアルエリア - 完全リデザイン */
.irazu-visual-wrapper {
    position: relative;
    min-height: 600px;
    padding: 40px 20px;
}

/* 背景パターン */
.bg-pattern {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.pattern-1 {
    width: 300px;
    height: 300px;
    background: var(--tertiary-color);
    top: -50px;
    right: -50px;
}

.pattern-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: -30px;
    left: -30px;
}

/* メインビジュアル：職人技術の表現 */
.craftsman-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.technique-display {
    position: relative;
    width: 100%;
    max-width: 500px;
}

/* Before/Afterショーケース */
.before-after-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.showcase-item {
    text-align: center;
}

.fabric-sample {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F5F5F5 0%, #EEEEEE 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fabric-sample.clean {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 100%);
}

.stain-marks {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stain {
    font-size: 1.5em;
    opacity: 0.6;
}

.stain-1 { color: #8B4513; }
.stain-2 { color: #000080; }
.stain-3 { color: #DC143C; }

.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.showcase-label {
    font-size: 0.9em;
    color: var(--text-medium);
    font-weight: 600;
}

.process-arrow {
    color: var(--primary-color);
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* 精密さインジケーター */
.precision-indicator {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.magnifier {
    display: flex;
    align-items: center;
    gap: 8px;
}

.magnifier-icon {
    font-size: 1.3em;
}

.precision-text {
    font-size: 0.85em;
    color: var(--text-medium);
    font-weight: 500;
}

/* シミの種類グリッド - 位置を調整 */
.stain-types-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.stain-type-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    pointer-events: all;
    min-width: 160px;
}

.stain-type-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* カードの配置を調整（重ならないように） */
.card-1 {
    top: 10px;
    left: 0;
}

.card-2 {
    top: 10px;
    right: 0;
}

.card-3 {
    bottom: 80px;
    left: 0;
}

.card-4 {
    bottom: 80px;
    right: 0;
}

.stain-type-card .card-icon {
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    background: rgba(255, 194, 214, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stain-type-card .card-content h4 {
    font-size: 0.9em;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.stain-type-card .card-content p {
    font-size: 0.75em;
    color: var(--text-medium);
    margin: 0;
}

/* 技術レベルバッジ */
.skill-level-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(156, 79, 150, 0.3);
    z-index: 4;
}

.badge-content {
    text-align: center;
}

.level-text {
    display: block;
    color: white;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 5px;
}

.level-stars {
    display: flex;
    gap: 3px;
    font-size: 0.9em;
}

/* キラキラエフェクト */
.sparkle-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.sparkle {
    position: absolute;
    font-size: 1.2em;
    color: var(--primary-color);
    animation: sparkle-fade 3s ease-in-out infinite;
}

.s1 { top: 5%; right: 20%; animation-delay: 0s; }
.s2 { top: 30%; left: 10%; animation-delay: 0.75s; }
.s3 { bottom: 25%; right: 15%; animation-delay: 1.5s; }
.s4 { bottom: 5%; left: 30%; animation-delay: 2.25s; }

@keyframes sparkle-fade {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* レスポンシブデザイン */
@media (max-width: 1399px) {
    .stain-type-card {
        min-width: 150px;
        padding: 12px;
    }
    
    .stain-type-card .card-content h4 {
        font-size: 0.85em;
    }
}

@media (max-width: 1199px) {
    .irazu-visual-wrapper {
        min-height: 500px;
    }
    
    .before-after-showcase {
        padding: 30px 20px;
    }
    
    .fabric-sample {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 991px) {
    .irazu-technique-section {
        padding: 80px 0;
    }
    
    .irazu-visual-wrapper {
        min-height: auto;
        margin-top: 50px;
        padding: 30px 15px;
    }
    
    .technique-features {
        flex-direction: column;
    }
    
    .craftsman-visual {
        min-height: 250px;
    }
    
    .before-after-showcase {
        gap: 20px;
        padding: 25px 15px;
    }
    
    .stain-types-grid {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .stain-type-card {
        position: static;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .irazu-technique-section {
        padding: 60px 0;
    }
    
    .irazu-main-title {
        font-size: 2rem;
    }
    
    .furigana {
        font-size: 0.4em;
        vertical-align: baseline;
        display: block;
        margin: 5px 0;
    }
    
    .irazu-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .irazu-primary-btn,
    .irazu-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 1.5em;
        width: 40px;
        height: 40px;
    }
    
    .before-after-showcase {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .fabric-sample {
        width: 80px;
        height: 80px;
    }
    
    .precision-indicator {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

/* アニメーション無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}





/* =================================
   不入流しみ抜きセクション - モバイル完全修正版
   ================================= */

/* Before/Afterショーケース - z-index調整 */
.before-after-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2; /* 低めに設定 */
}

/* 技術ディスプレイ全体のz-index管理 */
.technique-display {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 1;
}

/* craftsman-visualのz-index設定 */
.craftsman-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

/* シミの種類グリッド - z-index調整 */
.stain-types-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3; /* 精密インジケーターより後ろ */
}

.stain-type-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    pointer-events: all;
    min-width: 160px;
    z-index: 3; /* 個別のカードにもz-index設定 */
}

.showcase-item {
    text-align: center;
    position: relative;
}

/* Before/Afterラベルをより目立たせる */
.showcase-label {
    font-size: 1.1em;
    color: var(--tertiary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    display: block;
    position: relative;
}

/* Beforeに赤いアクセント */
.showcase-item.before .showcase-label {
    color: #DC143C;
}

.showcase-item.before .showcase-label::before {
    content: '😟';
    display: block;
    font-size: 1.5em;
    margin-bottom: 5px;
}

/* Afterに青いアクセント */
.showcase-item.after .showcase-label {
    color: #0080FF;
}

.showcase-item.after .showcase-label::before {
    content: '😊';
    display: block;
    font-size: 1.5em;
    margin-bottom: 5px;
}

/* ファブリックサンプルの改良 */
.fabric-sample {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #F5F5F5 0%, #EEEEEE 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #E0E0E0;
}

.fabric-sample.clean {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%);
    border-color: #87CEEB;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.3);
}

/* シミマークをよりシンプルに - 単色塗りつぶし */
.stain-marks {
    position: absolute;
    inset: 0;
    background: #000080; /* stain-2の色で塗りつぶし */
    opacity: 0.8;
}

/* 削除 - シミの個別スタイルとアニメーション */
/* .stain要素は使用しないため削除 */

/* キラキラ効果の強化 */
.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.7) 50%, 
        transparent 70%);
    animation: shine 2s ease-in-out infinite;
}

/* プロセス矢印 */
.process-arrow {
    color: var(--primary-color);
    animation: arrow-bounce 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* 技術レベルバッジ - 位置修正 */
.skill-level-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(156, 79, 150, 0.3);
    z-index: 20; /* 最前面に配置 */
}

/* シミの種類グリッド - 配置改善 */
.stain-types-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5; /* バッジより後ろに配置 */
}

.stain-type-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    pointer-events: all;
    min-width: 160px;
    opacity: 0.95; /* 少し透明にして重なりを軽減 */
}

/* モバイル専用スタイル */
@media (max-width: 767px) {
    /* Before/Afterを縦並びに */
    .before-after-showcase {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }
    
    /* 矢印を下向きに変更 */
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    @keyframes arrow-bounce {
        0%, 100% { transform: rotate(90deg) translateX(0); }
        50% { transform: rotate(90deg) translateX(5px); }
    }
    
    /* ファブリックサンプルのサイズ調整 */
    .fabric-sample {
        width: 100px;
        height: 100px;
    }
    
    /* Before/Afterラベルの強調 */
    .showcase-label {
        font-size: 1em;
        margin-top: 10px;
        padding: 5px 15px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        display: inline-block;
    }
    
    .showcase-item.before .showcase-label {
        background: rgba(220, 20, 60, 0.1);
        border: 2px solid #DC143C;
    }
    
    .showcase-item.after .showcase-label {
        background: rgba(0, 128, 255, 0.1);
        border: 2px solid #0080FF;
    }
    
    /* シミの種類カードをグリッド表示に変更 */
    .stain-types-grid {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .stain-type-card {
        position: static;
        width: 100%;
        opacity: 1;
        margin: 0;
        padding: 12px;
    }
    
    /* 技術レベルバッジをBefore/Afterの下に配置 */
    .skill-level-badge {
        position: static;
        transform: none;
        margin: 30px auto 20px;
        display: inline-block;
        width: fit-content;
    }
    
    /* ビジュアルラッパーの調整 */
    .irazu-visual-wrapper {
        padding: 20px 10px;
        overflow: visible;
    }
    
    /* 技術ディスプレイの調整 */
    .technique-display {
        position: relative;
        padding-bottom: 20px;
    }
    
    /* 精密インジケーターの位置調整 */
    .precision-indicator {
        position: static;
        margin-top: 20px;
        margin-bottom: 20px;
        justify-content: center;
        background: linear-gradient(135deg, #F8F5FF 0%, #FFF9FC 100%);
        border: 1px solid rgba(156, 79, 150, 0.1);
    }
    
    /* スパークルエフェクトを控えめに */
    .sparkle-effects {
        display: none; /* モバイルでは非表示 */
    }
    
    /* カードアイコンサイズ調整 */
    .stain-type-card .card-icon {
        font-size: 1.3em;
        width: 35px;
        height: 35px;
    }
    
    .stain-type-card .card-content h4 {
        font-size: 0.85em;
    }
    
    .stain-type-card .card-content p {
        font-size: 0.7em;
    }
}

/* PC用のレイアウト最適化 - 精密インジケーターの位置調整 */
@media (min-width: 992px) {
    /* Before/Afterショーケースの位置調整 */
    .before-after-showcase {
        margin-top: 60px; /* 精密インジケーター用のスペース確保 */
    }
    
    /* カードの配置をより広げる */
    .card-1 {
        top: 0;
        left: -10%;
    }
    
    .card-2 {
        top: 0;
        right: -10%;
    }
    
    .card-3 {
        bottom: 100px;
        left: -10%;
    }
    
    .card-4 {
        bottom: 100px;
        right: -10%;
    }
    
    /* 精密インジケーターの位置を調整 */
    .precision-indicator {
        top: -50px;
        right: 50%;
        transform: translateX(50%);
    }
}

/* 大画面用の追加調整 */
@media (min-width: 1200px) {
    .irazu-visual-wrapper {
        padding: 40px 30px;
    }
    
    /* カードをさらに外側に配置 */
    .card-1, .card-3 {
        left: -0%;
    }
    
    .card-2, .card-4 {
        right: -15%;
    }
}

/* アクセシビリティ向上 */
@media (prefers-reduced-motion: reduce) {
    .stain,
    .shine-effect,
    .process-arrow,
    .sparkle {
        animation: none !important;
    }
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: high) {
    .fabric-sample {
        border-width: 4px;
    }
    
    .showcase-label {
        font-weight: 900;
        text-decoration: underline;
    }
    
    .stain-type-card {
        border: 2px solid #000;
    }
}








/* ワイシャツクリーニングセクション専用CSS */
.shirt-cleaning-premium {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FC 50%, #F8F5FF 100%);
    overflow: hidden;
}

/* 背景装飾 */
.section-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -50px;
}

/* プレミアムバッジ */
.premium-badge-wrapper {
    display: flex;
    align-items: center;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #9C4F96 0%, #B9529E 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(156, 79, 150, 0.3);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(156, 79, 150, 0.3); }
    50% { box-shadow: 0 6px 20px rgba(156, 79, 150, 0.4); }
}

.badge-icon {
    font-size: 1.3em;
}

/* タイトルエリア */
.premium-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--tertiary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.title-emoji {
    font-size: 0.7em;
    position: absolute;
    top: -10px;
    right: -30px;
    animation: sparkle-rotate 4s ease-in-out infinite;
}

.accent-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.deco-line {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.deco-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-bright);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* 説明文 */
.premium-description {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.premium-description .highlight {
    color: var(--tertiary-color);
    font-weight: 600;
    position: relative;
    padding: 0 3px;
}

.premium-description .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 194, 214, 0.3);
    z-index: -1;
}

/* 特徴カード */
.feature-cards-wrapper {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.12);
    border-color: rgba(255, 107, 157, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon.silver-ion {
    background: linear-gradient(135deg, #E3E3E3, #C0C0C0);
}

.card-icon.double-wash {
    background: linear-gradient(135deg, #87CEEB, #3fa8ff);
}

.card-icon.silk-finish {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
}

.card-icon.bleaching {
    background: linear-gradient(135deg, #F0F8FF, #B0E0E6);
}

.icon-emoji {
    font-size: 1.5em;
    z-index: 1;
}

.card-title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.card-desc {
    color: var(--text-medium);
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

/* カード内アニメーション */
.effect-indicator {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.effect-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-sequence 2s ease-in-out infinite;
}

.effect-dot:nth-child(2) { animation-delay: 0.2s; }
.effect-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-sequence {
    0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
    30% { opacity: 1; transform: scale(1.3); }
}

/* 泡アニメーション */
.wash-animation {
    position: absolute;
    bottom: 15px;
    right: 55px;
}

.bubble {
    position: absolute;
    color: #87CEEB;
    font-size: 1.2em;
    animation: bubble-rise 3s ease-in-out infinite;
}

.b1 { right: 0; animation-delay: 0s; }
.b2 { right: 10px; animation-delay: 1s; }
.b3 { right: 20px; animation-delay: 2s; }

@keyframes bubble-rise {
    0% { transform: translateY(0); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(-20px); opacity: 0; }
}

/* キラキラ効果 */
.shine-effect {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.6) 0%, transparent 70%);
    animation: shine-pulse 2s ease-in-out infinite;
}

@keyframes shine-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* プログレスバー */
.clean-progress {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 60px;
    height: 4px;
    background: #E0E0E0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFFFFF);
    animation: progress-fill 3s ease-in-out infinite;
}

@keyframes progress-fill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* 価格表示エリア */
.price-display-wrapper {
    position: relative;
}

.price-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.05) 0%, transparent 60%);
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.9em;
    color: var(--primary-color);
    font-weight: 600;
}

.value-emoji {
    font-size: 1.5em;
    animation: sparkle-bounce 2s ease-in-out infinite;
}

.price-content {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.price-main {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-right: 5px;
}

.price-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--tertiary-color);
    line-height: 1;
}

.price-suffix {
    font-size: 1.2em;
    color: var(--text-medium);
    margin-left: 5px;
}

.price-info {
    flex: 1;
}

.price-desc {
    font-size: 0.95em;
    color: var(--text-medium);
    margin: 0 0 10px;
}

.price-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
    font-size: 0.8em;
    color: var(--primary-color);
}

.feature-tag i {
    font-size: 0.9em;
}

.price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.price-cta:hover::before {
    left: 100%;
}

.price-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

/* ビジュアルエリア */
.visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.main-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

/* フローティング要素 */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 12px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-motion 6s ease-in-out infinite;
}

.item-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.item-2 {
    top: 40%;
    left: -10%;
    animation-delay: 2s;
}

.item-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 4s;
}

@keyframes float-motion {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.float-emoji {
    font-size: 1.5em;
}

.float-text {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--text-dark);
}

/* 品質保証バッジ */
.quality-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(156, 79, 150, 0.3);
    z-index: 3;
}

.badge-inner {
    text-align: center;
}

.badge-title {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 2px;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.badge-subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8em;
}

/* ビジュアル装飾 */
.visual-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
    animation: rotate-slow 10s linear infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation: rotate-slow 15s linear infinite reverse;
}

.sparkle-group {
    position: absolute;
    inset: 0;
}

.sparkle {
    position: absolute;
    font-size: 1.2em;
    color: var(--primary-color);
    animation: sparkle-fade 3s ease-in-out infinite;
}

.s1 { top: 15%; right: 10%; animation-delay: 0s; }
.s2 { top: 60%; left: 10%; animation-delay: 1s; }
.s3 { bottom: 15%; right: 20%; animation-delay: 2s; }

@keyframes sparkle-fade {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* レスポンシブデザイン */
@media (max-width: 1199px) {
    .visual-wrapper {
        min-height: 500px;
    }
    
    .float-item {
        padding: 10px 15px;
    }
    
    .float-text {
        font-size: 0.85em;
    }
}

@media (max-width: 991px) {
    .feature-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .visual-wrapper {
        min-height: 400px;
        margin-bottom: 40px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .quality-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .shirt-cleaning-premium {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .title-emoji {
        position: static;
        margin-left: 5px;
    }
    
    .feature-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .icon-emoji {
        font-size: 1.3em;
    }
    
    .price-card {
        padding: 25px 20px;
    }
    
    .price-number {
        font-size: 2.5em;
    }
    
    .visual-wrapper {
        min-height: 300px;
    }
    
    .main-visual {
        max-width: 60%;
    }
}

/* アニメーション無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}














/* ミユキクリーニング特徴セクション - プレミアムスタイル */
.miyuki-features-premium {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FC 40%, #FFF5F8 100%);
    overflow: hidden;
}

/* 背景装飾 */
.features-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.bubble-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
}

.bubble-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -100px;
}

.bubble-3 {
    width: 200px;
    height: 200px;
    background: var(--tertiary-color);
    top: 50%;
    left: 10%;
}

.floating-heart {
    position: absolute;
    top: 20%;
    right: 5%;
    font-size: 2em;
    opacity: 0.1;
    animation: float-heart 6s ease-in-out infinite;
}

@keyframes float-heart {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* セクションヘッダー */
.features-header-wrapper {
    position: relative;
    z-index: 2;
}

.features-badge-group {
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 194, 214, 0.1));
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.features-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--tertiary-color);
    line-height: 1.3;
    margin-bottom: 0;
}

.title-highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sparkle {
    font-size: 0.7em;
    display: inline-block;
    animation: sparkle-rotate 3s ease-in-out infinite;
}

@keyframes sparkle-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

/* 特徴カード（上部） */
.feature-card-premium {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-bright), var(--secondary-color));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature-card-premium:hover::before {
    transform: translateX(0);
}

.feature-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
}

/* アイコンエリア */
.feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(156, 79, 150, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.icon-circle.style-2 {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 194, 214, 0.1));
}

.icon-circle.style-3 {
    background: linear-gradient(135deg, rgba(255, 142, 127, 0.1), rgba(255, 194, 214, 0.1));
}

.icon-circle svg {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card-premium:hover .icon-circle {
    transform: scale(1.05) rotate(-5deg);
}

.icon-sparkle {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.2em;
    animation: sparkle-bounce 2s ease-in-out infinite;
}

@keyframes sparkle-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

/* コンテンツエリア */
.feature-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-accent.style-2 {
    background: linear-gradient(90deg, var(--accent-bright), transparent);
}

.feature-accent.style-3 {
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.feature-card-premium:hover .feature-accent {
    opacity: 1;
}

/* 使いやすさセクション */
.usability-section {
    position: relative;
    z-index: 2;
}

.usability-title-wrapper {
    position: relative;
}

.usability-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--tertiary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-emoji {
    font-size: 0.8em;
    display: inline-block;
    margin-left: 10px;
    animation: float-emoji 3s ease-in-out infinite;
}

@keyframes float-emoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.title-underline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-underline .line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.title-underline .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-bright);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

.title-underline .dot:nth-child(3) { animation-delay: 0.2s; }
.title-underline .dot:nth-child(4) { animation-delay: 0.4s; }

@keyframes dot-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* 使いやすさカード */
.usability-card {
    background: white;
    border-radius: 30px;
    padding: 40px 35px;
    min-height: 480px;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.usability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.usability-card:hover::before {
    opacity: 1;
}

.usability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(255, 107, 157, 0.15);
}

/* カードヘッダー */
.card-header-area {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-wrapper {
    position: relative;
}

.icon-bg {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.icon-wrapper svg {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.icon-wrapper.style-2 svg { color: var(--accent-bright); }
.icon-wrapper.style-3 svg { color: var(--secondary-color); }

.usability-card:hover .icon-wrapper svg {
    transform: scale(1.1) rotate(-5deg);
}

.icon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5em;
    animation: badge-float 2s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* カードコンテンツ */
.card-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--tertiary-color);
    text-align: center;
}

.card-description {
    color: var(--text-medium);
    line-height: 1.7;
    text-align: center;
    flex: 1;
}

/* 機能ピル */
.card-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 107, 157, 0.08);
    border-radius: 20px;
    font-size: 0.85em;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 107, 157, 0.15);
    transform: translateY(-2px);
}

.feature-pill.special {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    color: white;
}

/* カードリンク */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-bright));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.card-link:hover::before {
    left: 100%;
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translateX(3px);
}

/* 下部CTA */
.bottom-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
}

.cta-text {
    font-size: 1.2em;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cta-btn {
    display: inline-block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.premium-cta-btn:hover .btn-shine {
    left: 100%;
}

.premium-cta-btn:hover .btn-content {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(156, 79, 150, 0.3);
}

.btn-icon svg {
    transition: transform 0.3s ease;
}

.premium-cta-btn:hover .btn-icon svg {
    transform: translateX(5px);
}

/* 装飾要素 */
.decoration-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 5%;
    animation: rotate-slow 20s linear infinite;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 8%;
    animation: rotate-slow 25s linear infinite reverse;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sparkle-element {
    position: absolute;
    font-size: 1.5em;
    opacity: 0.6;
    animation: sparkle-fade 4s ease-in-out infinite;
}

.s1 { top: 15%; left: 15%; animation-delay: 0s; }
.s2 { top: 70%; right: 20%; animation-delay: 1.5s; }
.s3 { bottom: 25%; left: 50%; animation-delay: 3s; }

@keyframes sparkle-fade {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 0.6; transform: scale(1) rotate(180deg); }
}

/* レスポンシブデザイン */
@media (max-width: 1199px) {
    .usability-card {
        min-height: 450px;
        padding: 35px 30px;
    }
}

@media (max-width: 991px) {
    .miyuki-features-premium {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .features-main-title,
    .usability-title {
        font-size: 2.5rem;
    }
    
    .usability-card {
        min-height: auto;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .miyuki-features-premium {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .upper-wrapper {
        margin-bottom: 60px;
    }
    
    .features-header-wrapper {
        margin-bottom: 40px;
    }
    
    .features-main-title {
        font-size: 2rem;
    }
    
    .feature-card-premium {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle svg {
        width: 25px;
        height: 25px;
    }
    
    .feature-title {
        font-size: 1.1em;
    }
    
    .feature-desc {
        font-size: 0.9em;
    }
    
    .usability-title {
        font-size: 2rem;
    }
    
    .title-emoji {
        font-size: 0.7em;
    }
    
    .usability-card {
        padding: 30px 25px;
    }
    
    .card-title {
        font-size: 1.3em;
    }
    
    .card-description {
        font-size: 0.9em;
    }
    
    .bottom-cta-wrapper {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .cta-text {
        font-size: 1em;
    }
    
    .btn-content {
        padding: 14px 30px;
        font-size: 1em;
    }
    
    .decoration-elements {
        display: none;
    }
}

/* アニメーション無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: high) {
    .feature-card-premium,
    .usability-card {
        border: 2px solid var(--tertiary-color);
    }
    
    .feature-pill {
        border: 1px solid currentColor;
    }
}













        /* ヒーローバナー基本スタイル */
        .hero-banner-one {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            background: #FFFFFF;
        }

        /* テロップコンテナ */
        .telop-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            background: #FFFFFF;
        }

        /* テロップライン共通スタイル */
        .telop-stream {
            position: absolute;
            width: auto;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 80px;
            font-family: "Mochiy Pop P One", sans-serif;
            font-weight: 400;
            font-style: normal;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ピンクテキスト（通常）のストリーム */
        .stream-pink {
            color: #FFB6D9;
            text-shadow: 
                0 1px 2px rgba(255, 182, 217, 0.2),
                0 0 20px rgba(255, 182, 217, 0.1);
        }

        /* 白抜きテキスト（アウトライン）のストリーム */
        .stream-outline {
            color: transparent;
            -webkit-text-stroke: 2px #FFB6D9;
            text-stroke: 2px #FFB6D9;
            text-shadow: none;
        }

        /* 各ストリームの配置とアニメーション */
        .stream-1 {
            top: 5%;
            font-size: 64px;
            animation: streamFlowLeft 40s linear infinite;
        }

        .stream-2 {
            top: 15%;
            font-size: 74px;
            animation: streamFlowRight 45s linear infinite;
        }

        .stream-3 {
            top: 25%;
            font-size: 64px;
            animation: streamFlowLeft 42s linear infinite;
        }

        .stream-4 {
            top: 35%;
            font-size: 74px;
            animation: streamFlowRight 48s linear infinite;
        }

        .stream-5 {
            top: 45%;
            font-size: 64px;
            animation: streamFlowLeft 38s linear infinite;
        }

        .stream-6 {
            top: 55%;
            font-size: 74px;
            animation: streamFlowRight 44s linear infinite;
        }

        .stream-7 {
            top: 65%;
            font-size: 64px;
            animation: streamFlowLeft 41s linear infinite;
        }

        .stream-8 {
            top: 75%;
            font-size: 74px;
            animation: streamFlowRight 46s linear infinite;
        }

        .stream-9 {
            top: 85%;
            font-size: 64px;
            animation: streamFlowLeft 39s linear infinite;
        }

        .stream-10 {
            top: 93%;
            font-size: 74px;
            animation: streamFlowRight 43s linear infinite;
        }

        /* アニメーション */
        @keyframes streamFlowLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.333%); }
        }

        @keyframes streamFlowRight {
            0% { transform: translateX(-33.333%); }
            100% { transform: translateX(0); }
        }

        /* テロップテキスト */
        .telop-text {
            display: inline-block;
            white-space: nowrap;
            padding: 0 20px;
            transition: all 0.3s ease;
        }

        /* ホバー効果 */
        .stream-pink .telop-text:hover {
            transform: scale(1.05);
            color: #FF69B4;
            text-shadow: 
                0 2px 4px rgba(255, 105, 180, 0.3),
                0 0 30px rgba(255, 105, 180, 0.3);
        }

        .stream-outline .telop-text:hover {
            transform: scale(1.05);
            -webkit-text-stroke: 3px #FF69B4;
            text-stroke: 3px #FF69B4;
        }

        /* グラデーションオーバーレイ（薄いピンク） */
        .gradient-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(255, 240, 245, 0.7) 0%, 
                rgba(255, 218, 233, 0.5) 50%, 
                rgba(255, 245, 250, 0.7) 100%);
            z-index: 2;
            pointer-events: none;
        }

        /* メインコンテンツエリア */
        .hero-content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0;
        }

        /* コンテンツラッパー */
        .content-wrapper {
            background: rgba(255, 255, 255, 0.6);
            /*backdrop-filter: blur(20px) saturate(180%);*/
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 2px solid rgba(255, 182, 217, 0.3);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 
                0 20px 60px rgba(255, 182, 217, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        /* ロゴ */
        .logo-wrapper {
            display: inline-block;
            margin-bottom: 20px;
            position: relative;
        }

        .logo-wrapper::after {
            content: '';
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, rgba(255, 182, 217, 0.2) 0%, transparent 70%);
            filter: blur(20px);
            z-index: -1;
            animation: logoGlow 4s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .logo-wrapper img {
            display: block;
            width: 400px;
            height: auto;
            filter: brightness(1.05) contrast(1.05);
        }

        /* テキストコンテンツ */
        .hero-text {
            color: #333333;
        }

        .hero-description {
            font-size: 1.25em;
            line-height: 1.8;
            margin: 15px 0;
            font-weight: 500;
            color: #666666;
            letter-spacing: 0.02em;
        }

        /* ボタン */
        .hero-button {
            display: inline-flex;
            align-items: center;
            padding: 20px 45px;
            background: linear-gradient(135deg, #FFB6D9 0%, #FF69B4 100%);
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0.02em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 40px rgba(255, 182, 217, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .hero-button:hover::before {
            left: 100%;
        }

        .hero-button:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
            box-shadow: 
                0 15px 60px rgba(255, 105, 180, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .hero-button img {
            margin-left: 15px;
            filter: brightness(0) invert(1);
            transition: transform 0.3s ease;
        }

        .hero-button:hover img {
            transform: translateX(5px);
        }

        /* もっと見るボタン */
        .more-btn {
            position: absolute;
            bottom: 50px;
            left: 50px;
            width: 80px;
            height: 80px;
            background: rgba(255, 182, 217, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 182, 217, 0.3);
            color: #FF69B4;
            font-size: 28px;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 15;
        }

        .more-btn:hover {
            transform: rotate(90deg) scale(1.1);
            background: rgba(255, 105, 180, 0.3);
            border-color: rgba(255, 105, 180, 0.5);
            color: #FF1493;
        }

        /* レスポンシブ - タブレット */
        @media (max-width: 1199px) {
            .telop-stream {
                gap: 60px;
            }
            
            .stream-1, .stream-3, .stream-5, .stream-7, .stream-9 { font-size: 60px; }
            .stream-2, .stream-4, .stream-6, .stream-8, .stream-10 { font-size: 60px; }
        }

        @media (max-width: 991px) {
            .telop-stream { gap: 60px; }
            
            .stream-1 { animation-duration: 25s; }
            .stream-2 { animation-duration: 28s; }
            .stream-3 { animation-duration: 26s; }
            .stream-4 { animation-duration: 30s; }
            .stream-5 { animation-duration: 24s; }
            .stream-6 { animation-duration: 27s; }
            .stream-7 { animation-duration: 26s; }
            .stream-8 { animation-duration: 29s; }
            .stream-9 { animation-duration: 25s; }
            .stream-10 { animation-duration: 28s; }
            
            .content-wrapper {
                padding: 40px;
                border-radius: 20px;
            }
            
            .logo-wrapper img {
                width: 200px;
            }
            
            .hero-description {
                font-size: 1.1em;
            }
        }

        /* レスポンシブ - スマホ */
        @media (max-width: 767px) {
            .telop-stream {
                gap: 40px;
            }
            
            .stream-1, .stream-3, .stream-5, .stream-7, .stream-9 { font-size: 60px; }
            .stream-2, .stream-4, .stream-6, .stream-8, .stream-10 { font-size: 70px; }
            
            .stream-1 { animation-duration: 20s; }
            .stream-2 { animation-duration: 22s; }
            .stream-3 { animation-duration: 21s; }
            .stream-4 { animation-duration: 24s; }
            .stream-5 { animation-duration: 19s; }
            .stream-6 { animation-duration: 22s; }
            .stream-7 { animation-duration: 21s; }
            .stream-8 { animation-duration: 23s; }
            .stream-9 { animation-duration: 20s; }
            .stream-10 { animation-duration: 22s; }

            .stream-outline {
                -webkit-text-stroke: 1.5px #FFB6D9;
                text-stroke: 1.5px #FFB6D9;
            }
            
            .content-wrapper {
                padding: 30px 25px;
                margin: 0 15px;
            }
            
            .logo-wrapper img {
                width: 300px;
            }
            
            .hero-description {
                font-size: 1em;
            }
            
            .hero-button {
                font-size: 18px;
                padding: 16px 35px;
            }
            
            .more-btn {
                width: 60px;
                height: 60px;
                font-size: 22px;
                bottom: 30px;
                left: 30px;
            }
        }

        /* レスポンシブ - 小型スマホ */
        @media (max-width: 575px) {
            .telop-stream { gap: 30px; }
            
            .stream-1 { animation-duration: 15s; }
            .stream-2 { animation-duration: 17s; }
            .stream-3 { animation-duration: 16s; }
            .stream-4 { animation-duration: 18s; }
            .stream-5 { animation-duration: 14s; }
            .stream-6 { animation-duration: 17s; }
            .stream-7 { animation-duration: 16s; }
            .stream-8 { animation-duration: 18s; }
            .stream-9 { animation-duration: 15s; }
            .stream-10 { animation-duration: 17s; }
        }

        /* 横向き表示の場合の調整 */
        @media (max-width: 767px) and (orientation: landscape) {
            .stream-1 { animation-duration: 18s; }
            .stream-2 { animation-duration: 20s; }
            .stream-3 { animation-duration: 19s; }
            .stream-4 { animation-duration: 22s; }
            .stream-5 { animation-duration: 17s; }
            .stream-6 { animation-duration: 20s; }
            .stream-7 { animation-duration: 19s; }
            .stream-8 { animation-duration: 21s; }
            .stream-9 { animation-duration: 18s; }
            .stream-10 { animation-duration: 20s; }
        }

        /* コンテナ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* アニメーション無効化（アクセシビリティ） */
        @media (prefers-reduced-motion: reduce) {
            .telop-stream {
                animation: none !important;
            }
            
            * {
                transition: none !important;
            }
        }





/* ベースカードスタイル */
.feature-card-premium {
    background: white;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 194, 214, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

/* 背景グラデーション */
.card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFC2D6 100%);
    transition: opacity 0.3s ease;
}

.feature-card-premium:hover .card-bg-gradient {
    opacity: 0.05;
}

/* アイコンスタイル */
.icon-wrapper {
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 194, 214, 0.1));
    border-radius: 24px;
    transition: all 0.3s ease;
}

.icon-circle.style-2 {
    background: linear-gradient(135deg, rgba(156, 79, 150, 0.1), rgba(255, 107, 157, 0.1));
}

.icon-circle.style-3 {
    background: linear-gradient(135deg, rgba(255, 142, 127, 0.1), rgba(255, 194, 214, 0.1));
}

.icon-circle.style-4 {
    background: linear-gradient(135deg, rgba(255, 194, 214, 0.1), rgba(255, 235, 238, 0.1));
}

.icon-circle.special {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.feature-card-premium:hover .icon-circle {
    transform: rotate(-10deg) scale(1.05);
}

.icon-circle svg {
    color: #FF6B9D;
}

.icon-sparkle {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    animation: sparkle 2s ease-in-out infinite;
}

.icon-sparkle.large {
    font-size: 32px;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

/* タイトル・テキスト */
.feature-title {
    font-size: 24px;
    color: var(--tertiary-color);
    line-height: 1.4;
}

.text-gradient {
    background: linear-gradient(135deg, #FF6B9D, #FF8E7F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* ハイライトバッジ */
.highlight-badge {
    display: inline-block;
    background: rgba(255, 107, 157, 0.1);
    color: #FF6B9D;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* エコバッジ */
.eco-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.eco-badge {
    background: linear-gradient(135deg, rgba(156, 79, 150, 0.1), rgba(255, 194, 214, 0.1));
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #9C4F96;
}

/* 人気リボン */
.featured {
    border: 2px solid rgba(255, 107, 157, 0.2);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #FF6B9D, #FF1493);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(255, 107, 157, 0.3);
}

/* コースタグ */
.course-tags {
    margin-top: 20px;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-tag {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-tag.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.course-tag.deluxe {
    background: linear-gradient(135deg, #9C4F96, #B9529E);
    color: white;
}

.course-tag.stylish {
    background: linear-gradient(135deg, #FF6B9D, #FF8E7F);
    color: white;
}

.course-tag.standard {
    background: rgba(156, 79, 150, 0.1);
    color: #9C4F96;
}

.course-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* アイテムグリッド */
.item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.item-tag {
    background: rgba(255, 194, 214, 0.1);
    color: #B9529E;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.item-tag.special {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 194, 214, 0.1));
    color: #FF6B9D;
}

.item-tag.unique {
    background: linear-gradient(135deg, rgba(255, 142, 127, 0.1), rgba(255, 194, 214, 0.1));
    color: #FF8E7F;
}

.item-tag:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #FF6B9D, #FF8E7F);
    color: white;
}

/* 特別カード */
.special-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9FC 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 50px;
}

.special-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 80%, #FFD700 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #FF6B9D 0%, transparent 50%);
}

/* オプションカテゴリー */
.option-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.option-category:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-title i {
    color: #FF6B9D;
}

/* オプションリスト */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 194, 214, 0.08);
    border-radius: 25px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: linear-gradient(135deg, #FF6B9D, #FF8E7F);
    color: white;
    transform: translateX(5px);
}

.option-item.aqua:hover {
    background: linear-gradient(135deg, #4DC0FF, #0080FF);
}

.option-item.premium:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.option-item.vip:hover {
    background: linear-gradient(135deg, #9C4F96, #B9529E);
}

.option-item.eco:hover {
    background: linear-gradient(135deg, #10B981, #059669);
}

.option-item.line:hover {
    background: linear-gradient(135deg, #00C300, #00B300);
}

.option-icon {
    font-size: 16px;
}

/* プレミアムCTA */
.premium-cta-wrapper {
    margin-top: 30px;
}

.premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(156, 79, 150, 0.3);
}

.premium-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(156, 79, 150, 0.4);
    color: white;
}

.cta-icon {
    transition: transform 0.3s ease;
}

.premium-cta:hover .cta-icon {
    transform: translateX(5px);
}

/* 装飾要素 */
.feature-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.deco-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #FF6B9D, #FF8E7F);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.dot-1 {
    right: 0;
    animation-delay: 0s;
}

.dot-2 {
    right: 15px;
    bottom: 15px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* レスポンシブ */
@media (max-width: 991px) {
    .item-grid {
        grid-template-columns: 1fr;
    }
    
    .special-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .feature-card-premium {
        padding: 25px;
        margin-bottom: 20px !important;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .option-category {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .category-title {
        font-size: 16px;
    }
    
    .premium-cta {
        padding: 12px 25px;
        font-size: 14px;
    }
}