/*
Theme Name: Oracle Design Theme (202508)
Author: Oracle Design Jugem
Author URI: https://oracle-design.com
Version: 1
*/

@charset "utf-8";

/* root */
:root {
  /* color */
  --main-color: #dc8e99;
  --sub-color: #e8d8d0;
  --bg-color: #f7f5f3;
  --bg-color2: #f3f7f5;
  --text-color: #6a6a6a;
  /* font-size */
  --main-fz: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
  --small-fz: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
  --large-fz: clamp(2.2rem, 1.982rem + 1.09vw, 2.8rem);
  --exl-fz: clamp(3.2rem, 3.055rem + 0.73vw, 3.6rem);
  /* animation */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --trans-fast: 0.25s var(--ease);
  --trans-slow: 0.6s var(--ease);
  --hover-op: 0.78;
}

/* common */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  font-size: var(--main-fz);
  font-family: 'Montserrat', 'Zen Kaku Gothic Antique', sans-serif;
  color: var(--text-color);
  letter-spacing: 0.09em;
  background-color: var(--bg-color2);
}
a {
  text-decoration: none;
}
p {
  margin-bottom: 24px;
}
main {
  position: relative;
  min-height: 100lvh;
}
.section {
  position: relative;
  padding-top: 84px;
  padding-bottom: 120px;
  &.bg-white {
    background-color: #fff;
  }
  &:last-of-type {
    padding-bottom: 84px;
  }
}
.inner {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
  width: calc(100% - 48px);
}
.section-title {
  text-align: center;
  margin-bottom: 3em;
  & > *:first-child {
    font-size: var(--large-fz);
    font-weight: bold;
  }
  & > p {
    font-size: var(--main-fz);
  }
}
.catchcopy {
  display: inline-block;
  font-size: var(--exl-fz);
  font-weight: bold;
  margin-bottom: 2em;
  overflow: hidden;
  & .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(1em);
  }
  &.is-visible .char {
    animation: charIn 0.45s ease forwards;
  }
}
@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.catchphrase {
  font-weight: bold;
  letter-spacing: 0.2em;
}
.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
}
a.btn {
  position: relative;
  display: block;
  font-weight: bold;
  width: fit-content;
  padding: 1em;
  & p {
    margin: initial;
    margin-left: 2.6em;
    transition: var(--trans-fast) scale;
  }
  &::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: grid;
    place-items: center;
    width: 3em;
    height: 3em;
    border-radius: 100vmax;
    font-family: 'Material Symbols Outlined';
    background: linear-gradient(210deg, var(--sub-color), var(--main-color));
    color: #fff;
    content: '\e315';
    filter: brightness(117.5%) url(#noizy);
    transform-origin: center;
    transition: var(--trans-fast) all;
  }
}
.grid {
  display: grid;
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
  &.is-visible {
    opacity: 1;
    transform: initial;
  }
}
a.text-link {
  font-weight: bold;
  color: var(--main-color);
  text-decoration: underline;
}
.bold {
  font-weight: bold;
}
.text-small {
  font-size: var(--small-fz);
}
.bg-white {
  background-color: #fff;
}
.mb-3em {
  margin-bottom: 3em;
}
svg:has(#noizy) {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* sns-list */
.sns-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.sns-content a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  content: '';
  background-color: var(--text-color);
  border-radius: 100vmax;
  &::after {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    content: '';
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.sns-content.sns-x a::after {
  background-image: url(./img/logo-x-white.png);
  scale: 0.5;
}
.sns-content.sns-note a::after {
  background-image: url(./img/logo-note-white.png);
}
.sns-content.sns-bluesky a::after {
  background-image: url(./img/logo-bluesky-white.png);
}
.sns-content.sns-insta a::after {
  background-image: url(./img/logo-insta-white.png);
  scale: 0.6;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  padding: 24px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-color);
  z-index: 1000;
  & .sns-list {
    display: none;
  }
}
.header-logo {
  max-height: 30px;
}
.navigation {
  position: relative;
}
.navToggle {
  display: none;
  width: 100%;
  height: 100%;
}
.nav-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.nav-list-wrapper {
  display: flex;
  justify-content: flex-end;
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2em;
  flex-wrap: wrap;
}
.nav-content,
.nav-contact {
  position: relative;
  font-weight: bold;
}
.nav-contact {
  margin-left: 2em;
}
.nav-content a:hover,
a.nav-contact:hover {
  opacity: 1;
}
.nav-content a::after,
a.nav-contact::after {
  background-color: var(--main-color);
  bottom: -4px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  width: 100%;
}
.nav-content a:hover::after,
a.nav-contact:hover::after {
  transform: scale(1, 1);
}

/* footer */
.footer {
  position: relative;
  background: linear-gradient(210deg, var(--sub-color), var(--main-color));
  z-index: 1;
  &::after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    content: '';
    backdrop-filter: brightness(125%) url(#noizy);
    z-index: -1;
  }
}
.footer-inner {
  position: relative;
  padding: 3em 1em;
  width: 100%;
  height: 100%;
  text-align: center;
  & img {
    display: block;
    max-height: 36px;
    width: auto;
    margin-inline: auto;
    margin-bottom: 1em;
  }
  & .sns-list {
    justify-content: center;
    margin-bottom: 2em;
  }
}
.copyright {
  font-size: var(--small-fz);
  font-weight: bold;
}
.pageTop {
  position: fixed;
  bottom: 48px;
  right: 24px;
  content: '';
  width: clamp(3rem, 1.364rem + 8.18vw, 7.5rem);
  height: clamp(3rem, 1.364rem + 8.18vw, 7.5rem);
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  border-radius: 100vmax;
  color: #fff;
  background: linear-gradient(210deg, var(--sub-color), var(--main-color));
  filter: brightness(120%) url(#noizy);
  display: grid;
  place-items: center;
  z-index: 10;
  transition: var(--trans-fast) all;
  opacity: 0;
  &.on {
    opacity: 1;
  }
}
/* front */
.catchcopy + .grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3em;
  margin-bottom: 6em;
  & .catchphrase {
    order: 1;
  }
  & .front-img,
  .front-web-img {
    order: 2;
  }
}
.front-img {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 48px;
}
/* main-visual */
.section#front-mv {
  height: 100lvh;
  padding-bottom: 48px;
  margin-bottom: 84px;
  width: 100%;
  & .inner {
    max-width: initial;
    border-radius: 48px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background: linear-gradient(210deg, var(--sub-color), var(--main-color));
    filter: brightness(110%) url(#noizy);
    &::before {
      position: absolute;
      inset: 0;
      width: 95%;
      height: 100%;
      margin-inline: auto;
      content: '';
      background-image: url(./img/hand-moon-blue.png);
      background-repeat: no-repeat;
      background-position: bottom center;
      background-size: 50lvh auto;
      filter: brightness(145%);
      opacity: 0.48;
      z-index: -1;
    }
  }
}

.mv-title {
  font-weight: bold;
  margin: 0 0.8em 2em;
  color: #fff;
  filter: drop-shadow(0px 0px 0.5px rgb(111, 143, 172));
  & h1 {
    font-size: clamp(3.2rem, 2.036rem + 5.82vw, 6.4rem);
    margin-bottom: 0.6em;
  }
}
/* front-about */
.section#front-about {
  overflow-x: hidden;
  &::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    width: 480px;
    height: 480px;
    border-radius: 100vmax;
    content: '';
    background: linear-gradient(210deg, var(--sub-color), var(--main-color));
    filter: brightness(120%);
    opacity: var(--hover-op);
    z-index: -1;
    animation: circulate 8s linear infinite;
  }
  & .inner {
    text-align: center;
  }
  & .catchphrase {
    font-size: var(--large-fz);
    font-weight: 400;
  }
}
@keyframes circulate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* front-fortune */
.section#front-fortune {
  background: #fff;
  z-index: 0;
  & .front-img {
    background-image: url(./img/front-fortune.jpg);
    aspect-ratio: 1/1;
    width: 85%;
    margin-inline: auto;
  }
}
.front-menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3em;
  gap: 2em;
  transition: var(--trans-fast) transform;
  & > li {
    position: relative;
    background: var(--bg-color2);
    padding: 2em 1em 1em;
    border-radius: 24px;
    &[data-number]::before {
      position: absolute;
      top: -0.8em;
      content: attr(data-number);
      font-size: var(--large-fz);
      color: var(--main-color);
      font-size: var(--exl-fz);
      font-weight: bold;
    }
    & > h3 {
      font-weight: 400;
      font-size: var(--large-fz);
      line-height: 1.4;
      margin-bottom: 1em;
    }
  }
}
/* front-web */
.section#front-web {
  background-color: var(--bg-color1);
}
.front-web-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  & > img {
    filter: drop-shadow(0px 0px 0.5px rgb(111, 143, 172));
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 24px;
    &:first-of-type {
      grid-column-start: 1;
      grid-column-end: 3;
    }
  }
}
/* front-contact */
.section#front-contact {
  & .inner {
    background: linear-gradient(210deg, var(--sub-color), var(--main-color));
    width: calc(100% - 48px);
    margin-inline: auto;
    padding: 3em;
    border-radius: 48px;
    z-index: 1;
    &::before {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      content: '';
      backdrop-filter: url(#noizy);
      border-radius: 48px;
      z-index: -1;
    }
    &::after {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      content: '';
      backdrop-filter: brightness(125%) hue-rotate(180deg);
      border-radius: 48px;
      z-index: -1;
    }
  }
  .catchphrase {
    display: inline-block;
    margin-bottom: 3em;
    font-size: var(--large-fz);
    font-weight: 400;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-wrapper {
    scale: 1.25;
    width: fit-content;
    margin-inline: auto;
    background-color: #fff;
    padding: 1em;
    border-radius: 24px;
    z-index: 1;
    letter-spacing: 0.08em;
  }
  a.btn::before {
    filter: hue-rotate(-180deg);
  }
}
/* front-info */
.info-list {
  & > li a {
    display: block;
    border-bottom: 1px solid;
    margin-bottom: 1em;
    & time {
      font-weight: bold;
    }
    & p {
      margin-bottom: 0.2em;
    }
  }
}
.section#front-note {
  background-color: #fff;
  & .btn-wrapper {
    display: grid;
    place-items: center;
  }
}
.note-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.note-track {
  display: flex;
  width: max-content;
  margin-bottom: 3em;
  will-change: transform;
  animation: marquee 60s linear infinite;
}
.note-list {
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  & li {
    background-position: center;
    background-size: cover;
    width: 270px;
    height: 340px;
    border-radius: 12px;
    backdrop-filter: opacity(60%);
    & a {
      display: block;
      width: 100%;
      height: 100%;
      padding: 1em;
      background: rgba(255, 255, 255, 0.75);
      border-radius: 12px;
      font-weight: bold;
      & time,
      & p {
        font-size: var(--small-fz);
      }
      & h3 {
        font-size: var(--main-fz);
      }
    }
  }
  & + .note-list {
    margin-left: 2em;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-55%);
  }
}

/* menu-page */
.section.page-title {
  height: 35lvh;
  max-height: 480px;
  margin-top: 60px;
  padding: initial;
  & .inner {
    width: 100%;
    height: 100%;
    padding-left: 1em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    &::after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 12px;
      content: '';
      background: linear-gradient(210deg, var(--sub-color), var(--main-color));
      filter: brightness(125%) url(#noizy);
    }
  }
}
.page-title {
  & h1 {
    margin-bottom: 0;
    font-size: clamp(3.6rem, 2.945rem + 3.27vw, 5.4rem);
  }
  & p {
    font-size: var(--main-fz);
    font-weight: bold;
  }
}
.page-catch {
  display: inline-block;
  font-size: var(--large-fz);
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  font-weight: bold;
}

/* menu-profile */
.profile-img {
  display: block;
  max-width: 240px;
  margin-bottom: 2em;
  border-radius: 100vmax;
}
.sns-list.profile {
  justify-content: flex-start;
}

/* menu-fortune / menu-web */
.section#menu {
  background-color: #fff;
  & .catchphrase {
    margin-bottom: 6em;
  }
}
.anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  & li a {
    position: relative;
    font-weight: bold;
    letter-spacing: 0.2em;
    &::after {
      position: relative;
      top: -2px;
      content: '\e5c6';
      font-size: var(--main-fz);
      font-family: 'Material Symbols Outlined';
      vertical-align: middle;
      color: var(--main-color);
    }
  }
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin-bottom: 120px;
}
.menu-content {
  position: relative;
  padding: 2em;
  border-radius: 24px;
  background-color: var(--bg-color2);
  transition: var(--trans-fast) transform;
  &[data-text]::before {
    position: absolute;
    top: -0.8em;
    content: attr(data-text);
    font-size: var(--large-fz);
    color: var(--main-color);
    font-size: var(--exl-fz);
    font-weight: bold;
  }
  & h3 {
    font-weight: 400;
    font-size: var(--large-fz);
    margin-bottom: 0.25em;
  }
  & strong {
    display: block;
    font-size: var(--main-fz);
    margin-bottom: 1em;
    & span {
      font-size: calc(var(--main-fz) + 0.3em);
    }
  }
  &:first-child {
    grid-column: 1 / -1;
  }
}
.section.web#menu .menu-list {
  grid-template-columns: 1fr;
}
.caution-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin-bottom: 3em;
}
.caution-content {
  background-color: #fff;
  padding: 1em 2em 2em;
  border-radius: 12px;
  & h4 {
    text-align: center;
    font-size: var(--main-fz);
    margin-bottom: 1em;
    border-bottom: solid 1px;
  }
}
.caution-flow {
  & li {
    position: relative;
    font-weight: bold;
    margin-bottom: 2em;
    &::after {
      position: absolute;
      left: 25%;
      bottom: -1.6em;
      font-family: 'Material Symbols Outlined';
      content: '\e313';
      vertical-align: middle;
    }
    &:last-of-type {
      margin-bottom: initial;
      &::after {
        display: none;
      }
    }
  }
}
/* menu-works */
.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin-bottom: 3em;
}
.works-content {
  display: grid;
}
img.outer-img {
  display: block;
  object-fit: cover;
  height: 240px;
  width: 100%;
  filter: drop-shadow(0 0 1px #aaa);
  border-radius: 12px;
}
.outer {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 1em;
  background-color: var(--bg-color2);
  padding: 2em 1.5em;
  border-radius: 12px;
}
.outer-title {
  font-size: var(--main-fz);
}
a.outer-btn {
  position: relative;
  display: block;
  text-align: right;
  font-size: var(--small-fz);
  font-weight: bold;
  &::after {
    position: relative;
    top: -2px;
    content: '\f591';
    font-size: var(--main-fz);
    font-family: 'Material Symbols Outlined';
    vertical-align: middle;
    color: var(--main-color);
  }
}
.popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-fast), visibility var(--trans-fast);
  overflow-y: auto;
}
.popup.is-open {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  background: #fff;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  padding: 2em;
  margin: 1em;
  overflow: auto;
  border-radius: 24px;
  transform: translateY(10px);
  transition: transform var(--trans-fast);
  & img,
  & figure,
  & iframe {
    display: block;
    margin-bottom: 24px;
  }
}
.popup.is-open .popup-inner {
  transform: translateY(0);
}
.popup-title {
  font-size: var(--large-fz);
  margin-bottom: 1em;
  margin-right: 48px;
}
.popup-close {
  position: fixed;
  top: 0;
  right: 0;
  padding: 2em;
  z-index: 1100;
}
body.scroll-lock {
  overflow: hidden;
}
/* menu-contact */
.contact-caution {
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact-wrapper {
  max-width: 961px;
  margin-inline: auto;
  padding: 0.6em;
  background: #fff;
  border-radius: 12px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.contact-name {
  & p {
    margin-bottom: 0px;
  }
  & label {
    font-size: var(--main-font-size);
    font-weight: bold;
  }
}
input:is(:-webkit-autofill, :autofill) {
  background-color: #fff;
}
.contact-input input,
.contact-input textarea {
  width: 100%;
  padding: 12px;
  font-size: var(--main-font-size);
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 8px;
  transition: border-color 0.3s ease, filter 0.3s ease;
}
.contact-input:focus-within input,
.contact-input:focus-within textarea {
  border-color: var(--main-color);
}
.contact-input textarea {
  height: 184px;
  resize: vertical;
}
.privacy-policy {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}
input[type='submit'] {
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  color: var(--main-color);
  background-color: #fff;
  border: solid 2px;
  transition: background-color 0.15s ease;
}
.grecaptcha-badge {
  visibility: hidden;
}
/* single */
.single-title {
  font-weight: bold;
  & time {
    font-size: var(--large-fz);
  }
  & h1 {
    font-size: var(--main-fz);
  }
}
.section#single {
  & img {
    display: block;
    margin-bottom: 24px;
  }
}

/* loading */
.loading {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100lvw;
  height: 100lvh;
  overflow: hidden;
  content: '';
  background: var(--bg-color2);
  text-align: center;
  z-index: 9999;
  &.off {
    display: none;
  }
}
.loading-circle {
  position: absolute;
  width: auto;
  height: 30svh;
  border-radius: 100vmax;
  content: '';
  aspect-ratio: 1/1;
  background: linear-gradient(210deg, var(--sub-color), var(--main-color));
  filter: brightness(125%) url(#noizy);
  animation: loading-rotate 2.5s linear infinite;
  transform-origin: center;
}
@keyframes loading-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* media-query */
@media (max-width: 980px) {
  .btn-wrapper {
    flex-direction: column;
    gap: 1em;
  }
  a.btn {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .section #front-about {
    & .inner {
      text-align: left;
    }
    & .catchphrase {
      font-size: var(--main-fz);
    }
  }
  .navigation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .nav-menu {
    display: none;
    z-index: 25;
    width: 100%;
    height: 100%;
    opacity: 0;
    &.on {
      position: absolute;
      top: 0;
      left: 0;
      width: 100lvw;
      height: 100lvh;
      overflow-x: hidden;
      overflow-y: auto;
      display: block;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(10px);
      opacity: 1;
    }
  }
  .navToggle {
    position: absolute;
    top: 18px;
    right: 0;
    display: block;
    width: 48px;
    height: 48px;
    z-index: 50;
  }
  .nav-list-wrapper {
    position: relative;
    margin-top: 60px;
    display: block;
    z-index: 20;
  }
  .nav-list,
  .nav-contact {
    display: block;
    margin-left: 2em;
    font-size: var(--large-fz);
    text-align: left;
  }
  .nav-contact {
    margin-bottom: 2em;
  }
  .nav-content {
    margin-bottom: 1em;
  }
  .nav-content a:hover,
  a.nav-contact:hover {
    opacity: var(--hover-op);
  }
  .nav-content a::after,
  a.nav-contact::after {
    display: none;
  }
  .header {
    & .sns-list {
      position: relative;
      bottom: 0;
      display: flex;
      justify-content: center;
      margin-bottom: 2em;
      z-index: 40;
    }
  }
  .front-menu-list {
    grid-template-columns: 1fr;
  }
  .catchcopy + .grid {
    grid-template-columns: 1fr;
    & > .catchphrase {
      order: 2;
    }
    & > .front-img,
    & > .front-web-img {
      order: 1;
    }
  }
  .front-img {
    width: 100%;
    height: 240px;
  }
  .menu-list,
  .caution-list {
    grid-template-columns: 1fr;
  }
  .works-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 475px) {
  .mv-title h1 {
    font-size: var(--exl-fz);
  }
  .menu-content {
    padding: 2em 1em;
  }
  .works-list {
    grid-template-columns: 1fr;
  }
  .contact-caution {
    font-size: var(--small-fz);
  }
  input[type='submit'] {
    font-size: var(--small-fz);
  }
}
/* hover */
@media (any-hover: hover) {
  a:hover {
    transition: var(--trans-fast) opacity;
    opacity: var(--hover-op);
  }
  a.btn:hover {
    opacity: 1;
    & p {
      scale: 0.95;
      transition: var(--trans-fast) scale;
    }
    &::before {
      background: transparent;
      scale: 1.1;
      color: var(--main-color);
      border: currentColor 2px solid;
      transition: var(--trans-fast) all;
    }
  }
  .pageTop:hover {
    transition: var(--trans-fast) all;
    background: var(--bg-color);
    color: var(--main-color);
    border: var(--main-color) 2px solid;
    filter: none;
  }
  .front-menu-list > li:hover,
  .menu-content:hover {
    transition: var(--trans-fast) transform;
    transform: translateY(-0.2em);
  }
  .note-wrapper:hover .note-track,
  .note-wrapper:focus-within .note-track {
    animation-play-state: paused;
  }
  .note-list li a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
