@charset "utf-8";
:root {
  --color-secondary: #ff6600;
  --color-white: #fff;
  --color-black: #231815;
  --color-white: #fff;
  --color-purple: #9A71B1;
  --color-gold: #BAA038;
  --color-pink: #e85298;
  --color-pink-light: #FFCCE4;
  --color-orange: #D46734;
  --color-blue: #00a7ea;
  --color-blue-light: #A7E6FF;
  --color-yellow: #fff100;
  --color-gray: #C6C6C6;
  --color-lightGray: #f7f7f7;
  --color-bg-card: #f6f6f6;
  --font-base: "Zen Kaku Gothic Antique", sans-serif;
  --font-enSans: "Montserrat", sans-serif;
  --font-enSerif: "Zen Antique", serif;;
  --font-jaSerif: "Noto Serif JP", serif;
}

body {
  color: var(--color-black);
}
.l-header__logo svg {
  transition: all 0.3s;
}
#l-body {
  margin-top: 0;
  padding-bottom: 0;
  font-family: var(--font-base);
}
.is-pages + #l-body {
  margin: 0;
}
#l-body * {
  box-sizing: border-box;
}
#l-body .l-body__content {
  max-width: auto;
  max-width: initial;
  margin-bottom: 0;
  padding: 0;
}
#l-body .l-body__main {
  position: relative;
  margin-bottom: 0;
}

@media screen and (max-width: 840px) {
  ._pc-only {
    display: none;
  }
}
@media screen and (min-width: 840px) {
  ._sp-only {
    display: none;
  }
}
@media screen and (min-width: 375px) {
  ._sp-sm-only {
    display: none;
  }
}

#l-body .l-body__content span._indent {
  margin: 0 -5px;
}
html[lang="en"] #l-body .l-body__content span._indent,
html[lang="ko"] #l-body .l-body__content span._indent {
  margin: 0;
}

.notes-indent-match {
  text-indent: -1em;
  padding-left: 1em;
}
/* ここからコンテンツ */
.page-kvset {
  background: url("../images/bg-title-sp.png") repeat-y center top / 100%;
}
.page-mv {
  padding: 10.5vw 0 0;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 840px) {
  .page-mv {
    margin-top: 0;
    padding: 0;
  }
  .page-kvset {
    background-image: url("../images/bg-title.png");
  }
}

.page-title {
  max-width: 550px;
  width: 65%;
  margin: 0 auto;
}
@media screen and (min-width: 840px) {
  .page-title {
    max-width: 318px;
    margin-top: 110px;
  }
}
.page-title img {
  width: 100%;
  height: auto;
  display: block;
}

.page-leadbox {
  padding: 40px 20px 50px;
  text-align: center;
}
@media screen and (min-width: 840px) {
  .page-leadbox {
    padding-bottom: 60px;
  }
}
.page-leadbox span {
  font-family: var(--font-enSerif);
}
.page-leadbox p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-base);
  line-height: 1.8;
}
.page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 0 56px;
}
@media screen and (min-width: 840px) {
  .page-nav {
    padding-top: 20px;
    gap: 8px;
  }
  .page-leadbox p {
    font-size: 18px;
  }
}
.page-nav li {
  list-style: none;
  position: relative;
}
.page-nav a {
  display: flex;
}
.page-nav a {
  position: relative;
  margin-bottom: 0.2rem;
  padding: .41rem 2rem .61rem;
  color: var(--color-black);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.5px;
  text-align: center;
  font-family: var(--font-enSerif);
  overflow: hidden;
  text-transform: uppercase;
  border: 2px solid var(--color-black);
  z-index: 2;
}
@media screen and (min-width: 840px) {
  .page-nav a {
    font-size: 1.75rem;
    padding-inline: 7.7rem;
    letter-spacing: 2.8px;
  }
}
@media screen and (min-width: 961px) {
  .page-nav a {
    padding-inline: 8.83rem;
  }
}
.page-nav li div {
  background-color: #DC9481;
  position: absolute;
  inset: 5px -3px -1px 5px;
}
.page-nav li:last-of-type div {
  background-color: #ADB787;
}
.page-nav a:link,
.page-nav a:visited,
.page-nav a:hover,
.page-nav a:visited:hover,
.page-nav a:focus,
.page-nav a:visited:focus {
  color: inherit;
  text-decoration: none;
}
.page-nav span {
  position: relative;
  transform: translateY(1px);
}
.page-nav span::before,
.page-nav span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  width: 10px;
  height: 15px;
  margin: auto;
  background: url("../images/nav-arrow.svg") no-repeat center center / 100% 100%;
  transition: all 0.4s;
}
.page-nav a span::after {
  transform: translateY(-400%);
}
@media (hover: hover) {
  .page-nav a:hover span::before {
    transform: translateY(400%);
  }
  .page-nav a:hover span::after {
    transform: translateY(0);
  }
}
@media screen and (min-width: 840px) {
  .page-nav {
    gap: 30px;
    padding: 0 0 88px;
  }
  .page-nav span {
    margin-left: -12px;
    transform: translateY(2px);
  }
  .page-nav span::before,
  .page-nav span::after {
    right: -3.9em;
    height: 20px;
  }
}
@media screen and (min-width: 961px) {
  .page-nav span::before,
  .page-nav span::after {
    right: -4.6em;
  }
}

.marquee {
  overflow: hidden;
  width: 100%;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.marquee-list {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  margin: 0;
  animation: marquee var(--marquee-duration, 10s) linear infinite;
}
.marquee-item {
  position: relative;
  flex-shrink: 0;
  padding-inline: 8px 20px;
  white-space: nowrap;
}
.marquee-item::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  display: block;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, transparent calc(50% - 0.75px), var(--color-orange) calc(50% - 0.75px), var(--color-orange) calc(50% + 0.75px), transparent calc(50% + 0.75px));
}
.marquee-item:nth-child(even)::after {
  background: linear-gradient(135deg, transparent calc(50% - 0.75px), var(--color-blue) calc(50% - 0.75px), var(--color-blue) calc(50% + 0.75px), transparent calc(50% + 0.75px));
}
.marquee-item span {
  font-family: var(--font-enSerif);
}
.marquee-item span:nth-child(2) {
  font-family: var(--font-jaSerif);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gourmet-section::after,
.sweets-section::after {
  content: "";
  display: block;
  clear: both;
}

h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 56px;
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-enSerif);
  line-height: 1;
  text-align: center;
}
h3 span {
  position: relative;
  text-transform: uppercase;
}
h3 span:first-of-type {
  letter-spacing: 0.2em;
}
.menu-list {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px 56px;
  z-index: 10;
}
@media screen and (min-width: 840px) {
  .menu-list {
    padding-inline: 16px;
  }
}
.menu-item > div {
  display: block;
  justify-content: space-between;
  align-items: flex-start;
}
.menu-item:first-child {
  padding-top: 70px;
}
h3 span:last-of-type {
  font-size: 16px;
  position: relative;
  font-weight: 400;
  font-family: var(--font-base);
}
@media screen and (min-width: 840px) {
  .menu-item > div {
    display: flex;
  }
  h3 {
    padding-top: 80px;
    font-size: 3rem;
  }
  h3 span:last-of-type {
    font-size: 1.125rem;
  }
  .menu-list {
    padding: 20px 20px 95px;
  }
  li.menu-item > div.menu-shop {
    display: flex;
    gap: 2.5rem;
  }
  li.menu-item:nth-child(even) > div.menu-shop {
    flex-direction: row-reverse;
  }
  .menu-item {
    padding-top: 115px;
  }
  .menu-item:first-child {
    padding-top: 60px;
  }
  .menu-item:nth-child(even) {
    padding-right: 0;
  }
}
@media screen and (min-width: 961px) {
  .menu-list {
    padding-bottom: 185px;
  }
}
.menu-shop {
  position: relative;
  width: 100%;
}
.menu-shop > p {
  position: absolute;
  top: -22px;
  right: 8px;
  width: 100%;
  text-align: right;
}
.menu-shop > p .menu-no {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-family: var(--font-enSerif);
  font-style: italic;
  line-height: 1;
  text-align: right;
}
.menu-shop > p .menu-no::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10px 0 0 0;
  background: var(--color-white);
  opacity: 0.75;
}
.menu-shop > p .menu-no > span {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 10px;
  font-weight: 400;
}
.menu-shop > p .menu-no .r-2 {
  right: -2px;
}

.menu-shopname {
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray);
}
.menu-shopname a {
  color: var(--color-black);
  text-decoration: none;
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s;
}
@media (hover: hover) {
  .menu-shopname a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.menu-shopname .-jp {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 840px) {
  .menu-shopname .-jp {
    font-size: 20px;
  }
}
/* .menu-shopname .-en {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-enSans);
  text-transform: uppercase;
} */
.menu-floor {
  display: inline-block;
  padding: 4px 8px;
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--color-black);
  letter-spacing: .1em;
}
@media screen and (min-width: 840px) {
  .menu-shop > p {
    top: -26px;
    right: 16px;
  }
  .menu-shop > p .menu-no {
    font-size: 32px;
  }
  .menu-shop > p .menu-no::before {
    top: -12px;
  }
  .menu-shop > p .menu-no > span {
    top: -13px;
    font-size: 13px;
  }
  .menu-item:nth-child(even) .menu-shop {
    margin-left: 0;
  }
  /* .menu-shopname .-jp {
    font-size: 20px;
  } */
  /* .menu-shopname .-en {
    font-size: 14px;
  } */
}

.menu-textbox {
  max-width: 640px;
  width: 95%;
  margin: 1.154em auto 0;
  padding-bottom: 70px;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 840px) {
  .menu-textbox {
    margin-top: 1.452%;
    /*margin-top: 0;*/
    /*padding-bottom: 36px;*/
    padding-bottom: 0;
    /*padding-bottom: calc(36px - 1.452%);*/
    width: 100%;
  }
}
.menu-item:last-of-type .menu-textbox {
  padding-bottom: 0;
}
.menu-info {
  line-height: 1.8;
}

.menu-name {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding-block: 32px 8px;
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-base);
}
.menu-name span {
  display: inline-block;
  padding-inline: 13px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
}
@media screen and (min-width: 840px) {
  .menu-name {
    gap: 10px 15px;
    padding-block: 30px 0;
    font-size: 24px;
  }
  .menu-name span {
    font-size: 14px;
  }
}

.menu-name .-fs {
  font-size: 16px;
}

.menu-price {
  position: relative;
  font-size: 28px;
  font-weight: 500;
}
.menu-price ul li::after {
  content: "";
  display: block;
  clear: both;
}
.menu-price ul li > span:first-child {
  float: left;
  line-height: 36px;
}
.menu-price ul li > span + span {
  float: right;
}
.menu-price .-small,
.menu-price .-tax {
  font-size: 18px;
  font-weight: 400;
}
.menu-price .-small {
  position: relative;
  top: -.03em;
}
.menu-price .-small::after {
  content: " ";
}
.menu-point {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-block: 20px 10px;
  text-align: left;
}
@media screen and (min-width: 840px) {
  .menu-point {
    margin-block: 0 20px;
  }
}
.menu-detail {
  padding-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
.menu-detail-lineSpace {
  margin-top: 1em;
}
.menu-detail-notes {
  font-size: 12px;
  font-weight: 400;
}
.menu-detail span{
  display: block;
  margin-top: calc(16px * 1.8);
  font-size: 14px;
}

@media screen and (min-width: 840px) {
  .menu-point {
    font-size: 20px;
    padding-top: 30px;
  }
  .menu-detail {
    /*padding-bottom: 20px;*/
  }
  .menu-detail-notes {
    font-size: 14px;
  }
}
.menu-info-detail {
  margin-top: .5em;
}
dl.menu-info-detail > div {
  display: flex;
  justify-content: space-between;

}
dl.menu-info-detail dt {
  font-size: 20px;
}
dl.menu-info-detail.menu-info-detail-notes {
  display: grid;
  gap: .8em;
}
.menu-imglink {
  display: flex;
  justify-content: center;
  position: relative;
}
.menu-imglink::before,
.menu-imglink::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.menu-image {
  max-width: 620px;
}
.menu-image img.menu-frame {
  max-width: 620px;
  position: relative;
  z-index: 1;
}
.menu-image img.menu-photo {
  max-width: 580px;
  width: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
}
.menu-image-outer {
  position: relative;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 840px) {
  .menu-image-outer {margin: 0;}
}
.menu-image-outer::before {
  content: "";
  background: url(../images/object1-1.svg) no-repeat left top / 100%;
  width: 25%;
  height: 100%;
  position: absolute;
  top: -62px;
  left: -7px;
}
@media screen and (min-width: 840px) {
  .menu-image-outer::before {
    top: -4.5em;
    left: -0.6em;
  }
}
@media screen and (min-width: 1101px) {
  .menu-image-outer::before {
    top: -3.5em;
    left: -3.6em;
  }
}
li.menu-item:nth-child(2) .menu-image-outer::before {
  background-image: url(../images/object2-1-sp.svg);
  width: 38%;
  top: -60px;
  left: 238px;
}
@media screen and (min-width: 398px) {
  li.menu-item:nth-child(2) .menu-image-outer::before {
    left: 254px;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(2) .menu-image-outer::before {
    background-image: url(../images/object2-1.svg);
    width: 43%;
    top: -7.2em;
    left: .3em;
  }
}
@media screen and (max-width: 839px) {
  li.menu-item:nth-child(3) .menu-image-outer::before {
    background-image: url(../images/object3-1-sp.svg);
    width: 28%;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(3) .menu-image-outer::before {
    background-image: url(../images/object3-1.svg);
  }
}
@media screen and (max-width: 839px) {
  li.menu-item:nth-child(4) .menu-image-outer::before {
    background-image: url(../images/object4-1-sp.svg);
    width: 36%;
    top: -60px;
    left: 284px;
  }
}
@media screen and (max-width: 421px) {
  li.menu-item:nth-child(4) .menu-image-outer::before {
    left: 264px;
    top: -57px;
  }
}
@media screen and (max-width: 393px) {
  li.menu-item:nth-child(4) .menu-image-outer::before {
    left: 250px;
    top: -53px;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(4) .menu-image-outer::before {
    background-image: url(../images/object4-1.svg);
    top: -3.5em;
    left: -2em;
  }
}
@media screen and (min-width: 1101px) {
  li.menu-item:nth-child(4) .menu-image-outer::before {
    top: -3.5em;
    left: -2em;
  }
}
li.menu-item:nth-child(5) .menu-image-outer::before {
  background-image: url(../images/object6-1.svg);
  width: 33%;
  top: -66px;
  left: 1px;
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(5) .menu-image-outer::before {
    background-image: url(../images/object5-1.svg);
    top: -4.5em;
    left: -2.6em;
  }
}
@media screen and (min-width: 961px) {
  li.menu-item:nth-child(5) .menu-image-outer::before {
    top: -5.5em;
    left: -2.6em;
  }
}
@media screen and (min-width: 1101px) {
  li.menu-item:nth-child(5) .menu-image-outer::before {
    top: -4.5em;
    left: -4.6em;
  }
}
@media screen and (max-width: 839px) {
  li.menu-item:nth-child(6) .menu-image-outer::before {
    background-image: url(../images/object6-1-sp.svg);
    width: 24%;
    top: -58px;
    left: 323px;
  }
}
@media screen and (max-width: 390px) {
  li.menu-item:nth-child(6) .menu-image-outer::before {
    top: -52px;
    left: 277px;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(6) .menu-image-outer::before {
    background-image: url(../images/object6-1.svg);
    top: -2.9em;
    left: 0.2em;
  }
}
@media screen and (min-width: 961px) {
  li.menu-item:nth-child(6) .menu-image-outer::before {
    top: -3.4em;
    left: 0.1em;
  }
}
@media screen and (min-width: 1101px) {
  li.menu-item:nth-child(6) .menu-image-outer::before {
    top: -3.9em;
    left: 0.3em;
  }
}
@media screen and (min-width: 840px) {
  .menu-image-outer::after {
    content: "";
    background: url(../images/object1-2.svg) no-repeat right bottom / 100%;
    width: 26%;
    height: 100%;
    position: absolute;
    top: 5.1em;
    right: 3em;
    z-index: -1;
  }
}
@media screen and (min-width: 961px) {
  .menu-image-outer::after {
    top: 5.95em;
  }
}
@media screen and (min-width: 1101px) {
  .menu-image-outer::after {
    top: 6.9em;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(2) .menu-image-outer::after {
    background-image: url(../images/object2-2.svg);
    right: -1em;
    top: 5.8em;
  }
}
@media screen and (min-width: 961px) {
  li.menu-item:nth-child(2) .menu-image-outer::after {
    right: -1.5em;
    top: 6.5em;
  }
}
@media screen and (min-width: 1101px) {
  li.menu-item:nth-child(2) .menu-image-outer::after {
    top: 7.6em;
    right: -4.5em;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(3) .menu-image-outer::after {
    background-image: url(../images/object3-2.svg);
    width: 33%;
    right: -3em;
    top: 5.8em;
  }
}
@media screen and (min-width: 961px) {
  li.menu-item:nth-child(3) .menu-image-outer::after {
    right: -3.5em;
    top: 6.7em;
  }
}
@media screen and (min-width: 1101px) {
  li.menu-item:nth-child(3) .menu-image-outer::after {
  right: -4em;
  top: 7.8em;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(4) .menu-image-outer::after {
    background-image: url(../images/object4-2.svg);
    width: 23%;
    top: 5.1em;
    right: -.3em;
  }
}
@media screen and (min-width: 961px) {
  li.menu-item:nth-child(4) .menu-image-outer::after {
    top: 6em;
  }
}
@media screen and (min-width: 1101px) {
  li.menu-item:nth-child(4) .menu-image-outer::after {
    top: 6.8em;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(5) .menu-image-outer::after {
    background-image: url(../images/object5-2.svg);
    top: 5.2em;
    right: -2em;
  }
}
@media screen and (min-width: 961px) {
  li.menu-item:nth-child(5) .menu-image-outer::after {
    top: 7.2em;
    right: -2em;
  }
}
@media screen and (min-width: 840px) {
  li.menu-item:nth-child(6) .menu-image-outer::after {
    background-image: url(../images/object6-2.svg);
    width: 24%;
    top: 5.5em;
    right: -1em;
  }
}
@media screen and (min-width: 961px) {
  li.menu-item:nth-child(6) .menu-image-outer::after {
    right: -1em;
  }
}
@media screen and (min-width: 1101px) {
  li.menu-item:nth-child(6) .menu-image-outer::after {
    right: -4em;
  }
}
.menu-image-outer .limited {
  position: absolute;
  top: -2px;
  left: 22px;
  z-index: 10;
  height: fit-content;
  padding: 10px 0;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  border-radius: 0 0 5px 5px;
  background: var(--color-purple);
  width: 40%;
  text-align: center;
}
@media screen and (min-width: 840px) {
  .menu-image-outer .limited {
    width: 163px;
  }
}
.menu-image-outer .limited.period-autumn {
  background: var(--color-gold);
  width: 24%;
}
@media screen and (min-width: 840px) {
  .menu-image-outer .limited.period-autumn {
    width: 120px;
  }
}
.menu-image-outer .limited.time::before,
.menu-image-outer .limited.time::after {
  background: var(--color-blue-light);
}
.menu-image-outer .limited::before {
  inset: 6px 0 auto 0;
}
.menu-image-outer .limited::after {
  inset: auto 0 6px 0;
}

.menu-image-outer .limited.time {
  top: -1.9em;
  background: var(--color-blue);
}
.menu-image {
  position: relative;
  overflow: hidden;
}
.menu-item:nth-child(even) .menu-image {
  border-bottom-color: var(--color-blue);
}
.menu-image > p {
  overflow: hidden;
  width: 95%;
  height: auto;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (min-width: 840px) {
  .menu-image > p {
    width: 94%;
    height: 92%;
  }
}
.menu-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}
@media (hover: hover) {
  .menu-imglink:hover .menu-image img.menu-photo {
    transform: scale(1.1);
  }
}

.menu-note {
  padding: 72px 0;
}
.menu-note-list {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.menu-note-item {
  font-size: 13px;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 840px) {
  .menu-image-outer .limited {
    left: 1.7em;
    top: .3em;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 20px;
    width: 200px;
  }
  .menu-note-list {
    width: fit-content;
    padding: 0 20px;
  }
  .menu-note-item {
    line-height: 1.8;
  }
}
@media screen and (min-width: 961px) {
  .menu-image-outer .limited {
    left: 2.0em;
  }
}
@media screen and (min-width: 1101px) {
  .menu-image-outer .limited {
    left: 2.3em;
  }
}
.sweets-section {
  background: url(../images/bg-main.png) repeat-y center top / 100%;
}
@media screen and (min-width: 840px) {
    .sweets-section .menu-item:nth-child(2) {
        padding-top: 0;
    }
}
/*-----------------------------------
pagetop
-----------------------------------*/
.l-pagetop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 100;
  width: fit-content;
  height: 36px;
  font-size: 12px;
  color: var(--color-black);
  transition: opacity 0.2s;
}
@media screen and (min-width: 769px) {
  .l-pagetop {
    right: 40px;
    height: 36px;
  }
}
.l-pagetop span {
  position: relative;
  display: block;
  width: 100%;
  height: 20px;
  overflow: hidden;
}
.l-pagetop span::before,
.l-pagetop span::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 13px;
  height: 16px;
  margin: 0 auto;
  background: url("../images/btn-arrow.svg") no-repeat center center / 100% 100%;
  transition: all 0.4s;
}
.l-pagetop span::before {
  top: 0;
}
.l-pagetop span::after {
  top: 200%;
}

@media screen and (min-width: 769px) {
  .l-pagetop::after {
    width: 18px;
    height: 18px;
  }
}

@media (hover: hover) {
  .l-pagetop:hover span::before {
    top: -200%;
  }
  .l-pagetop:hover span::after {
    top: 0;
  }
}

.l-pagetop.-fixed {
  position: absolute;
  bottom: 30px;
}