@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* ---------- 共通設定 ---------- */
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  container-type: inline-size;
}

.inner {
  width: 1160px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .inner {
    width: 1112px;
    padding-inline: 16px;
  }
}

.pc-only {
  display: block !important;
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

.section-title {
  -webkit-padding-after: 25px;
          padding-block-end: 25px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .section-title {
    -webkit-padding-after: 20px;
            padding-block-end: 20px;
  }
}
.section-title::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  left: 50%;
  bottom: 0;
  translate: -50%;
  background-color: #159741;
}

.section-title__ja {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #159741;
}
@media (max-width: 767px) {
  .section-title__ja {
    font-size: 14px;
  }
}

.section-title__en {
  display: block;
  -webkit-margin-before: 21px;
          margin-block-start: 21px;
  font-family: "reross-quadratic", sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .section-title__en {
    -webkit-margin-before: 12px;
            margin-block-start: 12px;
    font-size: 32px;
  }
}

.section-title--menu .section-title__ja {
  color: #fff;
}
.section-title--menu .section-title__en {
  color: #fff;
}
.section-title--menu::after {
  background-color: #fff;
}

.header__list a,
.footer__list a {
  position: relative;
}
.header__list a::after,
.footer__list a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 1px;
  left: 0;
  background-color: #159741;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__list a:hover::after,
.footer__list a:hover::after {
    transform: scale(1, 1);
  }
}

@media screen and (min-width: 768px) {
  .animated__clipView--left {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    transition: -webkit-clip-path 0.8s ease;
    transition: clip-path 0.8s ease;
    transition: clip-path 0.8s ease, -webkit-clip-path 0.8s ease;
  }
  .animated__clipView--left.js-show {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  .animated__clipView--right {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    transition: -webkit-clip-path 0.8s ease;
    transition: clip-path 0.8s ease;
    transition: clip-path 0.8s ease, -webkit-clip-path 0.8s ease;
  }
  .animated__clipView--right.js-show {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

@media (max-width: 767px) {
  .animated__fadeIn-sp {
    opacity: 0;
    translate: 0 40px;
    transition: opacity 0.5s ease, translate 0.5s ease;
  }
  .animated__fadeIn-sp.js-show {
    opacity: 1;
    translate: 0 0;
  }
}
/* ---------- ヘッダー ---------- */
.header {
  width: 100%;
  background-color: #2F2F2F;
  padding-block: 20px 12px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    padding-block: 0px;
  }
}

.header__inner {
  max-width: 1500px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-inline: 31px 71px;
}
@media (max-width: 767px) {
  .header__inner {
    padding-inline: 16px;
  }
}

.header__logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .header__logo {
    width: 55px;
    height: auto;
    aspect-ratio: 55/29;
  }
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.7;
  }
}
.header__logo svg {
  width: 100%;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .header__list {
    gap: 20px;
  }
}

.header__list a {
  font-family: "reross-quadratic", sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #fff;
  padding-block: 6px;
}
@media (max-width: 767px) {
  .header__list a {
    font-size: 14px;
  }
}

/* ---------- ファーストビュー ---------- */
.fv {
  background-color: #2F2F2F;
  position: relative;
}

.fv__text-wrap {
  position: absolute;
  top: 50%;
  left: 12.3611111111vw;
  translate: 0 -50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .fv__text-wrap {
    left: 5.0666666667vw;
  }
}

.fv__titel {
  font-family: "reross-quadratic", sans-serif;
  font-size: 6.9444444444vw;
  color: #fff;
}
@media (max-width: 767px) {
  .fv__titel {
    font-size: 9.6vw;
  }
}

.fv__titel-row {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fv__title--green {
  color: #159741;
}

.fv__title-sub {
  -webkit-margin-before: 52px;
          margin-block-start: 52px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2222222222vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 767px) {
  .fv__title-sub {
    -webkit-margin-before: 22px;
            margin-block-start: 22px;
    font-size: 3.7333333333vw;
  }
}

.fv__title-sub p:first-child {
  margin-left: 1.3888888889vw;
}
.fv__title-sub p:last-child {
  -webkit-margin-before: 2.0138888889vw;
          margin-block-start: 2.0138888889vw;
  background-color: #159741;
  padding: 9px 21px 22px 0;
}
@media (max-width: 767px) {
  .fv__title-sub p:last-child {
    -webkit-margin-before: 3.4vw;
            margin-block-start: 3.4vw;
    -webkit-padding-before: 1.0666666667vw;
            padding-block-start: 1.0666666667vw;
    padding-right: 2.1333333333vw;
    -webkit-padding-after: 2.6666666667vw;
            padding-block-end: 2.6666666667vw;
  }
}

.fv__img-wrap {
  width: 75vw;
  margin-left: auto;
  position: relative;
}
@media (max-width: 767px) {
  .fv__img-wrap {
    width: 82vw;
  }
}
.fv__img-wrap img {
  width: 100%;
}

.js-fvAnime-img {
  -webkit-animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1);
          animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1);
}

@-webkit-keyframes img-wrap {
  0% {
    clip-path: circle(0 at 50% 50%);
    -webkit-clip-path: circle(0 at 50% 50%);
  }
  100% {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
}

@keyframes img-wrap {
  0% {
    clip-path: circle(0 at 50% 50%);
    -webkit-clip-path: circle(0 at 50% 50%);
  }
  100% {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
}
.js-fvAnime-text1 {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.6s ease;
  transition: clip-path 0.6s ease;
  transition: clip-path 0.6s ease, -webkit-clip-path 0.6s ease;
}
.js-fvAnime-text1.js-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.js-fvAnime-text2 {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
}
.js-fvAnime-text2.js-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* ---------- 導入テキスト ---------- */
.introduction {
  background-color: #2F2F2F;
  -webkit-padding-before: clamp(2.875rem, 0.5469798658rem + 9.932885906vw, 7.5rem);
          padding-block-start: clamp(2.875rem, 0.5469798658rem + 9.932885906vw, 7.5rem);
  -webkit-padding-after: clamp(4rem, 2.4899328859rem + 6.4429530201vw, 7rem);
          padding-block-end: clamp(4rem, 2.4899328859rem + 6.4429530201vw, 7rem);
  overflow: hidden;
  position: relative;
}

.introduction__title {
  font-weight: 700;
  font-size: 30px;
  font-size: clamp(1.25rem, 0.9354026846rem + 1.3422818792vw, 1.875rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.introduction__text-wrap {
  -webkit-margin-before: clamp(1.5rem, 0.744966443rem + 3.2214765101vw, 3rem);
          margin-block-start: clamp(1.5rem, 0.744966443rem + 3.2214765101vw, 3rem);
  max-width: 547px;
  margin-inline: auto;
  padding-inline: 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .introduction__text-wrap {
    gap: 23px;
  }
}

.introduction__text {
  font-weight: 400;
  font-size: 18px;
  font-size: clamp(1rem, 0.9370805369rem + 0.2684563758vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}

.introduction__bg-garden-salad {
  position: absolute;
  left: calc(50% + 102px);
  bottom: -33px;
  translate: -50%;
  font-family: "reross-quadratic", sans-serif;
  font-size: 280px;
  color: #676767;
  white-space: nowrap;
  opacity: 0.3;
  z-index: 0;
}
@media screen and (max-width: 1439px) {
  .introduction__bg-garden-salad {
    bottom: -6.1111111111%;
    font-size: 19.4444444444vw;
  }
}
@media (max-width: 767px) {
  .introduction__bg-garden-salad {
    left: initial;
    translate: none;
    font-size: 29.3333333333vw;
    text-align: right;
    letter-spacing: 0.03em;
    bottom: -2.1%;
    line-height: 0.8;
  }
}

/* ---------- about ---------- */
.about {
  -webkit-padding-before: clamp(4rem, 2.3rem + 8.5vw, 8.25rem);
          padding-block-start: clamp(4rem, 2.3rem + 8.5vw, 8.25rem);
  -webkit-padding-after: clamp(3.625rem, 1.325rem + 11.5vw, 9.375rem);
          padding-block-end: clamp(3.625rem, 1.325rem + 11.5vw, 9.375rem);
  background-color: #F2F2F2;
}

.about__items {
  -webkit-margin-before: clamp(3.375rem, 2.5570469799rem + 3.4899328859vw, 5rem);
          margin-block-start: clamp(3.375rem, 2.5570469799rem + 3.4899328859vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 767px) {
  .about__items {
    gap: 56px;
    gap: clamp(3.5rem, 2.6629464286rem + 3.5714285714vw, 4.375rem);
  }
}

.about__item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 767px) {
  .about__item {
    flex-direction: column;
    gap: 32px;
  }
}
.about__item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .about__item:nth-child(odd) {
    flex-direction: column;
  }
}

.about__item:nth-child(1) .about__item-textWrap::before {
  content: "01";
}
.about__item:nth-child(2) .about__item-textWrap::before {
  content: "02";
}
.about__item:nth-child(3) .about__item-textWrap::before {
  content: "03";
}
.about__item:nth-child(4) .about__item-textWrap::before {
  content: "04";
}
.about__item:nth-child(5) .about__item-textWrap::before {
  content: "05";
}

.about__item-textWrap {
  width: 52.1296296296%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .about__item-textWrap {
    width: 100%;
    -webkit-padding-start: 5px;
            padding-inline-start: 5px;
    -webkit-padding-end: 4px;
            padding-inline-end: 4px;
  }
}
.about__item-textWrap::before {
  position: absolute;
  top: 50%;
  right: -8px;
  translate: 0 -50%;
  font-family: "reross-quadratic", sans-serif;
  font-size: clamp(11.25rem, 7.8523489933rem + 14.4966442953vw, 18rem);
  color: #fff;
  opacity: 0.8;
  z-index: 0;
}
@media (max-width: 767px) {
  .about__item-textWrap::before {
    top: initial;
    bottom: -42px;
    translate: 0 0;
  }
}

.about__item-title {
  -webkit-margin-before: clamp(0.25rem, -0.5681818182rem + 1.7045454545vw, 0.625rem);
          margin-block-start: clamp(0.25rem, -0.5681818182rem + 1.7045454545vw, 0.625rem);
  font-size: clamp(1.4375rem, 0.4829545455rem + 1.9886363636vw, 1.875rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.about__item-title--green {
  color: #159741;
}

.about__item-text {
  -webkit-margin-before: clamp(0.9375rem, -1.2443181818rem + 4.5454545455vw, 1.9375rem);
          margin-block-start: clamp(0.9375rem, -1.2443181818rem + 4.5454545455vw, 1.9375rem);
  font-weight: 400;
  font-size: clamp(1rem, 0.7272727273rem + 0.5681818182vw, 1.125rem);
  text-align: justify;
  line-height: 1.5;
  letter-spacing: 0.03em;
  -webkit-padding-end: 28.9520426288%;
          padding-inline-end: 28.9520426288%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .about__item-text {
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}

.about__item-imgWrap {
  width: 41.6666666667%;
}
@media (max-width: 767px) {
  .about__item-imgWrap {
    width: 100%;
  }
}
.about__item-imgWrap img {
  width: 100%;
}

/* ---------- パララックス ---------- */
.parallax-section {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/450;
  overflow: hidden;
}
@media (max-width: 767px) {
  .parallax-section {
    aspect-ratio: 375/250;
  }
}
.parallax-section img {
  width: 100%;
  height: calc(100% + 300px);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------- メニュー ---------- */
.menu {
  background-color: #2F2F2F;
  padding: clamp(1rem, -3rem + 8.3333333333vw, 4.5rem);
}
@media (max-width: 767px) {
  .menu {
    padding-block: 24px;
  }
}

.menu__inner {
  width: 1296px;
  max-width: 100%;
  margin-inline: auto;
  border: 2px solid #fff;
  -webkit-padding-before: clamp(2rem, 0.7890204521rem + 5.166846071vw, 5rem);
          padding-block-start: clamp(2rem, 0.7890204521rem + 5.166846071vw, 5rem);
  -webkit-padding-after: clamp(2rem, 0.3349031216rem + 7.1044133477vw, 6.125rem);
          padding-block-end: clamp(2rem, 0.3349031216rem + 7.1044133477vw, 6.125rem);
  padding-inline: clamp(1.375rem, -4.6964285714rem + 12.6488095238vw, 6.6875rem);
}
@media (max-width: 767px) {
  .menu__inner {
    border: 1px solid #fff;
  }
}

.menu__text-nutrient {
  -webkit-margin-before: clamp(2.5rem, 2.7018299247rem - 0.8611410118vw, 2rem);
          margin-block-start: clamp(2.5rem, 2.7018299247rem - 0.8611410118vw, 2rem);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .menu__text-nutrient {
    -webkit-margin-before: 53px;
            margin-block-start: 53px;
    font-size: 16px;
  }
}

.menu__items {
  -webkit-margin-before: 65px;
          margin-block-start: 65px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 32px;
}
@media (max-width: 767px) {
  .menu__items {
    display: flex;
    flex-direction: column;
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
    gap: 48px;
  }
}

.menu__item {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .menu__item {
    flex-direction: column;
  }
}
.menu__item:nth-child(1) {
  grid-area: 1/1/2/3;
  -webkit-margin-after: clamp(0rem, -1.9285714286rem + 4.0178571429vw, 1.6875rem);
          margin-block-end: clamp(0rem, -1.9285714286rem + 4.0178571429vw, 1.6875rem);
  -webkit-padding-start: clamp(0rem, -4.2857142857rem + 8.9285714286vw, 3.75rem);
          padding-inline-start: clamp(0rem, -4.2857142857rem + 8.9285714286vw, 3.75rem);
  -webkit-padding-end: clamp(0rem, -4.8571428571rem + 10.119047619vw, 4.25rem);
          padding-inline-end: clamp(0rem, -4.8571428571rem + 10.119047619vw, 4.25rem);
}
.menu__item:nth-child(1) .menu__item-imgWrap {
  width: 48%;
}
@media (max-width: 767px) {
  .menu__item:nth-child(1) .menu__item-imgWrap {
    width: 107%;
  }
}
.menu__item:nth-child(1) .menu__item-card {
  -webkit-margin-start: -95px;
          margin-inline-start: -95px;
}
@media (max-width: 767px) {
  .menu__item:nth-child(1) .menu__item-card {
    -webkit-margin-before: -39px;
            margin-block-start: -39px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    width: 100%;
  }
}
.menu__item:nth-child(1) .menu__item-title {
  -webkit-margin-before: 70px;
          margin-block-start: 70px;
}
@media (max-width: 767px) {
  .menu__item:nth-child(1) .menu__item-title {
    -webkit-margin-before: 79px;
            margin-block-start: 79px;
  }
}
.menu__item:nth-child(1) .menu__item-nutrient {
  gap: 18px;
}
@media (max-width: 767px) {
  .menu__item:nth-child(1) .menu__item-nutrient {
    gap: 8px;
  }
}
.menu__item:nth-child(2) {
  grid-area: 2/1/3/2;
}
.menu__item:nth-child(3) {
  grid-area: 2/2/3/3;
}
.menu__item:not(:first-child) {
  flex-direction: column;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.menu__item:not(:first-child) .menu__item-imgWrap {
  padding-inline: 31px 67px;
}
@media (max-width: 767px) {
  .menu__item:not(:first-child) .menu__item-imgWrap {
    padding-inline: 0;
  }
}
.menu__item:not(:first-child) .menu__item-card {
  -webkit-margin-before: -91px;
          margin-block-start: -91px;
}
@media (max-width: 767px) {
  .menu__item:not(:first-child) .menu__item-card {
    -webkit-margin-before: -48px;
            margin-block-start: -48px;
  }
}
.menu__item:not(:first-child) .menu__item-nutrient {
  gap: 11px;
}
@media (max-width: 767px) {
  .menu__item:not(:first-child) .menu__item-nutrient {
    gap: 8px;
  }
}

.menu__item-imgWrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.menu__item-card {
  background-color: #F2F2F2;
  padding: clamp(0.625rem, 0.5493137783rem + 0.3229278794vw, 0.8125rem);
  text-align: center;
  flex-grow: 1;
  position: relative;
  z-index: 0;
}

.menu__item-card-line {
  border: 1px solid #333;
  padding-block: clamp(2.125rem, 2.2350352113rem - 0.4694835681vw, 1.8125rem);
  padding-inline: 4px;
}

.menu__item-title {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.3486275565rem + 0.6458557589vw, 1.875rem);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .menu__item-title {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

.menu__item-price {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
}
.menu__item-price--yen {
  font-family: "reross-quadratic", sans-serif;
  font-size: clamp(1.125rem, 0.9736275565rem + 0.6458557589vw, 1.5rem);
  letter-spacing: 0.1em;
}
.menu__item-price--number {
  -webkit-margin-start: 6px;
          margin-inline-start: 6px;
  font-family: "reross-quadratic", sans-serif;
  font-size: clamp(1.875rem, 1.6227125942rem + 1.0764262648vw, 2.5rem);
  letter-spacing: 0.1em;
}
.menu__item-price--tax {
  -webkit-margin-start: -8px;
          margin-inline-start: -8px;
  font-size: clamp(0.75rem, 0.5986275565rem + 0.6458557589vw, 1.125rem);
  letter-spacing: 0.1em;
}

.menu__item-nutrient {
  -webkit-margin-before: clamp(1.375rem, 0.6607142857rem + 1.4880952381vw, 2rem);
          margin-block-start: clamp(1.375rem, 0.6607142857rem + 1.4880952381vw, 2rem);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.1607142857rem + 1.4880952381vw, 1.5rem);
  letter-spacing: 0.03em;
  display: flex;
  justify-content: center;
}

.menu__item-card-tag {
  background-color: #159741;
  width: 251px;
  padding-block: 13px 18px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
}
@media (max-width: 767px) {
  .menu__item-card-tag {
    width: 211px;
    padding-block: 38px 20px;
  }
}

.menu__item-card-tag--sub {
  font-family: "Satisfy", cursive;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .menu__item-card-tag--sub {
    font-size: 12px;
  }
}

.menu__item-card-tag--main {
  -webkit-margin-before: 9px;
          margin-block-start: 9px;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .menu__item-card-tag--main {
    font-size: 18px;
  }
}

.menu__instagram {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  padding: 13px;
  padding: clamp(0.625rem, 0.5589788732rem + 0.2816901408vw, 0.8125rem);
  background-color: #F2F2F2;
  position: relative;
}
@media (max-width: 767px) {
  .menu__instagram {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
}

.menu__instagram-line {
  border: 1px solid #333;
  padding: 87px 46px 23px 32px;
}
@media (max-width: 767px) {
  .menu__instagram-line {
    padding: 63px 10px 24px;
  }
}

.menu__instagram-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .menu__instagram-text {
    padding-inline: 12px;
    font-size: 16px;
  }
}
.menu__instagram-text--line {
  position: relative;
}
.menu__instagram-text--line::before, .menu__instagram-text--line::after {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 36px;
  background-color: #333;
}
@media (max-width: 767px) {
  .menu__instagram-text--line::before, .menu__instagram-text--line::after {
    content: none;
  }
}
.menu__instagram-text--line::before {
  right: calc(100% + 16px);
  rotate: -36deg;
}
.menu__instagram-text--line::after {
  left: calc(100% + 16px);
  rotate: 36deg;
}
.menu__instagram-text--sp {
  display: none;
}
@media (max-width: 767px) {
  .menu__instagram-text--sp {
    display: inline-block;
  }
}
.menu__instagram-text--id {
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  -webkit-padding-start: 14px;
          padding-inline-start: 14px;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .menu__instagram-text--id {
    -webkit-margin-before: 9px;
            margin-block-start: 9px;
  }
}

.menu__instagram-imgScroll {
  -webkit-margin-before: 31px;
          margin-block-start: 31px;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .menu__instagram-imgScroll {
    -webkit-margin-before: 37px;
            margin-block-start: 37px;
  }
}

.menu__instagram-imgWrap {
  width: 972px;
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .menu__instagram-imgWrap {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.menu__instagram-img {
  width: 231px;
}
.menu__instagram-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .menu__instagram-img {
    width: auto;
  }
}

.menu__instagram-buttonWrap {
  -webkit-margin-before: clamp(1.625rem, 1.625rem + 0vw, 1.625rem);
          margin-block-start: clamp(1.625rem, 1.625rem + 0vw, 1.625rem);
  text-align: center;
}

.menu__instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #333;
  border: 1px solid #333;
  background-color: #F2F2F2;
  padding-block: 17px 20px;
  padding-inline: 58px 32px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .menu__instagram-button {
    padding-inline: 35px 14px;
  }
}
@media screen and (max-width: 374px) {
  .menu__instagram-button {
    gap: 14px;
    padding-inline: 14px 10px;
    font-size: 13px;
  }
}
@media (any-hover: hover) {
  .menu__instagram-button:hover {
    background-color: #333;
    color: #fff;
  }
  .menu__instagram-button:hover svg path {
    fill: #fff;
  }
}

.menu__instagram-tag {
  background-color: #159741;
  width: 360px;
  padding-block: 19px 23px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
}
@media (max-width: 767px) {
  .menu__instagram-tag {
    width: 185px;
    padding-block: 10px 11px;
  }
}

.menu__instagram-tag--text {
  font-family: "reross-quadratic", sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 767px) {
  .menu__instagram-tag--text {
    font-size: 24px;
  }
}

/* ---------- 店舗情報 ---------- */
.shop {
  -webkit-padding-before: clamp(4.125rem, 2.2632978723rem + 7.9432624113vw, 7.625rem);
          padding-block-start: clamp(4.125rem, 2.2632978723rem + 7.9432624113vw, 7.625rem);
  -webkit-padding-after: clamp(4rem, 2.204787234rem + 7.6595744681vw, 7.375rem);
          padding-block-end: clamp(4rem, 2.204787234rem + 7.6595744681vw, 7.375rem);
  background-color: #F2F2F2;
}

.shop__inner {
  width: min(1346px, 100%);
  margin-inline: auto;
  padding-inline: 100px;
}
@media (max-width: 767px) {
  .shop__inner {
    padding-inline: 16px;
  }
}

.shop__map {
  -webkit-margin-before: clamp(3.5rem, 2.7021276596rem + 3.4042553191vw, 5rem);
          margin-block-start: clamp(3.5rem, 2.7021276596rem + 3.4042553191vw, 5rem);
  width: 100cqi;
  -webkit-margin-start: calc(50% - 50cqi);
          margin-inline-start: calc(50% - 50cqi);
}
.shop__map img {
  width: 100%;
}

.shop__info {
  -webkit-margin-before: clamp(3.5rem, 2.6356382979rem + 3.6879432624vw, 5.125rem);
          margin-block-start: clamp(3.5rem, 2.6356382979rem + 3.6879432624vw, 5.125rem);
  width: min(1080px, 100%);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: clamp(1.25rem, -26.2607758621rem + 38.275862069vw, 8.1875rem);
       column-gap: clamp(1.25rem, -26.2607758621rem + 38.275862069vw, 8.1875rem);
}
@media screen and (max-width: 1149px) {
  .shop__info {
    flex-direction: column;
    row-gap: 40px;
  }
}

.shop__info-main {
  width: 429px;
  flex-shrink: 0;
}
@media screen and (max-width: 1149px) {
  .shop__info-main {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .shop__info-storeName {
    text-align: center;
    line-height: 1.4;
  }
}
.shop__info-storeName--text1 {
  font-family: "reross-quadratic", sans-serif;
  font-size: 18px;
}
.shop__info-storeName--text2 {
  font-family: "reross-quadratic", sans-serif;
  font-size: 32px;
  line-height: 0.875;
  letter-spacing: 0.03em;
  -webkit-margin-start: 3px;
          margin-inline-start: 3px;
}
.shop__info-storeName--text3 {
  font-size: 18px;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .shop__info-storeName--text3 {
    font-size: 16px;
  }
}

.shop__info-address {
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .shop__info-address {
    font-size: 16px;
    line-height: 1.7;
    padding-inline: 12px;
  }
}

.shop__info-date {
  -webkit-margin-before: 22px;
          margin-block-start: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 18px;
       column-gap: 18px;
  row-gap: 10px;
}
@media (max-width: 767px) {
  .shop__info-date {
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
    line-height: 1.7;
    padding-inline: 12px;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 3px;
  }
}

.shop__info-dt,
.shop__info-dd {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .shop__info-dt,
.shop__info-dd {
    font-size: 16px;
    line-height: 1.6;
  }
}

.shop__info-dd--mt {
  display: inline-block;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
}
@media (max-width: 767px) {
  .shop__info-dd--mt {
    -webkit-margin-before: 2px;
            margin-block-start: 2px;
  }
}

.shop__info-img {
  width: calc(50% + 50cqi - 50%);
  height: auto;
  aspect-ratio: 700/500;
  max-height: 650px;
  -webkit-margin-end: calc(50% - 50cqi);
          margin-inline-end: calc(50% - 50cqi);
}
@media screen and (max-width: 1149px) {
  .shop__info-img {
    width: 100%;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}
.shop__info-img picture {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.shop__info-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop__info-postCard {
  -webkit-margin-before: 82px;
          margin-block-start: 82px;
  position: relative;
}
@media (max-width: 767px) {
  .shop__info-postCard {
    -webkit-margin-before: 98px;
            margin-block-start: 98px;
    max-width: 500px;
    margin-inline: auto;
  }
}
.shop__info-postCard::after {
  position: absolute;
  content: "";
  top: -71px;
  left: -97px;
  width: 288px;
  height: auto;
  aspect-ratio: 288/240;
  background: transparent url(../../assets/img/shop-postcard-stamp.webp) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .shop__info-postCard::after {
    top: -39px;
    left: -16px;
    width: 112px;
  }
}
.shop__info-postCard img {
  width: 100%;
}

/* ---------- お問い合わせ ---------- */
.contact {
  -webkit-padding-before: clamp(4rem, 1.8058510638rem + 9.3617021277vw, 8.125rem);
          padding-block-start: clamp(4rem, 1.8058510638rem + 9.3617021277vw, 8.125rem);
  -webkit-padding-after: clamp(4rem, 1.6728723404rem + 9.9290780142vw, 8.375rem);
          padding-block-end: clamp(4rem, 1.6728723404rem + 9.9290780142vw, 8.375rem);
  background: transparent url(../img/contact-bg.webp) no-repeat center center/cover;
}

.contact__inner {
  width: min(803px, 100%);
  margin-inline: auto;
  padding-inline: 16px;
  background-color: #F2F2F2;
}

.contact__content {
  -webkit-padding-before: clamp(4.3125rem, 4.4787234043rem - 0.7092198582vw, 4rem);
          padding-block-start: clamp(4.3125rem, 4.4787234043rem - 0.7092198582vw, 4rem);
  -webkit-padding-after: clamp(4.0625rem, 3.829787234rem + 0.9929078014vw, 4.5rem);
          padding-block-end: clamp(4.0625rem, 3.829787234rem + 0.9929078014vw, 4.5rem);
  width: min(520px, 100%);
  margin-inline: auto;
}

.contact__text {
  -webkit-margin-before: 27px;
          margin-block-start: 27px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__text {
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
    text-align: left;
  }
}

.contact-form {
  -webkit-margin-before: 52px;
          margin-block-start: 52px;
}
@media (max-width: 767px) {
  .contact-form {
    -webkit-margin-before: 34px;
            margin-block-start: 34px;
  }
}

.contact-form__items {
  display: flex;
  flex-direction: column;
  row-gap: 31px;
}
@media (max-width: 767px) {
  .contact-form__items {
    row-gap: 28px;
  }
}

.contact-form__label {
  font-weight: 400;
  font-size: clamp(1rem, 0.8804209184rem + 0.5102040816vw, 1.125rem);
}

.contact-form__label-required {
  position: relative;
}
.contact-form__label-required::after {
  position: absolute;
  content: "必須";
  width: 40px;
  height: 21px;
  top: 50%;
  left: calc(100% + 16px);
  translate: 0 -50%;
  background-color: #159741;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-form__label-required::after {
    left: calc(100% + 10px);
  }
}

.contact-form__input {
  -webkit-margin-before: 9px;
          margin-block-start: 9px;
}
@media (max-width: 767px) {
  .contact-form__input {
    -webkit-margin-before: 11px;
            margin-block-start: 11px;
  }
}

.contact-form__input [type=text],
.contact-form__input [type=email],
.contact-form__input [type=tel],
.contact-form__input textarea {
  box-shadow: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  width: 100%;
  padding: 13px 23px 11px;
  background: #fff;
  border: 1px solid #2F2F2F;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .contact-form__input [type=text],
.contact-form__input [type=email],
.contact-form__input [type=tel],
.contact-form__input textarea {
    padding: 14px 16px 16px;
  }
}
.contact-form__input [type=text]::-moz-placeholder, .contact-form__input [type=email]::-moz-placeholder, .contact-form__input [type=tel]::-moz-placeholder, .contact-form__input textarea::-moz-placeholder {
  color: #BDBDBD;
}
.contact-form__input [type=text]::placeholder,
.contact-form__input [type=email]::placeholder,
.contact-form__input [type=tel]::placeholder,
.contact-form__input textarea::placeholder {
  color: #BDBDBD;
}
@media (any-hover: hover) {
  .contact-form__input [type=text]:hover,
.contact-form__input [type=email]:hover,
.contact-form__input [type=tel]:hover,
.contact-form__input textarea:hover {
    outline: 1px solid #159741;
    box-shadow: 0 0 4px #159741;
  }
}
.contact-form__input [type=text]:focus,
.contact-form__input [type=email]:focus,
.contact-form__input [type=tel]:focus,
.contact-form__input textarea:focus {
  outline: 1px solid #159741;
  box-shadow: 0 0 4px #159741;
}
.contact-form__input textarea {
  height: 160px;
}

.contact-form__acceptance {
  -webkit-margin-before: 27px;
          margin-block-start: 27px;
  text-align: center;
  transition: opacity 0.3s ease;
}
.contact-form__acceptance [type=checkbox]:checked + .contact-form__acceptance-text::after {
  opacity: 1;
}
.contact-form__acceptance [type=checkbox]:active + .contact-form__acceptance-text::before {
  box-shadow: 0 0 4px #159741;
  outline: 1px solid #159741;
  background: rgba(21, 151, 65, 0.15);
}
@media (any-hover: hover) {
  .contact-form__acceptance [type=checkbox]:hover + .contact-form__acceptance-text::before {
    box-shadow: 0 0 4px #159741;
    outline: 1px solid #159741;
  }
}

.contact-form__acceptance-checkbox {
  opacity: 0;
}

.contact-form__acceptance-text {
  font-weight: 400;
  font-size: clamp(1rem, 0.8804209184rem + 0.5102040816vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-margin-start: 36px;
          margin-inline-start: 36px;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form__acceptance-text {
    -webkit-margin-start: 15px;
            margin-inline-start: 15px;
  }
}
@media screen and (max-width: 374px) {
  .contact-form__acceptance-text {
    font-size: 13px;
    -webkit-margin-start: 12px;
            margin-inline-start: 12px;
  }
}
.contact-form__acceptance-text::before {
  position: absolute;
  content: "";
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  top: 50%;
  right: calc(100% + 12px);
  translate: 0 -50%;
  border: 1px solid #2F2F2F;
  background: #fff;
}
@media screen and (max-width: 374px) {
  .contact-form__acceptance-text::before {
    width: 22px;
  }
}
.contact-form__acceptance-text::after {
  position: absolute;
  content: "";
  width: 24px;
  height: auto;
  aspect-ratio: 24/18;
  top: 4px;
  right: calc(100% + 16px);
  background: transparent url(../img/icon-check.svg) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (max-width: 374px) {
  .contact-form__acceptance-text::after {
    width: 17px;
  }
}

.contact-form__modal-open-btn {
  color: #159741;
  transition: opacity 0.3s ease;
  position: relative;
}
.contact-form__modal-open-btn::after {
  position: absolute;
  content: "";
  top: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #159741;
}
@media (any-hover: hover) {
  .contact-form__modal-open-btn:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

body:has(dialog[open]) {
  overflow: hidden;
}

/* モーダルのスタイル ============ */
dialog::-webkit-backdrop {
  opacity: 0;
}
dialog::backdrop {
  opacity: 0;
}
dialog.js-show.modal__content {
  opacity: 1;
}
dialog.js-show::-webkit-backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
dialog.js-show::backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.modal__content {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /* モーダル枠組みのスタイル */
  width: min(700px, 95%);
  max-height: 80vh;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.modal__inner {
  overflow-y: scroll;
  height: 100%;
  position: relative;
}

.modal__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: clamp(1.25rem, 0.2946671196rem + 4.0760869565vw, 2.1875rem);
  padding-inline: clamp(1rem, -1.9296875rem + 12.5vw, 3.875rem);
  /* modal内のスタイル */
}
.modal__body p {
  margin-top: 40px;
  font-size: clamp(0.875rem, 0.4928668478rem + 1.6304347826vw, 1.25rem);
  line-height: 1.4;
}

.contact-form__modal-close-btn {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  font-size: 30px;
}

.contact-form__submit {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  text-align: center;
  padding-inline: 6px;
}
@media (max-width: 767px) {
  .contact-form__submit {
    -webkit-margin-before: 44px;
            margin-block-start: 44px;
  }
}

.contact-form__submit-button {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  border: none;
  width: 239px;
  padding-block: 15px 14px;
  padding-inline: 0;
  text-align: center;
  background-color: #159741;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease 0s;
}
@media (max-width: 767px) {
  .contact-form__submit-button {
    width: 100%;
    max-width: 300px;
  }
}
@media (any-hover: hover) {
  .contact-form__submit-button:hover {
    opacity: 0.7;
  }
}
.contact-form__submit-button:disabled {
  background-color: #BDBDBD;
  cursor: not-allowed;
}

.contact__error-message {
  color: red;
  font-weight: 700;
  font-size: 16px;
  margin-top: 6px;
}

/* ---------- フッター ---------- */
.footer {
  -webkit-padding-before: clamp(3rem, 2.5216836735rem + 2.0408163265vw, 3.5rem);
          padding-block-start: clamp(3rem, 2.5216836735rem + 2.0408163265vw, 3.5rem);
  -webkit-padding-after: 10px;
          padding-block-end: 10px;
  background-color: #F2F2F2;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer__sns-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #2F2F2F;
  border: 2px solid #2F2F2F;
  border-radius: 999px;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 767px) {
  .footer__sns-link {
    width: 50px;
  }
}
@media (any-hover: hover) {
  .footer__sns-link:hover {
    background-color: #fff;
  }
  .footer__sns-link:hover i {
    color: #2F2F2F;
  }
}
.footer__sns-link i {
  font-size: 24px;
  color: #fff;
}

.footer__nav {
  -webkit-margin-before: 35px;
          margin-block-start: 35px;
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 1.5216836735rem + 2.0408163265vw, 2.5rem);
}
@media screen and (max-width: 374px) {
  .footer__list {
    gap: 20px;
  }
}

.footer__list a {
  display: inline-block;
  font-family: "reross-quadratic", sans-serif;
  font-size: clamp(1rem, 0.8804209184rem + 0.5102040816vw, 1.125rem);
  letter-spacing: 0.03em;
  padding-block: 6px;
}

.footer__logo {
  -webkit-margin-before: clamp(2.375rem, 2.0162627551rem + 1.5306122449vw, 2.75rem);
          margin-block-start: clamp(2.375rem, 2.0162627551rem + 1.5306122449vw, 2.75rem);
  text-align: center;
}

.footer__logo-link {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.7;
  }
}

.footer__copyright {
  -webkit-margin-before: clamp(2.25rem, 3.0870535714rem - 3.5714285714vw, 1.375rem);
          margin-block-start: clamp(2.25rem, 3.0870535714rem - 3.5714285714vw, 1.375rem);
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: auto;
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none; /* 非表示時はクリック不可 */
  transition: opacity 0.5s ease;
}
@media (max-width: 767px) {
  .to-top {
    width: 70px;
    bottom: 16px;
    right: 16px;
  }
}
@media (any-hover: hover) {
  .to-top:hover {
    cursor: pointer;
  }
  .to-top:hover svg circle {
    fill: #159741;
  }
}
.to-top svg {
  width: 100%;
  height: 100%;
}
.to-top svg circle {
  transition: all 0.3s ease;
}